postfix-3.3.1-lp150.15.1<>,]ٸ/=„Wke⊷n&WK h`:7ݗ/cB/"j9K;HQ}0ƫ$dA^p^ԅF?ԬȜHD^oNo 7~X_?:IWht pYCҒ0;= !Z˜W>YNnu~%~[N]{D~,CPp+/;z{TKjG7xZ3mg/g2x*9GTe + >K_d?_Td   ? #*` p$$'| )( * ., [ ]8`di&iHl md:nL:r:sLsTsb(sd7sk8wE9xE:~JE=!>)?1@9CAFIG\HI X Y \D]^(b*xc+!d+e+f+l+u+v/(9wR@xUyXz^____PCpostfix3.3.1lp150.15.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program.]build703NopenSUSE Leap 15.0openSUSEIPL-1.0 OR EPL-2.0http://bugs.opensuse.orgProductivity/Networking/Email/Servershttp://www.postfix.orglinuxx86_64 test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in postfix.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in postfix.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-postfix-update-$service-new-in-upgrade" fi done for service in postfix.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi VERSIONTEST=$(test -x usr/sbin/postconf && usr/sbin/postconf proxy_read_maps 2>/dev/null || :) if [ -z "$VERSIONTEST" -a -f var/spool/postfix/pid/master.pid ]; then if checkproc -p var/spool/postfix/pid/master.pid usr/lib/postfix/master; then echo "postfix is still running. You have to stop postfix in order to" echo "install a newer version." exit 1 fi fi getent group postfix >/dev/null || groupadd -g 51 -o -r postfix getent group maildrop >/dev/null || groupadd -g 59 -o -r maildrop getent passwd postfix >/dev/null || useradd -r -o -g postfix -u 51 -s /bin/false -c "Postfix Daemon" -d /var/spool/postfix postfix usermod -G 59,mail postfix # ---------------------------------------------------------------------------# We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured # Check if main.cf and master.cf was changed manualy MAINCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/main.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/main.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MAINCH=1 fi fi MASTERCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/master.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/master.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MASTERCH=1 fi fi echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ $MASTERCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf && grep -v "^#" /etc/postfix/master.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/master.cf fi if [ $MAINCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf && grep -v "^#" /etc/postfix/main.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/main.cf fi fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset postfix.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in postfix.service ; do if [ ! -e "/run/rpm-postfix-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in postfix.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix 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 PNAME=mail SUBPNAME=-postfix 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 /sbin/ldconfig 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 postfix || : ( 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 postfix ) || : 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 postfix.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 postfix.service ) || : fi # --------------------------------------------------------------------------- test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart postfix.service ) || : fi else # package uninstall for service in postfix.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi /sbin/ldconfig # ---------------------------------------------------------------------------~g}]T) .'\{zsRR%'$H%XR1z21wIx))(J`  XH:[sR%'$H I XZ9x:x)`[xZ`|@90 xgI+yJ( \fJhJH҈:9)@)x*J@lZ[Jhk~Z<_g}((   # M -  E#d   Jz r u M&d $ +1+ 0 uv%^23K T &  A큤聤聤AAA큤A큀AA큤AA큤A큤AAAAAAAAAAAAAAAA]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]Ze]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]2a578b63978d4658a4982a6cd6cdc8b123eb297be639937a6febed1ab696868d6233f37dc93ae05d476bbeb03ffa6de4d006893a9d5c91d38afb66506d224e9dd5e51380e7ec868a42d336c868fc012ab95cac771d95361504cc6040b8d86221c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56d7c000b62ab236b5c5c4db8ad7edec232b2afe95d85c8e064a5c9f6d5308620fc3a8ab17dd75c874d9da896e729c516273900f8e5b80538daf60e8e95ff8666084c8bf2d0d78923734d713667ccbb34b703da09da9bfb4bc1ee1930e29252e5338b19f16f2cfe9cb398e59544cbbeeb4998718dbf231251a41eb31893aed223bbb3d6775b7fc8042b2b68232384694ac3bee6d1100b87f9dcd0840ee935dd2b5d1f8ccc0f7e3d745cf87893b9d1feec45b6e806db6b67180be55e3bf269a399b97a0a5a23df5f84d6c4396e5e1c4c6b10c690300ee392cfbf633002e300ce2cbe523e826b0192c39b42d71597caa8b3e5e166d1e6af98528f046f1ebe67279257987a8bb5574dc385076dc07254f804116424358cc8bdb9a9b53a15a83735def059df3100d111034858b951bed85886ef965e6b0d1e776fdbf45ae21e2f81d797aee72e247d4669ed2bbab4c643153c61a8f9d93e3bc8ec25cf2f1c20f89c2e16569906058e785c9ad48b3eee1736388dda6d1303b68fb53ce18be51a0da4c608d18d007e85eb2a3dc67c3c321b3460888ee06fea42fe5e4ded291c273c47c83a0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c142fac085b0a420236276365e4f84728f8a970d6fb5b22ded860610d0612a52acd3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef769e16b5686ca90b10093ce53f1dc9505cb24cf31e56688d228c4a739fd8bbd8819eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b050399c61c8aa9b4928006339bd1dbebd59081f7ea0bf20381936d55bcfcad72642fdf3be782f4cce5b80154b8c0973317c625378b858dc436fa13d058a683b575d7ac5924452faaf32bbfbd41f816947fccc3ff2fc17554be7bc5fff99d71ebe2eed12c4a05ddf1e305d7155fd9a68b5c948290c05538aedf58e88ddac2a7488aecd6ff7ab94a92159da177b67105cee1625528dbfc9787b25479a83f205e783d01f3acba8f28a41a5aaf1d631856a9ccb484feeb43d97b7bf558f291050ee114a5acd39bc6ab523fc65209ca3eb9b9ba0aa262ac4126165e92f7e50d4b1828e8eff157d6888b666880a11a1ef9db73c0563479078f45017caf1de7e9e83438f48357384c506c24bd7a4884067676dc17a43c1d737a8eba60d3ab7632f494665156d9961cfc75d9f200710be2c198fe66dac6fe7d2204377f9e073b52a488616ec4ae766c32277f60bba1b505e3837ccc29587c0cb4fbf65d20b17baa9463b0fb6d73737159f9e3bedf75645dd7c2254331beea55567da92f3b974d4ba8194ff816617c2faa6edec2450a9cfe004b09f3c37a2ccb4cd6fd2cb945bb95790f96375edf51cc914da2df1d516f93642aa01cb8fa4b9028746a7fa02a4bbffa23c147acee1929f84f0e96069826d1b7d654a768c5097a78fb84aad3d094b2752a721e3c681c44e207c92657c6a0bc2e5e23fcfd7933591c46869fff45c2986925ad108b501f0fed6cc4e1ad33d7a04cf31defa5c1db42c0446028435c3c6497be3d50d1246cac5155e9493ae483aadfdfa7116e1f5a556556315eb69bf43f3d09b4ed372fa969951b25081ae4eda1ee38da498f9dff3d51bdc3cadc59ec256ac4521139dd59f90d307ff9ea44824331c79df840618adcf081c70b13d458493d1cdba40cb65b705c45fddfaa3e62dfbba2fe7f7e97ee82ebd230abd954caba9ec2cf34b785f5e9ec4b8bdab3257f061303f9032840efbffb3c8a7d30b195728b4027bc457a0b26077540e7b734309edb39e98e28d2383d8509c59c97185f704a0868e4ed9818627fe6cfb8525493dfc08d27905eed98de0a55d8354456ef0b0e60a2bfece712ede53eff4be81c85711b0b5554e396dfa694697e96c939628c9815b225631e06e8b762a48eafec6711e02e4b21dd384dc0a2cda43ad46c5439e61440d32a21f1f25653895dffadac651e927976a18f3c096e113890f64e257c877dec6dd904cfcd2e427a7980f5e386ec8d2cf5df3a7aaea70bbf4c1b2534adafbde69d9d3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef719eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b050bed8c3a576785fbaed15afa4c338e44e106755a4a559b4405d616dc9463d833c97f1a43c1eb3447219b839b4417f844404719c9e3c017fa4ba2857311788d621ce712ede53eff4be81c85711b0b5554e396dfa694697e96c939628c9815b2256e43f2ce262ca99ef7c8ba939b8b180fec0ea15177b97350bd98a8c39d57559b024b44ab9ffdc590ba8beb360acc434e977e7a4be377c67bf96b27e7b20a29367285c456e2e07b222634a81521116ef08d23ae22b95712fe2d887b5291cf38ef2785f5e9ec4b8bdab3257f061303f9032840efbffb3c8a7d30b195728b4027bc4a1d33307bfa44df8255781c515eabfcdf15502e68543bead140fa55cc562d680de931f98920d14a9e8c55677632ffd595ac4fbb84a8552501773244da4bdc134e89d8535c277dd4101dbd5f258a75e9094a695a3ac98d40cbf9d6010b884e496ebbcc3cf8d97faa0728b772bc7dbbf94c663b788f3aeffd5098c61a58b5de5a0ac21939321e8dcbe387d812552658e3c61a38d4d3ec15256d2860da9ff3f0532ca785ba3f71455ad042931519e5bf90322bb4507ce0113f5ae30ab8f1cf095b90a4425c182c2ad00d8d67bf4a9eb39a762bea9f91037447ab40f9b4ddfb0287d41a6b9cacd3e22c49310814f117f11e39d70232d0d4041e4a4193678819164ffc3c1781307c8510cc11f44080732721a834af3f68dc9b8eb2505e84a0ee1f1ed43ae5807264394131c9f40c278ce6cc6d5dfb21e81bfe8f9fd66e98d1b947d5ba0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c15097a362c3755b59ff337a8ffcc3aeb10c57932624185029ea395fa6b9dec6494e5629c340f7a67da1391965355c052b279d70945205b2f1e7f7526292096c8693c8949072810754b98ac7954a85845daec139073e15dda51e846ca7462b59e60b31f312d5aefc26fcea8ef8a5cd86d78a89952ef32e32e3fdca0598cfadaa48f0c91c0c947df7b0ca8e99611bbae2519aa9674e1e5b5c9cdf4592062f98e1523a62f05dee6cac744af86aede1a5f356d39d1a3360c882ee4ebd700ac209c13e288fdaefb920d9dba0d9a3a6494dc14ae4cd38ea79ac44ee5cf94580c47b7b3d204dbee142e950d212afd70aa1af21d61d2f70c2f5dfb55c8250a3a5aebcd3709f98d1f2d258bbafad7cac33557f7dd4ed0b84b31f1b7757faef8e8a8197e9a35d07ce83280dbfd59c64fff72dd8e9b1b7c9befe7824f010f9fd8372c1467b796d8f7bcedbf66c3a5c9b426dae9df92a6e37f847bfd0fb9904e90d7b358a58f261e1542c9f903603f476f613353d88d98e11d6c5fe09a5ed3eaa7c057b5992896b6e57735477f5f9a6845b87bf6006ed08a1b5c2c9b175d3024e567f7d7f14a2b0e46a5a324e9755ab7c7bcc923d5361be7a9f1efe8d45750ce3694d03748bef86a32e3658392c03b18035a62b9b3906e8cb99cc8e1550fba25477d69aac667dbc65b62b156999e56827d8bcd8ae271c0af4c1502ebe36ac6d7ade180f4428695813d0ba2570cba6bc07bcd199640de2297e46dd25ed48707e6e527219d567e9c86184c20299ba3a142686e7c95d8ecbb7e89a3e37cf5ff3e3110e09fbc11bbffc7ef3a8b6d544d248700a13c4e98d127b0cc99642ecef071a8bfee36b88f30d3fe1dde70b78b73b3e7164f9f156a0520ba948c517775050d5e15264f280a2fd938a6f9fb0ecd2a4d7f4cfa4e96c5a357d222d745ecf2652f7018d6ff9f7e0c39a83630d9c88d931d8f1c6249222a85d58118b5ae271004f7453ac8f9803dd5194a1dd9f591a57afedeca2b7f2518775de6fe404fc7e43b13e99b59b76594bd974cffd61a5b5260798fb2a9d6ed3fda92736ddecdcea2bc9afa39d65dacca2f04b67b862bf2fcf42eb058b9810770db5ad217ce0945bc18b547f7c769f6315228bc08fca3b1d84217502bb9740d456f40f66cacc1dd976c3b1e9fb62f53383c333ba18d2d4101a0eba57e5230e421be0478ac1fd58778029eb0112764b1c1b4f630153103278b33be91949dd77ecdeaec8d684cdfee5e4b0d780702af5d4f3322542bad584aab6673f5369ac133f801523779092909210790da192b095d033c463357c5b20f7be012c6cfe016a637fe23c54dc1fc29218b72dd9929caf1fe6b2c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae5cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae539f116a3f57e37b11052fb17ed0f3e56a3caeb15dc6ac1b0199dc874bbc82566f499725b5493b0c4052b49b0521268c66f30b611eaf4392fe284c8f2558d571edc01d67f533d528c7daa17ad57081e461826853b9cd67c9b47d453af229fb37be54bc76e36f9165c9efadb0cd92fe52e5eeecca39f272fb0d9fcd8f066ad075909fa295334c7eb61a38611d79572e3b9807351a1ace2187be7122a535c5136285c8a9ef082fc2154eca502c34966a6b51d8e5acf7072f9207c742ccdf6ad9b1350ea672e2974dfb23a0ba943c154b168d873da4fe620a591b7dd1bca4b50e680add3e1d9b2ecf4ef4719a9375251264af81ac483191bb175bb6cc2e153186446e76695b4ee8491adcc696aad2c87c0bfbb30e0e371ed81b5a8a8cbe9cbc068715e37e52627aeb9074f23fc7c2e2f259feec1719e4c41a96e3c62dc26c0bbcf00edc222c6bd2dd101d15dde9af7cb7337edfdcb216c41b37affa13ace52f952ab10c5048047094fa0f701e0dbde2ad8aae567102d7eaf2ea99dae0b0a94503d919be6bdbb34e6561405aa53440f1dd84602af0d6825cd1058924ab91078421b8adf08a5d4630481103286e3db00ab5ef9404d0f6bea382d8da33afcce36b29e873097cd18241bfa59227151f75fc1125b2475b7e1ff6b77c2277e8f46a3d5cbef6b43ce4f67e3b216d23c37ad331ee6212ecd0d8bca85fb41040c81078db54168579aaa2cd24c8086d371fa5c1dd21aabf5a38581a43048414c49f9f1f7b442e64ed17e39efb4a8119815dff22e6d0c0ad06d759a86b1ccb8c500dbc2fb0b3edb83c9092834393557b9f4eb47a8592cac68111a734049d56712af3ccdedc8bf9377d03a44d245c488e02263c66cf115c8cd5aebaf629337153ac42a318f3621ea3eb2de839c13e7c6a7f6a3f1b1c6804d1ef600098ef90c7d90d7e2f401a0b0223c128651d6800935396d82ea8d9ba8fbdcc21fbcb2143b53f137396e1c3cbe0d40f1161e75c5a2d84a793921209b848fd431fb012bc8fb870ac06e2b5198f97b42dfe4e66fd2c80d63f5ca83a51d09925a3494e74a2a59deb3436f0c2929c43b9a7c06103733a3712c7debd842f7e483d7dbb64f7fc411d5f6daa33a53f81d2595e9a149ba17b04192f87ca8f461a7341279d6d29a0c34a416132ee980988553a817753f9df8af7db94fda9ddc1a6a0a2fedb19906256c9b005ef4d647f858ce9e952420b13295663dcddbca6542a3b15c466d07b06c4c1d4bcb3193e25c95f1cc638e2f8f20f8412a386323f1a15793170eeec90f20f358b8d5704227107c928dd2199b3f36810828d89732cc02c9e42e09764078eb5be9cd8176b260d31b3caff01e8f3dd6d551d6663d81e87ad0317123aa30d6518d69bce9a9807a697379615119b8ff1b7e2aaf71c62ff67847d3c8a8f477521b749c4e07f9a7bbb478b7566084aedc6beefbb525aa2257a53212eff3dd52d0509c2ce214bfcd97dc7a1b885dff9eb5222eeb6a620b87dd52f436e28bd15ed545a8bd79b754103ac939adb52718c89b2a31f7067eb143d505d7de1bf9325ed759018eb9f78de3c03a8b78cc8ddfadb80cd971e62a4e8fb334d4612227f22fc7e5fde50c0b775497ece9c09e080a63a9abc97ce080a0a43c3a2706f4a4b0a45a7ccfd782962e230511068e84e7b31baef459e27959f2fc4c90dcec008e06f9721758719cd5767ff2ca0aaf2c7647589b7a38501e05273c34f19d6cbd8752e86e75ebe37209b2c9783551463e2ca6734b0f7869de3f64bd646786a8bed051d6c02d096077b7b906afb41fcf36f6deacd7af326cc1740ffdaa836925d565369c33d4c460c89f489a3bd14a5dc1537bdf7dd24350468329c69b54580b8f4bc1ce591c9ccec65246c46b254da8e65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cfb0f712bed3a1686b237e087e66b3694ac27a3a4011914b00328940811e88ab636c1560b640e9d4898c3fa819a677cc6e5518c410825f5cbbb788e8b1471eab3aa5b94741409dcf6170a0df131b51e9ace280fccb2146767823cc48c7010c798a1cfad694c1e690464d659f2f3d59df704f9a8330450d22fdef40c4578680a31f23203dfed04846ed6cb2dd23b7f8dd879084c267e9b3f9aec297c69c11bf560885676864022190af93d3c3a59d1805292f11f7e0897e9f3eb2f8aad8a4aee7f6dc15b72480f9fb3b3c1d126a6f7ecbc267af93b5bb2e2b99757ea588109d891050dc8bc2d98eec8cf501ed31b7f0cc41b0bcd43e281b63c0bc8f2c20f5cd103985727b44c0c535d1ffe3cbe755359b9a9e875f5d6f30bf2df052c96aba1335ae0de4c96352bf22774208f6d55ffc7c4be761ba8f2570a3e56f166aea043b211ac17bb2155d56791311c4015db3372f404e59f6ec3387bf7164bc8aa8f3787d9e66bcf18e4fcc782ec7bfd86e702626d61b22ff910b1f1b828342aed5bb67871be540e076dd44d4a0973cb951444e64e25e9be1c1ed7c84d0f359b7e6a3316d0bf69b43d136f7b25b94430ed95a04c685a50ea8f9bca40a86d1496569dae3cfeb128d020378af9da1f59ea26e9e37fb8217de2e97798839b33c203542d4873f1d7dc0840f6b23bf58c8b1b45ec88fadf53c31bb3ee8240c5ba2881db2930f5ca68c1f76180c03f6d5152253cf2e787d52411ac5ad1a24e8bb6078ec62e7e8cf9e5b93676142b3546a5d54e6d32710ee6467454490822b3d682210c53f5c200ad1704d01d9180774664595e65a1730dff01709c874007483d44462d5cc7bdc54e30976c6e319295b12670de80c4d70ae7a428d72d5b4a5e1dc1edf2d942ef014aceac5076b6ba4ae9d4dd377b61318381351e5ae7627e21601eee47583f11f2edae65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cf5a2d090d1fb747489df4a62581e4c02a49541a8ad1834196061cab63908d0a30e3443958e70db4b05b61757ea8d40b33eb2ac22b6d9d5ccb25d15a04fc14c0127385bc83bbc14b58d4c98dc9babb7034afcb3ca07c19c952b43b2cfe1e270ea46ee77c91d4863a066ebe01599a6c7d226ccca9683e580ad6046c04b42ac41437../../ssl/certs../sbin/sendmail../sbin/sendmail../../lib64/libpostfix-dns.so../../lib64/libpostfix-global.so../../lib64/libpostfix-master.so../../lib64/libpostfix-tls.so../../lib64/libpostfix-util.so../sbin/sendmailservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpostfixrootpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootrootrootrootrootrootmaildroprootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootmaildroprootrootpostfix-3.3.1-lp150.15.1.src.rpmconfig(postfix)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)postfixpostfix(x86-64)smtp_daemon@ !@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(postfix)coreutilsdiffutilsfillupgrepgroup(mail)group(mail)iproute2libc.so.6()(64bit)libc.so.6(GLIBC_2.11)(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.2)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libcrypto.so.1.1()(64bit)libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)libdb-4.8.so()(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2.5)(64bit)libicuuc.so.60.2()(64bit)liblber-2.4.so.2()(64bit)libldap_r-2.4.so.2()(64bit)libnsl.so.2()(64bit)libnsl.so.2(LIBNSL_1.0)(64bit)libpcre.so.1()(64bit)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)libresolv.so.2()(64bit)libresolv.so.2(GLIBC_2.2.5)(64bit)libsasl2.so.3()(64bit)libssl.so.1.1()(64bit)libssl.so.1.1(OPENSSL_1_1_0)(64bit)permissionspermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowsystem-user-nobodysystemdsystemdsystemdsystemd3.3.1-lp150.15.13.0.4-14.6.0-14.0.4-14.0-15.2-1eximsendmail4.14.1 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postqueue 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2 PNAME=postfix 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]z3@]rJ@]'$]'$\N\Db[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@Peter Varkoly Ludwig Nussel Peter Varkoly Peter Varkoly Peter Varkoly Peter Varkoly varkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- bsc#1142881 - mkpostfixcert from Postfix still uses md5- fix build on kernel 5 by handling LINUX5 define (boo#1149724)- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- bsc#1140521 Postfix can not use ldap tables - add m4 as BuildRequires- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- bsc#1120110 L3: Running postfix set-permissions gives error that is cannot access postfix-ldap.so o Adapt the proposed patch in postfix-files in postfix-SUSE.tar.gz- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 (bsc#1094965) * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/sh/bin/shbuild70 1571738841  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKAMNO>QRSTUVWXYZ[\]^_`abcdefghijklmnpqrstuvwxyz{|}~3.3.1-lp150.15.13.3.1-lp150.15.13.3.1-lp150.15.1 smtppostfixpostfix.paranoidpostfixLICENSETLS_LICENSEaccessaliasesbounce.cf.defaultcanonicaldynamicmaps.cfgenericheader_checkshelo_accessldap_aliases.cfmain.cfmain.cf.defaultmakedefs.outmaster.cfopenssl_postfix.conf.inpost-installpostfix-filespostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptrelayrelay_ccertsrelocatedsasl_passwdsender_canonicalsslcacertscertssystemcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrtransportvirtualsasl2smtpd.confsmtpmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-ldap.sopostfix-pcre.sosendmailpostfix.servicelibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcesysconfig.mail-postfixsysconfig.postfixpostfixLICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzldap_table.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gzmysql_table.5.gznisplus_table.5.gzpcre_table.5.gzpgsql_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfix.xmlpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc/pam.d//etc/permissions.d//etc//etc/postfix//etc/postfix/ssl//etc/postfix/system//etc//etc/sasl2//etc/sysconfig/SuSEfirewall2.d/services//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/systemd/system//usr/lib64//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//usr/share/omc/svcinfo.d//var/adm/backup//var/lib//var/spool//var/spool/postfix/-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.opensuse.org/openSUSE:Maintenance:11313/openSUSE_Leap_15.0_Update/013fe389b247626d60480052f50a6d43-postfix.openSUSE_Leap_15.0_Updatedrpmxz5x86_64-suse-linux   !"#$%&'()*+,-./012345677777777777777777777777777777777777777777777777777777777777777777777778ASCII textdirectoryASCII text, with very long linesPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=0835da2327b738e74a55027cf01bdde1ec81af21, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=92475b67fc791cab08bc978603dae21b533b6526, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=0adac338a0394d0250902b759e12acfa002b451e, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=f039422ca1a71e8f8d0e1a29a25a3982d7a4da29, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=c28f353155fa1e31b3fbc2aaa62a1b8003f28f2d, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=0f564ced582140d809cd10f2c23dc82f0300adb9, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=00ad97014893d96963f5e92002285a75519749ec, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=76ddaea0da48972fffb790738dce0998c22b62f9, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=70b3736f49cc50ac897bd106d37bf2984e785cfb, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=230c924a996bcbe2c5e5db6c399ea5cd838f267d, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=946c990e5c8aaad3595985c942669b80a6c6d0f4, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=576715ec1b92eeeb983591ef53be0726c60db7cf, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=768e5a2e52424822fac9535b4e3540d8ca8fd5de, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=539ea7aa357483fb74acf3684701b80a00a06887, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=1c70615000c52059d211cef3d6ac8c307c6b502b, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=70906f6506b55a84ee1a9a20c1c7841149372f75, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=b63fed0f61fe3f546685e3dd2f9c4d676ec85fcc, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=b0b1e420c7f091088db11b65eb3250e6c75a2474, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=fa99667727d515dd001b7160c11eea9f3ffe3eae, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=8d59d09a722aba76318ca70c953d647c2ee0aab6, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=46b1bf69e3f2c9d2e6c16570b13ac2c31273e4f0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=584a1d7e05cc20e6b6c3570900f564e6c9bea908, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=577279af77b7dcc61340e219dbd63680f63a90fb, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=93aef089be1b6fd74fe5fb3e4fab5f3a50999342, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=576a7eb73d40e0865c51f0446e91bd3be938daa2, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=2ffc431579a570bfa71e44f94b0dafbd0c5f8a58, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=ced1226791779d6fa72edb19f3cbf96fde49ed22, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=df426a1ebe0173843882b781f1e180f2834840cd, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=1b3837ec2402c7abf07bdf14a5306de81ccad9a7, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=e00f5b506e527fe2fd9899ce35595dff97faac1d, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=2756a2def13d66e8a3d0886f2e4c7ec189c99a74, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=7bdf7bad96eb176234f0beb1d107ec9f3190aa6e, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=6d9b4268953fe9ea1d96dde35e46d95b769b1683, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=cbf3722ad65b49fc672e1a2378c040e5171d5a71, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=d517628a024dd4478e4026254cf1de15222f638e, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=570c2ca01da2bea59e48e46af9c3af2a463a5c47, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=f192a4492a919641bc1f0819afbc9c0bbe578607, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=e6d71bf2fe7bd6a57228b883c051495befac1253, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=fc906eacd75b828daf1b4ed0a2072eb9f33125bb, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=159d010f06949104a1f69aa7b6ee4af459410b90, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=14326058aa9b90bfbe644cfa9f4f595351f74a02, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=c70522b8106bacd41be7882e0851fe586c095188, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=be28c3b90bac624071dad9ede61bce13877f4634, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=5ece12abab6935e922fde5ce7f408b8085b317b6, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=e8d86c9ca98afc0a513896039542ce5769d41287, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=b727485c8d47acb07e3605017f738270aabc9479, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=553bbe3f53e8a8554f8d0f6c56247b5198c6be24, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=421a359da826a83775f5d44a1b903d6639319610, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=62546a1359d052d37d0f832b6c74d829b8002821, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)XML 1.0 document, ASCII text !(.5EMS[ciopqrst} #$%&+2=AEIMQW]chntz      RRRRRRRR%R$R'RRRRRR%R$R'RRRRRR%R$R'RRRR%R$R'RRRR#R%R$R'RRRR%R$R'RRRRR%R$R'RRRRRRRRRR%R&R#R$R'RR*RRRRRR%R$R'RRRRR$R'RRRRRR%R$R'RRRRRR%R$R'RRRR%R$R'RRRR%R$R'RRRRRRRRRR%R&R#R$R'RRRR%R$R'RRRRRR%R$R'RRRRR%R$R'RRRR%R$R'RRRR%R$R'RRRRRRRRRR%R&R#R$R'RR*RRRRRRRR%R&R#R$R'R*RRR%R$R'RRRRR%R&R#R$R'RRR,RRR%R&R#R$R'R+RRR%R$R'RRRR%R$R'RRRRRR%R$R'RRRRRRRRRRRR"RPR)RRRRR(RPRRRRRRRRPRRRRPRRRRRR,R+RRPRR!RRRRRRRRRR RRRRRRRRR$R'RRRRRR$R'RRRRRRR&R#R$R'R*RRR$R'RRR$R'RRR$R'RRR$R'RRR$R'RRRRR$R'RRRRR$R'RRRRR$R'RRRR$R'RRRRR$R'RRRRR$R'RRRRR$R'RRRRRR$R'RC)ƔȄ6BNutf-8598d84b6b1e29fbe0943325d637d699738103dda8cfb6317bdc0a5e558eabe11?P7zXZ !t/!]"k%jsܮGVeo3v?Fx);\asE=84wMFZ3z}U϶ Q\PUՉcZ{N*WiVq~U].IlO Ɔ#[AX Dl翌. *r?'NfK^kI/DO߀MC>(.xDtkw iʡsiVj`c龿h)`N+wwE@v&ԶJ0x)y; P\CKb,}9ݓ"1_e1EEnMf\ ^Շε$7b-)QKR- $7.,N"FP@JJSTR^^.ݣY;OhFj2w-kf@n솇aۚFLm:-Z㝨ԫmas JK+2=VA9M2[ I W)o:F"ԫ}Yxz iO:} d B<{\ _Ec)yƯwعZ[Qc'ONCr!+>^)Lъ} {xO${Xњ\{)^cv Pkɗ3K, ;EsU SM" RS@s#$AvV_VЩsb\]gjI4 S!ۋl7NRM nE}_p}ad׻bPFjG\/&4<~4w5ZCM mժn &ZTw䉼=gj fuD$N9W}y)Ѝ-; =?Sݙ)|p'RKվ.4 (Mo$[m0KNpK ,5DMq*b;JԈuDO0BEWf 6UtՠAnG~LZBN>nA9n(! ZWE7^2b_=ЃZ `y3[ɲG֗Gpգ e p䯍#0eﺦŽ㶌y?H P.Bѫ2ޠYи E}L&ƨjQF&hgAB/ =DiwMRޙ qғ Nc$ [^<18:{ұ}{Vw;4s击.l8 n U#Q>;`>noZ֗/I횵<*BRzBe]{z n1.nw5ؾ⢟MY?tvuzTG_aU,Br҃xr@i!z]Q'L\C<֔ёgOIGfd/)tZős̛YF"djxRB<-Q iVW$lv:xMGU{FDrԋ$x N]4;SF]FUDEco{(wFĒCXn;TF33)#py$4q4}Ym~3}: ';aRneeF/V af]ZtgphCGJ^](|* 1{vz^feF%NtU`*7~IdhK$1pvU4,γsrٵ Mx jBT C>{t]S= E0̷ B ()<e N@F )V2^p֔]DvtvF5$Du HwDI1m'C@_&^0]M`:_~k-`uDtUţ FNeUAzϱ3$qw/}x:*KÚ4x2'6}X~b4C=D4h/8zX@h[u%hlۨ !Xm?XL"o*C`k* SrT9  GH.{E2AZ~ wz=dӭ@~n.ɥ9寽d;([Y@q7in꟥Mաb\PzBňG*EL:h;P]DlC٬U7ƪ!? =SKUζ]=ln9 E  :+W&it5mETh)90ko1[%7bl3s ߚ>6F c涢HU[WtRR ŏ5{uWKJ,M"*[ ,ֳ߷l^+!|@@䀥fJ{+UTdtw:)n,,)}! (4['Mebu'a=Thl6b9EqF mn` 3۞uUM ņ\>? 0wJr[4*3~*=/6V/ܸfШ4M Ow2k4}jF3GnIJf2]4'Xb+ɍigR.` SFOc-[+M6 cs~k>ȴ`ewq{KǷ?۝^1S_{ÛجŒ!›k{Es\Cېd8ބ}zcR隸ZWǶwCeR7h9$)8?|a"/VPg.WQgo0wf3wH7z^"ԕQ2sC}pzY[ ~?I# fOo1Cs+%Lx(Xj|.UlZd"B=v/ۨ@=s A R YYyALXVv$[{ǠtbTOJ0DZ_G|tɖ| <<-:<]HH*J|^+= o1\,EEEs%CS}HYIr0A|CMA_7gdsuEjk1ɃO[(R2.aS+cbE#$lY3ﮯ=Q5@G"g"AL`ta U . SrSA3%P]p3uct|`=Kpܨ *=[YӘ!YhXhF3jE/;o3u+O\2xVXV<,#$#vN9!Fj 9#^i?f mNc8X&|gw2g@y*ŗB9OֈE^걉2p_ȘٓV߭Xv[FRv˗+j<4>/^T.xKk:\#u쀹U %Q,BO5蔢W7PԼA[\{Mda&Z+<GrI+@EZ &'[7'%}ODspY_.Q Ҋp6ԑ]FO[B4`l{H8 2X3z%PuMX]ksC [Pۊh>'"vNk2,uVywv7tj\}I'PxzsY.](5=Ϫ* 4(Q.u_aj9ZeihC꫱Dc#M#8Iގ;p}$sQhb`< ^p(u64Z4Brh mD2;dD cxE-e|wmtqq(-vJ _l uL!Z<(C#LĻc %Āx-6's`*B֌cg&s45W8Bz>BQ[8M)ӖwC3ŋ}04~"0#GX☁#P6FHN!U ֌U7 j"FԱ*S0:˞=^dA37 W/g/v&KmÆRw?sE_Bv5%r4CT o;ecW95bnգ=Щɬt}CX3HRP82n]]]f'7aSjoR^]oZ֡-9_G4?_*P 63(pऐ?1:8~JG2s B DTh31윆54[ VvcmLa]_\ d[+t15"bumD eZ_~?)옛2LXArW㬉'"]t@5,?PWT;Bps7."AO}ڡxv;ZsZ,Mw ]e^s`ͬکD"hkpk@Ĝޱ^K]БgVk'TN3xQǨ!j7I/pVLh{EH#__  p:,P-FʎzBb-dnv9:ʁf BP-o3anB@ri+"9U(պ=Բӂ/݁r¼# F]QzJ*\[*Nt^y%sad] 5ʓL W(:ɀlz~ZsAfGYa#0`8120>h?e*--Tcx&l k3^lXS<_̩+s$EfB#a0lucE n+n[4? E! ODS+^~S| rK\.r$nռӠ90sf*zV]ɤQ8{r03u7:2`.YN(҈D--ȃHUT4_빬.gAGyx-0F \3:4ƛxU7&v̎mQSJ7F`L^sNUD{@7.m\C턽*TgT}r*EU\6δZkQp(rN{UWMK^ofs& +x8J76Y!,jm=iZ))BeЗKvԬn9H9+_L~%f~'.^r)ifZMT*dz'L7!V/ϡdwD },WPnIc2uO_q&.7l!jYwU0֨-KVS2( G9sj5[z~. iO6䙆+BR@ r3q} 7,m҈wG9%zrsbǭ(~:yJlTxci[H}ƶ,o6fǁ;/We0UcJmOkf&$_RxfG} `!Q7)ST>(NZ4DAC>>P*"49!s !<\4&W6H1?x{ۃ rm3uc 8E=$ȳL%xZux>)il>k5]ܬV;y q#'3 -;IUk"W JꏣVc(@ʣ3s^,٭ =O ξ }6U dhPIىjV~B$|Mۡ,PŰ0}]wc Ml͂;J(./J7Vs}6N dF)_v%Ӑ&˸hqwFzYX(,f+S ][08rml'6Xvs4vY@S̶o,բJ+>F""2)-F=b*yp Dr#$ < v$@ e ;Ӥ8 ~ϴǁӜS-FgIU0.d$l(yC}@)Z{~ANg9A ֒ Rf p?gir@=12g?>&,<a.9[ӌ!x|IbE^pOi}^ ծ=Hs4N,f)Mܴ9% sÜ|_+\tkGH7DM'D2DZ~cOZ^#l~d0{mF>h$ of2D0R'DͪOyk~F]Yg랪KyQSu`^FTjCK% ԡk 5Wx…2mp{ 7 e\6{Xi>p!NPY.}Q%)>a;Q|Ad{]@4.s+7>bf~Lf'[~DJ<Ĩv`a^=^OҖ0Zl3q|4֢YXiίUB_6=s_QzgxY\e ZWoyM"ǩZz*yGFsϲ>"Ʊe7EEFK*P}Tit竕L*A0uZoߪ뾯eV8p շ ws,XAjUC}W_uAUei,TVMjplE]-%&.&YBgpg IP4މ BevJ+,ј@~|Ch1}:|vn4svYS>Jjb5؏bwB8 GG4W6.B2ǸZx>i_|$=j(8T7Us$=H%j<ءG_\/hP@a {]42W75yME` =+OQ|\Y XZ!!>s(Ϊho !{w_ d:'ܻ =@:r: NuFZ=;ٕ|5{U`M+?]?(&F=hbP$0X0lkg?e-q$M)ߢ)×c:8U&Ab4>9i>\-V;{u6=5HgYx' Hy.`Wez0PpGo* i LΑ!#q^G\QM H8kf&MwT(4"]P?װEBk4,_i2?ͥIcBuqs}S_z`շF8V6TkL{`|d=aSm~|#^yCHhFSomcޕ0Q  V>Y|v|34'S"BL\+/چeE\BT:AP'}Q"K>KŲ I]Y 'f)bRhnf}Ӝ"k֔ ՛g-;4tYhJ._1i!+vMϱ-h'RY+܉} }Ի}S9cVKsnKql0_sxB8gO)v3˽pTohf\+++-CF#)5$0 HOJN*GA߫ %m%oZJN6at1și^t=PrrrHQf5 {s&+x"]-܅ ys7$7"1/$jLl|$?Y3p]r捴w rf1,dTWMsjaew`6#R0&YemETi ֽW)-0=U{'/QX؆}I9UAwL!jޜUaA1l<4B\ 5)GAkjp|RLLgEhb]$pްpaP{#|TZ36"yC?*a [uL>tMf;:~Ь W_dX/Qc[ ~#\R2KҮW:@stfn۰npEu>Fu1k=r-&/&q|%Ze?LCu.cQh(SHpE mySb)-,뱀G}LO"+hCvZD"8 xuHwA[ScIB26#)|Z/E<8W+k]BJOŃ ӣ&02{kI@nNښy_t؅p<"^c䭛<[_x;=cؑX~OBq`t]] 2by|2Ә3s,NDXfAJ2(Qaj7,R`Ddo q9_ =ZXmeV[ZOwTv_/o'ifG SkT!S-GE3tNa$Y/MUR3]HӓB8t<^hQk X$̃;z\pw"\y.]SKPFyy5(P3_3(ug:My`ؽU)]Q#ɯ(cc42օ=}mOm7hc`a s8xZ/bA /P.ԌMm'#W'7ꙿ]w؛C)(Gl%Cbz;JptȃbC;o<蜷EÄ/DΥF׊] wANmz E?rl-cunWںccR8]`ɻp< )tpPDUU}1tOHq5R8ﴻV>bs~m"[w jY8 :~h9?|`G%bEe%Tk'.u'Ҏ1 vq6Is3i= 0|iWaG$8sHރ`T"”B.L6~e^Z*(Y]τj˂?xdrqƆPv`iaM׊_dC8=S^$Wu6En 1Z?[^K_R5H>R%=d'ƶڷd@^`4|_yŀ_y<ʼnV0 h䁊Ԑpc^aX+co4833b9 thw/.ϸBRpUcŬ?Ī7z  JN8s.dY>YkL)"n>[$vgBV5ZrH^'|>:9J}8o &Zl9ۆv_ő\4=~VEl#I'bM{I7,!70BW6ҟH_vǺV:<1'6W3OH7V/S4Aݘ2wg G*jyF,a(T3fcu]L/j+y*oCAl8PhOL;Ci/ ^L6r#K/W;b:Xi2E|[~fc>ԁ?n6&mR Liwm~u^d!_j`='&\(m{v6=$eA~؍YO?RUw9VZ6IjCqؾ95i0's}˅`Eвɰ.eyЍ(`y^< %!pAJM,}Rc"eeŤ&yq͆TIε+10d׸ֈR+nWuzjHAu=+B 濯ϔ#Nהz'Uyl:6Gudf>/ú0!dJ9No79I9C"lە.Fd'أRqf^Zj#A %,TżcljQq*̺4Ut1?-oSF eHC`~Ix- ƏY˝¢5&`x$wԮ݉e>EKev{"En: h&B:I| $WV =ސZZ<$ ̘GHx5Z#j^dⱗ45I l `5 ĂV)SB/#'jɵ9TJI;Xum2K+rgٻ(P^A-.CQC:?ZWiR鄇+~0љtM7s0>i!Xz_K~Bt odSt$ ͔XYQ]YQx,,;1)ZSltԭX1%$1м<\*>沟v ۯ)/ҷpBu_1&ߩв(q'S.׺܏bW //xO._4:*mQc> -QMH( ֢ &EO铏UT>O)$ uR'}Lܢc0$oNQQ )@pSA/a*nuzZn((IuiJ&Ž4bٵ/÷/Ĉq֒=AK20  HYV \*.?鱵Z(aUoC!u*j! B68~&#KLoo`7pn]pFMw'] )SB~{gonEZүTi8em Lb3r]~o3Bj2yx^Yj+WFTulD$D~+ WɔwIr*-\- C6%LabRa0Z( O [ZЯtb9}2[ uWO,r&X  !DY7{PC@XIR?Oc)hcՍN02!GrV3dfq790uFN^Bw'>j 46Sr)bL=E|_5Q#pHkzuف;68}u>ˮL¦(>!ax50&G"(L*Z:T*z(,)7fjy'iҠIц^JvHWNvk;"}'R zVV*5 #^A@<4@pP@Öґ5{R k #'˹Nr 7`vj̥0qCzul薳]M<zx`LH@gzfKKXÕ-`R1))d>EDq!iWd iY kSm,\)D]uSoa5tǿ"]HظQd!(=;cM,f3sU>T| :qTо/Eqv; X2FfÀ~BxuNQQmlr(wYÛ\ 8[(WE>J{% GH^wS<+;wamZ L+35NЅyr/OlAVKJUɪ{@ETr"3>{d/ʃv 6^y1ZJM)D0BTlWС pz8E^5B"L@$} 9=*}޹gM_#O%+0z 9EkcbEmEN3Y諣;G/`\HlcGI-@aCP-A m>:x0W'P Œnx!jlHJcXN6?ʖ5UִdE$;w&fqֺ̻Kl [=w` } h6B. ML 4۱uŗv:[ _ErQd":sOf,5Wgqݲf ,.zzlEZ}Z^cѣjl=Omg3~>DTE^̡蜝`ohq LCb[/"Ux uC5w86}<FDXF8y󳲜-נ5r4ڼ-gٹ27+ U z5\9'DMc2q(?+&U*d9ޫJgeUp ]!k.MݬX>e  ~ Fde>S:lhe9&AHJru64w8Dv 9J3N_kuEޤ )C|M`B`=vĊ@6W}m|@=.M:53r[]X/:;:{k4L?"ܽ-i&S;A 5-.-8.ځ,$UrZ;mlyx,5kF?pjsSRxYXv`F}5%8;%>'|ȃ}Z=liԁ7YrnHŜQ"bSen+ST*Ħنx,"mf B˭ BJna|swHEQl["E$!WDEl{ԋ+^wTh&ڏl8۬cྴmCkFr]0WLuՀP,Rѽ`@{aAx* |7 JaX^3Aǻ̯&` Úhder96߯sG _1,mF)ͼ$"βRuE<[/-shY- h!.it7~r1xOyIX~Z%pjW{J@&JN|}?;=inoʋDt4{>6Y#R")kӌ;`¢MfZ,kleAהK},ki; }d&ZڧtڔwN;#:ȟ!!!v,#olA:F*IQDLvvwvɛcǾIM/ olw 6U8Ջ D\< KrK4:_6f|@ 3x k;~gZ_`Mx<~M=G\PNi\Q  :M\5bn1i'';xܛ9+ֺ&/ue~6j5"&$ >;Dn ]o[DI6%#.˳? ̑$hO> Co:͂2]p[w-kt5%2͕)8a+H/;nYLH}ptXz1SW3(!^DJczy53lrveK<.;Zb ;TX|^15qT<Ъzg ò`TIw k$$ ÔG=f<qP0!2sP[#j`GtKtN+,+> oz7}#`CWMQwumyloJ y)Lxۖn!|9;|01b}XVaOӀ~L>\ІH~r5T,{Ll)x(jLT+ݶ'ˆ5dez)K~yLg"~3X @WX՝0׫u5p/\OC(nd؞lځ(iZdAQ1{T<XL fqRhCLqz5-u*ݠ!HLy# )Eң6Nz+yBkYa᫄ek9OfrXK4f0, ir0B pbڌq'ˁ=Ц[Ӏ4hS*[TIr#}>yI%(өuߎX"@ҹL|[qS ^/?+}l*T~<6r-?|wd~ݠf {h7#8p+!*) G[tt}!rŤt%aA#rKzMI"{=Prb.bnvRPzGo[v)@DĨ*|UtԦ^p y_jb R 4*1'`uhxy~+Dm/!8AP B9YL'XGBܪKUq*(m.cgR,>إ[MQ/%9tc1/@]KRs<`ztxXg K{ wiVupfqH .?~\ˊo&`g+8&ѹ ak-ٌ5nA# )mJldh~JI3bnVrZ@Ѽ/$毋qSzy,j|VC(PvAuXhmzf6m2,S[ρu[2SF۾"ESA,>0X_lNGǚm}W|}y4 U?LZwP"P0n;F~]1:0؅:EaE9ΧNۭ V~{u41IjPwVim/}ʛ|Dem!vi84i4_)4 <^DQ?: h|+l6XYC0>4`'O#ޯZ1=ZH7W9E@cq5hO{9>9EQK:ۆIÄ7`K#ַޜM By^N~Dahe|sLd ɏ@w3Y1F26\T>&Yr 쒝E]]#1afmy{ըYWl9MeDƌnOS:[S0u!-{z==X?]_r3MŦ(WO0yp]Δ!Z|7wTKB,aPXˠZ)M%3C8.CVPc bl~FRL e`$Vb.C'L.LFqBJ˝#Ȱ'>su\8(y\OT6r#N}޿0Z jIŠ&zn%K°w`\ᨷf|Ix K= d _z@pE(ap zTр +U NL&Z}\@ nƅ]Ve=PcZ4 ŏ $&ƾ]iN?Zy vCL 󸽫qNWv[zϣXE քY tÞ9QLJTCVvq'!nħyf0l$M+owq12,G%mU``N߈:^ 'Tn1­#Y[;Ên_jl:q~ aw"٨V?>!)9_Qa@E0fa%&oeH˸, GPl% `Z:Z]jemal"TMnK k]2 $]@+hSحL&EٟY_*NK_7r>5lo-DxlX6GȌ+ZDO-VOw "K4O9Dls/L wQ`+[*;d"%puAWXnaf8 )m ] )U)P1}~pn\.=sPC 6=5|Yb;77:W.OzM.'#rx1d6ʿA!}jxP'[뗇|ae\ՋXcܲ'`OY5sDtӄu:o;,G]~BnTچL \1.QdV܅导=;TDϫ@[ؿx-$k&v8NB hyG٭rQd y|.P%wVp. fj`[r^".f.l/55U05! #% tZQ ~Jئn4TZi ,`|:>%a4@{A )i`~>yH#(ᄎ#Ɏ#Ҷl]:-~ wṐ#|MuÀdTO {L]TxtHdˋOH79YxtPQ]b {5֭GA0Zu1v%zHiB85+5LPTJpzr_ר[)+o ;ؑe{{Ե{Cr1Jk~ԠHW!7X!8d{a jC'>A{SYV `=]r󉌰]B]'jĜz2m[P땉-T$euFZi6=o|zJPrM gLwS[JXF|TrIuQl5;242r1]} yw8 eJKu\u,G< ذJl0 z BB6Tie_n|HfI<^.ň}F 1>]p[ G9'j F(HY!͟82m];g*_Q8^t$s"bz@g߇QnYt)Q<%ȵĿA? eB=ҧw7H2n!R@-'k6Vn":FI`nLR!\AħB X3MFî*:{_ \\/DsߛӥbaUPtMUtgk.[ﻬ<z55g>{4s |{hZ!Wܝō03E ^֦1 nO.kOeآxcu,z1P\0^Ȇ RCeSNk-ƔOTSӥ늾ְ4HtҨQ[4UL5y60^~8зRSyXe78.Kf%R[@ =uEwdTV+d yw: ɟ~.QcƇ01pT̀;Y$L-$Y1O;S&:>|SzI"?)SԊߎc`?_8L=֞N; b,KcR@ۏ`d%~Ugl*kր`UփӘ90͜r|)J95Pȫx%9)VYzDkV^9 yo! ?`m_lʫn#'Ɓ A:c#La] /ZQCS!G>S.1Igo9蕭YyD"x7fL[zZuq%*h?AYtP_ƷM׆wW!1_-W쒚;je3ǒLGQg6m3nc>I(-objeԊ rI-ObD%-hC5x\2 j`p v,:xZPE@haHMH8 `ӞJ Zw$+uĖqS5X J jMod[D@hLŖPM<p"lm*e^oYcu}3m} cIz?67Kz}Wt9*^0h3K[t:[hΞ7  :/!}[%ƶ j[]9AV_'RYY9KHp,x %j#ɩJ,Hcnd^XڹbU1jpi}0l F:`ir'wÆX5N>琪JOYkIv!^ySnb/!gdT \BТ[ 8uDbN4 ᭌ޴îK*Ix²n DeiL(0T@=,n?kb|:ϿiZM *EvYf{ <.׽&;د8,ԥ?SMďD `LX[ (鎫`,WT=J |Ҷ"A)O.+@w^*`7l[, VcaZWkO]&W;@0{!uvl֩Y\]r=en;$ L E) dЗ/l֮ ݠ 8@}az8}<֟"'-m'%Ss"5.g*D}ؙ֌7xFruJESԛ6/\zѻO>'쐔FSWG:6_t PJ{ׂ |5y5NPuK Kp /=O1%h @xxw|= a;]c$c  (10m|6B@'Jn`\_\>3OTNnLnGAw 2x\r;cV*{t!ˬ0<_<7DM~BE^>Ț 2GY*rD^ 1JӁvǓ'yN*>(qܷgɽ#؟[ZnLRcLR)o$Uc~e+|>EHR?8TVXW0k\ME|uYޝV#hg2ܻG~`!90'F/9Wz޵qwbѴ%Li,V`7F\v gCA WVK[6A]Ia< X":3iyUIPK1^\(}KLH!W&'Z(!)~0)6mT)CR"%>ƌL~FZ&V +WaY  ᯔT6fomWZ: Db@ПnXaFRLp(XO|0a 7 =,޽?28Aڛ.l7;h>k߃EA4j'g|J=%ZQ.XQf⍮ (uYvY25eZI>l=i#h~ W`ÈRX$L2ͶX*|%n\ӕa}tOizUd5*'GC}{Ps^ErK%+;# JHԊXŮ rkw+GJaq\m,1=SQ0w:N[վ+>)1ѷOKxxgWqj62Y1;qTU{o?m -.l1o6ZzP ބ] z X~gRߕRz{YĚNg\$Ƹ0[kRYWVyS^ HbJS l{}N :A;V,.s)F uK=g:D/ ˮKE31*eoeV KWS;3Q^ ҈ަɟx ǏQvAo|Ű`* 7BFDh׉ 7U(D" "rĤ̅7Nz&F'&;nY4'i4.uzh dZ<|ȎQ13GC v]Gk.?:DrwA> [J9^@. f)!ʿНT3Ys%#L3AnbG;1&+`#4iWe߇Ij_c!ѯn=k/OL/zx΃wQ|ː胋Byd\(+ܓ>޵#џ Ҏnr([d" 2qz!q.T>g4 CiMei28uR;Pe:}F~Ҩ*msԜ#`&$m~:>c$r*g *% #)EKc86vߦl1ELy Zo[&ZIW(r2>B&.ʆ=wfXK̋gl[|f" rq2CHY.->4dJ$"%Ww,\fҐUuA͊A^}n?8T^-όN⠆o9DvJZqnse'o&Wz(IFHk?C(5b߁pqa)qã\DR0|`ݺ^Ni+mZXWk[MP =:@Jxqف Fkn i?Aa:}pB#"k5H! 52v_'L@^!y rKXHG)Ghb\Aܤ̈́Y zx[BbPK4IT{ ^f-.h0j|rb"Џq@pbh=3c_+tN4ou]<50#$g]eTd[5$hb Ǵ-d?1eljW-\:fQg|8F$6^$r㨗\G;o.\L?8)”`77rТseOU!_إ^ KYf2X ?ev̓zeknG;9O~ݬJ}e& CV[6CXyv]^$'%` N~*BRjA.L|DBSl#EƲ qAA|OadVZ>~5uO`EZ??+lxXv?+WEs7̠ZewWDaX@0p@ 9*GWX)BL_S ƧlU2I9KIR:fpq% / r84gC ۨ2]e栗U"dv{ 鼜#v{UY_8k>;Jjj{"sEO oa:b)?N&oak LSo. E#Bqw3lI z7d/8xR׆]hְ=4 9]K8+kON0 7]`ǣ;h_rJ6d4ܤ)=iə {?Kű}tCj@T;_DHc'j`4GWDE HdܢH ˯&̥ Q-! QA|^AsDžV7vϺMuއ76Jl`:9{sWwpoeLbx-EJlln /-vqJ'lADœdC5ܸn,%S31Z]8ͳ[ PFRoOQxA M5eJٍPuҋ:,o upH7\Ya8eJMd늸P-n53-˷BHolʍ{f G>FX߸nC(.bqܫ$YwEYmYY=#L;pP8-Q uOш#yTRO47S0\6Λ5^‹3V*FPQJ= 4R箫:(]<9Q[3*)~rئܿ9v=4aTlw]IFy?.l}n@_ɞ wO? 7Fr!`kò5Zu92Q{%IMvb›eJ$/-ڭU^1~GWۺ^! g3LVSlt{/̳ TvWEc~\O^i 'ft]b.?3H98pjRma10UnĬk4N"*Hjݸ4c9ͽV9ACБwP7M3[|˝Q!Ϳ^` K̅~_@xGz.Xn!1U03zFHܶe ohJO:TtDfv!&$GdDxg6%Mn?,CD#H|q 3/5kENvmI_U`> ߨd+g{{~e&>0 t׏RňpnZ2eS~bSocҲ 6017e |3T.!FpDsGH2:`%ZʀDrvWf#F?[%.N'(YFcIl+6V5j}ј 9 `{m3SB/|Ykwِx8 _(kw%?:-1]Y9DA vƎu˛-!5X"TgK+igGAJ >.PyߢcnŻDQlwieZ;/G?y]lcQ<pV_^azr]^qq7*5F a2x=ŀ{-zwNѭt5,w1aesoytLrkDKMU4G1"O-^tU,_Noqd~V!x3ŸGO5~N?i|*:.ZLoXCq<{M(eu59j*.cҍU̽a;נVfnT|#llI /QH &ALCGszU /1me:kT|ޓŸ2a D5@yKYM 8_̓U mt9/ԙwZ{𵝍.c\zsBF]b> b*+0gJBVR e1jBρw/\,5is FLK !" v!rC{t9qӓcka}!4V`W*"Q N`TgG@T h֒bA"(a[e!"2NN* M89yC…q#<ŒTkWPT"(w F"b[Udc*VV NY"X!D@CFqZX K] wTC֏eCgز.lPs78ДO=cdw\Jl/Z!1Xt+"5͟_yzopyUZ_(罚[`S'I/If m_\ x#gpccm5-W#'O`Fڨb6^L@QAAe4n`msڪ =b뙇7YphT^0,ZI;fo}`X-E;UNnȩCqrۗNNx8 jAp|[nTu&[ߟFz=ePӹ0q;r#0vffG k1s~\֪Ѵ&#7љRa'P1B2vb&5mMc- \ܥUN-3DQ9=`ŽF[Yp_~Mm]n'([ AR" U%펈t#9qG5@rMܿ y?ȾKݿr^įIab2Q5' [m|4,@޻Q`*3u{=-kF-CoݻJ| ʩHݵݽo0ttEvȬѷ7x@-)jz7 ղYR$x6$=Ӊ>OdQ`DG9qBu\+-#D yM{< Ej 7Hz\Wĥdj2s-Rnk ^{m={٬zD3R\7mKetpأv}2F:`#nLaE;b lKb, L(3Zg/]TzwUH]lY?M7Kwm ~=z .G8^שo}wmQ+? =@NxP$Y;ĭ5]^ȔD.\wZNFyn˸ bAB{HU}@[vn@Ʋ3uoE aW_CrȀ^*Yo|?S]M mȼjt}zwW CHQyrn5Klũ0NZ[e!y,Aa*gC[绡 @9uPL[턒lHL;]zן~5'Ҏ% }W'(c'*w< mŲ@w(__irZ&OTMs!дr{@8x 8zIvK#80zO= q--I_lx7/(Į߸7MrdQɏNS 1CQڡ\d°y/sA|D^U.Q3#%Cb. pc?"PZC$B)|E:4z>L;s<8nRdi[o7Ib:W͡ n ^@< ͷHhW&$+wTvqU_2Ք LYBԩ!BՈRŸF zwA .o% hL -ڱˆD9Hgd Mpw{^,a(nʠRG 2RaZI ^goaʗ.n NBj+h*u^]QkˠJ,%ԢT.6ǹVǚ$K0;G%kXY|JB}/0Aj6 yʟ%x~_5B 7<LK LbBAfUA,W5Y ^ úMÝhT?B2 E9hhMy]k0e`9=mY\K*c i'bߍl qa?"43`t5eߞeQoR#u9`4FkX!EO ?'\cuWG&J{uأ K[[^7vW4Vk=w@>]ⷥ=⦴>~6ySS6wCy:uk?4QLXI. 3|Ѻqk +ĝ&48o&eJd7.?G >N_[e}ު"hcVh5Xއ:g|_G^8HpiIҭW>Rɍ%tK߽/rfޝf,tI&5.==lZǕD+&W!QZܯ-@H!ƆzAœj;nըH1a=)Ja[h,񱳭mÚ|*RqD_clD͢\3g?ns@>;t6q=8=alcz]A()5xrL8r\T(\u`An~vzO: N:9)^8p6N2F*:/BGf̼ ZR Ny?EWz%d4t0"( vk .*wZ ;3 gt/FišrCqZOM*0nAV]djI }qlD0ݦ:wC3TBRlXX4:GļSV??j/ TW3Tv5SsP,Gq7jjx%٣"AK_ bi\KKrDtUzEXI;b[\/n6vyK[:Jbƪd8Mn}I>lI%OqI'duH'NVκ&1cq'94Թ*N|& yC86H%%3*_zVNꨯYz=J&M~Kg蹀p1|wyMi>hα(F7f!RX2Fxeh3A#0嚡Qs~؋hW}^Aiޗv16"vԭ( [0 "p R.<&R[+Zi<'e^^E20CYrEt]']tcP4ۤQ:=! *"pI٩c1quOwDUʺTȰ`)nmQ 1Ҵ-zs}p}<CKpm&a, NGy%Rv^^˃l(!u@ah+U4PœةԵ4 k7: ѪEFn%U~cg3Eň ȟ,N1CtbvicB~'(3oo gvNў()yxzBkC-׎9mр|<"Lhog S i$"˽(BCg5/ {H/p*&%4-5PƒШ'I0 MjEl"-7qK*ִhV\yWQ?:5Nv`jd$3Y+X]gYKo͛d*$;}1-=[D4t-4Š AXx~`TS qP;4VGVإ? &]B,\4oNbadw-pɫ械vw,G[cgj6čp.~l{=6<&e*HQй5Ku(U覥bKgs -w؆fy[i~!T]r} ElՇQE'jRH<fk>(G"" p 3b]d5{w}G};RÇIk 6ZZ {.{k\cd0NK :قbƅVCshQ5pX@>+mt͞Ito@rWl&'Ysǵ/95hrh!(V$dNRߘ.^*FraE<5[Isb|}({>f0>+>kA@̓B>P}LW]ӈqRzaڈ)XG,SJrE(2ހv2b`Nuw4@zHl' +m+-~( t yd@T$!"J{ Y|GY`(fqde̯nVpA܊*.Al7ç!p)핻I/a ckY!پk=視}%(?s|<Ɠ`؂[ yPR&>fדճfJ1bue Cu 9hOCh-2Dǻ ^iwpu\Sbn_Y&ǼsI'fGJд|AQi܋@|҂Μ tI 3:F,%ϯPR5.M;*~lzHw{hdT}!?*1^z_IȈW0a$? x`SC{r1\k\>pxyMRIs=f$׻E$*B8]~{sb7u#p]f)lt:bgPj쾻HN܏#N6Ï ^GW1mTb]`Dcw2=nҖ/F\-^6#ҟCXnA^jƤ nRNo"E}Qݿunz ]X_' 8tYPEBzaEOL]v}qhIUtw2[r|ѵ{%%C:u 0C#N]uBoC`|ԇ/4E2Tw۱-~"T1xJlK 7f?JHk,b#؀=yIY@20=X+J-bf^ASF%Ch6!>!=>ad&ejrU##(-ಞY+Ist.͞Uuβ@ˑl( h- `Tm<1S1ڼN͸0Vn!-ȒZz@mC+\+n8˵(UchmmU0+W[%*jxn[]`ND&e 6쐪+dًGa#؃ {o]pE" >w8|ɒaU)SmYul _!_:m(fmQASfmc]kJXyh O<(R Oi#/*}^h`Eu0խ!*~)PVhaYQbrYIaQs:xVV5,Ԥcz`R52eɋXuEJkC:cxjS z~"pJwBc1z (JY]#e0`]ˎ /UG4K<[$ p;t׌gz@H+=9#JERI8”zCu::;0XN^SUd.q3.19, (ѾTͼהH"҃\ U[eOƴrglEPmnV!rCV"Q uslHBKW "OG !C#:PT"\ +֐ 4*9ӫ1Ұ2/T{wyETEjC #/e="UE )8srl/!)J^6̒"lPQD˩uS70ea@tȫp r;ʶJk%Wd.MXVYuU&\z_ M[VpZPp~KD~E+/o#2JY(u"&|&.pʄp8/ BC+͡q,&VGebQ$zYrP5,UQouQ $A'8Z EL&\XO/+]a =(>J˚\nMRnX3mw)D5 Sֲ;+B1*-[8◌C,Y{͞3&0\X bghΙj5' $8Gx}+h_{uu3`[ B%csp6T酚 Hpt幌[fu,CAGѠ&D #mS5iHIžTwųsubkUu\݈Id#`$;3)yc5,؝#SHL+u'0 *`+>ْȦ4WV  s`a}τXe%DlA4gj[BҨkߐ_VK$Lޚ\43=LH8Ip P|鉏n\yk/eV{&hk _4+My2HyׄI.2=2 ab*ה]DD˦ws>pYn`S.6򀾈gyƧ2D{X cQww5 QlU}_%H6Y:t!i3粟+J4(򓑟T$ YBmWթ#DآKPfttZ'r㹱Y1J9xLŴ8CFk)Uy )IpKYPn&E ܗ x$*s8vms'ߢЮJ㳰b.5˟Ӊniqmꌍ(>i4V=? ԗAOM"7{,v4ո#B A/ͺ_\XZ/,Z_@]NF`aȔN@Ωfqmljx=ݯG&Z2 /D UG֟kXI}lȀb֔ᖬ%1X"|̉ \!jrj`l1u_׊Jo:hy5lo g_&B27{ ii!ʸA] ib֏L'Vq\_u lQBEe.._; ( 2.FZЄMFA2TwϗX6/-VD1?9,t9_Y<_ksқYpU IFNϾ C /|~*{|/`n#-tXU76`|"j6 4\]|>BQLI mC.yQӁ>Ofr՚ gK36r' Zwj 5jd}PܬAn x*j "r!޳/v_ZStcp8G]'$^S^9gr<*ys|p}jeܘ۲ܲꮽLJ c頥$c`N-y~'2+!教ur'#']M'js=kGݠӄ;</y㏷ 3q鴑9Ĩ%яГuʾL=fiPS|{H '3HܲKb؝hCs#&1/Ug񈗺98pջ>9QZuaGRB {,cPÄKH hrNt܇?jp}3J?FbH5__K{)2ZW E.=l[& sw2YƠ+S2DUs1M7ů̠$7;7봱9rXg T6>i9N|m}K)…\{eʡ{\"JS_&'sj0w;J,JЉL5w[`8=Fk VWjdU}^p1Ww_A_|[Cnv˩!5Ǣy 4~^8wϟ|e\^AX^D,U?Q̳?FxSJve8P& 䜍@ZE{ONH.r7P^T])M|Ȫ@篮@ѭmH*ø5SK{ԋxhCtKWB)IaȆJma"ƿ+$hݒIߛXTGO9AOQ^~C[עI ~za5!A ʣЭ_̦y9̾!K {Q*\vvb ^I ivc4aB\%$%1Zz_,ĜlaH@7->r_zّORl(R%9zZ+&HP{t+FsqPh5c;Mz@w,Dg;62֞q\75FLzCB`q-l]E2A- aC> 7e"LE$:8&s1SQ(熮F;χ{2/PcLѷ9Th/ i?WYuHhb4*J5{y {OF| ÊօuaM%rs&[Ȳ>7VC l^aL<'?:yp;<Wd0n}9Y*EOE }ɐ{':Cb۳ray,OM'ʥu8657&V}ӮnP"'R*otu\*=ZI"d8wvm2*-d0f uq}Au20/lPˏF׬ ioYąd^򶢟;5C_e"P ٚszoZX#~9=S!R/jfϕyn% 6I6pAg-AB0ĵab=P-;w Zj^̖n1Sۡ kB& c)CF,.8SץOݩAENwn|tJ;Z=cl`N;V<;apl&pLעmIl/+YԠ<م"+* wo :7ftCQ@1aFPoά&dj vQX=OhmkrD4س症`j@ =ۅ,b!ܣX1_s,?Gop S`.ްjJǸu$\Ybl!Gg[vDKE*n.A΍NH9^-&DB屓%׳+sEYJ5]\0 ❧H)F5BQtoo;83OPSpN&V'jbΏ,k;ѶC\ F2lQZ!п۷3՜h=Qpm 'Oc'l Vԑ Qc3a Gk}0dɢw+٩14h~k"tUTT= xfFm`4Z\C0_ G1\N4 pR0F8qo$XM, x^OGz)4+Q]}By rl B*יjQ8XL.i,!u|Óe X"ԉ0> H6߼gzKK/}+u 7ğoT#e'|9D"–lIi4Kߕ&h p8qⱒ `kMM/@ޭ9q}Q7Ed pXRl_ 9H"e2Po~ս!BxfCHdڋ^Pq4bGI_LpԖ&Z$LMɭ+`řHF[KO~+JAG $IF '&FW(*~,swc 14âJ-&"mWnKP^,i;vat\X6#Vӊ#T:be6&9$%~R*\]exgՐ`uuN: p =⦄Xy }N!}ІR? ; -HR׍sEIw *IE*+> cl)R42g1.\QvROԔK=Ytּٛ9Û`Hvǡ=-SZ[|Z_$yߌ6;79da5ؒ)="gKvUwfѣh s ٝG'fҬӧvY!r2PtJ rLF5ޏ#\^^"cxl*GDt+ʫ>(C C{brļc^Π(:'Z]l#  RQ9gv!LȂXW4&YDrѰnFa HaK;KȺv-(VC RN%!$O(pVFdʎu)Ruk2u CVa ~o,ց闬]cƒ~`o$Ñr#us jOEd'8X5LXsNzlf䓅#l*}ztᑦk=*Ql^`j.술"78'q Wc+:}dHܱr[JJt^-- lg)3'l_ QQ}$Je|Tv=q+&m]c~qBgOGDfJu73 f #{1 Y램$#⪐Y$۩aB' 6e Of苈|Yg!6417KaR~ۇm)Jxjó雂B+>+3(P`j|/rQDR$xr(Y;x3ћnZ菚 |QnOg $QW}wye 1B663#u3O}E-G%'pn|/㙨_?z]KKxݫ,Dh;2sveKߺ=uƤ=v5EflLщ0bKt_TpgPܻ l᪡w@> t9Y)ݛ!3֑8)&ha|8ML/;sZ/Ͼ'ѹ1+[ hnB̯,w DgFDe\ &﫧-W-Ӟ`7ûSggZLNǃ~J!-pJμ[mȠNG,8^ɲKBŲ9jgv<#QS|D~>ÓN.e_aS݄;9pc#=Pw#45{jV\jҙ#|@&TGnOC;$osNKdbFV-Xym^;O8#oFjzw)ESַq.KFt68q ߉*p6'8(dV~x5(?Jk484fGhk\B۶2s>Z*GEA "'/Zwz/ߍ+'8||Mr3@[<'g c^DxA[p˰T' m0𶣷Y`|~'Р="_wK.ae ]O1 -r$Ov-g$y9uX#gr=- sFs[7ACffFbP"TjQn=wk_ (Ț ѮK/}0C~aLOX޿o֊q]="&?)ԻG4'If*#Yi*BVo-F ~_/2fƑWLw~ag:ҧd|UXsʦrQDӰ7p&-[znBpDz+@NzzqѪV7g0&yZP'$O!2hME~rd5007=/B{/BC@d=힧%I;ybmccsڋ-+́jݞ}(.O2$VܼG+ka}H } IhDe"-;FGz q?&ZeI{ wxjxנŋՀ}%2,%1Z XF/Áe?(z[-Wz~% B^jTSyӧTSϝF^~|9R)*\Y{U5!o@P͏X5i=lI} ٌrB8 \SG1ÀRSQ>&;B0s鰿^p OϳQê&G}{ cz na̐vAv=qEN'߰} Wc9!|",EἮ\&k4f|6~Ypώs[c2,4:z=Z&vV g<)Ԛ=z03џ|~kV $RI7r",L">`=D/)G`5 %owWzwSb+#Bc}LX m8 lZ)'̺ e7腛̻O.sQ۩Ϙb4dsVO1ƈvKbO4\BSq#_y +eҩw:"iH)GQ*`K#+݅(-VUyPVD5nW3q!#8CQoT+֞@'Ori;OBJj3ߨ}h&`Th3jHY:WҧC3K߁UceYk^eb3D.r\^HLy7(&~#{݇z,%?ġzT0 ?Nbk5r[5ϪU[6a$U FѾ[\1c넄$~t`61|'{* ݌ИrPkskI8/9ClO 'LȰ3'^,CD];  3<ݯ𧲧3 ԩ|nk8Ju@wVn5ߟo!DDDDҾX_ ){'Ð8K~Ǣݧ@*AEBՐRlی8Rc[8S7>_zbf-? Su,g.:Z{~ZZ_+v#ێC.0RJ*P,t\G~eX82P*v%.TDpm"ܔhJt/ cIBB,[k\"c̘1.'Qfԙǿr&zU7ξqF~\D5mtF.ڄь,N=ŋGi`׋MXjwe)/zxi#Ftp7EwlM8[b~RYbl Ű%N]9lbFӃjM(IJ:  u:NAY7&-Y‡zO sUCۖOG7X sYl y5݄K/hV Udo-',BͩiWYa$ sv~vԼ -Z,d^ ܄rUw\TG{%eN>b{$#xzV ?ĝ}ӎG\@J; v J쎩u ++<壵X,4L\'h!j? e`>Yz*>\7XRaOmqL6ny7K GDb&xؕU&JQ뽥2,yN¥&6]WIBzDW-0ƓrCYG&8qf̖$Z*`+ Ce8^lܑxEp_G3*.yoՏl #p>YDDU([srd0xzgdhsQ+Y?Y [4Fr\.#חT*CUENk2 S)?yà}I#?4+Ecq4߁`Yk[ a5rH fVv|^ GhNL К'An֤d1z11Oԃ Ip^c5ά F@?B(5FP 5F<ʚjjW(aZ9]f+w}p [T3xD[lEő4j^PXNr&w7$t yqhyXy$ lI3`,_8| ÔҶK?HpEU锯>y.8lŽv+;?9N}]zͧm)x9 l]3Co8%Ɉ%= uuG*߾ՙ'%)Ԃ/P⎕*jLJ=u j1EAvR :^-H \MerFN.k}ŬI|A> L># 562L̿Lsg9F $#jU7Wb[J$xg'M"Uݧtf界IrKOr:g}XLɮO h=;Gy0 ^n ]}Q&#Y18pVYisաC9X h__!kިj Qo>8M^oimX{&Q~^<=B3Qb5|yt؇h_̏/^>.䬏o>BQ:觚ԕ mL !md`e yXYO2āHGxt[+w^}狣XEs;j0{I9Jrl~vT.!(OQxJmz*E1"B\{^nDa,GS#%mTn Ff H{ܡ+~׎NdŏO[> ZP@7E!_gVZ]/ƥjJ`=>6_ g-j9VN/]էZ23xɗ , {vS.cBWpn\6m()'巺(V4b!$ .a!>^Q[o_(FDrbƣ(kmQ^ ܮQ5̄RЛs_{Py,a[ p& IJߧ V h7%ޮL[eȽ*KJ7DjH1QPcv.B_u28'q~>&Ɠ +/C\oQ. ! LKmvB\v76QwwA>QVQc]k&ZGۮîJi s}ϮmB=UZ(ZE`r$? Y4oGUva c&Q~zE ]VZ:x3{1;[p*ľHt/>JG75Q̳aK.uxZ&.|ح~ ~H=tH(0Aɐ/F-0N9_p<&,J0zƎ3WyqɞcFLvwc[O\5|ynCN噤,T2TlkGMӫ~(`됈Rxe>+Ą6$#; o0t=ǏH5L0LE\|sgUߝt>i}VpYKT;>uDA"4 5|AP[tAQ'wڴ\[k0$m"ʁ׉9V%CV>m1s ]a6oy۴cs|Z6ڼ'HoC>ζu osr%-=qy>t+_Ap Ä-LD'443T R9%;e871eC59:ǫ<=!08?MSܑ*vA3߱V'3 -H9]Ђjf鉭Bw?R_{m}F7 n .9`Q_wIMq2_a Z 7%>(8y8XAuH`yW_`!'ZH3sw8?ศRگ>6r?m>nM)WrN5.it{JmQr_+yJگ<\6eTOjb&6bΣU7P5m=W!dUMJpkN=iAV(ޒiFt>^=s=cCh?hSKtRDϒ(rnA5Otj3p e,^N] 3$6LGѧq9E[ޝ9΀28i60',3 vNěG}QLNs.GkPܻ%:ŐNR(g &`|4,$?7T)J}FZ[D~;=8~k֟(n k=0 P؟hpfN_KJКZdNp~U% Pe"\ANIҠ/Q!QO,Bޥ~TUH&5++{u1\-΍#hҕ'Cg(,^,7E51mHWM/~!;=6Ldn7QL 6 b%d|'9r"s_\u`+P7H=AMHR_z8"pci-_RW#\V'䀥N?G]a˗5v>aGݛ2(3Bzh) >n2AEΗНӶ " bw ϰ@ JTs?*JP=z90u_} 6 3m K | E7KڅYVXza'Ҩ#eSA$Fe\&``-٣TW\&`5{mY7:Kc 84MD87lə|CU[Z} 6 VedpnƋ..8y:R56NE~(tG7hj[SRwG("U0cRVl xrY`uXUT-0@dV,\ *t^BoTk$O⁞a3`21Y"^y^Ǫ_Q0sƒT~L{Nõ@TL=/3}tDrq?ui}t :HOZBjYU*+,&zq~<: ka=})hǃ[f`"\K[&l`XhkUnF'WX#*4i@p[8 ytyZY.b ͉ +[ ̂ElkwܞГ[!& _X/3){֔ek厔9]EQ.^L[,\ p:r>g0*fdt-3|'*}t[ubHDswZsPt,Fyɫ`M {:1TOMQ6]VN +*\L^*6'‹{#]_Tw 2Ю%^Q:@ݛvoNI R| ^L;.Z0+*#. o~pRJ .if˿衯{~2/$C2ztҪqNsjINZLpMDo㒘ft%G>:Oȏˢve@=1]Ex]/|~DяmI#4}A[Wr |}Q <+ϖ`-r H="d{+-4A9@=0tǣi"!(r]vWjXS4VX y_OAcJ Aa7rFɦ* .H`2=+DymEcj+PFF;-IJtKK/u"d+YyY͌6+uN*:?ٙڐ<$DFsV~tcMY >G7Jkv\R:fejKG<dfP_to>GTUn#&FG Hiy!&yo=νy,d1AR#NՊ[]̘##fV# ;p|!8ɢ[>%a6J dŸ^ge(&,^;ROeBL9Zn?pinnT0p EB?~_]M͎<'ӳ &tѵ'|*"BX6(*B~?wޅhR+@L3OI/oVLLur+/~?Se!#TR/b]'[}to=9HBzi'Mh]a4 %0=ߗe>;p=$?"i@hކ{HY 5`f|Hͻ8Bɺ,invmj!G$$qj RbJ;$VaeΟq|7EeZglSLr  q]!J^!{VN^:$ dX[nw_ MtCdx`qܑ|ߗ .Gh.Ʊ1߈lŚۨ >,><-lƏ .A 0*L2@ޥIV; OpvO3:QAdEt ny"׏-&'/Z6O^s]'tOVy~G|uQꏱQ$UdF2->w{Uqٕ^D(e,4;پMv,榉W2Ӷֵb( `eM]~AJgڲ FrxbSQkÞvNaNS ԢQ"8"(G>l1v=yFdF#g3ݶU(hӪPnETDM+b-U]&Ǫ6]QP4p5kQJ(,XSJRk7 Xh*rqM y1^ gԨBlyrrY;x;ъ7לrj^S>tAaɹF ȏ/=C2JV@!bm<yvsR26~ew㉋J|a6ñlA1}CxVcof٥k'׫XrRi&SvaUomt6 dmNv-M엿"b0 #*6> J-Db#*?D_엍rt4vmwkIf7p-F5{WGI[xo suC2ϳYķ׏?v oGՓNXꁥ:K`_"\2!`.OI76"ߏ$|}=쏎X OJg.Pa.y;)P%l;٧kVR_ۭ%IEyϼ"U۾CM xshRfPM`(ny?F=GnyP|mUu44 e›3Gy__MSY8 }ϸM]<3Uau""bb#hj!t&ZQUr9Z!6Ǣh@(mV̅o.q-oU%,[BBm˺.'Ȅ>t|4_֩PĠ[Աߕ d^?twAq,NE9^z`̼z9tƈ2J0FiGIv2Y Ǖ@ej@. ԸOKKwܓ~䵦^tlU{F]WA|RKV#oM.`DƓh"b>$xpLKg O۟rNŸt(͊֨fAQeumll9|zFwSt8MF!y2?p>M[4E'Kq1,YK61E_m-"F갬ڿ9HǡhjO dBsU+c= K6^=-Q,Ґ?ҹu[P-,~}q*`#=7]uJ}A 8% y27SKnZ851"1$KbGbfENp%2I ~ 7攒rdErAgge/PgG)QyR ZdlhU9|d3`wKu)%Y@6ͭT+|呚{uE=vah87|[Pal%'{Wl4GRۈSk s^P=)/X1;NGe~r#/Qk s═"[+3* <̋=t+F ǭDM&ЦqvG6w'6=OP.)΁#ZUAq)zês)AfrمFG s<yY0+W@E{g`vR^`g9cAy\ȅ~f j1Tgvp·CCrKiJ>_5M桸.fҺH86AeC{g TMW!8^e49Ta?R2:(>J1 q"s%*@q)*c L ^1R;!Jv k qYt=8E[QdR:[[E*h GUR/b>puIpޒH /%Ȏ?jZiB2:2wmmw3R%{quqɺLT*0q8=2ɻس` MK6g"U(iC\!RTזVrHHRK#y)aw)ø. &Zg:kr 3]I7y `X~n튄PWvlzLOuR3i-)6~6ǛܚmeD_u$D/P3T nW|RJ7m5?kܺ 7ŧ M{>? V~Mf¤-7Uߡ5e?C9Rȭ5m8 qAcVK,_ͳ)ލB?Z\Uoy"P+.O{z'qeB{ 0kUˡ&Z$AAʂ扈Z,#J`*;!Odw eA󆇖BM$ٿ;aG a_T0Nt>mHw`czc:΅-,_ړ`aA7­l;SKYIpܒ@ÿOD'zq^8-=DgJQXtB{ɉJܭJsr^1 d ܚ#c"(D2t‘„+y:N%hD`C*) fCSqSpnUoج T C2 CBҎ~^|_v_:fKl^q&G]Xxjlr!/)5ڻzp}uk K#m1 ݯ^͋S(V8sA݂QnŶP2g^E. ˹͋͞*As?O[RATp#Ѱ!Lֱ"wةqO8RJeIBx"=D5.K* :)#+ڍQy'e)3 30R<>|BAZE˪p&0^™5'"C544 ;JR!بsT'9Q"'k)M;`pBkLuB1_T̮1L9w?WdS T}~YMQƑ}oX b-kȧT7!~Ҭ"gdU|{݀:l/ֱ >bX:ҩ!_DŽe!Go%͵~i9/߸a LÀf< (rS@KYI8e^Pf*?)NKg@&BϞyz8Ccݚ0Dn"0v _NИSW)ѻB~@rY2ЀU`1o硻I#$jdiId0()ԥq݅+mA}oԧ7.V>%As()1@J!Ƥ XpzN?.V`~ *%jr8~[y0VH5~'TꗈqSx30C@X_?/Vp)LS{Z7 `ʤhIIDs@loxtpn p|Sl &Zn_>-w+@pn`i~-7\(,>PWE1 uy?cs`3Ix Md]W)-^ mi4eIZ=SC_xk靓>lK葜v&;?9M<&HlV\6ˌˮ!-U 8MCg8:~dW]li[O$.b o.xπp}rIބ2PۄP .X%N6~iYo5 6 ÷[ݘ1Y=]  }=T^ 鯚ЋyW$NҀɍ."8(H@| `똀y^٬ }vYD5M[3S';\sȩ6g|\jPSpkW+ΦUUxֶwWy䡯QC/YN@0QHs(#Pvj"A8*&ktFh d>ηw|?ͯt5Ex@6& &P@T;WZs1K3-C".Hw.',u=cn%,Fr+:NT߄Tw@SYih S԰ 9<LXl$I17COU=)A_%zD9k"$LX_5F[l&5|Ka=  G"0"Bw;.,G#3+T'ɝcP/ݝR)z [Fڐh._,O0Pd}7?|TJL0܃ڭSL%Bh;YESYLQdn4q9{^T7fQ 1^げÒ9,ʀQZP=>Wd6CgZ>Z (=:W"Q%N[r0 94!Ź[9(М.c Odn=dթղ´kB~d"vQW@wEи“C.1ťv v9}ϰZ:!tޡ kQ٤>ͽu*nxڬɕ2v](lA7=Za' r(4# =QJ#a8d}zeZ1oRB Rs74mzZLS7qzG..-rUvdGVQhA$6 5D3kz[K h7yemjmN:9,颟TRmry W/aS]+cs"܌wL VfM1S5N P^z'J=?̞TI KČmcxc[߉̤} #oRsH= .p+ %kQY -dqgr6WF]TCi/(ˣ'g&_ˏw jviwLS(>کZVױn={W;Sa~n]*ĥ HtRo%λyWMIqތ&욊&Dm3M^4#k-O5HM.2O= SܬĤ>ɿi𮀲*[ZcnqhUsU=ȱv[}pVS#oA PmofLb4+4v`&[# 0`6'p#C(.-i$0NC:O1  p0 ~ )j5xE)kzyGz!߷?ldVtd篰ް{EoB,0V]`D0O}O݌$퓷{uPTZ:i*f,>g{0Dj%uK~{-%B5J[)DmIHsxgA>9A2HÔSI[9D }ڹhvld֊,pYrֿ [̙D s-,HO- H }XRBi껑nSHS^X5 "@+S9~iVZꙢg)@m,Vj]x1  Ͷڪ4qOmO P4鿱6{y! L#`ڰ<ӉcEKݪ,j{;rPb9q],._$:=-wN#4@E }aԲm}>]0m *ݎv;7*X 'D5E !wW-w{ M7`'!9MxZ{ 0ԟ),wMi / W d2ȁ}qgo#l<ΐDs]CGkP.3ũ6SJ$G6Naa͞Gn*A:S9yڔ&QQ$_ GQ{b+DlX9PsWH @rN5 p8,E_667U-v^ZFh]󁇩z}t=7"u٪sA(a(hE3I,*i+vW'N`)ljkG0P6~$G_ +ڔzt?[VEG.wz:n0}u vTRyoW$漵=VTknb>g ?]AMT߲ݴ?mѫH_2׃LAޫ{ (#z.̹"ÿ{x R_uYGx9ޚU %K~wy8|Fl@&|mx{~fsm_u #gpJu%Ioc((c[k-ubaSq}L|K:k7U{/*h@SZ)bCkǵ=O.;+WW 6@F;b9Hym|դk @[9ܥH'-w[q{ 0{y+*-6gKR֭\OZ'V1NJX5Z-TDJxpXaNIPcZ@&+/ D˄h& ;jV9wEHNS`qx :=FOl8t i^cPԃ .E @ Nx  ёǖn0 Dמ3N (ByhEKYzOvlg\RY*k!w|ߥg,쪓VHuMp 6oO!WqJtP LC[(z-";W* DԱsB:a;vxCzĚI&DioxO XdҥV&G4oܼV]TF'v=PbTU3⤽l^= x(]9=xDۺ2)Ejܹ+跻ƶb'a)Sت|7xQkݛd\,pZ|7卝KP" viEhHZ[_⦇5 y"8%c[,ލY(SV?5Nj>T~p4`!z{NJ O ni]H#jr{MTٕۋľ)0L\Hk߽WCQ ߭3тO9 +W(+^g _޲겋(ِV'x4F- y%ⓦcv؆iЄ=M ߝT'8 ]7HXc4j݄N" 9Rss]1+Y [[FUٓG)#>y-jy?bW@%\:ZX&W[!BzSc'rx’W̓摱;hu=1v I?NF21auf+&OL]khJyGG.N}v=SnbWW~_}YmmhʱH=S*Rg }&f3*JVFv;] =4 /I*{H}$S'sjF}M1I/a2P/UX,M䄡֎Ϙ P%sΐBҷg~ yO5gbC$᝷-},=(m/]AH>ᰆWT\ 0_+W2AF-#H">%[mjfB ,]RvоyţM ^=1$tgV8Ia aۢ$)a'iLʁ:1>Dz8+7Jͺۼ#ܪS Q\<~`u9½,=<^PW67')}E,_yVJyյx(iQuy9~~icLyslKaܡx iÅ@^W`RJ):]fڻak='5ط *>("z kߝ*Aےk@2It??jB;c (`$g[qk΍C6wLL#$IرgЍd7ԯNĄ4$umW9E-+*0FJPx:29df> J\0t跜"o#+&Ń;᰸}i蠏_ܟ7ֽjPǧZRx6 ` -W@B߈ Hs:nT ō$N~Q6:^c!c"5S)(RV9-/a/,>ALaBhf\\Ȯ'Jδ$.3;M4wNZ w_WZ9) S:[*tjN՘;qb1[#rh# 2%nA[mj1|qrsry˾J B94_IVUtVm~0@jcё _OY/"'Ď3<ȳ\ :A!Ɩ)AA场H3u<<jzGBH=;DmCɇ1y# Ɇn) N^8 C@;u^X{tJߢ6ſ$Jxz3"`TOD$B,!3z8~=Fl {֫I$T'(T4/M[:]&E$ Xi ]k1|^Mmei)`;nm9Hk+pGm$?`p?=?wܒ7T*3Qΰc^>k5(/MjZ-يxvuZcqRⴐCMw:#zfYو_>qlo\3 w#+zjqۆ^#s\h0VtY}./Qxݴݎwa\Id*onHk 4u ?/>2ջxٲ]\_PaR*owy֕;lm^k)4{@I¡3:u9{_ 'U{9HɿR Buj7AM[bAr:.K{*.;(ۿpouLT61;6_9 !O;r­OIY{D;ST=]םpoLD{ʧ}F,OwhkH+j CV70R@5"@-_lFo%!HX`̰J~kT<֤:Xu=Թ&(_[`ݷ^(CW QOЊnf30]}DGU]%ږL-1g2anñEoViifr6M'sޏ,) >+7Rg=d;ʃ%CUzEqRq70zQT"MQģ4/ 7.bWGaEQ hK300~L/lv~d1zLO:e2+'d̶y:4xw#`~CG-ty#ꤸze3ݒ8G0UzIUkQbr* !>o!;1QjSjnX8Ώ ^ -Ϗ<N\}cG/_هKkACh7 &%&^[‡}1Բo{@V !J>Qцh'#QWS)ۡm˶#µ 2X#'(Ou.M<4CP":Z!07>hu>i;"A o䚀=YI]ޗ,NpLz1[=n8IΛwk]%cTjX`1ۅ\cb~0_.tW#׮ab{Xy\{ɸ8;N&{I\#g-ԿU6[8b!v[U'#?´{2R'^Q ݣ6ZpqyS)wI.O*(2:Z0!>0!{} s.;CUxo2_11ERTIF`w pC7AZ}jX=- 혶9#9Bjv\ ]gS%uׁp&. !צT5˝_sS62r7v4ca$<ƏMwR?x+A1f/ MxrHOiТk2ѫIe^Y^?D+ .&|COu{9cl1}RƬAl,3=d9;JXDf< YkIF5?orE;?Hl.6rqkFRQTw<c9,:v9J'0ݯ+d\]}UzI/_4 +V uoVuo1ݫfy Bv4ىdf}8'&JY(vӏT#J(;Y4~D?{ط!̬(_cBBTpQI@{Zͧ5 1ٔJrli2+[  ̣Yw(xgxׁ2e:tcalDjeXZUMuZ ʈ2tg8VwX`b~tl婂CN j-5A@FG^3ݏ %D,fc7hk) xM"$|) 5ekrW)&XFSF{NЇrL5mF*]VK{j\AÏKU,:,@7tԽ|Ѐr1q|駜h!wSU%ڊ{[88)[ Vue{A<ֶl͘DFRӟk NUA~FN`R_d'ݪsb"AK[0_(Jx.\ћ,o{ߐM+咮Fui<"!ҬrZ |'2p5MSE,L;S/~uxO$*8XS{Q#0L2hT228?2^mDȣs*"#p]|PRG ~ֱQ!Q@;"^ԧ>E#Bl˂ Q?|pJr\~Nk(&=Bd]rXNd YDxyHveӫѭiU+~RζGM)(Y fZ1-bM{pУ i/a{A.< VX@Wq9 HX f`~N/S]_C?n>˶gR8ʃt!}B!_اdV&!mKUF Y%֥3r9;TT~6~ۺ,ycMj;VmhvǗbįiʥ6 owc$O贂GO˻wc>q_ّWtA[- 7oaEcy"yZN tvUBsW l` "-8ջyZ?j C 9qҿ$ja̅"KEr!m5IBKhmn;8:1_K/f6|u\`^ IϋB=yX:WKʆ\LR~V/?MM~goL0؍  TM32 ipۋ /yLr|x!)'2uWx,g XF5_'FAks>{Y{މ>a ִЖ9?iqo8DQv./%8&TxI5(UqՇ% {~{;}oeGd}iٻo/7X܏p *wDk)\A|֢V%K;aHwruG֓;X1jԬ~82,QU \72[!Tϒ<&;Jp6DzGI6KFçgOQdκ0ZfղFc[8N Z?vVn?|ѶgUkY[u׬{Cf}S; qK}^ 4,Y^WY}$4RJED.=7 AkpX]$}_,/}hHNcwkDN30/w Nt &L'scQhƗScD-d=uL1:$gx%C򸻯\8;d j56\" 9V8! IinvQ4b;Z3:.h]5@Fx=0ȆD|f",HVQ 8KlqnµdwZ׵$%#n}In9wVF޵IEbn__]}tQ9XqY ދHidna.qe1؃ @i\,pH o ȠW)B@ȍ{+Cš4FuMGE"BӷW[j1j\Msw)*[z͟ k)5$~UO`Wiq+B>W$ИĦo%:S/0Gb]$wU)TĶ9Oq`LsTZOT!,Dk;J\ .ۀ=ފԱ죜6/XYO~ I1;i()<ȯߞeH2Oal i-#_pP!GRZWJoxw{ԙµ 7:T/D:) Al[rce@o M{_gpvFb .aCCW\~' d%9&2j|JM"VXu̚ )Gfr ä5 W2dE4P2k#!"~v{yu{?hWU<{{g4 s2L%=5;_^4~(juAo>#[[1>;Gz{RJevJk%v*gjM#ٹnښ 9 ?/ܕvԌ\?~>Ӟբy:UE\da3FpFFѨf!Ţ 0g`c@7$ w=㠻F  k!/Z AD>~S] _bMR&a ?>z@ P@'qtS񯻔!xYZݶMU"8Cb2a]]X^r E#LnLŔ@zY0\o4+k•Ns7\V|p읐queuh Ú 餿La5*Ow[м)+ͷwq; I^j69QAћU;@ߛT RQtg0sww/i.y1N :ur9>@@Ok Zj0ѡmk Jj J*L)}e$RZd{$t,{Z!JVN؄s8G4CP /jREzPRV[3so‴[h/kp{tP=F._3^52Cxd(ڴ'\zj@ֲ۠TDORaqe\oiiv%$wOۿƊ{3c]$n)GD2x:ڵ!1R%*Z?:9}?>Ï76q`VKs;Ɵ`gA.7r;v^ NjZ~yFWA8MU?yBRT&9իS[)nB@Ybxc/Nsg/Sm cEGqTU5MSbVK H4cJpXy@"1cef|kXT4{OI UG0noG¸{p0E]fϥ`Tiǚ-m\AeLNx\L@E=.:jiـ TՂYJTxܯkѫ3ޞgΆ5sɿ>qp8)+aZU41CXQ  RfQ`@rT` Yst(KK9 2ZC CeV~6Bob59dj>0~tP!yyZ;v*vF4 cV9opz?xj=+IUVڂ7VRjEpI"n0̓]ˈ5 }Ɖ=5f0me(ǮdjmbA^}4F9_*H=fKװz( J(fny=F^ݯ:a4ِ9Q  ȏL>>D[j|ԈQiԚmxNC[b)#/NA<5hH3թO=b\3[yn*4㡋ɰ$UKU5RͿ\r.*ҬġMt R}2'܂ARE$+bJ~RY9ܫu2 1P"'--;KZJ|$PB3xxɓ9;o:aĹeըc޼ӫ/0cq nKxzɨ8y\kh75o'`xC˅܎ 3~JQ3:0yub˜ # u&*ݒ*4VΟ6K4Ġ 1e ]G(^Iȉq^lZ#z?xP@~+mgG,{ҙ RFaiM[$93Bѡ)s9 BܠM2Ѵyd 8klD+$GEQ{NqQ*E!dB챏.A)fgN"7O.Mf X1T69>k,_Gk6 XUCaZ#nmXԵm/h(츘 ),QZ+*5oQ%(7GG|ΒȨaZ"x۱AR#c˭9`Vq-' 8%$0 ]r#HEOz!G=[,yg3ŬԴt'A/ˌf0i8ԉ B э. IC/ũ(F mӂ %,A^؉PcQY 43ddJCS,eY%g[4V\J.8ǫa$@fؘq ç*yLV)t<)!2ii=j%7G'5{[1a9Rj(X.e?7ϦrMOCL08yr S#z<9v+VP~ `< ѳsS MZEbD[\W 3l50n`$ s\̜6)c'D$i9=>Rv+4ޓq7~/q6᲎Ҕ-66MN!7lUCEDҔW ^fvdZdBk+^F[}Oi۳syolbamFhXY3NӄEIhnU.ߕ&JQ:GFCJ'^<%܇c15b~P%Y͊^jSȬ!fؠ_"4V#i;TTGZ\9 q$}!H1:,I#|i;VZ ~z@-efբRCbvK;|?}KTp4e#[eHzViN>Hr?4qoD-sb'[Mlyv oÖbqLlJ߸щ' 7tQGp1)tu *cz&Q@l2QοGs{*JҶӋ@*]@<2X(09Њ9 K;VˠrNXa&bOڤ$_r υOG$tqΣ8=$Ċ^Z@(bF>GVJdvk~ ^dŦ?7u5˜; X+|^nM;NK5u *:_@1pt0B>ˆJLu[50],̮%%oybbcYR?+aJڀSu^4?ɿ)%Qťi,^Kn.4!Jt[A@\v.͌8M&oEWcRacNOQk-vo҅` -$_@|N1 :zր}cY׊Ēn O̩AF4H~DHXYS.ګ!LdӐh6>+5~4!)ބ) b1e^oMH$!N8ZO-qc7{qIl'γoXNcy:!u-\ۮ63I3:&A&[N;4)Kz,>5.L|kLs;pOzf.#s_,.mSEԎ/c 8 S^N%=D0aV%l󾓯b i*zhk扞j.C*F.fY wΤx#W05qa$?ɳE;-7=mms.z? {Zz1\Cֿ9m b }שmBq3CvNPq?ԲKJvAIY2X,r/N~LBS]Ru:#whT1=2n_l = w@#|0-q淦qs8Zґ,pOZKz?m2:R I%),}&"R.X'W8\!}|O[|!b+wx4R'5mF2B*Hwp9UL i2N"frtn'R㻔_;4E j~v/$Ag*ǿ}  Y `^D`v/\^1rDR;f1Ѩ$a83:՞}MsP@jVyeݮD1 q։7L~]%Tb$t'bJ5xA6zF3EFl~BEDOC*̖>"w)HoR%H8#0g9 2' ˵k] cHݒFgtͰY:l;qBsmTD³UmWv!~FYԎʋ7U>ȳΊL*Ԝi^dΰֱWa<9kUyUۦ ~䣻gۊ9_'>~,=UMQK,ts,.P&hZP[uzʮ 810.+yBfMj>2Dm।HzL&$snj^цGj_f+Qܼ yS׸w0̷' nTߴ<8dO=y1 L VdXPN& %->S[̡,m7C4i x|Re, ؇ϱ$7HK jbx*)1 ƲP!n$ e6'Q"5_1NkҮH&X2YKi41AzZcA1B6ƮvMYgs{k;[`P^Q^D~(ӅX)X'G\²~~e2kvἂ W8N{UvHvfW#@LJqWP+I LIڛYuyTPuFۇ }QZsޭ9ftȩ:iPqB&a&JP,C1ڐ#Q&g_:n&$54H$V^rL-#"(fRS zJ_L>;&B(m0è:ݐ;sنo )H;n$=ㄕNT-~t_93 bm lixS@:Qֻe,X!_mB~\72 څ/c2*i`g=  * iX*JKaag>QJ>Ɂ;#W)̳.OsD~Ї)(ZK7` Aux_V{;)0ܺdwe?ӱ2%?ř5=Xr-#"U[Twv~y@ ҆Ӥme9J:]h,4p3Ӎ1>Z\Ѵ/ѨVdň8໻zܞʙBވhgt>5_tS[Y*1хFf&o(?hGW>'h7oLP'NĨ#Ogكmո}vՑPֿ8A,KȷU-DKy TB<bx ^ckH>uGv;*[{mU~&Mi,FDqԙN&!oUo*ؗzY1!B,^l1*LT!+1-8PIQX8X>a;L9. %P?!C~4:07譜ym3Htl6D4jrIkvS'ۉp4\&*RjEg^R8V Ę#/YD6JOY `x[B$cAzN~y8^kI#.!*pJ_5#,'/~ cqlsԑMd 7' nތÊDR`=bgg?nZƸoNG;Dssw ے#u"|Q2`9!#O}'ə'2~䁾Fv2 l{Cz&vzT{sJKQl bX#(m{_V J xc~ ~h6ԤAn\5$s9~ptn|b{B;&үKq!+8+ ޹tDy "6$cCwjeZ2"hIavQUo87AmP6ct9)01C(``ӓ:7-~gl`l⴯a@OEYHf-ɒK`>Lk9e֊yl-Q ",cb#t=!xشȨ)|$i\p *+(nφhN]MwB|m>ӫz?]Tpxߔq#Z(wZJ }U&Z8eZ+rbV2OMs1S]oWn^M-%?",Zh1n%$_J`b{!ڒjwm5Z Ȟ.wH׸OT5lmc?ZŸѯG$.O#pLt3,;c5$T>}?\MuuNJi6jGk.ƨ{HH0/o+%ϙ$  :85~1' `Q0*#Dd |Um+nk6]N݄@Y%-B(5|]K":O2fhj>Cy3XYTCTm+"Ur5,1s^'ES&OB̩f'\Ǻ :eU 7"nY؊Q1 ؓn9)Fڜ "0ct.3ؖ73w/ᖼ{< IIL¥"j42gʎ5YSU\$!N{&ńWS1Z>JZjz.0MNmnkViT fFa sSi ?#ԱhЬ?Y -RZm=m{uW_mZ|"5 ]-{K!BB6VΤ.?2ۀ^i|+8ue_^#Uo@d챪L]oe;*;f{A ½de{{Tc]PBtD?+fc RUQ/EgtRz"]TKfU%Sq/>iQ67M #X.BhKIfFie(yC=0)* J9y(dF4tڲN#{!٬,U,EK(ʡ 'x[hJ['e&KE{--׫#r /l έR3[$|/ W4xo8GxN#+H8)$ԅ$*%s~W}M}ɄD{S7Q {e|T뻒;q#'kR}|w's;%g+Q3? ;xa,'h%ePf,pִ,D#e&`Yt>5烣j_:BÑpq}:Fیu]L:ElV) l!Sa;#s…2WW^Q()k6Ywx4 sbb]+sQZRTˋt-YtQ# S Bj֨9ڶ~#2G%U\KYyE笧o:=.:='Hs|x) ORPsvja$ٲC;PGhP9 3֘dsra:)E;FPSL{3n[_t{G9EDl/u5+%! waa$;Z [?Bɓ9,m)ِ)Msli^'jB}`#/:@c= ?+~k0Ce!L] |]+Zw'[f[oxΖ<3! t`f5)Z^˥bVUs8vpyW$r_e/ # )=xldbX>ٳm.rGvyWA=Xi|ۊpcD3v!FMn h(!jȽTk| (]=$^h `( /Q(xRE>7sz|N'ۉ'',*鎔Uc;WQˏ" x=:h;vҶ@WdzmHZ_|Zޤ k#L:9# % b*Þ/.(\0ښ)9$r !Aԡ:Q=Zχ_i>%m3#GU8wNiۛc>}c_p g}|b.W7x]e%*QvsU{`;ӬNx ]V.2K8+:}d%KwM[dPx*Z [57pRoR-zYoMUR|lYlc'$?j"nM"PXJK2093wi~P,zj_}ڍ!TG6{! 6K/ɓ0 KT"Jb86i1 pXx:qƞb&ɱMdMtyLNKՍY n_ O,#H7Dz5tnq!T*IatkQSz9ý IƠ>&w!v :}(J\)aH ,] dyw,Vi؛Vp梨.Kzyz.T.Q%V[ PØp"=KL0"g!R۠tPTC UESRsx{nz+ZSchorFܙ¸~/_g`ަ_|Q$Oτ&t-Bl帤NԾ,zר)*Gw+dh*t=vڒ~T}FB*^s=d#DETi=/oP\H.Cb:?/J5I Fc8 vw=ۄhږ ZKh=07Y>!c;FeN[ؑײHz=v!L0PxBIw"QNQM 8<l^:ݜ YwsU:#Jz ţ`[=,1w[_4Hvał_gëSłjWtf[xAG][H^# m?dwK0OW2MFsgj+!bKnuf,8v SgtZAXJ.9~c_#z6& s|F[{@3<ܠe 6աϱi?SD-ML]~N=\!aZəA-7nٴda.H7]vXSZm0(Ԡ>`0^Z@?4*R,\3U7L$ߡ^k3"j߃PSx%sn4[TgSS$F8j[`Rs!Ew{`=Ðkv_/?P6E^9Kd*7& =KS6  <`X˼nM|X3ڠ.Y3)C^[6@+`{;3s@*i߈uCɝ&G9  I $ e>)(!DDab5s`S(~]p P HI:Cj~DVJqUl2VQVxSP@J=±| p_5x!,?1cێ/\5JŠόrÀ0u!yzF+ *7dD[r. :Uu{o;w:PUJi# u§WM%19KR2eHO Nڪ*T޻8g][k$H t ~CGc=@ `?Ljb[8{5.TM,x;"Rݾ.$!},]y*…76Tz*Y9dБTϹ@[ƩJ "(xQ Mr{h4@dDE]çft~1cn X&֡jwy2CvHrL8@J"$HY+ny1@jί_}|q6Lۆ%TpW|wv p rA0~g+JOT "Cow{r{Ie\Qey=WbF Fp.y0?]afio:߲tv(T-l!^]1?fhaxk:˲%\#AapQ] S-XB1mQ5yU1n1|2\"cΠ@J=g̱18]?n+\_] d_`szz/5E(";]G6V xM5;B!*>B̩7N2H=uQae\N:lzcG=UNysx4hDIF8 J4%&A&Yt a\4m`jR =}uMl c,^zYxNc#bIB$~nhkTNVo\h1UPS8$uAE,NnW5=vrfG'5]^7'>˙Mzfֹ]*_|Cr_Jj*B#0tTcA\WT6W`>\b1C/ˍTU–PgO/SRMF`iJ#MŤlfH\@~r|ҒRBmA3&1մ] a̗,w!S͓!1/Jꊪ$g5UloF3R$>pٸ~ңB3~^h,<$^teql LkT,fU*bޏ~3x.NjyPϩķZ/6AgR|r5BäGtI(O O ѩtV2Qm2t[zto?S]}7@9F1~ 2A|"䈘>yD{$& "t;0n=oBKyP-><ݒE[as*Opqe;%Y̭Y8r+$;phRN=ҀhՇK Zŀ5Ǻ%đa (AeZCa,JU'K'9Wa(AaiZ)d^_ ,NJoX[N?/^=GX꫃ZsXM;Rژ79M}ws&Yt%\cC U~IzD 7! r{|SuĎy9JobYn%z煮TT.g]r@ e.UbrBJ /B0ŰC0! ,ﺐyF!b(i`T,8NDi] ePlR@P.Xި h|P لb ?Y(+WiF 䭕BBI S%IZ|_L lfM3ރ7'.`$u)~$iĩ=.m 8ߔ粽(_VG\U|8KLbouC<W@c )Mi÷>'!g:58e4ֽ6֒GjX1V7qN\0&{>W+kć,APZ#m͗OhkV;w`JAXE4Ts::G +˶o+ïpdK=UZ)dU fgdm'yײm &RE:K/fZ js%Z: 䗏iE5FǕ4RT,k)U )lJA:,3 &^tG_ -6=Hԏ#F;60QؕL󸻸4xOQ>ZrDjt!_-ã$Xkq`=S>Ld !&/1Z a$/کJF1aV?zY6F.} W$9d+ uˠ =Ϡ(53 hi9ưo{1 %3qKWwabYeǨ[? "X{+/^a2yZ?QRw^%0z>220Y's@=Sh[jK7@ep'NUxد?>7V2LP(3nc}BbԆ /)O Io eH8NsFPMR q**$ "@#ݜggyts;x ધTBHPx ^Es֠S6&h.9koF*?YpӼ ^['էr*!W1-bJ *Cy9Xj8:_7;MW$ˇތoU*3xCM^P2㮙&4X{#HAmUw+-6Z]ҹ"[$CNn%w[n~Q'GQqt] O[VokB@#⦊[efEo,`S!dMj(nuh j#`2`%q`.+6BLApYĄKFm9r^NTsZFj>+Fe;HCpl/"%kt\" ߀H]ATp n۠uˍUxNHwA'erêo:%yߘoM')CHHՀZӚ%($eu]' Qݶ}_Ma d+|˱aep>{.a~VXqrљ_L>ڦTt=hXixg79o%mpNM+\.,Ƒ̆Lo>t~o!Z<*ُd&2H'G:t4u:xV%~p`c`ƛ=ڕx~7@p#'BثqCo?6\SŸ_YupC[|uiҮg E6PNPIŏ :Ek^uj%GdlX$͋Md):j@0$"44@R`=00Mo!@?[U{󖣸WDy 9B$KF.Gct>*uzG/#ӤVdcj}]ֶRaVO/7ew»Nް fmB@ȴNVF5zƜ6܋6k :&;D rNN: v\Ƃ.t*?M-â r~Yv2p7bZBmvaүnr hOwP iJ*-H*\XC^NB&LvviI7t^}Rr`) Ԍ}cM#_gvOW56M\[ tq@E ȪM'}F0,n`?`t=` G}q K*CȈ9v2# Hiblw kNOIDL*d&k Tj-r`27ര-BwB6q,_РY̛LR z]!@ DLpP7'TtǜTL~ލ8HuJn'SGrQDC/T塹 STmyH̒Yi9Sqfyk3 [ +Dk&/[iGx0zATFQϪ{4SEK$ T=?y͕{7[yqjMY#_%0{VJ}8˯׷/4!&;צA!LKw; JLm6*, w#.,\gt '}'cWWd74Bu~9\ԍ6n"xmnMȳ5˓Sޅt. ۿqnRWoAJ8[B ]mA&@G>@qoj`5wT\`/1=k;04 P6iQږOs0|fRra9cc!|ܭ}l+:wie<ϰuڴ}R R[ЛOF=pÂ? _S#R7fNbXPnrvgKZJS?7-Rjh]R1ίtS/K=o% Yk:4 mXY₹2~lb)2>Eiڐd?736tL2X5cn0DG»l,f@z2bj\n^'j*:3)$:8l # H9&؎I쩴=(x`$ <[;cE$ ŻDHW3+Vkxte@#C(> E상9>%=X 3ls\,W7eL~i݁m:{Fl|t.t}a09t?bv@1eY\~Y3% p^k"%{$,!K?N T!E>EakNx*P|{$?Sz4K,L TX Kkd@xet"j0C VcNw2^Kf_Sd{}Lձ#3ӏ5 ;J^EBw,m׏F/Ruq ^)n7pTQP'L4UN 2\+-b1{;Dq.vPѯ5hWjqNƷۡ\ ",&CE4kCkAn7$? t1*pv3˭GpB$n75IKY[71x[h/+訕6&ESkɳJ^7`5 %Qvpu=p 3 8n5H˯xK ԫ(ڕ9?}0#䯙 ȴV 㗆wֺND#ƚL[}B!^$TT\K6-$[ˀS;2BAaIQ";Bj ,j _6X2..ċ&NE~9'D2P'}%rf+.3:Jvf uoԲvjv@"{L'xE&` im,7rfy]6Igf jƱ$Ȩ⩝cۜb;[ۚr]bH?4t]d3͗PMK8i{d:J胪! tek<~=xLEr4e6u~+1{Vs}SHȺ#|Ƃlsu-ΐ.קy2Vk dZW;YjˑP' Y F6j-L;#HH!iMPW1L>. {SK]zBKa=QY+*usrǩ;ع[Vr $ gBW*t 4G$Ǵ?xTIb| D#k]gtaz Mߚ\5,2/`9O--ڍΥL:v<$6'8jT6.BR ^yؾeZ% \k="/hDxuktL{&;<ʣxТdy 01;xy|}'7=ӯoөݔ?zGw}C2)f< A8ߋsӄwp 蠆l,v@}KP(p8G,~Pbصs67G>`~a"1ÀI?U"0$X||zxt%ͶM`Rr9b8ZzJGNܙ;{!qfOp*_|Pa~-9ʹ%fuܧ<& z'o KatcwYlvmDZ:xU=( LCtLBu};҃oǟ`WЗei$=gvHm!5PAqj#9Jt9Wmoxt|WyCʃ"/þӵ5V\ AZp*& ޙ?qAԑZD)QU\zG qB2K]Ľϕ@KT12weGbmX򩡉s薆s~-%gقt Ux߲'c\&!,\u 4c~խkџ'E]Nz<k笃+H/[ $?{_^5!L YǕύ~ DWoB\354EKv`y |+K#ʟq¤| Bzi?QnfxG[@C2V2FeF$6Ŷg?8O^yBg\GFLkHF[o07Aj $MӐ[(L3q#/EC>d22h9iX'VjHJ`X]]veҴe,K8pd%e"#pfWR" }Gl;JCEĨs@[~7p_%W_++Ri@lT=WEr ˜h]Zs`K#MbhcЪ5哵F0O ,2x1& 0c?u t y$A%MB&cC¾_*` %3W@UܵW`Ui0&(jD9WpUp[.uK™3T`=Ky*5_?}ϯZ3OAVkNp* e7)m,NM3c&ث0?xn>7SݯNH</_%Ȃ]F0T9:qDW!VhKB|sEmv_ח((tp}gӰg6%4Y(Aa2-K2%7˜99o9_tH79 *YYGL5Oμ  $$`03&+zgY2l9C1S NZ7ǟvO#lϊ8y,V& U[us DyW ҈RZm@tMZiީ{sGɃ.h!fEwE&JS6XuUЩ: J.$V}w܉L"3[m?OӋv;m6{[d5SF2kXd,d "K<@(3/b$Z uE`_0Q=G8*ܼڪ%FJ15N"鸕ٕoI0-i)q./ 3<IUQP(D,d΢wL9NOZ5̌DH1Ʊ bfΩGf~iY|yS?(thNu)뗊!+3F¹A}yoja=NjW+յ=L4L$gc6 2X$Ҁ%*?C<.I A,Ǽ^Ux&|`h0~g`\tue&6wEoJ_є/،v=xZ1kZ#i|0Lތ;e Z̻C[HeO|Z݉LFY nK-/w0$R2ʩZ'y:Jk ,2"`zY׼f @lL&'@/(6'켜9d·;Qe͡yn$LG=޲e\.̸zjy9K>(PlMELՊ>5^xB)C6k,z>#S@$Õ׋:1u5^ݍ{hLt;d#D6,(rZ7>hEK00 L,ʴ*3ƅ]W?+5VJYdD0)5n}.\4`@._P>`!5k<0Q0d3Hxt4+‹+1DU*b}m \gh`QWvGE{F1dttvUn=8H+!B{T"_M~3*wWDR/d2zsoeEAd9J3~T"ꦾdzkss$qTC|넜Ƃ@ 4n)#aaE0sLpG\ 9"ewl~؋F9&Z1Qe%(~&M.qԁ:s?g% Z<8@Jr5P-.'A=*G<VabEQ=/ u3kѹuvH)R~O#lyGz)5r s;٤JM@ϕ=\y%6Gaو'=A}+NjVu4ؑ2w]hЉ00-DUd+T̚}L7~kǰs(mzO⡈Ed6>#1L2TU(еvW'Pb}=KXcB. M$+V%2>>Qz_{4 ?i衒m̤iȟ۾JqQ zƛr WYEUg]d^KЗAOW8h k! ԯs4Ns1%=EHvYvd1R^ifFnw$D6ޠ[ŖKTZ+NhX(ۢ28W!F {¾';iH_kѻx: 6M͒ã"ok~i_2ԤpBͯ D6eԟnrPO'ȴ@G_=CƋJΞy6 فix7<7",v\jQjS?\27;gN.f)䢐p$7x}y #3)jq^й:;}!^&o92&*.#f>еz]y۔DE1wH~rѲv%\ :llK(9^Ɵ `4 !{3j7A?Knvw G`Pƪ*>ſ,+^tm>dBł=M>Dji7yxD=D& bȥJ5W {b =,Y!W͉@|ϭIG Dc `^`\3Rt4!?&rchM<-OM=O֋-1WF@'dsesdN. C_GVIVq~gC;VO:].bYNm@7)A\U .2_C4/q@9Y#0+/, k3 EOCv"#bHK7CFkƦ#k\I'<ݾ1>Hhϛ˝>aoY;^:b)B[{2f>(Α\M0+#x1fDbRERAFnUk: Tv&;k9o;e9kNScUƯ~쟛4Uv|ɈA:\[^TEєI7 LЬkߧ,T|}$fAX;@i/? ȜJ#rkަ:R5qmy02ާeC4AħzĖ9Im Ӗ-& qOkf 3FָVoYFȖ:ÜSj=rcgϙX]F.\p QYb+W>xprxq.7ǮfIiL{oL[NCka'k͟:A=E)NTd.m\|x[sƥ7Xs唹(VIVRtḺM/ l&e*$=~+YhEƅ,oį` kT p=ϓhɆ>JR4dʇt'=_vlMEQ*Oq+#9et/21:wjӾ6gr&C<%n(w$g/ń>d9(82-' b1'$06vOU/؛o׈~%o|r1f['+JxFh.aȚhNu]d wg4nH A%5Mc骫&tu^q,W-م;i5 @1;ZqZQV+]Ӣc{oGp.{v¹gkf|)`D#OUh#7~`&ޡVPYGy&_{} |hWq Ǿ 6W)GUN z))C~M <^[` [ D=iG |d3twpM6 X!Sf:PO35v֟U\3*:Gfv*SwT?ddT,ӓTH_WnTNUBt%k`Kuz4#![Ck.-׉FAqx+7~c"dR.C<FɮA!.Fft*¹:K%X&`Gk0-i"_x!`QS MA+㫑ܶcl}nj)aNFS1_1E+Pbeuksۿ.x hR~bl'" 1+EF]}D} 8@g/$ǼHInh[ &l3& ș7w~}inDaslt:3X nNt {eAe9/١Z>caE椗ЁmhmkI3.[5&Óœ(- WkV*1c8ɺnZR V`{F'y.6MjxUY+}j#B3=Z0 _tFL`1qF8T)u."^MeP=G(cÍ 8+\\MVDpWйVP90yԏd GOuڟUT{ħ]i,y[%T V!I,14h8sDP9zٻޣỒ\:II wuc)y:DIHH:#EՌ#-R*:4Q@c2) XNq'5vYY+r4ma7jNJ{-Tt_ZG+$qa {}?S8oFB fjf4MF ld+Gx;ʃpG}p P8bn`6^pAg&,c5H*~ GPPf0h-sgV 5@kޢc yv)zB|* SJ_^ftƯchϧPtjfW]hiu?-iDk{XRaz,P"yAنaDl}Ї:lNC,b|z > 9g!`^NpKrV HKz/2zK`'XUw'ρДo+67_)[yYH6"K8Vy\W f[a5j[fP 7TV ]gADRkTo`Ƞ#*MHN~G^\VLqFP1>ؼ)!o3\r;Kܴx> q |K( k`䭡ru ]MҷLs!)jkfpbr뀈,du*50+U*oNtW K~ucMɢW Gd.,;l_ԤIL4HcG[W?5\?դGzƮiP@@hƬf/[\}')ȩq h^rT䜱vHnD)nUyԡ!M.N D:.lا]y}ywfK_=17 .uhG_ Qu|$Loѕ'ep&@f81dȸJ݆ʹ U^PM. PPQ&>&39h޺!PJO q24oԗJDgLb^ɬ4ALܺU{-lzԱ.'+ CB2gC}T!>U׍&{Y]Y|ιt;fRS= ݮ{lk+ ,y;H2Um*}VYPYyz۶WFW"<={6A>?Xen-<ʰ2ƗsPؘ-D{ۉj5:Spտ!~]նhh3z&]20=sa \O*x5G;lV)Yr!T/;r-RMs5(G R*iH;9χNK]3R#"j hRA7T\Y=Vn?7xTUXo%c!,wq0,QjXF owRϾOFXA8ЗذL" hzqB sYMjkԤ O|9ܧ4٣INRj6ɜx VR5yo,]>(ŭ^Mw1[ymȌQ ,LVR}>IMΗn(΀lS ϛ΢0;׵$pÒhӣewɦfTXeV *}ZUz[ԻGFOGdoAbg\=Al;cBn>' z-[7nk\zdULχLA6eLn^=4Ζ:kpy]ޥOśhιLWdܦƔ9l6!]ȳS,(#fZ{–'>}SxF V6]O/nHl.$CV ߆ڍY_\8FTpcdMpo\0]7aJtp)vѳe|wye=z?Mb@<.DAz0 *D}tcw;˜7D<RW"e"w);j538Nm!#e?H1E'#sqTv=>1C%) ?4_xۑ .zƈ]xebx> Md $+Fzr]9vZ}pdI:?%G2=;,V[>?UEEI۔%A69-jWtlas2;kFSOll$`:碙w0t[ yS*P=lAוK S@q DL1 Q6hb)]'~!]$/UpIT_fdVu%1B@Ykm[RcG\ydkfu[BrBzP"ig8cYUri <e[x3u0o0k< <#_+$$/ăJN2D8+{=1o ~@"0sI. K>LT3n=20V 5'j]3^ b$`0)Qtx`mKI CsFGX:Za$Zpdd-; X,aQ+jXW*rl,K~^3a x?^0EH5u.qUf h%=+p?N?G a|oeGrOӻĉ)5,B0JHz-Ѐ FcɄn|oˈ`]$Gj|O$ Doh;cZ,7ߧA[ئ W]sۛ@sxUSEȆ$-%z "B켿ua(=UNYmߘ¼Dw m*$*{,tg]ՓW86 Rtšaolf-nP&5RND[{KafhEÀozAɪӏVx %]uֳ, {#F׼˛P3( ]Xu´=ou ߀8{H ORyr [H-7F&3Jn Ar=|ejvcP!rHr'ަNV~~zIrƩ?G VܴNhwΏMJq4yǚz `c*_YX7UG K=vWU냳lD 44W#i)C"LζhzhBa o-Uʙ&,4e#^ߣQtdۺ2sZYZD;2x2h4n/[cn1zo=@] rToH,.K@#q%Ք:Q2dJv&nR'4 ~ae>o } %WYT"m_㽔t ]T;xՋؑPemۍ(Ér.L S$N^E} p vh> ÐD^;jX D,td*8~mGgc<0P/ǁc'̚R2gP#Vʣ㦯5lEҌn'tmү=  i1uchTuN8cؕ܃t ^>;(^P>S2/QksW3Ulx}}R. HΏu➏2K塼dl?ޅV,Ŵsd NoD"i]۷j3|R]oK )2(-y<' A-ŵ"5)uMeze 8~3{\‹?Xpa}jEeߧcSaLFKE/[|؅W#?Njts C#~x tqH2B&=?> N 7`dQE󶳗;z(H] DWBfpHygcJr VbPMn bqjϬ7kM8\n+E5~ހ\væR4b8U'hnjvsDtu D^yuv`BR4j$'_YrVpiy1mQ|_ .u'I>j8Zԃkx_CC^@6SJIW1 ƹM*-:-2ra; hM `+V g{ԭ];X% ˜9C]'˓gJ㒩swE՞db.c!)si-NC|13Zt˺}y,^ܥV 5-q*665?Ǧ1$ ZWfX$1%ʖj*`sJ̬(߆ml3AQ9X"|z7?3S$cʋ5$Fr/jw<C#ϘH|a!JQHsi4bй+ MW~Ve+[o]C=mB冥V/)rNRr2+x5ܫ ?l<8TGs4TѪH=kšAWiĵJxX}l\j^h m5.OOA (7I U,]l! u'ri30W΂WJs3)W+[l2ރJ's@sv[h#:PT]pF^[nV'դD&n*,N9X,Qt=@@4WsA_z {Jydrv0 ?i+;Fxp!GF暈:&l;oF0Yb;B,ZI cִ<*T]LS&Gݔkqv39=P[@V̔brKIfqhs$mo#?܎䅧԰߶&Z8`ɥdQ_/=R(vstt$K]J_RՍrtzP CvuzJ0N!@"UfWl)ODMLS -=̌B${*`[5wr v4<*2T_?z-ң?GYVVV+@$jD6CHs[G鷵aQd:;u12HmӤ[^ȚR^UHo+2kE]'nwqlu,Lf,cTհt]g(sH)Wn,aY2Yyc,1vMOqFCO ˈ\-yy+\&hSջBIy>h}yCa֘We5S+$Ͽ71\D7x(g4 AG>|bC0ZdW`RoG| eTURW6WA1.̱?$iq@Rz~kf8Z(JE0o$aښr#:?(z %nkZzB!i6^ԖjZv.z1,^ 6<ő4G"nzJ[MM_uZH[ U-稡>euSe>ł !ՙ]yM\;Hd~;c s7L:XP){i>+ K3qWV,o 9~'uÙnZiᅗ'1LYPG;p%zr86!o><$˴2B߈z?3bG{ ^iYd#1}}iztT/$4 G&dJzR#ZN2ZkWPIpSfT7FX@_#.\ ìsVtiMh 12KsFSH5HFbM0ʽ )֢]?j-ܞBv \*M]4WHnq[,{-XXhn~b fyrH%'EUv k2j'4ސ;HY)< =,#E㬧Y!kwUg\>+x7wʮ,K282a 4M?iƯfу`6yf~XpŴݑExSEf1WPI-$龞qc2Ή K[ǿR8oDP1 N2AGіR]80fuTԌD)!voe;@7FZ>a̻E ) ]o"S\/t'ROr 5`w{a$AN {7 +VnDjjyk"P I _m $T#RUU SS5#O ^p=./Ιxj eΦW;a<,umկhV%]<<7>t%hFHJ\&8ࢱw]\?٦퉳sܠA0{|7^T|0% I!?AHwG8 v1}Lo+AF= fRvD]Z>7hg͏WqJ9 j6;_ZK,l|( *VXpfx ԡZѐ3dh##<8fwV Y7HpuaY/J;f}.O;)LbJ_K7-AƧ%"}.%cX(>7Dž*BY `Y!iq&[h.WK23˔7\1"Chαh׊򄥨-xϥEh~oB_JUȁ_i=@#"{V)U2p' D4iqiK.}}#%[}SsXDuqmNv JH1Y7r~5j$ǒ9 WGw1Hj+{1Q%µ+)Էg64lϧ@OY}WtA 8$Z ( J0hI-T/CC\ a9U0}ZYH{I^4f]hYFrID(0nm=L돃\Sy-(GW\ЩGصUՋNM;pqъP$Ų Hyטּ\igyAF]%%a6i|PKq~)u{#3+ۆT)8^ea5  1eBc^n#B-=u ΐO7MZ GHn&q\W1We=;GslG} UA8wH acxKqU9ImcSIQ0%%`=FrEl1@pM!ٱu)_XS5NގST*rX\BFhnDF㝨4uAdF-GUhx bxVz}J6mŌ^rY_YMJwLй^c) 7y/HCZzN*H4/ ZH'N~GaQ3j͹ We=ny,+DNjY$lw#p.7G= cˈA͜"[78DiVc\&?T_p{`Ԫ TXYu S-f''T.EbU)CTw^̚Y٠ j"a>Y>u+sahI} @n:>4:E.ZcM#vQ y'zNtW+NF VljcڢAY^LUϵFBtd@ڼ7lA,Ls7fG*NCu)lyQ+3f-Çq8;IUɝ^nY{v`,{yğ_?^|O-n(uʾ.FhtEbCKxwpVkNZĎDl٦Sz&ɦ}k#.Aipf_ZnS⼋<0mTG ȔtTDP=|˘4:LEJ}BѥyMl;#*/ 쭙n u9o?üߨ iL59gwkhZP*Ye @`4{8zItAas[Ss$acۃV:jƬ7;9qcAHfIb/Pd$8 {ޥ(ākTQ|0KF$Oo!UJ?M<^cu=bU(,@^LqD]&KY*YgߨDF]tG$bA+'`qԚ oS5^|sv׏Acf'<΄Wn ȝxX~/yW*XDy*KLo"X$4X>vt4<STťCRbJsD;BO_Ƨ-̡wq>\&\d\x\1C8rn0GA ރq" a6R|j WexǤ0Ǚ>[o;1udqߊўy `yD_/#g?Qx%ޫN #0Mmd图o WatX5x7G9%?+MS<j`SOC`F C'_YCp)EQ#R@>7,?oOgmBŷgY7% bFW!gPNHjS?qgJD]Ͼ@$L;"w*HW M$5qj5=Zz@1弰L#Mښ`]va(!fzOWWV$u8:N92|00D^kHCY?KptSp~w>PȭX Z"+^,nL%o,paŚ%dJIJQf$} f;ՉH_$lO0SU?ˋQSE4K(@ P QJFV)dbZc_&iV @e$lb-&L]Gz}Y}j)<['xEp4-7ؾ8>.>5U_jzxسfeqe,vVجb˙So]r2IjbѕfׇlmBfIJj߃cg W6Yd}?<kM|%/Io]0կ-%qSH~n7 =6^XxɣrҤh@q|&d/d5K@HXzC&dkڣxVnSp"kYyLL&(ުw+c_r)M#4A; bD;f~S? t5riNJi7 ޹g NUXE~Zek7QM5~ʝؤЮ1޻\ BpB+vyXɦEǸP}j R&Y;XM Jv_O,Vw(p+BEɗ'7e  ^6l/&8r%l]u.B D E#)G:yOV~v[5L"T!% 'Nx+Npvv'$N:Д$&yB^ |.Vi'S$eйmO-]?~ņ̣FL|nt?x("a39LqhLGG]ƿĶĬK2[=6Ҧ\NXD/ճ孥mrYAg䍁#krp5'bXn*Aĺ ^sVc d2s:I(RUf4c<4ZH)ɒnMDȂ7r1 )WQ}4K{ bÎMWFs;RYbbm7ٮq6$9Weo$4n#}6͡b@ThC+b/hyRPDg%0 g3ob<kuW3[ c_Y(;e0.TaW -L =::&=n/BP+;3+}l)`rTZvD+%i3IJ+CK1%/&,z>jE/ x+:Yڱ#;d)fQeWUQ3{Zcl.OU%;\P=&+`,V';b`4nfm$`eG"az11Տ|k9ȵI G@uQR HN7J%Y%(9g!;԰MGI*ޣ]{.AF!G7ƽ!K `{ dU+p`!:-˧ju>BYVOmѱJ^bmYV{ LWZ ni=}e-S:lx:`,H5P*JM]-DmOn<|2?b= ^mK}NjxYΫU֤'= #A8O0JU>KZ}_x3W7N@ku >E~/d3M89G͔XҪ o+c,$X |h'XO~oEx>b'7LIcI*s!B9;+,7p~YbALc>4w~4i4 |o{5ǿ#nC6e^{\Bϻ9m&rVvhb&Q;%p&x"`Cխ42k㤀ۦJMspv9>čZ6B+%)}bOJAZ9)?Ƴ |wB3oQ_:'5h=>*S@t8 X{vWc8j6V/3KU ioG3FS|"`!)p SlߚpP*}};TcNW2j"J1vS)zNK(l^-V:`U쩴*ƢFu0R+tbO&xL"[\yVk7T+)\q$P?Q~LjgqA?0~ҟI1X1`hh Ͼ4Z+({'=&>mPq&Hנ&L:i=XT.4hg*c岑E] :EY-}lm0d EbS^ Og.)JgדG:#k7p Dtb0.(CX8.^ 仭& g NMCY/: f"eNeYs~W\5~/eAǚ epe԰M0&ᱏEu82"DSx#zzFP#5{ *I%ݸv n&I#G G J$Z)TY\_a hghdIЃlTWhaf#bAuМA6"!NX&S'1Bs֫e 1 e|S8k,6k}6 )t旦uzOAxg4i`40W*8U (y~>Pv gE@0>z*#cD_ߝƗ%qr>eϧdy0j>}ncM\Үsd@5շrDE9_R443-$t9a>8%1Ui5I^ aX<6NNP[a&WBISV/ډD&?_nEQw5ߐ*j{ iO%*zCA%;v0z=u7sH0a9w9osxj(14]* 8 (7+fosZY v,݂Q#= M@v\ۈ&DZZ<1"oԡ?n}e9(isېJwk/bj;Ab,0$-u$i| O4y8:4!!DD%/=;6Ns4zgKP ~0OϴDJ$*\bmH]A9 JXf^NBN)٬an1^tta#8gKyIv/}[!Gκ)5ٯn@YZ9Q!Awa+T.+cR ''XlL ~W?6ėHȘiQ5J#9m:1r>:G3ʚsoԖ%j?J@ ?_,ۡ۸/p'QJ7xӜjWDuxmk]"V7!>o;*bKw.؉ufܖ$zaAÒ]ӼN=$c5 {p $s [¼p?Sq QjP5/W2}i}AU- ͵^L#z3^JrV }7w3#9Ia[9mr3S&_&Zжo]HHR5)gGV3>/ Iq;v5 IJB[| U !(s 6WuׂeOl8G`݋Z r`zjԄ̅^\ٴ ŻAtߘNgnӵE'5s>tq})Skl,gr~[*+Wf0 $V bk6AWnb׬{Q|0b|b 'CXodOQD1uO0,9G~`7 .X<18^3 R%E&,U;C$ES!˶{PˊZ5(5#0gKp;rj[ <€ >ζЪuuiC:qD]1f楑!pZYn~R)/r\-Yn.?,E?rQdfy,\'_!4v0]TJZ4n0~ShduᴌZ}cwf`as'UQ$aQ]m;k%awU f'& <:$4C2)hZZVSaZA)~4xAE%$Uoi)ǜr y.HKi8Y( WPB0g d&NŘqge7++ɮYkxed[B%T 5 GAUVi`.tviNAogEh5pk7+RPXBrFt5TwNFS35Ə$2Е(Z[hEB8yjT.a*/|EɎ'tC㽉*ݪYsb`W"^yy6I!t)f|sApx-bmn.?}a4{@_X]t~c8 `E@?ƸG.lF&vv?QIdYx%.}C!G-Q"u`DV3 R\J?3K+1γ)m~SL6]%Vhջ(UMJmW$|׶B|E[A6a'<+Tg`0r*DVV4ɝ n?KQ*ǐtU̺Vێ!%6W;#!wei0_oKI 6 Urx$TMpA~ٯЄ .d/ !]H34r=I.GKL*ڋ7svBWTyNٔ%i̗]Vv$c-EBb:8C'̅&Q,Ѹ7b;r#spڎE.7ӌ-7~_a5RUΟxqߝy^E b(xU.:ޡ3gF+:EU ;cDRyĤiQ8KK+܇x CCC]c٬4V2zvY õoKuT#Wu8ׇ~40Sn*Li_Qϝ,; G&rB: @"nGLfiCL2H>K;DzJ=Xj/TqWY!LFVl><}] 'az1a˻U_zÑ>h i*_v^" Gpz!s} t"M7#ȶ>Badiw]`]E_00Wϸ׏);NzA<*t{`knJ耷b{0'\m ,#n]Бh7킅G*_isu>lr`Ra}R?v#ÿUS[Ɵʧ`e0uhլ(g(bfw36wZt`^{I[[[x8 dJ B$? 4ChmtfhDWPkAN7G)^_kz1`p=]O,kF ] z>S梷mmt =i 20)hT=ur#>I̛ So()խf^ @w?d/pfꥑUyy1Y̹ج](_O4 'ۏ,#dg~);a"th5y՟3\ pnm&D."z=-y, hM?bt%氒ݸ@SI<3s='ptְ~cH!5Y[a5K~7 lxG" g TL+/qxg]cW [{H^ݯE@.jbO, X)rc' `S5?L؜t`):cX4$ ]=GK@&:gfRAfrӹ_S23z=V?r8eaw݄K4Sl X8MLƃx==xmEq>>KiS+OcCBg;3y<GZ}*TEo,KqXl|dԤȊAǽ1I$Q E 3hD;ܤu [d0 bJvzi;&K}9w緒.U.M>  #K@Î4@qMz9Bna8bfES]q뫦ʴ/JG? Ui[ Tʭ6 W+@"_,/vSWFJsU'NT`l x$Gݠ/S#}&еeV+ !|_4C4ic,j'gY6\9d]w93ߚ wC48c1SծVLC8EV!Fan!Hj!!`Y*\ ';0H0rAa/x6_mƖBY|Lwf]}>z5;apQtEOF;7s7-KG?:+rLS00N_T].$CO~c?x85o!dv5zw,Gt(h:JՐLXJҽl]gOٳdxis2p= t:GZhVܵ5wd&H6I,#='cm ڋŕK'L]H}YKHQ+jFmD8^&d I*arۜ`(M)Y*!&$X?«(%5/xacZ&)z`G!lw-z-yھQ;7M0n i.k'-" ALDīwC"7 '/U,M5H&a8 VQ>bd]|;Vy$:G6O:K>T!@֫Aޠ%J/IR`C@?-#j'a^d7$-Ap2bOLfm`05Nx]([OfPjQ:^M _ FujF<IR(C"ΒQsXdoB | ]nݺjR+Ο藖); l(rT 5)=ޠV\r{wؘ>t{UyZBoF^vbӨǞ4۳͈- @H7GJ6]&9-iȵG>ә;x'<:19q|k k(wƋt(!yjQyUj"ڙ d}J lmAg\|VX:_"qq4ai(ڂs0D#G=itj˺*DMī%Tա/>ENnۓQ-NE"s+MjU#Qap g\}Xjt6\|, {L yÆXK].q (@{32]!IpC&++6 ""A\8TRb@:> ,`oPȘ$mKȽعC|Q>-/#Q$/ΆqD]}pi墳lbzxQW,&Q2%,$,Ed*@ y7Q=85IMlV4uA#Ed=񢶡B$4Fi&3f1*g}.Ң>[m'>hI4l&r[=`dZxg'No9#uܮ(FEy/VNB3A-1'ikF1^Nq| ~]E 3GyC]\hf! ¼kQA̙zzQ b9)صy=OmT0Db/#k#Id'ǚo ).4}Gۖ#TDC4o|]`rT[XpO: v@ r.o8ř?mi<x^jRڸEd %taN^6v`Hy-,C ɳWzJIE05p0>s qd^Dz] 11wEYTrE jRfipPKoC48Y/~HB_*^~AMxpr](ɱ?Q c8̸fN;=A -sNP/Ru%j;#ЄD-</v$E(J#):\yӜ~ &= _1ffdmG ב2PFp$!:{ijmbS=v\44ߗBjsx#}%GYqx_Գ8M#bG4@xS:--5<ӡI1;xhϾ_Ztg~?N-2am+E$muӑfzqٟ!O̘_*渳#ٲȓ s .q7,5)Ԋ d WmEk,PK3pLWF,l<b^N M8vW@_#Uz ɟD%\KS Et.r8\ T1 *f& IoM8@9F2P_9=<6o~79]n"wSU(MT{ Qnizڰ$Eipƨaq g"haϤߢ˒WFmo-% DLB4ix:L!OWSxdr^Sq~92"Eﴙ:6w(HA͈Z3]m{>7l1VzuK8Kt,Odb2ЎhGngb|Fbb}%PYbQӔ=[~]Bk:&hokbCy&_y%PN %gͺ.r7)NMӱΩ~⣆N',@#y.G,C"xnyA8B4r<7 ƌ^5BMN6OG+Oȉ1޿]ɢRqn4rPle0":%b8jk]{gy<3}՟d 6MJb k;MÛ-J֧?,Xߛ[Ȣr\A|)8g`aRב=*/sn|YQ5K$ܤ՝b"ߜ({ơV0-j`J-[k'A _W 2f834ű$$'.p|nv!83w<!e0+wZsHk8,[jL.,ޔ+oҩ4VoXޖ'+RNY*aݥCլQS؅pfb(E@<5F$ -p_s]$-jP@m; b9]Ղt;}_?<5ywOn|gf~P5]%JgܠdC+€'UL ,}va"WBasT[zb8L"z?4m[ClA> [< LVۻɲaW.rQEq1EXxm )~}\5u!Y` UѩeQ&dzq3fxnzBtl;:Vًsm#hT^²o]NOz]L1c.!RRЩ!xcv z {; |}YyqM`'I .XЇT%ۏ5j;4茜0R=Guѡ ?[ӅeIYc 1O(]NADŽK_s]@U?T| rW=$ t`$wq8X5F8I7^ц2$2^'2'1'K7cv:߼s%v hrVrEyMws=k_+4<׵¿Qł;:լ͌ 5KW1<ˑާ^5"u@G '[Xwgn8ԯ#0@K7 7sv(uG@@;CDDԩl'@>h@o{# SH{Yx?QvoE"oUGB#>pȗGy#5W萩Ƅ0Yݡ0ꂼ4^yTV۰8aj'v,eKmo⛀Z\̽Q?Y:?.vĬq-6i"p i4#͇Q}un s/W-{e:pmZ}ɽDžk.横FnT5Gt_ e`'YF+(}M6 8 (奎2)\Y ;elġWrUUM,U!,i\xDFKTZ}md=#9w~+R%_MT7:apݹ-$.7 IhW`K[6v=T(,qC/C9 x6 TɄ.&F`x_ېc4q"w92r ;Dkm93ʆ9c.#C"=I5c+s3$9{Ji<"Qw]@~"S%2EmD:'K8=]:N7246& ړRJŔ&pMτQ`helDZ=!K4/?%T#U?.wY-lq tVO}-w)*TEk2S|ة\z[1|`G5%  rcBL_9fޓ[ȼvܤS3%nKkJt䡧$Ց~w^-Ly>_▛ׂtx}k̒ R0%˭cqJPȁI D5E¸ނ^ рXAJFi+sVğI3Lo/ͤ嫔1!g_Òi ՚CօѩݢXQ|`f#֗x߃'@bO[Av k' \0,P+ >S!J?epq2sDrb+e@c^67ac?i o8_ݱ>2`I#U@DMsYlwKk@s&׀"32(hՏd3aֹ=D#mw' nvN 5M!ǶsKK,_8^C5&[?C |l3in"xmhvż`|)j?Vai"wmȗAkد-Q,Jݲ2lDrvֱnB須]S!sfȾ3vX/xҺZ3L)CJjp`U:~-\ 6Ģ= ֮"˯PYm* fyp&<6 ArU \#r.cEp;J(=}aҦ$Ce'񿷤{N-Oi˻En[+E2{uB!w77򤇷h^2^lHt|3Rڹw{'W׃BKu n|3rry4nU] i*zc{t0>Y ⣌r|x^D¯[42?iv OGjP Z65XIS e.4yzP?D)^IJœHtGӋJ6Vorz:[-C6a+m"F9Śn+qS(^I6w TKz?p<[9S{J˟h 8S](m.X)GTo:<\d4nHryrŜ1MdIAl,WkO;LkF95bz忻Mϯ*XDDIxZhIAƖ2 LD!.]2,ܴ WINc@Q麝ڧ5(!I'M㇎NۃoN, Dh("r p1Dxijn$+L<,%5p l \ |բ~Du=pDg,F{B } *Z-Wrj@qz[6Od0kiP0Li3^"Eۯ"ۓD:crC\@TC|) vJ: DCxT#\Sq m^]ȼh-Vʝx婭&U+3$]9P2[3;v]fP VV硟}N79 f-@[X\d#&qnO INtF ^'d/5Vh_NOРR`Wqs7Lp>aq]=.2[}LYOhy2x0I%ۯW)9|peJE:ڦJIv"*(GgW8Qr~.11H3!n ^~o5&-2 N)J{¼4a.Iކtn[: 1BS*Wh@ 氯ٜd |&)Y1~ziB_(ά GT֙I ~:*ok%b_-fӟ%n-"-{3owkjP霸0^Tn,AWkrM6cɚ6F1eo>JxFebmqNv@;/Jՙ(;8ކ4y yԸ)4<`Zl$ MQ>'\z5N~Z1,1w}of"Ɲ}(h% \m5v+5}t-֯cb3\+Ty9vF 2 z F2aDOsπĂ*iAW_?оrB(Z&Q#Ydc:Z(w/K0xmmc=V^ Pn4" iu\7LN4OW<>vw 0,#pǛXnl3@HY 7' 5"ZMzQ[RJffK EjR\tx{2APӇ+T%:~L4A xAS,v5ą䴤||4&{V vH%G1^TBĜvךP7io2@F:FJO#;K\)o{xʃ q\Id@*NMtRש{n8PI@mݘVYt&-yssw&X]%;iaoy_@t]#F= @Pmqez _y˨HUCBEU#hBL4so߁&-3#6ֹm<;Ϊ@%i.XI;U!3l-ӽ1sqמҪ2ȿfl]:\z&Rt.D#ju9ʘ_36轏r~K~dG7d7PfHRۇ &p~ ? WLK icEs1@w.R@ޣ -玂Ug-oCUȠeL;~yt~j`t7.nՍR==)װ`K*wj!ԥ>K1/̣#l%lro0#ށ-vZd!W>dBw!4Rb#XS ~veD_zo a=6d?s kH!4_аE'CHƣW )zr 2M:W?h]32LCp4נ]J2 !hz1Q*^H`6~ɥXoؿ80yp5V_}Z|b_gRi>q6uvt&Ugr?w Fv5 %rg;{5w{2-I?bA 1pPp%q`=JQ =(<g:K,!k ^x ] 3/f( fMi::8H_҈,=L3n*nOqsEΕ,i!kI 藗=6 pO|wPчuiiI2󏎉ǁw2 K߸p촘յ+Ag:h[bk9f1R}SX%:y[59d\(RffN1Qp+2nr)- Ƿ8ς~^Ǭ~G *68EP92Ø6'"Q+s+h .Koc8OQڊD  )y7fyNz:r#XN"=}+Y`qfc-K76/8LyFdNNT;y4:=%E|A II}1VۏA""z\rmdMG3W%A",7g[WG'0Y|N"zEA?Iľ k e[aE͊߭~TW*;qz ]:,@@Lk9U"܋ ľ%) (p%o㜷;wʢ0ŦՔ?@Rn݄Nmh5t#SBڧ%{KE>]n.Ix,#A"zP6sFa6$[uUb}ÖeR ,֗sd(qj @., 'A?ܥƀe徖 `smXҊԲRQ[4<ZY"#DG /Q!qGG'"4y$`eA`&\6q'[v$CK\6MQ] iqe9,@JYN9z2VlE^rdC{j4 ,jJBӯ>W\UnPX@녍^Gl^]V̨<]-7## 1 nq5 'j(DEDԦ7[7!_g;U˓ތ%6m%ډ)'Y"(Ⴉ)7I$\`8/kaUg^O'La`_a8~lxT@]I"-ھKIo:M 弛 GFU _E̟Am%9l۬r|<>LĆ5uɥgTWO+e M:ehC՞MCU}L] y9Ęȯݕ3K -Cn$9F͈W un6IKSVgpu.\ }ы{zA?ܨjAV .SG8{+z`~y~8-a] #zzUlܸdg&R-Y*.&܀cdN'%'8X(&<;cYֿwUsI3Ot >N'>#"tPoNA嫆QI.ݠk಴??NS59A8fk ɖmRn:⑿;viI#k,pAR:}=ì[)22% (g}u%۳XǣD~a!#R:MSԯlD >©)lRdl#+.n+J @L~Pֆ$XSGV[8=pdkA>Oy~F^7m;az*`U^ǕG5 E_B8^F8[ U:Íў}O)7'B,g\_WkIQN'N~99JD֒Πu쩧?Q=c$\gg([p\~TMA-LpH1 *kS^nvAz!@Y& fCQO !R7J(FATk30i*\Xn$0uL;9;mд]Zj+xB;s# .2Ii&! H:o# BϫIc|QS1YѳִrB9ڶԙ֠շ ov<AS&kJK+ppYeGoAv[;@g*@T%+AV~7ZhNit+6 ,@Nh/O Oʰ'%6~r 7/HZ!^ǐ:EWϹҔӇзgi iBd-A2*/HiK3p!qAlԜֻٍq0!NSUiGaZ.}tDm#s|nqM;' YC?PD4n'e#'4r 'g}ڄC2BpP-o}ᒧVP`HXwND?"n[1ɴN7/rXZS|~i C(,"q(C)")~mή8xeʺ$cقDzs"&$B,&*ϥLrou&^G.c%ʋwlmw>4lCJ[CC (,s5AzS@"%b7'*}(.;Clfx?i7'ߔ`Bq rUI>!KLQ>q=_goPgêeT[s"%>oǷ;  YVn-螵B x.JCf)s> fvn E%WVC%' i<;LJ ܻ YZ