#! /usr/bin/python2 -E # Authors: Karl MacMillan # Simo Sorce # Rob Crittenden # # Copyright (C) 2007-2010 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # requires the following packages: # fedora-ds-base # openldap-clients # nss-tools import sys import os import grp import signal import shutil import pickle import random import tempfile import nss.error import base64 import pwd import textwrap from optparse import OptionGroup, OptionValueError try: from ipaserver.install import adtrustinstance _server_trust_ad_installed = True except ImportError: _server_trust_ad_installed = False from ipaserver.install import dsinstance from ipaserver.install import krbinstance from ipaserver.install import bindinstance from ipaserver.install import httpinstance from ipaserver.install import ntpinstance from ipaserver.install import certs from ipaserver.install import cainstance from ipaserver.install import memcacheinstance from ipaserver.install import otpdinstance from ipaserver.install import sysupgrade from ipaserver.install import replication from ipaserver.install import service, installutils from ipapython import version from ipapython import certmonger from ipapython import ipaldap from ipaserver.install.installutils import * from ipaserver.plugins.ldap2 import ldap2 from ipapython import sysrestore from ipapython.ipautil import * from ipapython import ipautil from ipapython import dogtag from ipalib import api, errors, util, x509 from ipapython.config import IPAOptionParser from ipalib.x509 import load_certificate_from_file, load_certificate_chain_from_file from ipalib.util import validate_domain_name from ipapython import services as ipaservices from ipapython.ipa_log_manager import * from ipapython.dn import DN import ipaclient.ntpconf uninstalling = False installation_cleanup = True VALID_SUBJECT_ATTRS = ['st', 'o', 'ou', 'dnqualifier', 'c', 'serialnumber', 'l', 'title', 'sn', 'givenname', 'initials', 'generationqualifier', 'dc', 'mail', 'uid', 'postaladdress', 'postalcode', 'postofficebox', 'houseidentifier', 'e', 'street', 'pseudonym', 'incorporationlocality', 'incorporationstate', 'incorporationcountry', 'businesscategory'] SYSRESTORE_DIR_PATH = '/var/lib/ipa/sysrestore' def subject_callback(option, opt_str, value, parser): """ Make sure the certificate subject base is a valid DN """ v = unicode(value, 'utf-8') if any(ord(c) < 0x20 for c in v): raise OptionValueError("Subject base must not contain control characters") if '&' in v: raise OptionValueError("Subject base must not contain an ampersand (\"&\")") try: dn = DN(v) for rdn in dn: if rdn.attr.lower() not in VALID_SUBJECT_ATTRS: raise OptionValueError('%s=%s has invalid attribute: "%s"' % (opt_str, value, rdn.attr)) except ValueError, e: raise OptionValueError('%s=%s has invalid subject base format: %s' % (opt_str, value, e)) parser.values.subject = dn def validate_dm_password(password): if len(password) < 8: raise ValueError("Password must be at least 8 characters long") if any(ord(c) < 0x20 for c in password): raise ValueError("Password must not contain control characters") if any(ord(c) >= 0x7F for c in password): raise ValueError("Password must only contain ASCII characters") # Disallow characters that pkisilent doesn't process properly: bad_characters = ' &\\<%' if any(c in bad_characters for c in password): raise ValueError('Password must not contain these characters: %s' % ', '.join('"%s"' % c for c in bad_characters)) def parse_options(): # Guaranteed to give a random 200k range below the 2G mark (uint32_t limit) namespace = random.randint(1, 10000) * 200000 parser = IPAOptionParser(version=version.VERSION) basic_group = OptionGroup(parser, "basic options") basic_group.add_option("-r", "--realm", dest="realm_name", help="realm name") basic_group.add_option("-n", "--domain", dest="domain_name", help="domain name") basic_group.add_option("-p", "--ds-password", dest="dm_password", sensitive=True, help="admin password") basic_group.add_option("-P", "--master-password", dest="master_password", sensitive=True, help="kerberos master password (normally autogenerated)") basic_group.add_option("-a", "--admin-password", sensitive=True, dest="admin_password", help="admin user kerberos password") basic_group.add_option("--mkhomedir", dest="mkhomedir", action="store_true", default=False, help="create home directories for users " "on their first login") basic_group.add_option("--hostname", dest="host_name", help="fully qualified name of server") basic_group.add_option("--ip-address", dest="ip_address", type="ip", ip_local=True, help="Master Server IP Address") basic_group.add_option("-N", "--no-ntp", dest="conf_ntp", action="store_false", help="do not configure ntp", default=True) basic_group.add_option("--idstart", dest="idstart", default=namespace, type=int, help="The starting value for the IDs range (default random)") basic_group.add_option("--idmax", dest="idmax", default=0, type=int, help="The max value value for the IDs range (default: idstart+199999)") basic_group.add_option("--no_hbac_allow", dest="hbac_allow", default=False, action="store_true", help="Don't install allow_all HBAC rule") basic_group.add_option("--no-ui-redirect", dest="ui_redirect", action="store_false", default=True, help="Do not automatically redirect to the Web UI") basic_group.add_option("--ssh-trust-dns", dest="trust_sshfp", default=False, action="store_true", help="configure OpenSSH client to trust DNS SSHFP records") basic_group.add_option("--no-ssh", dest="conf_ssh", default=True, action="store_false", help="do not configure OpenSSH client") basic_group.add_option("--no-sshd", dest="conf_sshd", default=True, action="store_false", help="do not configure OpenSSH server") basic_group.add_option("-d", "--debug", dest="debug", action="store_true", default=False, help="print debugging information") basic_group.add_option("-U", "--unattended", dest="unattended", action="store_true", default=False, help="unattended (un)installation never prompts the user") parser.add_option_group(basic_group) cert_group = OptionGroup(parser, "certificate system options") cert_group.add_option("", "--external-ca", dest="external_ca", action="store_true", default=False, help="Generate a CSR to be signed by an external CA") cert_group.add_option("", "--external_cert_file", dest="external_cert_file", help="PEM file containing a certificate signed by the external CA") cert_group.add_option("", "--external_ca_file", dest="external_ca_file", help="PEM file containing the external CA chain") cert_group.add_option("--no-pkinit", dest="setup_pkinit", action="store_false", default=True, help="disables pkinit setup steps") cert_group.add_option("--dirsrv_pkcs12", dest="dirsrv_pkcs12", help="PKCS#12 file containing the Directory Server SSL certificate") cert_group.add_option("--http_pkcs12", dest="http_pkcs12", help="PKCS#12 file containing the Apache Server SSL certificate") cert_group.add_option("--pkinit_pkcs12", dest="pkinit_pkcs12", help="PKCS#12 file containing the Kerberos KDC SSL certificate") cert_group.add_option("--dirsrv_pin", dest="dirsrv_pin", sensitive=True, help="The password of the Directory Server PKCS#12 file") cert_group.add_option("--http_pin", dest="http_pin", sensitive=True, help="The password of the Apache Server PKCS#12 file") cert_group.add_option("--pkinit_pin", dest="pkinit_pin", help="The password of the Kerberos KDC PKCS#12 file") cert_group.add_option("--root-ca-file", dest="root_ca_file", help="PEM file with root CA certificate(s) to trust") cert_group.add_option("--subject", action="callback", callback=subject_callback, type="string", help="The certificate subject base (default O=)") parser.add_option_group(cert_group) dns_group = OptionGroup(parser, "DNS options") dns_group.add_option("--setup-dns", dest="setup_dns", action="store_true", default=False, help="configure bind with our zone") dns_group.add_option("--forwarder", dest="forwarders", action="append", type="ip", help="Add a DNS forwarder") dns_group.add_option("--no-forwarders", dest="no_forwarders", action="store_true", default=False, help="Do not add any DNS forwarders, use root servers instead") dns_group.add_option("--reverse-zone", dest="reverse_zone", help="The reverse DNS zone to use") dns_group.add_option("--no-reverse", dest="no_reverse", action="store_true", default=False, help="Do not create reverse DNS zone") dns_group.add_option("--zonemgr", action="callback", callback=bindinstance.zonemgr_callback, type="string", help="DNS zone manager e-mail address. Defaults to hostmaster@DOMAIN") dns_group.add_option("--no-host-dns", dest="no_host_dns", action="store_true", default=False, help="Do not use DNS for hostname lookup during installation") dns_group.add_option("--no-dns-sshfp", dest="create_sshfp", default=True, action="store_false", help="Do not automatically create DNS SSHFP records") parser.add_option_group(dns_group) uninstall_group = OptionGroup(parser, "uninstall options") uninstall_group.add_option("", "--uninstall", dest="uninstall", action="store_true", default=False, help="uninstall an existing installation. The uninstall can " \ "be run with --unattended option") parser.add_option_group(uninstall_group) options, args = parser.parse_args() safe_options = parser.get_safe_opts(options) if options.dm_password is not None: try: validate_dm_password(options.dm_password) except ValueError, e: parser.error("DS admin password: " + str(e)) if options.admin_password is not None and len(options.admin_password) < 8: parser.error("Admin user password must be at least 8 characters long") if options.domain_name is not None: try: validate_domain_name(options.domain_name) except ValueError, e: parser.error("invalid domain: " + unicode(e)) if not options.setup_dns: if options.forwarders: parser.error("You cannot specify a --forwarder option without the --setup-dns option") if options.no_forwarders: parser.error("You cannot specify a --no-forwarders option without the --setup-dns option") if options.reverse_zone: parser.error("You cannot specify a --reverse-zone option without the --setup-dns option") if options.no_reverse: parser.error("You cannot specify a --no-reverse option without the --setup-dns option") elif options.forwarders and options.no_forwarders: parser.error("You cannot specify a --forwarder option together with --no-forwarders") elif options.reverse_zone and options.no_reverse: parser.error("You cannot specify a --reverse-zone option together with --no-reverse") if options.uninstall: if (options.realm_name or options.admin_password or options.master_password): parser.error("In uninstall mode, -a, -r and -P options are not allowed") elif options.unattended: if (not options.realm_name or not options.dm_password or not options.admin_password): parser.error("In unattended mode you need to provide at least -r, -p and -a options") if options.setup_dns: if not options.forwarders and not options.no_forwarders: parser.error("You must specify at least one --forwarder option or --no-forwarders option") # If any of the PKCS#12 options are selected, all are required. pkcs12_req = (options.dirsrv_pkcs12, options.http_pkcs12) pkcs12_opt = (options.pkinit_pkcs12,) if any(pkcs12_req + pkcs12_opt) and not all(pkcs12_req): parser.error("--dirsrv_pkcs12 and --http_pkcs12 are required if any " "PKCS#12 options are used.") if options.unattended: if options.dirsrv_pkcs12 and options.dirsrv_pin is None: parser.error("You must specify --dirsrv_pin with --dirsrv_pkcs12") if options.http_pkcs12 and options.http_pin is None: parser.error("You must specify --http_pin with --http_pkcs12") if options.pkinit_pkcs12 and options.pkinit_pin is None: parser.error("You must specify --pkinit_pin with --pkinit_pkcs12") if options.dirsrv_pkcs12 and not options.root_ca_file: parser.error( "--root-ca-file must be given with the PKCS#12 options.") if (options.external_cert_file or options.external_ca_file) and options.dirsrv_pkcs12: parser.error( "PKCS#12 options cannot be used with the external CA options.") if options.external_ca: if options.external_cert_file: parser.error("You cannot specify --external_cert_file together with --external-ca") if options.external_ca_file: parser.error("You cannot specify --external_ca_file together with --external-ca") if options.dirsrv_pkcs12: parser.error("You cannot specify PKCS#12 options together with --external-ca") if ((options.external_cert_file and not options.external_ca_file) or (not options.external_cert_file and options.external_ca_file)): parser.error("if either external CA option is used, both are required.") if (options.external_ca_file and not os.path.isabs(options.external_ca_file)): parser.error("--external-ca-file must use an absolute path") if (options.external_cert_file and not os.path.isabs(options.external_cert_file)): parser.error("--external-cert-file must use an absolute path") if options.idmax == 0: options.idmax = int(options.idstart) + 200000 - 1 if options.idmax < options.idstart: parser.error("idmax (%u) cannot be smaller than idstart (%u)" % (options.idmax, options.idstart)) #Automatically disable pkinit w/ dogtag until that is supported options.setup_pkinit = False return safe_options, options def signal_handler(signum, frame): global ds print "\nCleaning up..." if ds: print "Removing configuration for %s instance" % ds.serverid ds.stop() if ds.serverid: dsinstance.erase_ds_instance_data (ds.serverid) sys.exit(1) ANSWER_CACHE = "/root/.ipa_cache" def read_cache(dm_password): """ Returns a dict of cached answers or empty dict if no cache file exists. """ if not ipautil.file_exists(ANSWER_CACHE): return {} top_dir = tempfile.mkdtemp("ipa") fname = "%s/cache" % top_dir try: decrypt_file(ANSWER_CACHE, fname, dm_password, top_dir) except Exception, e: shutil.rmtree(top_dir) raise Exception("Decryption of answer cache in %s failed, please check your password." % ANSWER_CACHE) try: with open(fname, 'rb') as f: try: optdict = pickle.load(f) except Exception, e: raise Exception("Parse error in %s: %s" % (ANSWER_CACHE, str(e))) except IOError, e: raise Exception("Read error in %s: %s" % (ANSWER_CACHE, str(e))) finally: shutil.rmtree(top_dir) # These are the only ones that may be overridden for opt in ('external_ca_file', 'external_cert_file'): try: del optdict[opt] except KeyError: pass return optdict def write_cache(options): """ Takes a dict as input and writes a cached file of answers """ top_dir = tempfile.mkdtemp("ipa") fname = "%s/cache" % top_dir try: with open(fname, 'wb') as f: pickle.dump(options, f) ipautil.encrypt_file(fname, ANSWER_CACHE, options['dm_password'], top_dir) except IOError, e: raise Exception("Unable to cache command-line options %s" % str(e)) finally: shutil.rmtree(top_dir) def read_host_name(host_default,no_host_dns=False): host_name = "" print "Enter the fully qualified domain name of the computer" print "on which you're setting up server software. Using the form" print "." print "Example: master.example.com." print "" print "" if host_default == "": host_default = "master.example.com" host_name = user_input("Server host name", host_default, allow_empty = False) print "" verify_fqdn(host_name,no_host_dns) return host_name def read_domain_name(domain_name, unattended): print "The domain name has been determined based on the host name." print "" if not unattended: domain_name = user_input("Please confirm the domain name", domain_name) print "" return domain_name def read_realm_name(domain_name, unattended): print "The kerberos protocol requires a Realm name to be defined." print "This is typically the domain name converted to uppercase." print "" if unattended: return domain_name.upper() realm_name = user_input("Please provide a realm name", domain_name.upper()) upper_dom = realm_name.upper() #pylint: disable=E1103 if upper_dom != realm_name: print "An upper-case realm name is required." if not user_input("Do you want to use " + upper_dom + " as realm name?", True): print "" print "An upper-case realm name is required. Unable to continue." sys.exit(1) else: realm_name = upper_dom print "" return realm_name def read_dm_password(): print "Certain directory server operations require an administrative user." print "This user is referred to as the Directory Manager and has full access" print "to the Directory for system management tasks and will be added to the" print "instance of directory server created for IPA." print "The password must be at least 8 characters long." print "" #TODO: provide the option of generating a random password dm_password = read_password("Directory Manager", validator=validate_dm_password) return dm_password def read_admin_password(): print "The IPA server requires an administrative user, named 'admin'." print "This user is a regular system account used for IPA server administration." print "" #TODO: provide the option of generating a random password admin_password = read_password("IPA admin") return admin_password def check_dirsrv(unattended): (ds_unsecure, ds_secure) = dsinstance.check_ports() if not ds_unsecure or not ds_secure: print "IPA requires ports 389 and 636 for the Directory Server." print "These are currently in use:" if not ds_unsecure: print "\t389" if not ds_secure: print "\t636" sys.exit(1) def uninstall(): rv = 0 print "Shutting down all IPA services" try: (stdout, stderr, rc) = run(["/usr/sbin/ipactl", "stop"], raiseonerr=False) except Exception, e: pass # Need to get dogtag info before /etc/ipa/default.conf is removed dogtag_constants = dogtag.configured_constants() print "Removing IPA client configuration" try: (stdout, stderr, rc) = run(["/usr/sbin/ipa-client-install", "--on-master", "--unattended", "--uninstall"], raiseonerr=False) if rc not in [0,2]: root_logger.debug("ipa-client-install returned %d" % rc) raise RuntimeError(stdout) except Exception, e: rv = 1 print "Uninstall of client side components failed!" print "ipa-client-install returned: " + str(e) ntpinstance.NTPInstance(fstore).uninstall() if not dogtag_constants.SHARED_DB: cads_instance = cainstance.CADSInstance( dogtag_constants=dogtag_constants) if cads_instance.is_configured(): cads_instance.uninstall() cainstance.stop_tracking_certificates(dogtag_constants) ca_instance = cainstance.CAInstance( api.env.realm, certs.NSS_DIR, dogtag_constants=dogtag_constants) if ca_instance.is_configured(): ca_instance.uninstall() bindinstance.BindInstance(fstore).uninstall() httpinstance.HTTPInstance(fstore).uninstall() krbinstance.KrbInstance(fstore).uninstall() dsinstance.DsInstance(fstore=fstore).uninstall() if _server_trust_ad_installed: adtrustinstance.ADTRUSTInstance(fstore).uninstall() memcacheinstance.MemcacheInstance().uninstall() otpdinstance.OtpdInstance().uninstall() ipaservices.restore_network_configuration(fstore, sstore) fstore.restore_all_files() try: os.remove(ANSWER_CACHE) except Exception: pass # ipa-client-install removes /etc/ipa/default.conf sstore._load() ipaclient.ntpconf.restore_forced_ntpd(sstore) group_exists = sstore.restore_state("install", "group_exists") ipaservices.knownservices.ipa.disable() ipautil.restore_hostname(sstore) # remove upgrade state file sysupgrade.remove_upgrade_file() if fstore.has_files(): root_logger.error('Some files have not been restored, see %s/sysrestore.index' % SYSRESTORE_DIR_PATH) has_state = False for module in IPA_MODULES: # from installutils if sstore.has_state(module): root_logger.error('Some installation state for %s has not been restored, see %s/sysrestore.state' % (module, SYSRESTORE_DIR_PATH)) has_state = True rv = 1 if has_state: root_logger.error('Some installation state has not been restored.\n' 'This may cause re-installation to fail.\n' 'It should be safe to remove %s/sysrestore.state but it may\n' 'mean your system hasn\'t be restored to its pre-installation state.' % SYSRESTORE_DIR_PATH) # Note that this name will be wrong after the first uninstall. dirname = dsinstance.config_dirname(dsinstance.realm_to_serverid(api.env.realm)) dirs = [dirname, dogtag_constants.ALIAS_DIR, certs.NSS_DIR] ids = certmonger.check_state(dirs) if ids: root_logger.error('Some certificates may still be tracked by certmonger.\nThis will cause re-installation to fail.\nStart the certmonger service and list the certificates being tracked\n # getcert list\nThese may be untracked by executing\n # getcert stop-tracking -i \nfor each id in: %s' % ', '.join(ids)) return rv def set_subject_in_config(realm_name, dm_password, suffix, subject_base): ldapuri = 'ldapi://%%2fvar%%2frun%%2fslapd-%s.socket' % ( dsinstance.realm_to_serverid(realm_name) ) try: conn = ldap2(shared_instance=False, ldap_uri=ldapuri, base_dn=suffix) conn.connect(bind_dn=DN(('cn', 'directory manager')), bind_pw=dm_password) except errors.ExecutionError, e: root_logger.critical("Could not connect to the Directory Server on %s" % realm_name) raise e entry_attrs = conn.get_ipa_config() if 'ipacertificatesubjectbase' not in entry_attrs: entry_attrs['ipacertificatesubjectbase'] = [str(subject_base)] conn.update_entry(entry_attrs) conn.disconnect() def main(): global ds global uninstalling global installation_cleanup ds = None safe_options, options = parse_options() if os.getegid() != 0: sys.exit("Must be root to set up server") ipaservices.check_selinux_status() signal.signal(signal.SIGTERM, signal_handler) signal.signal(signal.SIGINT, signal_handler) if options.uninstall: uninstalling = True standard_logging_setup("/var/log/ipaserver-uninstall.log", debug=options.debug) installation_cleanup = False else: standard_logging_setup("/var/log/ipaserver-install.log", debug=options.debug) print "\nThe log file for this installation can be found in /var/log/ipaserver-install.log" if not options.external_ca and not options.external_cert_file and is_ipa_configured(): installation_cleanup = False sys.exit("IPA server is already configured on this system.\n" + "If you want to reinstall the IPA server, please uninstall " + "it first using 'ipa-server-install --uninstall'.") client_fstore = sysrestore.FileStore('/var/lib/ipa-client/sysrestore') if client_fstore.has_files(): installation_cleanup = False sys.exit("IPA client is already configured on this system.\n" + "Please uninstall it before configuring the IPA server, " + "using 'ipa-client-install --uninstall'") root_logger.debug('%s was invoked with options: %s' % (sys.argv[0], safe_options)) root_logger.debug("missing options might be asked for interactively later\n") global fstore fstore = sysrestore.FileStore(SYSRESTORE_DIR_PATH) global sstore sstore = sysrestore.StateFile(SYSRESTORE_DIR_PATH) # Configuration for ipalib, we will bootstrap and finalize later, after # we are sure we have the configuration file ready. cfg = dict( context='installer', in_server=True, debug=options.debug ) if options.uninstall: # We will need at least api.env, finalize api now. This system is # already installed, so the configuration file is there. api.bootstrap(**cfg) api.finalize() if not options.unattended: print "\nThis is a NON REVERSIBLE operation and will delete all data and configuration!\n" if not user_input("Are you sure you want to continue with the uninstall procedure?", False): print "" print "Aborting uninstall operation." sys.exit(1) try: conn = ipaldap.IPAdmin( api.env.host, ldapi=True, realm=api.env.realm ) conn.do_external_bind(pwd.getpwuid(os.geteuid()).pw_name) except Exception: msg = ("\nWARNING: Failed to connect to Directory Server to find " "information about replication agreements. Uninstallation " "will continue despite the possible existing replication " "agreements.\n\n") print textwrap.fill(msg, width=80, replace_whitespace=False) else: rm = replication.ReplicationManager( realm=api.env.realm, hostname=api.env.host, dirman_passwd=None, conn=conn ) agreements = rm.find_ipa_replication_agreements() if agreements: other_masters = [a.get('cn')[0][4:] for a in agreements] msg = ( "\nReplication agreements with the following IPA masters " "found: %s. Removing any replication agreements before " "uninstalling the server is strongly recommended. You can " "remove replication agreements by running the following " "command on any other IPA master:\n" % ", ".join( other_masters) ) cmd = "$ ipa-replica-manage del %s\n" % api.env.host print textwrap.fill(msg, width=80, replace_whitespace=False) print cmd if not (options.unattended or user_input("Are you sure you " "want to continue " "with the uninstall " "procedure?", False)): print "" print "Aborting uninstall operation." sys.exit(1) return uninstall() if options.external_ca: if cainstance.is_step_one_done(): print "CA is already installed.\nRun the installer with --external_cert_file and --external_ca_file." sys.exit(1) elif options.external_cert_file: if not cainstance.is_step_one_done(): # This can happen if someone passes external_ca_file without # already having done the first stage of the CA install. print "CA is not installed yet. To install with an external CA is a two-stage process.\nFirst run the installer with --external-ca." sys.exit(1) # This will override any settings passed in on the cmdline if ipautil.file_exists(ANSWER_CACHE): if options.dm_password is not None: dm_password = options.dm_password else: dm_password = read_password("Directory Manager", confirm=False) if dm_password is None: sys.exit("Directory Manager password required") try: options._update_loose(read_cache(dm_password)) except Exception, e: sys.exit("Cannot process the cache file: %s" % str(e)) if options.external_cert_file: try: extcert = load_certificate_from_file(options.external_cert_file) except IOError, e: print "Can't load the PEM certificate: %s." % str(e) sys.exit(1) except nss.error.NSPRError: print "'%s' is not a valid PEM-encoded certificate." % options.external_cert_file sys.exit(1) certsubject = DN(str(extcert.subject)) wantsubject = DN(('CN','Certificate Authority'), options.subject) if certsubject != wantsubject: print "Subject of the external certificate is not correct (got %s, expected %s)." % (certsubject, wantsubject) sys.exit(1) try: extchain = load_certificate_chain_from_file(options.external_ca_file) except IOError, e: print "Can't load the external CA chain: %s." % str(e) sys.exit(1) except nss.error.NSPRError: print "'%s' is not a valid PEM-encoded certificate chain." % options.external_ca_file sys.exit(1) certdict = dict((DN(str(cert.subject)), cert) for cert in extchain) del extchain certissuer = DN(str(extcert.issuer)) if certissuer not in certdict: print "The external certificate is not signed by the external CA (unknown issuer %s)." % certissuer sys.exit(1) cert = extcert del extcert while cert.issuer != cert.subject: certissuer = DN(str(cert.issuer)) if certissuer not in certdict: print "The external CA chain is incomplete (%s is missing from the chain)." % certissuer sys.exit(1) del cert cert = certdict[certissuer] del certdict del cert # We only set up the CA if the PKCS#12 options are not given. if options.dirsrv_pkcs12: setup_ca = False else: setup_ca = True # Figure out what external CA step we're in. See cainstance.py for more # info on the 3 states. if options.external_cert_file: external = 2 elif options.external_ca: external = 1 else: external = 0 print "==============================================================================" print "This program will set up the FreeIPA Server." print "" print "This includes:" if setup_ca: print " * Configure a stand-alone CA (dogtag) for certificate management" if options.conf_ntp: print " * Configure the Network Time Daemon (ntpd)" print " * Create and configure an instance of Directory Server" print " * Create and configure a Kerberos Key Distribution Center (KDC)" print " * Configure Apache (httpd)" if options.setup_dns: print " * Configure DNS (bind)" if options.setup_pkinit: print " * Configure the KDC to enable PKINIT" if not options.conf_ntp: print "" print "Excluded by options:" print " * Configure the Network Time Daemon (ntpd)" if not options.unattended: print "" print "To accept the default shown in brackets, press the Enter key." print "" if external != 2: # Make sure the 389-ds ports are available check_dirsrv(options.unattended) if options.conf_ntp: try: ipaclient.ntpconf.check_timedate_services() except ipaclient.ntpconf.NTPConflictingService, e: print "WARNING: conflicting time&date synchronization service '%s'" \ " will be disabled" % e.conflicting_service print "in favor of ntpd" print "" except ipaclient.ntpconf.NTPConfigurationError: pass # Check to see if httpd is already configured to listen on 443 if httpinstance.httpd_443_configured(): sys.exit("Aborting installation") realm_name = "" host_name = "" domain_name = "" ip_address = "" master_password = "" dm_password = "" admin_password = "" reverse_zone = None if not options.setup_dns and not options.unattended: if ipautil.user_input("Do you want to configure integrated DNS (BIND)?", False): options.setup_dns = True print "" # check bind packages are installed if options.setup_dns: if not bindinstance.check_inst(options.unattended): sys.exit("Aborting installation") # Don't require an external DNS to say who we are if we are # setting up a local DNS server. options.no_host_dns = True # check the hostname is correctly configured, it must be as the kldap # utilities just use the hostname as returned by getaddrinfo to set # up some of the standard entries host_default = "" if options.host_name: host_default = options.host_name else: host_default = get_fqdn() try: if options.unattended or options.host_name: verify_fqdn(host_default,options.no_host_dns) host_name = host_default else: host_name = read_host_name(host_default,options.no_host_dns) except BadHostError, e: sys.exit(str(e) + "\n") host_name = host_name.lower() root_logger.debug("will use host_name: %s\n" % host_name) system_hostname = get_fqdn() if host_name != system_hostname: print >>sys.stderr print >>sys.stderr, "Warning: hostname %s does not match system hostname %s." \ % (host_name, system_hostname) print >>sys.stderr, "System hostname will be updated during the installation process" print >>sys.stderr, "to prevent service failures." print >>sys.stderr if not options.domain_name: domain_name = read_domain_name(host_name[host_name.find(".")+1:], options.unattended) root_logger.debug("read domain_name: %s\n" % domain_name) try: validate_domain_name(domain_name) except ValueError, e: sys.exit("Invalid domain name: %s" % unicode(e)) else: domain_name = options.domain_name domain_name = domain_name.lower() ip = get_server_ip_address(host_name, fstore, options.unattended, options) ip_address = str(ip) if options.reverse_zone and not bindinstance.verify_reverse_zone(options.reverse_zone, ip): sys.exit(1) if not options.realm_name: realm_name = read_realm_name(domain_name, options.unattended) root_logger.debug("read realm_name: %s\n" % realm_name) else: realm_name = options.realm_name.upper() if not options.subject: options.subject = DN(('O', realm_name)) ca_file = options.root_ca_file if options.http_pkcs12: if options.http_pin is None: options.http_pin = installutils.read_password( "Enter %s unlock" % options.http_pkcs12, confirm=False, validate=False) if options.http_pin is None: sys.exit("%s unlock password required" % options.http_pkcs12) http_pkcs12_info = (options.http_pkcs12, options.http_pin) http_cert_name = installutils.check_pkcs12( http_pkcs12_info, ca_file, host_name) if options.dirsrv_pkcs12: if options.dirsrv_pin is None: options.dirsrv_pin = installutils.read_password( "Enter %s unlock" % options.dirsrv_pkcs12, confirm=False, validate=False) if options.dirsrv_pin is None: sys.exit("%s unlock password required" % options.dirsrv_pkcs12) dirsrv_pkcs12_info = (options.dirsrv_pkcs12, options.dirsrv_pin) dirsrv_cert_name = installutils.check_pkcs12( dirsrv_pkcs12_info, ca_file, host_name) if options.pkinit_pkcs12: if options.pkinit_pin is None: options.pkinit_pin = installutils.read_password( "Enter %s unlock" % options.pkinit_pkcs12, confirm=False, validate=False) if options.pkinit_pin is None: sys.exit("%s unlock password required" % options.pkinit_pkcs12) pkinit_pkcs12_info = (options.pkinit_pkcs12, options.pkinit_pin) if not options.dm_password: dm_password = read_dm_password() if dm_password is None: sys.exit("Directory Manager password required") else: dm_password = options.dm_password if not options.master_password: master_password = ipa_generate_password() else: master_password = options.master_password if not options.admin_password: admin_password = read_admin_password() if admin_password is None: sys.exit("IPA admin password required") else: admin_password = options.admin_password if options.setup_dns: if options.no_forwarders: dns_forwarders = () elif options.forwarders: dns_forwarders = options.forwarders else: dns_forwarders = read_dns_forwarders() if options.reverse_zone: reverse_zone = bindinstance.normalize_zone(options.reverse_zone) elif not options.no_reverse: if options.unattended: reverse_zone = util.get_reverse_zone_default(ip) elif bindinstance.create_reverse(): reverse_zone = util.get_reverse_zone_default(ip) reverse_zone = bindinstance.read_reverse_zone(reverse_zone, ip) if reverse_zone is not None: print "Using reverse zone %s" % reverse_zone else: dns_forwarders = () root_logger.debug("will use dns_forwarders: %s\n" % str(dns_forwarders)) print print "The IPA Master Server will be configured with:" print "Hostname: %s" % host_name print "IP address: %s" % ip_address print "Domain name: %s" % domain_name print "Realm name: %s" % realm_name print if options.setup_dns: print "BIND DNS server will be configured to serve IPA domain with:" print "Forwarders: %s" % ("No forwarders" if not dns_forwarders \ else ", ".join([str(ip) for ip in dns_forwarders])) print "Reverse zone: %s" % ("No reverse zone" if options.no_reverse \ or reverse_zone is None else reverse_zone) print # If domain name and realm does not match, IPA server will not be able # to estabilish trust with Active Directory. Print big fat warning. realm_not_matching_domain = (domain_name.upper() != realm_name) if realm_not_matching_domain: print("WARNING: Realm name does not match the domain name.\n" "You will not be able to estabilish trusts with Active " "Directory unless\nythe realm name of the IPA server matches " "its domain name.\n\n") if not options.unattended and not user_input("Continue to configure the system with these values?", False): sys.exit("Installation aborted") # Installation has started. No IPA sysrestore items are restored in case of # failure to enable root cause investigation installation_cleanup = False # Create the management framework config file and finalize api target_fname = '/etc/ipa/default.conf' fd = open(target_fname, "w") fd.write("[global]\n") fd.write("host=%s\n" % host_name) fd.write("basedn=%s\n" % ipautil.realm_to_suffix(realm_name)) fd.write("realm=%s\n" % realm_name) fd.write("domain=%s\n" % domain_name) fd.write("xmlrpc_uri=https://%s/ipa/xml\n" % format_netloc(host_name)) fd.write("ldap_uri=ldapi://%%2fvar%%2frun%%2fslapd-%s.socket\n" % dsinstance.realm_to_serverid(realm_name)) if setup_ca: fd.write("enable_ra=True\n") fd.write("ra_plugin=dogtag\n") fd.write("dogtag_version=%s\n" % dogtag.install_constants.DOGTAG_VERSION) else: fd.write("enable_ra=False\n") fd.write("ra_plugin=none\n") fd.write("mode=production\n") fd.close() # Must be readable for everyone os.chmod(target_fname, 0644) api.bootstrap(**cfg) api.finalize() if not options.unattended: print "" print "The following operations may take some minutes to complete." print "Please wait until the prompt is returned." print "" if host_name != system_hostname: root_logger.debug("Chosen hostname (%s) differs from system hostname (%s) - change it" \ % (host_name, system_hostname)) # configure /etc/sysconfig/network to contain the custom hostname ipaservices.backup_and_replace_hostname(fstore, sstore, host_name) # Create DS group if it doesn't exist yet dsinstance.create_ds_group() # Create a directory server instance if external != 2: # Configure ntpd if options.conf_ntp: ipaclient.ntpconf.force_ntpd(sstore) ntp = ntpinstance.NTPInstance(fstore) if not ntp.is_configured(): ntp.create_instance() if options.dirsrv_pkcs12: ds = dsinstance.DsInstance(fstore=fstore, cert_nickname=dirsrv_cert_name) ds.create_instance(realm_name, host_name, domain_name, dm_password, dirsrv_pkcs12_info, idstart=options.idstart, idmax=options.idmax, subject_base=options.subject, hbac_allow=not options.hbac_allow, ca_file=ca_file) else: ds = dsinstance.DsInstance(fstore=fstore) ds.create_instance(realm_name, host_name, domain_name, dm_password, idstart=options.idstart, idmax=options.idmax, subject_base=options.subject, hbac_allow=not options.hbac_allow) else: ds = dsinstance.DsInstance(fstore=fstore) ds.init_info( realm_name, host_name, domain_name, dm_password, options.subject, 1101, 1100, None) if setup_ca: ca = cainstance.CAInstance(realm_name, certs.NSS_DIR, dogtag_constants=dogtag.install_constants) if external == 0: ca.configure_instance(host_name, domain_name, dm_password, dm_password, subject_base=options.subject) elif external == 1: # stage 1 of external CA installation options.realm_name = realm_name options.domain_name = domain_name options.master_password = master_password options.dm_password = dm_password options.admin_password = admin_password options.host_name = host_name options.unattended = True options.forwarders = dns_forwarders options.reverse_zone = reverse_zone write_cache(vars(options)) ca.configure_instance(host_name, domain_name, dm_password, dm_password, csr_file="/root/ipa.csr", subject_base=options.subject) else: # stage 2 of external CA installation ca.configure_instance(host_name, domain_name, dm_password, dm_password, cert_file=options.external_cert_file, cert_chain_file=options.external_ca_file, subject_base=options.subject) # Now put the CA cert where other instances exepct it ca.publish_ca_cert("/etc/ipa/ca.crt") # we now need to enable ssl on the ds ds.enable_ssl() ds.restart() if setup_ca: # We need to ldap_enable the CA now that DS is up and running ca.ldap_enable('CA', host_name, dm_password, ipautil.realm_to_suffix(realm_name)) # This is done within stopped_service context, which restarts CA ca.enable_client_auth_to_db() # Upload the CA cert to the directory ds.upload_ca_cert() else: with open(options.root_ca_file) as f: pem_cert = f.read() # Trust the CA cert root_logger.info( 'Trusting certificate authority from %s' % options.root_ca_file) certs.NSSDatabase('/etc/pki/nssdb').import_pem_cert( 'External CA cert', 'CT,,', options.root_ca_file) # Put a CA cert where other instances expect it with open('/etc/ipa/ca.crt', 'wb') as f: f.write(pem_cert) # Install the CA cert for the HTTP server with open('/usr/share/ipa/html/ca.crt', 'wb') as f: f.write(pem_cert) # Upload the CA cert to the directory ds.upload_ca_dercert(base64.b64decode(x509.strip_header(pem_cert))) krb = krbinstance.KrbInstance(fstore) if options.pkinit_pkcs12: krb.create_instance(realm_name, host_name, domain_name, dm_password, master_password, setup_pkinit=options.setup_pkinit, pkcs12_info=pkinit_pkcs12_info, subject_base=options.subject) else: krb.create_instance(realm_name, host_name, domain_name, dm_password, master_password, setup_pkinit=options.setup_pkinit, subject_base=options.subject) # The DS instance is created before the keytab, add the SSL cert we # generated ds.add_cert_to_service() memcache = memcacheinstance.MemcacheInstance() memcache.create_instance('MEMCACHE', host_name, dm_password, ipautil.realm_to_suffix(realm_name)) otpd = otpdinstance.OtpdInstance() otpd.create_instance('OTPD', host_name, dm_password, ipautil.realm_to_suffix(realm_name)) # Create a HTTP instance http = httpinstance.HTTPInstance(fstore) if options.http_pkcs12: http.create_instance( realm_name, host_name, domain_name, dm_password, pkcs12_info=http_pkcs12_info, subject_base=options.subject, auto_redirect=options.ui_redirect, ca_file=ca_file) else: http.create_instance( realm_name, host_name, domain_name, dm_password, subject_base=options.subject, auto_redirect=options.ui_redirect) ipaservices.restore_context("/var/cache/ipa/sessions") set_subject_in_config(realm_name, dm_password, ipautil.realm_to_suffix(realm_name), options.subject) # Apply any LDAP updates. Needs to be done after the configuration file # is created service.print_msg("Applying LDAP updates") ds.apply_updates() # Restart ds and krb after configurations have been changed service.print_msg("Restarting the directory server") ds.restart() service.print_msg("Restarting the KDC") krb.restart() # Create a BIND instance bind = bindinstance.BindInstance(fstore, dm_password) bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders, options.conf_ntp, reverse_zone, zonemgr=options.zonemgr, ca_configured=setup_ca) if options.setup_dns: api.Backend.ldap2.connect(bind_dn=DN(('cn', 'Directory Manager')), bind_pw=dm_password) bind.create_instance() print "" bind.check_global_configuration() print "" else: bind.create_sample_bind_zone() # Restart httpd to pick up the new IPA configuration service.print_msg("Restarting the web server") http.restart() # Set the admin user kerberos password ds.change_admin_password(admin_password) # Call client install script try: args = ["/usr/sbin/ipa-client-install", "--on-master", "--unattended", "--domain", domain_name, "--server", host_name, "--realm", realm_name, "--hostname", host_name] if not options.create_sshfp: args.append("--no-dns-sshfp") if options.trust_sshfp: args.append("--ssh-trust-dns") if not options.conf_ssh: args.append("--no-ssh") if not options.conf_sshd: args.append("--no-sshd") if options.mkhomedir: args.append("--mkhomedir") run(args) except Exception, e: sys.exit("Configuration of client side components failed!\nipa-client-install returned: " + str(e)) #Everything installed properly, activate ipa service. ipaservices.knownservices.ipa.enable() print "==============================================================================" print "Setup complete" print "" print "Next steps:" print "\t1. You must make sure these network ports are open:" print "\t\tTCP Ports:" print "\t\t * 80, 443: HTTP/HTTPS" print "\t\t * 389, 636: LDAP/LDAPS" print "\t\t * 88, 464: kerberos" if options.setup_dns: print "\t\t * 53: bind" print "\t\tUDP Ports:" print "\t\t * 88, 464: kerberos" if options.setup_dns: print "\t\t * 53: bind" if options.conf_ntp: print "\t\t * 123: ntp" print "" print "\t2. You can now obtain a kerberos ticket using the command: 'kinit admin'" print "\t This ticket will allow you to use the IPA tools (e.g., ipa user-add)" print "\t and the web user interface." if not ipaservices.knownservices.ntpd.is_running(): print "\t3. Kerberos requires time synchronization between clients" print "\t and servers for correct operation. You should consider enabling ntpd." print "" if setup_ca: print "Be sure to back up the CA certificate stored in /root/cacert.p12" print "This file is required to create replicas. The password for this" print "file is the Directory Manager password" else: print "In order for Firefox autoconfiguration to work you will need to" print "use a SSL signing certificate. See the IPA documentation for more details." if ipautil.file_exists(ANSWER_CACHE): os.remove(ANSWER_CACHE) return 0 if __name__ == '__main__': success = False try: # FIXME: Common option parsing, logging setup, etc should be factored # out from all install scripts safe_options, options = parse_options() if options.uninstall: log_file_name = "/var/log/ipaserver-uninstall.log" else: log_file_name = "/var/log/ipaserver-install.log" # Use private ccache with private_ccache(): installutils.run_script(main, log_file_name=log_file_name, operation_name='ipa-server-install') success = True finally: if not success and installation_cleanup: # Do a cautious clean up as we don't know what failed and what is # the state of the environment try: fstore.restore_file('/etc/hosts') except: pass ߔkJ?6vEOE˘L1sM]y(*#0fTtw+63 DL;idz8>2;'Fyо>gk% 7C7Y뺧=iZߢF`a(Y1CO-)AA*19hCn|e_G UDXȕrDTC z(S@*N~ Ne@YA qP#PΓGGKk9rQ@ :ÆuBdjΤZEc2rCKh"$iV~iƳɠzTЃwsÚ"%S7nC9\mZIGj D`|nm*&5+rWRt 4{ 7lpٕEw)ߣXh,m5/{zS-`GtCqXa7r |%n6H%gìvp=ky(@C:w隭.cfS%sksZFnb=+Ԗ2Hԯ %md|xP2a?XϤ~lsPlq"4_T`,]Ǽ7t /^=V/sUH DAs.PƔeU" I*mQB&+%'45oYՏY&X(Jq;k(xM%0W/2 3 s "0Xմ^[aUzFG#qbh'Rd'V @(4Ey Yo̤ۗ#pLѤMG|[{dM8!'} b{0{Rlq?(g=dxQXŒSrHw%CjQ1v_PG]!s36=zaq>̳lUKb* fL ć-HwcjJ͜g3wa'{(v 3 (n_b F#i:{׼,1*$~T)S&xrl$;J0V!7]KFk! JBA3YA&L%BEx/ b8o%%*;P_Me2DߙpKK`KdS _ZM>^_؊9jN@uЖ XEO/Կy"R6vS68 F372;;NG oMKL?v˼G9%CUae eh}yC։ad|]kIK~JA^͗k8!J/+5Sd\,mw4>\lmx;ƍ֏ag4I2\KZ= ҄ɥa,i @ +FALv} kLG~lz>aMZ<&>vX ģf]JyKp?6DMUPt^xCt [9#RTsH9f[ Uâa1d66h8H%BчC ǑZ|A@d4i 幙YѱFݨ5n qv_H?nX+a7nd+Z򦽰$=cLWRBPi=Of_̳P@mʅhC<O<#&Hyt!GXe+-~.D$vrVTBaBH-Fe#F8SS籞tT 7ޚmEYT|9lD=mC7V nWǎqͅъ[!)m|&'>#L+twjT Ng)ZҮuPdw&׉Q#~'h?= > )v6Q\'Ɔ!4^WG-Fvs0/|jؑA8 Jp X.pc_*82Fckp[ 5HiƝc d RCF0N-S`.5DjjU y!p񘹵Ka"c2Xri.hR@m h>tO(%G&(:m&c53Gsyh[+(v,"Rul,$eRh@Dw<܄_z?}?5Kf"W,sb ;˦Ӣ'-r-R9.ȏXO4˜Gd&%h5~ ߅_CoU85>ږCr&lEq_OE(jxj)Hى@$!kR@qcrmc[;ިgŽDXy;J>ē9HvjoPZcz-V'%Xfn>h4+!ȭ8:(hgfype@\^HB?Lc#I5sjeLOrڽ9,T])s j=k(ALԟ[39)uFFOgW,\|&[-!Tٶ ٴIebHo|LET9g`ecY4Jp>2FIs>N5._yW)!OT^B(*A}p,]M0j'z_IE%@bD*copz55::k8q kmD-[ i~A S)W#"q 柂pĮLJ!TOk.<ʊsEf\zlyO&XAaѕxڅd-RLt{ {ŏfoPXu)z9jRshymrJi7SnZydF FǛ_>S~my1މEK jg`JzZAW+7 e]0P^ʳ㴬Ҳu 90zjO , L‘bb0\I튒轕W:2Hx{7(cQ찈\dkJ҆R[<[uل8PB|ϖx,?R$)22Yˮ5K"}ykSu84?씂~Qyv%e*);K#n8]^! .hqtD'ˠc O[P4%vƷ1[wPMc;3E;#FJn`6KeŮ!R/`P&(=sͥ,Pу ?w&v)>%PξUCuIK*bNJ'r7 U>6T(0Yǭ pc H(a}2 b)ȬXW*Uw~`YxGL5tܬ]Wm8ﴨN;t^[L.Qr1zWi. 0 5/i2=VfpaE",s] ڨ}#&gTQSHa)&QSwH*NFFG7JO0pp]VZ+w{1e(l;gmN֣ge;pSiegCSv[\]Y m KF~iI | f 9+`:~R5L<җ]u)umHw VVLִN d7v0&`<7joںϷ:mk'*6 |` 3\8VboKMfl(!Aڟ(e(S]5 ^E_͕H !rꋔ} kP+q*<8|Suh7hm?.cg|H>e U.?B$yDE)g#MAE=oH`[jK=ƌt?[g=8zrF3lNRX':W@{_}EWx\_0#Algz@&z@FR0)c#z=OP3Ro!'9FǀR5500wDzg7s{ȃWޜ_|+nG PS<,;))w'ŸR7ʰ3&υtωVGs`KW^z͟kՈ_x 8Ϙ});q1gẅj3bEjCNm2WOR!Nǒ0jjO0$Jz',t2e%BL׳hz$e0x;-yzf\aPg.'*>tz{ T?VFo=оbWw= fhj4~}ϫRPcyzBoG91oLw l.A*v-Ns+m[y+K2W>A[6HTH8,n8_bPsJcc(kl}"QNF6BM-gMtIۙπU-Q)_A(j;Ӑ:x5n ~ O6SlLEl/ȑе:4rPjj_F;(Gqg QpË,cEڪ5+E?;O( w[ۅNinLrWP3'CB3N=TwA9(M%n~1x6:q{oasO:ĝu;l75E-xR4x '/o[NlX$>m/v5k 5!~9Fc ɐne)cA{rz_6:3|'yظ{=]u/Ʃ iOq7R-" $@M%G2a/z-Jl( {,@مDиB{"9Cp +9 vڹ]*ʂ]h VGB VMmp61R٧=t{EB<+#0oA";|[(!~еhu,j2 c/Ǯ/No`T]_p@ }҆}/NIjG.ey'S47x)Vx=ʔeR%hÕJXjE1,=&pg~GgLҲ/21jIznɤ[R}e&?ɟ_RzaEb#V:S R\t|ED'?m WD4kt͆O`ڼa6MOoI(6u\<`U1nE}Rn P2S.߹GE:+,-rg֨-0V+[,.\tᲢK `5DWF 5׵dqjǜט$3Dj~`D'[h!DZ#Z_Uet$S\PDcܑO~ӡ1HFbҺgX'Yi䶨f~q5O} JCW #bj 8'ıّC6H>kā>^3M71s6oW?K7^ N 9T&fRmZcT6I;i[?C큗Fdnpa]A~RQh+v'DuKixILԣ9xZ{P4K<+x)05  "Gv*Zbj߰̉6RH.MR1ҎED4 ^HYBr1 Ky Y^΅wn-d܈ a) ׫ǵ8 xɼhV:gϽ4(~Fk`֣kpwڔ",Ɯ1&Cli ,Xm1f|M]s'pFƳ qÆ17m;]ݱ3^ keY?tvI~4'O_ga{mv3]Hq/2@U_4@  v9Xf@-s,'8]kk,,^ڕECaJQi|ZҠ]T.>.[kl+&Nr0Z"9,.d'[[mY@MQ8qiY8fFOWHև&L%P{uC!1(LLc&jmtY!,WwZXy)pgqxcg7wu`hBPTm7ՇLnrM" 2puهloIw$}7jM M77l2F\Cp(].bK݂ҝb6T ;kfu#Za wIP7]<[lf1GސRFA:`|`{ɔ:'c(2Rlq]jXB(t+ ْJ~߾KFuSjL5[za߹:7Rm* V۩Vh҃"Xq `/ZZ#297б6- sԇI-T &9֊. KJ=vO*c{cb_ܮGh3I :6_WqGGthZ ތus duxb6daP0$ 1 h4hs_` ٣Kp7 A&ܱ->)O::¼Jگ\)]F~ǔql#cؘ ׄmY"htza`Iܯ(oj#x)B%=#O c3"`0ҴsY* V,w* X38'EZx xP VмjDsxiY"M 4l"TR$]6R4^u0d4I e8UZcc/UѴR=ckcӒɦ1q-F?mXL}Zܴ bvTɳ': ](mG,e: YnP6VJ[aZ %4UuQh*m޶bX$X%fc^ڥX30=2U:q*C8'ޛe̵*wU@-I4J5 d$}OJAi q9JSi˔a8a=#\7ɢxEr 0m\2ٍN EpQ7%CpicStֈl:lJ-J =*9aKǽa}[yG1eAy%ÂL;F.7+ag{je2^g$XiG>FH./Xв\?c|YR4,P~M AO]GS:7 z<$ N CѮBbvLfx!`4} pJGYC>s7-{==aKfyæFLsf~N-3ڸu(E)v[T~=d ӕR-=r(4!EJր֢lU1K %o7^+"j$ AS TbYs-^w?ݑ4'Vo)"Zђr4V# ?u@d x IbSz5͉i-u-<6jw.r*-Ztd@aS6'w6? aQn;\\>"jF ҙx5q;G7% }2N㲚Fr53;(Ĵ6 uf39b;Ar*(E|QA*ȐEDjxDx;0HrYLuY_)$ Ww=o6,_6&6/9BX.+B?֕"Byg7$ؚVDaE֟b}$RVNخZDb'fA)Ei7p @4vڌ!ts =z.'\UE78HXѝrH£ Vu;s#B U%7G%LY\angT CYiy7#{6%3be2CdBHYDۇseYc'kݕIzA5HíYwI@c~^\m^-.חi"XSze7Dc(Sʑ~: =:C $_.0;=L =pTKh*lݫ~|>پ8jnN{4K@ |h|1N0][K:޲w}^9KZpgShٔUcޡڐm/ҮG3(ANjmYXRPhFl-?kVmR otxMra!TF&-y N?wi=)RCk2Tٴ=#j1V,ҝ%q8GҨ h{Uk1׍xn*~W+ޟW .c{U~( T /uj#+OUh<fݡDôVNFU~n!o`7 l%Ѿ? ym1i2o{AJ_,OK_2?g`1 :<6l!):뙻]wP㼥^&Gz̛ XVbgJJlζ3Ot!҈wę=[>/})όAn$`͊̊#yYy۹:[x͝A$h5_LwMxlE^+6hjr1~7/6bgz]qdb4'F .߽ lu.3i #kꦑwq?[\B?d}~6Q59w>0_IT *,^k|5`LYbo 5m<jQԟb4c͠|Vda|QQгNY~jp{}MQU@CJzګ??JA-HiLkN2ӚC.abv:/#HxDa^bY| /6C+=:ܾg?HFt8Z]]"KqNz +ifj9!QԵ7 E?1d^^֕&(fݜn|-k@!XUim"5T8dzp4nf7ۀ]RQ 5b К^0~uE7'?3DFpk;vnx;0s9"4hBGݘ%HYBz0h5(YhL5 L?Sgݴ`MtŔ|En-I1a|fˎ=AMi<Ѷ9{7zi,++'U {-1znhsOVZy &C^hΥ>VSI%Z|ei6˲U 5POpP|aź6R L1q ߞ!M ڎEHzS=j -#'s:=M rf%' oB6|1 v̈́3'z'(Iwe$W=Ʃc!kRycH8`Ž H׻G,TD%J :=νe9| 8xoJq~wWWRySz7 uZK:/HP[N ӖQBe!Q{l>ۗ[d Nd؆rM[+'՞fJ#^T\8(x89A2Kq'u4\WxbXc"$?`#禉Qvl4 %=:&U^rxQZ3CDz=!vO0J^9# Υ0b3Ր%Ii5+Fjl)|v`<="Ol{Zz],jA\,39Zd6g1tg*Fl9S^2OSKn0쳝C<7F%Tڹ@Oq/ז\RDQϬG7z61(QD5%4ڂ# snX%0c ce>Kߓ=<:ahWP[㞺\l-fV4CE%|st*ѩlb^ v 6⚮mM%c}7j]NV,3*:JOc!9l+ԪG }s}6deAROg'5v dXɢI^zArYWJSpa$E4dq9T @1Ɗ$<ݓL G)y>_ᶬ-+p:S 1BB\ߎat^hhNⲼ+kyc^v/2{[aGSl1Q|m[3YnT 4t((XR˛i$`/:O€9gv0G~4;߽0Nc;F s#:Vrc.odrۥXgYWT!UP.T[eͦiZKtt$dTsJԲBpj+*GƥLPk|B˃K٭MŭZlJGγ]`. ?K>I]Q 2ѣ]kMHyeMhA;!|?^(]}9S3R *2c5z:hHSU yh~XI:,NRMgWCTu_F2VI ffL)_ˎe=VAѠCz8Il1ҁxwha'fKL?JՕ[ w׻02ΛӘ\dAʘ4K!NyQQwA`I;oGB}w.^Ƣv+qre˓x_3HMځj4F4+0fF;bQЇPDvC3xȭH"9WOO;)Wì{.7ENM& =XN1G\ QWmy_(LVT0VQShiP̗BpVhF>@_)^\b ީ2ƙ_R8? SfO7\AοxvS6k{[Ocݍ^a/kḂa+җ=mUץDR>'=C-}#ء'}H(c$AcC)q:~z7M *A:pO(|q/7 ;avح,ystiLJ*E1lnM-Z:a hC|ν)@FP ("#.TR`+@Hy9'ojT 'aU;KyJLzlG2~O1,>0ОM@տA"{wz}C '9T^h15_o)Vd+ r[0AH;Y5B^$nqIԆQ@.ȟra^&F< Ru+- Kx?7[;l7눘j.~} HHH^N_73G5^,2| |p9Z]c xs\m-05Ҋ.A2cےdR_5yc~]mh*&~'$CK%YDb,܎ͽR2˜.Ff%G%O E関-4BSu`ES^nZ EIKw<~Kq:&vEK`]UPx0q4-oD.b *g `6 {etUl>[P׶qk̠32821{H*?Y{)mYeBZ8̐?ZMjI\ǵ Npeh~’@`5՘kgo>w1war#<~)eoc:?2vy*ʺmWnL> L~UЬI[,Oc='YXkR:ĉ3۟5yer! JrX3zɑ&bu,gq L4XmuI=cr>!].YLJTAaKM=#Cy1]P/G-}0vכkV֋LEI . ޸"+3]ޜQ"CNʽxENߌBϯFB [&  2mXk>M3fϮuT9}b!Q8N\gMO{iHawyW/S3n1>ɁV}?-4%#h,W\D -CLPțH^K֟4|V<{Gm./((HL%7: i,.f\~^M&' g`XWr8 LǮ<,3ݲqMNṂ6pF0,c0i)O~o:9T_4ʢV:  a2bW`7 5 )(%A^B>ՙC{^-Z_צ&9Sض&CԬrۦfv4 KP.gBZQCP?%\`tԗ$tki8T%D)4 ah"/U \!kȋB#`">SzZ-8H"ʋe3|hپ]A(5R5׎?I|Kg0Whs Ooۮ:}})׽)c,c,K>tzmŁ 1 `5_y*gUX6}\NnӀ{Tvm gZZ#UAn:NęRG3He+V X^9>FgZP<XzBHL\7i^)-0K>T+orpM[.0 %YYZD(:D^|]brWk=|/t)|!@9?W3+,ٌc4`3-'b!prThw16S yZl4phCu|tHԘ ѿg溋>D+;i+OrSQB~R/o|8a/rNZf]7|ɽW(-Y I[|Py~ú8!,3fDJfL gx ߶V!؈׀`uG4;Nj%?3 W}K5i=e'^l\HQ_gvH|j/.u sM o_nq{|o.T)T`ڣn#FSdmERSHkLp=|ȝfɋN=َ<4>5dJ0H^;9/]ˬf %9Het~NVCW0-1 {+_!+V ,Eߟ;BV }? =]1% Y^et&UXs7MQWW'%LuVHFNw='L%"&If wՖɯ>b G]g<=N'Q)5l &.}.h P>>PѕwoI=i!VA܃xĵ/r]1{Yx~v{~LK($r6#vf^%vSRįiTÐrBVw(5@.m,]E1>N1f 5P Y疬QاݷZXUV\0X*i|a5'_L~l5)N)[0yĤg\m߿.074@ndA?9`[=5喎i<1]tBvl1{ :B\$q` J*bYU{BNr&WgfK?\_3G b`Sj"IjGޮ'?GKjYų珯;B4Ǽ]z2NhP ^s_LV +Q ҟ`L=Pq1DpbpɄ)g?T{4AoG# [B?:w;g nO1䀪TlYl`) #Y^S1wYI]PBui&'q)rx$ڭ~^ٜ\JVq/Hܕ\@GAAmUlպe]KH̘;~IpfZטS S/զY+]ʔ1Dr>C׃ 0DKNLo}Z:>Q{g4U쾆0ev5=$B ozu+زru7=A}w(P3}J2+/F挗nfkkqyމeקQRdF>-!xoEv\Qc$"4fTz < y]SGX;yD>ͯ ŗL9/χ`Y2Y-U&Iyy[:֨Ir [ 8(;hˏLw ]^`DEn|V4\{Z ;![)ug+1;+&0@VڎgN%lr5֐0MX(+Sy+V?UxkLV|fp&O$Lw]sWFu콢۷nઞL} ~xly.QCG0u"ASjip$xZéH b4?Tv~ 䯾B@ ID U,¦lc!~WHW0rSs:m;'O`ʆґkIvH 5OkWL눥3_y_vՑ'M_^3xk)Fjw-֖4`]GaoRpUG_(.O7w /LỂ¤Tgt S튐{ߝ<m/LʈC3=w&U\B+ LQz'6vDiHd uE o'8>i2Rx30D}4tT߸~:'[r_֘gv1ثݪc[G9|P24nç-ghr&-h&z_ u~?䱩L4T,DcdN'RTZz˰ |Vi[Ć xw[nUYe͚Gߔ$N j8$=<]H\T`ʩyyJxTXQ&l(s4D3s$2g0}"oPFzMOw+T.Q{+,*qwlkw4E1k.JFArʨ2יOt cs ~8~AVV o<WN4Iƈ-A򹹎 ZEJ0h: GG9?Ӹ CF }sq^Fx׻iTiL"U=uwd4AEt(zw`KG]]U.0PMi=E%K;<Is2h|ي+`ŻYj哎yOo>3Rr4A8tϾ_?Kq1:7Em:UB)⸺{P;ͽũc ci'flgh)D-'W_7Cն~b<$#8,X]:eb3 Z\!تшC aZW-ibj'ͽ6L fIhPQw3T@'"600KP+r0z"eNQg'Ղ+aKQnjv-F/"\vۂ[wBQ'DFe=+p;!⥧ޭc..b m G4KpDBD@uhh,m1V0YF*rېYpCW:B@s#56Wx0 d%Tf6du ؇`:]ΛCap=S1cb\2yua9.x1Rt^ R|y ea aGv9_:/hX[w)'\L'sh7!4,%CǤb>E8)b,u:dʅ~?L$(\Oq0!v6B^QgYvFNs%~*>5Ä+D`#7 tS3桏KG7l/ЫO ꆆ}~"]Zn 'Z}*) ԭj>~3Ț\ZQrlH}uҺlhv`yטGTI:Uʦi&m+ڂxDlҵ4ܲpDI_@:`TDiap$Nz̅V߾u84F~'U6o8:=@%w(mݾhXp9>$\=2F)$;)9ò!8;2\'ZڕU1}eetgUꞝAPNL&L;+=TВƅbD ^ɯbNJ2] J-LދkiXX L rp^l81lU^X'O5, Γpˤ#3.m(2d.ꨲQtWDs=)$иfӴh VBGE6c0aL4L&Ժ!#fS2 *& uށ-N |tՎQ0!¶/V3M0ܩS3jj* -@wG)3h{ʲM^EX<1M݁@B Fctd.CL ?P>FQ??:mxBi2jWHӿ ׸huSϯ0q"&-EaU:Ro9]$lJNa"9R/phr`kv6=\㏔d @c["- dz /Բwad $Uԫ30+ֆ0Vp!Bc>tHrٹQ+᷑wo t _,fFW$Xq[cf#oj7D!z 1zl~f;,vQI*X4Y€HMnG4@!1JZ9+[dߋYif=5}+\c ! V4>l# CGۺK%D?jJ_!$=&w&9Qh^몏w>{)=ݸ2Cpǜ@+TFV,yy6[XJv*ˣܫ^p+6POQuE˙~o`a:#9e|ײ<cSSm*hߔg*PCdos #GJMϋJ}agGБf|Vx!֓|]Qeܚ}q.@{G5.wPRꉙ`\@[!FSJojzi~#PB?&]2xQ(t<HۑYmx!rxąNLRF(*xNg@qJ,Wc{gFm@]蒰eIe|/.wq oWXNcٶ;PR-#hL79E Þg#Ce,W=w=hp ב%%I"Ŋ&r5}"*t3=vsGEGOțzuDyo &K0y66Bq8w`IJs,Up46uB#߅]& ?ՙw {~(Z6OegɃ;,f'GD*/w' `0\TbleIvЫQ|w;@xoDG"qv*/)uǰTNGšyae>.lC}͖!tL^ROt0owYXh>kS%r(.mOghTN)u'%hbW ?by΄W?)zW1*YiCs `kD+$( h2!'Sc9ѣ1t9xI;J& )Ҩ rH*P8x^]lE"PXǚQku u[P~ruG1߸-tw'c9bK`tNwQRq}DZ^[⑵(;@W~ X9gf!^SF\Sm)3;)5y 3%31C@|9 g?k p+gU kټ,JLyۑQJs1N749Ls,yTd _ "W( \.wLpujD|׺EzU%@+,Z!qt}*R6{=#nʷOH85,hјK3Ex++_4jS!_T&^3x\â[1*JJx_gm3xEO cRG&G 6u#Zv&i_g ]j)qs8%Rh&fHh(ǧ Z9'[]2A;P1Z\imC yKbJ6@\; (!h_H= Q02`qeKN'<`;C~s0ݿ6%p]l_Xϵ^) t-p} h蝍YŻu"?Ɔ0Dv G06NZ w TbõLS9QR VxWa`ټ})x*nWK,Y *WZr?vrTcMZ>% -U kwf FAs-# Iv>˔,OCvO ֫o3(= bYm6 wWZ*T,_^̌Fq&؃q]Wk);烾C%ʶ( CŲ1BSI,D[K >$%DNmAa0oD 0':q_=eZ'<<ГwrKľ\m/?pNL<ׅ7EWʶVԠ%Otj_qo+@rGooVtֽOp*M_MQ_2-ԫ28nY5ꌵMh"V&y1'?DzPFкnFGH[x>tCoEQ41@6CFA&ǬK5р"VSK wMfHʀL7ܬBf:pǓV54UW:, +K 4Gܱ 8^ BhAWYz vKt3͓*gtۏR<&wg@L5gщ)/ ͂_RVXj$ wBaS7HstDԱpfLSuT/|zrȯ%Zksn9/M/̃,k;y4M>wE8,Ɏ[2;tQzeQco_- d$vYw}Lqޡl$FO{~R|nȃ0.@kT4 uW}~xFU"?︎* %fQ j"sN G^6Wg Nl: IAJ$V|"(!yb"j7.eG x ,O٠XݑLܤguEW2Q|=[ٞs W$(}7)q&5e-ں(pռN J.Y~*~g)kS p@X; iT&x0Y||C;'8چU .zQEF'xY x؈"QaRha~:%VZСȨV_tYB!9ԍu4MLV.pTQGaQv%< M\E/͘Wfx䰑)JW&?s]5V`pJ":&/f :?nX?!,xO"ZT~h"+ڌwdA%+ 3MmPnMI` 0p6JKasM{^)E"UzsK }h uULm \9>3:3`Ea6S< %u=5==r~|2S{`Y`^fk̩ZwGRTaQ.(]-ِѾ 9|[]%)% z1P] HYɩ{-93Zq+oI? -(٦J@#6|F׶{;jMBtisxżXWfw=f<8LHx bm:ϒ[f[4G݉8 a<,y D}Vb_;ml@t4 ͩм!qfT_lY7%cCVm^|%/h#AL&~Oa&2"j:ZۮUO@x$оT$~0: EFv$zNhq)GޖOu-Eaṟ(W,V3Tm8520X-\Ry4o4mQ ;M?&3G랴s_灇9A|~Kx6$= D5x,".Y Dqw`#h`qa70#y4|AG+* |#!.ww#m;ѨYd`>|w:|à.M"@s/^N*x+A?wCO1JZnuI]*VVo :!$zHa:]Z9єZ 1nZh]< &4MaJ0ߞʈGP ̶ujĕsE)h1M O ij Ɔ /$E8+G#Uj)SVME iW-mwdS$gdg0qni֏Ĕ9AbwrMtD8P|Yz7R4pƺuqFGkE%}\(3_.%Մ߁NZ1:vր4Hg8|ξZA]=`d'Fc'Ѯ=<\\*ʬqg a,Ler;\p S톮p(-JT00Ϧ5>Mln|"w3oEJN_+e8븓QXI$p>Y*!>v| !*{FXOk: /,-irHa";A1 m*T}=:cyWe:0BjF* ^2.l)]'ay- 0=~q٥=֤傯`cL]7[ 1Qƫl^&e7֍4u M- /Z BQB70)\-J?#v^Λ{?<=y"90PhvM(N]y6l9Ʀ %j>VS L_qԿPY=W_{9BרJra'u4Pl/Дƹϛ@%<_hYĠJt15eNc_/4~T58CJt,xUx9`vdo3 5,Bi>!pʏ䧬QGW޸闛۲ۮ6`m~y0^}9{wۢG"x8i~@ѲRe T;gQ{Lj:"jq1u߿䶙aS#P\͑Huh-b^okaGXPa x v<,tXX\Iϼ^ 3e1e  .1J61uޖNg&z_7]y=]4# D`jA _1i ~fYkz0CFy`P=#V7*PД@;S CŇiڻ\yb"L' -G2vp&@V[b>4qX҆[A=Sš)?dic>4<6~g3nGL阯=K^qL}&-"ng?5|]M"I h0tZ~i*-#1|Ax}vPFF(l I5gncHz_x<3'5.r16DdIN<}lIHW1UUSB}_8HWdL,.b}l?=  #2jJvLp So%g`u,aG&;sQǣ52q Vt>*z;lAU<\˵쮍YAnm,署AoVł mX-1vG˸;FVԱ%ԛêK3_~A{𭂛yj02vXֳT{0kO׸XX}MF:"5O5'`KpGA. δ 0lNGL~d|J|i="Xv;ǧle%hI!" јB. :1Wo&BYI}$2I PB]vmlLgH4˜&n#k.J]T8c/\kWBCҮj9W5^GX~nZ_>׉e(M_2ERb lD 6"b_ x mT,tw,l(y8sFbJd`c9ž_c#_BIc9F^P'4E^66 έ^<ڿq$R+h$m6↙cE?o2 6$+C|]Yp`MggqJ9Wk\rwOˁ3I-:_Ln}Id*YBEToyJMZAupfU(`2 ۆd2@z{ejV fRK.FJ`>vb2A6"&n:˥1rV/)QrG?xj=G&-ׄ] f%a]ԲQ?{ jO [ O4D8B$Wk}nb)2̇:|@)h.],Pm}¾T5ahC{1Fӷp*M֣`b.%xT& J])nT@bqvESvHy믳oӥnțPb7)X0iqrOE \E2l>3*lXbM)6:EޫkbBS&dmDIVWd4l׎t>8rGA;6իp%9EF*|+"W)yK4vT9f=U|7c/Y&Jr*x_-(b^q4<-R<{Ug[ۧJEPOQrSn C7'e=y)iֻ=+jyF6m{4INI3K  Lgq|7)gTN=r Z.YbC{7+٭ynE~t|ڀ5#Tv'~7(R /Qb &<9bӿ Z#}5%;nbF`2?*#12Ya&Ցp`T㇝{$~U5 SiTij.HX2ԉ Q)\H׀ w]uYkL=s3GNg.x[o>&%xc֜ppD3ߗhU}Zקlً uM5DR2_A+)`=Y6Ql3 N#?]J&>I.վBŰf},}bXFzjqn,ƛI f1_U<\#q ǵs~NK\:F UG7V *mhKZ_, {_5&#ɍJMކ|h16s8]Ӫ\ͬ-D^E/ՏCI7` uAM6 1ArH!{'{kQGS´:Ӟ1=j μ94jڣ58HnYϻ) ~iy1ݝ 8Õ9M}=JԷ?aU!,A=G!k@zъ ۛ c2-2; `:b[oN-已w~y,&,YAa/MC6H}++?hTbcsn۲;-rӣ6\eӔyBUlKQmU&pD-ʓT!`!Wņx\U5ErlXN$?#? Q;(5})q"uFig?dU٘2'!%<[z_ FMCq˳kdmN mL!=fM G--1ˬ՚u6VCkz H+~DT<9E6!+eJzXޠ;a]bj"J,HVBnʮG ᵹ*ކ5<_gHay7nˎ9 @Kmtl4RERQ8ϜR\X=&h[Lm|+,R#7ӡ [ #۽m[4£+IRqIC:L5um^j5X. Oc}8Fh l3~𘛝WZxG8 `,uk版gՊcbP6-ܑ)E ݑH7Gc)6"k]Y-r 6rYRF )iI[Իm/͎ݿw+M18 _fy*J(?h3be 9cw"EYYgʋ'JB_yKҠclP{F: {8UB")/d u|hvguaN쑃E($Q~nSy%c.=|;`-gg?gis "U:'EWK\bM] l=daga 9}U.FQӹ/y.M?Xhbg?QP#="8$sG !=݀_ܘݼ{J!* */U VAu {/BIn"$#+\T\;_;B:v=f]]`tye2 X* 쮂tփ;]LuţLw⹆4}.$c%.  ߻:1NNCAžg쇟2*0$_'&ɵI:Y S;WMқ7۔WF8GӷBu zVTtjzϹA=Lmo7sMǃ&sm4\>K垘޼JG'{ 1v uШM7[C: C+-üc׿Hvu)Dsx?ߟF㣉Z>;kԕW}#^,HZR ǻ?p}fLX4xd{G͇-֏5w+!(`%2ʽ_{.a׉5`J7@<f8W@~uI{nd:&}tg;EPgQ|#!yfy (zlƻ3);Cb(CYVLFΛC^)AP,}XE(S(@ܝMjtVe,ƲM1NC}B?4` pfo\Nw8lsWl颏AqIo#m)~>M%Z ^lƽnM~S9E{;r:Ww@+9SIQ3s>܈d]⢢0SƱi䬚s5 RKpΧ>0<ysD|f-)ܩA'a(Hf\#C:y5EzFtOD29氩z zN+-)d/3,;{^.-`_ʙI(؟/lҟJMRxz/:~+BW_ 4Gת^›I1?h;g3ŵP$4؃eVW률$b|'DDtJ41#TJJEo ?Bx,Hfy \YizaM͆9 :N|`%yBkbc:/Q~IиN]-uFc44l&( jU?+IWlk tȯ'ːknKTom~oycsz.efO.vN/ۿ6嵓v5ĥF0 +78[AT s~IR܃)T&r,)c .ag:v# \dS4a~YrQj/ fAdCPUu7e,˄ӻ?)ս<mi<,`n֙{]\;99LOzJM$D\<:Q'm{E4!3S6ÞBB]%"\ o닭DA0b.$$;YFPs ~U^tԄ%(lSĺJ 88DJUA19ƁױE4n*a0>0b P1H=x;w:R |\CXTu6}W/[z`ejVp`G6j Xft`37&T%^0E}b6odl4r5p|*^_X"r8~ٗOUF!q$Ϛ?%CD4t~Xl`ݠ"Q?S3ttM1).mm|{QCvW׹'J!3?A[ x{~Q2( GI E%* &L~h[J6 3j䋲kJ3qdO8.g#1@ͺO5F;Hw)u|jup)e3 I(#l@㕙w|09.aˇpқ4q NI^Ɇ1"^ -~E5,WڣgKN%FNG9.BV3SCeP udcMt|E}P bwbxٻrTu`c)67@̮K }2 k~9A+L6/v$Dy堺TDrqZ4jgqy>4ixW(uc|N ~?V o#۠ݠu@zj"Zx~q&?Y(<:6Oo Lap)/Xؘ AK8h#C2}k~Fd#̓AEg]'H5Iި3(Tch_iM@FI=O\cR'ZFOA$TgK}{GC mNe l12S ๽|s9*h& &rUS|5l[2Oy7O%2]\]MWTflXpőBansNJpkfX8gH>eF C*4<]{0I҈D3!(bUXKXe %k^G\f4=G2׋75b[xׂ袄pkcl1 ed]yi']3($w'god cZU@!V8SiጩT$rv0&Ԋ6q8|d&56,ZDX=a'>yz N91`u~NԻ*Xߥ"36W‡49FY~<>B$prynAqQ%6r7q2O.2OX$V$NZ a!wIAhzsԴ:Q:D~Qe֢;"TDO(^~'1m`;a[|Ybpe9}n ,lqfT>ݛ^ˏ8 +dvb۲6XTVfRF];)#.M.t)xGX 〇t'6xz vk4s/I@ bmq҈m_v6įY+t!b&H!ox83ֈƲt%&<_C&eiv9v(# -6/ 8Wa<5=C$R3A6lCg03+k8 _$ yOdpQsC+~H4?;y0Ȫ{gŪ. V9{\c {L 7aR㓀^ciߔD&TUp;_jq^u>SEPMiIp hHޯ}iF,WsW@-m:%18/7Qmn7*16z݌6x)SZcO"'lQ4Uv~a OQ"4$Z?oϸ ܱ,@ܺǾ*etMu}Ba8@I)yZhvXTwKΎ82kbGa٨1l,I^{5Gk oH3B:kg `}KHI`v,(Cx8ڶ8#e'_t/R˝{m~z{`qDg4*H_J냻O0J/q}O{o!ǍDw-Q_\5y4LwL$JJY$J;s۰VL PҰLރLkM/8%kݳ(Ѩ.a  U",@id98jN("{gp]ff1nsmIKFGS]Thihi  q0dV^JnH?vPIh_ xT֭㤅zϟ7ɱD!FlvnW5m>*[ A-J!ag@bG#rf;J:;rP`Q*.dME#tuxr[AӲ XL,ETsI` U} -?ѠЪ^ѽch'P>!y^2xgPDTc?r;\eYa%׹:-?PfM+d5\h h Ēd1H_f=\<_9v*08)ľДqתC{$Bh P41{jPyʃl0>~ 9Xb%Jj d4*,"+}z"E9)*N05<{b|`zy r'"+\` +QEMVYxK$ő_ nWb7,`nl“e/ITvTj On *3i\iKSg.JsGfSLyje2Lvs.b2t$;J &mZGvN,h3N.(%zMiف[7p)bv g <㑆՚W";ԙ_v_5#9*@T{Ք1^SՔV^eg:q?-QO<ǜ(嵊l8pn O~pr0ݺtB\UOimp%;=Ne`鋙Z߇!0KSҩ%jwp'HE TV1wIS,}>,@c YPi}#HG$iVu_(dn|)0fH h]j1 7Ru,ɔv^*䎊$<Q:_B*UW͍ycIeD-\ުoNֹ&+ ϫ.?9B{״8'q?fkjFCYc4[.6՜>#l>@n~a^>(>$H-eU<&S$E'h=5|0Qsȳvt@|B >D,OB|ݓxccQt7(tˣA '||χ^70(lꕙjbD& ?bJ=6-mr[6dH n<_Q`|Mta(<O Qk˸ ! Dqsa;W̞8ym`y낂&)A$HǴu5zNI *r_ܕg&1sF"N.p 7ڰkR潶~uA-R 䤏@!k)'cKn]G?eL>M/CR^ CsQ*a(;p}GñڴQ/Ue&7l]wGV<Æ#{;)vP: YdoY!l:E cR93M$2&)y_.C|̏%c=2о*mIu8HK2#eكnܑVFJ@%gg𘆿m֌ڢS yH d3lSbxvQ/p=q~ 4m^"W%g=٭)+>fj˸Q?(_O0!7iClQ c 0 oب3gu RG4dS ]xUxTD0 ~I0+l C\ h׎*TmtX(Met6DAEZz!E7^-GII<glv-Ya%SN޽Y9qALfQx̉N̏iP.Z8 65ev'2<Ec'K/J%XyWmJHa_)[&.zDZ /[>>Vrw96rNE2ĜYjĽ&^o5}I4dVi/Eݢ'͔\] [.:Icjw{[tlYS  'buʕn, _؉d(~Q QW%8 vl7~]ѝ3,^cϿ~1Cte:7cQu?C ,n!U$ơɨؓԯ+@m=K\޳ksC-wU^W'qjTODA8~&LNآm4}n˒ |E}PuOJbl:u`D4! | 1",'BvDeWB#J U#VV /Y^F~>[D~85|INz <αt="]3- [2l ^;WgzV`}J#u4Ŏ:pmwtQPpEHّx{{b$p2ȶCA [eQ7H\,|C6XSTNV~|`Xv0"g`129JKn6xU[bWjI%O,4芸^Vܗ|oG͝>JOHʹK&Io> ܫ}B?#J+A "M(q9~!v_ӤIծ![֦PNLSڕF'DdՂK[udi6r`eM{Dϑjjx@*|tVSEm-NSm+3TR~Dyy~VĿI]m>% ̤&c%wҨxzwGO t Pرvs0rΙ;WT0,ZR|oAnߛ=4,%rj&;K63Ydi[ǾM*U֒=0Ycez"VRzF=& n4G+Fo7;JuM(c1}w'LIR*:j1osTnӤg*0H 58A> _0.hϔq~ZJ.T2WlϸIU.j$ɕX]u,j]Xc_Xj-3GAήRWL~,OwXB%"v(CcKK=ly_ Ċoīcı;`c4xDrLJ]e:Es(qV}{;{GNg[/J;:TA^vpmvdzO7t=@ ~ sЯv6Ia:1<~ (őXּD׼r.Xݿl8tύ#XX8|?]6O҆6{C‚֩Ѳ;”N9f/:V9ej'+!l9=0%OAMs4xAOs,nKJ^#")wf;UyojtLhvRO $m*e½f 8RBTpTAh{ltP9`-)YS9ˌIK 6]tnTE4ӊV: }T7bm]r6[F_nq,x9c P<=N!1}>uq[_X G;=s '`q iFM3X85+p$ jlI igR(Ч׏bQQ" cK>bJo> vUyC(so sYǁv*Գ'ES>{(.Gp,oUE/["JWH:dXyԃ p&,qdpMkji|ܶɍ[?5 7 oΟ'ڂ">2yr) ʓbT})T1Vjg#do6׵a'pw`krr}ݫ3 U~8KHNuqq^<#E54#\S.͕tJf)ێxHkb>-I^^31ߏC{Ti @vH LHG4#$0˥:3S[t;,1FD:o&GtI sM^Dy)lGTOx>jB3;@ڂRƍ-`CZn³|^GNܲx Um?=Mm~$TEԊ{G]o~YH&{$~LIeo7w<عqrL2H(XlMZ&4 )t& lRgB;Xy 71SWVB< 靜a+/*To-{-B$ 'ZUg3[6i(Rzk+{$^EJAs|{^<Ѱ HEi;pDeVW xmP S;'6rF¡ xQVl] \РZuWbKs/rlM8vVP]x&"FqT &әUhۮ? "=>w഼ѮK\`OKVg$W|nIGbsJQM=8E;fpIs5yn!}U4ű%NFxvK?0<& W`lRGn;ٜiX[ٝz.¾M9o_r_N2`xCq\_(.d"K.פøe-y$5#Y3֦x_2@'|k/Zδ#BeeT#o"FF3;^yܝX?2|Mj?}e_JAT-p]V$ 6ݛ"1 tgˤ h/ 7ycLJ'-}lRQŶū%R *6:s3* qx+Ub\b?(귊jr?oTH-k+چ%(\>~۰#!ީ$Ւ{kI;N&2zo<<)v }>t47 JIG^T^1w*1~9#'Ҿ,J[_eK2hO $؊IAp?tOq=S\o c\P*>łENBvi,܎2bz7r]A*8$ٲ>G?<]eRЍ(&|<auHE$ +o$^e4zZPŗhS*+'el|);QIBF钻gǮb$crP^`Y%ϷлyUh: 1zi<^*9YHM>=ҒMn3,ݨ+8oVWuuizL``1!2/\NC_h\O`"fM9ԋ!Ki#@-+"f,s٧ZUV:퍴rpl!;+x;eiIli*f]1)2]mAL+>$F8YZ`P`oJ*e/^EX=d69on,/ ![g}T%ة6zF+gNĦC3p= ՟]qV+2<,P,[*vOi"sEqud e R "^udTQi' ba10oFh*3f6:O닡QaV-_h5V;?2+y)iAIϞ+Q|(JO;)ba> ?-\s59*~FE p^{mKV Zܜv|}Aއݎ- ^I5l5Q$(H;6c-ncA B #:;V*hv(b 3^|M7^ȲҴQoxmXOUv׊&iŴb}(w[Ռ[^ K|FݼFQ)B6 VF{()v8_}ZiGak-Fھ1}Z|?B_ܾ13 _ N.$)`CD 4$P>sS!ylSL3{-J 6KĔG DT{SՇ4nI Ifcѻר~I/4|:<]hk?Kdɉ|"R~ҍVjys&&3f)uSI\«4=wՕı7|#ոPFdKB<*% [n#hˮ`v}2܍q-I&.S>ItAŋToͧ;2]u\WF®M%:?* -EhM8>Z430Դ^a[ok T$Hpn2[eX:v 32F9JC9_B!j{CTK? Zi (Ͼ',A@@;Vn~ u*Hr {teLrӧBd"1MRӜcH*E -%ja{G!)X/3&&yM!NKTθ/v4($NЙ l=#k\#{BU Q }aY'`)vă!]5[9jUi|xGJ5flfώJk$o°BU]~ "7Mҁ8@PO F.&7A/9.?ϛl_rg{z$?Z{s}Tvo-<,cX.^כ| ["'5@ T,K?yc !4'$M'|EP2~Yf7VN5dS.M!u"硐.Do@eO/͕Rͣ4{r/Xnxr۶l!}_~Mɺy]tG_&!J]2E ȟTC}`Ѿx9³y; MGi.%{b65Վƍ󑯜G! wxs ,3c<3۔ HJA2^ixWfqԪg\Uբ\Qͷ}pH4@4t I!OQG>!J U؊)se׭i7 b أI?j:z7m<" _,U W?(R_0KfnradY/Uta$Mu _$1CW8_1QL#3¶@9+W= =WpӶmxKRMQk\MsԯbBOsfFGڊ[\ 6Lp[-Fr{9H?$/fޙX:eIaӎ}˲$3啵Xk͘H!HJ!8l+0+k΄_CU׹B¨5}`tUhet@n$XEUNHf#8,\wH/=w^ETSn2WY?+_-w:-|W=ؑ\hpYxy*e T8@P2݅+Yz9sya 0`.v}(^H@^ m|i xa eL)GM&K?9LEeV4V.`D=y("NT2iݒҿ#'W Ohe z/L8HJ! :iGMx7)TmW Tm*8nB3` ̩!*\rl=^}-.F9鵦cM]xo4AV5B|Ӛ{.)*RQ(͹\yk EId텔_llp6 M\ nv/s9Orڬ3Ki@[oW|@ jV|(#\Z% I ~m'P9 t+8|ʧXpxnzKX1Y0QQ〴wGϡŎ%Vmvhݯ'K@J !GZyλ Y\mY3[o?L]+BUw,>ޱ?9m/Ǖ'͂>#J>~н(;oCiZ.5S9ثhTX(9!IABAึhG9Z@ 0#&B yERC&`gp־ɮ7~_X!VEvEW&S5=HmxIT#Wx3^"SA]$qRw!iЄ~rF%N&>-Gt|%NMZ$?> D%E U$gh¡0US 1SqIcޞx=ƀ6i\vP ᥠf⅗,~z7O#Ɗ ID4 ݬC{ rt:o?Cs{_qW'PSj}%{ } 'Q7$w[(W+UM/-VzfHWڕF$En-Upvr%l[1! %ZVSk}O9WNNℎPKm=lս*|[b1ڋ؅ߧ)h3jP6k%iUa~,;"" t]jY+SĢs+4\ m2%aTIѫӕKEb+y soÑ()i )O,h!h5y`WAjKrnB78׹˿rGV>20*Qh\ ~Q:0Wi]`X[֙=,OƊV:FT`M"<|j[l |DZu<8Z)/r3ny -#m*5E㩊)MQ@dZZ>?jZ.Ck* x#D\>]ֈo H]̾_JWxDOp#!8!F̷GʀCRK`'QsEr湐ShX_Э  ϸ'/րbδhV7gT%r(jtA^@?ߓmZ-UE-(=|A,~KwQf\~EU5X=EFeδec- .ڞ;u)e W)Wڕ&S EE2׋qM:1­2wgne}ٯ.Jl·KQe%<>f.C V*+mNrXs gVZk_.~8RmQ_]?ߏ5HEI-PPcsbڠ_}6q* :W&}$Id9%`}4?iGIЃa{;U]HY /nKfrਔi眉̄xmt p404TrF؎N8]t~yU5h"T~Bؐ6G8]֝%ۏ.>D햰*XS39xv-Yfm%RyreƼG-'rMXmѕ P^#KxO.ooEχBbUX탽c[@ ٰ`5c1.Kj7[0v 34S=m0BE6&k3J+M{gݎ)ObSZ\q^fu1<)zZ .9D#YG&19 X(bd?I(#۱&)sJNȆk,h иc?5!|wa6n5J~g n yK%A A/}P|q&㾌*mҶ6fh#[~mwfa1 K%XvXvw]C,]Ҭ Bmn2X ?^2s7O؍erfMUR+Q+h'y;tə=F9 5zEA4&kZyCB>!*7 C׵t~%~t+kRb.ܝm;|lmd^i=%Nwa tiR7opwޚ¢ PlE0AE\iJ^xZZJ1|sńO^VkO>rqHI^;=yAƐX?8 oXid<^'#'ט7M)jҨlQj7PIڊfŋ EwOI+f` Joٽp*j<5Qח_䝙\ lCUHw=qvVy[)ک" {rk ĊCST#Ӱ]0x0"U<tÜ2axQXl luCR2QVvuB*SxT)F[/lgК\J\iiZ7ZBXŠGs3->uft@]rʐ YJDL>㭘6dE`AN[nMHF'n3M8U5?Fbh*p('/zSMso7EO6T-.Χj)\tvg,=n| w `n}RG,>nkU]|~]ͧΌŢLؼg1Y, KAJ͝z|CoRwoWpUݑOp,ٔYڭyd @PN6{p)JN1Oi';>zPbɀ(*;KN"a: _QedZǎ^obs)Ad\ٍ#P[p9L; Y%l]Y1q6.5*6W}` *yxt& qz杓f@ݭZW`NCȘ{h>ZC$HKXQ2祒؃<7m*}twyvu%V+: lOG=mZ:MR`\5V# FXOj0r!S˽u]=A]BǐSh+B~O G ; 0'Mpo(aOmѧ IO?5s9nG,T2߾hƻc/Nr\x﮾b\oYBv<o/'"Go NC5 V2+ U\-[7T0˽ȧC+aAOUlz c-Yo#O6uFfʆ0;K F@oZ]\"յҸ_\ ~"ff\Nd$;Nyè6t)(rA.値Y&R_YogJ%'XG2`PX&{hkU?tFzYi$03WzZ te5^=F&ċhoƼ~|5 ƽY.z8xwr ?_8^)Ow(HG0`~;i\\Q9 g}cSI?'V+˵޹0Kb ]f&1x|_O^ƅkdvNu\k|Ќ"\NŎTVnvPSeOY5NJ'X^C?G:@nh9g48*7&~KE<4m tM+B4I"kiJXɥMbc)߲ ІZRt",):"r[bCq=lԏWH)^FqQW̲[ T`i(m>Ë[t"j1}'hxa2Im$ M)&b =Vme9>]}!IfC2v_Z1bI/ufhc1Zry ; M`@ Էq#]:e SxqGvf*m_Mh*q,'[>ږz"h= 0k|ڂ<{9B0>k-H)| ?@gzU٩:/^%Д?i׷c"#z^+F2sc5DQ\? WḀ=+usn)@Ѣy& hYA]9i7Iu|Z2$irz ϒiLa- :9zYak$s 771$/ o—a̽1<&H*\lVq> IWd[*~~h|ZwyMIS8Lk+x㫹6a \](8˫M#~hS[0,2K|MEU>QS2.0Gq}Q= y0V a;;t**|Gؾ qN%y/g4 g56$ZKe+D|]'ShxbDI1sn. }Ob̫cW(F1*67Itۜʝ°Ca=24Kԛ*S3[]h1)tt$3X> D խCw᢬句A~/+A\1e5o#䍻(J\?1`خA7}uHސU{9eJ #C\wG(g,^K1덊|R0F0ʽN[jGwb (7:!fw]_Λ4x_&crF0x;I:ԋlIېY>CЗE`2c3`[ nX1m&wzY0 MN>oېC薐K6:ҔZ;,lW队*%. C5V*PɴI8ҡ:-Zɥٺ| AxPWRH:P* }k.At"(=z4&K _KJQoI ſ(ڮ'ͪu7 dW5-;q}z⿿fNڇɈ;џ̇<ԪM_Q{rW $G:QAAOd*0ٕgJoVÂ|Hu~p†9b_ UîCäX~IO^X. 5:7(xl_DhpU[ᵳ4TT)P&Xb=H? HHmDS5,C#斯@-Jrhb+!X8Sg`B5~@72̭=+z$BH_νnvek^ wl[tb؊ k-iƲT0`Ѹ1ݝ)m\kabȃIޢ9 3` x^JюO{ *H 93gabWNX\kBgw|>?>ʀr)c+!Hjq5}d"Q̫QVJ!Onb-$׀vu&^)׎aX=PEmʠ7)†\ˀS8_b:wiR6y?.RaYP <09Bɕ $vk8=z i^^Dt[a/X{eK)'l=ɕȽ^8̜.^ ˆ?T }ckڟu-Ā!5O%' M!5vSZtx?PE#-M~:HyPMj.Es?Tef R͸Z"qh{9 9UE]0 (6s[봇:B RB'^j:C5+7@$'>|iclH`FI3AMdn aԌp5lI*>l&kdl:莟ުg:q_W% JYz!)))˄ebЅnho!49hU 2%2_ N E/䓒r$+Ӵp-/DcE tc ^℈wvhwP_ AJ,ܔo<.5(X] l E~{ll,u,Y) s,=_ ȍ.tLC84R>@gu8̶1t䍙:&:*5RMdZ} pwU18a.1[-bAhćP˔i~^T{x|jGK%zmmh﾿( z-]H+LPf{ȹshPeJ)D#]x+~])4 6bNz?[NSӴ$Zg.X q|ezVucx1cp}59%zxFJxGc%T`F8,{fG4nogn==2)9-([޴ܑrʜQ e~~NTo pϔ0l?dpf__#T4AnEF}qe[)3RM~PIdb0Xn *֡ J݀}߇Gc|TJx9`ܯ~;Xn]N<}'g8ף7/bN@!#9G{a8΀v2D&C|hp0t\+X$u")c58fevɠ^u֫jq# /͜-F=n!,rq~*\T ٗ/&f>y_ߪߟӊ(C9=ͼ}T~x02#I ׄ H`/h)Ƀ̛̤"&X:>d:;,$ ؅ҐDT&|<ȴKƱs\*-9U˟mSgxF򏞯Å@l9 }uCq8~/Ho7=Jܥ"8}϶lr^Mh1k|_`RnJ,eLxW5V3/NX1m" B#W1īJ)٫ "J .-,5%7|!5*F$WFH _JON=MEMqHZBNR[Gθn~e_LϧlPHff@QPSnN?qS!~E{r`}Ktpr>d͠tV m'W0%'tҏqYH3]縫khG$O>'/P&ЖN/ Į؁ \ w6~kfӟ̅u<3O5ELmx~@шwAi../=w@_Koũ7Y1IG %%G0j@4տH` s$߭YٵTolSC__wzfz1jink w#-O{[IN X,C L$w=.J<(ZUjAIӶK1CQ,^oZǐ3 l_ 3dIt+ߓgQbr@faĤ"(!cpiG74~pC|leধs8;u={o;P#kcGΠ"Q/$24m%j<,)R 2+λS0d𔩫`wLE4rdkʪw Yz[V^D]{iP[@ZgG~NzqO:√ub:hMz#k`w̯D9 1dNb6m!7`:ºbZY}oK==!R84aj~O޹C&-;?)u0tRux٨"VFm玹dT=Vkn4(ԫ{OMnat+V*DM&:5a/c|!2',7EK:&~7g\ 3Yť~UO$pI6q|wb(yn=t ܺV1OGX nҸ}W&w94a# mNtkt]D#**ܚ׿"r%BVEs2K%e:m]ve]%vS4~x*ٺKG?C_cw݆SCTz5aVǮ`霛F kcYkŒ(A4 ԗVԸTްHm`AFZ|hB/|mh.,94Gty[:AJiGCژɓukf*%z<&Pnr2,d}hqb0 c8EJ__kLUyQ SO@5_W?GxcQ=EZ E|6ꌲ;zb|pTL(/1TnN#F. f2EWf.kdb@Mȭ! W'j;æU*qαU5n'n+D~WF9G¨ JT"%a֪O+NۧNsFp7̐ƫBpOT:mI%,%~Q."y3 u}baRrPn~>q< UV.XeUs)ZFa*l\ܕRR'[gEb@ Rb,5ː/xUo*,:jYհuxO Sguiqmx޼y/zyܣ Y7wZk֢&_OFݺf9mː!$qy|YJ=(D3~ś彠t9Dgdqы {1<-GdDžNDCܱ/P΂ kkZc!6 $1V!sqF%aq{^?b*'1( &5(K e>p~c Rźj-ĩ$o~n2[5Qoj)EVvwYrR\ FN>V<E+F_f=c->Pg+?sH-ct#-rP,ܲ:L#N(43 8xD?uv¿_q!T@@a o/$pK.x)R&s^V(zMڔa0ek(amWݟwӁi|{K 8Sa@kYBcv9,SS"C.!Zs6K:Ustuew4Yw-x8<nsk&q#o[YGkŲ6U(8,N_iqfuUtS3"Jrޙy3U}cosrk@5䒽7B2yrL·*FG@u9EG8puI`7˒\Xk<-.Gu:o0 $(ِ}c9 ؼZDGYGfBA=@"о>ȠZ(Ǥ4oEv|KjQ+arہ?!U"5#q$ P$i;V>uBcwILe=asuhO#Ղ`;FH1M@d=@ ~bwkݶdtaSX3}1E-'5hxGި; 74c%yF"dZpr И(Fԣ!!nK࿘M~\45l~?TgJ:M87CaY' EWU}V9Z-;NB<{2kEL[HZF4U$D%tC#Vr{F z^٠ұHmK-meǪl=bJ[h؛/e2=~e5KT%;`x^ִ=@Y]h)Dڤ|G*׋Ȁ8UHqKkR~^ϰ~`(XK@5ƍ:)`z/B9_Vre !rPh})w%$"掇Wz)꺮Pw$ZeCo! >d{0â=ƌ_V,YŲ3ƺԽEa[X7FW毁߼][؋HZ;d7;gC ;ƀ+T;vUIk!0q}S{vE"@&Ģl+ a5 LY[I(W  "bQx~JL%Xr(GAzq#^yfMёK(%$'8tCZԥ&w೧kzWnayiQE(*"ra?`GWi;heɴ7lHyg; P\asBeQjrzrADҬS,kX޶Fr]/xQ%`y@V(jBbW׌2?!NBGdY#ԡ),`̷L ޾vZyvaظ{+ٟuu j^{mI+U m6`'"Y* GmdWfGis׻f(3 ڝ! ?lˎ\]k_vPw!C:id >40򢿸76#?@f4~mR,'W5ּƼ~o7H3ix2$rwJGn)Ah.- λ#|O}+&"-F99G֙,3SBIЂA;! jLsJ.R DlnU=\Ӭq‘rzMSd{a<r3p%:g52F44 ;КurP}Vy~Dk pp.{+aXTVwtdPԦujGxcjf "&QNWJ} *A @i Q-OcJP,xfmADwѻURP[ ԻyFD>*9" 3=>/ut|s2dk=sq!xy ==-4.},2 +f=:oRbaʧ\Ui2qx-d%x[6XQӍV;brvjq/x.thfa$'tWh7CS9Yr:YC:wꅌcFyF]9[N MJ>_pu4_Qd&T"bg k+2 p"(7E2i"HsπTr(oD:hYem~ eHfց(:U9 /t)юI Tպ~6T1{<׼MX$&y0SE Pt3 (tTۦ2`l|_JWg>pTSDܬoè} BGhn곽<0U ߼}O\S=m-$fj 7*wp-"@s&5eGףX gk #V$)8RؠIsB`SBvU}Iv dcccEU "PZu;6 ͕k٪l&@mkm^>J֐ 8exDX(?# 0OZ9vW|ȬU02Wp'ş[pp7{gKlsϚʭߑ71t\<]XMq6+ >fӘif3x1=3Z;JQۋ*&mF:|6WWH*346_$ҝG<=lY#u¿2&G\It5J= 6$O&ۓ<q} wdZZ ?pUh',(6zl/}.!l&.=tX%(*%<ͲT>O%/-lx2;w|t ٺNitEXM}$+R+J| #o]25$2#d~EDNz ~}(Bt "0m/~q-%:[L>{vl#<;>'XfŠC9=,oϋM#X*u=ZX@t'dDä`ၷ>MV~{_j %7pcq.WPn![fjsy:2ԿTUxܿn|W{07ZOt_M$ 1\㰜l‚9(=G.uXH}e"rg;W_Tܙ9TQ:;X*̘BfI=bD d-rP@ eҫLA(3v^NylzuOX:/C,HSBE KNI80Ŷ96ֱ YoL_aR)tZ`BI']%A=usN(Rt8]KqˍH#NSHԩa7_TAqDs,#ϕ=f" L"O뷕^p_dOSHtgŒy+ߵ~`&3m%Y񨦎ZBdT߽$G`-+YQD~2sh;I74#F@2nJ*@"pN2 ߗ<nMkHsMɜ~gܺ,f:Tz̻ŦpV;l㖂<;a}*-~1.Z'Nh6m{o&Xr0 䢴iDLcm BۘiL  \ifLbN"*gdMgۋ!;u9Cbk0$v@ق Gv ^YM`|׈7 ]r;_5(1ES~41#CN?wfhu71rVU1Qrze/Г~l<yG3~;pd˦S09%| .޼H^{3\):`'349jJˌ[W,z/22X +}<<0܎3BqZO{oA}H%0ku^8X$k$Ȣ'zg:$?d1ڂdoMuXbj" 0v/ZTh^9v}73C6:2iR(\/; Ǻ@ļjIbDПqYCMp,$\MK)]C(ӃSĊem("[&!A-9rGlO)6V|w;?lLjow4&#tN\]k{~fj$_Auprˉ0(h򠹁ƠI+LsQC?i7?HfKTCUlMhhs@,u\*6`+'ӻz_F*PŒ|M̊FhY?4udn{ }g6p|6V:1TWTNhO+plQyWlL(?䖄Lm}K&*vUVy2)ܘyv$voSuA$DilڅL$(gi|1RvY^Ʋ6ǠtNV=4rQf DSgdEM 3hH-:#G fS[xU;F(&6OַzHjeK® /u9Ϟ&Wx=v:uOEkF2'c%9Dqs8Aniu4 ]̴A Mda8 ےv˰ꮂ!vE!H{sYO E/mX'q5{(W}|zɍY5xŅt 3EVCQ߯JͶe!F@I45elE5"a#݅}@P?o)rYh>Ä[6p19g.1"PIu-j/WfUzJ78hte ["ca4w"_&[IU=Ӗ""ڔ6ByGmepf7/z/?'4?6Hx3a@xZUb & U< KO){ȨG31K><[/,C6l|gU/Kw@sR/~0qw%mɌ2P]5aQb9NNuyKۨQb]f,Uj,mjLT+`tICۆ;~ɟJFLVWIFaNIŶxN7eoaMbU>1b5ZZ[K&&KJa1drSmlTyGddY2(ZBC!{0l )ZkCɦGsP*FD3k=F?m6)u?*.IԤ/u8dI|'"I*Ad ~wo+ y_V5Uma0OrXenn3, = @| n inK.& ~\79[-v<ŰyhҢΐ$G mTHѲ]sAOI~umI{ )I_B1h@bS1ΕXԆ+0vM.g rkMڿ{4]%'kIf(gQthNdfNy!.ʀ\+06 /Z=VBT, c7VWG+vq-iRɼ>7';} B42.9{Y7`S9л?NeC!W6a0x5v.Aܣ+4 &_ajcM{Ō_4^wʝ. PqI<@sw<8"C1.ȊgaC!YfRTáuu+.e%4vu&ћ>{%Ӂ wwbiŒ 6x=Hk-r%ŝ2aİs'!E>%^x$iC I]}Srr)ף/$5Dw1luGq˼+wmt$]-GRր r@=22{[~`Jxv R(2c = r͞j7iEMT%.|$ӽ: 4; /[+[#aR?G֫O( ʅL> ao#Ha?WCF ʏFo6-Srn^d^X'FPoH~)_niLl#L̄ t'S`b)k4}{'>&(lӂe xqScW.蔇: 8AJ{˒hUU^ƺOh:"0+Ҕ\*9& .ECT ~JaNgvvrE z}ՆHɦ]wKYp`3d/ݘ^@+qI]{m9 ׃ƳԈ8`.ҪGi΄Vr- 7l!lҡbv [PT5}2;We$@Y$xk`Ӛ?tiDu߲4ӣF|ܰ)Xr9P16F˘U8Ւ7KT ]ԇ6vN+Tf/ vR`NYd5#KJh:hFS[U*t/HJSեOjO9eceˉEZ %FȎY"O<޳ht">՗ UH,& M+cӋ!BL )0$m޵FnUK`&L(7ֶZr$ 6sWTJprE*qtFrAk,R=#[kϧduyQHgzh==>TaOu)K1J׮WƟ2%X'pҾ'+ɤdNV:Ԟ98*׊rb 4H7EY^8U6.d'r:rͬuKKks ps5Q'Ghb0KəCYud~ƀ빯nKV13>_OUa7nb,qk:+>J8W/?@5×g^#/A< B) & GhELT{T-`"{ESDE5q|4Wg-Z=ֳ[PXAvn `AqjT_2Q?7G.Jxϩ2{rOzրDZ7Yτ1GQ̑yY.m'%&}ZҔ-iʶxLq嵌"/ ۶_ gBI5*"_69$4+A&~>$^",&+[@g-o-CroMܕѹ}G g>E6>?HFyd/ |{u&0WW;}':* we J-R w*^T'xޗw^v\Rvwݘ`}n괅ɻQM(`hA4[`T "^-se#t6{[MEDrvF1[Hnjf` ̞^? x=118.b4"z6*," JNF3ޜCϏ5 :.%f:b 8ʔ'yg{-JDr:|͟ YxNI6;ҽe-u# 4!&$GV_qwa 0}TEm=ۯ%^<{yu6S3a>ndWXJDž|n0{Ğ aDˮKK-؛):>?1ACDz 7 ǽ7L$>6W!CJASZe0M˩&@2 |_ۗ ,,^MDoA.ӲeE!BI'O$ĒWsa֠OvP6(x6jJRY߃Ե=xKz8 g> b( mfEQzVlݸU{P%,o:&<:ZjچLto%#7vv%%fIN=tө?Ӗt Y{t5<)8PJ95IxAδmȠ(;V򂍄D4) ײ!=MPk5`7w?)PۓpUځ$CPE˒!rT=gX%Cr+Q!aSjL?Ά_9n6j]p+V!rXm)#nR eAz,? r#A"շs^Ze[2\ x 2LB _ e 먵t7ahlԺX%ĈH J_i&;L ѷ qs|cW@"*SP JW2}#qb5aʭ i @ dp5SmF##L0gEU]@(K]`x Ui}{u~譃rY}:LnNyxB7֨'7{=yLr_PK! .Nةj@8iVo%Nc:>gi"I\giMX&YzEӣ+Ÿj 2Nc&Z(է^:qZbC:YoKGU]m2]wZw'+U"d}HyqUq1.S/9<>R8rH<÷=v6*A0?KS}OzTBL $.vDd YkI|6.ޣ]Y(t>CT)(d=܇UXX&޳MRzd@n u=#C EZYx ܠ\XJ?6g%9bs*9-`T;K㥝c _R2T28M֎e|q!)€ʇ;)řV3[,rL4ѥvwG \N#&JoU&XAűx&yH_&tǚ#5DB3yV'Ѱp?FP|{?UrsO0ǧB,>)mQh:S_} vШW6"ΪTj?!|NJ 6m` '.Ap@Y*.U2/JCi=> (T͏_V g"n>ucPq v:F`,N_:|JDvycL]V6vDQufkDԉ3Ye*ٳ/ʕ81$MjƜEJR0t4Y2fobP,Z5)ַԼTyCde@ snQ7<~N @%yzs{-=Wp%Tf|* ʴy׾i=J45/uOTQRL?7\_S~lP)rE\YlBqF؞S}A:<ԓ ߴb~)Mi7B;'Uk%ϭfWF;q 5t}C9䜕p Do] uIs=ءբy;Λb伅®83 RŚk{S *L^ؿs<#WV/w5T̀:;ϏO[1?!;qBgH1{W mtWyWW6FMnP2 wI4\ _n.3XqDDpwwi.1XK9n/Q@u%G+A'W"E"5Te+d-'TA~Sb æĥç:Nmk d2ƞYmdj=ր[/,~+؄ xQݕJkUO LrC-+ ¢%3#*lAMI A' l$JD]A$s"^X]^/.}g/`2NNDM_2w.pq, [i_[YI9ŞBt>}A,*WpռϸUIv)Ы@mM \d$t?[P4:bj Z<A$݅e&O+W@@gxp4"jr5yL;'\zW д f\#EL'̈́*<ֳQ(I"79Pi3`nݛ&"B{@P|:ZUL^5!#ܸ(xa`äWt;th__`Q%]PG ;}߉ۢU@|_J^߾͔脭n_CLVF*]}?Xǰ͓O٫3cK)+q E[)jvXdl3AKpļ X1L6\=O*¶ͰL𗎱ς]͠j0fƏUMYEJ`(Y\,0]q 5OL``Mp*0"w4{Q43,i}]0pKomn5ɠI/RݪIn7Aiƭ$֫/8\do}N+Lh؃KQB{@%TFeYyrc,r.? ʽ #~e+kZOK@5Fe=JjԦ$E?ޟM3N4zEѦ؁xg?rHS Ѫ.ʞ*R?(IYL%gvW`—N%(HJhe).m0ILz(.o}9m}!c!P1}?⤄I9} Ceh6/12[eWW?Ԩ.ٜߠNi.0ZfoԿzLK&~*yg/b\\qM6Xo&% ?Xr{\%̟6N ʃڬTm?)dj Ks9a .&Zfĺiw>Ls(q%o9sIXS \i"i_w8,v42 ' l^c[/;mæ;@XmAJ؟ 6-hX;}f"Kx rD-:G13eIbN]ֽk}[xN <<Zɥ.榪st( HJp4=賖8;߯:E/FK1TV**4, W|~~3v(*Aff¡s~abF @E ˳Q߹ñs1W4d{AG89LĎR'I-jX1G, =-| ɴ[A997,獦5 m~ wf&'nG/!_`@Mve1gn )!aHdJD+1FttYIŽvbiH`zzrQ/қK#46gT0-eׅ͉:4\R?H~n2Y1`8KJ\;r(7qWwrx\5/p9)0]7s$s6'LL@E֕=KC7]3k8}DtE+OXqz¨^$DnpxO3mxO;`\~oc%ySs r8zbo/Ʉ#A`&4hi%aQ*&h? UF*/Q 6iC<2ܮ373̀罒(}}T\o5xɢQԳ(?7)FIzf. VYS wOl@YY:sZ1\Cz ä\sZwҰrE&UZZ?Sd tyrjPٳ+0utw[#!@l}S[ p"N&#H4BBjY!Hj_kRmwPMtiwvy-+&!u: uSB63ޑ Em)pc#žUӻEaX"C9jd 8ql?m[F۔'_у4?UᨂÑ +kKM!r:toc a)Ȁ).͢ 5P B+}a\tsqR3rQd@#-rpDvC="E EX>x1fJ|氅KwAy 6Lǥ0?!͆_/[i50 R(&d$ /}ٵ.! P&& -`ݥق]_~X$]:ާ) FԼE[~J]3j:6ey|M*s䅋ů=%Sf;qR蘂3P¥i*+zH07#KR#[uܶFṴvҞ9r`M\/L_o,R{Ťc3E#!Sp"ܼ#fgqN~>Z_ylCG<"6B>gGݝma_T:%I|5۝N젒dU֜ $)n];勔 ~MMƐf~-8o|GGA9󷜐k05z Bώ藺+D;[mAmPQE LgE?A_9AC?t_ʉүhZK,/BV&-!Y }5f2F/^x ѶyqrP ?nem {IsXpS #F3:R0ll0 _1bab!إT [78?@67IձF$:nE`Gc؁&ٺCşL60ƼM9&*v /#=]h|,!Dn" 0 8F 9'n_$$OPFnC$u.x\T{  6PFo;o 鲗xmMxLdVN<Džۢqhtڸ6u-6+()fJ%-R%ceZ Bbsw /BTelXL\-^AK\A GbU^HL Cp$.]r*WZ08џhrF`"r)T-WHF"Q6=en8(j8=yhe# sЋtB8xjI6De b^SFYiݻH 'r)bA{z*".yJHPEz MKƀ: 3wCv=DӠ[43i*:x#37 .Ⴍiۉ>QdY,Ҡ|V^Dt8&?,զ)l=]ʾZ9cDwMbSPy;V̟  vPԠSj%;?3)kxZpZ BCj%gA*z~k-l]ǦI=hһI4arҬkT@=QG ^ ˄J4ǂl HA։?Fc*{y_/}ƶ>tc8͂[o- 7̙ͺYHYgN'țn\=mk-+|: S xl͟Q(J<,2hDA[$o;IcS|1qnV mϩ5מpCrFo0*f9<ƞ#n5}!}rlZXK}_zPCT)~VZа H8+g0"Rǖ IoKcmsgƘ)qXR0p02[E(ǖ@IcRo#>l7@S,`ɦ']Y6x}5z-;ti>Y!Ww]'HHQS8߳ nU|s *>|GM'iA73fqcx m 2V Q!͇D~~,D{ U/wYe*-ϖ%Rw z5+yVd50rqU'#]&z|{ )Q6  %b?(0M(+e6,:?ެyl@b;d03hW.-(RܭЇю;WWpI5ӴW"7'<˅FqOf(n$&u R[P{"py%m?T{8NA ?{c. r :մ8*Ayo- G%fzg鐤'Q=iy Y,+d0Dri H1P6p-'L5Mה|7 "(J|W>{&ހ|IP~|)I*&{=" 3)G|5(a: h1g8wm̯'ZK`+}x 8? j{7'^33mTndX3ٮߍ*{*<IUYU\& )AI}ƎрWRaOM1423EHB%ht?MWG»EߔU6[Yr/qpF.;pFUh%?j8x.Q\'$tScu7Sְ$6z*ΆifݘGa.ҹƻ'Tbm<=kWֵݩxD{'%zIl>_+6. kDP8.I&j6d_ʨFknrU~~$`/] y hLk;;[dZR.P 6~ƻn.:~L X0\Wf!ȡ:2F >}KK%e.NtU󚊄kAL" Ub+nم<*41*z%S(C[XIQZ5 :/A6`Ap5~Ô78Wx%ǧhi FQJ_2Deh>aT t$~zuMWHe`K.pCwx^3'v\9HnXro ǺR/M[JP{}H *=pR]+XIk|AL#/[nWO!"N`:Tn!Ň GW9$)*1sR,c.6ˋ[Tk<Ń6] SSFJvB6%gɮg)p#kZGc'f`ؼtӍ6%FߍũP*8HF^z-,Â*l fRoB>8\V-4p(ZR}.0px7Vr#\oA$XgƔZqcI BednƞϿaFЏF@I֚G5*D94蛶LT1Hߵ^φ2wvr5T:k'ZL$a;L&YdѴ"C:xv E:GK&쐭+( =md3RkX}˹,@^Ƀ{ (ūҎ̝ìu[%ȌcpC12X}1r/Vc߆#]r!s6}eԈo-&k9;/״/u8[.}C?!"0yF (v;BHRc^7SO:o`"c.&DZ3J,f a !=,QC*In,j1 Ӽ6O)?ۗY(h6. pj""o[l)J\qpkwB%UL`%)y}$:ᚰߛmt;N}(˺t!^!,q&rssAѪGK >0LQ^ppq́k\j7@iw$ev2[v(`cl5P^(2=Q#p_U0ָ RLy7`)ٷPCzȀ8.Q[$obRkx(uU:&,e%/ 0k24ہH(#EݯA ~dXNZX^'XyMқZ$.FN&B+Rܲ\!Vׂ/Ψ W]Q¥e/fj|e3w#Y/ W/pb'XIhR"Rr x+oE<F$ m5?(DzLSW ˮ~iIZcd\Etu-i.])22N-v<,@8#o6tMc"`-Knv8~\&i-ҙ 9d"dL((MMʳ8deQ [jV0 \u19`CK=E$Xڪ2kS2}*eb6kYx8މ r,HB"I54} dBi _&\)(v>ībaN8 ;D<1!ǣ%E4:R@Bdc);R)1ӟb7@f͸Bv6l@q֡}Ձ71^]繯mF29*]v0NC*G^Sf| 5!rqt +BCg0^yt&+_y0JND5xVPkb"(զrx5"-@ՅFJ,AwU$\81)Xar 1M#hL;v]Q`*; u|b+||6@;8쁈RB ̫pr>?=.Uqat-+-(s2w7ZPeͼ XgLlYmf|A2L5?HMS@;b*[y>L AC߇xeRfDzǣhɹԁ(*$sciZq#?ϥVp@b6`9laxt8滳ĩͯ:1ϮPzu/HVIǺc {Ӻ/">.nͪ{`{٠Z`h `^ >^!RP~rcVpO¨A -^f Ѯ-GwlvFKy/u$" Ib^00/^z]yeh,哃\K cMAp5뒴[̜9-(%(A3PGpg,e$KKѤWHrf0Lu `Z[r+|I}[*pͩ_iumۻDR"-be ;Vrz찰ڵE>P4P3Ixq{~]S}N_5f;g[al`vb#]\)߸]`hiľ:F u90, E&xs]Pj1@Q4S$f^weώ$؎y dyGZOHU <THw&9a8=Vd}(FqA@ćD .SȪ} -2zhXd-݀2, d5tW8"aOQ9Ϸ݀5DlF+yֿUlY &jS$۳lG/Ud%j{+L6:Drcy\6A -H4N >: p KQ .mYRANtӊV:fKP2:czx90R+67dr+F79q/p).pA.ɥr`{g`bݞo)?})(? 6붆Th\!v[Ĵ /隊XA7ZEUJȶ_"VC:'3.E ѻe֪bt{9ܩim$i4Hz o[q:&oW쵢` 2H3ZͶ ,l 3l# z/w1,._30 quc92yg[vleIچ)`Pt4; , ob@V!arcT>_7K #2ewr|TT L a ,!e"񉧗u.{l.ѼNDJWLK %3Kz ;v=`"@TPz0bUv+@p&G)%j2hO‹bI|-MleFCu$'큰Ζ,l=DQ$vIup8"\m`E8+X V(~dzXᬙ5,g'qNːֈ9܎tèiSjƧ1LYC|L˾ъW\2ʕ잹:Th8*w9MK1Ϟ߆x7s^m[D;TSF`yYd>S9Ylidřd-fԑsԑmCkIH..(CxPD>=3i5cXBo|ZL>]-A=ZƠQ H ؖӕ&juxp*#9}p g11bd Jø2ȬusOaQsI/rX@ͶHpHX-)D$ )Ŏk ̟Ʒ,4'e8:e5L.lD~Jqe@qIդհ@{Ń$30] Bccxsvv ~6"fߧۣ% q-/9.П0 \}ť:9b6F K\9=TZ8MA9E8p[zW+E@bM.|TR:Uq[/_ߡ^kLz'>6Q`2Ԝ^,d&fg;Ho{8Hة6|~#Sk.'ț/  l,T̥m:&)2c%ıJ\tuk 1P$KPdQa֬:֓ڲ#Etx&$ܘ N*5( % σwg0 JTw4_crRn|3'iJF"EaB ]FؖNYŔbXk@.}}\501寪lҸ>)mY-# r%zc+c  .֖*i$,Jd:dLShZ<+5<7< HSL8 k =),iRh_JVzڀ2W@C !mė GaqP.`(8}0]Br(Nu_Tq >`d7Y@A0* WW/Jh*! ҤjRA/.y:< $=X.N*lǾh4N W +Q /Y L c쀖~ZjRIzpb^3h;N>;'uFm*xG>o_jکqyAoCYNu/DgRB=A[l~}rq(V 1E8tΗ=JN o|IjoS(~Q!Ǔ_gIcGG#):5tA-Yc fEb;-9d<.H|F8yl*ZJs"?ؽF M-iZ.D̞oa347/!@=&p upUIhM!u*QYL՟l0lrE;vʆ#+t>7-yBw/[X' v8~ծWg cp3P\K|RX 5aj3pk[W$O۽42{>rt [QFC$XO8O]+LX yGT|Q7k#3c#*6` ΜvT [nCl/QFꋃqh*u1[B: ;7$NJ!ۘNvkZ e Ux;$\ߺK )YS J.)%$w2 /RMV\"WL*kT[Vv·=}*`1˺G?A^J۲ҽ˼mȈDk s?e.朂8@{,N g5A1E'oUޭ}]հP΍-9tb֘#]y4.#E2Z48j0lDΩx:UX*; `#-r nw1j;I mޏ[$sU@ԵgZɫ?H$4 J'#L(qd[lŋ2Y2$$.B<$ πJ`o7r ɪ@7~4WnȟKHNIF_҆.?mdPXY *;=,t^L2F33ؠ^8zܒ(\[L3&o'qRNDvߖP ~: y 4+:;6,E27 Wڼ:x"4V,>3QXd䍜6X)Xc`aބMXyVlkt_ݮrT_v1O*S0&tWݍ\KhAY#ރƏV#˓TGe_f:c.KύPZ?NEEEgA8!9c8&*dHϲgI=fJU)5X'V Ti {'yckq(cjXjVb޴#TV=7jΔ/5*ns8#:ՑUr|Բ525ҹ&Q-Iɥ˯IRg*P 4"F|ݕ1W1kK0cY |P7Cx<*/X=#}bx,49l(9zoT>znXQ>~FoឧJd,ZF4yp}Σt,Â#U'N{Sssg}|-@ᵻ7h0zKfG+3%O,.wN:ǎ"wrsLS$ƴ2'UaQ(ˠx(+(Ws\ֺm3ɤ- ll瑝L*FO2DKOR7cORC%ػą쁾g`M &'E1Ņ5w.)v̗Ч5xBd4U*Sa ŇA.1 |(ǙXc vW?ȽpUy D-BϨirg_*f$Bi/_ W%yBGн0lM~r.xO[Rʹ( t.])3#Ԋ%I]j$kv-tiRwv$ϗRnFD􄹺^<VHF?D;yEW>QRLDP>}ƣ5ΫM1Re H`m9gQMJ tqdR?:Q~wwP@EzZ:8^G4B%߲QhR%4n!%, NA1>ٲ=4DyH}z?[_MO 0;ajdDr4hD%RuGQi$AhE,O傢 c*yUf G-N`+D5p贖i1Pi#%dR%rwSCkhL ^B YV3 *jN `iи>CPEy آq#<ٹ=<$aufyRn ["*X\}`xR MK2KNn"^1$9)!z!}5Fuμ8Rbt'fi>,c,DS+rϖ5ssR_+kČկ2p og"@F$I3vuzКT`\~ OXUGr$h5 $57u6K&VK zhƅ"Yiґ)L",S-_6Ðaq ,*N8i&m $U_ek* -diީ\:t.c2 &ޫS(B":ET+/ɭ;(; ӃBs1ҋ4J͌gK%C 8E|^ d7s[jisXm Yqwx7"J:K}6> V{$SW>;ܻQ[# $1=F8c 7a(:ڒӑ*&HEJºϦfY7ہ, Kv^(1ױLWJ$BwlNpu.[`aZg mNg KaƍGƟsj;V]|+˞e:PA?ڿMduk&WKuXX7n@itvjNG%F=*zXr #-8+5̷Gd)^oe3uB%kO(x'17''.[nb6]5#I4vT"״rϖm[P|05^gX$BҘAyt=k=%/{NC8mY*m aNۼYHlIz|Cu"/RJ׽hR&VE#kΛ}~ÈYLݤNӻVEy`vjO#xI݁GӴI;F+v=JcͿ8>{(Ԫ 7'nSJ.g-4㜇^zLky]#1ã%28ƫn Y ?#s) r3?#=oMU'Ċ7^/)uu~Py<\サwE~dv +g˾gVrcq;|.yObMb.=*&1 !8yr[3W.}& րUeje R >]X#wJ0*&xws7IOimc;W5I|{_,΀`@khN^bA"Qpd_nzO|1mJs*:6%ֲ$HN3"t*49 p)V~;O+O.r4U*|e@cWxd6+r\R0>ub+J/߅ /J2we1/P+lFQcK%ZVi%kiŢIw$.k)-.Sw"+JF1?C`j@7);'uvu6ՔzJ ]Ŋo+{J bnl8Sl~ a:%G a72@5B6-'[ux?Wn4jWjq24 9c!l^eS{ޝYWtm V1`\( ךN;TVϣbE^5<ۦާCܿ3EBL|B"ൎS&떕pk2I Go3,Tk ұr~iJ-|JSI/}}~Ҁ5DG)ظx o^t%^1 ƭ{茮%ߑa^}1dD>΁TPH*5vq}7An6Z>E%Zv㬂W#jK_,@>u*: rCl|k1<{`g&^cXdH׻ic7+1MaP.>t5Iua&[@r c?Wg<Yà}%B06D~|:디z%6+`U28 yX>s4݃7D*$C6 6h rIuO'u ;DQPI ;Q;r6ȁ9 k?0'_n_'b}tÈIGEǕYwDx@J'7 f΅r\K<4P6 #ۏ}= v*&ITMGlw:N`ٛ6d!ۄ@ ?͛ǹqt1H3N~uibAС'ZhbEMGm;oL_% _tKa ցknk+l汻.: 9qÈq~7g>@bRN-,1b+&}a =,y☲ḩ8 J%OX$ U 鳕V箤.ǹ0pua/?]'8!vy*Ac^zH`ݶl n猃7ÕzPm0{PA5>!1p~sqs>4vIؔʦթ>88OFxy.咞_1e\) [ *龜:-:pz#JRo93lg֜}8С ]pc d|׋L^=xg&Rޏ!Lhɗ$0LhҘ`5Ws9V7L8ͨ#\/ 9k:Лֿ8l a XI*'>\KMo?8`doE nYyڤP:֤ {'Hqcc~]kagpkߒzk<sh+ J3Z`غ&aZ8Q+.W!wi#s de~9Ed_M\ ߲\hQhG?U^Od?<h%A/&ƈe%k4s]#vf8%= >)u]iFugd~/xī1!F$+vmɮrFEp_/mwj8 4# !Q5 Bl2 Ⱥ1d@^ڬ῾3RYV# CiX"+Rd:[DMn:]-CF:)ո #,ͦ!}8[%ݥaxv14q`'NJMA]ЮG-)UEȖE(z1Vj뾨 rav%=%x`B-eֹEĘM}'umT>e.x/R[GЯx=s: ѡVm+_S_Y(Mbh_A+UQ½T(y(_9KjW]O]8kw?:K 'z)q66x*#a 7#k-eOj¨BJ>>d$uWMśȐϝVpk{LͮG8 2Q믕RҜ>?/jY af"Z` q6ˣũ , s̀Mz5t4TA)uT(xDnZq1aJ KlN ,:û>c?lľv0V;vĞ}p딶6]bD˦6FMj,f Pl;.8UlO%Q$V2v\z99= f(C9,)B }jIqcnǯ23Ӿ҆Vqq#h G] qPIG;e `bWԟc놴Un7aq׺YKxg¨QqK}Tn8,_ &a*o3EG[L&һPCe~ l!1W| Wg3ne9Xʒg<aw-T!>;gDZrvݯѕa! C4$ +{8=Lnozy9>рߕ2U˼JN-%QIpb>Aɩ$"b{j~F*kEaLgTGni3E2  CUf/64ź*x4Xzk iflR[%z>UMhQ?Ӕw]#`%f!1&pNu4PH]ʶ;Fw$?jniK<{OI|VbL]n+aG^5xp+ ['nOڂ̠[8ޠ4ArqpR! A[ \7!d6 `LƉU>2{QGOWĵ|-uEcsjpItbb+=:K͒}:*8,ӴsRB<BA9o1ԛbaYpsڤh^ͅU58Ji)gn#fOjk }:FkqH\o&WhyQ)J*?dCνHˤ2*֙sQUFBVeNP>[bLna^,++1Z M/F:)4NuhR<U_sΕiLrLs5/Ӱc[B`t(`\*G+ҖPњE#ޜBRPGI ?Wn xUaXMG, ǧp:M-?/'Q2kp-H0CUS9&/] ;qkl7?:ڜ<e{~xN߷ܺ6$~|,_^U2tXc[he Cc!z>҆ܛ:U[x#A2aTez1寂D@Z1O6 YiMJyr{bx,Ɏt+g!;%$B QhA\:xc"UfɼWXʣL'`w}o`1!L(XZirH'cmSAV&fE -6lPӁ y<;B6V8ct͂]vk ]H0`im9Uf7 B H}Yz(Ǖ)''N#\me56Δ\ PXCDV`*\F;!vJMI^ָnF0#n2%Kyc} Jg15v\ |-ipU>dݬxF`g?iWϵ\|0m-YB I!0=xIPcIr@-(=`B3;z4Ph{>U=14m@ƇIdnIjNf$Wi"K^V?eb!Upjb}w+!|R6&PqF 7J(Bߍ7!=7?UŅ\q -./<ש!V(azBr8t@pSbQ!'a "{U)=@ A,K.by 2.c]yV$/BH!exc$ǿFkɚ+8K}h%5Uz.N[h*p-]^lYx!znQz-Om|ZP Oτ~/c~l"&P_;;*@":= K^JH`IǤ]^XK;Q{sp8nh2uT,,tї@l- F2qU&݋ C'wj]|ɵuj?YIϻ5N$&#$ιj:; u04e,伱Ltj# ߨ"qh/V!4Os<5 9@ 9!L0lvjM(t9*٨3$4 PD,F10cu1YQQx|*DEGx^E Sa=ڵ?)it(NjaXIue4gcv߃:"TOLp[q_)|1pIEnCV7ϣOL`r0k}CjqaGK秹'ekF&x3+l2H_Óy%.eqS=UD6զ^\'pvi[[5t`Q)omAMG92s} nH'A7HyL4;/EL1a#?~GL#FkÄAQqߊN?}u.rwbf]ORUB7[Z__Z:#!pҾ$ф"5D G<nzaZ?^q%7mz#uNd^hL0=x/,? fS P,v|Ψj^,tD" GkGJVԩW23xfXmqmrYʥ>Z)؁"ڡbmXN/po[&{'?vBX_J !rZ&T@ \xQv{ 0r]gψTS 3޶jxobWs<)˯b)@agWEjs+W|\_l}zWSikIqN8C().ų+0/ص)u޿I6)SA͙bxߗtR$j@:֭2ezO.hi6( ebUʥh )}ZwwYBA0cJ g _z BHx2 gCn Fl$O-oW0gDŝL;e3.205z+ح 45?/n$[^ԞJ~9.Cv +wz2|"T"+ܬ5)ڹQ{UaiJVO p_Oi9?ȊT:=j__o TVbͮ]lYTb?7oAf% djTn*Sqp{P; #^N Bk%shfs^jpP{ulн xؖdi.dfXa3~F=B_8d6i*5 w< QAoLƇgMAe U!i9xJcҋEpڴ[`o2CA+`uz+!(o5#oS@VzEr4D"DUf@2|V}cEcɅ̉>ex,T.z-iUlaZ{[2)0RxZX0@<ܯHamͲ}Bx+U3֠}co#XQ-HIHHg< Ƽ"H3890I? BS/^ 1ORŹ AF, XoXw7 V I n'o$UA.cP;vkDp V&&S| +OMjsGh矘6 O+5!Uw*3I\?ڸ5F `j57xPVM 7"MLf3w˷v%tY,Z6&3d-+ M` j^Ԩ(w0\4%MˮZ3~I LeDFJ_AP[I#8; H}wxc,3SXXnA¿eYl ,QwCxG7VSXIC^ XuGS0W8^ F 9!We$wNVtbl-3}CHh9AV5˷{(Ia+73gh{nS*ʬuv(qy -)C= h*d(8l֋_&9̒Xa"8D+l]/ S5|3NHF9a!k.FIe%O>u$݇'IxIOI}xNL+;B1WYRnm= =P3ޠ=i(eR擻}e132Cv4*fDwISa /E>oi۽nkh"vw xp^zVьD AZf6?Ǚ:~ >{ɓG #Krt#I Ij]lT!H!iQxrJSeRH#K8봻)yOd6RBF+zk+~I\r!sR\YjwWT[ɀ6TD{Υaojł>N|$|7 @jo?]* `Mkb 5,>ns/Ifx %KxEཱp/wDE[t W)X_AQ}w:BzSX=:;^yrKw10RW|Cð96ݡ"1;C炡yU1,K[X6 =@܀ՃV JJjց"{Apsp 5{sf__G1ۥAIzt46# K+l]cuI ^6-fTɸʮ{ 5DUڶFv)#&\p#f/8XXHӏ/l7H{/ HuIƴqKVe+8bY%>:Ǚ@v"ҖeCP 4M/K(w#ez9_گL2i7 }0\ *4"YJ}C`y:Y+C՝ m+>cJw":Y"z(op2ͅ[-Cޠ`roy`\8Ɯˤ t/35_2Y &%T7o7wG66=}nФ#Fg3&k.2neb$X~7nmfs&|/K݇kI ]F"6){$=L'Qd06=,8 wl鞑y$߼5N#@W!۵5c fⲩY %f*yeͮ"~th* xC:`}tȓY[)/2]I$- {7X)]5 n%pPu\rqik;u{ĝiNkZ뉸9W\gc?i3g<qZ㴉7}MռV8.~3r/WC3TbY_ᠪ@M*0;m;3(f>It@ϥYGefǥx ^뮼ݾ g 5s`)qdbK:T? u?=oF3/[gh=-aY.M[q0B`ĸ7vhkA4N|JL>¡نB+)3GWI֙ ʨ+L+g~ǂN w9׎VIɷ=upJ!t5ˑCl,}H-s-]񤷓+ŲA:`s1qauA2Y1,hA;C5u-UQ1zND9#Ruݤ, UBIȢsIYB*/m24N̷,j lK* Ӊpc '^6FùczvtѨ;0U" R..)f`̿eNvl%}:#$r1Yb,< gA;װEv@_aAc.NDM8׬,Y!ZBlt~ {L!=gD 7&3g~Es L/EsSd gDY2l ~K}tD|, ;a!lo=&7%vfR#mEjY=qoB) 'Hvd`.,j~>+/ 8׽F-&VN5O @g+lY"F?솞_K-~q{ hښ``D)CF[؃\Z S.@j+$k5L ae0ʱ R}!tXD/Z P?zKt<SulGtUuPuʴ+丹ϛQ>[%O9RG q2B7whz\<̓5@)' crq۫}K~?]G-v3/fpBx^r-%;:/M>n5bOH跪R3r(J8W?N:χ>)LxԆ"vD ;KWA߼IfkZNFvpgAr:.MUHT09TA@ ~:cchiuVSwf7L}@!T1:yf()0OT|ax&~_ܯ 4JK kE`J[4Vp EV4]xtsTzx,c֊&㯂!:ߒ0&q~ F7m0`f&{`WUc0ӻ<,MP7dh(jUҐ;f\dh^."{j#7ink! M G@G44]upis߬;T5KkMg#8xe~+y dD#D\g$Zq%-qNєN! *~''NT*?e Y?Oa|ɶ,.}u<IuK1$<sIpkpH AW+l裾٬<7.UBEaTa6m,.2_ Cl2Ǘe+I}BE1TyY) jrWP242Zcd@^tNlAX6轹6S48u^겉2GJJNXD'7q(z#YO׉ȦQC%<]_ej'i/0$oA#qCpGkM.φj=[,A>oU(]y$x3$m$u Xd }Z.KmW\1Nug/Y(>oHT (*YlI4k?(b v='4bFVLNFpWKRVsW .d\w#T'*=\46?! xXM>#waL=zA'$t 8@o"-dT* 'e 5{NM]4']'rXf}F9^>8YUx1Nh5p,KmN& M md(|XME߁F>^+|XY _⇥e6ؿENm<B?W&(6UqBޛ䵫BԎͥ:6 fX{ ܀ts%r!7ӒOMssjxg#{Þkc8b$ajX>ubwP{HwQN@Y^a'JΗP=Jm!x4,\ǢZ&_jifR7( H[MD"b߲`_TKΊ^or=3>`ۂ)dMuu$sl QZJst5C>>V+R8iG-ӺlrqIӷ!Ԗ"yx!듞AN/&Q<ӭ&;Ou.F[^+GKCp;H g؜PƊA:6V鴱lsUهWk;,MTgHC 6q%:@nugN g;p }xx[)Ȃбnҩ#M5?;ɾU©#uSb$Ah3;A+l+(CFNNo| 7PȞ|(æ7UD%ozBBM>I-kFլw);~1e%mڂڕub.TC?"TVHCu:*g"֐1̯fF./@j:T46S\Nx7p$N>q. NSb}mXm(,њ!f%[@G/u_`0d_ ]. ¦JrFpw4/転3dES&[?BĭpDN3O KoT3-#{lA0+ yiҘ2"]1CWz 3%;2Xod(gevNBl$15ɇxé/'R Q\N D0> TY0Ipa\ tYkƘK=tkG.k.IOyA2OWJ砮܃WZ(Нۣ ցԩ\T3i}JeD}Rh?)Stc#1<@='oA0PԞe.EC%SJ!l`Wbm 'Njl H[E{˰), uF'0S}ʜOW0=e*E=VGj}g mB@kjPŗvnЖX7r[WXd-qI@~֮j D o#ΤQ9K|M9Zuzx"uK-T=&`T2& 3oL #HqG-Kml0H1'@ߠG~}sP+$0PwHg䀈m;`#CݟI>sC*-%6eCCe. ;gXf!?>;Q|Nh9ˡJG}?V GkJ"l"WSYt!23W^7T;q{hTw@n|M>=v-zi =>ΩK. :\;0M >t"mL>>dyr ᮶ giDpTj::cъj$jn;AA<L&:9}ZR\]'Ή=>8DN՘_45&v#tz;iGc™phbdY2?-I%x-oY+'j*aCwfM_@]^]djb~.%'A%F{7G6Im1E/+#gF3عh|{Rŵ EYRhVj aD  G |QV0O sxkEAFI3:%VByvw䖹f>p@9$ t)R*j:axK[Ezhrj4 Oc<ٚPo-9s$A|gS|_zf,)V?x-Q;岹d48~r41R#Yp[,7B0dYm$V>h#Z;xdx;+ʼnw'S?lPW7_Y 1m ݾނ jko|r4!pL&_A mTV?ه Cek0سjbQ|L15m/ }\p/iusS.`k9Doz֍),<泃d'WQb(O#~B6w7Lp#G3n`ۊ,2Du>c:S$X`Tjb U`y26osRf-#~.zAb"6xa. )ˑ'Tȧ'mc'Vz 9U=8%)HihTO<0=Db wVj,NRbYl]B[`8=0H/9>*!l6f願KH%[p:+^5%=n=s'Z\S\jՄb_Njz\[˛N9ȷh >7}\8 rT]RJ[ OcPA)%[+lzGs e䦟FF X4i? ]JLYq^.hw \Fߣ;S%SlGm!]T@;6M w3wZel8˽leR_?AGWӞ$9S`r~viJHG!K$yj"&ewu=ȡi ޕ1.,9^Oiؼs71:4>Odrjj8B F<32??R`Ϩ,9C1?RJᾎ'ȈNA·>'2qizE'Ežn{).[oS o:#w A?sVZVA8Xf^7x7$Zc™RqKVSv  QjbtWSI@oe q2)}+︍jݰ3 \@+u2haf\ c*l5Q7kX|a$# !f5 zC-\xn4)J/>g _,}RgLׄPg`iQX<:6.tJgXaɄ_$cY-enNaL ]afX_GO٨gU!b!?UpB)wrz㧌ʜ$9;8֝bQ$MRcm3xFndzV.rDgt3_PYr8{7U%[>Zwr o.fi⏒fVո夃|%LVNW!im-85`bm95nss{V"XF0Am$"5u{WڽXFgf[^1ݵsOlقlLCsgw:VFX"+ :X)v3ApWWseqpr0Q YT6  QGruJKJOޙd~L7uh+Iz*~)[#B_&o"()/5,#cHpE5 ơCZ?;5qFfHX2G1*]%W<sʕWCFΧ&r#'FR: ܨ@YAwQa ]ZiͭԢ|+ #B|_If=$b_HVT9Jp4\#Y7Gm һ=YN';Y?Jj%mdIUU* Edfham׋ XD h&p-}Wi$~Q* 699NktoUzL< >r/m*YmpS^GbF=rKmRk|H>^lf엂ͳX/8V*'G~ennR#M;}㯮,VUX#4kJBXi9[fgr[5:XX9ՇT<wt[18,uiMr*V?gYBpջQ=bVJQ4m$w5Άr';0R=3}هU79ųB%Lu ?B(6=qQ_4L};%|m6y x9M67Juƀ8 |b ,2l},6q:Sr2w7=ڦ zFddF_]0;am[RDWRvNb j6?ABa"LrelhT` - X"ϻ Hũھʙ& 7ړg8t*z_RϊD|_MZҖ;#)ȥX[_Q͉ND9Ҵy]MPYVNnˢᗪP%#K; 4@ZIƻ(1kȅY%Q:NNLeQD^}ip$s.ZEWD+%[$ӛ*=Dm> Pf4iNu%IWC