go1.21-doc-1.21.0-150000.1.3.1 >  A dեp9|_%I^弑 mmH1Hm ǚMW ٟMB}FԢQ"r?請NN'y&L$;?iCB6*Έ駑ՙbgL￁3'/<1k @nuFbRBZ[A+(-RX*}IbSO)ڥѴl@WkfYhFPa|ܪ*6u!ȃ wR%*{#J Y9Nj`>p;P?@d  ! 2TXdh      4 y (8(89:hFNGdHxIXY\]^"bCcdeejfmlouvz<Cgo1.21-doc1.21.0150000.1.3.1Go documentationGo examples and documentation.dyibs-arm-3SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxaarch64Mhi+< d.d.d.d.d.d996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d200a1ebb3883fd48c24f3a5807f8f21d3a627b634d0c2e954e0681b6c406a196bc9ba527b15c4f2ad1bc28ac7432ee837ce7bcd66e0747bbca82e1c7f6d96a2eerootrootrootrootrootrootrootrootrootrootgo1.21-1.21.0-150000.1.3.1.src.rpmgo-docgo1.21-docgo1.21-doc(aarch-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1d.@dE@d8d@d@d@dNjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.21 (released 2023-08-08) is a major release of Go. go1.21.x minor releases will be provided through August 2024. https://github.com/golang/go/wiki/Go-Release-Cycle go1.21 arrives six months after go1.20. Most of its changes are in the implementation of the toolchain, runtime, and libraries. As always, the release maintains the Go 1 promise of compatibility. We expect almost all Go programs to continue to compile and run as before. Refs boo#1212475 go1.21 release tracking * Go 1.21 introduces a small change to the numbering of releases. In the past, we used Go 1.N to refer to both the overall Go language version and release family as well as the first release in that family. Starting in Go 1.21, the first release is now Go 1.N.0. Today we are releasing both the Go 1.21 language and its initial implementation, the Go 1.21.0 release. These notes refer to "Go 1.21"; tools like go version will report "go1.21.0" (until you upgrade to Go 1.21.1). See "Go versions" in the "Go Toolchains" documentation for details about the new version numbering. * Language change: Go 1.21 adds three new built-ins to the language. * Language change: The new functions min and max compute the smallest (or largest, for max) value of a fixed number of given arguments. See the language spec for details. * Language change: The new function clear deletes all elements from a map or zeroes all elements of a slice. See the language spec for details. * Package initialization order is now specified more precisely. This may change the behavior of some programs that rely on a specific initialization ordering that was not expressed by explicit imports. The behavior of such programs was not well defined by the spec in past releases. The new rule provides an unambiguous definition. * Multiple improvements that increase the power and precision of type inference have been made. * A (possibly partially instantiated generic) function may now be called with arguments that are themselves (possibly partially instantiated) generic functions. * Type inference now also considers methods when a value is assigned to an interface: type arguments for type parameters used in method signatures may be inferred from the corresponding parameter types of matching methods. * Similarly, since a type argument must implement all the methods of its corresponding constraint, the methods of the type argument and constraint are matched which may lead to the inference of additional type arguments. * If multiple untyped constant arguments of different kinds (such as an untyped int and an untyped floating-point constant) are passed to parameters with the same (not otherwise specified) type parameter type, instead of an error, now type inference determines the type using the same approach as an operator with untyped constant operands. This change brings the types inferred from untyped constant arguments in line with the types of constant expressions. * Type inference is now precise when matching corresponding types in assignments * The description of type inference in the language spec has been clarified. * Go 1.21 includes a preview of a language change we are considering for a future version of Go: making for loop variables per-iteration instead of per-loop, to avoid accidental sharing bugs. For details about how to try that language change, see the LoopvarExperiment wiki page. * Go 1.21 now defines that if a goroutine is panicking and recover was called directly by a deferred function, the return value of recover is guaranteed not to be nil. To ensure this, calling panic with a nil interface value (or an untyped nil) causes a run-time panic of type *runtime.PanicNilError. To support programs written for older versions of Go, nil panics can be re-enabled by setting GODEBUG=panicnil=1. This setting is enabled automatically when compiling a program whose main package is in a module with that declares go 1.20 or earlier. * Go 1.21 adds improved support for backwards compatibility and forwards compatibility in the Go toolchain. * To improve backwards compatibility, Go 1.21 formalizes Go's use of the GODEBUG environment variable to control the default behavior for changes that are non-breaking according to the compatibility policy but nonetheless may cause existing programs to break. (For example, programs that depend on buggy behavior may break when a bug is fixed, but bug fixes are not considered breaking changes.) When Go must make this kind of behavior change, it now chooses between the old and new behavior based on the go line in the workspace's go.work file or else the main module's go.mod file. Upgrading to a new Go toolchain but leaving the go line set to its original (older) Go version preserves the behavior of the older toolchain. With this compatibility support, the latest Go toolchain should always be the best, most secure, implementation of an older version of Go. See "Go, Backwards Compatibility, and GODEBUG" for details. * To improve forwards compatibility, Go 1.21 now reads the go line in a go.work or go.mod file as a strict minimum requirement: go 1.21.0 means that the workspace or module cannot be used with Go 1.20 or with Go 1.21rc1. This allows projects that depend on fixes made in later versions of Go to ensure that they are not used with earlier versions. It also gives better error reporting for projects that make use of new Go features: when the problem is that a newer Go version is needed, that problem is reported clearly, instead of attempting to build the code and instead printing errors about unresolved imports or syntax errors. * To make these new stricter version requirements easier to manage, the go command can now invoke not just the toolchain bundled in its own release but also other Go toolchain versions found in the PATH or downloaded on demand. If a go.mod or go.work go line declares a minimum requirement on a newer version of Go, the go command will find and run that version automatically. The new toolchain directive sets a suggested minimum toolchain to use, which may be newer than the strict go minimum. See "Go Toolchains" for details. * go command: The -pgo build flag now defaults to -pgo=auto, and the restriction of specifying a single main package on the command line is now removed. If a file named default.pgo is present in the main package's directory, the go command will use it to enable profile-guided optimization for building the corresponding program. * go command: The -C dir flag must now be the first flag on the command-line when used. * go command: The new go test option -fullpath prints full path names in test log messages, rather than just base names. * go command: The go test -c flag now supports writing test binaries for multiple packages, each to pkg.test where pkg is the package name. It is an error if more than one test package being compiled has a given package name.] * go command: The go test -o flag now accepts a directory argument, in which case test binaries are written to that directory instead of the current directory. * cgo: In files that import "C", the Go toolchain now correctly reports errors for attempts to declare Go methods on C types. * runtime: When printing very deep stacks, the runtime now prints the first 50 (innermost) frames followed by the bottom 50 (outermost) frames, rather than just printing the first 100 frames. This makes it easier to see how deeply recursive stacks started, and is especially valuable for debugging stack overflows. * runtime: On Linux platforms that support transparent huge pages, the Go runtime now manages which parts of the heap may be backed by huge pages more explicitly. This leads to better utilization of memory: small heaps should see less memory used (up to 50% in pathological cases) while large heaps should see fewer broken huge pages for dense parts of the heap, improving CPU usage and latency by up to 1%. * runtime: As a result of runtime-internal garbage collection tuning, applications may see up to a 40% reduction in application tail latency and a small decrease in memory use. Some applications may also observe a small loss in throughput. The memory use decrease should be proportional to the loss in throughput, such that the previous release's throughput/memory tradeoff may be recovered (with little change to latency) by increasing GOGC and/or GOMEMLIMIT slightly. * runtime: Calls from C to Go on threads created in C require some setup to prepare for Go execution. On Unix platforms, this setup is now preserved across multiple calls from the same thread. This significantly reduces the overhead of subsequent C to Go calls from ~1-3 microseconds per call to ~100-200 nanoseconds per call. * compiler: Profile-guide optimization (PGO), added as a preview in Go 1.20, is now ready for general use. PGO enables additional optimizations on code identified as hot by profiles of production workloads. As mentioned in the Go command section, PGO is enabled by default for binaries that contain a default.pgo profile in the main package directory. Performance improvements vary depending on application behavior, with most programs from a representative set of Go programs seeing between 2 and 7% improvement from enabling PGO. See the PGO user guide for detailed documentation. * compiler: PGO builds can now devirtualize some interface method calls, adding a concrete call to the most common callee. This enables further optimization, such as inlining the callee. * compiler: Go 1.21 improves build speed by up to 6%, largely thanks to building the compiler itself with PGO. * assembler: On amd64, frameless nosplit assembly functions are no longer automatically marked as NOFRAME. Instead, the NOFRAME attribute must be explicitly specified if desired, which is already the behavior on other architectures supporting frame pointers. With this, the runtime now maintains the frame pointers for stack transitions. * assembler: The verifier that checks for incorrect uses of R15 when dynamic linking on amd64 has been improved. * linker: On windows/amd64, the linker (with help from the compiler) now emits SEH unwinding data by default, which improves the integration of Go applications with Windows debuggers and other tools. * linker: In Go 1.21 the linker (with help from the compiler) is now capable of deleting dead (unreferenced) global map variables, if the number of entries in the variable initializer is sufficiently large, and if the initializer expressions are side-effect free. * core library: The new log/slog package provides structured logging with levels. Structured logging emits key-value pairs to enable fast, accurate processing of large amounts of log data. The package supports integration with popular log analysis tools and services. * core library: The new testing/slogtest package can help to validate slog.Handler implementations. * core library: The new slices package provides many common operations on slices, using generic functions that work with slices of any element type. * core library: The new maps package provides several common operations on maps, using generic functions that work with maps of any key or element type. * core library: The new cmp package defines the type constraint Ordered and two new generic functions Less and Compare that are useful with ordered types. * Minor changes to the library: As always, there are various minor changes and updates to the library, made with the Go 1 promise of compatibility in mind. There are also various performance improvements, not enumerated here. * archive/tar: The implementation of the io/fs.FileInfo interface returned by Header.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.FileInfo interface returned by FileHeader.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.DirEntry interface returned by the io/fs.ReadDirFile.ReadDir method of the io/fs.File returned by Reader.Open now implements a String method that calls io/fs.FormatDirEntry. * bytes: The Buffer type has two new methods: Available and AvailableBuffer. These may be used along with the Write method to append directly to the Buffer. * context: The new WithoutCancel function returns a copy of a context that is not canceled when the original context is canceled. * context: The new WithDeadlineCause and WithTimeoutCause functions provide a way to set a context cancellation cause when a deadline or timer expires. The cause may be retrieved with the Cause function. * context: The new AfterFunc function registers a function to run after a context has been cancelled. * context: An optimization means that the results of calling Background and TODO and converting them to a shared type can be considered equal. In previous releases they were always different. Comparing Context values for equality has never been well-defined, so this is not considered to be an incompatible change. * crypto/ecdsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/elliptic: All of the Curve methods have been deprecated, along with GenerateKey, Marshal, and Unmarshal. For ECDH operations, the new crypto/ecdh package should be used instead. For lower-level operations, use third-party modules such as filippo.io/nistec. * crypto/rand: The crypto/rand package now uses the getrandom system call on NetBSD 10.0 and later. * crypto/rsa: The performance of private RSA operations (decryption and signing) is now better than Go 1.19 for GOARCH=amd64 and GOARCH=arm64. It had regressed in Go 1.20. * crypto/rsa: Due to the addition of private fields to PrecomputedValues, PrivateKey.Precompute must be called for optimal performance even if deserializing (for example from JSON) a previously-precomputed private key. * crypto/rsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/rsa: The GenerateMultiPrimeKey function and the PrecomputedValues.CRTValues field have been deprecated. PrecomputedValues.CRTValues will still be populated when PrivateKey.Precompute is called, but the values will not be used during decryption operations. * crypto/sha256: SHA-224 and SHA-256 operations now use native instructions when available when GOARCH=amd64, providing a performance improvement on the order of 3-4x. * crypto/tls: Servers now skip verifying client certificates (including not running Config.VerifyPeerCertificate) for resumed connections, besides checking the expiration time. This makes session tickets larger when client certificates are in use. Clients were already skipping verification on resumption, but now check the expiration time even if Config.InsecureSkipVerify is set. * crypto/tls: Applications can now control the content of session tickets. * crypto/tls: The new SessionState type describes a resumable session. * crypto/tls: The SessionState.Bytes method and ParseSessionState function serialize and deserialize a SessionState. * crypto/tls: The Config.WrapSession and Config.UnwrapSession hooks convert a SessionState to and from a ticket on the server side. * crypto/tls: The Config.EncryptTicket and Config.DecryptTicket methods provide a default implementation of WrapSession and UnwrapSession. * crypto/tls: The ClientSessionState.ResumptionState method and NewResumptionState function may be used by a ClientSessionCache implementation to store and resume sessions on the client side. * crypto/tls: To reduce the potential for session tickets to be used as a tracking mechanism across connections, the server now issues new tickets on every resumption (if they are supported and not disabled) and tickets don't bear an identifier for the key that encrypted them anymore. If passing a large number of keys to Conn.SetSessionTicketKeys, this might lead to a noticeable performance cost. * crypto/tls: Both clients and servers now implement the Extended Master Secret extension (RFC 7627). The deprecation of ConnectionState.TLSUnique has been reverted, and is now set for resumed connections that support Extended Master Secret. * crypto/tls: The new QUICConn type provides support for QUIC implementations, including 0-RTT support. Note that this is not itself a QUIC implementation, and 0-RTT is still not supported in TLS. * crypto/tls: The new VersionName function returns the name for a TLS version number. * crypto/tls: The TLS alert codes sent from the server for client authentication failures have been improved. Previously, these failures always resulted in a "bad certificate" alert. Now, certain failures will result in more appropriate alert codes, as defined by RFC 5246 and RFC 8446: * crypto/tls: For TLS 1.3 connections, if the server is configured to require client authentication using RequireAnyClientCert or RequireAndVerifyClientCert, and the client does not provide any certificate, the server will now return the "certificate required" alert. * crypto/tls: If the client provides a certificate that is not signed by the set of trusted certificate authorities configured on the server, the server will return the "unknown certificate authority" alert. * crypto/tls: If the client provides a certificate that is either expired or not yet valid, the server will return the "expired certificate" alert. * crypto/tls: In all other scenarios related to client authentication failures, the server still returns "bad certificate". * crypto/x509: RevocationList.RevokedCertificates has been deprecated and replaced with the new RevokedCertificateEntries field, which is a slice of RevocationListEntry. RevocationListEntry contains all of the fields in pkix.RevokedCertificate, as well as the revocation reason code. * crypto/x509: Name constraints are now correctly enforced on non-leaf certificates, and not on the certificates where they are expressed. * debug/elf: The new File.DynValue method may be used to retrieve the numeric values listed with a given dynamic tag. * debug/elf: The constant flags permitted in a DT_FLAGS_1 dynamic tag are now defined with type DynFlag1. These tags have names starting with DF_1. * debug/elf: The package now defines the constant COMPRESS_ZSTD. * debug/elf: The package now defines the constant R_PPC64_REL24_P9NOTOC. * debug/pe: Attempts to read from a section containing uninitialized data using Section.Data or the reader returned by Section.Open now return an error. * embed: The io/fs.File returned by FS.Open now has a ReadAt method that implements io.ReaderAt. * embed: Calling FS.Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * errors: The new ErrUnsupported error provides a standardized way to indicate that a requested operation may not be performed because it is unsupported. For example, a call to os.Link when using a file system that does not support hard links. * flag: The new BoolFunc function and FlagSet.BoolFunc method define a flag that does not require an argument and calls a function when the flag is used. This is similar to Func but for a boolean flag. * flag: A flag definition (via Bool, BoolVar, Int, IntVar, etc.) will panic if Set has already been called on a flag with the same name. This change is intended to detect cases where changes in initialization order cause flag operations to occur in a different order than expected. In many cases the fix to this problem is to introduce a explicit package dependence to correctly order the definition before any Set operations. * go/ast: The new IsGenerated predicate reports whether a file syntax tree contains the special comment that conventionally indicates that the file was generated by a tool. * go/ast: The new File.GoVersion field records the minimum Go version required by any //go:build or // +build directives. * go/build: The package now parses build directives (comments that start with //go:) in file headers (before the package declaration). These directives are available in the new Package fields Directives, TestDirectives, and XTestDirectives. * go/build/constraint: The new GoVersion function returns the minimum Go version implied by a build expression. * go/token: The new File.Lines method returns the file's line-number table in the same form as accepted by File.SetLines. * go/types: The new Package.GoVersion method returns the Go language version used to check the package. * hash/maphash: The hash/maphash package now has a pure Go implementation, selectable with the purego build tag. * html/template: The new error ErrJSTemplate is returned when an action appears in a JavaScript template literal. Previously an unexported error was returned. * io/fs: The new FormatFileInfo function returns a formatted version of a FileInfo. The new FormatDirEntry function returns a formatted version of a DirEntry. The implementation of DirEntry returned by ReadDir now implements a String method that calls FormatDirEntry, and the same is true for the DirEntry value passed to WalkDirFunc. * math/big: The new Int.Float64 method returns the nearest floating-point value to a multi-precision integer, along with an indication of any rounding that occurred. * net: On Linux, the net package can now use Multipath TCP when the kernel supports it. It is not used by default. To use Multipath TCP when available on a client, call the Dialer.SetMultipathTCP method before calling the Dialer.Dial or Dialer.DialContext methods. To use Multipath TCP when available on a server, call the ListenConfig.SetMultipathTCP method before calling the ListenConfig.Listen method. Specify the network as "tcp" or "tcp4" or "tcp6" as usual. If Multipath TCP is not supported by the kernel or the remote host, the connection will silently fall back to TCP. To test whether a particular connection is using Multipath TCP, use the TCPConn.MultipathTCP method. * net: In a future Go release we may enable Multipath TCP by default on systems that support it. * net/http: The new ResponseController.EnableFullDuplex method allows server handlers to concurrently read from an HTTP/1 request body while writing the response. Normally, the HTTP/1 server automatically consumes any remaining request body before starting to write the response, to avoid deadlocking clients which attempt to write a complete request before reading the response. The EnableFullDuplex method disables this behavior. * net/http: The new ErrSchemeMismatch error is returned by Client and Transport when the server responds to an HTTPS request with an HTTP response. * net/http: The net/http package now supports errors.ErrUnsupported, in that the expression errors.Is(http.ErrNotSupported, errors.ErrUnsupported) will return true. * os: Programs may now pass an empty time.Time value to the Chtimes function to leave either the access time or the modification time unchanged. * os: On Windows the File.Chdir method now changes the current directory to the file, rather than always returning an error. * os: On Unix systems, if a non-blocking descriptor is passed to NewFile, calling the File.Fd method will now return a non-blocking descriptor. Previously the descriptor was converted to blocking mode. * os: On Windows calling Truncate on a non-existent file used to create an empty file. It now returns an error indicating that the file does not exist. * os: On Windows calling TempDir now uses GetTempPath2W when available, instead of GetTempPathW. The new behavior is a security hardening measure that prevents temporary files created by processes running as SYSTEM to be accessed by non-SYSTEM processes. * os: On Windows the os package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. * os: On Windows Lstat now resolves symbolic links for paths ending with a path separator, consistent with its behavior on POSIX platforms. * os: The implementation of the io/fs.DirEntry interface returned by the ReadDir function and the File.ReadDir method now implements a String method that calls io/fs.FormatDirEntry. * os: The implementation of the io/fs.FS interface returned by the DirFS function now implements the io/fs.ReadFileFS and the io/fs.ReadDirFS interfaces. * path/filepath: The implementation of the io/fs.DirEntry interface passed to the function argument of WalkDir now implements a String method that calls io/fs.FormatDirEntry. * reflect: In Go 1.21, ValueOf no longer forces its argument to be allocated on the heap, allowing a Value's content to be allocated on the stack. Most operations on a Value also allow the underlying value to be stack allocated. * reflect: The new Value method Value.Clear clears the contents of a map or zeros the contents of a slice. This corresponds to the new clear built-in added to the language. * reflect: The SliceHeader and StringHeader types are now deprecated. In new code prefer unsafe.Slice, unsafe.SliceData, unsafe.String, or unsafe.StringData. * regexp: Regexp now defines MarshalText and UnmarshalText methods. These implement encoding.TextMarshaler and encoding.TextUnmarshaler and will be used by packages such as encoding/json. * runtime: Textual stack traces produced by Go programs, such as those produced when crashing, calling runtime.Stack, or collecting a goroutine profile with debug=2, now include the IDs of the goroutines that created each goroutine in the stack trace. * runtime: Crashing Go applications can now opt-in to Windows Error Reporting (WER) by setting the environment variable GOTRACEBACK=wer or calling debug.SetTraceback("wer") before the crash. Other than enabling WER, the runtime will behave as with GOTRACEBACK=crash. On non-Windows systems, GOTRACEBACK=wer is ignored. * runtime: GODEBUG=cgocheck=2, a thorough checker of cgo pointer passing rules, is no longer available as a debug option. Instead, it is available as an experiment using GOEXPERIMENT=cgocheck2. In particular this means that this mode has to be selected at build time instead of startup time. * runtime: GODEBUG=cgocheck=1 is still available (and is still the default). * runtime: A new type Pinner has been added to the runtime package. Pinners may be used to "pin" Go memory such that it may be used more freely by non-Go code. For instance, passing Go values that reference pinned Go memory to C code is now allowed. Previously, passing any such nested reference was disallowed by the cgo pointer passing rules. See the docs for more details. * runtime/metrics: A few previously-internal GC metrics, such as live heap size, are now available. GOGC and GOMEMLIMIT are also now available as metrics. * runtime/trace: Collecting traces on amd64 and arm64 now incurs a substantially smaller CPU cost: up to a 10x improvement over the previous release. * runtime/trace: Traces now contain explicit stop-the-world events for every reason the Go runtime might stop-the-world, not just garbage collection. * sync: The new OnceFunc, OnceValue, and OnceValues functions capture a common use of Once to lazily initialize a value on first use. * syscall: On Windows the Fchdir function now changes the current directory to its argument, rather than always returning an error. * syscall: On FreeBSD SysProcAttr has a new field Jail that may be used to put the newly created process in a jailed environment. * syscall: On Windows the syscall package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. The UTF16ToString and UTF16FromString functions now convert between UTF-16 data and WTF-8 strings. This is backward compatible as WTF-8 is a superset of the UTF-8 format that was used in earlier releases. * syscall: Several error values match the new errors.ErrUnsupported, such that errors.Is(err, errors.ErrUnsupported) returns true. ENOSYS ENOTSUP EOPNOTSUPP EPLAN9 (Plan 9 only) ERROR_CALL_NOT_IMPLEMENTED (Windows only) ERROR_NOT_SUPPORTED (Windows only) EWINDOWS (Windows only) * testing: The new -test.fullpath option will print full path names in test log messages, rather than just base names. * testing: The new Testing function reports whether the program is a test created by go test. * testing/fstest: Calling Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * unicode: The unicode package and associated support throughout the system has been upgraded to Unicode 15.0.0. * Darwin port: As announced in the Go 1.20 release notes, Go 1.21 requires macOS 10.15 Catalina or later; support for previous versions has been discontinued. * Windows port: As announced in the Go 1.20 release notes, Go 1.21 requires at least Windows 10 or Windows Server 2016; support for previous versions has been discontinued. * WebAssembly port: The new go:wasmimport directive can now be used in Go programs to import functions from the WebAssembly host. * WebAssembly port: The Go scheduler now interacts much more efficiently with the JavaScript event loop, especially in applications that block frequently on asynchronous events. * WebAssembly System Interface port: Go 1.21 adds an experimental port to the WebAssembly System Interface (WASI), Preview 1 (GOOS=wasip1, GOARCH=wasm). * WebAssembly System Interface port: As a result of the addition of the new GOOS value "wasip1", Go files named *_wasip1.go will now be ignored by Go tools except when that GOOS value is being used. If you have existing filenames matching that pattern, you will need to rename them. * ppc64/ppc64le port: On Linux, GOPPC64=power10 now generates PC-relative instructions, prefixed instructions, and other new Power10 instructions. On AIX, GOPPC64=power10 generates Power10 instructions, but does not generate PC-relative instructions. * ppc64/ppc64le port: When building position-independent binaries for GOPPC64=power10 GOOS=linux GOARCH=ppc64le, users can expect reduced binary sizes in most cases, in some cases 3.5%. Position-independent binaries are built for ppc64le with the following -buildmode values: c-archive, c-shared, shared, pie, plugin. * loong64 port: The linux/loong64 port now supports - buildmode=c-archive, -buildmode=c-shared and -buildmode=pie.- go1.21rc4 (released 2023-08-02) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc4. Refs boo#1212475 go1.21 release tracking- go1.21rc3 (released 2023-07-14) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc3. Refs boo#1212475 go1.21 release tracking- go1.21+ change default GOTOOLCHAIN=auto to local to prevent go tool commands from downloading upstream go1.x toolchain binaries Refs boo#1212669 * go1.21+ introduce new default behavior that can download additional versions of go1.x toolchain binaries built by upstream. See https://go.dev/doc/toolchain for details. The go tool would attempt toolchain downloads as needed to satisfy a minimum go version specified in go.mod of the program containing main() or any of its dependencies. * Builds in OBS can not access the network, download attempts would fail. * Builds in OBS should not use third party binary toolchains. * When GOTOOLCHAIN is set to local, the go command always runs the bundled Go toolchain. * Users can override the default GOTOOLCHAIN setting with go env -w, stored in in ~/.config/go/env.- Add missing go.env to package. go.env sets defaults including: GOPROXY GOSUMDB GOTOOLCHAIN Refs boo#1212667 * Starting in go1.21+ a missing go.env defaults to GOPROXY='' resulting in errors e.g. with online cmds e.g. go mod download: "GOPROXY list is not the empty string, but contains no entries" It is not clear why GOPROXY='' is not evaluated as "the empty string".- go1.21rc2 (released 2023-06-21) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc2. https://go.dev/blog/go1.21rc Refs boo#1212475 go1.21 release tracking- go1.21rc1 (released 2023-06-16) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc1. Refs boo#1212475 go1.21 release trackingibs-arm-3 16917351611.21.01.21.0-150000.1.3.11.21.0-150000.1.3.1asm.htmlgo1.17_spec.htmlgo_mem.htmlgo_spec.htmlgodebug.md/usr/share/doc/packages/go/1.21/-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:30209/SUSE_SLE-15_Update/9d7067dc7559a97a2cfbf2284cebc676-go1.21.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxHTML document, UTF-8 Unicode textexported SGML document, ASCII textUn[Ba| ɉutf-805e2cdba79272ba0d76c1984c25c4683da5496be44c47c1207a24439f0dd5605?P7zXZ !t/>] crv(vX0:3)ny&SO,0'YqU{)6zL:0K~\J#QFKDbƺId:9P# .cLNW+bǵ/kQ(X9ۇ$hG[N)wi]x_[ o]N&̐+B] -BrsiW8K鍊6z)s Y!'X xҵ-:pi\Z*ZuT?;̃-mqi-}4&'ZcC?t)>Kl~j;ڰdiR,B>i-1ꉱ<~@N)ie$$P*Q5kLZ _FAʯ{Ԥ~&Vksy/ruY_+ m)m$ϝ(I<%d/ƱJ[v*\kDB`TBD_}Q 5,_p&7q/OCfV)rk-[5ޑyJ_ g׺:aS+;ҩxvu{=Eo[ӂk3=~f:j~s2m-6J j ܱ@تʭ1$y.$+gHۋJ!(7`v[5BJOT =\Ϳi1^?Q'z|>AC^wa<꓊:Q4 "/OɆ^ΫXl#wTKK˩4;Hsa_׌*BCr9PenȁK騝\!*k /Og0 b8~o-nH$S9M\iъquoրped&x) g!ORqb  k7?X u' ԡG┇N38]Y@*G.HJDߩTgXIx-/ۯ]Y==$( dphBxq7$" OÙa̪khSV1oHPk~<7s*}@-6*C ӶT|OI&Od{8"C&]4>'PSwQ} Q0pvel,cˠtΊR=S(MP={nėW/n{)-܋)Ị6Q?X#F×al/jT>B ow RWb"]^*v:O*6zӾ5X'hG;T#m{%&vXɴi}}U,SfB6NUD4_I3CTf@4-X@*_"LU+b81yT$g<)d3A8r'Ge%$fTÁo&CC3^`<1sGu' 8.9G1SMVOKY9eW43s{~C,X6^ԟ>Vs1VUR.#ītC!EJo,6n?^zp=G@=$X)jZ&$l#7Ҫ`>{?hK4Ù.@h;{W"#f2'" U㇤[gXf.6OWOmS$xp|bn1>eNDլ1T!*ZZaϤYp*ʕJ$E3{3)juV"4;\@0XifRvQv\`_'e|L۠zGML쐏L4jlIgCt,M;9ta LR Y[W!&oWX"~PN,`]p fN7[.hpޥ\ʞqx31 'A0R@haf Pɺii.B3+K9kES˞0O\2 ($Z8`d3IĀޖtK7p@ދ3o!NyAkmyغ KIw7飲\iBkj߉Sr(WG|I;&fۑ^ &AW7h9b C@/u}z4}reGf?pN_7ц-+;O)A;6Z /zEg&bd}4Wף21Tryi [58<KK/`6MrrtAo e[90JK+9zp٩p|~[ʓdณq oLm5:COu⿩-h7@+aQN '} eUm%+N_ ,-L&4vF9$\LLf A[.Mi1hDy\fiA.#%7U̩~%|os)^嫉orا\ 45F"R @uy[ɒi=;Q$4H6iIc:ҖV^icb <ip\7NAi忥6"&EO:7@+Ļ&1`D@[$H;WBSFQV8n_2eł6a, PC%/͏𺙶0`gl7]HW.USi5LC(![z(3 bS R%}b=%ր~9z)ɷM~C+P|3Gs7!ЄO}#@:N<]ERSnʂm12}?YqW͟S޳l]'Y8$Ҽ֊0lNGge7~ j 7r#4(ቮu_nޚ:LixeӇ"%#s.oVHSQkd_ni8aa LxmVY/MkԂhpd1;Jk1әLeDSD  UP* SCr!z߅% .̛s $-9rۣt ^4 1(12W"7CK1!U:].@L r/7qd}dCCGBG1DJ+k6ʓ̓=IjKye+KlP<;%Mu:q;B><9٤t0d}P ~sI<㨍fF8ROfr6^ 3_ެ5[djTԅHgDgz?5N[?5|`d'az39(Q7Nj_f*Kg)1Ztdۓڄ;4?paxTG\X2(IP}rKAhSSQX̕\e{ƚԼުP!\ѫvw{D˾Jd͐;&Tק.&Kzp#tʷ #I.Nin.-I [SF;_W[ {O33ߑ@Zgluhg(@aG3}GCV26|vU#2Z$S%!ʈQW B40I\G)Su簚D H{ϲ}"L{51?7ӱU t.=!$(V(5Z},Nqi+q)_o|@݆>peHVaĔAX+{rGL-| !" l?Om/_f┙1}?㻈=~K;{~#P1J,Xr3X^nધhBuQuN^ \7EiIF-m_iT&Msgzo2]UmC3E:)g65-ĵ& dWxIrߩ[^&$s-l6g`yJK*v|H6_L[7P͂jhрiYB$ہo a[9`V;/w~ypnJ-굾'\@$- m1|4LTx.҃ HE,Lm[Mhu%oF,и\SDSRw~^вFKt*(qH fTTS?>mxp`:Wוp'\:Ets-bhH4qm]ؙ<` 67vX %#G߅\KP+[>sL7=Š su;R\N3׵r!ÕXemZ*dʒQtp ' m:|e.Xj.N|M?q."#\") &Uqۃ-E4|%򠄤,%ʵnĨ+&m'o$Ao!,iz '+yT"+qC Fك =L izz;Y̻3@ ?6Q2~홓ġrmI8OXS,Of1f:G^:}]mhz\50&EO7ퟜ>"K޲y-#^̏lнYڷwfղ-.TD6(ύƖNɑ-rbd{].YyXcUFwߣ H&)5޹H%DZzGMu'/H[uB"_w.r >a%8]n1]L"C U -ٰoxnQ-Vt?')]%w|ĖpЎ١KRT˶j"`1* R Q/tcGԻe}FiwXZ75Wq H460A5l!= wx4^󭃒RTz'=o5y[}!BĮZk.8*vQNϫMEʳ$.p;X6Bx=w^8v xGzksC Mp!RgQ%Xrt<7 VeŲ6ƺvS},%lAl 6ZTMH+\bW~ 3iWpȢ'fFJAL9{x=(+=* @\J׸pR7-(d\ XV -1`wwN:p ${穨q!#mT!f G}5$t;6H^/^!Bpf]>MlKv[(DǻN 3'4yk9HCvv\T|e8@}d-:71Q(5?! aˉ^Qhe_a\TV~ug C0ͧ-k_*b 1<#>g!;Tf _q4(<4G ~$u@&UKe2ngIP%2ݚ^S%6+QZ:0Qszvaπ364.AWy)5݀Yoz=csX^%EW͆;2{*U.rc4#B&ʜ^hҰвr'Ab~T>%vR"̑sY*N=~F Yx;4& )CÖ:) b{Yr'h /#qqGGG"^H ) G֯jRsFAp3{gJy (<&ZkgusMX A6nެFJYEŽ'1+7IGeUZrtKOz@@p6!'_> N%3䢻A ƑZd0 | {M)+2֎+NW2 H K4d'uAQK,$ɨo#0jqvZ䱹R0YA/rd %ovFBgLr5;8g `ùɋ[Y q hMs3|3/%u47+L$n?O YvS߼P`t#^j?7IP?[Cdsv.IX/fǣ DzN.A^*/q{9vVjc-%STJˀ(SĶialy02ubWEyō\t]vD?1L雀 L+Ъ/Vc3ZK6!!uәֹZV#%̤-Y]D.,AL͉s<_2 wW-c7DrF(VH&k,2=wJsT>O& 7g%%H ~QyjC9`P('W`˞ɁLJvXc bP|Л/ZZ0d|,'# XA&,w*D a}`^寳9, wO"CMri:jy5z.{L71p/4Fbغ+ ¯|=套L4骖n_1͞US %|EsUk'nV]u VBˬ1i`ǹkĽ@ǡHKN{ D, :iX2`q תyeFCdM`XT!x+Uu@"j<#q.SkmXjl1%aO=6lǻ{i'Sj|/!M 5eɔ'\ES6puC=S=?T;ܤq=j*O?XP5$=XʱF@jܑ91KE\BH0J r[d*AΧs76@=ĻaNj5xD_ !ty G8D $׏&2 |o8lhYGH9~Ɂrk2Y@-Pqô8ѮCXݮ™o[""*PVmȎX'QIQN.//e&7xvEdLJ1y') Gjͽ'B v_q=xr,%2T塀_O5;(|+{zqbQ *(Ƥ/)38trm]Et}}ϧ>JzUκ)Lۂ2r#)mB ֘K)72aCe8 kc7Lb9~YA4qqk.&cWvCN^ovd [Gf32E+6Z[?i8Ul ) 7S˖e:ƍTrՂ$sqc౎a aHula8AZ84W̠2*xGNC[(6[8OcMO`{3t:)aN&p+QlI i).N%]6;$ l.ȶ X .l7cwH?fOcE#p)x>SX;Yi@MUN.{Gg,$;ws/[t.zpj,hkP^) @Si}Fg=bJ$;dàcS-XH8;`9ωal9`( IZ p-qW/l:wL9(&J%u'+C@ l;??J\V#GKȏ͵M_!_[܀e\dˤ"! bz3YX5탲|.f|[f mW!| ȁ 񲎦+Fy,>ޫͧZbu@Χa!9=PɊ%x:!9UJٻ {Ǚx&>NS IEenc HhY0ˀ&/+PxM]W!F-\M `P׬Ң`D8,Ϳ~]zs|ua~MADXӬ_Y na_!2'!%V?:+'TO#wgd1v=g6^z28iҬ Rئ݁߂\$yx3v*=Q:L+fIe'jB|JWq1P׽ٖI&'6+ҙ@(N;w%o ?";,9%RO9Ґ[Cub"KiW@P"nxU:6Ӌ-w)9wsBMa m_/TRhg1ó)\5]& lV^Bk< @|SJd}X1SV[$%.vC|#JbB@N[\_U6~Q1z'7c3C%[`pYEC2QVCT`ʔn T2N ]OYŭ-=bc3-V+XNokK6B nA(+Bɕ(#%c% h75,v< (M+.l-U{t^<3qc_BB UzƊ :xFǠSnG[悷b#(LK2UȻs]H®3{6>VFY ~H*'4najczf V`&HU7x =pw ~^x\ڍ]5#F FnwN a/OP'#XK> xRn|\S| qlX2q7:m/STlD79{rgD|ׁ]ʜ?'@¯mPd5}p`(SEaʆů#  G*P.s%EMiuW%r} [h`i$]oB!ZyxR|jPNnfNfA{PB4~s p-6q8otM46mqaLll#I9;˽;S7-Ts=4 65߁`)uh)N4޲a3J(j(N )\ 2OqѪt ^O U6ug ? :ZoO^{^iR?4 ary\&31.CZ;_Z.$ϱI{#**8($\zr /ye$z7fͬ3a}SUqo|Γ.1Oj1oHO zR_6S_D.r_rB¾2;,@A>Jֆ<3s#zY?&JlRpy20&ܶ B 1^oWt!9+BьGx'DI(wL"c*ͻ[ͼFI>ekg0'rtơ\v/9ى[H:-{8(jT5pw=@y|L ΉV3^;~T4MԱU.LO[*l): ,*rbLޫ1{c/BBIZ- fwT4aF/RduF 8\{'͌{`v.CQL$5ku]D_&  r$aC)2&2n ˋ''~kPvDYb5~fxYF=m~:I'k>hNVx G9EuNq$Mm`"\.aC<1DHEk Z%,0,B0 .d//؟v K_BWgUN'mPgnh!pL=69#Е֣˦ Ay$XX-G™L>\UHpظaUzώ' }˓=7 {k{{MzZHH|!Ҭ5(= )۪8.j>`QF*A9hb ``*qB1X>{^ f<>k^هveh. .ELdE`՗q]OshV9OEG_df ri>Z!R++d͐u\ܙ:+ﭳXک#^fާ;+UC97?zc6Y9%nU–,;Qbxi Y}}2HqSF̑CH֋F؁ _z/A68("Ӎ%Z[0Sv.S{uR-)u3CR<R2?rLv+?UpW5, 0%N3(+wbf8Mrie=I/pV_5"EiOQz,5.FKiD~O. ˓SD)NeL"(KM6Qvd0 tpK|ڥO+oLڥD{ͧ/~9ֹܩQ7,E9%w +=q  ]!*roJ*lto,"Z*FjN%;ޥ#X8xy"HSLkjYH^[uZ{-!C3>5V*{`e)u 8|+Σ֔Zl{9.GoB=AsuB-2n~dZ#z`+hoA'S%g/%JH}0V'xޠ÷* iĸ kJXׁǮ]ׄڗN) 0eZ'_MW8HDϽi_VuA Fg!i?m΅I_JB߾$.+G ITjP(% Z̒QUK7PQ:4C2'[O:fW~;NHi4VγQ!Aa*dI+6YcityF?&bGV_{#7ܜ'0ğȑ.7Ev1`Z,:T~5jGWQ(sPBz|KBM ' *V=!aYļ3u&S*1b;vosں7 B&uY9Oa4|U0P(W:!@ ')N|Oy5<əK}Mv+ɍAWR nSg@څRkWuޣo;pK^oUk .B0"oa!QtY,E} =ĿŤj0gx7#)}#O$En@IyGLiiؠ,; %=,30Skōo8<|ߪlψ5'ZoESuJ]*]!w A霯Y +@eL^z򂦍qm]v ,k}BYЃPIzJB/˩u]@ʭ[g12ڥ j)th?7qQA-ECT#QdȮ4Ȥh}u-73HCY{n5XJ: |7hļu)JP\OCJ(B 4>uz`X4;"O}-t--9sFkpL}cՇIbFR-.ҁB//~/пRaL:7-FCL/t}' u4-; :g4en{) =Pv$ NLJ+yfjO%AM# pZ`9BNO3 78z}<HSen%>C,OokW&a览1+N-Eo 0eYoswP O2bkT6>Em8 &:Cag=1Ӈa\BNӜx?"blbS2hK*f$0yG<5na Nri^G+B: ؍y n צ/M:M5uHrtFq[a/Bs3J $w)v՛pY`SKpʪoqa zps}TǪZv̀> AYYu^eIR&P ݅l)6 JO^ Su_~?5~U)S8`d9k)s9+W1Y9#Fkf[jhƔ87l'7=w,xW+d2EQPmŝONELA:H+^&|a EwխABA>P-k?A?|% 3"ںH;%|߲&߉ՐCOﭜ$öM,b6?Q17z+2T6k(/k#1'J\4\;1`~o72RHD)=ޔi"PRK#8dj#\Ot8`DlCCo8^6uSR=U~tNmrW۟e+b/"utۉȌR]%q].ă+4Kc1B!j- xY.Wkkv3JR|bo0UzOJUcnLso6;p$ʡ9`:\¸P%z=皦2cXܝuX൳ЮLrW$pNT뿮]`S-sL:wsZ$e3onᄔV1W֪r9Јoӈ^ 梋S_f`Wwxn K*mꔘ݇M. (Ķ6"gCxg UXQމm&}/RS4HpWqW 9v/ZR~X]Y<ô9(&h^W#9*gK ͌LoK]%ՃhvAfG Ӓo<Vntn7J5 j4I7[VKwiN :(UT=B #(ҙ#] 6S]t8U,wmۊ\ca&V+ N ΒOU[PYUKK૖&H` *m9V䣙壼LnZ!Ƴ.vXϯ\AOuӞ T fAdl(+-;8Yd䀢%GFkZ9f\dᢎ^Yj73z<=Pѓ]rr$QYRNoA/`^|&!-Ɨdk F0B5 5L~%Fģ "%VB6yHc8zx`c-P^ H1Vb}43KCR>HqK@ 9F~^b _6zUs/,FUc085M+EA;V|p*e .zp(9:E3_]L"ڬUe ]-^vyyD=϶'A+l{?ڸ^kwK8tt9f'hJCPyuvճvF(9V̕b-S= ȮkZSF`1N${Ge:31$a|^a%AN7]~sBr'S2OK`Xʡ%NN:*ܾ[4^-}6$u&ݠ>>S:LG #Yԩyi*r,7mEn;AK/Ki@VS.;1p_3mSiwy7JOMB!kvMȩ(És%7BT~lvΜ&(<Ph'*Bʬ|-ȹ`4/CX}m{ ?5f{͎}#BmVJB*DZt t_5V! }VS}xOnFwc k npv.h\s9t}KH^cV_GޭEe];`} <\ǧ'MJy꨷sXO@"^X}Tw?#Bfؙv |Ɖb܅@5rN,Ml_@zBwq"E}©B-Jw9 ϩ U՗ƩGˀ^&>go}JC4&#"6* npƓe뾃^ Du"^4\,~H۩:Mn\[r}AB5ZkK[ /LV`p]RXu;*A@1誕n.$Ny$f` 萂5=O~ [LvZreC`L$)^>9 jpE 9QFˎriZ&ˉV[:CO%iQdfY>43-Ww %@ 7щCTW+v'>oxݠӤKggXGd ,HAxˇDX*tH9d甑/Hng6a]$}tdч .crEx:"cTU‚ǵ}TiXU" xkIrΠOut pAqٵc eZq:Q!m@nJ}_BVrв ֛:q m^F t _dP,u4 òcz'? 4morJ&x*n}j-Е@<9֣HO@]]Fv`d/ޓ޷ho?3d4 P)0]4/g+5N I?~ t9=⼋ 7k?oULhJDDȌ wz'iG\Ʃ&`*i.Twj8/4'8F&Ô%( 9%!? >(QH:Ue_gQ-\ <\XȆ䏣$P*Z(p΃+L#Z)-ּ%1/0Wl\.> 6UMZn#R*ܩa)g{n۪ mo<0˭:ZA )R7$ qu{f뀷VߨN+ݿr)OgoXB0PSt6 !de7wO>X{WQ?'ѡ[:BXãMVO~6/jmYj]}F(s'Oe҆F{-]Ao1E:tǖ-bY:][hʂ# Vy% Z]-:Vjjn5'SeC"@(" \~z;,*xaحBW]v< ^ƙx o*S nVJ.,%M'sqS?{fʦC_o; 0f.{a2CõFx ZEt1/< ngd3(w tz_U>W.?{z"{Sq܊ȤPZ$76ZPze͈oˊJϐ\,]덵܉ ɑtˌ6+!bkCFG)e9_deJطf&V*#?B :!.xEDgbj6_E3ma 43iSCmnWUc"RFe|MOѝ:@ߗ/s*,+5M>ogawl-\h#\Cxwbc_͔%#uCI͌|S\f.-ƻ2K?ZiN@sKl}QN$'SJ#{V9NQ? [SRєܱe1 mX]Gguw.y-=mPBIf#!S844kaG<FOC=X;)'wh̊H}-} J[zܾUJڵd5Z"#D1it;4oy '_DHBjmzQ8&M5udقOWeRmR#*mП emDԛ1}DV Wg+_2͘)CbER -5_u/%bs&Bn\*؃ =_ d( y!6JkDydjj!iHaf6Q(j`P$γB*գ- gəFu==3&>ޖm]a~,_ P#4֒tW$hKfb&G^H,Rc#|86UYa'<hI4TMcD[" {/8=pH4wyst(O2|l3t2"YP S3[O'O@b^Xyw/3.,I8rT4]V\ /"?UX+|` 92;v PjY:ɴf DwcUZNadzeݲSڴ.6l+qrTG̷t9o ĖuqI%z cjNA+y5{ J}FL*XTcx?P5]*H[j`$sK7e'[/gmd<TMFKi&}!٘ra&4NXM]d =L_@Iv6pA$i= w%Rւ>vZ7 et0~G,23A^OHL2K[Z> :ǡ.NޒodUd|obQr\M0T5Mt'߶(IJ|y fNG)}Os9/ˤOȨJHLV rZ4t ]KRl|s0 γA;p}hd Ss- cd{OG33(ƈ*DOhk8\F5BE߬K- =fנȈ q#\cR]8qvh=')H9VzN}SE 8[RN7MFJz^{TE;/ .0> # .DfDn[ٳlD^!yzKgv3a-0_>Ζy]2SPBՏ[A /X"$K.M?**]UeUDp$"*=2_Iz-{?fCM`YrB-hNI\bՁ]+_)C+nS*+R[EBk\ u∮6MX=[F b(CP?T W숮2.$YXۤLM_`\'yvY ϬIr),*^Ў3ڥZB9}id*ʁ HqFWI9gtΓ{qIY ]ZEfEn&6t .e50F"Cuz1'9/պd)gV{v5tߩ_}r.I%JO); 42y%%*vήn !:ņɡdݣq%1s#Nv>ݍ1+M.&ĴrT ':= ӡj7&?A(_f%bD3%u-"<%t4:}A9'C*Tmy0P8G(id3&ȨDH6R̥ F1;3vSRyk{H$-kDn-MB ~}D@V|btO-(镄Ӂ)/J_"NYKHpd;mNT_AK.R²$޷,҄eɍ_w`,?^޴A靤څSqͤ‹\^Pd&Pvwa>3l'^sM_Zɐ=nJ6 w9]u&력eBAm8dC[t!47/b=U K̳H>O @1E?{E=,9m1b7+6׼xnq1ߑ UIb0٪ uKD[$JVC!|ݯBA~8l4PsCj^N7X#ڬ*Iw/e/*7}Pҷ=T}Uhl{^\N{\kާ~垡 VY`VOl"d_8fx3=w%>5' GY\XYQ~M{a>GnLŭH*ڤ"3¿]F g; 7u-de}n>_/SI*4rO rN)瞵K,<rB>.M55"W<&]:L[ \ALً~74TM'ؕ4 $#;`OÕLiE 83x-0Ő>wYL8n;x6×S3&u>َ$Ћ1Bz{G ;|zlh ˑ#MuRzCٞni,솷>DKr؝#ȾVɠrM$itNU97u3Zʠ$ڒ]~:>5 >ͻ%M|vgUWw=ecΣly ֺ2X`p& MrG%`}#VD桶8-xggu?܂L-}Ac@JS"5؁w۰h8Eȝ}pݲ[@݈7x,p=w %!$hUtW,qlzEZGnܯHFTR.b΀dgW:>d\2޺G UF[̮yNEKg3Y}泱 k@$.q(lwybC!IЄZ@klJZ.|\6aX mͲ0|GnQ̄|npN a[3`9H/e%aH Apy=Qr%Cn$FY}CY˧ۮBєgdi{ =ቁ$x,T{ G{6#ډڜ"dse^Qm JV.Be5xARTWZ?T%yvZA;O;ZnF5 cIєwM`A7g^ſ;Ԣ jqkFDw! F #2(|\ h4 ]㵛ڦȥ&6er؁Oi94ұӍ=۞K:#A7YL̵d[E;/G+=vlC\҈yf^}gRƾ|+a]`+"n'wPBT2i9z&Ax1UM]ưԷsaa'g:>'-B=20(&FPӴ؆t&84n?k<VM!N8iwJSB/dh٧.fsdCbs1Q n2/)Ac7*r)Zͼ(vnf󓀑PbulS,hnGLMw=1p`R@`k'E dÃaU珉/~+\kNfYΏ rk=&3k<=M~7={ZG١cfhuo{tMlu@ZTڔ|@mfHi_0)۹)~أ?ʤvMk~$ƻ@gjtlӇd6{E$i||~_^(Q| fEp0iy->Bd ӣ4Q'XalwUt8 ]Т]{^I(;'ىJX{1dݚMkaL^YIW&6f}ࢬ(GFNØ+ kO&C[!7d$k*`V% "*6.0}O%a5;_ҧUinÝ@lؔuZe ǘd]bn4v˞̀6G;5aWs'ҖwcPwE?!_('&X;xM6kıI휾"QF: y.~^zNJg)SE4w]:*h#+I4!%~d(Ub 7zC+;=S;4Xظ5@*Æػ-!$OFCRV>3CﴣjRm\L@) ֘M ueg?gvy*}<2-qa$[fVmHE 06ѳ.Qh\"]6hNf(BG!N V-@U'RtuhWSֱ/dUl9Wbɂ LjRzʟuThKlqUhmoGA<9^sP5GQ3\o l0Mgh~頴E(0[Eg=n>^ŝ@?{Q긞8{9_^0HB՜F `F`GPArwDrIZKI|_AoY7b-?'FǸ9?+O%n~GP 0=d!e3>6@i =cA}Qn8B!i]W _!r}e>q⇿sیRek"f}_ ހ]ǹsVrRm Y"PVW>rg|< Y@-T@J/:Kl6|^AMagE4ޓA^1Ho_ǒnYq3u]^Hw5=aF4ܣOI8_c6jDnFd~WL#8$Dz S2!0|3ɂǻ+MZau"&bG4siv%1/[c5sֽ0[ n^~ua<'+wnZ) fua|=-,.Y)8:'!6,a)f(>e%!!?3+#)u4'4n"`@05-:=]qe&y4 <tWZ%R\XH7;OIZ knC;rD*D]ck%(`h< Pv9 Aꤎw[h[k 3 nDУCTW<Iđj3P/"E|<5f&>6 ?ȝnֻCf.1ۀ_Iz1LLX}f,źO[n],"ݣ 0zn=Y = EImf~Ǟ ̵C#G+X>C3I#*c|2@B 0PGd->!Q=.z kҹSn3y[@TD{ X\Ө[Wҩ'=@!9 6񼠯ܢi,O0<+X_bhF P;%!cv"%=c:u+?jEN#SE0["05 ds޽e/V hDua糼S@Gv+=0 ~36]ƬldԭNl׉fr5_}^_.%, *#ԭ#<.W\b"lMjLIOGniؑmʃ 3aa<J$ kqޜELxXDEnkAK=_rpҙ禯8i0OK|Rќ %ù^B 7~YM4[75nۖ|iɮ)\4cłT@g/8FmHbhg&#.HN}bP=3(ρ4`vgE]\d& 1̵n ~4ħwwϠү'wZGg^UU4$o9Bf?gp)Bg"J #(#XZΎP㐱5;^#[tBaUQ1P&Lu] ճM䋽/QބMK5^KrŸO٬Wx'zב',qwË!/jGc*zd)V6Iy $k JQN!pDqHR44j,ʠV0^P ~ kv//[+'M,P@ZP 3Ժ`.]gD'_u`sPFԪQLͨ8Ūl- b{x+´n n`YjiϐS3!Qv< tY#Fw/dՒkFea*~jԕh9^qd_OP,#_w( huAbmTrpŰ_FŽ6 aB TEʻiCRhjF^a FűPؿ|AFQ\4emMt|pf6$SEU8ĂW)p*dV*岅1*wX\}j$ '/.ԇ-.˥MS۬f'0R:B+`g/,Z? 2,S\KVL\95CXfӹIXIic%G?k)aJa~dTPƮͿ)4|ŦQFbZ9}qٖ]gu1N+qql3l?ۀ;P>txW30>0]^@qV6je^YxvBx9 Z eO]xV3jp`@ˮH#z })aVPt`#@2. <>ì q|뎦"fRP7Y/.kh !c<@W x$i7T%)`Νљ{" !|٠ˤוp0χ Y= tŃ3 Tݒccj7Pܦʅ%ł 1&oUrE"i 73MڎH܌q1𰺛PqHy2N|>U1B+rjX=|oYƯs2 Xt9+ 6{Y(LSN ^j3H5IȋBX rYPC@k,?nd2H){2{t9bO;1RH p\|v\ʿk}Մ]v:K 1TvJY[s&'%XAwExYxftMV:Xb{1=V))3,2=U@E J1M+*?ܠ@] 5?8IH^V'7 }rse`U0UvS$'SGTy]?껈Ы.J,#}Ƌ2R {cWM]w{32i0iux)7TjcXy0דL6iL}(%>6 &/e ":2d;bd=f@U4O.xu(8_ u[̹m)xd 煂C 6(ƑE;Ϡ#ip*lHWrrЏ 9Z On _95%~< inF#bkHk*p  yf\B_7ÿY=h" Xw/|^</ Օ{^{bKx0Lw986:y^jiz7I,U֙tzp , ƞ0Mve,27iKMYΤ4d^R'-)TZPpQVBޱ6U (SSݻ$ rM[ n rq> ˕`Għ)AwU|pZسqneScl&g䥱_$F3*]Y,\ R_ޣ7&FHPs j|6y  3h٨J"j؇:If&ʦJg%ioݟs6649Lc$76yZl< >$ _!J L?Q ӍƐYC*P$#FK']~jk)X~k|ɪIYlG(yX3`w>&j5!8+^*W{ _q.8ca4.;LPۊI;@`F᭿,3i ňdebB _pu}xӬ~}=Ϳ(,2f ]=Y=&UWD5clc#.j; :)/5|TKxըS2G#2 /ͧg=_Ez^ȑu65D %ppd:8_,>! (~&!2`D|%-f(>|;j 5".6 +|˳i7!(!YbH0Źrp?@ ҐNꢠ&r~sM[KFw]#4|TCJm 9l d z{{z9|\śkfF# ,mWPOXˢΦ+1ZNn{jc钣L:N9􂧀I7geM#/ IM"nn_LVCSء;D(.45IuuMȿxP I%fom19um2/tK8h6-+]ZkzӄS,xSf_Ԃ╖/-'2;R/A3śx@,]=۪Zu?G*3.p^m^,ګfsx]9N1_]HRwe5٦FwŪ݃Q`c>3N|(س&\yu*6\V%ӢlL`n&Xprh( MxC~캰6dv{ zG8z>{)I.eu}uBFP.*`Y8rx%AГ)t8faazՁr$uƒL, 5ݷL݇9 kbT'+AƋA2P/c1^džLK3aA4/{^'?Wda0bif=3Xck>鯈\.n藕Z;n?i:Y9 =L`w5(nc/BNN$- 7we@Ƭk#d^qEgs,FW>5Bku[*^Q#[-αG]3, m]=7.\ |K9<1Ӗηw'Yү;vLnt>Hܫ`" K"|mxs2VńVU6!+|(x@J4F-TDs(3TBQ(S4kf &"r$*1N9r+ VHKcʴ v FbTFLg jF _+yJ?_iPILo\5eb&h.껳TAd'G 9qF^ɍRӡ 8ɍhyޚ]/!+fQV#,C5R,ToDwg.ˌkΡ[5-ƚ ztXwJERgu6cPLAn٥ 2mg\8B 6BL!Y?ᗞ[9bljcr+K.~I y]&G  H7֤ ũ! ^ɩJIT4HxeL I9 YTVW9;KreGw@)@cu>jZ/Ʒ Eh&yv{M5IF:!T hF,Hb\)bz9{J:n7)@h6Q1G V `;#sĔϛyY0ZF/=)PJ7f9q|Z?m)-9F])ĊZ>l2_s%.Z-HvYq>35'"qCܶb;e~~Ƀڐ{4kL:SDhom.Y5R\$h^ =l02 +CdXn{\Ug{F8`qƭyQ[ (%MӅF0U.PL]kW6 [Ty'7 xm&2.ړAHXD0^:U5ߧ@;}QU 7Sf}T(cpMmrrwYIDXqU7]$XܓpҐ2씷&"2iN /ip/b KBΧ"-~3H6si#KwJs\L3^?6u tѱ [bq_*@ -r~NiOQ3(Pd7wNt;1ŴJv(~D:@1ۥѾqkFm n1q+"wJIngC=Wؑck`>2t3P#^r(.B9VH|h^]-V9DغjU2Pij*^phP7`s73D }Ra d@ե辺Y޵䎭ޠ:^[,f+ f Ʉ?i閂y)}\u6 +)/3 I4 (1tay$wV҇M;+1d&nXt<)jJ޹;U<"Lft_j^gKڶWn4:{h L_TLܒrWA#2$o!+ӏ`#Ca=Tlf].g͝?`g96Nu?Dnxrw x ?S준'ΏW*˶%ם y9~tjE[ʻ/pR^եU~]mc?qruʱ8ZF d=r/laNcLJr3ji_@lI|.^s.l#!& 'T1Oy:]!H~?7˦[wG o~>q9rmA١qFfcBTXVTm4)eW *ѐ^ W3۩nPo ZпK(hVa"NjOSF"MENސ}ȿM,Lch|->L>,NZ< rnؑ%{s-;gg\'S4rE&u~"vpgy֓NʴH} & [[zT (v+2TUtRaQmTy[{ʹ<ަ#&V4gĴc߀K@11N7ɁPO+RiupQ9Rtqݏ_LZ:n_kݖR[ j]}rI0"HayϢ}S%Rl)79H5Xaf"KU7u­&/$r9x[A _!|pͺjW ~Gc@_c `lС$t/M  Wz ,n٦;TB-idOvŦyQk1M^W-ɥ B.UIYz:axVovdv35xt)k0ϓInߴh)$Ɨ5,U`(ƦT7`HUG}Gўj"o'}Ŧ_1R-[-uR -2ӮưV4m3  j{aŁyp_Ti|U2 ydlL|5@ rq,p^;?-'hݿe4DJ+ljq32_|YV%@hE,g35%APOwLL0[ ֗^Z">h|'~؏@f)ע}n%`ef_,09_q+9~i-\jef.ۀ?b-ouh_K׬ԋI%,N)  *ٷZe%M@3k 'MMwBCN~5DDk]so݅yx|?U!<+`whV nH$s ]3} сuKxA@)~bX7Z_ $ScX*nR{ _6}ްMTa6 `5m K"?A(Pfk]½)=KU?UyQyw6,_ ̷< v[|.I%כĬ[eG)R?upP5W=OnA;'Lɭ*ʙ"y yt̘teU%?"g1Sj PW{onPa#pصӎ'HԀ1+(ѥdyL@%>;lIe$ 5f>e^վf""w˻;(,y#fSiw/9 U0}YٌΧIYgɝfE=[-z e⨨<2{GPcYYײ~sڅ2*2ɋ_[XS-TnpnKUYK3[{b6qy}ddzd*-E@!,Ғ^۠K(9 =go%)s /LOJ} 4vvʼn]? )Q,~fi4$Xi"2>eE)r߶ն3 [) gXp \r8wiTYal3J8f,Hh IotL '"Ƅvub#OE3?7!@DwJ5s9N‽( Ѵ`%yD'Fm@4{}oT>>=5 kBXaLWBMf=1S7{N q{[Mzqun9/s% Ob0T$.x2G~k!QuY~\X{W ҿzO(uΠv6߰ĕ-FH+Z YAYI3 TA,.٢"Jt+׵`JD/S#if%SXyKsOqeSE>`pvLmRKJ6-hҎ ݊YC 7ҩQ]tR'D&*}k66*x"=z^~WQ$c³REP Cl5qaDzzDUXBqOsJ|Ӧd= +!.Pf&F譒>| q\u\c TT7P4Sl \Xk0j1Ņ.%y*H(/O^$*P+n8Rˠ~LmӴE?-xmXHm Pj/heAC{Rz0j=*0 A¢{@e,+O'dqTa~1YJu&:\%H7۞QR%NKk ^m ⢴P ciK/&41mK&|ơqŮ7#UMibKJ36"fЕwzȋNj`vl˚k=l0Ȑv^&_m, p#ZS?T2{8vv]@'c EGK/ca8L:+Kjs{k*Ch@=I/ʉh{-HL7mq T\Z]96:{^!J$XP%3Le6u0*.p [;!5'Jh_7J~L -x<=ޔ=qAJ>'%l.^?/l@4IhQ[&e&DT֝{ժ|=W>`"Nc\EWչK:dx$t!xPg3ڱwwII;Sv;!JgԼzs=~T? H89v!A NWYxj:9$ZSb缄X6 ^|Dn@H{$M.Boeͬ86@Db,DOJQKXAm] F$%qf*| KPqK6Q0 ҏ252[oj oPx߬#D/0rÛt_ $t5kHe-:v'ylc iU@J<n,rF)M!').f,Їqyl1qLC!ȩ{BLvkJ"D-Ivn߶qmT7N 6V[?BuX)Я6k^y@qIŒrQ6ڽZhm{/d$vspIa+TSgkS Rz $}H Ql}q4 P?C[]A@ =u8-τ.p)Y8Ҟը32p4m?)X H0u#_s_LF*A0 c<.7G;|t;KI´n.}̹p&O9#O6"ls=qʃ/s&PĨݚk4mMu K2!}5a GjZKҫW^`v KoMqosԃN+@-e, 㹅[-a7kS}KjқDƛ>osh\y/MO˷Hc늯9O<芍O/{^q} Ln6Qv)mo̷ kpŜ O:}[ V_)SN#aZQkW~# Y=\~ob*`~a>3Bj>y}CsIy_d,HxC2wΞ;l.3^݁:Y^O)8ځX*wʁ ^EYjg䪰^:yXG~NϨssk>~jwrQd0ۀ.[3cJZ}Uiv`b [+=+ u-{)r*ΕY KߕEgAR>z %y5 iT 7zpO}JYX Yrwh)u{'+"]x!9/ ;4/Jtڕt$"{&ބA.g?V2&gb>K(`s.@l sx@g/& {JLg;WwWPoc IxV*RY@= ~D¬oާyF\挌$\Q8x^yUE F1T)iQE_0sZêwZxg42Չĕ Tۚ}i8GBa4$H\f_7^ײ-!@o4BTjgJb]/+}si[.Rr޿AѮD\]b,q%@Ѐ u<;x><n٫4Zkṫv(< AىiNDķY5[;\3e=%9qLOzyza⃪sc ↟{s(o7$cxfWU] fm$ 8%wK%ZN=ID4OLXwF ':޾!|]ؘ,ҭ*xn`̭͢ZX$- v|Zc&f۶ǘ 4 WIO^f I ~BQ'ò;?$^ 58LxME=e˙joCS2K#$Qb:Ԡ@gK_X'aIZd$<|^_ZE@~^UHPGx,)8>bKJ>7=* X=D씩! lR.)15z-\;y.k7,XLe\z@+FxsTQF_ڳ fgр& G0hBD<60rrēDBn;9xOˮkkS5Ө<.9:áưa%|3Ȁ`e/  gA6l3Af]P MݢތHl0npwPo++,V1煚JjM'C ŀb뎅"Ϻa\oj6GяdmNy{8:$Buւ6Q$w556z /T]'eru%pR>RdwWZi!㯊Ni bAB>3 N>;u$xecQGi=/P#J:Tij̾2a _%Uߴ}6o% &\':͞ soШax\yX83C'T#+N;6L&m]&h{}-"0%sۮ$fl%>aB,H5\oa3㮝Z݉T,.EKsxJS#zD3 'yy\FFn">.73Vت ENҪm{ȮT3]#{)pXLr1 ;.Oᷙ <8`Oa;Hè9 GDU Eo.MblӳȣoiV$9@g)]+<(gP؁;Gg3Xt$ *co(/-F,,OʯqW`=`X~QGgm"&70MʆmA}2]kN2J6#D$sp/mn$<|Ӡتrϸ\ ~˒"RkOFV侷dk݇Zk(֑ ?rTm3u3%GECXp #"de3;}[KBmG/ƯC/[N&xM`56~ӇUi(1VHMTcc=i>DI -;gISDqn#] լ jƯ{eޒ8y@: %Pi7׻L`tpd a^"d4,ڷ2 lu} Z*ƇXL > J(SslR1lW!;9^U2k[WQ8bc9-@#<3k`HutBI=^ m xcCEz=e1nFÛLzbލvw}]o gvv,:2wPN!)\HC ygڎh_h}YiZN\W@[$khɝ`7;b!܏c}[zb}U%l]Jn©Sfߧrw$u Zj!Y ZM/=bQhyv DōԬMyXVx#'Y}9OaO#R fZ>GœbA\:&Qm% TLݑyv6G :a WNwO>G11@i!=(jlBcRߺhՊ.3& 9̕ތvʴo [}>r _K/bn+LgijXQתAG3t sUΥ"^X#1 "*i'أET -N(z1 Npn|E$]sBMUE:A/@)LaLm9Zöx锕0VJ+.tӺ؏HS>9YUP`<OZtsB3iG(`n'q2#rRv@DP1!.ߗeRVuVHޝ՘ZFψ#@8 kkN浪$QaY"-Nc&Ry8hM#~5!MUwg/7V\.oweT~w]>W /gCwƂo[4F ?V\buVwKN(4oc(*UR!)(_ꢃ_sӌ~g4HTyg?Ex1x|& )dx+6E;o Hpʒ=!h?.uzDwW3ǷGLj,5t2%[>憆K`p=bׂY2ӓ`fVG֒Qx:JMC]{!$:cR9%#AѹԁB 7r[NL686B *+\i~yξU|sj|wm5;Ӄ38Y}G&: sFʥt:dk3sp x*J+C-Ĺ%-T|D2ׅ̔P|5iQ+*C|x)ZI1s9y=^(Q#)Gphh)#ǻ&F"lVTBVFZ~PҬP CkH]׾|lIpK ,YL# ǡW1|h%"߱_yԨWJ_e~6i'cޡh]Ʋ"~߾`?\E`z ,0Wܗ$@ ͧwN4Lfں+#c+WkB5e#E]M$x@nvgYeI*jQ|kjgm-.[:$n]CPKFb}  {_q.OVƳHzM’ʳ8%j6`jɏ_[䘴NnFܛ6rڷq+Vs0 9hQ{5Г*,{C|ρOsy } yȚWJKɨR! Ue0@aZ)vJMێB^Zi!uti p"GnUpH` ^ZUǂ3RM|ߔZ 4}6: GF묁WT2C-V -Mc睊NZo#\ƬhL|l4u )ils1'{5^z5uNKY ;F̦*V l68&\ip/v>y )(ceg񡔨:A4q/12M s*p_q 9yJc bf./u+Wũj+Ǔ'k-*^ᤶsX9 #ˇHjE2z7ٺD2fճgin$ aKC ~YGLUsc- ۛfE⑘ H5ƻ젓-yڍm}Ե5vTK.=^^YXW/t}(_VUaBIӮNx0}%.;Hq cf@F}6Bɦ^t^8L|2Ɂ^VYMHȻ+z+j{YlqWyL0b|ƍX"%5\_ X?&Dg nk#MD@_Ze+|o'm +:t/-K4JdH0uy_(vRuS 469zFD1X`vXx+Sz|[Cxv|Aj0>*SeQlB4Bn\%;;S_T`kǽ8 fFѠ0n4}Q _^p4@Hnĩ|"ЮF]OD$Wʩcxd-&[վAa8gI l{x"K"y2tdL/bow 2; 8 CzQY *Rڈpmm "$ 1ovEɐ4ݍ"OĿ]h}CW:5Zx{$dKUāwc-U-" /Z0+i2K&9@Wiնڣ~~(Ǒ,~> \TƮO|΋ՌYUbH:ܢK7Gc&J {W[( B,Nr rbYpL/Fi.w|R(+V\=&zo~߲,5W×bH7EG%,Ag2+@0[RCwW2y:(9Y]#r/!!r7F8S?-vZEe[w=HG]ʶ FVZ?ܿ+ѳ5+idT])es*~XG{&!SJmэ* "^y(74t͍o_cXQKm\/#)0Y}L]< EC٧/QL/+1d'0]?MzKq}G 'hcEESx*zle%"Y !6jtd ƈ GAG4 [RGcBk?ϬcF {î#X&~7xU(d \Q|,Ωc/U31(vW@8n{&Ǧyw϶rTGiOeWesd2$bKoj8d3Ʒ0#ܼW1WU0Q`^*%DKVu^g5C}q, (~lhrQ)Ih"='HoH_ 3В vCS(ѬMU[[x <` '0B+-ѱ!:㴅7qK># _\RkpO?ŗ.ޙ`CiM :Y^*ק^hO[A[qp8ЈG[ &~+u)`(@B3 Jgp[>4M&kvrH̉%2 )p$"_%Q1RC3_= lx@WGkC7 8[ݖPJ A)2)v6PThNhDI"S0{ /]c*k)<q[ XTӘ707۶]|adY1.ӑKlZrx9O}qzpe6:@2 m1efB4k[yn6SìOJ\'Hᄡfgr-Pa7` Dmev&b6-;y@W\9.<_ /@{vkc+:ܑ8yL?q*}]b3xǾh~bKHIOf᳥r cɭJB.R2HB)up,ai_c=/rwJҤec}6uB9 T3@7Ǯ*&WpfѲVk1Z*=T 0Ǹ(vQ.hE{&b]%1f$X:] ]O~F1kO!ԋ=a^cH8θ3'clbZLI *J\ng93C]#޺] ڈ$moJھ"<[%ثbOGlKdZ :KjTUKpM$ZEr+K˴D7Hf_z٘T72+h20/~B7Ӻ^{Bssm IR|_E}fQ/h_;*6}w~ 1* 1gKiI>p'tF!Yԧ?+nΎҺ.;n@ r:Ꞡ{6nV>+I,CԐ.P! U+ƦB΄=-ȩwGxH">nhs_ے0*GN7;@}$PrU2p14DφR}VEN5\4\/m= 3~(tz4%˜\)eMY ]NrnEQh^^líM ցR B9 0&kgdxæKt5Μx;GڏtƖ畛ʤmƇK$S tw2=,>p( Gofww? ll0e/9|xH#Y\ $7KYoPP \2+z ԅ˗nvZSGGmv+nl8T?EVGKWI֯[I`"> !k29 }Jd#o& Z`Re}42{Nx\GV5NsF@7޾4ȅڞ8:}_4Y>&SMRH@7f7IRp[Y3z(L` pwiu(TJ6Ҙ٨>x@fc_KT@X`: ڮ=ӹXKi˒"t VI 7w/`YAeZUb5,޴oG3 OE6&)Iee2Wj[㲞VLфpN"M'ׁ, [Z1 $Sdpπnk1eEϸA yIέbtU~KLӝ%¸tj1vLE瘱@CKԖ֐,$zҵ\/ i`*:eby<ڇ_S1e v, 2Ӽ Flu+j?WԀȰxqdKt&K/pޱsl:wMn;ygQcf5)y̷+T(s ^ b Cp99]m,N>J[Se \Z2ώqh)'*N6 >ٻ~ʩF_כ/1XAd*;]}2ʌ27!7:r835?N'MV%SqPfVIj$.Wrf >d;I]~U]C'50z @(0*M]i2b a:1#vG<ꠈ |/Y'S'(6?l#W]yC?q>;߁2*={Ᏹ2%ZJ$vP Dj- d"kh;1awu#Pp {&n7lz\1eaX˿nPg2Ʌ|Z/vK0m BU|~&#tg] 0B)%靵^B#5~5]dDPߩYS>Q3̢JhY)TRGFޥfBWUu#ÌK:_,lR.+]Y< FxeJah!eIi w#9Y-np۩%ٌȂ]HDy$]vð=IP3JYQf2B,mؑ$Cr߳q!UJ'*)(pnp@o4,XbF=JBBL'kj7,Z_JkC4f"&%3M~5,'̘7s5 O2[.'rʟD +T6<{kzAGqjT}e":Ҽ@lgcdLM 0ݦ!51d/ֈBتIx;l-:[۹N.A(M?-pFfzAdYw@d|Գ%Jhj_3@뽧5ykAγG\E~'덄U,3B9$Piqbݧ @5V8u qjm o/ ƾ8:} q#7RXK8ݠ;H^+SClwi:P4,6xpHC㮣(Aq[ܯ[Y9d1a|D!8 huLl񵅟*&6wZ׭˧w=P&sMyn&#Yrlv /S״m67q&oه֒)n@9TF >%\lO2丰3at5AP5KP*LrZ5=gSa. oȲR mj:LUꁲ@hʸ@J]*4T=݂^.60 K=@deu#Z)x)C`ܟ@K)U񪊬Lex@%ݦʑț?L}/5_&!CT~3rO3܇cώj#lkduf0esud.ABA~0}S41.erU("yKAZTvcl5*@ PG+fhޠڥWjVVLưRagbcIJZ4{ɍ?0v F7_TrqB`(߽}_9ƅgQg q_}C}3o-tI rPhY6q¾#V-~+1Q蓶J^UԁV3jFa?DχZɺš_ UsP)2cx$5˧ו\X S2?9CSL;+k;6P'Q#wh#faoa,5 Uy f℆\#F /YI7e`dĽЈA>W &,isTX\qǾv]d>fi :U0Le'oqV n:6?FhĤbj?"6|{ECZDiCOqyυ(]/= ("dI&d8D5G!4$#up#dn-%BgF`Kv 9:<[8&o2pSۋ96wak9Oؼ)Q_lgkeiȵ^ц7{D*R8HzU`8K]v/dzj409'$|MؼH7H`z8<\eXml>$>\?"s\cra5<ԋ~H1Opu*Qo|"'K')/dR!/Jw;U0w>r@ GLb%PQDubPTjzcj$\> "5-ڬ?$^Xfl£p@B%ӓ& Gq]V'ѝU|@`NOq1 };1\n)kgh;֖ᥳb46쮳(`b=!bAߝK'8:lgF/ E2Dr& ۻg8l*v#uo*,D g"F2P!m#X| QenȻs"=˞WY> &HLT ȝ+4^(vaM7tA"|t`%kF6->pDNv'ZXvS7(nW@bmvDU):"5H8U5yMgq\VAlɽ@G-hn%D! [7HG x~Y eOƟ^;d}%V 6,3)d\uulbS%zr_Ə!DEqJn2+C.WD8D@\L+4^z‹m E{Hk'feÆ ݹv߆w"ǂD@"?ji?2? [3qK|AƝ&#I)nU"riDE,{J:dh?z#CqBG06`O&Q݉}aGk@8שʇl~[,D@$7"Pʂ̊64nN JrB"ȀjNМTaB_d}v?<ª<_Q2+E E]岓Luc79 1D݋5sQpm|c^4_#|\7(+0pW7CQH'MDŤ>OB;/Bd#z1xͮ&XGB3g 4(|Q֐J<-^L.O@#- < m%[5kJO6p;U$[z:$!DdJfQ9gj'=ciBЗ\'6aX*nʸo ߩ #-oׄ0>b,{a%Ϟѿ_3X^r*Gx#Qw`L4D_3*5)qٔdA}"z<6) AYm;tkw-{~QRW0>rȐ_@@qqŎWrRIg"語Bs$]}m M^FE6|`Yn <8rЛԮ7jUG0D2fB1/!ͬ5+4 ycXh B-/a)zeggl>B"[J7sn'83ph&EyHK)stwDyXD2oW'; fنˋtt #i+Ys2au1S#duM)@T[Ȇ&]*NhF 馭&MN/+?tO=9ex܄BCT+h՗5b冸j(7 t'm5"E=#c~ v ^sa/^3!.j9>*,nnmo']>=* ddCڃG`90#_1&w,G]>Lp )u3zhgRJED)-T/ ~Idhnl+\euH$Ko'UQ8]č]@S4db#o5Oa'0=_͛waaP<-֘vj"%o35[ </WX wۘs)2Jv8Fr9(vu0?dv'%JD}lh U c@wDzxDyEx''RxmKb#xaL I.9ԃi[m >߂n{K ۩-t̊IR̔2&+P@p]l9/1riBU9+U1Վt9Cv68>am\i2"bdFae"ĨHjL?U@ H<ӿ0L#B'5b`^sʫ]Ih^`%!W=`c4ENj HcA+wfƱR ML;k+B3\mbtYq0{\hwli"k\7 IU~B@4I o!겗 SN21SyQ":ѠC;(P(&B)f/wr@vZK>:HY  Lq XQs[ WY>dK$JEJq Tf}#M!!5H`,N~1*EJ5&:d3WހƷOMі!k Xz \ Z{*|T ̟"86=f0PRZkl'6w2a|Mgox0)ʲ׼Q%<aV?Du=s>N@z0%,>K+P*I zq'`,P~cCBkan֑F 6)y% *M8{煡dҪ$c‰.`/s@|̈́!5lBAyܘa+*C ;7v wz0 @O{yϤ mDY[>&fd꟒*Uq9W1}DȖv65bX9 9A -iL(Eu  (~bZ 4˛sܜ/-uz'>a9݃^xx1yP 3~p#Wk7 YHQ]&u՜QAJ6\ Np!*dEFr)EmՑ_0P^P|찅ĪGm*tzn}nFQ0cd{T|-5J ZaC$0_d[g힦9bɂU.G4#5ZUwv@w"V6lL3TN7wxVTߦc^ [PLh_Íl`e5 FoM}= P\JDrǸkg: !8 @pPG6,)-s &@sUEm'N|ɾߎt@&,iy>-"}w#SY۱\.N\0O`+} &OS.2ȍ7 t[t%o КiQwMLEyT_qa\xX>/! uȁՎ:rsROKjڮ-6<;{48wr65k,=X%IP3qp>6ckG7ů3 J N{5rurqʯ2m~@$P Bt|> I-@)XÄ Sug p|90"qLM/0+U$ѻוyY=y{1;=H'13`?=ԩGׯYNI𐷃;cO+41ç>ú̢8<{2a8^mm1RֿSqujT = |?AIxU\tudֈҾNӰ$S<` {ůֆ;H~>ݪ:0I~Gؽ.:i)“ѕ(S\ʒoH1ͦL+`JM ǖŎVGjM3zD4ªɼWړx<Œ'CfI)ܚ|pA[Xڙ Nɐ\eNguS iWk=+VtoNz']#zumS'};SG3+zkpkfT6}fY`uTi5Ǥ݅9qI`U#nhmP0'svQIf1l4  F$zT@4SV}3 &+RtgjF \ﳬXQnN@ֳp~Vǝ\ I5w"#}k@B C=,VZ_| Ib#AT<p*. -vc6kəj"oJj#}5y9N7Y9.վp[pDôOaɦ1G3#=|Z ^t8}gW'ȉ57J)k@,r8A\-cP!DVׄzMF \%uSSv$K|_کOVTH-H(H77? *-ϿkmUɺy׋ u1 Dpg0t6?3 ǫ!`gKO-":MI鑹&HqGEd ES<H]1l4꺃g)ݠ\u:ij ۝/gt,Y:*sGM&_pm(;zZW'&eR.AI/ɤWWi$M# 6B {Dc?(ȫku vU)q[Kz;N%ЃppW+6XDbRvyJtV[$}UciMͳZo# hEږ.*MnSZg:5+9ژuL`BF:H%'Kq6/euE:QZi L (+M+qvHK1cG iug;H$iv\-"s/ J5 is{ A1a:Ruu#x(?+Hq23m5Gt~zPdn_z'Web[IL'b4ﭪb>UB uC}e!tp-Nlt` 9tʜ=' +Ғ.R|9CA T+^cg~Ohbx 74 W`+Rw47qiZi >囜r[+O2zQ57):p7hb w1H (飬x@@E2; \E).( I_ CL9}ewPrFE4 P_6ޏafs`"Lۜ~߄|wښrFkRNvTm%_=znת3a姟!u ,Jp$s37-D(LɋQT\u7w6#6eF 43CXDZlAM 8^.7^lp_<40~npm\ȡP#|+٥Nԯ91t1.C}8 ^}\}F )j"!{^vx@2Uǽd|Sk8E\z\P w*荒zpv9["P*6Z #4x<~oecXU5B4z1b-*UmO:,יgxxN!ٲRjY'*ڼ38)p)zDT$m[_zOW%Vư Uc.:a2Jx?ڮ nf݇2D+W,,߭wk(wom{\X<0Fvb ? 16JL-m.'EBi5ޒN_Bl#Qhߗ O3 z > t`mX'>3=KT'iikx1K{<d͢ȏN/B˞ $,FB!䔄Z> 1SjF5͖|( w\IۺmJ&\Z`85^V6?sMj$u8DK|C^0ZHB+͕%\ cS[idous,ec*HZ/Qfg?_O~n΅@gUJ V[ҡ'5W4m"PaZL,FJڹniF23I;,bAAN# INF?G9#j,`Enk[\jŸcaJƾ\FS# U /KC&9]0t@[ɗe$v)j?WC3̷E}B["wPpEW\a4*L< `TFGtqzNr@_RcGAФT D&8/wJh _)0n8zR Pmj`'DpNYWƞ#U&B !8ڝLֻ݆q^W'!)xEIHGNj^}C#_~*UN҂|0}S{‡ i^Q HpRA{ Q: t>Űk\ uk޽q5%-me)x6[:3NG{_y/`fpAF(Qjy2rE(zL"؁;4kJ6fbU\`{苯Lx] FxN{mQ팝]$Z|$ 13%^Eo4)s3sFXi5P P `ᨔZ@=ѭY*(ά}ԺF$XXXL)%10V 5g2N¨V.ywM6=(:;ԊEdJl0eYO:4Tly|HIqF%Bj~Z ؈c'7"mk6V .}n'j`'UM'' K3.` 5&yAJSUH(q7ɽCf 6+Տ:ܕP+Tc{%Sb9Ll^A/CyK@AUx]LAU}.Xt>ZF8]u lަo"ӚïuGԅ_B0ORO)ldf"bNoL hav܍F睺g+LpgNjPEbo뽣 KٱENUl5g?iQ਼ӯGHz`J!A ܃S)< 53'7B@1!O6wDVlr-|<j:Gz}y1k%ː.W~`AᚡGXf|,Rf,:‘LD '̄}) *}\ۜn+ i+ԆR+Y^M\aRx)Kw=3T4ӳhSX\sJYvH}Ung2 dJ0v4Dr '7HN9tgziE%vYwg?*M,H՝eB' ݦtݯaV6$6d|P,Ff֏"ׁ(\I!Oat _>7&*,M ]u*꒏w:>KdE=KT\T AxZ~xnYm bys!ba v_INK8 3bd Q _̎MGp?3Ry_7N!M )w)~ܓ\s2;ŗgIv%kL"1^,ۈq3QY 69ť\RT]ӛxh'5n ;3Ujfn{K $:홣gI[qh/*ȉk#\։obAX&vYxRg. ݋-1-1% W]s3,\4Cwh!T {%xooۂ/J%|sJGoN@ bMmc@>Q5@ "tC 8ia9Q ~>A\) jQ`RmWH/: mQ(\ՂT~tg$Ƴ;p&GP=`dJюs |Ud ljݍ\~5)o4 n5k6mewBTἣ{Z G 7m]0T^ȃk.~9uͰmv6ZSQ 6s!M;aukK)(+dSR̵P `_?떠XLJc8BD\ 'P2ƋEK3]w60: KV4u4Hmh @gYFɲB_2nl)ò7zpa`$'8&Ux' CczxF[+1-8yno2qEfo.d905Ѯ|e7jH53M U #1"=o/R[)L?X!ZȂ'8% }Ѹ##.KX%dy/%* ΢}BvF;%ndtڷS;(/T m.:#u168/@E]Um{#`#DQRhMq7Y>K,$N _KcHBPiׄ9͐v|+$ R_I IaJ>"^+RS>t#o ?_+6K ċw֎{8Tg%IB[}12S>9pbSS'٫G?ʟB7n2j{g<&^t fh]hw3c[AkH[bHo {)pV?nql (C5ǕV[]WeMp(ڽzF'wz ~~onUIHѺ8P|, ig-qLG]ꉥ Z<.ѣrni֜\С j}93c=I~NHEpA ;ї=I#OmlpyEƄ})TlM7W0h ʎ<4K/d78`D-gnXv\D'՚)U'K{z%J6ڂi 8RFp^|% : %ȁXƋ Yr/ܲrsTE'߽k"|z} 7lةA^ Rvo('6nާ`1yEX.g .?o2h ˴ɵ\L`(.V7ڷ݆xlûYЬF2 ygE)~QgIƘbl4؝qMFKy-[ :_(w>w; H mGf%m*|] $JK˻|8fB|Z [I.Q(8"Q4T@7GYz[* zAXzX?)7+N1 )4A z8S֪uaq_';vG0$XXtn1SnMhLF Acfcd]FS;F3akÑg&- XƂ.GMue_r]Ash%Ma#0X;O"0T38F (%,Cfk}}9-O3~Mh=l{TITLbӭv+vO9a֔hq9lѥX-2k1U$oD4*s#io \BfBk$u&EYD$3`$& 1W $SEEhtzpp6S*Y]Ꞅf9Ge /CUJ(^ə88I\ZKk k)0Nޝ!ʱ]hOu/gO$y5{K{ bb:ZD3سHǃ̡Jo7[^&KO 2M$wY![ 䁁CQ-uy ,0a|͌<[mjhnQd-5 ]s5W^ޒR)8&OBVhLMu!e8mS?,qi^L?Li@s1~gs51x|}Kh/ot*" Iy59XU7C~5)<-c%{v+H2M 32aU㑿<8kOՅ^=7:#fX1<0bEXR:b~~#xQD=Zʴ IDaB۬ߕI<{ .gI"'l3Ȍ2O<"T*^şo.M5UMو2Y~([YaC;f`ޞ]B<^1oKPOhC9bo8jXSVxiNFqs v_G[FM &"X̏]\Jŏ 3p2ZIc񩜣FN*g˰#7Ѧm5IBK;/F9%79: cB|<&  fhpvR}wv9cGY7/"#6e[m]ʄAs9"-BzZuy 5ݔZb?%Av)På..@=6hp ! Vgq8ǼJK"NEykNH ;׊b I]^% 'OO]=kD69b3=8_|lFHgQ$1a.UOp}H0P05Nu Ox7LL0Wl5mWnjgeϿA O@TjCo7^bٳ5^ 5z ǿJ|Fs$]Rݧ<)Wj?A^xȔK6iѰq1nK6gǔKm}k*&UK|T#4m"'v`jzr)f+fJĽ-u >Tbp_=`"jQz:_J'A7 m-&aG9`MN8EADo\a ٵ5VD$LaKX XmN54 6Q)J=٘#>϶9lqVTA #M+ 5at8ާ] n/XLEsJ4ʂa t7hIolspK 1e1 v^tAÂ7H#`ټ |l6,68X`D qItf;"`z'.צsd:RW9aSkjq% 1k3,difE 7i['<'\jS]C"{LX3еԶ T|!#^Ʉ2:!s\)GL~9aG%8_?FSfb|^bC` t]'-9Q>Zx0NVlď%;'}A?{pX++f_1zM[HpM8ŽZvJUOm=K2&^ݠ㙰F~tA;[#|q(źz  @M=8p :߈&TȩM!6Q\3F.*ɰf[dGY#4Hʃ=T͟&]9Z3&Ņ\̮mwqC0kl*HEq5uFTIТ#二TSWw!8( T1#ϒ@2ؚQ*N. fpAJy{YG'{c -ޜ:od` _f0v2~?Qf~N]+|EeT֟ ~c>{k_]ko?p k{Ƭ5RA\n.a%'E8MgO +H\8 ;K ).DA00څ[祥2[eHDܢ?&yO!Ͼq"LQaDBLYvveOX=Ɗ?Wf$12 'DV*E1ڸûQ_uPc@̄վR a5 ta.4blYoW4ibU >U~M`SBXp "*Ur :RJZF(u!2"S8Qg["A.kyv,St Xv/މJȬ-JK’@BO]5ξ78yx#d|tQ:\:fW6;c3b:}LNG&<'RN2tIj;?#DBӝHneC%;`+: +/8>/{Њ\UbG@îkSP3 V?^*rFMY:\wOe˞C vqNL\[x~a7PzR%$lUx!*BxKUۨy2FUr n6T bʝԃĠD+; m{IPc]<3JQÔNЉ9CeM[)dnuTd8EsݰM+CdXnVy<r,/=z2[ٙ,\'w1f'k\jY8hJ9aFΞccƺlu\\F*l5Vx<NhUU[g0M3f*` ԑ:$k0WT)H}Rd32Dm!?̋8q#R]H`VH|U#W{,rftrM-#*;Pv T抳_#nqy3h#C;J*?-Ӯ{u8> ,{5HOOZ_.U%8:!s_55&ȼ|ßQv4t f Aw }cGIz#}'gkjljB+^9% P28_е!LDɼI4YLR|MePL:C"wP.72g ibIwc&l(fQNKCP mKgBN($0003ߐU*FxͰsggzjV/24I.<:ȼZtf7J C-QVJ{EziYCFU/#jLXx7Nme|sKN0u H쾹g A;3TddV CT_;>‡O,:mY”3TڰEoȰ[sR G)'&dKysVU+%Ǘs3?a-ƦpBK|ÿ\}[⅖3&J|CF{7lONZN% ԭdyՇWƬHӪ^¸|oNDLSX΃ /.a+:Fs4>%P%:Q o}WT13$7d;]`3@SמBeZ=z" %pE) m0#{|a0/nFpOYRLqlZMd[ze7Tkx!zXYa1 }viQ\ăoR61,7\N'QJv4Ǟ*AwQ)L^7R E!yT)eE~G>|Wɀ`vQgY9LI͖{3!+ƋOmB Ow!f|6lyi7pdM4]ApK5+yk"6y@$M1䲵X/: y"c 6"Z[j?hOQsҫ*'q0ႈ`gJ(*Wɭ-/i R0ww듓 1p3EMxpBuD [Bm tfWYҹpVwM7˓Җy)P}Z8@K,E[SѪUsK'`$'\uuT[17l;,JnoV^j  ]`7k7S4ɷ>p%9 ֺYչ2 ŝV s'7g9ѕAzxdgeF8*h_$M/B#qu9 Z^Uk txYOΒ2i LjLbkάl0fD{@&S?0_k8nN`LvW!ͮ-AA2 - "1M\w)N<2Mst`A%6.0l` )x|+**MN/o )~o ^*,9..aē"P MqYU?&!{" _ES%;K_LU õ/Wl𛠢÷$ :~qr!`軿jN$ȡL wa`$qqxo 8L9i0Ȱ0Nx R`E5{4?_ktGPxqsX,<~^0E| |P2<()i!ӭ/W$΀^dLh{@C"~1$-PP*PÊn34$cW33Y<eic߾U]>4px..Di֌ge |Q޷J'] ւMxzZk8J/dWH[Gplڠ<#4vVcad14VbRhXS,DѿR 7 SjDVC&?jA 1 R:mUe&x .gK,X9Q@Zdj$6ZQD{mZĎ#5o ѕNL(eusVcp8 *5/fk2'{N yzU@cNX#[Y@4~n '?N@M΋&1 ;@؅* wj=377fe~a,:TL&J9N":;[FI(+뚔AH#Cj-޻!<$] \ZCAp6F`Ryz;Lux Bھ[ ~7ܤ9}52hp2:NNyt)pbWn3w8x%2(:b%vXɳZ S})gM. v L)M˝҉}|#0u4#J1V+2ߥkMJ"鍖7nw26(^Cv"* QIMH˄J^XJ8k2{iSo$oI53?Mv/Ӛaf*f@B+fOQaخ4XPߐ0IHM?K|1!W Q jIqJdMI@YzLm@FOU^-;&%XӎN"zBbY\K=6CΆRs D̹"`d1'&h׵h"8$-P@uY,#w/p s軲ԕ>4" >AEl3\Gx\}~5Z@7aN$ 64Q$ (Ú ܿH֍/sC, \5Ơ ףULr ө*m~d),k P ]dG>ue&iڴTM_(gdhaF5;h&HF-Ʌ[GUps%wR8>T`K7SD&[P%oG`HD&+F9*;\'Ņ [K#wfi X',;?zKk qVv7l1 C(IV'rpS=/n]J@+ &;B;G+8 K8zB,Qp^Xoؖ߮.e\7plC/>fL 2GmT`27例}=zAFd{q+vsA( + ryTDE {Y#N0d) \;hޡ< ॖ~vHT!B̩$Ƹt~~G̎^}:;~ԛ#l#mڦ$ WXDJ" ƆJz_J:%=y J:Hi2kY$tB93Wǩdn8a++-ӓ0GL Bs#Wً^~* wJ![υ1ݜ{aE/\_90\5#̛/`/9Q}Bp(&B?O4㗡{mW kI.S*>c4aaǘ|n~0'ׄBtF8fG)'bk+nI]33ɂV2QuO?QgS߼Tz?yWEЌ€f47垁!%B{ + WҵT (*19y& xPdOx}SY3lP Sb7l絷/-5!yj1 y?{M GkcҾVxt.4E9Ӫ~CQ R#FvA9S-4eF T=b䝦-lcdd> 0I& D+= ^m&!oIs2Fp} Hm>d9'(# ~+]L.`89o%ԚOCqGxqC,tFZyu ){GM2K<&Ԗ88=kg{P >YE3,bxSl0fY]H>2\wO(AKV|e:a9Q/Y0߆[[Kd3dX1H+0jTKx QE aDLۑ']"Cx[H -nsx>jh@R*h׷HWVi r1faf\@( 5Br-=F$;XI ow|IKH`t=ĉH2R{w|NʾՒ4+qi{IoD;14Q^S,G\^5qhm#J81Pk"?F-p?AuDyP3ғM(9V|q J#1̤>зn#W]AUަJH\]N/mf bCjhu @Y3譐UܖH  EO"̘!0cK߯\8Tϙ.t d]7O 3̅MgcuwaadGmg.oH, D}q֫-#3V e(l? (Pfι'9N 3RQ #\̀fk *~n5=5A)t)=F,Fp*'WatϾ<]P kpa:eo=3 s7~m4d?5̟pdM5$q!19X2=fIJْD J7E/= W )caz(ub, gKqdXLN{^GDA'd`{m0VmK­hbwDm16}aCMl>ɔ6f2K覮Z :Cc劦°.BR BxzClv}Dr8iUJaZB G7:~w~? &x@T4SwR-C-aPC,Y=֍ۡZd_]-hg'A4E?:i?/DɆ "/Ia)ĭ+Vg!#9U3oNI6辊5P'OSp$el@c<3АlniۜcG: טk K„Ig዗uȩ& .d<DSy2LqTKŸ\xL^ ?n@Chw Ϥj3ܹ!]{ϰshoɺ^6tw,pY:S/ĬbF$:mBJ]]Y?FWq& XKEBZlpل(d@^hb1:W;ɬ[!?"nn`Q=s&w {9xJd.Y-GZ`k0Frj:缀AcBEbrM]`pg #qu8,SXE&_fPpX?xSWZ8_[k7 ZϬ!E,+߿@6JA*2o=vg=TzcɅ18$쬏LO4[YJ ܱ,iճj\̞ p?`>F 6Dk "ͤ~ }x{vNDyT\Mov F̟LU?IEI}d ObDR@ޥ谞E| j@vÃ\H@ MAm4|~VDV~>BpG}k&x)KY2lL;O97f*7e$=V\}ԓ5)1>R w -V;+K0#/'2'q7\_]ڒ:!3Qkt=`@&!f㟃ȱ YS9LlvD{D9ZFMvɃ}/xD3Y"W;E.p(0H0G ?TBQ+mٲ#y0\˧Z/c'BfA]_4p+ 0F|Zݽ!ʿҋL1 6-DQ%3rBB$Eڇg%K>RJ-$h!Z,Fŀ9x@YS[-Aío}3LD C{5Xkf]~ ֋EAa=紡2__c 8)hٴ mUD$bנ[G7==oKY\UZUAy x۹c:ݶC<r¸-ҋy<:{}?R =< IcGIŮ",!n_\"997D-U0BG_/k%#;Z8Վ_)nAtp .Es+ pFk˙v8S0nL )+:*(+)g6D%BxM\3ڶMg?Ζ8YJtgvn+gQY 5^~O_AIވRt~Ide@ ٷLRa$ },'"ކ=ľZ j `S" ;X~SM% b`0/*bؒKt^6W6"3w~\I:PH8,|XK(] ?yuז)Ii::-+w~ݽe, ޴A/iah *4'zlF7-=s8J@KhBce eU"s6 YZ