openvswitch-2.14.2-150400.24.23.1<>, erUp9|% 9RzCh`^+,+(\UY=k|gd6zqZ̾`ci(=%`Gʈ#y鯺D0 ql~LF23M9?'QWy{K[No DĔŎ gpB7g.g.Bf$pk 4 , V=^b誧0(],\ jb 7H^x&b>x۪㦍t} -v%oO]ݽϜ"1}xPϤ)дFN>QL?L|d $ HE [z3tVLV V V V +RV +V-V.V00V2,2 3H 5 (6$86,\97\:>R\=">"?"@"B"F#XG#pVH$VI& VX&xY&Z'['\'4V](V^.Mb0c1d2 e2%f2(l2*u2@Vv3w>8Vx?Vy@TzB8BHKLLL LLL&L(L0L6LxCopenvswitch2.14.2150400.24.23.1A multilayer virtual network switchOpen vSwitch is a multilayer virtual network Ethernet switch. It is enables network automation through programmatic extension, and supports standard management interfaces and protocols (e.g. NetFlow, sFlow, RSPAN, ERSPAN, CLI, LACP, 802.1ag). In addition, it supports distribution across multiple physical servers similar to VMware’s vNetwork distributed vswitch or Cisco’s Nexus 1000V.erUh02-armsrv3+SUSE Linux Enterprise 15SUSE LLC Apache-2.0 AND LGPL-2.1-only AND SISSLhttps://www.suse.com/Productivity/Networking/Systemhttp://openvswitch.org/linuxaarch64 if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi if [ "$1" -ge 1 ]; then # Save the "enabled" state across the transition of # ownership of openvswitch.service from openvswitch-switch to # openvswitch. if [ x$(systemctl is-enabled openvswitch.service 2>/dev/null ||:) = "xenabled" ]; then touch /run/openvswitch-rpm-state-openvswitch fi fi getent group openvswitch >/dev/null || groupadd -r openvswitch getent passwd openvswitch >/dev/null || \ useradd -r -g openvswitch -d / -s /sbin/nologin \ -c "Open vSwitch Daemons" openvswitch exit 0if [ $1 -eq 1 ]; then # Follow the upstream strategy that no running openvswitch # configuration is changed on upgrade so use fillup only for new installs. PNAME=openvswitch SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ) || : fi# Do not restart the openvswitch service on package updates. # Restarting the service may break the existing network state. # For example, openflow rules are not automatically re-installed # after an OvS update if no SDN controller is used. Moreover, restaring # the OvS can break remote administration during the update so let the # admin decide when it's the best time for an OvS restart. # 5771f476573445710834234a6a9f7bd999a027e7 ("fedora: do not restart the service on a pkg upgrade") if [ $1 -eq 0 ]; then # Package removal for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi x X,@ (  7 XEp=9=K*+S0Zb6".v X !aJ:VLa hTB9 FRogYAA큤큤큤A큤AAA큤A큤A큤A큤A큤큤AerHerHerMeqerMerHerMerKerGerKerGerKerGerKerKerKerHerHerHerHerGerKerKerLerLerLerLerGerG`$<`$;|`$<`$@W=W+5VbV3VV޾VxV'@VՄ@V͛@V͛@V͛@VGTTFJDuraisankar.pitchumani@suse.comDuraisankar.pitchumani@suse.comDuraisankar.pitchumani@suse.comDuraisankar.pitchumani@suse.comDuraisankar.pitchumani@suse.comDuraisankar.pitchumani@suse.compgajdos@suse.comdmueller@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comdmueller@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjcaamano@suse.comjengelh@inai.dejcaamano@suse.comjcaamano@suse.comjcaamano@suse.comJaime Caamaño (jcaamano@suse.com)tbechtold@suse.comjcaamano@suse.commchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dedmueller@suse.commchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.derbrown@suse.commchandras@suse.demchandras@suse.deolaf@aepfle.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dero@suse.dero@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.dedmueller@suse.commchandras@suse.dedmueller@suse.commchandras@suse.dekmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comantoine.belvire@laposte.netandrea@opensuse.orgdmueller@suse.com- Fix CVE-2023-3966 [bsc#1219465] openvswitch3: Invalid memory access in Geneve with HW offload - Added patch, +openvswitch-CVE-2023-3966.patch- Fix CVE-2024-22563 [bsc#1219059] openvswitch: memory leak via the function xmalloc__ in /lib/util.c - Added patch, +openvswitch-CVE-2024-22563.patch- Updated the corrected patch for CVE-2023-5366 [bsc#1216002]- Fix CVE-2023-5366 [bsc#1216002], openvswitch: missing masks on a final stage with ports trie - Added patch, CVE-2023-5366.patch- Fix CVE-2023-1668 [bsc#1210054], openvswitch: remote traffic denial of service via crafted packets with IP proto 0 - Added patch, CVE-2023-1668.patch- added patch to include fix for CVE-2022-4338 (bsc#1206580) and CVE-2022-4337(bsc#1206581) when parsing malformed LLDP packets * CVE-2022-4338.patch- security update - added patches fix CVE-2021-36980 [bsc#1188524], use-after-free in decode_NXAST_RAW_ENCAP + openvswitch-CVE-2021-36980.patch- add openssl(cli) dependency on pki (bsc#1185839)- Replace deprecated /var/run with /run (bsc#1185176, bsc#1185177). * 0001-Replace-deprecated-var-run-with-run.patch- Update openvswitch to 2.14.2. For a list of changes, check https://github.com/openvswitch/ovs/blob/v2.14.2/NEWS Includes security fix for CVE-2020-27827 (bsc#1181345) and CVE-2020-35498 (bsc#1181742). - Removed patches no longer applying to code base: * 0001-rhel-Fix-reload-of-OVS_USER_ID-on-startup.patch * 0001-ipsec-Fix-Strongswan-configuration-syntax.patch- Replaced `%service_del_postun -n` with `%service_del_postun_without_restart` (bsc#1117483).- Fix wrong default directories for OVS python utilities (bsc#1176273). - Add upstream patches to fix openvswitch-ipsec service (bsc#1176273). * 0001-ipsec-Fix-Strongswan-configuration-syntax.patch- Update openvswitch to 2.14.0. For a list of changes, check https://github.com/openvswitch/ovs/blob/v2.14.0/NEWS - Update OVN to 20.06.2. For a list of changes, check https://github.com/ovn-org/ovn/blob/v20.06.2/NEWS- Fix preserving old default OVS_USER_ID for users that removed the override at /etc/sysconfig/openvswitch or for users affected by fillup bug below (bsc#1172861). - Add patch to workaround a possible fillup issue that could cause existing openvswitch configuration to be unintendedly altered during upgrades (bsc#1172929). * 0001-Use-double-hash-for-OVS_USER_ID-comment.patch- add missing provides/obsoletes for python3-openvswitch-test- Update openvswitch to 2.13.0. * For a list of changes, check https://github.com/openvswitch/ovs/blob/v2.13.0/NEWS * This version drops python2 binding support. Only python3 bindings provided going forward. * Tool ovs-vlan-bug-workaround is no longer provided. - OVN was split to its own repo but is still built together with OVS and as such from this same source package. OVN initial version is 20.03. * For a list of changes, check https://github.com/ovn-org/ovn/blob/v20.03.0/NEWS * Packages openvswitch-ovn* are renamed to ovn*. * OVN now has its own sysconfig and log paths. - Add OVS patch to be proposed upstream: * 0001-rhel-Fix-reload-of-OVS_USER_ID-on-startup.patch - Patch instead of post-processing configuration files to set running credentials (bsc#1157338): * 0001-Run-openvswitch-as-openvswitch-openvswitch.patch * 0001-Run-ovn-as-openvswitch-openvswitch.patch - Will no longer change group ownership of /dev/hugepages to 'hugetlbfs' (bsc#1140835). System admin should mount hugepages on a path and permissions of his choosing for OVS. Add patch: * 0001-Don-t-change-permissions-of-dev-hugepages.patch - Will no longer install udev rule to change group ownership of vfio devices to 'hugetlbfs'. Group name does not make much sense in this case and ownership of vfio devices should be coordinated system wide or per device. - Will no longer run under group 'hugetlbfs' on new installs with DPDK enabled. OVS will now run under group 'openvswitch' whether compiled with DPDK support or not. - OVS persistent state is now saved on /var/lib/openvswitch instead of /etc/openvswitch for new installs.- add missing sortedcontainers dependency to the python bindings- Update openvswitch to 2.12.0. For a list of changes, check https://github.com/openvswitch/ovs/blob/master/NEWS - Removed patches that are already included upstream: * 0001-rhel-secure-openvswitch-useropts.patch * 0002-rhel-let-ctl-handle-runtime-directory.patch - Rebased patches: * 0001-Use-strongswan-for-openvswitch-ipsec-service.patch- Fixed missing obsoletes for old python-ovs (bsc#1138948).- Add unbound as a build requirement to support asynchronous DNS resolving for remotes.- Update DPDK dependency to support DPDK 18.11.2.- Add upstream patches to fix bsc#1135884: * 0001-rhel-secure-openvswitch-useropts.patch * 0002-rhel-let-ctl-handle-runtime-directory.patch- Use temporary directory for python build.- Fix problem preventing new installs to run as non root (bsc#1132029), including: * Align with upstream so that no running configuration is changed on upgrades, specifically to avoid changes on the user Open vSwitch runs under. * hugetblfs groups is created as system group. - Add missing opnvswitch-ipsec package and systemd service. - Add patch to use strongswan instead of libreswan for openvswitch-ipsec. libreswan package not available currently. * 0001-Use-strongswan-for-openvswitch-ipsec-service.patch - Add missing ovs-delete-transient-ports systemd service. - Align installed headers with upstream. - Fix problem preventing rpm build '--with check'. - Fix python environment that had directories pointing to /usr/local. - Version bump to 2.11.1. Some of the changes are: * netdev-tc-offloads: Fix probe tc block support * rhel: Include all header files in the Fedora's devel package * reconnect.c: Don't transition back to ACTIVE when forced to RECONNECT. * OVN: Make periodic RAs consistent with RA responder. * OVN: Always send prefix option in RAs * OVN: Use offset instead of pointer into ofpbuf * ofproto: fix the bug of bucket counter is not updated * netdev-dpdk: Print netdev name for txq mapping. * dpif-netdev-perf: Fix millisecond stats precision with slower TSC. * ifupdown.sh: Add missing "--may-exist" option * dpif-netdev-perf: Fix double update of perf histograms. * dpdk: Stop dumping memzones to stdout. * dpctl: Drop parser debug information. * netdev-tc-offloads: Properly get the block id on flow del/get * netdev-tc-offloads: Improve log message for icmpv6 offload not supported * conntrack: Replace structure copy by memcpy(). * conntrack: Lookup only 'UNNAT conns' in 'nat_clean()'. * conntrack: Fix race for NAT cleanup. * ovn-nbctl: Don't segfault when ovn-northd doesn't configure dynamic addresses. * datapath-windows: Add annotations to find vport functions * datapath-windows: Guard vport usage in user.c * datapath-windows: Fix potential deadlock in event subscription * datapath-windows: Fix race condition during port creation * datapath-windows: Fix nbl cleanup when memory allocation fails * netdev-linux: Remove ingress qdisc before trying to add shared block * netdev-tc-offloads: Remove ingress qdisc on tc init flow api * ovsdb-idl: Fix memory leak of idl->remote. * travis: Remove 'sudo' configuration. * OVN: Add port addresses to IPAM after all ports are joined. * dpif-netlink: Free leaked ofpbuf by using ofpbuf_delete * OVN: update RA next_announce according to {min, max}_interval * rconn: Avoid occasional immediate connection failures. * dpdk: Fix case-sensitivity of dpdk-init knob. * NEWS: Clean up the 2.11.0 release notes a bit. * conntrack: Fix L4 csum for V6 extension hdr pkts. * packets: Change return type for 'packet_csum_upperlayer6()'. * ovsdb-client: Fix typo. * ovn-nbctl: Daemon mode should retry when IDL connection lost. * ofctl: break the loop if ovs_pcap_read returns error * netlink: added check to prevent netlink attribute overflow- Disable dpdk on ix86, aligned with dpdk package.- Combine %service_* calls to reduce generated boilerplate. - Reduce scriptlets' hard dependency on systemd.- Version bump to 2.11.0. Some of the changes are: * Linux datapath: - Support for the kernel versions 4.16.x and 4.17.x. - Support for the kernel versions 4.18.x * OpenFlow: - OFPMP_TABLE_FEATURES_REQUEST can now modify table features. * ovs-ofctl: - "mod-table" command can now change OpenFlow table names. * The environment variable OVS_SYSLOG_METHOD, if set, is now used as the default syslog method. * The environment variable OVS_CTL_TIMEOUT, if set, is now used as the default timeout for control utilities. * ovn: - OVN-SB schema changed: duplicated IP with same Encapsulation type is not allowed any more. Please refer to Documentation/intro/install/ovn-upgrades.rst for the instructions in case there are problems encountered when upgrading from an earlier version. - New support for IPSEC encrypted tunnels between hypervisors. - ovn-ctl: allow passing user:group ids to the OVN daemons. - IPAM/MACAM: * add the capability to dynamically assign just L2 addresses * add the capability to specify a static ip address and get the L2 one allocated dynamically using the following syntax: ovn-nbctl lsp-set-addresses "dynamic " * DPDK: - Add support for DPDK 18.11 - Add support for port representors. * Userspace datapath: - Add option for simple round-robin based Rxq to PMD assignment. It can be set with pmd-rxq-assign. - Add support for Auto load balancing of PMDs (experimental) - Added new per-port configurable option to manage EMC: 'other_config:emc-enable'. * Add 'symmetric_l3' hash function. * OVS now honors 'updelay' and 'downdelay' for bonds with LACP configured. * ovs-vswitchd: - New configuration option "offload-rebalance", that enables dynamic rebalancing of offloaded flows. * The environment variable OVS_RESOLV_CONF, if set, is now used as the DNS server configuration file. * RHEL packaging: - OVN packages are split from OVS packages. A new spec file - ovn-fedora.spec.in is added to generate OVN packages. - Revisit DISABLE_RESTART_ON_UPDATE and DISABLE_STOP_ON_REMOVAL options (bsc#1117483). DISABLE_STOP_ON_REMOVAL is removed. DISABLE_RESTART_ON_UPDATE is replaced by '%service_del_postun -n'. $FIRST_ARG is replaced by $1. - Add extra openvswitch headers (bsc#1125897).- Obsolete old python[2]-openvswitch-test subpackages (bsc#1124435).- Fixed package name libopenvswitch-2_10-0 to libopenvswitch-2_11-0- Version bump to 2.11.0+git20190123.ad83fc9ab. Some of the changes are: * Linux datapath: - Support for the kernel versions 4.16.x and 4.17.x. * OpenFlow: - OFPMP_TABLE_FEATURES_REQUEST can now modify table features. * ovs-ofctl: - "mod-table" command can now change OpenFlow table names. * The environment variable OVS_SYSLOG_METHOD, if set, is now used as the default syslog method. * The environment variable OVS_CTL_TIMEOUT, if set, is now used as the default timeout for control utilities. * ovn: - OVN-SB schema changed: duplicated IP with same Encapsulation type is not allowed any more. Please refer to Documentation/intro/install/ovn-upgrades.rst for the instructions in case there are problems encountered when upgrading from an earlier version. - New support for IPSEC encrypted tunnels between hypervisors. - ovn-ctl: allow passing user:group ids to the OVN daemons. - IPAM/MACAM: * add the capability to dynamically assign just L2 addresses * add the capability to specify a static ip address and get the L2 one allocated dynamically using the following syntax: ovn-nbctl lsp-set-addresses "dynamic " * DPDK: - Add support for DPDK 18.11 - Add support for port representors. * Userspace datapath: - Add option for simple round-robin based Rxq to PMD assignment. It can be set with pmd-rxq-assign. - Add support for Auto load balancing of PMDs (experimental) - Added new per-port configurable option to manage EMC: 'other_config:emc-enable'. * Add 'symmetric_l3' hash function. * OVS now honors 'updelay' and 'downdelay' for bonds with LACP configured. * ovs-vswitchd: - New configuration option "offload-rebalance", that enables dynamic rebalancing of offloaded flows. * The environment variable OVS_RESOLV_CONF, if set, is now used as the DNS server configuration file. * RHEL packaging: - OVN packages are split from OVS packages. A new spec file - ovn-fedora.spec.in is added to generate OVN packages. - Remove upstreamed patch: * 0001-python-c-ext-Fix-memory-leak-in-Parser_finish.patch - Remove DISABLE_RESTART_ON_UPDATE and DISABLE_STOP_ON_REMOVAL options (bsc#1117483).- python2-ovs provides now also python-ovs which is the standard for singlespec python packages.- Backport upstream fix for python json parser memory leak (bsc#1116437) * 0001-python-c-ext-Fix-memory-leak-in-Parser_finish.patch- Improve python packaging (bsc#1115085) * Rename python*-openvswitch subpackages to python*-ovs to follow the openSUSE policy that packages should be named after the modules they install. * Build the JSON C bindings and as a result the 'noarch' BuildArch needs to be removed. * Drop the python*-openvswitch-test packages and merge them with the test subpackage * Build the python bindings using setuptools * Include the egg-info package. * Use libopenvswitch as dependency to python bindings- Version bump to 2.10.1. Some of the changes are: * dpif-netdev.at: Add missing backslash. * ofproto-dpif-xlate: Avoid deadlock on multicast snooping recursion. * dpif-netdev-perf: Print SMC statistics. * dpif-netdev-unixctl: Change 'masked' to 'megaflow'. * ovn-controller: Support processing DHCPv6 information request message type * ovn-ctl: Fix the wrong pidfile argument passed to ovsdb-servers * ovndb-servers.ocf: Add ssl support for managing OVN DB resources with pacemaker using LB VIP. * ovn-ctl: Allow passing ssl certs when starting OVN DBs in ssl mode. * expr: Disallow < <= >= > comparisons against empty value set. * expr: Set a limit on the depth of nested parentheses * ovn: Fix IPv6 DAD failure for container ports * dpif-netdev: Add vlan to mask for flow_put operation. * ovs-save: Parse geneve tlv map correctly. * extend-table: Fix a bug that iterates wrong table * odp-util: Fix a use-after-free bug. * ofp-packet: Fix NXT_RESUME with geneve tunnel metadata * dpif-netlink: Fix null pointer. * ofproto-dpif-xlate.c: Fix uninitialized variable warning. * dpif: Remove support for multiple queues per port. * dpif-netlink: don't allocate per thread netlink sockets * ovsdb-types: Refactor structs so as to comply with C++ standard * bfd: Make the tp_dst masking megaflow-friendly. * ovsdb-data: Improve grammar in error message. * condition: Reject <, <=, >=, > with optional scalar against empty set. * condition: Fix ==, !=, includes, excludes on optional scalars. * netdev: Properly clear 'details' when iterating in NETDEV_QOS_FOR_EACH. * lex: Fix buffer overrun parsing overlong hexadecimal constants. * sflow: Set agent address properly based on collector address. * ovsdb-client: Fix a bug that uses wrong index * ofproto: Fix build with some GCC versions. * ofproto-dpif-xlate: Fix conntrack fields on NXT_RESUME * ofproto: Handle OpenFlow version mismatch for requestforward with groups. * ovs-save: save and restore groups on restart * sparse: check if floatn-common.h is available. * flow: Fix uninitialized flow fields in IPv6 error case. * ofproto-dpif: Fix NXT_RESUME flow stats * ovn: Add the documentation for the DHCP opt 'wpad' in proper section * meta-flow: Make "nw_frag" a synonym for "ip_frag". * gre: Rename fallback devices to avoid udev's interference * ovsdb-server: Alleviate the possible data loss in an active/standby setup * ovsdb-idlc: Use ALIGNED_CAST to avoid spurious warnings for index rows. * ofproto-dpif-xlate: Fix translation of groups with no buckets. * ovn: Add DHCP support for option 252. * ofp-port: Don't leak on error in ofputil_pull_ofp14_port_stats(). * ofp-print: Fix a memory leak reported by fuzz * ovs-save: Don't always include the default flow during restore * lib/tc: treat vlan id and prio as independent fields * odp-util: Don't attempt to write IPv6 flow label bits that don't exist. * lib/tc: reject offloading of non-Ethernet packets * dhparams: Fix .c file generation with OpenSSL >= 1.1.1-pre9 * ovs-ctl: Allow add-remote without vswitchd started. * system-traffic: Fix conntrack per zone limit test. * erspan: set erspan_ver to 1 by default when adding an erspan dev * ovn.at: Skip ACL rate-limiting test on slow/overloaded systems. * daemon-unix: Use same name for original or restarted children. * dpif-netdev: Prevent unsafe access when retrieving meter stats. * utilities: Drop shebang from bash completion script * ofp-actions: Re-fix error path for parsing OpenFlow actions. * nx-match: Avoid double-free on some error paths. * netdev-dpdk: Support the link speed of XL710 * ovn-northd: Support learning neighbor from ARP request. * ovn-northd: LR respond ARP from valid subnet only. * ovn: Fix the issue in IPv6 Neigh Solicitation responder for router IPs * dpctl: Fix memory leak in dp_exists(). * ofproto-dpif: Check for EBUSY as well * tunnel, tests: Sort flow output in ERSPAN v1/v2 metadata * erspan: add big endian bit fields.- Use correct user for logrotate script (bsc#1104049, b096fa42ddc2)- Fix package name for shared library.- Version bump to 2.10.0. Some of the changes are: * ovs-vswitchd and utilities now support DNS names in OpenFlow and OVSDB remotes. * ovs-vswitchd: - New options --l7 and --l7-len to "ofproto/trace" command. - Previous versions gave OpenFlow tables default names of the form "table#". These are not helpful names for the purpose of accepting and displaying table names, so now tables by default have no names. - The "null" interface type, deprecated since 2013, has been removed. - Add minimum network namespace support for Linux. - New command "lacp/show-stats" * ovs-ofctl: - ovs-ofctl now accepts and display table names in place of numbers. By default it always accepts names and in interactive use it displays them; use --names or --no-names to override. See ovs-ofctl(8) for details. * ovs-vsctl: New commands "add-bond-iface" and "del-bond-iface". * ovs-dpctl: - New commands "ct-set-limits", "ct-del-limits", and "ct-get-limits". * OpenFlow: - OFPT_ROLE_STATUS is now available in OpenFlow 1.3. - OpenFlow 1.5 extensible statistics (OXS) now implemented. - New OpenFlow 1.0 extensions for group support. - Default selection method for select groups is now dp_hash with improved accuracy. * ovn: - Implemented icmp4/icmp6/tcp_reset actions in order to drop the packet and reply with a RST for TCP or ICMPv4/ICMPv6 unreachable message for other IPv4/IPv6-based protocols whenever a reject ACL rule is hit. - ACL match conditions can now match on Port_Groups as well as address sets that are automatically generated by Port_Groups. ACLs can be applied directly to Port_Groups as well. - ovn-nbctl can now run as a daemon (long-lived, background process). See ovn-nbctl(8) for details. * DPDK: - New 'check-dpdk' Makefile target to run a new system testsuite. See Testing topic for the details. - Add LSC interrupt support for DPDK physical devices. - Allow init to fail and record DPDK status/version in OVS database. - Add experimental flow hardware offload support - Support both shared and per port mempools for DPDK devices. * Userspace datapath: - Commands ovs-appctl dpif-netdev/pmd-*-show can now work on a single PMD - Detailed PMD performance metrics available with new command ovs-appctl dpif-netdev/pmd-perf-show - Supervision of PMD performance metrics and logging of suspicious iterations - Add signature match cache (SMC) as experimental feature. When turned on, it improves throughput when traffic has many more flows than EMC size. * ERSPAN: - Implemented ERSPAN protocol (draft-foschiano-erspan-00.txt) for both kernel datapath and userspace datapath. - Added port-based and flow-based ERSPAN tunnel port support, added OpenFlow rules matching ERSPAN fields. See ovs-fields(7).- Fix conditional to only include vfio udev rules when building with DPDK support - Exclude %_docdir from main package which seems to be packaged by default on older openSUSE releases.- Restrict DPDK version to 18.02 since Open vSwitch 2.9 is not going to work with any newer releases.- Version bump to 2.9.2. Some of the changes are: * OVSDB has new, experimental support for database clustering: - New high-level documentation in ovsdb(7). - New file format documentation for developers in ovsdb(5). - Protocol documentation moved from ovsdb-server(1) to ovsdb-server(7). - ovsdb-server now supports online schema conversion via "ovsdb-client convert". - ovsdb-server now always hosts a built-in database named _Server. See ovsdb-server(5) for more details. - ovsdb-client: New "get-schema-cksum", "query", "backup", "restore", and "wait" commands. New --timeout option. - ovsdb-tool: New "create-cluster", "join-cluster", "db-cid", "db-sid", "db-local-address", "db-is-clustered", "db-is-standalone", "db-name", "schema-name", "compare-versions", and "check-cluster" commands. - ovsdb-server: New ovs-appctl commands for managing clusters. - ovs-sandbox: New support for clustered databases. * OVN: - ovn-sbctl, ovn-nbctl: New options --leader-only, --no-leader-only. * Bug fixes - Use openvswitch user/group for the log directory (3f556d66edb9)- Add support for RedHat distributions. All SUSE macros are now conditional and the spec file has been adapted based on the upstream one (fate#324537) - spec-cleaner fixes- Move openvswitch user/group creation to %pre scriptlet. The default ownership of the configuration files expects the user and group to be available as early as possible (bsc#1091408) - spec-cleaner fixes.- Preserve 'enable' status of openvswitch.service file when upgrading from naming scheme is broken, and as such a device will not be available for use until a valid dpdk-devargs is specified. - Virtual DPDK Poll Mode Driver (vdev PMD) support. * For the complete list of changes, please see: - http://openvswitch.org/releases/NEWS-2.7.0 - Add patch to fix DPDK configuration migration for < 2.6 installations * 0001-utilities-Add-script-to-support-DPDK-option-migratio.patch - Rework spec file * Enable DPDK by default and drop openvswitch-dpdk* packages. DPDK is only enabled on supported architectures though. - Remove openvswitch-dpdk.changes - Remove openvswitch-dpdk.spec - Remove pre_checkin.sh * Merge openvswitch and openvswitch-switch into a single package since there was no compelling reason to keep the switch functionality in a separate subpackage. * Split OVN package to ovn-common, ovn-central, ovn-docker, ovn-host and ovn-controller similar to the Debian and RedHat packages.- Relax the DPDK dependency a bit so we can support stable and possibly new minor releases as well.- Do not restart the openvswitch service after a package update. Restarting the systemd service may break connectivity so let the user decide when it is the best time for such an action. (bsc#1002734)- Version bump to 2.6.1. Some of the changes are: * ovn: Do not reply to ARP or ND NS for a VM's own IP address. * ovs-ofctl: Tolerate differences in IPv6 formatting. * netdev-linux: double tagged packets should use 0x88a8 * expr: Fix abort when simplifying "x != 0/0". * dpif-netdev: Fix crash in dpif_netdev_execute(). * ovn-controller: Container can have connection to a hosting VM. * stream-ssl: Fix memory leak on error path. * Other bug fixes.- Version bump to 2.6.0. Some of the changes are: * First supported release of OVN. See ovn-architecture(7) for more details. * ovsdb-server: - New "monitor_cond" "monitor_cond_update" and "update2" extensions to RFC 7047. * OpenFlow: - OpenFlow 1.3+ bundles now expire after 10 seconds since the last time the bundle was either opened, modified, or closed. - OpenFlow 1.3 Extension 230, adding OpenFlow Bundles support, is now implemented. - OpenFlow 1.3+ bundles are now supported for group mods as well as flow mods and port mods. Both 'atomic' and 'ordered' bundle flags are supported for group mods as well as flow mods. - Internal OpenFlow rule representation for load and set-field actions is now much more memory efficient. For a complex flow table this can reduce rule memory consumption by 40%. - Bundles are now much more memory efficient than in OVS 2.5. Together with memory efficiency improvements in OpenFlow rule representation, the peak OVS resident memory use during a bundle commit for large complex set of flow mods can be only 25% of that in OVS 2.5 (4x lower). - OpenFlow 1.1+ OFPT_QUEUE_GET_CONFIG_REQUEST now supports OFPP_ANY. - OpenFlow 1.4+ OFPMP_QUEUE_DESC is now supported. - OpenFlow 1.4+ OFPT_TABLE_STATUS is now supported. - New property-based packet-in message format NXT_PACKET_IN2 with support for arbitrary user-provided data and for serializing flow table traversal into a continuation for later resumption. - New extension message NXT_SET_ASYNC_CONFIG2 to allow OpenFlow 1.4-like control over asynchronous messages in earlier versions of OpenFlow. - [...] - For a complete list of changes, please see http://openvswitch.org/releases/NEWS-2.6.0 - Remove obsolete patches and files * 0001-Remove-broken-pipe-warning-logs-from-ovsdb-server.lo.patch * 0001-ovs-ctl-Add-new-DPDK_OPTIONS-environment-variable.patch * openvswitch-2.5.0-detect-dpdk-installation.patch * openvswitch-switch.logrotate * openvswitch.service- New upstream bugfix release 2.5.1 (bsc#1001657) * DPDK: - New appctl command 'dpif-netdev/pmd-rxq-show' to check the port/rxq assignment. - Type of log messages from PMD threads changed from INFO to DBG. * ovs-pki: Changed message digest algorithm from SHA-1 to SHA-512 because SHA-1 is no longer secure and some operating systems have started to disable it in OpenSSL. * Bug fixes- Add new DPDK_OPTIONS environment variable to hold the dpdk vswitchd options so that the systemd unit files can be used to launch an ovs-vswitcd DPDK capable instance instead of doing it manually. (bsc#987265) * 0001-ovs-ctl-Add-new-DPDK_OPTIONS-environment-variable.patch- enable openvswitch-dpdk on aarch64 since dpdk builds on aarch64 now- remove aarch from openvswitch-dpdk until we have a dpdk that builds for aarch64- Add missing licenses (bsc#988513) - Misc spec file cleanups highlighted by the spec-cleaner tool. - Allow aarch64 builds for openvswitch-dpdk- Allow the OvS daemon to run as non-root (bsc#987545) - Add missing 'Conflicts' statements to all the subpackages as required by the Factory review tools.- Remove the ?_with_dpdk macro usage since this is not being set without explicitly passing --with/--without during an OBS build. This reverts back to using the %{with dpdk} style which is set automatically based on %bcond_with* macros (bsc#989335).- Fix subpackage dependencies to not require the non-existent python DPDK subpackages (bsc#986835). We do not provide DPDK versions of the python bindings so nothing should depend on these subpackages.- Update rpm groups, acronym forms.- Multiple fixes for the openvswitch-dpdk package (bsc#985878) * Rename main package name to openvswitch-dpdk * Do not build the python and kmp packages since they do not depend on the DPDK capabilities * Remove the open_virtual_switch capability. The openvswitch-common will be used by reverse dependencies to require either of the OvS packages. * Provide virtual capabilities for all DPDK subpackages. * Fix the dependencies in the python package to require either of the OvS packages. * Suggest the kmp package only if it's actually provided. * Small cleanups.- Add %check directive to run the openvswitch testsuite on demand. The openvswitch contains hundreds of tests covering simple and complex openvswitch configuration so it's beneficial to run them during package builds. However, running the testsuite is not enabled by default. Also add the following upstream patch: * 0001-Remove-broken-pipe-warning-logs-from-ovsdb-server.lo.patch- Build a DPDK-enabled Open vSwitch (fate#319170) * Apply the following changes to the openvswitch.spec file - Add support for building with DPDK capabilities - Add conflicts between the two packages. - Add new 'open_virtual_switch-*' capabilities for openvswitch, openvswitch-switch, openvswitch-test packages which can be used by reverse dependencies to select between the two openvswitch implementations. * Add pre_checkin.sh to generate the openvswitch_dpdk.spec file based on the openvswitch.spec one. * Add upstream openvswitch-2.5.0-detect-dpdk-installation.patch patch to detect and link against a DPDK installation.- Keep %prep small for speedier `quilt setup`. Kill __DATE__ from source. Drop all .la files that are in %_libdir.- Add missing %dir directive for /var/log/openvswitch- remove aarch64 conditional, no longer needed- Multiple spec file and package fixes. * Drop obsolete log-check-module-loop.patch patch. * Drop conditional code for older openSUSE releases. This also removes all of the sysvinit files which were pulled in when the package was originally developed. * Drop support for building the GUI. The GUI code has been removed in 7868fbc6c97c2 ("ovsdbmonitor: Remove.") upstream commit and it does not exist since v2.2.0 so drop the code in the spec file. * Use the upstream systemd service files for the OVN components instead of maintaining our own downstream. * Drop the unofficial ipsec support. It hasn't been enabled in years. * Drop support for building the upstream kernel module since it's being shipped with the kernel package in latest releases. Restore the %bcond_with kmp to make it easier to build the external kernel module if needed. * Fix some suse-missing-rclink rpmlint warnings for the ovn subpackage * Base our service unit to the upstream one. * Stop silently enabling the GRE protocol in iptables by default. * Install the upstream sysconfig file to pass more information to the openvswitch service unit. * Use make install instead of %makeinstall * Drop brcompat leftovers. * spec-cleaner fixes- address dimstars concerns- Prevent systemd from autogenerating a service file for openvswitch-switch which conflicts with the opevswitch one. (bsc#966762)- Add missing %defattr to ovn files section.- Add additional install requirements for python-openvswitch-test package.- Add support for building both 2.4.0 and 2.5.0 from the same spec file. Needed to fix SLE11 builds as OVS-2.5.0 no longer supports python < 2.7. SLE11 SP3 and SP4 use python 2.6. - Added: openvswitch-2.4.0.tar.gz- New upstream version 2.5.0 (LTS) - Dropped support for Python older than version 2.7. As a consequence, using Open vSwitch 2.5 or later on XenServer 6.5 or earlier (which have Python 2.4) requires first installing Python 2.7. - OpenFlow: * Group chaining (where one OpenFlow group triggers another) is now supported. * OpenFlow 1.4+ "importance" is now considered for flow eviction. * OpenFlow 1.4+ OFPTC_EVICTION is now implemented. * OpenFlow 1.4+ OFPTC_VACANCY_EVENTS is now implemented. * OpenFlow 1.4+ OFPMP_TABLE_DESC is now implemented. * Allow modifying the ICMPv4/ICMPv6 type and code fields. * OpenFlow 1.4+ OFPT_SET_ASYNC_CONFIG and OFPT_GET_ASYNC_CONFIG are now implemented. - ovs-ofctl: * New "out_group" keyword for OpenFlow 1.1+ matching on output group. - Tunnels: * Geneve tunnels can now match and set options and the OAM bit. * The nonstandard GRE64 tunnel extension has been dropped. - Support Multicast Listener Discovery (MLDv1 and MLDv2). - Add 'symmetric_l3l4' and 'symmetric_l3l4+udp' hash functions. - sFlow agent now reports tunnel and MPLS structures. - New 'check-system-userspace', 'check-kmod' and 'check-kernel' Makefile targets to run a new system testsuite. These tests can be run inside a Vagrant box. See INSTALL.md for details - Mark --syslog-target argument as deprecated. It will be removed in the next OVS release. - Added --user option to all daemons - Add support for connection tracking through the new "ct" action and "ct_state"/"ct_zone"/"ct_mark"/"ct_label" match fields. Only available on Linux kernels with the connection tracking module loaded. - Add experimental version of OVN. OVN, the Open Virtual Network, is a system to support virtual network abstraction. OVN complements the existing capabilities of OVS to add native support for virtual network abstractions, such as virtual L2 and L3 overlays and security groups. - RHEL packaging: * DPDK ports may now be created via network scripts (see README.RHEL). - DPDK: * Requires DPDK 2.2 * Added multiqueue support to vhost-user * Note: QEMU 2.5+ required for multiqueue support - SELinux: * Introduced SELinux policy package. - New package: openvswitch-ovn - Removed: openvswitch-2.4.0.tar.gg - Added: openvswitch-2.5.0.tar.gg - Added: openvswitch-testcontroller.init - Added: ovn-controller-vtep.service - Added: ovn-controller.service - Added: ovn-northd.service - TODO: Explicit DPDK support not yet added to spec. - Spec file work and cleanup. - Includes fixes (or obsoletes) the following issues: * bsc#948840, bsc#941466, bsc#936780, bnc#935750, bnc#867964- Tighten up openvswitch service ordering. bsc#968205 (openSUSE), bsc#951314 (SLE).- Don't install INSTALL.* files.- Removed: openvswitch-switch.template- New upstream version 2.4.0 - Flow table modifications are now atomic, meaning that each packet now sees a coherent version of the OpenFlow pipeline. For example, if a controller removes all flows with a single OpenFlow "flow_mod", no packet sees an intermediate version of the OpenFlow pipeline where only some of the flows have been deleted. - Added support for SFQ, FQ_CoDel and CoDel qdiscs. - Add bash command-line completion support for ovs-vsctl Please check utilities/ovs-command-compgen.INSTALL.md for how to use. - The MAC learning feature now includes per-port fairness to mitigate MAC flooding attacks. - New support for a "conjunctive match" OpenFlow extension, which allows constructing OpenFlow matches of the form "field1 in {a,b,c...} AND field2 in {d,e,f...}" and generalizations. For details, see documentation for the "conjunction" action in ovs-ofctl(8). - Add bash command-line completion support for ovs-appctl/ovs-dpctl/ ovs-ofctl/ovsdb-tool commands. Please check utilities/ovs-command-compgen.INSTALL.md for how to use. - The "learn" action supports a new flag "delete_learned" that causes the learned flows to be deleted when the flow with the "learn" action is deleted. - Basic support for the Geneve tunneling protocol. It is not yet possible to generate or match options. This is planned for a future release. The protocol is documented at http://tools.ietf.org/html/draft-gross-geneve-00 - The OVS database now reports controller rate limiting statistics. - sflow now exports information about LACP-based bonds, port names, and OpenFlow port numbers, as well as datapath performance counters. - ovs-dpctl functionality is now available for datapaths integrated into ovs-vswitchd, via ovs-appctl. Some existing ovs-appctl commands are now redundant and will be removed in a future release. See ovs-vswitchd(8) for details. - OpenFlow: * OpenFlow 1.4 bundles are now supported for flow mods and port mods. For flow mods, both 'atomic' and 'ordered' bundle flags are trivially supported, as all bundled messages are executed in the order they were added and all flow table modifications are now atomic to the datapath. Port mods may not appear in atomic bundles, as port status modifications are not atomic. * IPv6 flow label and neighbor discovery fields are now modifiable. * OpenFlow 1.5 extended registers are now supported. * The OpenFlow 1.5 actset_output field is now supported. * OpenFlow 1.5 Copy-Field action is now supported. * OpenFlow 1.5 masked Set-Field action is now supported. * OpenFlow 1.3+ table features requests are now supported (read-only). * Nicira extension "move" actions may now be included in action sets. * "resubmit" actions may now be included in action sets. The resubmit is executed last, and only if the action set has no "output" or "group" action. * OpenFlow 1.4+ flow "importance" is now maintained in the flow table. * A new Netronome extension to OpenFlow 1.5+ allows control over the fields hashed for OpenFlow select groups. See "selection_method" and related options in ovs-ofctl(8) for details. - ovs-ofctl has a new '--bundle' option that makes the flow mod commands ('add-flow', 'add-flows', 'mod-flows', 'del-flows', and 'replace-flows') use an OpenFlow 1.4 bundle to operate the modifications as a single atomic transaction. If any of the flow mods in a transaction fail, none of them are executed. All flow mods in a bundle appear to datapath lookups simultaneously. - ovs-ofctl 'add-flow' and 'add-flows' commands now accept arbitrary flow mods as an input by allowing the flow specification to start with an explicit 'add', 'modify', 'modify_strict', 'delete', or 'delete_strict' keyword. A missing keyword is treated as 'add', so this is fully backwards compatible. With the new '--bundle' option all the flow mods are executed as a single atomic transaction using an OpenFlow 1.4 bundle. - ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because MD5 is no longer secure and some operating systems have started to disable it in OpenSSL. - ovsdb-server: New OVSDB protocol extension allows inequality tests on "optional scalar" columns. See ovsdb-server(1) for details. - ovs-vsctl now permits immutable columns in a new row to be modified in the same transaction that creates the row. - test-controller has been renamed ovs-testcontroller at request of users who find it useful for testing basic OpenFlow setups. It is still not a necessary or desirable part of most Open vSwitch deployments. - Support for travis-ci.org based continuous integration builds has been added. Build failures are reported to build@openvswitch.org. See INSTALL.md file for additional details. - Support for the Rapid Spanning Tree Protocol (IEEE 802.1D-2004). The implementation has been tested successfully against the Ixia Automated Network Validation Library (ANVL). - Stats are no longer updated on fake bond interface. - Keep active bond slave selection across OVS restart. - A simple wrapper script, 'ovs-docker', to integrate OVS with Docker containers. If and when there is a native integration of Open vSwitch with Docker, the wrapper script will be retired. - Added support for DPDK Tunneling. VXLAN, GRE, and Geneve are supported protocols. This is generic tunneling mechanism for userspace datapath. - Support for multicast snooping (IGMPv1, IGMPv2 and IGMPv3) - Support for Linux kernels up to 4.0.x - The documentation now use the term 'destination' to mean one of syslog, console or file for vlog logging instead of the previously used term 'facility'. - Support for VXLAN Group Policy extension - Initial support for the IETF Auto-Attach SPBM draft standard. This contains rudimentary support for the LLDP protocol as needed for Auto-Attach. - The default OpenFlow and OVSDB ports are now the IANA-assigned numbers. OpenFlow is 6653 and OVSDB is 6640. - Support for DPDK vHost. - Support for outer UDP checksums in Geneve and VXLAN. - The kernel vports with dependencies are no longer part of the overall openvswitch.ko but built and loaded automatically as individual kernel modules (vport-*.ko). - Support for STT tunneling. - Support to configure method (--syslog-method argument) that determines how daemons will talk with syslog. - Support for "ovs-appctl vlog/list-pattern" command that lets to query logging message format for each destination. - GRE64 and ipsec_gre64 tunnel protocol is deprecated and will be removed from OVS v2.5 release. * The openvswitch-testcontroller package is new. It reintroduces the simple OpenFlow controller that was packaged with Open vSwitch prior to version 2.1, at request of users who find it useful for testing basic OpenFlow setups. It is still not a necessary or desirable part of most Open vSwitch deployments. - Fixed: log-check-module-loop.patch to work with new version. - Removed: openvswitch-2.3.1.tar.gz - Added: openvswitch-2.4.0.tar.gz - Spec file work and cleanup.- Add calls to /sbin/ldconfig in %post and %postun - Fix typo in Url- new upstream version 2.3.1 - Compatibility with autoconf 2.63 (previously >=2.64) - ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because MD5 is no longer secure and some operating systems have started to disable it in OpenSSL. - Keep active bond slave selection across OVS restart. * v2.3.0 - 14 Aug 2014 - OpenFlow 1.1, 1.2, and 1.3 are now enabled by default in ovs-vswitchd. - Linux kernel datapath now has an exact match cache optimizing the flow matching process. - Datapath flows now have partially wildcarded tranport port field matches. This reduces userspace upcalls, but increases the number of different masks in the datapath. The kernel datapath exact match cache removes the overhead of matching the incoming packets with the larger number of masks, but when paired with an older kernel module, some workloads may perform worse with the new userspace. * v2.2.0 - Internal Release - Internal ports are no longer brought up by default, because it should be an administrator task to bring up devices as they are configured properly. - ovs-vsctl now reports when ovs-vswitchd fails to create a new port or bridge. - The "ovsdbmonitor" graphical tool has been removed, because it was poorly maintained and not widely used. - New "check-ryu" Makefile target for running Ryu tests for OpenFlow controllers against Open vSwitch. See INSTALL for details. - Added IPFIX support for SCTP flows and templates for ICMPv4/v6 flows. - Upon the receipt of a SIGHUP signal, ovs-vswitchd no longer reopens its log file (it will terminate instead). Please use 'ovs-appctl vlog/reopen' instead. - Support for Linux kernels up to 3.14. From Kernel 3.12 onwards OVS uses tunnel API for GRE and VXLAN. - Added experimental DPDK support. - Added support for custom vlog patterns in Python - removed datapath-Add-support-for-Linux-3.12.patch no more required - removed sle11-device-ops-backport.diff , not used before- fix rcX link/bin/sh/bin/sh/bin/sh/bin/shopenvswitch-commonopenvswitch-controlleropenvswitch-dpdkopenvswitch-dpdk-switchopenvswitch-switchh02-armsrv3 1710256725  !"#2.14.2-150400.24.23.12.14.2-150400.24.23.12.14.2-150400.24.23.12.14.22.14.22.14.22.14.22.14.22.7.02.7.02.7.02.7.02.7.0 openvswitchopenvswitch.conf.db.~lock~default.confsystem-id.confopenvswitchopenvswitch.useroptsovs-appctlovs-dockerovs-dpctlovs-dpctl-topovs-ofctlovs-parse-backtraceovs-vsctlovsdb-clientovsdb-toolopenvswitch.serviceovs-delete-transient-ports.serviceovs-vswitchd.serviceovsdb-server.serviceovs-bugtoolovs-vswitchdovsdb-serverrcopenvswitchrcovs-delete-transient-portsrcovs-vswitchdrcovsdb-serverovs-appctl-bashcomp.bashovs-vsctl-bashcomp.bashAUTHORS.rstCONTRIBUTING.rstNEWSREADME.rstsysconfig.openvswitchopenvswitchLICENSENOTICEovsdb-client.1.gzovsdb-server.1.gzovsdb-tool.1.gzovs-vswitchd.conf.db.5.gzovsdb-server.5.gzovsdb.5.gzovs-actions.7.gzovs-fields.7.gzovsdb-server.7.gzovsdb.7.gzovs-appctl.8.gzovs-bugtool.8.gzovs-ctl.8.gzovs-dpctl-top.8.gzovs-dpctl.8.gzovs-kmod-ctl.8.gzovs-ofctl.8.gzovs-parse-backtrace.8.gzovs-vsctl.8.gzovs-vswitchd.8.gzopenvswitchbugtool-pluginskernel-infoopenvswitch.xmlnetwork-statusopenvswitch.xmlsystem-configurationsystem-configuration.xmlopenvswitch.xmlsystem-logsopenvswitch.xmlscriptsovs-bugtool-daemons-verovs-bugtool-fdb-showovs-bugtool-get-dpdk-nic-numaovs-bugtool-get-port-statsovs-bugtool-ovs-appctl-dpifovs-bugtool-ovs-bridge-datapath-typeovs-bugtool-ovs-ofctl-loop-over-bridgesovs-bugtool-ovs-vswitchd-threads-affinityovs-bugtool-qos-configsovs-bugtool-tc-class-showovs-check-dead-ifsovs-ctlovs-kmod-ctlovs-libovs-savevswitch.ovsschemaopenvswitch/etc/logrotate.d//etc//etc/openvswitch//run//usr/bin//usr/lib/systemd/system//usr/sbin//usr/share/bash-completion/completions//usr/share/doc/packages/openvswitch//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/openvswitch//usr/share/man/man1//usr/share/man/man5//usr/share/man/man7//usr/share/man/man8//usr/share//usr/share/openvswitch//usr/share/openvswitch/bugtool-plugins//usr/share/openvswitch/bugtool-plugins/kernel-info//usr/share/openvswitch/bugtool-plugins/network-status//usr/share/openvswitch/bugtool-plugins/system-configuration//usr/share/openvswitch/bugtool-plugins/system-logs//usr/share/openvswitch/scripts//var/log/-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:32940/SUSE_SLE-15-SP4_Update/35c159eae922994aec18c3a4403dfc1b-openvswitch.SUSE_SLE-15-SP4_Updatedrpmxz5aarch64-suse-linux   ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.14.2-150400.24.23.1.aarch64/etc/openvswitch/.conf.db.~lock~' (No such file or directory)cannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.14.2-150400.24.23.1.aarch64/etc/openvswitch/system-id.conf' (No such file or directory)cannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.14.2-150400.24.23.1.aarch64/run/openvswitch.useropts' (No such file or directory)ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=1238e1f475f6297f9d266677b0b1898ab4837dad, for GNU/Linux 3.7.0, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=2446db2fd7baf3cc836eb31c20f8cfe98130b73a, for GNU/Linux 3.7.0, strippeda /usr/bin/python3 script, ASCII text executableELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b58fda56e8ae9da1702419b5b15fb382cb42831f, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=e8015a11b8b64ce133fe1eb500e2541001a22d55, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=ae5a833951d248fd90172cb8d92c9c07b39c6af3, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=719c5dbc12dd0ddeded0a0dd5f3974319e4ec448, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=75b722da2dfe21e46cd70d03d5be7c5cc13cf9b2, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=3b0331a0ea28d83906d503b62eec4788073ed31a, for GNU/Linux 3.7.0, strippedUTF-8 Unicode textHTML document, ASCII text (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, UTF-8 Unicode text (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)exported SGML document, ASCII textXML 1.0 document, ASCII textPOSIX shell script, ASCII text executable '12<FGHIJKLMNOPQRS   RRRRRR RRRRRRR RRRRRRRRRRR RRRRRRR RRRRRRRR RRRRRRRRRR RRRRRRRRRRR RRRRRRRRRR RRRRRRRRRRRRRR J} 8a0# Save the "enabled" state across the transition of ownership # of openvswitch.service from openvswitch-switch to # openvswitch. if [ -e /run/openvswitch-rpm-state-openvswitch ]; then rm -f /run/openvswitch-rpm-state-openvswitch systemctl enable openvswitch.service fi ovsdbdir_regex="^[[:space:]]*OVS_DBDIR[[:space:]]*=" ovsuserid_regex="^[[:space:]]*OVS_USER_ID[[:space:]]*=" ovsvar_valueregex="[^=]*=[[:space:]]*["'"'"']{0,1}([^"'"'"']*)["'"'"']{0,1}[[:space:]]*$" conf="/etc/sysconfig/openvswitch" ovsdbdir=$(grep -E "${ovsdbdir_regex}" "${conf}" | tail -1 | sed -E --posix 's|'"${ovsvar_valueregex}"'|\1|') ovsuserid=$(grep -E "${ovsuserid_regex}" "${conf}" | tail -1 | sed -E --posix 's|'"${ovsvar_valueregex}"'|\1|') # Default DB path changed from /etc/openvswitch to /var/lib/openvswitch. # But try to keep the old path for upgraded users already making use of it. if [ -z "$ovsdbdir" ]; then ovsdbpid=$(systemctl is-active --quiet ovsdb-server && systemctl show -p MainPID --value ovsdb-server || echo 0) if [ $ovsdbpid -gt 0 ] && [ -n "$(find /proc/$ovsdbpid/fd/ -type l -lname '/etc/openvswitch/conf.db')" ]; then # We have ovsdb-server pid from the unit file with DB open at the old path. ovsdbdir="/etc/openvswitch" sed -i -e '1{r /dev/stdin' -e 'N}' "/etc/sysconfig/openvswitch" << EOF # OVS_DBDIR was automatically inserted here on openvswitch package upgrade to # preserve the currently used /etc/openvswitch as the database directory. # Note that new installs use /var/lib/openvswitch as the default database # directory by omission. OVS_DBDIR="/etc/openvswitch" EOF fi fi # Default OVS user changed from root:root to openvswitch:openvswitch. # But try to keep root:root for upgraded users already making use of it. # Use .conf.db.~lock~ instead of conf.db as conf.db might have been moved # to a backup on a previous run attempt. if [ -z "$ovsuserid" -a -n "$ovsdbdir" -a -f "$ovsdbdir/.conf.db.~lock~" ]; then ovsuserid=$(stat -c "%U:%G" "$ovsdbdir/.conf.db.~lock~") if [ "$ovsuserid" = "root:root" ]; then sed -i -e '1{r /dev/stdin' -e 'N}' "/etc/sysconfig/openvswitch" << EOF # OVS_USER_ID was automatically inserted here on openvswitch package upgrade to # preserve the currently used root:root as the openvswitch running credentials. # Note that new installs use openvswitch:openvswitch as the default openvswitch # running credentials by omission. OVS_USER_ID="root:root" EOF fi fi/bin/shsystemdlogrotatesystemdutf-870ca17c1694f2d9d448ebaa3cc108ec9c1f7e75858b1c3d8e0f3bf3c889ce0e2?7zXZ !t/]"k%jq.S,4lނIr iUJ4ļjdž*&-k=0B KP"[?`޷Xuzϫ= Ǐ\+G?~Tk|xYc5ml5Mҡ8d@[] zVB>!enm!K!vKT6J /U]^Ȼ_euIay);dpɵ[D3$#ح&V[k}X.&Ud *3ubUr%oSBϣ uAi w :ܙc> +z}狘BB#w82 }L2)z:5&!|"0SSߍ,Lldhx渊+>~UeȑBL]PG&ܬYB A5t~>5Ez䜯&׺:aGef>Ĝҕ\^ !,f}_Uc^BB/KNDJQ wTsBq3NeTY5,T0_vAǫJvuIFv4 fMਨ<,Y$%%1ÖCs^;!bD~Zs$p-'TEnLWiNE`Kݻa1$c yrgjd~-IԤZ&pNz$M t]EC?ϐ 4HRg&(yȪBr\Jzv?1EfVlrI$Hdf($4K sL2Cy(wTqX͕j0eɻbt[" 97 ּt+Ŏm'YP㖱E8$At+"%i؎l&\>a7&N%Bz\^yKJ(fZ($TafJ0So-)ْܻ-I;նזb#mŁw:+,> _ sRL~tu)IjwGFveJ3q+xވ]lUȊGv#p2H[6Gk8 08"E)rs'\K,=`6I_RqΦ8j@1wih֯%IX0aV*|KdCL0zw,q۳<oޭcIY@<$ӵO17Z}ǷG ~ƌO3™hLK˰JJHScs涺*_1 E/L/ OawV?..Y!`L)`yT'o& u΁C~=\p sC4oqj~=Xm}yFcp =냸S>L앬W@ GB7  w1~镒xT̓xmޙZ!9*LƔW>M>N]5,`RdCPqU/skd쒉lIf6LmVbG& /${O?tuXr7Ԍ;=a|+Luk-SGczw"Tӥe\,( ELxXp4 X"[T9 ,m1Z,6\R#3k0 dҍڪ:~ߦU6%Ōx8A`kR*d+Ez+7NR8J<he!; $,C8y rAh *:[+-y4e?bD۷@{wè1B|H>`^ȼL\<'ɆMjgO}38GG@?yLCH7]̿ Q{3W"i[4/.׌/dޝYr^8f!s>ɶCގ 6A~CD ~y~F崚ʱ?IRQ棍eb`9F@%-[›%}Q8|Vm WA{ܷu&Մ dNm?on"j~*tez֟.% b2nuBtVOáɝkYxrcuNCú[/A.w~M q2H?M/q;vI[ *_ F#IxN={ ZvKAM+B3SI, pydpT:CU; bl.f4$@+"lC,-pAcܭ<:M[=xԝҗ/h`??TN76VwMr01n`f5)A?H)evH8 [|A }tkbXَYD[ARJs40G$ Yy~%A&yj(M\{mY'ؚj@/4#4Ly7aaQK&-4UM7|ўg7 ghyeq_nkxJ)569pY MG{\%L򵼱 K;a&/bDpi"Ad8z:YAEBOe-:W.k4Q)\Re '*Gf pp.#}Jo/XDC-Tlkԕ?7Z?d{9@ob='`sYҴrءk{8tj~P/@zӷ؞l۹:,5]nyh4RfG}8KȒޯe'aأֆX2a&>I43*캿 ; ;TIVxe^'ϬLυPzuߺٯ6aXxD"iܪ&rBܣo #E"$+0hӃ=UU "6C`w[J EQm HٞK$:!^X_eP4l@K kv)F­kHPq($>BPқdFC¢=W  6 u6kC=NJN҃^35!t6uc:K| ( pjgoerY-0SBK6++kdô .UK[n0?R ͸lGWG[:XѯLfu†Mޢ^_T? Rﻎ>{Xr0PvTY@0ltZ'(X,&|a`1 $fj-0/(@ ,Ÿ>*ZYbv.W]]P؏G qիnJwd_%eedol-1 A3g2]:̖',QűU&N,\4$1#j4@,=\Z(0eڼi<ΎL|Fۭ>EyCvelTHxШ~Ld*nJei6Qr;A2HE+[ǏT?qYV WWI+xPS#M'cC? 2_I?+M'j:i 0@/"LTƴ'Wކ mha6f[^)6i[ tFv/0ahx4$ǻ d$z`J_A7ŕu6!x%yF`|Bӷ4#*R!1u4"C#Iub%{V%]%Rjg67WApH{ˁ&`L'bNЍ~x+HSoU#w&E;:5aHġ]f- 㚪slY+E៛MO<>6R"BMaV*3hd˯VQ4e7ry(k:(cmffSe}qmNc#Bcy>yv:}@ZKX3,בI}t{N4Cev%,#)κ!YEo/a3ӄ \x:|nAxp< NHd'x"ߎB1_Kچ@|vȁ7-yCeqxm/|s$x7 W3}Y(OyXxR6>.G͈\K| nx*H۝$"5Pv|jF,<͌X`͵jV}؜ P5 3oݛ6D&^ )]Z_K*_W;-FƼ`+[ܱREN#AړԩYuH= v@&~q/><{%Cr}.B:})c`^]hytkҩ!}:|aV:є_=]dTLܲz Yms}jjZK' DI5TЩIP/F2 _K ^'AqPɜ5BYP Jip扟/ mXK}p\ op?"~#O ݳ^|Y lp*ةn0*@>m"f[uS Vu {>>&dڰ' ].bv9,=E8QCxK.X8_b*<^$+"j9U\{B^)L) z^8;Ȏ.gsah&i  T͐k]@ޅyŰrq+9ޥ:X#':&Q}<OA?_(}Z2hwmdߞXO; 0c;Bw'VͿdIu{q rkcp8 ȃHZEJBġ(_>bH6ٸ3=`EkLyɷqgXHCKKwa \'FJ` <ַfI{~Vj;TVUF{Ňޒ=f +2 [WwhelUXO?aab$_SL}!|o;51dQ䆿aX6Lq4~Q ݎh:-4I6&VmP7Mv_A!BO%, vˉX+/;ţ##=nD7%dk0crE20*1sxe*7\"G͌ZyB_T\UDӥ#*I_ʟ+xII[Qd\>Yy1eY3ϻv;b*^E}WIT.`^2>C$\ T`>n;eCAիַmiK*4#$PVDūD(y []dj(#O kbE@~iH%* `h3$h=bϐ8e/Nf2xwcK7 _r$3AQr YRm~=Ek> i iv@j&@^ z <,8nn%KDz پw",EJqI9#b"WAZJ9A'bI|(U^6Ie'I!#$ɛ|sS3ֳ#@ֳs4l Gq a/3;> I߉RGMIޟyi$G qS'"=E1'1LFӿB`k:uz7pf-M5;y'k7u!A%qXKCthptjʸoCi͹Gp<Mhd>sF.򣓘@5jfXiTE|lgJkQY,wH~5UI&=n7QhA}1&U[`ˣ L{ 4c_(>|Ő'H 1+__1cr])TK׻5r)\Q۰Nplm uK:|uK@GT-$O.ޝP0[₉TςlXTU}U x,}i+[8-mC%x31]P&i#.` N"K<'-@i%a Uw)u{9spA"ja~M-7ɌdMu1g%\Ws3PStjeX\56Y!Oպu֯jR[Z4,m>qk)| p"Z\>j:VjaRNS%yq )}kZ< ۀOD\hxowԻ5OөQ]hL4]IR>5Sf"X.yԡi?8P㭗ފh75Xsbf{6O1. +H?D%ˎl'S'YS&TΡ]S}^gajaxd:T]2kZ\bFs^0#0ؓMM*Q\R~`>q0L8<'X8[еEh dFnK4VG7ùL jIZ+*D|} 8mK ^-PkXOfL' b4q789=a%nA `h.PJ#3y/h5 UGySXL-, 0  Åj>v%D+R@:C!PNH8xWVAKkHIyu0ޚS|)kW )@xs&gcDD{ Q.90!Sr#\2{1 օ(Ζ*,7@ͧWٹ/܊'1Ai{.+n^h*[tyN\ u u.C^pOOtPR+~L>ȱ(D׮SK `m֩bit`{zչ㓢 WF j[` | &DGi5*p y7 M9&16B|&פc\t E!'56q+;@I <{S#AQL3̣@5C(sBndV "*b |"x;vg7$aW`5zT3?Z\+6>t]ijjLݙ]}ۣ,Fak|9cI&dڛkIsm27Bd2 hURWi& '7%Ց_ *_;+"+ ֻ9)Gm1)[=l-T jVG:Bz_rroyhF`ZGh_K E )fx3.oai*BBs^HoryV10Zi}U My?,I!tWqf9a\CV?<"/qv);Τ ZU9 a0 W&i{^2u<,3P'@-o:i>4Lxs$.xZH`TcGԉ6}o%P58^uf)kDk?1qFaQ^a@2ڝ˅lp+اunKHި=\AE7"7t.7{Y;xo#ez'ۉZm !9H.M9k(l[h UsVp/MCƭKlkg`eƋ B۞+|'bZ(FpKL7$*WLoigKW nMiEnU-ru-$K bDĶ#4Zh 6F<\2h[/ ptWQu75+JU]=cCD/I #29[C$բo22$U$dm>h94i# fBCa`/ރ~4ynRdPXˠsm]p7-=SBPwvُE*Ody'˲ėGeLM$Ŝ k$5lwO]u F`Un{˥.eJ25}M I/n<\$kb,Wܩw7޺S#1ث>,<*&-$ITte|BjCh~fԍ%lOd:Y^NքTJ^<"*PY@!tXXg<md7]ڭra1.$k3ʗGR)㫉G B\Zvr|OV<:Bo&ڰL &HYދA8nC5͟H 6++-,=F|?.(޵.g\'H˿yY{:熁eZpOL}/;/w #F7r-pR 4MIOVS۽*kK379 ܯ? ؁̴_yܴQ4x!!3*](O1EՄ:oUdBEiL-nkRBHN$c@9gnruN?^3XA9n2{,{4tqX`#gS?tnۋ8^_0jP`yta-|a!;(emϘ:(uSOLs  4/z>i-mWׁH,XݜI@,Y yVINE >NQʭX(qw7TeDPzy;+kU .o)4#~ ,_bwtWe]\@GdJ>jHfsI7F\Sa 4:)LkG՜Wjԝޣ.*a ZODzݧ.YcZLAcBBD,"0n 1Mv*@ԓ{0c=aܻ\ko1%ћٔWNg,驘-te2Lr&[S(/8*dͯ=5Q?x tg· u+@@FkvMnU LJ'~zFj3GhU"xDzCn㡶\ |b3_XT^+lWyhֳc]vǟX9hxEאA+`pavT5\mb|lA#LABmؘ IIB'jKj+&@Hr@x t_q!h*>~jZaL2d7{oqmٿmȁ/fXGzCR^+a} SG}$VA^ *٪bjLI@-uϥ L]4>hdlM[0C\@hcUZ8В ) @6fU5˜JF$)&E(0'\.x3}h@)¾WzgP]7nwVڻ7bi;t޻xṊBPv7ǺyD/,Ntsдv5,N- رT_tjDb:Bd*α" ~Xc f[}/kW[oH5'Yn2e,>19dиv%9oP2-l#^j{;`1=u+cf# ZPU$T7UZlU5_/$X:y =&srhK!{ԡG=[ŘD@O%HJ&T -YṊٜjRV6h|sB(_t*T_`q֟0Vq?ܖ \ݤK`BRVL_Ҥ.tP)>M/L2_Tp՟1,?jFN>,Pfl<C2DzuWZ^yGw],h.a1mȳ)7c J} g6~Sp"9/ #Bbld,;A+}C&^-f’ur\eQJۉh[uea!nQ 諓)6OOZjĈ\s8&L%|iw@c¢ =efv }.l!qeEѳq‡ōٞ=b*$^^-4zU59K0'Y;|4LKݴlS*le8Qe}:T+␙f:|{eʾL~ƨ"lql /f3̃83#ft=b -x@n7{v\SfgNᔢ8| -t8鋯yuQ gX?rGC4wD v)~*-B3ol+X?}K7R#W{J:Keoo"5!qkY3l/S,ĨŐlR^$0CJ!|fZl]Q*==pmIk״|Tu L 9l`= qp-6b+F0Ÿ)v nNDFhQC Vz7Uht#Y)HTL&^Q KHKa4Qӫmvvѻ)ؾ:@Yn xD__I)e:y/f(7"M7[?aULdU/kXȲWeP*{0B 2a]auITiwZ^SΒ Fg98$O"+[g;D DM=Xz7-2;CkqFԵ)@>ZDV:T΋+0*X5,xykq| C>_PFIRJ2{5plF QQˠ Uk0菛ɕoZt8vU+PN(m8,_2L /^x$'F튼 Tm`I>.YOQX½I\OE?T sGVܗJ /f-{;}u>*h Yd"S1J%A|Kk8N sskE# $iA@1 [Lq*=ӏu\B?==OR1jZ3+c0._)M\S }, Zt0)/ÉYBT"3a=t'N5ߣqџFfWT5ҳH`nH]R6 n9 &bh$# w7;qM ȳ yhKS`?ej>Cy)$Du*oK]AdB+@P͓v_]MN ))cbPGir5t bC7 J{sMx//)_p#Tḿ6koѴQؖާ-hQQ~z`=*o$rvR\y.p A#j xa1$SV2/>a#+ YF"tSaa"(\J&=#TkHDͱs,nl Y*ħ1pB!ɗI hβ7B%nRH&aވ>qm 4}Z[Ȧ㢘6^f Bosk\._ j*Z|Ctӎy[o{RhH>FXH7)~0n2ɳx͌HCvSZ) v/w^&Tz b:joTUg[V8ѿ~ 1h†ӱZԸ}~{ &>@ PyC!6%Q=OIY|J̮!Xat_/jUCWW MEΌͮe &혀I 9_w˔ki ȝ/}٩0,wR`swG2x9w*\NyK7r.4뛙 nI3'VxɫL_.7\@^ȍ W+표W*na1dqV[V%d- 1&*fuIK;z|޷' #3'EUCDCʱՂ.{/&ǀ@ùCeAV4d֧)d+WMocȗ*$AsE:aX;G+} {xY+e&IPy2E JTX+(ЃGW7u>L\ {#m}.0DBagHUsÿT'?o6+Y՚3? ߘՂVcFZ;k:0A;!L!: ORF @cs";@%f39J0W2:$O9j, >G̑ySsex$LީrìםBզ"*fe53Bm*Yd@jj[93d#a{w~;()Mf8M鹧ʀ ?<[^lVb&x<>͖χz[$Z G 2'\鋤 ߐQB_CmW+ޑÀ)N-;9l:U b5Pln ͪSn(#[dCYCuWYKxaj^1Q^QJ a<ѧNJ0^+Gup m[6oUce*dƃ|u};g DBhdFd|ҕ0$է.کB20B<\?xw΋ZlzL@HJvh*H _=UF~f={H, KY tTw]Nd#AlR؏~fzjHQZΔ m0X9 x0ʻs&yHLT"MY?4ɽdYCqƟ :7_bqk62@_^1Ń&s2q<yFK Dg|eӪL~6S&:&3c5O6y):r@f\k@"Cy# Z8G^ m@@/;Gͼ}"boLm@lyuЁ9mq6d7YD\Md&dnp8 g՝O/KX.%+ #Ɔ . `E3V}?%",1##!! ̠I&l\))6&^go?qE)qƟP:YesмhwYUTLS%MuB_Gx qFŧUN\ۭـdrK4f5*c6c75,Y}nV}||C@`/Q~E>TW=C@ D}޷XB[uCiCje mn+}-ǹ#ϱ@-VtoZ1/2!__ |T+4Ϲv!bY(:p4&hmrm;PEJ%7CAeq`4Rtf~“.;s >9r|Xጘ˅Jg!gM>z1<t(ou ɳ`F 9Y~LQ!m}/6HǜFpj X*#Iv:4 92r%,"dyR,o+sz|G~0a0Z[R`ngO"Z㈁<XL{鎈r׍܆ZlY6+OMSO997HtCp ?/^w[m$/HIb*@!6-P̶ g,!:yi1 z] |yS*EuB8~r PYo$C TS1?hQR%Nks{ay=%UO`ڌx%6U+Ifγ@W!ā ~PŚy.M^:6鲥j}6i$r[WI(ubKDųr*(_vTŘWQPFھQ\ػZ,K}3<̅-i!% 9TAW|w1`ƒs V}+>Zޖ"͒,3afNe=n0P“E[/?}Y,ѩ/ß@E*z\~w$Zm+.p2b; "~dhƦ)F8o{(B7$ Ħ D1oņ1=.5MbLx20]"H(AVlJr?Ö\PZA}5s)FY:ߨ ]%c؃ trTj~T~O| IhbeVۓ$nmcd=;]w)h䲈BJ 7Vxm{l3+Ft * ;軡fgn r37&4͓-1*)vdn$LtCvA` Hk/^U Ds$o.$T+3̃˕ɦѣGzQ=!s2A+%&諮wڌ1/% `jZ} UkځHݺ4pˀBwDy/&ڮ3Qw \kpQ[*hC{=v@8Rv&6n4GT t lv+AJM"xKÜ*M1ҀP2 xֈJh4sCZUȒaz5f$=}W]Bsn+GMaG9uS#nn638o +b̃kQ) YYWT+Xhs0%HRY`Y;lRxuB*{"r9 eaѩ~} T(3O<եOZp9~¬>ɓXj VG~K GS⿟&xV&=#WI7kv,V_|bnz,, ~^]ЋdU Ot։6wȭgŮe!6{Sy Ɣp,e^\?l 8D+a5t5Ғmv#Wo?f[@^,3MY!矈#vFI= \f-`s[c{$G72< = _u+5R BROCV7?+XA[zle V$fWC^Q&yMZ`C(SӀ&,zuz/KQj *]cn#sDe12?#bs4)%n7 '=?~q酻f?Dݫkr< ّxҼZJ ކiqy垁̼9$H׌JQ\:scxP ]gHGC׮*7p8C.t|5kW¾>Rʮ,zjFl7QTC 9]^`]-c~I =z2}׸r(, )va %Vi P ~P8ed^M ǨU;Ygf_J(C{D6Զ;-6&#&t/- x$:|*8P<~'w$҃.z^YįFϨLZҳIXGNk}`Cni7 풧GĐ6Cv(t0i%Lª.MsT{:]a.0|+AMl}cfEVbTGZn`<#ipe`qݕ=K%<_E}݌<<3QG~mRޜL][= k+jTϡ/n߻|G( CQEtܬ&uQXZma+K{Ӛ'Rڮ ]ٙXܴ闺-]юPuofedĝwjFz.qdh P/C.|4D>aEѱlM3 bpXR[Hq;qm VS;Q%9S Cϲ^JjZ߽"Kj#Wc81\}_5[z%Y!}'PT3ۉ~YDv4}a̞/׮Uqpzk2VHS酪Jucw QL.0AةQ% uECVNb!%>=_PizPդ}x!fOT]Z zL[@kSS-ی[Y|tZ%_|RRYapǯ].#;cT|KEFl\%¨G#~gBȵuPʎD:cOf 8ob%87Za&VKOkW  ]#*\Xvq9O|k5Z_C*0kKBd\ #|oxf֢rdrzD4߬CGL YuGF,&1쐸"0V_m;Ly4 yQ_;R&8IV5=ǃ,ν i951cD@K箩k T9eLMq2-&DC zG:Jspi/kNn'eL?KEַ*y̖_J:*`.4ēFQ'"܄鰥`<> ]I`"/Sq_,PeI>Pb)\<"塬]l]R+<= k8? PHzvJFyv!)`aҌoJ dW6?fgIdmHEĤƲ Zhz72(`:"4*AktGKɵ*Rn"{\ܛҦ(\ !: 7i]M'ڮyVjKqBN:q*mIˆB2zZ?ıM^"\Pto)cVd wJ4U_X #8is9<vvɲx`r͟}юcM)+kOmfIT26 d!_s 5Bt{ZX@ UQ8e־m%Y,ZAKŞs$W}nuKc/]p Q5Y#T5GA @ vZ LL]PI_][M G&_amJ]6Pv֮l^w43uAhѤɭ(=OTD{c&0aɕ`|:۞ 7ȉٟ DmHEJgɌFb&b$/t:ZNap]L-+*D wdDˇn ѣK>82UY r ـ o<欵nq/iS \7 h3ny,7}M`)Ǽ8@rv;V-'> 9OU'B*w}-9Ѣ k*^+"]#^%WNe}i*,?i^&0>3m2Jcn!E(HR{I X6\~9\'Sbbw6#7œ`8T9,(q*x0NޜqI:bLxd *n <|+ ;ZiRO_0p>D+ܓb҂T6d SY5B\3yAK.:-EKnUױ[y! qM7t<auEzYT9mxy+nJk'##?F9UCSݺҔ1vP~?37T%nvRv !窖JF/<=ͭ[±.aCNR&3<[F[{Pyyԁp3^/{Lo,h/S_F74|_k҂VH6 Z-`^w$avܗ8&tVN AQL5P>7of|QXtk2tH@ܩq5Cl$~Gl<@ B3zwwEqD`H:kmsTgI:!=ݒ Qk%G5 we%'*vqga'^wcI62]@WlE ջ֌V+(@;$=Anbaұ#[:g^n]r51QoKϑ 3ȸD'9sKso@f2}WsEP}isEkmsXCd).  FiЭ8psX1가29}e$A#-{NTv aEfнy 1"f@'ǁ9'aݣ!S&zJ߬k|v{+FVљ>y&F`V^$o6FjφޘWA~mP%%Zgoa{7>@l࿒尿_j.g[kNk bpl0" ddo(a1qPx-* >Q/h63 ;$D 9/aԻ=sF& 8/sV]-ν=?'(VwM|$8l7e NËu[р-͸ Ԧ]UqSK(_T%ၺmbz j0ޚ⪈Ę}G]7;~Ʈh#Ǡww+o8=Bb"ѫQe<D3>W;F„ӭStU1YӃò#YZS{̐hfIb1\\g #qӁAnQݵ1K)¿/ηC)wiJsqXBQY#nE$>K/ցqWݭ+fYQ"?r05B6\ta/J[>4 rpy6i Tg)p!ХLhPZ#;iVDX28%aG5)Lp-8jXI gص jPȒ 7Izl"LhYn[R"/Ae7xMb*=#p!P)d&^4K&vm4VLJ$c yb -UW !Y_MfR^Jo}]9<֒]4]sMȽKLy2$c&4Do &pWو;<3IM>5] tCpʧ Su}!Lm஁ƴs+CD1mX^OUKn4x -lli f& O!Kh"k'%(nqDv LvɵLMD}}Tj/ee-e@̛\VhM2NR(zI\uQL k#7`GKyCW=1-H&#٩tC:!nD IUÇ(ݡ&{(t>ŷɑS& u!!zT}|f_ qf8.8ŷ~s5EۤAdh 9Zwb? G`$B-o%cJv ocsM *Z Wls@Pq5'nV7}L־K<"Չ&"Ɗ{ 5T*QclHʤiyCk4XE^JhakiA$fIn| ΀'ʓN ~dnaUoMhg%$\Rv65"5E?Ww}.(_ߪ^Qoݲ;"E! ƴQ ٙ؋"sޕEcPvflQ8L&I~AG!_"*`|\ӥ>XmoAIV6)  >^~c ٳLHmЃ?38`,QnCqU>vjd?@A,{' eY .. 43Jd+ )+ic\9l seiJ/ rW&>S^0SPpH%),w/U`L[#ן=g,L6=ky;[Y25hcxQ\?G>W5 BACCdLm$cqK <Ǖc 7U@KQC=\m)BfG_SQI-M):x+= ig._Z* t0E_"z:z+8'XctM=%؟zxLWh^] 2Ş] BT,|8t޷}X_u(~CYf e"%|8?t TJ+zd;5l[5zF0!-u5*tLr}̴ K|c~^БNCfs.%кx*Kc^*x?#Ҵ_B$yӔdE=DYWc'TŢ9=7:Oٍܙg!WhzV-үcaԍ5̗#nxs0XqJ% B‡Lݘ5$qbK8ll, no6GnS!'oԡǛ}U bxNncrxN'?0S&BDz%Hl}  J+Y19엳hetT8Q!n >vH:$A8-RHƢ{*jutwTBꨶnE?c`rIX] ]lEݼЇf(2 'lPvS&6 NL=1$]?G<_ʋjo։$ǻfP!7#[?)K`!KN'x9C*/y1IS$õOC `~N^SX1:2<"㐢DPj%CⷖMjqn,iYZbW'm*wCŎT8~fzf5,`i!) %f,).lFd8EorS~+H,j]b"RbNf X/`O{dJxU[\86f:D`h99 aҞ\EwtiHu+Aiepouw6uhӧҟ'z|*u}GsK #+7|%E>xnjPZ6KG׀*Dr>m}l 6¶?H>IF[g[R8ux}j *}r8S4:e`Njרe-3yՌdRGl*[k#\4;C g_7n&i,Usq7J #ZkI%}X,A}Lv2 +>u,Lb ޻|P~P2a/#GzMڭgzQ-ێ*MLX|mYֵ;NJ_zA*CDPrmB t<ޭ7D &y2&7qMLcij"4tNgum ǹy~ymwE!ܶ0"H:$WH,bv5%R,H3>$sZ}'v=O2C96a-spɽ+3ת_w$tQnK ~*o/D? ׋nI㽰&XH8Ó&N4W˛ S6FG7vR:ѡH1qs˙ #F?zN86|M?FIV_? ڇ% \!9[ 3i8/`E5n(4plO} xm]Rb: ݰ.+ݥmm|kI97U(S杯Ҕ~>=(fȗ@x5qқ%N[.jm|0)TM=E Rz/Yڝp1J8+q8Y?^Q=Rޕ^sb>B4m 1. ӞGu}0 -DʅdO9/z4% 4y ]Fx)\UM<4UE;ījUp3-(@nVbkDmG#ǂN꣦Vb$Y`y5T:&$%MTl/P;:bh7fIǏЗ$n̫bm€o];g^NX[lfњ<֩QhBms#;9uZR>v(RZ/K&/{}2"fxAM? bI/Fv_XjҏNo ٮT,#Rr&hF68Vk OɚLjGaɂ/hd.¬Y1 A`1'OhB37ۗ-dir+o0]"By𽲖+ьֵ//euu9AZ!nؘ{ '=FΰtaNühKS0P&@6MRj=:ꃬuKyø`GAP ʟOm =}L7FnHx&]ˍ-} ;iUx!G#VcyZ+6`(KZv=`UJSI]lk挸ATut5RxaU YZ`ީ9b; Н43ul,j \ɻ0_x]HE$|]AkKt7)9[#Cb<.lbnVA`'|t#.:ה'K(So)=4ǽGvr :~N*c-|FoRuvD)8 !M{^ջ % Vӏ<Ԏ8@Xl `j`y&_$4ߩ351j\2."> ̏S쳞\}TR ͋8g3ꎯA`dRsoFс,v @fj Ý>J hYP c,@Lbz6ŝ*Wvmg~fQFjԱ^l쟙3A#JYM JiXM-hE*Y'J;Ĩ y6{Fy_ڴ_qvn8N^kZ8oBِRG6TT[: IO@>[ȪfTNpۓw-2ަ쌨c&h8"T6u¾Ԏ(ȣV|He^-*isN0qL-V}1@k:ԙg,.W'{r2BTuQ+ZOecE2i$ f_f$#ѧC/~ I:0]CG&m ࢜<UuHWEʒ?AAYMsUdCSF$UI`Pa[F7gVԇ  >YȮ4oPVqث VP Yn>!5H[4lY~m r 3;'\&/S$$L6g1~ XW}:O+5 [Y;本QQ2T\&a ݦ'}g ֫&thm(Zh ;mu2ICmBPfa/!鷁P)aⅅE-GSBӗ"LΝGLi8QjnП5A&!3 RdGDjΫtWp,'6^Zr@Yf0b…L?bO+yI !5!A/˗` J4iihZGiB3b뒟*a/K]#Vyu]z6; H6Ds*my! ,$[Z\\^C-X !nFzd 4i)RKUٯ2qۥ|65EHTc1{b<49j9r.њFA;-nizMkL¶邳:YpVn$5\nSo|;i`C# XRVm5KdFx ޣ>ΫUti<ԂC,碌R~WydL[ϥBw=P[Tʫ{ 7E7ZDpF-N]Lzˢ=³ w+4 S5~gMR,HGB,c:Qd Ǝ_5ycȤj#@Tpz%✧eޙ12iL 1ƭa`6%Qxoj57sReyA\ ̡i*Ś6ılHV~J0ɾ}̹\L\D`PZ) (l|:7:9+P9P}ܛ܇?EXbZw3 Ub ӱȍXU@Z!)sƈ\^^O}Ъ qw(ƎI4JÚ D@8C%b]JQ$;\b^␀k3}M=R"H0'_= A?HTDbi_MX@b |լyZDຓ w>(jv}|td64'`αTU]SX$'0A` r[;x+(lϖji}7FwE>Κ$afDKk}ق :m"v*5ե/([f]^TPj DRI)(8$t ҿK@ְFK)Ev:ͅ2CP=zFvy9ޝ`8`nFP "S <17~ %m D}rb^5Lߡpmm0C~v2j 6k^px.6#:O>=-^*(OU| N` p{\9=HgČ9-1ɺ,&c~gk,=*L7{PXq^uN#> MڼǶcr B&mz`AGܮƯ"b%bEY)ԡ2~X?\$LDZ#rpԚ13 {+  zt_|LX8I%pqC'%9s|bP `@5n*sܺ-12n7r#cRkH8yL+05i6mo[ aĈq}1&<-qg 阸i]$BfZ6 ;H+G4mWh[t6 zRIiPuNH-6EŅtc$]##, \*Ϣn!j!uDI`q]'NPG=@|>]·at YeiO_=TrNzwf$RuboX#pQn&fe Rw`/bNİ= 'ue?g&jz"k-jls$ܹ̓q46Zunc$V.N3R t)BzA!rB@m4Nlю5ɠNs8eE@{v(`7 UTȀT x @[C&2q<~m<$ٞ_ixo-UIԬf8M$,| >i .$-*AT '-"F(f/̍A8{"l;[_|)!"hEC* L R )6S4DT!B%ŝ?ʦ(2/)%T}+`Q:SǀxkD,!_zq7ѫϸ'=Tyç/. h oVUK?o\<mWnƔt]ijwOc0'\j<"LdSWmi ̘E-7Η3>֩eJ86'A|:==XsxuHX oTCcs;`v+ڨ*zbT@SH*[Iv͟)_ҕwc>̵S,L wVƽ> i o9:8]Jq^U4inxع;f/r=*f߹""{ΈsSzӷVA""DALpR.xu m+5s!IyS 딹I$+ %^@l[~r? ~d4/3#_ zv"LKr6d皲|<'"J`?0ʾ%$+E߾Bhˉ'zBe#apM;tA)8Z<\;&sv)@]'\Ÿ?/=Wpn]sG_S$~X,@K==Mr~4`Qv@b%:8 JdS%Og^ˤ 4ǣ:%9:9Z1D5%t1&}L EkeFkjO[QrVMattrzqw7zno'78~NTA bW"}d7!Gs #]2iwR,H@X[쩨j"GgMsg5cJA?9cAgZu[ꤚ^rCn`ki i$2m~UN޻.׷ J^ndM6 i^J}ާZAޖP2ZMNs *Z>m^x \gPkrKI0{s/{~.ܡAvsQg"~kHWD)AV+ZTa fyEa{mv~͑/C Y &hWvDQ䣈$.԰hױrг U)iq)>OizO=%L,sO_n$v'ut-ѵwC`zkJ7@\]˧[}s֮ˎ':kVe}OD"hI/<t; ONS2EE9F6//|=: ف&a%>{$ )pij{+n4hssbBzUOp5p5DU[!%ek>zg E#f^UL,ٜ!P&l|RfBS(=sJ@RR}{G\=/|>)M!L͗JU;տEQ| jɅkx>bԻӑL004gHP 6MH@%UDsDw0>xI{(_/sEVikG"W=zeĠ}?ǖ>>S_|Ki6rT.L!|r[bG,`Xd2Q=4t޸puV0IfU!'FsoM|aC6Xf#<\1v(#Apw{2( =>- ^5O׹N {b'0vC]AJPv7(SB[h ux\Ҳ Jn a>vگ8-u(O(I.*r($CUN&9ZPnP.@kDU]٦dyDPftih.zrPDֺ>kDF&åS@_ G.ZJ45mlż)Ij~`CMd> }(wY~` ?G( )UHg \ ;bs̾p[_,i+ cI1 gn 4({SJIvh.,8jr@F[o|5k[RqQ~8}P+~xNƒNH4(s|҉Dq]c=аCA,{Y6;itIQl x߹1de? K5dpG<3[b 3wz|tL,M!&d*֫ىWn8+[' OJШC\>+ țluWC`&JF SS$틖6\{m0g|H_׷0,ceLC@ҿ^/~&sHr7;F@"yD7Sc(ÖSسM '2|-vik,hP5 B2ew]ui j=5Dc29_0 6aVi xZ#(M_/p@r$Kn57&00vXʬG)p~6%W:K7Br2OǀjW 9ƋslcF Lo8wAZSX@aї詊N㻄d'h@ٵ)aM a\į>M9F'pۦyS;{B|WɛEi8%cLj9b:;ej8zaEFTxVr v0B`}"E]jm"88?5V`Rxpv .Z*hJ{YA=u'\/4]ة{ Ν/%Hd-szg ʽ?QJ?v\# v < 5mU\+y(e ߡZ[jfv\kSf[cIxbӘzxbMBş)4C;V{r75qRnf&lĚp_Bvum/C̋olXF+%DtMFGP=HE*& wZzɏoH!k.7g1VYkf;0T`JC}zqPP(I&f# #K3JZ{ct-Il\H[  j5h!#y<ʋ}h(E`Fѵ^TQ^>vj(kUҌ"~֑(9 ^>E@K}BFAT)#J?bWmn*L[Af'6iqt5fnbI2u/sB9} ?kEU7^Wny-NSϤ  81Oשe'O^9˰CrCӸxXCS>F>i]mY(3Ic9=]!Az%3÷N7aS ǯ\e:%/x}# ~ 1'!x6? GuLm7y$m GR/l=$+ >r߰C*g+w |LerRp"p8#vlN2 ۶\ kY:@- %Ffnٵ /,{R_2Q6_#Ow<(갫=ND!aCO+`%л|+ ,Tsb4Sӯ1=;ްWn]7S?5|m'\@; V,UoL-"jMX<$hVmzڏC=\qy}a.4xzc{w=pSZel{LKI:Y{5cܔ!=8(AI{{q?A|ziL=Akw䖉Vz[ X`|i8ט٫w njbש7 NA*:;\Gm3NuD0A7|"pD|ЗY*=\W$ 'E^ɢn"3;5*<@Cem;`%j)=%5rTI?r{_3Xʄ8«BHN;&j5l9֌v5_U)aOEN/K4nWwJL 6d'BȎ=C.cn aq`#Lo5RB@6<*;UYy} r<(ťްPZ$Oi!-j),|M|B,ׯ=c&X ;Fڧ 2ZB6 0G|%:U ߫D=JRd=h9W˱Ǭ8 }6׈c 5qOo=wL'AA-ל+{_ T.[1Ɲ65dR,Ku)^^u_@chSM}jY]-`e!׬/YrN !fԡU$'0ht3<RlP6^STqT:h5¥F(^7O2qWۃ(`9lqAp[&7hn%D,X̮i꤇#V4w5,?7}\)~hS_)'9XVe*a»8LD61 :Uʽ-\x3D/i|4.\%[bT'4,B:,U8_xc&j鐅QB%UjKZ'Ϣ9 (@HrWǝ*8@1#Oi=z K(VfA>EJ& [X$S6 / ,Q6lV_Q.F2C Ȅz8P_?Vq2[F :2rZ‘iO7pi`$)=it0dmU[ЂLTDgA%!fR9;b~ }\/q޹B'> yËN$j]`,2ܺa:AdM,m V Eplx7pQK%<6nQf^=*r]ǬMI$IVu݉mFn7jczI,0^E>>tB S0y!jj!ؠ&/b jRr垝EeXQnt 5 &k0ֲ'!gL`KL AK2.G$`fD0-za!JS4@SD_s\H2:2Aìuͮ+S#Q(F *jjL j  tTמCGs̙Z5drּ);_yPtG@Bﶉ~&Buaº@kҲ~D:C˽ ||{K rO(B%Iz IlTEn6Qu$!T3Fɺw or-z:H򀒴4A0'2xN9P+1"u,R3=;vڬ-- kgQd}Z͕M>eNN'Jx'HJ' !ZaV^!iTHEv);mm!mN5&@aNمJW˸#*3$Hw!|٥\IND2Q^V܅Ui4ʃ1DD6 Y} %pv4\B ڗFz:YC (q^xb`Ïa~)R1rw֬ ub wI&cLVnJYlgGcg0ǻ2MMY{"`&Y!z#4*g@Оz '~=jJTӃXTZkH}VP^Иao;4|=4ݑ~F{%-iVV^Xmw6**x戥a-B`(+!_I F^;s75hv'M" (˚Iao$XR,#7ʘx,/(-QA|#rn{]NARP.ޱMaƽAR \jh#-'fo$+$r!U}!(,hJ ܨDwяh< E0E8z<8,i5AzhM5vmf1uhq)QT] ˀOSgTn#jS+hi{Sd:pa "\&$@43$7r00cScjLh0H׳Ζ&i*sɱ|՗ձ6m3&~<ԬR S늂:)C_ެTi2 >]$5T:2\Ժ 9.IeJ蟩Vqǡ/m֞<-?'q\HO/υ.>e dy\S ԙCjNQwxrH`٦!o?Hn*nfc[&o^mJ )V7ܛ'ZEw,]N.J:2Qt@wep|x(Pv\mX}\4!3ͅN+.I,v&[kZ L%K#oo'@2S{^$j|FWYkݺA܇'o7Udntbmu]HMAA`=(>`;G1 A؃_*lHtio=J(&2EeWVI'jA!p CsĞ!}~1 *a'{L ;0E+ g6"},?LN[+KDP!7G( Zӝtrb7SYN ^Qmd+#uQaUtZߌ%u/a ly2һ۪tR{8;8 tcsX&㕼ݚNpi?7|0rqpT߹҈;!߆L[ 6q?R S8j v ^ߐ/"n9u>뾋 D3*q~]/)1h KG4dĮÑdyb=/?dkfp@MRK0,js YU]&w7 ,[ZoVUrN/'R\ "!I= S3#;wx%kk\2vjKQ +gama0y;2iGoI󡜨v[ވgMzozTyTMCIOM{idQt9!b=@'FE aiJcNTI0yXqdao02xsg_76B͜7}oQS`oG_pm뢧zѻ&ϖt~ɵL9vcļN4G>_"P>rz3fQ&Eă)ܤX`p̮BAxv,NnrfК * ΂קDs '{o篥<[3Um^9УHU48@=6_X|%Q\&A 򡁘'[}1‰mc-x042-}0M#];Ɠ tsbPea~`> YziϥTs{ͮKNE҇{3I%]I hD2)ӕl& ]9 E@aBdKe%pB\ lA"5~_UFaL] GDH83M6z6E@BErڗ?h:ih%Etq~yv!$"eO+@iS d2w5xw<@5Uk׆VoߒW EG:;ebk8 f`@A CQA$ZDVL*wi%zRJǶVzYtg0aŭq,EC<7S1Z"ѝ eЈoUgz%1W pz1Yw>6Yg:}FL#"ou=/Jwvw7*k\וRq)lu##X猰ve8nSV}K3p&[JG}f7:Gt1Zkv9AQտ'QLQk-\ƦFR0$[G]~5FaqGvӵ-:tV!~l2`]L=ƤI=*sw B`,t+*zuNwz V"Ɣh ^Z/~DȾ6nfC"*?edf! 2B4|Q5 oml`u<_<4Vvh^JSɲV4j_춃$T7mZK{hp &0e1{)Ek:ΣC۩R$XR'l9ٱoX\n^} LɄ^oE^ZW4[J\R|^0DnEk3ėLX.sODsJ!Ww)̸HBd wL')#|Ĺr 8dY 6慺yx}[9;,UY<&b6팫Qx+b~f ]K&<}ptS]eˆ?@{њM/ 3N;{yW tQQ﹐nj P4WN $@O"PJiG*bƅ/Sfѕ'\Y`)^)9_yoσ1sisU9"Vht9;N1C`۪1fYKږh=Qmw"D QhcU<٩skHKp&OhՀV5CdoT\n̼0!?c!O&whjԐ!9<E`C')EgC?=ey/6Ѝ]N^4"j^fvviFlԇt~XqWMx ο@"D&ڭbE3'dz /?8^MsǗT g|̰gK"Մ-KWr'("CRiͮ Wbr܆V`ET_(Rf#k@Em1/'kad)A]X2G蓿:փtf@Wl.[I·7z(J 5Ii(DsՋ/dԓ0ʎ NZ{՟I>'pD`yx%,(@Fp()v8N-z=#O_$u:':ź * &7d#UCh7aݖn3Q30I{2U7CU2]=[۹VR8ބ /[QN܇$Dס*3LJxh6;U4s[~`:6:jKQOu P;7{[FwdוQ!NSKkoWwuQ)Vȸ\XHZfٗbkA0~[M@$ aR I߮]Gc+5&mIFPeN8&\*BX}[_ޓI>/n&&Rp&삤oxc%JxEB#E酲R_<t]w VzżJEE[]em#4ͥ;g|hȈڴP\%v/Js G $.ljNDWYֿGq˅PRxO WIvJEt^>5r*K3\`DiT14 ; :n#?&MՕ>[H2 L#a;J\{( Q!M 扠;ŋ-L|KkZ+աJVaʠ1Ѻ0J̆JT@ hO}Yz**flgJ:ӲM|ą[k˕.7ҝ> Oږ(fq؋7[3A5 8:,{ZCx]&eAOSFGcx 0zR=xx#6͡؛6Fu:4{1Т]k^Pqb>-Tٻz8إY<2dzS 1! O_)6NjE,>, +.̧z4Ipp'Gza%ɑ NP]Y'CTX b}(ח>Iw9y.YS2?r+<!^b] ,oO@m=!u7xYFWuD%vWYE~h4%5?0EKF`u9*FV1Cbٴ]tI^ l7_vV%MbAS2{Ɍ$Wφ`$LfUөD|k-L3Q:oGw%E4?SXx llc=')1"`pkO(\[nNyYuX \>E}]p*ފ+F{T}hDm-S))0ǒ [T9i!k;9)=ޒƽ?O^Ac7 KmJAH%R\^ .9u[͚tq5m%^@3fbDj)O,na/X5#˂X"y "D>v+Wn*GO4\dc>WƊ+c@Ͷ0Ro ^|mSvӪ$& !ț9 q?3pRPѧCtsUO.1Sʶ’ВXKaGGՂ&tɊ/}uY>Ř}Nm|)ϻVmCd]zhͯpR//gD(It"bi Y~m!so %j-Ҹ-Й}pĔAmőBXV&u(XFᜱ`}{#;jFg𭤷]=F҄8YG8C0{;BB>tdH$Jge1fZqfM eMVyZyJa%p`.z!lP0(h)J/z \`qL8⓳oHUI4{A[]H?8qY- گ:oj";𞠊:yy;l0BN>I8j*ѷN [smY(̺pvފU01ȴ^vsedmkphΆA"zbׯ\ź3udyC67#ҥMp^U$Qj:`֬yQU{_҃2߷TXF?Jf #?V+ʜV »ݩ Z֝ՁI%Pifz &ݤx-btUNyci %7^k'2 16,7毎_gŨ0//݋DIs)ׇRxOw IQ<~WD2^:;߉q\%рm!oldK z?[k 3B.r+,5M>ۂa\- r .3L16 y_&Ssg7@rz(Wl ,J:!:^yl{jx:+W.y`t.8^#ߎd6뻆 m q=,(p՝:` tTB5Vxy7mѠw"m HM7^a 3$JE2 b?4XVh;oTyiC'6tYwThWK7OHhf܅ elٛMgM=!Q& vfcNl$VKY-ZۆڧJ/0C8^ 1/Ex;TEZG JwNV5Ň7G:%AMB ,Ro1 {8i&,xW>l9Ü^h}r(E̯y!P#BNcUQ#/ϳE"w(]`Ab%m@DG}B!]Mv$:['<^:7JΉէL虂U*2$ڌgp%C p6(C3x|yJ@>b 4T7?*c*m/}wO _ə F0)'>Uأ(EM[.B1沱eeKu&T{<["*%|/w6LȌ+X/i<3Nplwn2vbv"8e/CnƁ\`GC?+bvG t ,c|0WN,Բ%iD ?6@Sc@1Ui]\Ѧ;]Ԯ} z 7U, ˹k [8Z91;ثDk>+/\.?^vmL_u;"!*#efC97Su6A(DѤʩY҃&[="y&DA$޺" HʚNJXY,|6S[J|'n|D~‡H|m-nM[fH~D#2coHy->Lg}D&6%W+᧳12s׻I}ƣ{~VDBt9Ɲ}n0Y4ߡbo\wRA1#aG=>ϕ7UXN ߷,3X%̲z~e/1ZQX :xpD]0 #PaGad"[{:CK7V-pBufj*X~ݾGy)D.@~ RK3Q玉Io4c> #!1Js k,pwQ0ѐn'dy`CSz3PE'OlvaƸc-['lcP}ICTNZQC=I3*K$$1Ge ߡ;_+oTeBXUTVa3t7:lb(ڸh.ƶ;9e69h{[@0 9qU0 fV'-˥?n}?>\՝`zx´Y6Y(͉?9w.,j~<"gΈOWW U&KAuCQA$_+cC)z$g1"-Z Bƪ%(e_` \$6+\#1.K?<l =:^PUQ\4jWtU'$5rU*|8Lyj5`)fj/2z?Ֆ(i h3Դ91)y@1]|8.VaIVG;4.mmYbLTXK)֫IhHIA=D8ZOKC1vՁLN@4Ą$:Cwλ9>_*=mwG d&LK2|AΓ^gvUTPbuq Ѝ͓xK+\^&1?NCZ/қ-<"[B6:rbbhgWY `Kpf@@+b-)y8$ ;Yeܢ8IGt׼^*J ĸ~ 0A B!X5V@UZ0,.[uVWe8nV u+^`jAȜ0:vl$dVѥk 5Fk;}*JѠ rEՊ h9_08<Ͼld[XH+}%{X#,v7rufpR8|(c}uZ 9BB9h[Ht'QPOtJ{(2՜d)~Qz 5&Qm$JBRF8˹&-iTx:,ǣSZ 46yFl@ ewn&VswuJQ{AXiigdXJ'" Tʊ٪r֕5],"}!Q<[|fDcDEn@/nK aG^hGޙ+#biRZҟ?*W FYږVqϛ 91Tdͼ?^*]T*\"O&(s HDӚY T Wy9lcihQ.2S (.BkXA'X8ݹMs+V~;Ҩ ӻ4 ]Z˥mRxMJ8WiRS:DNHxQH?-pV̎bT妏^38E6=@_@O+O KZaB1/1xxbZ{jXctҢrMp IT: b/LO+ݵPѽn7O/!UHw%!'\!R Ӊs>_5:u+Jvo4=|n+fߠ{]%N`34¾Ǣ;Wޟ@.ʀ 1# j:mqRY0L #F n58vg|1as}8A;}V+4}0Y9ljQuZGunbk!"9cϴ7(-tvux v-g/^] QvkUǮ!EwCն?$Ab'G<ǷmdlA|8 QnU=.7}  EN):QM|A 41s%4gNא) & ;z.`x;vԲT1Y34/1`,bhq3[&6p_) ]_)`>ũĚ@s*nI[ 2ɇ-̨bAƺ)Uc$KI,hy2B4\iB_'s^uٽ5714XDu ]ax/EHj86iPv o)&#leuV[@IF 2qz@7NnyH/^^<( ek',IcС @<\< K 6'6a*M{N-v!J?fS e.SMαA5d6*mzHqBGs -t /mGm, cq;Frk& ܊|ɘ扼;~9ڍPIܛjZdwV=dGaGC GCf{|g^)Op8BA<+־*u:(NKUpqe*遞$/JƐҕ h|nQ+S!R٨Ljce.6tHW`E`xHb=|gr'.[5,m <<@ 8Y='z >'GoF\ rWXM\D-"Wn-RE We1&S<ɉc% ї&&t~>EL_0,?DF39U]a9hkpUu|6q}hn¸1Fz-U +'~]]HKY>'srT%H{B+gPZg$eJ!Eb{U"te,yB'"/Q'Ͷ:܀<|BN>5T j?(%`h]aV㉅|%&ЙQ%/+OcycErbt~dhJ jO}iX)3n )9,d` ӂqEFx4sV+z>'%{[8^@_L=6,{^MRG)&>8,y;*&{c~[v;` ϶d՝ܰ [JNLM>|ߞSA, nDuw13!NrΑ8K@Z1dkş"+v3X"8mL%7b[\u(s؏k"eLKݘlVT6N!l}JVt FCa޾Q91ۡڿ]<0%s^:%?g~Il{EXRd&/[}9-؎qFUb؜/9^v_9Ћ5v-$."(r__M)P1׳q՞q԰R3|-4AМiqKO :BGutWjw嬝4zՔ23'>͝c lMY9џD0)๹Ax q/0_Km5;Gʐ p@kJ ϳD,Kکdd"HXZ{ 4&\U_اE?tp:='!щ+婆[3ΟZ4nŕovrցE <#O}$fl݈4fS>AHb:*>PDTמ9d}ݿr)sF}5vO"|g1w #Jm bp?{Nf;ݚ~IjN)/h ]RYs6ԉ}/O9N_;w7Ww7E٪@n؊]߇,w"i{t U[ ARGxbkݥm褢p\wBoX䣎-Ӱ;Tc9tכ) cT!?I;4J0*iӹ-T}H~:-> Z KǤ| ɽx%Sͻ_!/Bq~bBXw?j.Ҭ *5-~:8w9[̢z6͜v >+&Dsdž xBgAXV{P1?=)Nk. %F mXQE/o?"kJ@m8H~iCS +g6J HC#Aa*XM@ j`XuFX m=(uuhK zOVfvO$a3".HKpvż[GKqơK/`@Ke`^FIiǮӶj:\JR̯jȳWso]UI?!AvoEAzŒKұGz{KiE}'^/9/}ȝ2LRdx9/[z!5S-}f|U Gxt!ceֆ=2x)TsL}xםs٭]U=HrvKi9-PBW{ȳ4I?/_֧g<'cc9"EoZ.ʁONa5^\ũ qZg9Pei#<)V79+%4ph_ &_ϜIgJ[vFd2j[V@(xSE1?XGA޵ҭݬfG$#\^ 屣Hr7O6X[6},d0^ȋm+10!W}r.6NxRNxsDMOcj52ILՋmDU Z,#,˗OV$.HSˋ4+VztJ7.74>׬:iN#%],1:a7՜3ې3/<#dVJiP{Rוe7Ԓ2"qZ2]DU,4<%.W MuXoS4:TVPv(E AٲmP&Ƅ!ZQux;_^oMK)`6b.㵀K;Z"G!x(6sDiJ HAXtIOv e:1j5)Y-Mwϳ ;onj5Yh&Men[)ۛ0L%iB~2i3,v~cUUf1_) 42 A$!m{^Nv6(8OH!*̩$9[uh^Y7$y5<^V8D4DIɩ[ChJ=XEe2?C }%`A@LvYlƣ4،(` =>3%hQ.D%IFl'Z&]ucwUL1q$"zz/1dt@)jm.؆؃Qk'8ŠbdR4VMQwe4&|rՅ\Y_%BqQ nYVw~1 Q*}/ >=weXw9ٖG 3oNI};?XgE cs;r󆋙n},j8}ZxŸm**5 5<'kLB֦CQɡn$Ih]JlcTgwPT!VO\LP]&[r Rx.wHTnC:d{UZ"Z |ɼQt,iCĿr x I6̈KZyK2I°@՘Ƚ'L5_e`~ Z0$QPWΖ= YN--v[m\ШA'pmQ|2Ӑ֑^O& (xRu:eS 5E*T(SrGqՇVDHPtYN+Y #_~d;tt\ \f"PK%"T~;9 o{oxObrAY ﳲ"`ՎU<b$JUZ(laҚse"SA ,Э2,tl VQz>@Ǵ`gJIK04cm 1}>Zª.Cf蔃e'jHU7(%~#ߓ-7yNTA"v[zu;4]/q|w}k֏#DAs`xUXYNORrb-`*% |i>֋Iæ 3RSgAq|:ztqYM2u-N ZkATN_aɕ+]M]ͫ\Oȹzf&J3Gݗ4Pe`x9oLAͯbZEͲM'p־Mdɷ(C٪OI@܀E\-\~H:MxVp: \dN;I5dX[&WmuhgmX ՉTSJY6g{`o.~8k42ν5;)Lr,V0 %\p(}VfOpAo:Fsk _9φ#]}e>Fgj\C@^<㻠zg cG0h&R?sC%_AoPD9=zsgj 9O_G -j`M7Ԇ{+fyPJ(~bV@:3u4Ƌjk Zı_7nw} 5ө6iR`=%!!Z'ϛEG"JD ۲@ƃ9Kk*WQr0`ls+O>Wq;uj)d5x.@@SM{սрdilrP=kR6yiT y]"+Wa ҋy?L]ʓd|Ypo.`[onr1l"XbN6{!3T Uvq 4}' s[q@22nlj/=z 辰ڜH<3*/5+3UGƌFo SIS]i{ (ߪi4l՜4ܭGf!'!)'i;[>|@>[uǗ(@;zT.z9Ss4a1~1ðB2&J1w OGI|CxM~5"{+2F{,<^SjODkmЫlNF}g髢.cvL05K+ˀYbZ,/Ŀ-ޣ1{U񪊣.{Ã,ѽZH<_lո(tIP DKeGߝC[2 WL~"ygДWJSkywar(į-˜ 92Vj)@4WL0\_Vܻ;Bߓ;5b%8ٍ{]$fK`-[_>vnݪ[Gy͑߭?X1#vpe.CGLǺ  Gs[2wY[!! {lYQʧvخ6NDla+| a ^  w(l/IA_]$<ƈN=|=c]>4>t~E`ځA=Jpi_$[g,Jg2ZD0 JEAaH'O<4h+Ef{tٮ4y:!a 7V`qO|6!nGtesĸ)3A#Dt[ꚷ+wMc(~pe^J#Ə1o7ژ-TYY^ox~D+J*x,f1=jb=̃D5ANTG@ZmTFiEA8][Tx8I'+M?G 0p^-uD=Z@CEF5g5+ڵ @#ytM38Ift 5 F 0{j6YB[byj{ayoȃjz z/H#\c*j/,=ͺ [_ 4HRJ2Z)z$$z1w,nd'_q/p5 Bb6Pc_('U6p(@l4_!se7EUCS'vOeժC^4A@Y5'F*y LYY#6w9Ef4 FUƴDmb:bVaBjڙ48j3v^")Pl9B_ś v 㷁-b霟yï&RQ \SCm$I݌Ê(hnWFőzWJ7ޡ9|rjsڒ}lP_A@N՗QW ;?"veÑ'Ox+0=޽IȊc?w&rd3UZHfU11M X5?of=7RHQ-D_Bx߳5 u}]#~wnI٫ʙ+X+COܤYzw25S׋i4i6GP_%Cjipғ 8ԖkT޿%PtTkBeB18ﵗ`e9W*="n ,](E+N +DE/,Kꮬ,N:N(hRۻP !5OGVuKΒPCA2n/?šX2H *-tid_Ჩ?ߛs"cjҦ\%^iW!=M7F{JχǙ-j4\PtRt [/8k*hkyjD=SEHn( K Qw2}2grg =  (dckux}YpxK* N$oKG@}U+BӱeʴztΦ>)'83Q"TEgt>dݭőu|qhg8̋Wo-/f#Dp{] 蕕:\V( ,s3HܗvdXq9ҾǝڒcPrs1kUNL77D=&):@5g`V gE =U@/{wh`ôfHu6;yVK>rYL?3l-Mc,<) m/z. x awwh.3e066s IW @ly9> Hrg~1~@~8ϏBT6|"Z6T /3i\s@[t✡+-_#hWHHeb[9F]"vH^qi?..=y{CKRR]):p^&f?R3}IIPjnKQޖVD,C˸lPHq@ tW<3vRUW'<5RpfZ[=JMvCڎUbk%8,ؓꋋ^ЮmcxL82&/!'M`AZL:߇?sƣ=Sɡ(*Ͻ5*C8U𯬡l[IG'f,v~K't̛ܛ%hSLup y [b:7 |`.&Y֨nD3DHjy<ФA*:t*'g*qW,ox.bTɦ*xs]nS``}Tm4DOMȧ=ⱪ4[t}>]iz&D"gUVm. wZixbv׽\stkG)A{B]0ۯؔh'Ӡqsj!Տ@?Q|]6ta͡[cZ[؄gus: k5#ԑcĩ<\7M_81%bѥbN?ki4עiQ87}FRa ~ΊTiJJjD7z LM^?,,w;PNkĉOlf,*}t3~jrcѱ߿b9h {D1 \}| qsSՋ Ʃ7LJH98G\#Rc!69?L'IT ޅp CK$y歇%wͱX(Ox"!ճrPn49LIW7 j?y4r Z N̼=hh#<6_ C۷8H%/(!@{\%uzx鉛uI}>i!X\̢8U.&+Q0q4^hc|`mRZd^̠eKooC֖^xtwߵv" WO܍]f {SnMo1[br\L5IcGVa|X5?lAD^o=tc |zM[kp7=]30l֮tL.amn & &j =}rcFXB'>gNf|mOIdFAth`?FOA,qAC lн9FxD+{zuӱ&ހZS(kJw' 9aF|Ħ g[bffvޓp%ny>S.uXy̜fێkޥ(dN7)8g^i(?_T識B%Dgi.Lk`PPt:XwP.!BuU%u$EN\ѭs]Cu@/ӥp~:j|4/sK )a7TD />:ȸXAZP*08]!/r)3oN aq>ʪpEl{0koib]<砆GXwyN ڕ4Ե"rt@ylz'V^u^a@pYg9\ٱ3,])x74uf95 3P?##^_-Cc:ŧ{ K`+itAKjfm`ӖyUXꇰKVBof(,Ru¡F⥞& vTrƺ6@ IpɭY9&ŷ7] +OQȧ٠i0g)TWw٨#Yb}ܖP7㇣XenM$ `~8_C;EཔŒFkEˍzOr@)e=̦GqV1]vd\!Od3TMw$p>=㿺*;#}DTA>Aq7wML PO1(sRm|Î /3|y6%⾥'糇zw^A>9:_{ˤO<╁x&52(HxGV'lVbs~4{F{ƄWbQ8D%ߠ+K5t> RLseije bGoaB)LP/i QK6LAJ_T$!$\_=A|N\+ٛ1d1>YɈ 7)JMBLG=ҫUNeN#  p +m&(j"D=ΟVS+u- ~)EUB:"{]T7V^K8(+^ |$t+f{5 wq4 <1-6 Ѳ9hȁi} XW"jQڙAFKd -#7+GEG .6L"ʟT_DƤ7zQ-&pq εCSIbcupDr &s鍩B2$xr0j_eo3ZPQ}`rvr!r\8# ';]v-ir [ٹG56%XKwѱ3ܟuK$}&v+)pWP VymYHNQYY+Y]0dJp"f! Q16.6uE}d|cjf y0^xSL0eP!H}u1%^NX)2Ӟ(Ń? )Avhq:=Wt!ZJXHA0cdҖo$D)"<sLF M[s dV\q~i/}~EyO(wp"Jß &dpOb: ұЗ+Í'aS~J68jޘ,W7ېBEN([L)|gٸN@!(PYH)%swH h[SЉL>Ij)ZsL/{cacq  aUqgjSb& c 4[b%# CmVKap7~{CηtuZMJн)m;7{MK干ec5{k"-lRHoNMECi#.J [xݠ?QK]Jes۰ d O #+{j[a@fU-@_jwc]M:框A~6>G=67UYU׽3I+ӛŕf 6X4$ݔu< =#nEM ͥrwտ Rtݵ+]n,^_>& &!]%C ?kO'PcWfK9βs7{nB2!^rR=3Ǚ[*;T;Iy}5:`Z&N/!Ga`Su UFlzϣLx: 9o +pZkPzd""EeA/EͽV⽑߳~CsO(՘7Ģi-2|V=.FڜaʿGAi5Mզ3ѻdþ!e3U<_ꜧi١㟆PFJOg+wk@O/&ٽUY=u`5BHΎ`4REƜj(?d"ۏ~[ŀ%ug|L@젧.*AFNO$87#5>0}=|~m:ӈ;:{ٛVH"U/ aل5^u]޷A#<\V"q4Թȿ$ )wxL::v_nysvx"16dYVB@eze+ 8VݠXڟ+:Y2K`=:khrśV'.*š4Iaa&DC4}ǭvmmYD{WpxOH+<ܝ]5m8 @C[GhD Dň'𹉢#?x.2;^}u3(*W4T#{;u,|*A /VN q}%5^ U73z,A4n27(s,96arHsYNsL0֪ d눭kH@?q" jN_Gs2g6l#<|awd"9,,cfҜhhuAD?2~!.l2F* D:Jv3eBJ4̝w)W4ӎ,a?䟬\BKk;&GzʭI`.: Sn%9-TyNL/2]˹QXV᭽,M٩Wӟ;z[d4'&\_(a>t׵]5ja&έ2ATR؟a o,N,( L2,Xɮz2(>j2@w H)Np1zTT{]IvyA3 N/sF6>`y" D6p߼o !&F_hJt^G4KM/w*㤍FLcYca~y 9m5; ՃnYxfV' 2=[f$,\Jvɧ'ĥk4jUT$+=aM04kȌXQɌZۘ'^d" kX }Gիm͟S;OC3F{Fjی\#n]{mW\Sa0u1BAZ i`>:Hn^lp ZW4/ t焱=4$ѝ|50sƣY{ 8_RPQĝxK#G~Dq~h hbN/96y ܡ|~lG5V9#ѭ(&VP5Sї PG޳X^Dct]btiqOzJuB zŽg%lO?7n}!AbJppQf063aa2\˪Ȥ'9FcIg0m8 拐p;μ"궃 "Zl1MSګ،.^P!^*GHrBGk'I ,{oOˌK 9u4-fl5CYxqMݤYرTꩋH3ewIeb# ۊӬ[DRI1u'R2FL3-w%R g)Whl0 @e Af!=3UЉvإg}$L_ţcb?',Sn`"VŞ/D^SgL؟apBH8C'7FU_2\[u?8)3:O YlJ(g}.5[o$Kc"u[ i +|&u?բ*C)N8!) 񛷩D]2֗&-(]rQY:3|fGر?t)ߎLV$,mߤ^.Rԓ*_+y;>jpBDm>1q+HȈZQ㇞Ќz]ݺHɟO Gʉ/qT몓g,2 Ǝ n=MP<Λ>ޡ}F ;{$ O,htn8ݰ Ca֖wbzEvSm7\. i< fAQ oIN?3PN3*U؂OiRp=%d$G)8ȿ]v=ߩY)TnPۅ%%dS u3Gd@j&(OO6]BJ\ ɆE#l&0>?L2?K>}anu<`d@[+VüOu}֌QX,nRKvc z1m$FXK5+N7#ꌲ+Hd!/t s2PUX2_21?JH4E|iqi@rl@ FlZ׉Q_v^A@fJ^7cgL_y-rPnFliD] ||K[1lɯh!>_}u:kEVjuE=KgC^0 8k",쫟aqs}/+*(~k5ΤMt>CVn] 2>P ii7bb!ӕ;`@ abaR:Fb_3v^f32\QnY_E+{4Ap:` ;=F=J>'¢tv6nۄ1T?3Bije½B *.(VM; |765ߒzt6 Y`uK&3˒>C(( Lj 9d=ِa-Fdxp$fMpz6yy1v+U1`ljE.9ڊO㽋٦Q ~<4iQwVDP6ts>$|Ծ~} @;rԴ&WCmU N/H!qbdi\D,$ܟu3EX=  0쓬HH7|k {E`-#O[ 9ǟm'a>T*+ gqww[w /â n m=͔&Ccht3ұjum3ѫ&NA#ZXF430sin%Zl[0^žT9وO֪ZX{ 4: ,CXp;M_"U&X|bQtgZk!3bsjFB@wIk/:- #_p 7ΒLG?Y;<U+rr.A'=LAB1T=<7z]EL__sqր/?q ;-b&2*A{'οBɧ, 7hT2y23{FC5E+c` QVt*z'^=i{y]h̆scj+`:Uv{vwnE]7Kf[1nOTʓKXT2.k@ :Ŕ%aq'|e  (ϷK%ʔYUMޏ)enj]plf7QRW1h '2zVb=2!؉=2nS3Qi!EVʠG5 X ju?JjM$Cd-|D%VWVԫYBӇ6R,ͱm3~Xj{*$o4;m04Ӄ&C1 Yg>/G=Sx[aF!1]3) [X"UzK}*LMqY]MP?)%DIT5͌"jq=[6cy.)CvHZ~~Y&q@*ʠZ@PZD|u Dx!/*8|O6[ߊ [[HA)pObr6|J};iwɴ8FQ^[yȡ vWG+Q)DYiK; | 6ۏ(KmYbb!Dsc%aB/R{p#:ŎYXiTB"» `RY2vmH %DP5ɲRzy33 ߳nN%9.Q y'=Bg[ Ǒ9Fs5sR!;ڕcz [щgJdupOƈjD{P-%1[0uO9]O'u%rM @RB͓ਂ΄IX+:k+];+[JV|='SP{O"ZB?xs g3QG גP`򊞳_Ϳq(kdͱdsU=<|`c60+#wtDn^nbyGϺ[<׌h+x5C+mt9=.T.&{:}aNۋm7mڸEWskP-ttc$şHJKMXA3K/j|(۳UEu0pTq]2jLFD:aѩ8ZsH,R;NNbs-"]/_;wcZ<<ꋣ?s .&%m7=&RkYmQ AI܎"SqxY4I4LLJ)tDH7*󕨤xAg*p%IZ{,W_r}f5)K5Kp%`@[o?02M9e$"`a/`ymPUFbgKb$D{ߵZ/הYim=꿠KBOq-^1S G#-tAV@xcmH. Hl:Jh]|1e%)ucx LD ;_^kaş(C 6\N\qc!z5ύȏc*['ۻCdU Y߄}=ڑtfǯdnHi&%AОg::Ū ݃}Ү:k(cXS qטIP 2MV#[JIXmMS mGbw4Na !2hwIaeOD@Akal3Ula?Q{W\#Z11];s`/T" Έ J'Z2|O.s|&"|nY+=#`@nfyLӚCh\/o@'oOQa@gT#rPd\zQrȞ<|JԛQ)<6CBՐ']֣"n{R:=L s/bpQʟMl񜅓74\`;kEA<ĎuJAןBș/<e,p]0ltB|>¡~笠A-1,nckoJ05v<ץ0\wm(haϊB3a>O`nuMN4ۮs՗<ר^zR&wC:%TjeþL\a>?=ᔎ(=ɬY[114xv5oo4ш6rp7myH$(G+Y• K0S+2u #ڸ4&23_Yx*WP_TCtqTZ,*l;\sbba"(LѪBh% GSI厪3wbyPo̒`Hb{$q  v{>ECy rmtl}(0鳉KD (/?~`˒ѷ_UK mW>LLTƚ"(F436 opl!@:Ϋ xK[nt)czB?RJ aj,#[u1爐h.MN6-YqǮ{>5Qjho:#iZ$zA) / ۚ/?VWX7p`y;tu^C,"7yád@uq"JEv![<%@jsGQRgћ|}uPDn-%.%6* "gn\2-l0)0:hEt1aC7(!%wk_2D ds&ƭC28m]cUCp+^ n3,rk:Jm<H:Nuok"2ʻ \PN/|+z#D8ܚOgtņ%xPӮ+M@fEohcB~JarsT 6W2~Z|[C4~2H{+@7LY ")$ZsRa`PrjE$p}PmJGzd k(,z"h5hMY7-ǠitSng$q_#haӚp'}bYy3XEM_P6 fLU88ICefQj!XեFX:R +/P[Ww[It}Np`jb7]%q)cb[mŚخ\+=: e5oY4,St yyFat'k?rz O0D爤f+QvnuI돈+ل %2IʻꭡWWv 4z[ - S&Z2 nՊ }% =Kӟ+JHr$@5i+`|g{Xt&dw#سAl2BS5-DP(5@aRS!t)͏Qlbn o!ޛ5wO]w{@ԩ?EѬ$gn8۰2PO׼h{6WI}d8?[;%ؕӲ/W k춣Rҥad @ {'ݕ h:(R8Q센?+x(xX3CUYWGeyBsyh)Hrߘ\iX-@B7Z}8nE?_Iq@ux=sJ ,X/RSPP.d?'/HEk.5B^mDPp7~Z/K]) u8-Q&kʱ=UX)\B5>nP"߆vrmC ÎۏmEMZ ,UܮVΚ!^Jq7ea`pg4 iQUqA -{v()yήVh]]!l/ 5_;#QٓUMȍKm4+ՐPLȤsV+F'-L@վ)CY6N`CCԱ:@TѤ7P5Gf0g}J(&]x"I@V/+"m7] /Lک>UBf}*K :tP%lq}j1;AEۍE,*5=UsU#FPAO~{K',a6#Tjet#94T16i-A*<@^7OG7upjyKԢ|^XR`A~}#H L[ql_&pIKRqL",K/Ua5|%T(l6˗zDΦa%Y/*bvӦ\P*Ǵ[ 7C!W8HJxD4x= 7ϕ.nO* 9;98 `IQELH#fkpY}{LډIRKDdBL4O8]· }֐[X\0|HD/ٹf|B\Y.l8N%t\3SX~n.//k9"+iB<3"ao)6ewh]8kŶCq.7fPp֕jcj$u$;&n"jV`wS5-, mJApgDՔDd3c' fwƂp9h<7Z)&uAlVȠd~h'#`To/(D9T~ϝXFp8A&k83>]+Ҝn1M{$P1+1|`,l%▢üwЯHł%BfPXK]7qdN:zkcSgک\@t7F⭕DP'szUF*W R!/C@aTB?rs CE%I: r<3@[o*_"bO+BǙ:wU/֨4Ҍzm/yoX!ެ벡LsD4ZL/[8s1Nn .cƭ2*͌ƀsګaa*zX%E?2DiBf @ٍި46avO *TI4X6#TL81 S*Qzb`^qTN ~P ș#y-䩁zs O" dlJ @O ~_ǝ="Es*2 ɜ|G* iM AAY Tzu$D M&u8%L?f͡Yy "2f&pPHQޝ(]M~Pz щ65h}l2c H`{Dt;T0m_5Q$3׉~L z}Ba=dw`@H.'FLkA`(amvB#ȝ>]F;خ.>m+Ioas'Mty$IWJ7İZ `<'d9$9ވAiW+:3u8 ЛCBX;&_`=w| 6ӈO :r02V1;P37f4ksx{Lt"J~y?immӗ?݇a뛌HKr-ua2pX-Rf$D|_* E䢾N7a+ynˑvԴ2a[s?Q4A eU!v;579}ή'zoLJPDo7C o߸wyW@7?}WvAr+ 8^_[iW::;i݆06 uB+GG}z*(?rbR|$"4ʚ &Ml FW_?hDq B#`nǎWG\q8)&sKk<s]Kz8DlWoScYӧY-T81 )K>anC%˃Ȋ"ol61 \\T@*c}hF;,K5 *&kanDJ[N|I} v[Ӓ
    O}LJDP'X0Q|*I(n~;_2"/bτJU@ߛ/?OˍhsdUkmh)ywq(f~?0*q5YP-l=ދ:kd8BdK+X-=yL1e;q4CҿhtVեN^W Q fیdy//+Ccj&[IErh!WL.oW"e74m ,E H4*bj ijY?} 2}PFAъcP/bIs(A1A(b;9'e9=je- (kqn^LsGn j~iP1K|M~#.ZŬ6ܜ=zcy+Uޝ RVGN|X$)eꐨsNó~R:‰}wB:aI7?Pe\6nP9PF2= gܾIr;% v.v!< FYmYT5 s{cU5[B k|Q_R)?co^0:.%@ӛZ~v ;D}@NhNtpМy "HxMB#ib]Ce,A5u.BMWm̡…*uRUTR (C8; n 4`$HO#VԙnU!P#P\SLIH A}IlwL)]<2%]f<4Z8PXl;?o0Yh"8 KC7[ dK9WeGY F z%Obo:+j1S$ \ꍫ>C,Ӣ;Ym[fq:v9_EhxDO~;BȻ:IFkvv }B`:Dv9xb18`Od63x;lsfR2N8&p$df}ח% Ca/-G #̫@\ש}V/+Fؒn ?Qa4sAbA:_J~WM3gzn.cﻇ.7}c }mQZT7ۖџC0jfj)ia39Ò ETA.3W<;4*Nzo5"*bݠ f<x,/Fd^|AT\v nt3~#+?JW7/)&q#Aѷ;>_{afCHlA"VmrLU|GGo Z*H)=[@ ô˻(B =2ZX*F@ NU0C{$Z4%j#6FM~:%>ЁnYJ_4,+`;|w[Qђ# 9>C'sJKxtM%}]Lc qpL:S&r>׼?r+<$Y&؍S m%2oLD3Sg'{{h{O9Zj'XLc(j8E7H%[ TFH1CH`w45G%O~{P[^:w@0QQGC[Џ6#AxF" rekygʢQ(eu)v!)nhM 9a, -Rݎ ۙE PMR%}[v*!ŀYI^ASsLڜ/Kmut_h|!:h_:Z]ka1zYL0X(tWge>XW~/X׌e=kqHT)cTBQɊuVe!1? r GItlmFΪ4Zk2kv=6}M[e4UZɶ/= /2|8]e-ҕ[X.`C3I&d4("!`C,`)FB%xy55", sZЧn"ڠoj]ɥG:3i"H(AL,eP9cGa{bt-G? 71l4OvgxsZ/DO8V<6SZvn7fL<hc[Fgo0缐Md4mʁ&z^մRtۼg5` u`Ce`!B {]t}s& &JRk< M͓j5O AKDjOP"z[bO`[?`OANk,<=jB(mSuiG.F"JwACFo[H0 " t>Ys8K:7Z{(FEE#[?`|EߩMg>m#>._B931QPύ?'\h_-V?u9O@ΐO }XG5B5cDP\P\BUWA=&oơl,fQđ[Z~rpž-Imd=r,DTpΊ>ޫcaEtZr2RU K vv+8ŔS[Ack7! 74xeR!?ՏƦ׈rɼ`9&6̛i0Elk'( ҳ0" Qs5aHnh҃xBv[-p::[`D H yFK5yF-gO/ T%b e +|d{_gH8&I3˵qqm s&k+lD_@CwЬ )>i!>)]hQpw0 l܀!$)^5;ȯ/ӴI7{p72SP\Yd+lˠc}\.Wњwƀ^6MxEY\q`'!mHߖSQ{dwȎUɘ\8_zLW ϖҸwnIe&ɱ*#U~%[R!m[[_NtT,oN<Ҕ.cc׌9P.Upl0B0V{H0-^$ESn \||pn^)mXى*(.",-; 0RH*YLit[VEM`&2ӊN#M0R-8!NT ԍ@KU*䪜{}{KdmE,3q|Ì >SR0 ʫ9j}et")$L*V/k4bLP)=r^%Gyy"`G`Ed,S~lGr_ɔi72aJ`"݁_ILyVf1T OMa>~,hyIJ鵪h\M?̰&K:n0 _xJ&lzE[:=b=f|#Z;}}~a9-bKX;3q_m{c򞘉Jf©D4 " P7:sSص.+ ʈw'L & U[fk LàF.؍ȤR3TZOf Nuiv)T}NJO *_ KGÍ9!,'qn׼>{$}f'? <6󄶶I1Cg';N@[tvyR'nX)t%sbz]x%"o73+)w]Ɍҙ4u"봊ْ,Z.n^M b:rO\##5[qyFr5y}Y?%*K3 Kzr7Sciw`ϊl8 J#$X]%Z!w1?wdw"͖n5Q5LyB)Ԧó|&>yO4ۄ3h5%J¡LkQ~vh/Ml@P~܉(;1'97#ty1ʌl%Wpl#3:. #2~& sh}]Ɠu>កG< t͛JZc]DwaPcϦ 7,U9"gJH;kp/{%(F) 0o j2~ulxqB>39Ջ'JF{Ə{"IuSw`ɥ-lt !<6~QQm\ vMf;*[hɽ&'hu+`Q&p,Fav]( q4En0u9ND;=sv =9$_V`,mYeb4!.x:+G`F:5Kk1Kv@ŤbSh ="mڡZɖ)W"d$k3bzvGlMReߵsfMQfV@T@K;]!wxvSsmYgneM]f%$m>{/Ҝ&8ATiʿhS̎ɤ&8N"}LE)a禲D=0'PT뜢ߜ8J!}3ͭfh,fwLː&/^Q(OLȟh">b/2؆$*E;kM ḅ(|>'+g/ċEzNWt5UDX Qfś6eOF̹e^p2(}Hn*=Eyb1Lj=,]onsywzOrـfdiTdLr?6@HbLkZ(g{!=c-\'銮@^>iO鄫tY܉kfڢ MȸamD8A*/̙N>]% Ľ#-x3]dޢv~Btb/%%i)A$R ̙0'YX(]nPߞ*V|JDlwpE>X\rW#0%^b`OO1ZCUSnТkv#Z6!l#!dʊ!|;" 0|7"hᇤS++oclOp{v˽ yQ+VB}άK=>;ox`<هlЮani6u2x;Byu<-$z^ $T 4l4["EkM\ea"zB0uݴg1I05"lXa#@ S 0D:8g&p0݈S(MFA4VS-a7uglG.LE>"NY2Pਫ਼`) Q޲{تH uBzP#(]*#"OqD= '>E&! N4{oCt/nҩ$ϟ% φ0%~Xn ΕeM1Åwo1~^%eY6T }grz$=L[e7yGx@4ە;mQs9+!ե(py†=κ;[]g]#k&iڈЏ\s Y6k}p>G;ursy+F: *PtntJh5LSFRHk\ ,KFUm\V%#y'U%c˸AlLŔ~!3~tgSĤb1sp7`ecC\t\_܎= ,`9,w#,Rx̊DhwiҾ:':S SW*< R z|-凉gbd6KevA ~kƼ֦qxi;,ͳ#!qObd3:gvA""Vt}[A+F3Pkטf&h e@B]/ЎpVbG%\r=uuk“$Ͻ$J,(OE^-%B+g: (8ǎkRtr憐r ]Ό q: RD{gH<olJk}dgN!6i5@ &"Vhǥ'Q[1>rK ̾ה2 Vq&%pSsxsk|jU?`_4o*dKz'P'.O%w=|´ҀkX$w'qYedZRbl~hW#@,KAvzetìy`bQT]=Dž'fx tCbNqpҤ|Gڬ"F#=*r +fa"Uqǫ4 }rt463w2lҜ Ϙ!J#x+oJN7]X_H쿏W$$ՌÌ#L~MV?RL)Y1tyjz?c|R*K]󷩲$'"?|>'Xy[:A^xVZF](9Ⓕi$.WqmtzB,! ?`f' 'Oqih愮Ad >, 7萱1,U\.pSSUy4At\M9SjCR`M/ʱUH`ӵUg5dEj­r/K]2DAoL8M̧޿ъ&2v龎tzkXԓށX+2{m!2mv-` qCZ' lcn }}h/oJէ䜟ENAN㢉2"&s2l-hRn̐y)(QhUEI`LwtGy nĚu;evO\,3%Gƃ;*)u厼9(X?0Nj:zrGM[M^B~ӺЩ[Než]x@.2* i2NIz*AΧagQ1|I^yBśˢ)`OFq P| 6j &GCHLj6)O~G^BA_uYHmRWrt/輲`&UrDkӒN;nb?-[[ήI B R#uMK}zZͩ(D5ȷ;vw)ۓ)"'5}=:u"Tչ-9BP~M~kʥ3s7W$r)+s8$p]wcH"s)| wrK.#"☚R0}6RR%tN iZo3]p{a$ΠtGsgtifSUåSJNmϹ`۶eٹef蝮αX{^5|18vLB*w97UtS=wR{մA?_=^|r1*2߶d; [VHhK[947kw=P тK$+ٖ}ӷًã"ͽħchP2S{;1?] +Kbd#l U$*pZǫ8 5m!FY$CGUnWo&-].+T;,fBX-倃F\x^ṌX\#K[A=(Dk,3< Zݽ5k/kkglZ]s^U*1k &m=B 嗥0kz.MB^m12dP'qcDIe6ME9i畩 pnkB J)f 3rT)Ps #ݰ8ΑnP…7zk2\ƣC[_ >k Տp])vn,}x_ >|)\ d`AW(f݄љAĀOq5o!vPO^g|)/Ծ b8ށ~a@E%|rĜ8)7U DY"~n+̯x"HC':՚Y.t!dL+z,D,\|n3TIgIhKPy Vr3&$ (FV-6tժr˃n|(&X&Z$sq=sO.P/b[IZ0.vĿgKhBvQH(.@)D#2Z2^^6T$9=aٹgcVQ olvJGqF2WBta#eO& ɳAONtY89vi)ߢY`iϾ(xr>0gW&e I:H2QFfZCʇ Ցu]EJj\Q+Y-Jc`I^!>K*eD@e<5ܽr-h7Krխ <,5$D_1%f<+T HSQE~LgK]&Z\n@_݉/[Fy 0H [LZ`rkXs:klg)%I7!:e=+GTt3= Bjy{uWکJ>,LӘP$ͷ1 Χ3T{>䬕H( 9_? ty'O:&(4F<ۣ ={l`ll5I!7Yq_^| &I;XW2f7]`y*T63hvTc34 'N+uοQx, l!\Eq3N >% #sہNFRpʪJ3Gujrf9ۧ8QԲBC}I?LF9J/*Y'+ |j븳-thd(_P8|-gIa=Ѳ*T ^a+},<}M3BgxⰑdѫΆI7`?0>[FaL3Y28;4Y7ً Uv뱋NCʊlV:9W/r[O?d%Tg`e|=mY*Хbn8j[xX$cQ}ֹ c/Zʼf~}Jy0G7$j];Eb8br]'|KdBn6T^0fޠ8HQ0~Y jxڒtF<'Do5T窣yc842 RM:[6B(NۺRF*&iM{SdPGJg> c>#q @X̰Bw١tJX^D)کa4ia\"2jqhVGL*Ѧ6*TnDMrY3NL(gJ2kq!yU"Oo\8D hd+8Z+b~砦1 }Cuc-l8ciqŭ<ˆ>Aa\_,-sm^P+0ƪMdVgn1 i-_y3d T}AQw;uw&S>ơ&E"\UIsUu3.C_`̡]U7w]><`ďG݅flD%Tpu9%xKaʥvfg2;i=\9$L&Xd5>N.s,SF ]>4Gk1 lX1 U:p|)L#{8C,ҳY0oWɉ\Q=\|ǟ޳wFYUL0 FAd5yr/tB,C-y G%-::m /mID,p}Ztetlwo(GMfUFVr?htrQ:mȕ!4A$ 4tI#2<^\EʗDqRk2T+/(<'K f0&SgyA0ڙYjQCb/G =/pjxpi{6fC!a/RMzps8;,s?^`:J>7WɄ1Q ` W/gE|}yOnZyIχ+oGmᘋ4ܷe߭HiĤ 1>:wg݅6j#+&-ɖ+sO s=ӓK0 f!Fe_z~`|G$Ma"](R+cȤO~x! Ⱦ3e(j)8.% wNٗ /T"{8W  UT,O:.q)Ti*/,I84#?;H >/ӵz\vvwK@ V'<%:Y T\ ;qdYtY®y63r{EIr iK7ދ.EBqgZYP~;vwgIWi0vDg C YKi0Toyͻ<auΐЇX- ]t4K/;Qg5Clщf}rdceIR_d\.D:X^ u} |N@fe@ݑ"XVqLAM`= Y |x+͜5vR@'9vH)-1ԿP'qOk7)FrтXT0)51^[J4OQ垅Nq+NQbnp\TBB*IKHCze(ysdFN+ P%!H^dM-y#LxzXg: psƃxh\{V 0)bueݿ ^ J>˙#2W}T 11E;ߛk;Lxˍ2K!IN[aHKD n d O) %֊[_PFFFԭj7Wv)u'-LiFΜ,Xq~.^{.OE+DpI"upS石n/Ltfr> ")O!OsCr@>U Z)D6h3 N{C#H̡0r~ąe=3A86ڋ+~q kKX[3 Apѿn8وlU8PŁYt/풞fk)Ewt Y/E`>7^rgmIem"^<~Zoo4i ?@m7J08BB0ʀi>Yo"/tF>Nsp я *{ 緗gً8\gERa~\Il+*v؋ g4^G?FuuGY6 z%WmXTr)4r{J;11ۤoeiT1;'WԴ<5'WL̳p&KʗU@Xl\KP?k{2aPix% 8yǟ-U@P)vVc# >hLw*pHϪjV?LT]c8zषpP(܄RbUw6v;oCaC32•Tlz.o%v"MrR˖Vd,ld%ލI(ɔ,RԀ&a|qDϾr?E 'oBdT0>o 3BW4:xtdr1 G0bf6CVBtco`(3ݯwn$:it| n*p`\8;mޕȥ jhFgZgJ:m OU dk WFhf2m.? .T#G>phu$s}քy%l*6iUJ6'ebt~#@ HܫrgȺ]W0U*3{4`3 Țñ `iZmVq7P!ֱ fӔ$eXEg=KfĘQͭpz D.på۾Z->3㷀%e0u3A~`Qf1[7cXtR[IчNZf!ڤˌl󏪤B$ <%8ҵd͘LmA*U[՘8*zAa^>ߏ!!i&8k.{)Dm8 _?µ1`+Dk1酫ʜl=m$1 72\bY  Ǯla Ǭ)KS\M ޳&AP"l]?c\j΄I ^ vm4:XOh5/us@u+.W>I^H9:hgC-[7!,4VpDnbޭ$ t^$ "?٠BS& b@D%ځ[|Se,/B[ľR|\>֪ZJ΀O@A_ 1mz;^iўWr+Hz_T#\l4۾xYD0+Xf٬" f+ -)@WO^y34</)e|`&*ElyB;P| BBX7ssZ HnF ]:G[ᴁ7sAP6Ki߽13uq2H{rgmYd({WhU iV\nǏ ^0FժM+=Vһj ϪbO :hmY} 0)t/cwuG3 _:j$zGyY 0k+EP*Y$AYpo7za.x{sUO7+` .xPwSj㶧G8$3D)8FlNClLz~i!CM;vW7(cP{(Η?jIY^w+$:CNxjvKh8e&V K׭œI.gZ+%A,RBO/?UN'ֱpvZ4HUiTX2*ŷDq`Rsg78L7I`Ja`¶aS{p$"D)~V `MBJ|w@z[bav>uѻCzl kMF4LDjj^Q2,7vs?@mIm:Oi>\M Y}ț, [֛L;9Ԇ=heSOx.Q.?y7qH@z̦|n\C3nOEO.ې8N6 dC̿w^rE5O"蓹3MĢ|Z'58"d^kIPx$XIk5w\c,W;]5zux{-],O fiQQ?ĸKUV;P\4;7>\^ؚ=ΨNٍf: V v(CU)|KjZ-RmՉ$+(vAa:}d7c4!HՁy"Mr/{r\Ё2nV)JB1!Q"Q }|F2j)w auP@ a'[R )cN y qӊ?IGBjK Lij4IMS[:ط-p[ZU_;E|9ԨO+B{ ld]~F*,d ͞ΡUˆ,ull jmlAR߻轔ȩRy6 n"ZAW$'&lþt /)yON4-6 Gbp'*bo yfNY,ȂiI+-!qzҽU %c_[4A8F"; kS/8m(h|mS$z >_nJ1z:m4{s)y28GpЈt@J$"L_#= ZD`J@ |A0.[XrIdJlXSt^V+ z_]a8JV|O+/_9xKKrQqnF )W@EY^aʳ^~.ĆRK˲{.vWo=&SO m|&]0E0qL[Ajr*Œ 櫬oV P5Jgv6 頰A%q[,* h8U.DB0D뽃𔢗v#ȫo‘uL[s6%>`~%?ui{S,og~(f{$Aj޶U ZwIVT}]B.P~")8pYEڃZ3MI"Tt[nfۈA90,=RJ}n# >Oױt'":4c.M=+G ܭAq2bHxY%6 F4'4~ٙ;KawEQAV_(FNdmR2*0wv[f?<,6?O ebZcFnd[ \6.D3ڠrtݴ~g3NZ.H4gUdk勿:-)-ױo&g«iz{̢5ɝKfFJrD&Y od=ieF$fIZnY/&HH׉U6 + CDlv.b_ӦFd*%/[z'X4mz93$mAQE~p,}ݯ$f=+g+t|,%|cNA/  P>H{)>%`fVhAÞ 󓯷\ _^vLlG1lX Á^g_lEJ+1˓a8C/{//)[rY"+ GZGq58lv+֏MPtl+JLcw% =TU/79w@Ymҹ־,]+0n~k쩚o3ޭLAZI>NnħSnF=- 3)*B]{U8gacyG.<76U7!Žp[*703 Ѯ5Fy=7&mH<UQ3l _уICb>Rc"ѩ(zg iL5Sfվ +S:"0/$n0 (6v$>/^݈\} O:|u*2%!MYhYתf4\5 Gd"(ey,|uZpE X=Ex n潤#y-Iiٗt/h}w*{XrU NN4$wiQ _:ə at~~N%z6!;wFXh#NÝ$ARX}'W[󭈗*@I`Uڙ><|Xꊜ~^X-ܣ34$~or6`zhCCjÙ|{;ҥx5tP%Yم#` I䛴's{Tk=3.T^FE[_b8A4PdF2Bۃb\q[w)8-]K364MGdLl=[|:|\mRό FEXwW|angrΈ}jX^lE$ U$rڅ =giSŞ[-3}̑^C%Kf{d>pQqZj}P.)Nz4 &NS;|}]nb/i@#AFuh I0?Y!eIӃYWRQ9})œDS&ǀG^^ d{@DƷ$f*'L>>[گ٦PbS{(?HD5U%.Q'Ui꿸_Fp ~~ҭx*/o:,5di4N7H>'j|+UQ1_*G*}E9} Fs bsk?it"bFFBdQ  1l.cWmaQ-uQ@1럍G6K:^qί{cohhL7,s@ @,K/Me =aLW*^'ʲgwy *9_c9ϴ3>C%4()lj:P`3gH.cՀ񪝫w84Ub D7t(6JKUZtqw b@-w\YwN3`F,JhD IK(4nb]ڗΞ~\pAmP Ȩ )4"~hݽj-se6PŽ)LB$3&a̓ߺґ z|q^ =6c"SSpbt.3lN=. s-~Uު|$bknuDW s|n^WZ$cNqZf-Bu -MmP] S?fV*%T}+ /xKh8Y\ץǺ= ~-ַ__QK}~,Y ۹|>c :Hs~C):>"b1*2( h*9Ȗ-KZ೻ei# 2BPpOcH{U*Ǣeb=XVBٵVi i&>Snd'P^%gVJ&@ܹI9K=U1A}2ٕrZuG{;o d~).ؠm,u-abҬv<<"OfH lտu,ORU$`n־~6L+h7mJQGaT܀.\>! ʺvpKWYfܶi[VqX%F<& XK8h7N[ avؐSLoM(ˁ~#h7 } ,Y}?rWOE"Ӵ]e{>:|d HG(2tg"_HM ewM'V9&x~Uj҃w5/;~S_Uxa$6}I=uy|cX ˌ^܊U< kSVjG_ɇ*_ervt@c$n1O$)\Uʄ9>v~ ©:X?ʼnLuOXPi8!."l:YxG 1`HNꘋL&\]\L{% 3cUѲl\Z?OL0R[>@f,Ȃ2U-lGg'ʮ-KuO kjv3zXRK$ }Idvp:_u\}̛vL֐8% i pqZ2"V6 {=cov@va2jU{v*f}0yfLAѲ`2: iV6mZOU/*>+~\l3mvSYCwOr׏"r"}47:`6YD Kl$ta? $uqΟT!o0_D؛3e~3B5\tWk qm0mhO%B\.ޣM&Vhtސ/pOΎUYgo>hj[p}Ȕ{T֬-KOPL}@@"ijTaA H;V!і q5Q \ ׃ՆXKE %GGoN9CeMw7FkԃPLL#ܤc!hn5?W&ɭ˯M{$n-IT@Չ9P g"RҬheK(媢BmFs9}KC$O&4#c[!)t.!t8Of5X>z#:0z@,M#~toJ}"X 3j*D!5i4N45r%/Ǩ2= ~Tn?IZX r[Y8/$sF틖=i1zݲևcu;VMt V-pމe xBӅ|-j`U3A &2sRGVH<:UZZh&ʣB8iju]\L쮪psWO&}, 9\`6[b3~U"({ =l(Vsq1W8\ҙlDM$v'Ұstl MS G彨m?я82~BttU;Fz"BK .#c@B軷Cjq#_ݏ3=vi@5|]yO*8#dۊMAR\eu4n0M,ZfOlnkqPTۢ[iê-3$pW;ޤۜ, KTp AܫVwoc0씇93WpG.%UԹMQ)"@Ѕ:9jH S6h{$% : ~iHNଖˁ1+3%ZJhՄk=@m zH!xmE rZ-E-5@)&If)v4#emAŗ@q,Rv>_4sd:=*gL@oŲsDŽj *Nǵi j`u|ژC7!?^ õھ^a&hzж6gͳ;YbV5> ڐ0ɿZJˬ7J==a$ 9ǚ%_ϕ]WBک(wƱP @%X()mc0 Ξ!Vݤ}9q+[tw3aQؑv b|ÒH%SIʹ)f&j^`g/:uoNmqkXt "#rOpµ\ȝAN5-f!u[PlCpd dD*K;BhC!_̞}ٳudS3>]YBӦWv a븻X؈m7P9Jip&A NM8vei\)G = e ?A/lO(|)pT[aiB5g--b#JyBV'e>QWٛ CIo4gqJ[l>jFl3wsR/7W"yDSSYo ^w,yqkxmgj=cKADt~-fÅj&Ү˖$8&uI5osʢክjbⶩ2aPj̾Kai}ᄼPxQ&] (:8kowlESbHTܯ.8 a* ͫ(zϮI'vy" KnO9+/KCƁ%x!˙9'1|FDw3ͷ1׼Jo (4Zrs]YDa <ߘe)?nn~іz ^ ^V|@.jn;?k'_q;ދ:ep(Vpf'tkW @# n9Jז\@vVJfIw{ Mm6d\e.nҩ[<6:ZWM&ӡn @Ȅ;N#YW_Iv )րA (qE|D@_!@N~ҒՏ y{FA 4'0||# Z2;`*CfimZ+9<,p/@!秴'\.!M#FʖS T!6M0r@׀zL!(skoKf)=B:MV_|r; ̩< F~<ЫbMQD.BǗ~U8W8aBAr&rԛ_ ୞hz8ϓǂ 3٣V R&0Ь | S]+X$|) /CG%яЩkéGEͺFy.J9L`fr`cIMyPs \|@5EƅJv!vLD DkoXF"ǜ~ϓ܍I2y6|ap)@fGMai\:mF4[ }zwpGvل~ =_ņn(a]y`f)ⶕS8r'[;dKK_&cø[" LK1:qruW>axb?p?}l_ܯ h8m"E&@\='*1^%-ۍ7SǘA CV֢Kw Q4WylmH`.8 ܲ`إhsX۹k8*K*XL<uY7(=+fV̆@Ys-dw=C^x$IB0Y MqF1eA^ fh[ɭi=<:Qyt6Lj):bwA]Ir;KORHDh]NȎM8$+fpVB&DRn& ֳ>=Lۓ޽;C1p:5NR&x'|N# 2(ܠ1k:3cRS[DJ~Gps2X2ӨIaɣZEZexɀ[Y(C u-c4OvlhT‚J:S*`)L: (=Ĭ2$FmȥVn?SLR]^A odٚ{IB,ysnf5)_4Et4|$vRF۵ Olf'1} EA P.pLr=o)ǀ-,]|_I7)i3@ a[R!U@svj+O< [\&1ݳҍaɴQ1׽n=;>zv!Zk/XMejgڛ;? e]ܬ(GY4F'{L\YO,%5yc+\Cdxmu\c5UhQF:~&->3'4-7}_S[ E ڃzf?!d!KB1`9QС隫 p:/MB7laҾSqh xv?I> ϙlvg_] x&Y"b"0Ǵ/m} DU9i[r9&|y1Iu6!%:wNȢ%m{E)M lyI=ʮj^FALqpz\G 2x y=57#u3%L#Bdt8[ K7]ZహgYdZGfugl0 h^^>[B5}L@*^\O )0c^ TIؓ^r/x20Zl\XH ?) CN%y)m_Dgvmŕ/ŏ3? adsz?Ffˋf>d= ?e Nz=]ާM1뫋Y9{|cbtaJSb- 4ySllé%]XƱX@S {1\GnիԜtr71/fߍˊ!r*>V\T'~NweDs?ed:bp|Qh XrܠCC4gk`0LapW:#}yjE 3NuV ]^gU)t|Y)Z9H HũTfOn b!NG]Ե7lЪYAÀ`%R`.!!+Gx*zjv[ edKnj"ZS*SR7%9l֝;{b$fȶx\|7txe] w} ̤_˺Ԍ{!N02Lix' yr>ki4*9óꔚr=_ Q ը覗 o"7Ur vk?q64mۥ⪎z/x!iVDDr C- dl09ݰZ[-+drtZyQ\5@9BlSjcvC@S\3R ո[iϨh(0k|)>#B*ifi?8D$nw? Aj2*-#̟mQevۡY;#ZIn{ZDsR G<_Z!2om?fN%ǶAJ=/F+K a(jLyynҫVut9 rp䤚\Q9<QоynD{շ'_KQn-?fzGmAVzm$BçVg=iX#0V)Syy νÒjț13RtE&. XWSY>v|xq= 7J1;R7hJBHݐKǻή6 ))#r|Di1Upl|Fl'h!0ҵEVU(a[E:[?lon7dP$O~0VRp¡"EhdAQ=p5b۔h`l4 }B6TQue;U'Vf*ޏP=_:rD,;\ZW uiHb+̐7`YTBjg6YH%%&i!~l?~84J;kJ,U%MO??x!&# Mo?UdΝdlN/~Ȥ:e?)NߧC0s݊4hZ jHs*7LT@ƮW3m=)Ѳ=$m&fdrY!yQOɆWة1ѽ\I<e.t6[BmOO[0/08+*xcH =6^WxD!_HXF;&tg2l1V|@O89Q`)"g!j_eʔ*aE5tG |(2|})mm#תr/q~;' jn~p!(tOEUvN&# Ą3}Wx'`q"L68"N1e0Q!v2t7w732y1*ۙ~kqlRgf(fφM31IL!s4eMV8$,-HQ!(pՐ2e#; -b~uT' #K pEc~8 [e_^I{,A zyU@pL,a,eq<2a'r ϛbpSެN,|*kZLNK4*µif[g$P]+n*Q}}# X)gr?"9 ,"ph` ߙcqZS) Q 6a=gGTJBfV6C!R&enRBHvr $'gqIeh5Sc - Oo%6s𙄒HcN5QR0c7Vs+(I|ZGݷ7cLa,-5HW6=5)<\)=dp񭔋*7Ʊ3Jvnk6@'4$CG_> еUnV(naJ#дt=J 4ޜS.F"epvx N7p,9vF毐5Cst0*)E(ֺ tUvR`kHsñG>AlE&(\%+aJ94c3dAԍf8)F4dƋ|]ྠW]=u}U;ԡ?_?ԥX2=%UٱaJum\$,s쒹F|++=f%AeJZc Iw/)<~Y|N^ wD8I; ~&>4F丞xȁE,;fXpCɓX9&wk=¼oefXYZ5^T5H&;V;"9pl _Q-:r0$A(u >k4#̜Z3h[YX!Ib*76sU0(!5J{wǧRxC7t y7IlJ axl+Bn}"9W]z QJys9hAriǟ!jM8MI@ noڟ4`hԀ4iV(C% 2KM ;מ㋝[<`D%c͕wqf9.wXd nuE?ˣy®k̲'x!|"(c ;ؒ;*Ěd`$Vj :>'!g@` [ua($eiZ%J6 >P3APKXhfoc,]L\fy+(vnrAq~RDiA8Bك̡Jj1Z=X5!6x ^͵,56TO{"dę Ȥ@qA0suFܰw=>fuD6xyB13n+b^QEֿ[c$ qAdžZ|h^ *HoܡqIҏIkuu^5ss7"ڥ˷N1LxR ME"nWhbex{m[~vL$TfکuF%JA H\yy9 2TPV-џ oHpZ]b;xp|ltlZ,֒k׶2^|ÕJU%Fug~O(B~Y~;t6ԍJo1]knTjw@լ䙸X>_Ͳ7O$%] z|zëd 5Io=AO"hvi nENq{ۇDw=8A@wnwv/?{_?῞'N?$=pHMRN*Gd%tY6FPVUzP2StVbOBș)<%%[{/p/|81Y_~2ymc5>Pv|m8~Xp E7v>%J7' {w9_KI9'~L$x`'x.F>.uĔ_j6);`$տ; 7Z x ^!:d@cEh걈'e⓱%(}BzHK?;8?u@rMij7 =˨oJ8J~ק~nw|K(t-^KM^MH.98xp/i~D!|/"Kq[\ 2h%RuМOQDǧ8֞j>OY/uN'`xX0en'oFi`?Prp+߈4#ǿX~DgracʖQWNyհdX !y} 5u्w':2l۫e^Rih@Oth5N,巍<_CZF<)5Td f"7`儺$"<0gWkDO":u0QѺCV ^NfڌMQivڧ2:St:/|C젔&wGs0Ɂfm\8*ٶO7uB#@eA]ߣ}>g[nRR6A(>YA \neV5B]B w'|Ɍ>:wtH}d8V4evX\RgjiV)lcm&xc&ta4) G;䠅 [_]7W¿Հ2'qQlti]@|#3ɤ˚,:SCMke@BOJ8P8b>Q9kGvqPۂϟO4p͑ fP=qkde~hOTmZv "rŴPNĝT9(xhJ}|2'G'z2:>lWMjtN_x:d=sTfbՇo]n[_.MnEP,M1tEfj۵=1=+_Vc 51c?}R2~ܷVz._Ojv}O>Q<59F[gҫҾP#}ut%VŞQ8~`sQL}{W<^O|}2Pd+[WeB9~}uåoܔR0,,oYC qna`+3.%:7P;BtTa\~3ؒΖk[*SWFr>bZbNtfdW%,lnYJ,Oc0h>e`>v}[@-6y'֮qĜ4Z/m|7?;a, /c< Va'~<GQUq`4e?c;F\G1gQ˥+2żZF.^!0jCnF z1.PoAP#c7Wi[2.#9B0h}ꖰ&m)%RwgcK䚥 AtzzH"U. T}5-!J2«X`JN' +3 ys9{r_AP\:|߿}g`J΢ʻf%6 =q$oOPbNi_vr$NRYiEYO|pPs ȅ6FXVRL&{%oU(PxA<#ۢXd 9լ];"-xdC9OXӤj8y{ :|0WEk &98R<(v%>ghW6!Zļ3{O26M:"!%kJ_$xR0Bmi`hfg2?144P *LUP+|T#Qi6a]:?C"I]{W&^i[ Aob?>AdGӧGGG=7pt<4ϏgOF-R;E*-K^$[ m`p^b@iYUڏPuWgv.-EC|.W$œ# $Hs,l ?-=D".'@JP#;)@n\k!k~P$9l $ӒTE忈S/EBkSb݁邵[Ƞ| 3ut\z1 e &+t8`D s4fĄ'}Iҙ|c{#4)VXvS"NFzg5Aа9MTtk 9!Vhk"LUɬ?Ӳ+׽yF[#m͙Act{:1N$城NF?h_F[uSknRX"Sc<;m");\?jԏsN+l_)JCӄDI!Mogf}J?z)!%u aeR/NB@yHڗKKG{h0#MsSZ/aȶD|GOj/(*nT&=$PIMɊGƹt~a<iMYIn"/v%[o|NxQr'O; |d;S{uV!_GIدz`넹`E28;QlA27q &$1 #IXTօhz_]dfv '~m;b?I15vJ[l6t/ԀNFHL&[~JK\ٿ۬_`#껳Υb{lZB[;6{bp P.QU κlc3cgkn%o .5I]pRjW~jQhBiT4ŎlQfHšBUy@5V{f<+3>rZkur2~lG\OY!(5_6GKҨvpZ07b@Z/w&s yZe4||Ζ'GnKb#E:_w٭$~_^=.X+3d4J"7Nw%>a̱stwKEŸ ݾ(7(۲ }q/ ]3Or&D{ر=Z ANp$C>>::@~PǾgniWdm@R,츅g:ṣbR[j@{8rLTDa A(ҝnxoA5ycW$tK/|&vQKh+ ZW{V){{9\c4NtCcVґ v[7)\/Ȫ˒Ď+}׎J P0z>&= $p_QݠX`lG8_ )=K.;+ x$$v@PgWS]ɷػrMF$ŞE 4[Ƈzyϊj>W2Pj\RG.2 ;niD{oV4]I'!l4=M)yMN\~>$V12TB VS|#Y'|xQ\?F/=;O2T֎O̯Z#ݿ2+&-~oV?7~dt ;[Sv>w5[KbMŤy) *y 83wx%ڻ ) P֕nFD!e"GTvY<-U*JOxrw#)VXqKi6m$~o30g+< (!UWhTiGޞq4=ٸw ܨN|( (݊ Θ:-|``xay?zCohE,@ښ!)B's3~aJY ~J^ɖYgζ3BNΤ U7ͩԲtA_ ֮j6~uYSՑס* _ݵqAڱ[WyI4zj iL=fvzۢ"nݧbMEkZۘDfԘn4Bw\*r3n\e.UFͻWwrz!ݯsOļ.@x/n_.k_K|O*Rp2lj0ß}-*o5>{ZUW.9[_Z_t~e313C]5մ*pֵk̖^al⏙_O2/닋W>)_mI~r˃Oj,8ys5{g>Wc}zti+[!b``l^湀?p4~J=˄ \ɇ-%0.`n]@Caj|lo>NgմqUYa4yU:=j=VMiXjZ?hт4:oTpbLH {.&vSCϭҁƘ6VumJƹgx_wD<ά,@0<Vn^E`cuG> _PMM9mBOچ_+SV!B 'p:RhQur ;![fgy&~a뺪qj$ %U6ZѰuBY.2855Q`w5̋r) jVVi.t@Yr1jskjm/e*E(q7ϣ`0L :~Te,{QuUa4I5 Dgn+b~x{~'*FN҂k=\yc.Se^y̴pYkoy]wpؼm']lm~FFgwIWN8"/,2&!hdRhiW @/\B-QY/gU"4ۢQG9Q"" ؾD8#sЕ[`E6W)~RU/#6UӜ+Z]5YJdUٞL'G%F)Cl.\`8Ӣ٪L#}j}j5AJ*/lD\AY뉙~YA,'y7aoqLVYQ ^,x݋=ܡQDյYr@14)^br#A[}WWhJ`+X}חvj8B?A#;{pF[rծ8<ƒL,ήɃy@^d4#X+ƉB B`MB lrRZMu6=G?Y:wD -9bM#ѩ>+hT%~4~Bx355XWs#;}[Rr~>mQ:ap<|FGV f8aɫ&9 GRdA4^1D*J~vc%YDPDv8F8"ĸ<[HH {irz N53 gm2gf@`'DҰ` /^s]R}o;P*AWp^F{aon`vF-f#0x% ')slf. Q?lnBd. Vhw;A5jf$jgx;~ŵ80QpbS]E48 :]Zq}~ #@?I~ *E ~x:&&v}ŋ~YU~6;T4^5ZmC(P-$ԕ$Q?_j)%R20Pk u9Í#4H@J*% V0x=`vv4>Ofli:q:ۑ.\rd$|DQ̡S Bx (ּ*`D})UUN FD=y*4ld('٤}3MMz8Q}d2( Kv=@/RR})<@ɐWہxq=4<VLߤ*HzO56EQ$o7<9D78h3ZC)c[8Y|AY/JaEaފ%u |s(9j2Y Xaf r9KU(6,-y8K6|K)``u[69'<0K2df!pq5ooa<=ڹ.!}Boa݈RuX.%^:19i^Oۅk gsK5e7 )S[T0cmj$(^P[ײ߅}T, 1ڗ&V.)RujۀnHGq//u*u#:hL8TqB- .XB!>;uJ<{CN0 '>Fl, |/k6nXeS;V 䛙vñ:%AIPǏ'dI*NV}ÀO*nb`aCv4CM4u>10;̎1w8;L 2.I'RI/! hzB1`H`-" 3;3d}̡b,Rx8{3i<YJ~7$"ˣPIU bKBCzw<"l*qJS놴k/Y#\lL6Nqev% LTڡi ]JTe"иH/y*!3t=qg_ l0Gl!AO\rl}H*+"RXfǽ璈{@3Bmՙֲ(+1=ͩmSџxM 9~ɣ]ZTR/#1iNsL;9T >KhAFċ^auvfp2{7^ELVL x[r6>77k reb"_Gϣoy0޾~x_axSޯf)dK+F~v^ŢwO25myn$ 9})t]`d0f#LHE^io$YՖ&݆c{[- 1m3i@tZ@ڑbbJBbOMT >tU[YTI3V7̷1׌BAMn~ JzUU\};k @8rezIМiD+ݶ|ty11=%)BF\@9wͼj6ԣ _]nӢ Iܝ֌rN̑YR1 w'Ww:/{*yG7y XSѵٞۨ;S p(u T7G~KPg'u}WI -gwHbR_3ܜ4݃w"s?Y:Zj1/[l:SmIO:EpWqbzBl( [e0}$pYZRRQrpO*PΠk0lp!{Qyh6ߏDwV1Ň,ݸPDyUrqأp4k%JVK ~_e.d,}kH{ 6+1|+KQ\rMmWkKwp&^s$ClW&/(܋mFpkZN(VO q$*xI}SbGkhcYĕgk ,hJ'MoSx#p(`~Y˹}OQڞx뻙S/Q ,FH(?B ETET-q8 *aN> CdkbJ,{BRqźߠaBHg#_ٓj@HS>) Ed܌) O_|8flC!BuIIz΅:E)r؞v b bTԈ$Q/aI辎DAw%am4q=ַSQoӣ8W6+7 lF84yK<$G)3@vƳLmk ::*}n0jAՓ#z߻t}KOկO]ČӒvQx+T,/ْGJ?O>+i[.'O7HK>&3-L݃E? 0P(\bxnCtI]bVճ߀by Zpc6xEJi, SjQ%*\uxN?Ho2DQqeۼw9?%H R,Q;&P"7 Pu2clHoT0,&͍MK/eEh'xg9%|2BC/x2V^)Ӡ w\r=%g|^؉ڂJxH7JoFssǴLdu[T ')H n' zh19~~(6k_?_wibV0:7{>5ԓQ{Y^MmҼmҬܔQwN/񉱾¬Mִ0}*+[G߾?|F]-If) ͚fo'?=WHvŎ)ds&kzAAHS 5^070701000000b7000081a400000000000000000000000165f0724700002e19000000000000000000000000000000000000002000000000./usr/share/man/man7/ovsdb.7.gz}GxvYlItoY#\5 .$tdQ/${sK2Kٶ'N-_ʦؖ7UqS5UWբXv˾]W-͏Ͽ/ʮxdR㓟TqWnJW1vթ. +B8DȻ[ߟ*g?/kmCg">ؚj+>(wo.޼vSuL퓢_Ud;)j_aor>gXe]Wզ􄺂-NϮ+o?]1o׻M?'7'ޭz&Ů#F~/wղu'ꦫ-+~Z,]ғln 5äX:Yˍ/}MO ?/諿;/߼>yaDmAHe(kڃSx-y oj.fvy3_umSZbVK[\۽/Qnz8g%~զIϔW=!$"􋮃/akz櫲t/{ D{{\,hEz.E@.nn5bg`?ăj]JՎ6 ʩJ_mUmq[Zs,4]?<\OzmWC7"d}}u$En]v/J{o\gm%Qf-;y>nU1Cdxov~`za;RR'w[< NYuޮ3݆pGGj,;X*|BZAT!*ٷNIɗxQDC*}r:B|_?^xoҵ'Q ѯnAN;ܪVKkp˳$ݬpQtZ/媉hܢ~" +E^Bh.qO^@tba Q/0ˊ$fD0X)#ƀRf.ycA l#څӐU(`U{n"Kzr}}ES2El*LSiQYWv$Yښ!Z R+)o o@ Dpx"+@0Ӌ_k2- N.h+ 8E#.x f?<>~) |L)!Kɺ9cͲVH0,GC[ h"`=L>.6`"d?.DL|PVJq/cpI>tl]O?  h=oVDI=H^o_~8gB]@IPOPS K}c3.S]~C- ƙB2„Ȑ_~–k 4UGs뛦=2Sq[A2tt=5T:bEO a E,&*Ɩ(斆]Iu2bMRޅ/?y6eA FsDFi֯%gHV$%x~DZ,:HTt`=Fj^I+VCְh SaiE@9ì6DK!Ifgh0.ay bے@ʄO?`ƊWyŻ/_<23) fӒL#x {F[ tRDT=y(yE@F̲^JxtlRnZ"h;"rġ$5ytI攥U{%vꟻf)SUaܰ7;;z"3[M} 1'N<@ES!QF,2+ Xؠ !jr^)%<9k!mrt,N(Q'1` _Cgĵ5`9VAחe=^9G57C 4)Lb[6$ fy!:]9dVJhrH=]6yu" 3ȗe#2*%n څCBN٨nnґ\Ғ' `&3."-siLs5Ah6%/-m)owЌ( *L`(5l:a{Afg.Ҙu&QOf EWTcB[bcagX6vEBʚ%/?1ڦF-] 񃓌R *zmkad1:W#o/t{ſylFR݈bb>ZMęDLLP%imP bzE\pBMJ6Xsdq=)uҭD! j$Y2vA؝=XN*6p٪{ٵ;OvW! Sbg;Z֌;NlՌ;Nc#0q9Je YT|65ӬzF_Jz(a}ۏr ADNA-+N8.IWt'pk O&dGV~KU KժsN݌п-kѶ\SP jd/׏kO,ӎdhNA3ΊPWCʞƹV?8 \yd"f7Ҵ{[,a%C] ^߶(@o=2uk"5ZkI B%+v7-$Nqb~R504 Sk>DmSxFs`Y|׃$6 `R-tF'بk5R$'6 zM ^`;S-ȌF oZ2e-ܱFql,bƕȆjw;`ො͞K!kjϱ}31}~0 +]۩:ZfVlk xKƴQSx2#!f̍joU6'/(6u\"=xĭ3NAɚjwY#BbN('Gydn2<-[Sr4.x(كhBs\n8ȮG<;8Fo=,L J\\V! qTrI{.{^"#bnE2bPۄ UNg~X8r*O H1qK)4woEgҎ2QʶTjNiaVqH<ŋ]Wxe4b0b8"4Tyz~?R5 _,bvהK3T+ )%(ohd?'|>ahR)?ԛƥ GUEh=~OP9E`3n$efG 򏈶s 4&3] ,fr%UQ5\h% 6XEyCن&?ICB9?E $sr g2?#^s!+C~IA |-$jhF, թ'TaŠwLΒVsrރo7 cœgOb=P1ҹBaύO_`@a݋9[(?pG`{W@簈P A1}*X4RU8oh!.ĿGgBʏԩJ[ELY,#sjo5fJ˱䦻AcQ)Y$z|!\$N܏8(!w: ,  vDx hInkNd>WPAaC0 +O1)j@\-٤.+S%+*E^P2I̱ w]1H"\a>TaZL 5\5\(QudkVy8(332W%0}h:HUւd]l -'~JD ;(bpr[RsZCVq^1RK\4ֱdZl\1 SD!Nj6Qa(JVU+%w !Unz^W7$-WoWS.׀Eݱ?-~f)v*-R&^+9OY<BJ9N*%:,D%)Å/iK^N1Ձ (S%x9(>/m',ʾbQtCo+Eʬ2#tpp|eж'En\䙄i{R_dYA$-/{]wbIe@Iզ!"ka3,*.a}V/Qmo-} "c JUT3#qM& ±-<WvQZhބb<l4|Ǒ#ߔ[jriw_>ѐ\[J,^(c-Xn &6TuqÜU5xh &GɒƧ8"X.-^pѴиDQ@`J*}֑>(W괖gBBKM)ёs%EM!r"\}ܑ#<%P2ʛ%{՜=É:a4H!zzg#l |J#n$&$45u(B[*I>|Y]-P3YHܣmܦԞ¢kbg)|Lx6ehߗD 0 (fHeepx¥4H2zr:oQIb ml{E"Z\Ȇ's;N:!x82A.bB4xm'ŊAWnFnFq} =5&Y 8:녥^Q=-bӵS X=n? :I/p ј3qq]}wvxˋ|cc]8@9c[?*ߙR{ka]6!J>En17Qi!j5+Ƿ;y"*y @i8wͧV.ds^_ߗoוصV)S\1CD^O%]V9}ъYe-1n-ޠlEzg궫7 *exr\Oy9Hx7/&CF9bp0t4Z?ٟ%qY1-c8! (7}:'$ #Nl2O>jqo7[pPNug4_{MOcC mwR9 oܢZQN,zxi o^LC(QX$ RDF*RLe<~[IOuY;c8(*!BY? 6KΆ¡Muf0$@׋ӧ]nrjj0m/9Wgy耩|]nyƪ~ qfb,_ -K￟>~v/C\D TMT6tFKpq$ WVoT {)2x!',^ ex?#t#|dO!yX-ېqoQg/C/~6%Y^#9A U,gk\l9J.}(Db.CWrNHdy"\ ȭb?=}7|ȸZKn1ׇoSɧ5ܖGދbgSX6S]Rʇ__ꤥ`ʺcBioxY7xOO*me;ͯe 3 #ꯏOOG@6j*ƴPl#V@`r`WHF%NgQ,Cp+7_4LTZ#i1j}͗OTF$i%]:g<v3 PjҎs=y%FʳقNS<pDžՁKfNJ9iGI-?`J?տּL,Wѥ߿( QyO!WhqPzI0G,g8V6).6Daǿ[ ֯vl <ȥHάK:>%]\Iz7p 2rK8{ z>4_ѭɰ(ޖ*j`:*1򠍫.RtJ}Ff6Btߡ]/CU x\CtLE4rd ?u“1hCz2V,*"uCuJ1ϴbSV2||lPa$3EXKiŎz0"2-ItM(\@:'o\d 0{&Ը v]d`[8t(Lra솏pI.&Tga?l4r4v'024?GKft t:M)v^Y[5^bY!^ "`WS)kE ΟK\׵M'4֟\f_E1==_Ofb[rBHz.-Iq;"]b^I 18֥SQHX\ܕokTiHs$תk9za5W4:׈ޱ%m d%c (Ql| IbR4Y c3w|p VS:r382_l٤Z: !RWf!A)Aq!}.!+ it" DK vH_J6WX$ɺ3hBBwypV7nL+_=Tr%q60N!0rQS;k|e+?!UIj3⽏wjWɈ(v-|HO,!GK$PIcqK{iNt`SgJyz/sl$Mt؏!ؙu.Vw֫Ǹ֕Dìi fg5NXiCj/eCK<~/=hFHIYQyuZbE:tUݔ u^1g(.o. u,.$d/Oe^ǀϴa.(tY'5T-3847y>v٢]\19ML&'tMk @z3y,ܷ7N4`&#G+)A8:ca'/.T sAi^ z?UUbd>fżw~']XAy2.4nb.6 NI(E\)Їƒyv:;>~_qCp.Mht_hT++.PH_B>#ywθf>S†ȃJ->! |6x9NPS,AY.R*; nn v\K'D0B\ΟfZV3.& #uu8Y'y<$;ѰrF-y`Ӵhy-d%r$ݓK5K(N8*YqxN챍?gCtɰvʼnqKi"8 [ɥ$$W?G s}wo uA%?oS 4M{eF ɨB {Ȭdb'3T 6i%^.0 fL7P--O01^( ; ݷMM<~&czGhg'C?S' !vwo*̯*7ЧUnJ0h"5#t[Kcr ~N,(xf0\=tr4QUMI>(gGl=!ފur2}p݅f[-X޾<_ ^=V¡:~|) X HPE@YY|ց YӢi..>X6R'1YFE0^ECgtPF )qw]gLd|sWX A ^] ?~(uҾ8V] i F4ܝ{'i7;2戕D}1/ef8'ȷDa Z<J>Jnܞm(vvZ#8^L-}V pr4ijGr}6N>>_JGawJ/_jC cs(#c|ӫƹ 3Ghv>k"B$/e18k3qܱc-&Yc]qVO?cv gMHpNՈbdD2'С|)/-r)Qڅ71g0M"W :LfALOԆk hV9>N_CsIL勤)}\tSJV[&?w>ߺ;<"JYXE-ď1H\#4~#A`:& Q\kŇkИ[H'՛}*ۙ[)L3[\/˳ߊ' @81(q502ervz'>6e#|a9xT2سEOM/=|Eweg%OI;aVh0Zn Sx#=O \Ѱl"2Pf*|G.8>y|+LRyB]f y b;lX#@|p/'䟫J9Q;wLB&ssWɣ'_MO}omiI 7U1k/O0/=bʷ7ANy-6xSdg*Ik;r\8lpɻۻDM)f+x̻,?loq^m>](w⾟O2<lvkEktd;'QND{|LZg_MnoxP,JE2ҕUP-0FڂBVE&RzHX)YQF[7c)/♀ xHZnq+ *9Kf;n_EZXŤ\.ɯ*$9)u.r&I`X31PM:CnlėyC"l{ =1]jŢR+ƚXtUfZ#"bq"Ҳ)S(MRT?&БYkCEIǓpI>SWS`sC+Q,?6".G4a,֩ 2նSU yU8& c.U68,ȡ:}鬡 oLX q orkG#a%UmUɷy.03EB J@tqXͥԗXC-U ZǟTCyӉ3;Zd CCȠxz!Lӱjҕ[l}8)\+"mH``.wW+_Hb@R1z1CBj06xV+$NR.H(Iph FQS " IʨiXcuKsDvŰ#E0lO1f,`ÂJag̲NҚe"v/C0Bރ`XP"~T !kDhPq>1AysrRj(TgĽ753@DVD*#yS?+FH^H?* EsjI u# t4ы&"劙A1X,/򛋞>/X.Ԅ+q^ޖy Ipoԃ[0m5XyU:rNW~?26G EY '8!AKꀇpN>PLgđ| a5 &PR,Sb$?^O?{s=]@mK(y~{}}{n.zvo= #2F!FP56A硄'{jdtx$پOQ.r>1XǵӤ<I d#9]['JpK8P5'lڶMa!%gPEl?j1 ۣ͵M* thwG-̝$R$}י7bAٯ5T   =[t,A?$ G) $p/MPY@!lwʖDpRzn$G6xe( lyMb :{]@RdihC{BQk@-8vԃ!9=蕮"J`_]Jj/e9|e7tաA6(iDis³b:,#ZU`dy f(nQ5 W=rR,[@c(N`< @ઠb P(?IEn$/xx@BV@5Jyi!; W$!__A)R4٢@"B ^yQ;W-H> L9Q Q1o*o{>$!*ӜFbsmls,V#mM୊t14S˓\n=qtK`Ðۄ7:!:umݏp* *NG۬CQA)|ZrЩ8H :2Rp7%a@)CQɺ$T+|vQTn@Zo34>PnfϕL7Uy) W8Bak@v@U:cv}nbteȓv H7 X!,[#)ّdՁke('|::w"@/5OdE|goym͊!-{H{VISfJEwwڽȮzѠ+Teib_pIHh3(DIww&/` #W7n/r GFȬ@?uT ᤞSGxk݅@;k3#F, v$V{~˴ T;b KWŖ.lvz!c׳>"GgH:x5.æ4܏D_e4B{^f#CmQZu)>׾Xl;7mi wQ@W2~y|~P:"Q?s$ȯ=A$'Yx·#g5A#l ˭3u\Sbw~6$ئWK{i@K[^׭aTi\XmsCܭf9 A'vù^%\x?_#yZ{!+]fm-[jj,tjKѽiN:KC&ڲGy[ >(+բ]hjjZ?bqW&$<3:#O<%NgJPTE=~&n4ׁs =5hǏrfHhj⨙Ph9NAGZ[8DqFoRQ-njڎhz;˞z(\ @OzNCqQgU6N,J: D Gw+鮹JH{B@Y˓Ao,RBALR;ӆnyvr6/  OEC7vO;'._sաdG{u -$ݣ]RރURG]QtŃIV컳7Ww'=n+o@]Q\۩^3M@~g㿩.vw$ee4dl=Y}_<ۏSHLW(|޷޷F.U޷{߾i<`-f3q~F9W\wB+8ՐIݺEGSԼ5!YizJ"Djʶ͎CQȹhx_A%167WDxE唄NM>A<3U(NVDg6,ŀφTe+荍]! w,i3{T.Y{qhbWtSRR œ)n&E1gis2bd=I iHKl⿕ Bfs~p: џTdθ8_KJ`,-{a X#)Kr(?:>V2GBRSĻjoEeQ>rKct/.Sz)ƭ6Nt?{/M) b)͊^>߬:fj'XٟorxvwQW_FH$FgQIot]>0fAQ2RmiΦTYgԲv|\ƭD!g",֣3B' V+,7貉N5 bn)U%~>:ƽXh-7Q edZ+^ 0B m~z Q:ofvFFf_gO`j.)q[8?.p 8Yé6^^Q~rHx&$;4D?zxK.F4vCB[$*Ɇw;f{l/!x@SZKJ>ucC'q~#0wתf}q3 z}{C[u>st3T7<Å:2?|7ekverZǣ?|􇞃K&U[R R 28TBco kz{SXXb:&8/ =]O[ /|R),tԂCzb>9j) 3E{Fv fVrW9|9sZƢ-† \޶Ly-AHAOA1Vɕ6 0TD !$ 1\ \~E6A)u]܋*]o+`UeCVVO2S~AȰc9ܗ=^3Mo=>(B:G܌F` z& G@# 0%Q}0[vnL: 3v\X7@SlPQ "}0~&,kke#kN'hV< ȃZFTq[V}jĥ2uJ`G3o@w/| iu >"q$EGg|ijyxe]?Q5xn>}7 mxĜ~c8nb ΋V; O$P{ӧ~ƫOs.`铪>+dXZ<4q{f`aVG^GzTwAN@n0QR Ll`~rC0Uץo8]qvxvC6Qf`_V}J2yӈ@]nw~|uF}

    _ko/Emrmc~_\?x?/R}a rW6XܻMd^P^le͊T—=Wv_Lہ~kzI|8V|ϣ 9W> <<z9&gj 0Io}jtS+;)b`p?vl⍐o#mM&_̝ϴekW|̈́ B:r:qبŏ "a wɑ7Y~X.y=7˳ⲷB(g#k Co0Us47:O%}o_W\p"a 7~3e33Km.Mmc 78}=&4@p Ã]hdlzr5\Ս)0 49_zf# +; I|:_ԉk`XI]Y^5}EgT>8oamߖ6e.=+㜹IS ~IZ&QVlØufΩzGgdN1x@jI8ɯ;anymMLS<]\ԅ wL*j br[䑙b]@00.9\V~Q3<B'FfUz i~UT{ڀF:ģ$*4.B_^#M35ω: CV:D,piƵ܆9\?(ZXar?bFUa%NۈF(f0#8J'NHsE>%My03kEK*{VZ|tM An(=AU=[ҏq>@tڡx>bj%;{3j@w f.`w~ͥ,-@[q-}/ !򢞆|:~h-DBI!:;hEN"FtZ{ x5,-}Z$Ox֒HN!D NTV %hԫUREwvUfc—)(s \>^g\qi1z_SkrCu^f`*04(Ep:C[ |\ChsEmǓTI )O@Z{y;ggE +Jp8$c8 O Eaf7,%qMy px]cGɬӽ&bП9h"t%| zlD/f lD.'0Yo2EkS`#,(YɥB):NJ6UWT-;TQ"+*S<]m_ /yHb%#zyUx9 XeM xN"w(-tRT$^:*0.3:XwXtU8OàŎ0Ye\SM0BO0`f.eF:"2*6#23M%A<Ǘ%H} ԉA!Z,$ MQHQN(9".5 ,Ea@m?.fnn3O[Ra?ė/p). ZWº6ov"!?Ǐ04p":"z֡jHh3lNE [ze{ʬ Ux fH0 d#0˥|qKǩcx?>HSՎds(]<Pefs" o􉆧L7]b[fag]蠁,rFqQ.V"9XY$mo\f)F]>rIyZRUHnKFWRDw-mL r`]r#y-_1HxsHp+-s a1 ilUp=Ex"{KA(E\d_g5s2 U] 44gd4p6%ɧ*~krbUІ!Gge.yC`EwGdK~y<<3ž-#OC 舭2f/ n:,|ū[fןBtV{+A@cp{8&~4k'ذULTذԹpy i<nhT NfutٮsX~1mD5Z'̯jEMQ b@襾nun@/Ѝ?2,J'Q@=uYQ vnC,aoXdjFt\NQ]IrsW LYt*>RCceɢyC!vXVebg2C3bR1 #rS^0 $D D2'49&0AWnVuYtc O.R;>a@qv>E :,'cavI50A9O dGfu+^/0FX 83$XwEw2u8ۂu@WgZvLdބv\/\c [쥷u!oj<ح,Xkv'e룡rsz9G%Tej&G⒪/Ԭ9cީ'>RMl>3ߴ̏5Bżf(nk7$O.#z,1kF7ϢsF$IG xT !HՐ$W\"ᯔY#=D"}C0vdFR$f龞%KvcL=vČFVlOHI;G1WkN\7wcoZ]tlUIֿg3w43+.#`ǔ}))B\.DD$sFs -aj|73EK%a"Š UzĻZ*>9<9`'y˻XգرPpz "`W*A@fJ$xJ<V7\M!Qv6,ޭnmG=9$FU-T*M̨R\ۥ:y4L2`n B+cf_Ca/QL: A@霽{6.Zs#! kb9TUZ@$#79m[bH>sy UU!U_W{_€~UJQl!DCףKߠ$Np/ݩaN*YomwUQ8̜F!l%Y6!CȮ?ԋT,ꛛɩf0Op@5г&u>jl[8jo|g{j+S^ }1(/?b3Yd=T،[?q򹓥2v>ȓfI9`_8;ј_~<$:\sj++V&٧ؗoȭ[qrqkfH?w 'z#$bDFσ?vgGA~߿b>;TPBcܙBz.=|g4Qof7p%T|D[aU S:m3Cc3Ɲ$EWIF[>vm-3P:}vj8ðscjmkьs,`2ོ涀WrrH \cM̱ VJ[e٧d|2cX;}ȹSCgsz:flOYc0 ',AjJ9!IWGt$8։-MxB k4QEfvTsQD*#.JMq:HYl*-H١NC)gop14[ r.~u/&d0J tBIsFxs,sZ厲q0_{e!`W'J%:,y pG(50BF Ue)DO*`3d\gS&K`*)Vz%WFtiG:JG4fUU!$R %b)7UmwJrEM8`T "Ui2Z"W* B4WXB3)g0GA5$zgӭ9Cy%EY¢کtIT(J4ᗪ|5P{a:LbX!/-B8Td E YZ