postfix-3.7.3-150500.3.14.3<>,Gtf4p9|G3!^C]d| 7"ӽC#qUu_Qp X ܟo斥pz,{'T8n' Ev'QP"6΍BB _' *hia"{' %_AC'ogM @CDj)~79v]D?l+ ]{SR-)tPFqq_𴬈*>Wl3b%.|S\>Th?Xd   B )@FL`+.t  Z ! %@ P QUYW]]` a=b=g=hh(hB(hE7hL8j 9l|:x2=>?@BCFGH`IXx Y Z[ \ ]d^bFcdqevfyl{uv;w,xpyٴz TCpostfix3.7.3150500.3.14.3A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program.f4s390zl317SUSE Linux Enterprise 15SUSE LLC IPL-1.0 OR EPL-2.0https://www.suse.com/Productivity/Networking/Email/Servershttp://www.postfix.orglinuxs390x# If existing default database type is hash, we need to convert the # databases because hash (and btree) is no longer supported after # the upgrade if [ -x /usr/sbin/postconf ]; then DEF_DB_TYPE=$(postconf default_database_type) case $DEF_DB_TYPE in *hash) touch /run/postfix-needs-convert esac fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in postfix.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi /usr/sbin/sysusers2shadow postfix-user.conf <<"EOF" || [ -f /.buildenv ] g postfix 51 - - g maildrop 59 - - u postfix 51 "Postfix Daemon" /var/spool/postfix m postfix maildrop m postfix mail EOF # We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update # # If the default database type of the previous installation was # hash, we also need to rebuild the databases in the new lmdb # format if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured 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 [ -e /run/postfix-needs-convert ]; then sed -i -E "s/(btree|hash):/lmdb:/g" /etc/postfix/{main.cf,master.cf} for i in $(find /etc/postfix -name "*.db"); do postmap ${i%.db} done for i in $(find /etc/aliases.d/ -name "*.db"); do postalias ${i%.db} done if [ -e /etc/aliases.db ]; then postalias /etc/aliases fi rm /run/postfix-needs-convert fi 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 /usr/sbin/postlog 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 /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 if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in postfix.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable 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 [ $1 -eq 0 ]; then # Package removal for service in postfix.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( 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 fi~Rw) 3(\{~!%/461H@9'(@'HHyPP8@@H@Ypt*nI(@$NXX`8@h@8@8yM(@Y(@H@@ |}!!UWXGX^RDLx(WH(8H`8@'7(WyPX@hHxphAg}](( J A;9 & -  vZH 1 z  ~ &q $ `|T 6 *6Z d& `AAA큤A큀AA큤AAAAA큤A큤AAAAAAAAAAAAAAAAf4xB*Tf4Rf4Rf4xf42f43f43f43f43f43Jf4Rf44f44]:J@~f`Ӳf44@~f@~ff4'f4'f4'f44f44f4Q@~ff4lf4lf4lf4af4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4-f4-f4-f4-f4ff4-f4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4ff4Sf4Sf4lf4lf4lf4lf4lf4*f4*f4+f4Rf4+f4ff4ff4S^=?PҺ^@zb/f4;f4;f4>f4>f4>f4?f4>f4>f4?f4?f4?f4?f4@f4@f4@f4Af4Af4Af4Af4Af4Bf4Bf4Bf4Bf4Cf4Cf4Cf4Cf4Cf4Df4Df4?f4Df4Ef4Ef4Qf4(f4)f4(f4(f4(f4(f4(f4(f4(f4(f4(f4(f4(f4)f4)2a578b63978d4658a4982a6cd6cdc8b123eb297be639937a6febed1ab696868d6233f37dc93ae05d476bbeb03ffa6de4d006893a9d5c91d38afb66506d224e9dd5e51380e7ec868a42d336c868fc012ab95cac771d95361504cc6040b8d862217fdf5c3b79ba13d9c264e20742b88ec15b3b9ca7abf400e24691fefddcf54fec84c8bf2d0d78923734d713667ccbb34b703da09da9bfb4bc1ee1930e29252e530346aaf4bc296be09477b038c780641b4b074c9bafa94b3b556cdc3f77c17f17e3fe120264875113f86595e8310867a188e65f52c3f039c4e2c3554910e4562f1a1282cd3e245ea1bc32c901f715dc8f0c0b3392a9263dacf39fb65badb85932e523e826b0192c39b42d71597caa8b3e5e166d1e6af98528f046f1ebe67279257987a8bb5574dc385076dc07254f804116424358cc8bdb9a9b53a15a83735def7fcba90f6c0cd06fdb4ad326ba702851388052f6aadcad191f47be96dfef815604b01ab527ab6a31f3d6fdf11ddc9b3b8b33f71490d3f0e16273148514e8509f94dde5b8abc9797efaaea2dbc51a30ff96cc55e2df5507258db5330e8c1db23842fac085b0a420236276365e4f84728f8a970d6fb5b22ded860610d0612a52ac399c61c8aa9b4928006339bd1dbebd59081f7ea0bf20381936d55bcfcad72642fdf3be782f4cce5b80154b8c0973317c625378b858dc436fa13d058a683b575d781a6729a1fc0bc234f92a7c255fa27e5fab22721bb84b836ef9f76d50aae2e0af1bc2712e7b9014e9d3d5f0d879c477ce63e3daac584259f7e38205e93330c7ed12c4a05ddf1e305d7155fd9a68b5c948290c05538aedf58e88ddac2a7488aecd6ff7ab94a92159da177b67105cee1625528dbfc9787b25479a83f205e783d0bfa404aea7145bd715d44008f4e95b3cef31c4509f7afd6391012b05c459f6d767138c521369d4d94649ec525a797e103cf5f5a37840e8aee86cc6be717c1b476617c2faa6edec2450a9cfe004b09f3c37a2ccb4cd6fd2cb945bb95790f963755844f27e7ca81d590e153a265d62ddf155c44588e22dd6ee50b6a6d5b6342e9eb96e385ef638a0e0592d5e94dea7c1ccc509183a29b0d43791fef678d0e9de1a11b4d1b5d9cf728df1a1f8e44878a557032dc21c3259a1507d6d87e076dd4f5905f470f697faad1e0375fa137788e9288bbaf43eb89da38b149cf3706b7d4224a9434002ce344596f66b15f62595893ba833728df5d810489846e862128e154c3598a95089a1d0ccd63f1671e8c24dff67c45b1c917ad47a6724b15b2e0ac9d966346881fd6ed27fade1a00a5aa1f00e41b385b6d6dd60a1a1c8e0d6179c738918337420d02a7d94bfb8d2a64bfad9a1abaaeda47fd5160d54ba104aa5d68e2677e283dbf3cacd2f1d525ac97388c91aa1130e1e44ac266ca0626bcdfb2836f0e4cf7df484c4ab84129e6817c83a013e8c1feff8343edd787c9a85f2352e67820a9dd73e3b373c52800411e37bfda673bf6cba463433b0b1d7836ecd2651267abecdbc05ab1c508c257be44f2701ffbd275f434b6cb24105ef7643d4f1efa508a84e1dc7361c01ee08477135b62d89a48a73305b600ac24e5910a84bb4dbc05402b329631a8ae17a314870f452f2f0c5d236d06cc9d250175b90410f9279435f7b2f8f9147b41c7e47df9b97c22831afb23be7141818614ec2370210e460c9d1d1952b04ea66793de883a61045da9d3665f409812fc6578090deaabe864a695f245cf3a00a723f8d359243ae47b3bfcd3b8d5b2fc922066041aab756a5e885d58eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e17f93ae75ee5c3eac67bfe3a6d48fb702b1a6291d3a951da438597205768e5db96308e79a80563130e95d899567daf677329fd128b07339cecfadd6ad48d1cae5d0c43672dae44daefc1e4b6e946d920c31283f996384cce0cf142509d1c1cbbf7dd9fbda9ab97a568f47b111b53b9e0ecb2c273e242bc070fb094d664aa68ab00a9dd73e3b373c52800411e37bfda673bf6cba463433b0b1d7836ecd2651267a12c7ea48ea37e0c035cf0d0df571067a222bff476d7bbc63d402f727b4dc547cbeae3c772683cc8b0b4f954bf30537ffb60e971b676733362b80ba8ba0cb9851a032153c2f70c325908eb818a1b58b47e50c09c65bbdb3ef68d02c34b005df0e18337420d02a7d94bfb8d2a64bfad9a1abaaeda47fd5160d54ba104aa5d68e26a72e2ca30e37a3c50a7752fdab111027c10d07c048336f8176ee43e62aef83cd51f2724c53c7d50a88ad6c897d05e2dd85351f18c4cbbb5edb25d750a828ff270c6294253ac22b70be9dcba5d5fc2008628804ae51ab796d3f228e96296208a41db6868325572bc977242bb5043127802d4fe5a0bf2145584101b46d3a43771abad03e86da945e05a09f7cb50a621d0abc54edebcb9def1c0bc202d9ce5f63fb9bbdf4ed314f9c11f39b5634743c1b90dca13c50b7bca0b3ce75e81bc250e62f4546dddc24d0c1ad0cabd68b616a23b88a41374fbfc5e7aaab3cf5781059b003ca3116a797d6f8627beb981be2f089ceef8bfbd7035bc02af87fc4bb6a481f1e2252addbea989d9006b83555f23eb8f76cd693cae51da5c9e84d2928a6f37fa17e43fcf4ab576843762f6fa658db42b0fb28d372e38182aaf21c18636599670a94dde5b8abc9797efaaea2dbc51a30ff96cc55e2df5507258db5330e8c1db2383666a3d2bf199450769144b461d596b71f7d5a4f71915319c30bc9f5a372dd517d3cfeeacb6fefc11cc94c8b2c77974b8ee159e9ec1a488381e2dd200795ff3d5c1c3fa81b923480a2b113aa9eec9a26757db2314adde322057b386436208d5789020c1ea194e7b3b5593f895c17826a054df54aa2b05ed2a27fe25e39950ee85acd39bc6ab523fc65209ca3eb9b9ba0aa262ac4126165e92f7e50d4b1828e8e629ecacfee9b825e544e77664b580fd3a4b79683a569522ba9664678d1ea909e307d0c83a162dff424bc75945b5efaa07ca932206f34ca914d118a8eef97814f6d9961cfc75d9f200710be2c198fe66dac6fe7d2204377f9e073b52a488616ec2bae481f01213bfeeaf6f5c71250d752e1e6b7484598d634e8f34becbddaea77948fc901134b90a69d20bef55e0ded2fcf96c688f6a931141bb9557014aa8174345c32566ce60562a65333240ae41b34d42ba41933eb229f901a7148be94470fe32ff723e94f5700b7a19576544b438151befd1be2543f81dca3fa23eebc9c4e088437fead9e86794a8ba2c83bd2d1d0f4110c87d805c89422a8fd728d6ae6be378044fc6ab3296e012268377737b46499c1847224b7a8fb7912882b75ad9323ea6dfee300be8674fba4cf1c99bcccc62a3eaf5f834e17a43557e79b8b5219be5d07ce83280dbfd59c64fff72dd8e9b1b7c9befe7824f010f9fd8372c1467b797bd40ea2b6712f04f86224fe054d15d029ba83452a3a538ef864576e956d6f78d1c96dd1a5566d34d280012af856ab10a74114a48c1efc15e016b6f8ca91005dcd959bfeebe76369f398d4977cf3189a9f22bf9fbc3fcb5eddb72a2ee25b741e7a9e394b2c32b9f730229c022b30fe0a34213e5f1be37482a018f55201fc8788bea5448acfe89156b445985890c524cbcc6facdf8f4a7f615485b13a65b32c1e51fe9b64008c745f2409da5761e2553005a653decf86482eb4382b554779ab39859b9443e8aaa3c6421afef42dcdfb9d53e2ef97489aa5e66c3eb6194c6839f35aec6798c97a175e4ada0122ba23d851bb2e11540813e159926db65bbbcc193ffc8ae45d813d9f188681478976fe9e30f8feab4f5913c8510593353bc0bf157ce1518bcc11e4691e565168c0ac6ccd49ae12a361ac97c081d213cd41dba0920a6718a5710bc7e146ec67d207bb2552b1daac65e2d369ff8b4873d1cf4e333e11835b38360eb21e23e60f22b050c876885ca3ba23bc31135f5b9650612fd863967fe4dbf2ad70441d086da65334076f34407b7aad13faeda10f08599a82db2aa7ef999eb93fb59d391a45d980fd1a36dad29081583fc7a917746b59b3598fa0a2175fa61d877ca6ef405462a596fd84991f08a5532e4b5428da493c71ef1956dd32df8df41260256992f319d0bffe17d0887432474eb9796604c8284a2eeb00328f5dbc304cfc8d829683481662c49896d0edece86b588169241e2086d03d312ca02a55a1a04052c6683154e5f679b3665890295628e527c5ae268adb2382380edc52bd3ebc52fd8bce4f5bdbbd6a0dc40db295d8205194f536cab893caf1ff8271e1bf3bb15fa706ad0043403f7cfa3ddcf18c0fda1819510b3eed675626f93c9e8f419f25f0f53e6bfed867bb7bcbeb8ae50fd6c066623751c197814061d4a2c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56d7c000b62ab236b5c5c4db8ad7edec232b2afe95d85c8e064a5c9f6d5308620fcf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae5cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae559b18a68e03edcfde6dc514fcc598d906f4628798ec3d8a2a27f65be82fe021912c0a752512a2fa449962c8ad6485bcf18b77b25d1ca510f617d22acd541bd3676a9757ad897490efcbb2930e4df2c4825e357fd837b0b4edb593dbfb929c890c0a551e468e51ab954609f7cba8d90a690592424021dd4172b6d503f61f16f2a09fa295334c7eb61a38611d79572e3b9807351a1ace2187be7122a535c513628380c5a203fc8c25ce60ac2e886c59c3feda42bbfd5d8ea5ab43aa8e81be546ff50ea672e2974dfb23a0ba943c154b168d873da4fe620a591b7dd1bca4b50e680add3e1d9b2ecf4ef4719a9375251264af81ac483191bb175bb6cc2e1531864463d8cbf8c98a56846f982e39fab33e36f5f25721f9abb6bcb6cc27aa0e30c270f6a8885a9977b0d4dfa7d9f0257993d372bb1ac8c2939af20e3510abc8e784dd92ad9e16472f2fd41d9b935a51124bd23255942bb31b87baa5032abaea63464b68324a8668d30666cbcaca4d0cf14c848038ce428ec52c7e794b8b1595c58aa633f44dd6a18a2642f15dbfa4bbd9996afcf754ee21f219cfecd9769b10165e815302e6af00d997abd1c007293c1c5dd39394f2d26646cefd3daa55d03baee41680615045b43a6f34d23521e5ca1dcbc98d96417a751822c79b88cb8cc439fe6b11c5c3e6b854f094f1d2adfefe2c9d2954299844543544d619e3d71365f20592b579aaa2cd24c8086d371fa5c1dd21aabf5a38581a43048414c49f9f1f7b442e64ed17e39efb4a8119815dff22e6d0c0ad06d759a86b1ccb8c500dbc2fb0b3edba89bf354cde01ee2fb2aef1f7a42fc208e9dc394dfc29c5ddb81070ff23342f6a143cda859d6f9009818f2b2d35e63598a4cd89ca3465f9a13ee8c36cde0df3d8dcc538be9ca147cdefe2a8aebc2fc112206782be0463bc7b56b59f25e0e03103c128651d6800935396d82ea8d9ba8fbdcc21fbcb2143b53f137396e1c3cbe0d0470f26ae76c3c22ec9629fe9aa386c74cc95f82d8b91ade8adbd42984d6a2c0e9bcfa5cd19bd9c7efa18b4881572e613c971c7ebb4a5c4f02c8d16d7994624295e9a149ba17b04192f87ca8f461a7341279d6d29a0c34a416132ee9809885539e952420b13295663dcddbca6542a3b15c466d07b06c4c1d4bcb3193e25c95f1b1af69aad541f2834dda291f048adf0ef41b6028ec991db25a3d346880d61678f45391d1d1ee69e5ae310cf4884cd065ce44fbd25053ad3a0ce8f22bf6dc5b0d615119b8ff1b7e2aaf71c62ff67847d3c8a8f477521b749c4e07f9a7bbb478b7320f0a928861874ce74bf40110506f38932d282de80232385015f0843dca9e56973a903a028483a52502c3421baf32b2bf06df249be5c07ec6169cfcf5e9e059b52718c89b2a31f7067eb143d505d7de1bf9325ed759018eb9f78de3c03a8b78fbfbcbc0f9cc6ff1a2608a5cfd2361e19bfbb42d470ab38205b89f1a492cc3949e080a63a9abc97ce080a0a43c3a2706f4a4b0a45a7ccfd782962e230511068e48f019236073cd43b84ba5191117707b2ffe29d5662f1a3db751fd3d202beba42b578b55eea83dc321c35719751be2d4a9c206731ef4c4e9a5ae0ca1933bcbafb23436e690ddba82f337aa0e605fa2e9602a48920dc557838f611467178c2da9473b18cb2dd09bba11700177c4c1f78d050403e9b6ae3a3afea5e5c3e8aa40f08fee2e03fc6b368c57fed43874ca64dd0d3ea495c1be3968adb5f355ce2ac4a2e65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cf1ee17f559410830a74bcda186e544e50aad24d52353072ba67d3744e87a5da9ba8e978995d78535f862b96ba2d46576a8ef0f9fedf761c1a3cc98f365e76e647bff739951fd551d2826dc6cad3bfbb767db18c4b80feb1c8cf5eecd16f4d03e183072bfc4b441c6355b69dc7200436daf39be2d3e01d8957a3206a5781a6cce023203dfed04846ed6cb2dd23b7f8dd879084c267e9b3f9aec297c69c11bf56086088e06d4dda57bd3ff3408d7cee78fb9ba89c273f6647013b3801039f5cc0fa06aabdc85825ed9d073031c5ce8a1cc44a2ab7d0463d2cd3c0f4478040801bd5de8903f4452cae0ba5c70c22c8f6bdd6c589f63bd7a904e7869db9cc8ce162eca1bf811f96179634a94f7a2e855206161bfeb34718ed81e00af747d86afdfa5be3a04377a06261211b9526160f29621a4d98efd74aad74c8673267d6bbed65bd73c9501197d9f714ef980c3dcafd5d367e29ac91a087cfbcbeb58f1bf778a7f92d01dddc97d4ba465ef1e1c6a5fcc502fefb58bb0d9b130588a0d983946130636461074eab17a8248b5392791c54e752097c91a40d5506cf436124471e622aa36b1a54dc7d363ee6f158e7674ecf53f1acc71f759a420397820e7a07e914c1f7bca267ec2a3f11ff73810482162a4b096b9fb57dce4ecb1a5c88414eb44c42b122287b5b0d119a4c8e1e0c31b2d2067e8cfce481dab413b8114adeedb4d2e6a3655713755ac205b888a8047eb1e04e06a72505b27d86e904911767c59b13dea117a6a25b1afa1307e6e0d7973fc52e3000daec9a7e781557f9db61180d5944d45560dde55dbf3c676a278d0a8fe4a28364a85484fef68df290b7b52334d55e3bfe8e770f2abf3cd7772d1ab298b73efbe9e92b2cb03380aadc0f1798749cea8d68282df5de4adde2de334f568a7514e3b32fa4467212bde04c41790afe9b82a20fb78466dd4192adfdcdaaad9507244ff791c67f2107ce3dadd8c546cc672c0ae65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cf360308d57a23d8e3159088bd528c14d2231870549d27e28ef814a6bbccd890cfc75ee98d76e7ba9b49b2941e5db0c9655b261deed9e6215bf43851a54dd8feb9399fa1d276d9b336bf42890d530aacc70dbefcc9a3f6c1c098df056cc8f8f841../../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/sendmail../postfix.serviceservice@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpostfixrootpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootrootrootmaildroprootrootmaildroprootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootmaildroprootrootpostfix-3.7.3-150500.3.14.3.src.rpmconfig(postfix)group(maildrop)group(postfix)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)postfixpostfix(s390-64)postfix-lmdbsmtp_daemonuser(postfix)@ !@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/ed/usr/bin/ed/usr/bin/ed/usr/bin/edconfig(postfix)coreutilsdiffutilsfillupgrepgroup(mail)iproute2libc.so.6()(64bit)libc.so.6(GLIBC_2.11)(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.2)(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)libcrypto.so.1.1(OPENSSL_1_1_1b)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2)(64bit)libicuuc.so.suse65.1()(64bit)liblmdb-0.9.30.so()(64bit)libnsl.so.2()(64bit)libnsl.so.2(LIBNSL_1.0)(64bit)libpcre2-8.so.0()(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)(64bit)libsasl2.so.3()(64bit)libssl.so.1.1()(64bit)libssl.so.1.1(OPENSSL_1_1_0)(64bit)libssl.so.1.1(OPENSSL_1_1_1)(64bit)perlperlperlperlpermissionspermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)sysuser-shadowuser(nobody)3.7.3-150500.3.14.33.0.4-14.6.0-14.0.4-14.0-15.2-13.2eximpostfix-bdbsendmail4.14.3 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postlog 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postqueue 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 # ---------------------------------------------------------------------------f3@e(e;dܺ@d@bbbzSbq@bobf@b]RbJbBb4t@b/.@baa@araraqV@a^@a'@a$@a ``R@``E`"@`̊`D``r`!@`t6@`H`B@`3@`U`__@_@_@__j___L@_D@_?@_/@_p@_A@^^^b^'@^>@^=@^ku^=Q@^:@^8 @]e@]@]b@]m]M`@]:@]9]4S]]^@]@\@\\\@\~d\}@\zp@\y\\\LK\I[[=@[ͻ[[[[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@varkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.dechris@computersalat.dedimstar@opensuse.orgmrueckert@suse.demichael@stroeder.comvarkoly@suse.comilya@ilya.cfmichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comopensuse@dstoecker.dejsegitz@suse.comjsegitz@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commichael@stroeder.comvarkoly@suse.comchris@computersalat.dechris@computersalat.degmbr3@opensuse.orgmichael@stroeder.comchris@computersalat.demrueckert@suse.devarkoly@suse.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.cominfo@paolostivanin.comsuse+build@de-korte.orgvarkoly@suse.comsuse+build@de-korte.orgsuse+build@de-korte.orgsuse+build@de-korte.orgvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comkukuk@suse.comkukuk@suse.comsuse+build@de-korte.orgmichael@stroeder.comsuse+build@de-korte.orgkukuk@suse.commichael@stroeder.commichael@stroeder.commichael@stroeder.comsuse+build@de-korte.orgmichael@stroeder.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.commliska@suse.czmichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commatthias.gerstner@suse.comchris@computersalat.demichael@stroeder.comvarkoly@suse.comdimstar@opensuse.orgtchvatal@suse.comvarkoly@suse.commichael@stroeder.comvarkoly@suse.comjslaby@suse.commrueckert@suse.demichael@stroeder.commax@suse.comchris@computersalat.dechris@computersalat.demalte.kraus@suse.commichael@stroeder.comchris@computersalat.dechris@computersalat.devarkoly@suse.comtchvatal@suse.comvarkoly@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- Set inet_interfaces to loopback-only instead of localhost as proposed in man 5 postconf. (bsc#1223264)- (bsc#1218304) VUL-0: postfix: new SMTP smuggling attack (bsc#1218314) SMTP Smuggling - Spoofing E-Mails Worldwide Apply patch containing the feature smtpd_forbid_unauth_pipelining as default yes. add patch: postfix-3.7-patch06 - Security: the Postfix SMTP server optionally disconnects remote SMTP clients that violate RFC 2920 (or 5321) command pipelining constraints. The server replies with "554 5.5.0 Error: SMTP protocol synchronization" and logs the unexpected remote SMTP client input. Specify "smtpd_forbid_unauth_pipelining = yes" to enable. - Workaround to limit collateral damage from OS distributions that crank up security to 11, increasing the number of plaintext email deliveries. This introduces basic OpenSSL configuration file support, with two new parameters "tls_config_file" and "tls_config_name". Details are in the postconf(5) manpage under "tls_config_file" and "tls_config_name".- postfix: config.postfix causes too tight permission on main.cf (bsc#1215372)- CVE-2023-32182: postfix: config_postfix SUSE specific script potentially bad /tmp file usage (bsc#1211196) Use temp file created by mktemp- update to 3.7.3 postfix 3.7.2 - messages with many recipients are declared corrupt with warning: Unexpected record type 'X' at offset (bsc#1213515) This fixes a bug where some messages were not delivered after "warning: Unexpected record type 'X' The new version contains only the required patch- use correct source signature file (gpg2)- update to 3.7.2 https://de.postfix.org/ftpmirror/official/postfix-3.7.2.RELEASE_NOTES - rebase patches * pointer_to_literals.patch * postfix-linux45.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch * set-default-db-type.patch - build against libpcre2- remove *.swp from postfix-SUSE.tar.gz- fix config.postfix 'hash' leftover with relay_recipients - update postfix-main.cf.patch about * smtp_tls_security_level (obsoletes smtp_use_tls, smtp_enforce_tls) * smtpd_tls_security_level (obsoletes smtpd_use_tls, smtpd_enforce_tls) - rebase/refresh patches * harden_postfix.service.patch * postfix-avoid-infinit-loop-if-no-permission.patch * postfix-master.cf.patch * postfix-vda-v14-3.0.3.patch * set-default-db-type.patch- Change ed requires to /usr/bin/ed: allow busybox-ed to be used inside containers.- add missing requires for config.postfix and the postfix postinstall script: perl and ed- update to 3.6.6 * (problem introduced: Postfix 2.7) The milter_header_checks maps are now opened before the cleanup(8) server enters the chroot jail. * In an internal client module, "host or service not found" was a fatal error, causing the milter_default_action setting to be ignored. It is now a non-fatal error, just like a failure to connect. * The proxy_read_maps default value was missing up to 27 parameter names. The corresponding lookup tables were not automatically authorized for use with the proxymap(8) service. The parameter names were ending in _checks, _reply_footer, _reply_filter, _command_filter, and _delivery_status_filter. * (problem introduced: Postfix 3.0) With dynamic map loading enabled, an attempt to create a map with "postmap regexp:path" would result in a bogus error message "Is the postfix-regexp package installed?" instead of "unsupported map type for this operation". This happened with all non-dynamic map types (static, cidr, etc.) that have no 'bulk create' support.- config.postfix fails to set smtp_tls_security_level (bsc#1192314)- Refreshed spec-file via spec-cleaner and manual optimizated. * Added -p flag to all install commands. * Removed -f flag from all ln commands. - Changed file harden_postfix.service.patch (boo#1191988).- update to 3.6.5 * Glibc 2.34 implements closefrom(). This was causing a conflict with Postfix's implementation for systems that have no closefrom() implementation. * Support for Berkeley DB version 18. - removed obsolete postfix-3.6.2-glibc-234-build-fix.patch- Postfix on start don't run postalias /etc/postfix/aliases (error open database /etc/postfix/aliases.lmdb). (bsc#1197041) Apply proposed patch- config.postfix can't handle symlink'd /etc/resolv.cof (bsc#1195019) Adapt proposed change: using "cp -afL" by copying.- Update to 3.6.4 * Bug introduced in bugfix 20210708: duplicate bounce_notice_recipient entries in postconf output. This was caused by an incomplete fix to send SMTP session transcripts to $bounce_notice_recipient. * Bug introduced in Postfix 3.0: the proxymap daemon did not automatically authorize proxied maps inside pipemap (example: pipemap:{proxy:maptype:mapname, ...}) or inside unionmap. * Bug introduced in Postfix 2.5: off-by-one error while writing a string terminator. This code passed all memory corruption tests, presumably because it wrote over an alignment padding byte, or over an adjacent character byte that was never read. * The proxymap daemon did not automatically authorize map features added after Postfix 3.3, caused by missing *_maps parameter names in the proxy_read_maps default value. Found during code maintenance.- Update to 3.6.3 * (problem introduced in Postfix 2.4, released in 2007): queue file corruption after a Milter (for example, MIMEDefang) made a request to replace the message body with a copy of that message body plus additional text (for example, a SpamAssassin report). * (problem introduced in Postfix 2.10, released in 2012): The postconf "-x" option could produce incorrect output, because multiple functions were implicitly sharing a buffer for intermediate results. Problem report by raf, root cause analysis by Viktor Dukhovni. * (problem introduced in Postfix 2.11, released in 2013): The check_ccert_access feature worked as expected, but produced a spurious warning when Postfix was built without SASL support. Fix by Brad Barden. * Fix for a compiler warning due to a missing 'const' qualifier when compiling Postfix with OpenSSL 3. Depending on compiler settings this could cause the build to fail. * The known_tcp_ports settings had no effect. It also wasn't fully implemented. Problem report by Peter. * Fix for missing space between a hostname and warning text.- Ensure postfix can write to home directory or server side filtering wont work (sieve)- Ensure service can write to /etc/postfix- Added hardening to systemd service (bsc#1181400). Added harden_postfix.service.patch- config.postfix not updatet after lmdb switch (bsc#1190945) Adapt config.postfix- postfix master.cf: to include "submissions" service (bsc#1189684) Adapt master.cf patch- postfix fails with glibc 2.34 Define HAS_CLOSEFROM (bsc#1189101) add patch - postfix-3.6.2-glibc-234-build-fix.patch- fix config.postfix (follow up of bsc#1188477)- Syntax error in config.postfix (bsc#1188477)- Update to 3.6.2 * In Postfix 3.6, fixed a false "Result too large" (ERANGE) fatal error in the compatibility_level parser, because there was no 'errno = 0' statement before an strtol() call. * (problem introduced in Postfix 3.3) "Null pointer read" error in the cleanup daemon when "header_from_format = standard" (the default as of Postfix 3.3), and email was submitted with /usr/sbin/sendmail without From: header, and an all-space full name was specified in 1) the password file, 2) with "sendmail - F", or 3) with the NAME environment variable. Found by Renaud Metrich. * (problem introduced in Postfix 2.4) False "too many reverse jump" warnings in the showq daemon, because loop detection code was comparing memory addresses instead of queue file names. Reported by Mehmet Avcioglu. * (problem introduced in 1999) The Postfix SMTP server was sending all session transcripts to the error_notice_recipient (default: postmaster), instead of sending transcripts of bounced mail to the bounce_notice_recipient (default: postmaster). Reported by Hans van Zijst. * The texthash: map implementation broke tls_server_sni_maps, because it did not support multi-file inputs. Reported by Christopher Gurnee, who also found an instance of the missing code in the "postmap -F" source code. File: util/dict_thash.c.- spamd wants to start before mail-transfer-agent.target, but that target doesn't exist (bsc#1066854)- postfix-SUSE * rework sysconfig.postfix, add - POSTFIX_WITH_DKIM - POSTFIX_DKIM_CONN * rework config.postfix for main.cf - with_dkim - update postfix-main.cf.patch * add OpenDKIM settings- postfix-mysql * add mysql_relay_recipient_maps.cf - postfix-SUSE * rework sysconfig.postfix, add - POSTFIX_RELAY_RECIPIENTS - POSTFIX_BACKUPMX * add relay_recipients * rework config.postfix for main.cf - is_backupmx - relay_recipient_maps- Add now working CONFIG parameter to sysusers generator - Remove unnecessary group line from postfix-vmail-user.conf- Update to 3.6.1 * Bugfix (introduced: Postfix 2.11): the command "postmap lmdb:/file/name" (create LMDB database from textfile) handled duplicate input keys ungracefully, discarding entries stored up to and including the duplicate key, and causing a double free() call with lmdb versions 0.9.17 and later. Reported by Adi Prasaja; double free() root cause analysis by Howard Chu. * Typo (introduced: Postfix 3.4): silent_discard should be silent-discard in BDAT_README.- fix postfix-master.cf.patch * set correct indentation (again) for options of - submission (needs 3 spaces) - smtps (needs 4 spaces) to make config.postfix work nicely again- Update to 3.6.0 - Major changes - internal protocol identification Internal protocols have changed. You need to "postfix stop" before updating, or before backing out to an earlier release, otherwise long-running daemons (pickup, qmgr, verify, tlsproxy, postscreen) may fail to communicate with the rest of Postfix, causing mail delivery delays until Postfix is restarted. For more see /usr/share/doc/packages/postfix/RELEASE_NOTES - refreshed patches to apply cleanly again: fix-postfix-script.patch ipv6_disabled.patch pointer_to_literals.patch postfix-linux45.patch postfix-main.cf.patch postfix-master.cf.patch postfix-no-md5.patch postfix-ssl-release-buffers.patch postfix-vda-v14-3.0.3.patch set-default-db-type.patch- (bsc#1186669) - postfix.service has "Requires=var-run.mount" Remove bad requirements- Update to 3.5.10 with security fixes: * Missing null pointer checks (introduced in Postfix 3.4) after an internal I/O error during the smtp(8) to tlsproxy(8) handshake. Found by Coverity, reported by Jaroslav Skarvada. Based on a fix by Viktor Dukhovni. * Null pointer bug (introduced in Postfix 3.0) and memory leak (introduced in Postfix 3.4) after an inline: table syntax error in main.cf or master.cf. Found by Coverity, reported by Jaroslav Skarvada. Based on a fix by Viktor Dukhovni. * Incomplete null pointer check (introduced: Postfix 2.10) after truncated HaProxy version 1 handshake message. Found by Coverity, reported by Jaroslav Skarvada. Fix by Viktor Dukhovni. * Missing null pointer check (introduced: Postfix alpha) after null argv[0] value.- (bsc#1183305) - config.postfix uses db as suffix for postmaps Depending on DEF_DB_TYPE uses lmdb or db- (bsc#1182833) - /usr/share/fillup-templates/sysconfig.postfix still refers to /etc/services Use getent to detect if smtps is already defined.- (bsc#1180473) [Build 20201230] postfix has invalid default config (bsc#1181381) [Build 130.3] openQA test fails in mta, mutt - postfix broken: "queue file write error" and "error: unsupported dictionary type: hash" Export DEF_DB_TYPE before starting the perl script.- bsc#1180473 - [Build 20201230] postfix has invalid default config Fixing config.postfix and sysconfig.postfix- Update to 3.5.9 * improves the reporting of DNSSEC problems that may affect DANE security- Only do the conversion from the hash/btree databases to lmdb when the default database type changes from hash to lmdb and do not stop and start the service (the old compiled databases can live together with the new ones) - convert-bdb-to-lmdb.sh - Clean up the specfile * Remove < 1330 conditional builds * Use generated postfix-files instead of the obsolete one from postfix-SUSE.tar.gz * Use dynamicmaps.cf.d instead of modifying dynamicmaps.cf upon (de)installation of optional mysql, pgsql and ldap subpackages * Use default location for post-install, postfix-tls-script, postfix-wrapper and postmulti-script- Set lmdb to be the default db. - Convert btree tables to lmdb too. Stop postfix before converting from bdb to lmdb - This package is without bdb support. That's why convert must be done without any suse release condition. o remove patch postfix-no-btree.patch o add set-default-db-type.patch- Set database type for address_verify_map and postscreen_cache_map to lmdb (btree requires Berkeley DB) o add postfix-no-btree.patch- Set default database type to lmdb and fix update_postmaps script- Use variable substition instead of sed to remove .db suffix and substitute hash: for lmdb: in /etc/postfix/master.cf as well. Check before substitution if there is something to do (to keep rpmcheck happy).- bsc#1176650 L3: What is regularly triggering the "fillup" command and changing modify-time of /etc/sysconfig/postfix? o Remove miss placed fillup_only call from %verifyscript- Remove Berkeley DB dependency (JIRA#SLE-12191) The pacakges postfix is build without Berkely DB support. lmdb will be used instead of BDB. The pacakges postfix-bdb is build with Berkely DB support. o add patch for main.cf for postfix-bdb package postfix-bdb-main.cf.patch- Update to 3.5.8 * The Postfix SMTP client inserted into message headers longer than $line_length_limit (default: 2048), causing all subsequent header content to become message body content. * The postscreen daemon did not save a copy of the postscreen_dnsbl_reply_map lookup result. This has no effect when the recommended texthash: look table is used, but it could result in stale data with other lookup tables. * After deleting a recipient with a Milter, the Postfix recipient duplicate filter was not updated; the filter suppressed requests to add the recipient back. * Memory leak: the static: maps did not free their casefolding buffer. * With "smtpd_tls_wrappermode = yes", the smtps service was waiting for a TLS handshake, after processing an XCLIENT command. * The smtp_sasl_mechanism_filter implementation ignored table lookup errors, treating them as 'not found'. * The code that looks for Delivered-To: headers ignored headers longer than $line_length_limit (default: 2048).- Update to 3.5.7 * Fixed random certificate verification failures with "smtp_tls_connection_reuse = yes", because tlsproxy(8) was using the wrong global TLS context for connections that use DANE or non-DANE trust anchors.- Move ldap into an own sub-package like all other databases - Move manual pages to correct sub-package- Use sysusers.d to create system accounts - Remove wrong %config for systemd directory content- Use the correct signature file for source verification - Rename postfix-3.5.6.tar.gz.sig to postfix-3.5.6.tar.gz.asc (to prevent confusion, as the signature file from upstream with .sig extension is incompatible with the build service)- Update to 3.5.6 with following fixes: * Workaround for unexpected TLS interoperability problems when Postfix runs on OS distributions with system-wide OpenSSL configurations. * Memory leaks in the Postfix TLS library, the largest one involving multiple kBytes per peer certificate.- Add source verification (add postfix.keyring)- Use systemd_ordering instead of systemd_require. - Move /etc/postfix/system to /usr/lib/postfix/systemd [bsc#1173688] - Drop /var/adm/SuSEconfig from %post, it does nothing. - Rename postfix-SuSE to postfix-SUSE - Delete postfix-SUSE/README.SuSE, company name spelled wrong, completly outdated and not used. - Delete postfix-SUSE/SPAMASSASSIN+POSTFIX.SuSE, company name spelled wrong, outdated and not used. - sysconfig.mail-postfix: Fix description of MAIL_CREATE_CONFIG, SuSEconfig is gone since ages. - update_chroot.systemd: Remove advice to run SuSEconfig. - Remove rc.postfix, not used, outdated. - mkpostfixcert: Remove advice to run SuSEconfig.- Update to 3.5.4: * The connection_reuse attribute in smtp_tls_policy_maps always resulted in an "invalid attribute name" error. * SMTP over TLS connection reuse always failed for Postfix SMTP client configurations that specify explicit trust anchors (remote SMTP server certificates or public keys). * The Postfix SMTP client's DANE implementation would always send an SNI option with the name in a destination's MX record, even if the MX record pointed to a CNAME record. MX records that point to CNAME records are not conformant with RFC5321, and so are rare. Based on the DANE survey of ~2 million hosts it was found that with the corrected SMTP client behavior, sending SNI with the CNAME-expanded name, the SMTP server would not send a different certificate. This fix should therefore be safe.- Update to 3.5.3: * TLS handshake failure in the Postfix SMTP server during SNI processing, after the server-side TLS engine sent a TLSv1.3 HelloRetryRequest (HRR) to a remote SMTP client. * The command "postfix tls deploy-server-cert" did not handle a missing optional argument. This bug was introduced in Postfix 3.1.- Update to 3.5.2: * A TLS error for a database client caused a false 'lost connection' error for an SMTP over TLS session in the same Postfix process. This bug was introduced with Postfix 2.2. * The same bug existed in the tlsproxy(8) daemon, where a TLS error for one TLS session could cause a false 'lost connection' error for a concurrent TLS session in the same process. This bug was introduced with Postfix 2.8. * The Postfix build now disables DANE support on Linux systems with libc-musl such as Alpine, because libc-musl provides no indication whether DNS responses are authentic. This broke DANE support without a clear explanation. * Due to implementation changes in the ICU library, some Postfix daemons reported file access errrors (U_FILE_ACCESS_ERROR) after chroot(). This was fixed by initializing the ICU library before making the chroot() call. * Minor code changes to silence a compiler that special-cases string literals. * Segfault (null pointer) in the tlsproxy(8) client role when the server role was disabled. This typically happened on systems that do not receive mail, after configuring connection reuse for outbound SMTP over TLS. * The date portion of the maillog_file_rotate_suffix default value used the minute (%M) instead of the month (%m).- boo#1106004 fix incorrect locations for files in postfix-files- Dropped deprecated-RES_INSECURE1.patch to make DNSSEC-secured lookups and DANE mail transport work again - Update to 3.5.1: * Support for the haproxy v2 protocol. The Postfix implementation supports TCP over IPv4 and IPv6, as well as non-proxied connections; the latter are typically used for heartbeat tests. * Support to force-expire email messages. This introduces new postsuper(1) command-line options to request expiration, and additional information in mailq(1) or postqueue(1) output. * The Postfix SMTP and LMTP client support a list of nexthop destinations separated by comma or whitespace. These destinations will be tried in the specified order. * Incompatible changes: * Logging: Postfix daemon processes now log the from= and to= addresses in external (quoted) form in non-debug logging (info, warning, etc.). This means that when an address localpart contains spaces or other special characters, the localpart will be quoted, for example: from=<"name with spaces"@example.com> Specify "info_log_address_format = internal" for backwards compatibility. * Postfix now normalizes IP addresses received with XCLIENT, XFORWARD, or with the HaProxy protocol, for consistency with direct connections to Postfix. This may change the appearance of logging, and the way that check_client_access will match subnets of an IPv6 address.- Update to 3.4.10: * Bug (introduced: Postfix 2.3): Postfix Milter client state was not properly reset after one Milter in a multi-Milter configuration failed during MAIL FROM, resulting in a Postfix Milter client panic during the next MAIL FROM command in the same SMTP session.- bsc#1162891 server:mail/postfix: cond_slp bug on TW after moving /etc/services to /usr/etc/services- bsc#1160413 postfix fails with -fno-common- Update to 3.4.9: * Bug (introduced: Postfix 3.1): smtp_dns_resolver_options were broken while adding support for negative DNS response caching in postscreen. Postfix was inadvertently changed to call res_query() instead of res_search(). * Bug (introduced: Postfix 2.5): Postfix ignored the CONNECT macro overrides from a Milter application. Postfix now evaluates the Milter macros for an SMTP CONNECT event after the Postfix-to-Milter connection is negotiated. * Bug (introduced: Postfix 3.0): sanitize (remote) server responses before storing them in the verify database, to avoid Postfix warnings about malformed UTF8. Found during code maintenance.- Update to 3.4.8: * Fix for an Exim interoperability problem when postscreen after-220 checks are enabled. Bug introduced in Postfix 3.4: the code that detected "PIPELINING after BDAT" looked at the wrong variable. The warning now says "BDAT without valid RCPT", and the error is no longer treated as a command PIPELINING error, thus allowing mail to be delivered. Meanwhile, Exim has been fixed to stop sending BDAT commands when postscreen rejects all RCPT commands. * Usability bug, introduced in Postfix 3.4: the parser for key/certificate chain files rejected inputs that contain an EC PARAMETERS object. While this is technically correct (the documentation says what types are allowed) this is surprising behavior because the legacy cert/key parameters will accept such inputs. For now, the parser skips object types that it does not know about for usability, and logs a warning because ignoring inputs is not kosher. * Bug introduced in Postfix 2.8: don't gratuitously enable all after-220 tests when only one such test is enabled. This made selective tests impossible with 'good' clients. This will be fixed in older Postfix versions at some later time.- Backport deprecated-RES_INSECURE1.patch in order to fix boo#1149705.- Update to 3.4.7: * Robustness: the tlsproxy(8) daemon could go into a loop, logging a flood of error messages. Problem reported by Andreas Schulze after enabling SMTP/TLS connection reuse. * Workaround: OpenSSL changed an SSL_Shutdown() non-error result value into an error result value, causing logfile noise. * Configuration: the new 'TLS fast shutdown' parameter name was implemented incorrectly. The documentation said "tls_fast_shutdown_enable", but the code said "tls_fast_shutdown". This was fixed by changing the code, because no-one is expected to override the default. * Performance: workaround for poor TCP loopback performance on LINUX, where getsockopt(..., TCP_MAXSEG, ...) reports a bogus TCP maximal segment size that is 1/2 to 1/3 of the real MSS. To avoid client-side Nagle delays or server-side delayed ACKs caused by multiple smaller-than-MSS writes, Postfix chooses a VSTREAM buffer size that is a small multiple of the reported bogus MSS. This workaround increases the multiplier from 2x to 4x. * Robustness: the Postfix Dovecot client could segfault (null pointer read) or cause an SMTP server assertion to fail when talking to a fake Dovecot server. The Postfix Dovecot client now logs a proper error instead.- 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- fix for boo#1144946 mydestination - missing default localhost * update config.postfix- bsc#1142881 - mkpostfixcert from Postfix still uses md- removal of SuSEfirewall2 service, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html- update example POSTFIX_BASIC_SPAM_PREVENTION: permit_mynetworks for * POSTFIX_SMTPD_HELO_RESTRICTIONS * POSTFIX_SMTPD_RECIPIENT_RESTRICTIONS - fix for: Can't connect to local MySQL server through socket '/run/mysql/mysql.sock' * update config.postfix * update update_chroot.systemd- Update to 3.4.6: * Workaround for implementations that hang Postfix while shutting down a TLS session, until Postfix times out. With "tls_fast_shutdown_enable = yes" (the default), Postfix no longer waits for the TLS peer to respond to a TLS 'close' request. This is recommended with TLSv1.0 and later. * Fixed a too-strict censoring filter that broke multiline Milter responses for header/body events. Problem report by Andreas Thienemann. * The code to reset Postfix SMTP server command counts was not called after a HaProxy handshake failure, causing stale numbers to be reported. Problem report by Joseph Ward. * postconf(5) documentation: tlsext_padding is not a tls_ssl_options feature. * smtp(8) documentation: updated the BUGS section text about Postfix support to reuse open TLS connections. * Portability: added "#undef sun" to util/unix_dgram_connect.c.- Ensure that postfix is member of all groups as before.- BuildRequire pkgconfig(systemd) instead of systemd: allow OBS to shortcut the build queues by allowing usage of systemd-mini- Drop the omc config fate#301838: * it is obsolete since SLE11- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- Update to 3.4.5: Bugfix (introduced: Postfix 3.0): LMTP connections over UNIX-domain sockets were cached but not reused, due to a cache lookup key mismatch. Therefore, idle cached connections could exhaust LMTP server resources, resulting in two-second pauses between email deliveries. This problem was investigated by Juliana Rodrigueiro. File: smtp/smtp_connect.c.- Update to 3.4.4 o Incompatible changes - The Postfix SMTP server announces CHUNKING (BDAT command) by default. In the unlikely case that this breaks some important remote SMTP client, disable the feature as follows: /etc/postfix/main.cf: [#] The logging alternative: smtpd_discard_ehlo_keywords = chunking [#] The non-logging alternative: smtpd_discard_ehlo_keywords = chunking, silent_discard - This introduces a new master.cf service 'postlog' with type 'unix-dgram' that is used by the new postlogd(8) daemon. Before backing out to an older Postfix version, edit the master.cf file and remove the postlog entry. - Postfix 3.4 drops support for OpenSSL 1.0.1 - To avoid performance loss under load, the tlsproxy(8) daemon now requires a zero process limit in master.cf (this setting is provided with the default master.cf file). By default, a tlsproxy(8) process will retire after several hours. - To set the tlsproxy process limit to zero: postconf -F tlsproxy/unix/process_limit=0 postfix reload o Major changes - Postfix SMTP server support for RFC 3030 CHUNKING (the BDAT command) without BINARYMIME, in both smtpd(8) and postscreen(8). This has no effect on Milters, smtpd_mumble_restrictions, and smtpd_proxy_filter. See BDAT_README for more. - Support for logging to file or stdout, instead of using syslog. - Logging to file solves a usability problem for MacOS, and eliminates multiple problems with systemd-based systems. - Logging to stdout is useful when Postfix runs in a container, as it eliminates a syslogd dependency. - Better handling of undocumented(!) Linux behavior whether or not signals are delivered to a PID=1 process. - Support for (key, list of filenames) in map source text. Currently, this feature is used only by tls_server_sni_maps. - Automatic retirement: dnsblog(8) and tlsproxy(8) process will now voluntarily retire after after max_idle*max_use, or some sane limit if either limit is disabled. Without this, a process could stay busy for days or more. - Postfix SMTP client support for multiple deliveries per TLS-encrypted connection. This is primarily to improve mail delivery performance for destinations that throttle clients when they don't combine deliveries. This feature is enabled with "smtp_tls_connection_reuse=yes" in main.cf, or with "tls_connection_reuse=yes" in smtp_tls_policy_maps. It supports all Postfix TLS security levels including dane and dane-only. - SNI support in the Postfix SMTP server, the Postfix SMTP client, and in the tlsproxy(8) daemon (both server and client roles). See the postconf(5) documentation for the new tls_server_sni_maps and smtp_tls_servername parameters. - Support for files that contain multiple (key, certificate, trust chain) instances. This was required to implement server-side SNI table lookups, but it also eliminates the need for separate cert/key files for RSA, DSA, Elliptic Curve, and so on. - Support for smtpd_reject_footer_maps (as well as the postscreen variant postscreen_reject_footer_maps) for more informative reject messages. This is indexed with the Postfix SMTP server response text, and overrides the footer specified with smtpd_reject_footer. One will want to use a pcre: or regexp: map with this. o Bugfixes - Andreas Schulze discovered that reject_multi_recipient_bounce was producing false rejects with BDAT commands. This problem already existed with Postfix 2.2 smtpd_end_of_data_restrictons. Postfix 3.4.4 fixes both.- postfix-linux45.patch: support also newer kernels -- pretend we are still at kernel 3. Note that there are no conditionals for LINUX3 or LINUX4. And LINUX5 was generated, but not tested in the code which caused build failures.- skip set -x and fix version update changes entry- Update to 3.3.3 * When the master daemon runs with PID=1 (init mode), it will now reap child processes from non-Postfix code running in the same container, instead of terminating with a panic. * Bugfix (introduced: postfix-2.11): with posttls-finger, connections to unix-domain servers always resulted in "Failed to establish session" even after a connection was established. Jaroslav Skarva. File: posttls-finger/posttls-finger.c. * Bugfix (introduced: Postfix 3.0): with smtputf8_enable=yes, table lookups could casefold the search string when searching a lookup table that does not use fixed-string keys (regexp, pcre, tcp, etc.). Historically, Postfix would not case-fold the search string with such tables. File: util/dict_utf8.c.- PostrgeSQL's pg_config is meant for linking server extensions, use libpq's pkg-config instead, if available. This is needed to fix build with PostgreSQL 11.- rework config.postfix * disable commenting of smtpd_sasl_path/smtpd_sasl_type no need to comment, cause it is set to default anyway and 'uncommenting' would place it at end of file then which is not wanted- rework postfix-main.cf.patch * disable virtual_alias_domains cause (default: $virtual_alias_maps) - rework config.postfix * disable PCONF of virtual_alias_domains virtual_alias_maps will be set anyway to the correct value * extend virtual_alias_maps with - mysql_virtual_alias_domain_maps.cf - mysql_virtual_alias_domain_catchall_maps.cf - rework postfix-mysql, added * mysql_virtual_alias_domain_maps.cf * mysql_virtual_alias_domain_catchall_maps.cf needed for reject_unverified_recipient- binary hardening: link with full RELRO- Update to 3.3.2 * Support for OpenSSL 1.1.1 and TLSv1.3. * Bugfixes: - smtpd_discard_ehlo_keywords could not disable "SMTPUTF8", because some lookup table was using "EHLO_MASK_SMTPUTF8" instead. - minor memory leak in DANE support when minting issuer certs. - The Postfix build did not abort if the m4 command was not installed, resulting in a broken postconf command.- add POSTFIX_RELAY_DOMAINS * more flexibility to add to relay_domains without breaking config.postfix * rework restriction examples in sysconf.postfix based on postfix-buch.com (2. edtion by Hildebrandt, Koetter) - disable weak cipher: RC4 after check with https://ssl-tools.net/mailservers- update config.postfix * don't reject mail from authenticated users even if reject_unknown_client_hostname would match, add permit_sasl_authenticated to all restrictions requires smtpd_delay_reject = yes - update postfix-main.cf.patch * recover removed setting smtpd_sasl_path and smtpd_sasl_type, set to default value config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be - rebase patches * fix-postfix-script.patch * postfix-vda-v14-3.0.3.patch * postfix-linux45.patch * postfix-master.cf.patch * pointer_to_literals.patch * postfix-no-md5.patch- bsc#1092939 - Postfixes postconf gives a lot of LDAP related warnings o add m4 as buildrequires, as proposed.- Add zlib-devel as buildrequires, previously included from openssl-devel- 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 * 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/shpostfix-lmdb/bin/shs390zl31 1714723468  !"#$%&'()*+,-./0123456789:;<1>?@.BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjklmnopqrstuvwxyz{|}~3.7.3-150500.3.14.33.7.3-150500.3.14.33.7.3-150500.3.14.33.7.3-150500.3.14.33.7.3-150500.3.14.3   aliases.lmdbsmtppostfixpostfix.paranoidpostfix*.lmdbaccessaliasesbounce.cf.defaultcanonicalgenericheader_checkshelo_accessmain.cfmain.cf.defaultmaster.cfopenssl_postfix.conf.inrelayrelay_ccertsrelay_recipientsrelocatedsasl_passwdsender_canonicalsslcacertscertstransportvirtualsasl2smtpd.confmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostlogdpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-lmdb.sopostfix-pcre.sosystemdcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrsendmailmail-transfer-agent.target.wantspostfix.servicepostfix.servicepostfix-user.conflibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcepostfixRELEASE_NOTESsysconfig.mail-postfixsysconfig.postfixpostfixLICENSETLS_LICENSEmailq.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.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gznisplus_table.5.gzpcre_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.gzpostlogd.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.gzpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc//etc/pam.d//etc/permissions.d//etc/postfix//etc/postfix/ssl//etc/sasl2//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/postfix/systemd//usr/lib/systemd/system//usr/lib/systemd/system/mail-transfer-agent.target.wants//usr/lib/sysusers.d//usr/lib64//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/postfix//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//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.suse.de/SUSE:Maintenance:33621/SUSE_SLE-15-SP5_Update/50414ae133915cedabe02c56174f052e-postfix.SUSE_SLE-15-SP5_Updatedrpmxz5s390x-suse-linux   !"#$$$$$%&'()$$$*+,-./0123456789::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::cannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.7.3-150500.3.14.3.s390x/etc/aliases.lmdb' (No such file or directory)ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.7.3-150500.3.14.3.s390x/etc/postfix/*.lmdb' (No such file or directory)ASCII text, with very long linesELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=54e5e723c2e1d8f18e2ace0878f7b3fb74737966, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=670e3dd4bfdb28d3bc45d48e4fb2db0c6d8b8431, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=7b593fb31dcf5712278ec370e9f6bed83bdb3e5d, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=858d972bd643aff14e3efaab38ed3c2ae2531fc9, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=12bd84a7df0156d4e0a3f1da2473c64a4ef9dfe9, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=072cb4425749ebf7c7838c1497dfd0d75cb81222, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b1852265572d3370bf64edc567ffe1582ebec59d, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=a6ba9e23b7c0d519e8b00394b15fd9374ee5519f, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=35f657a09a334e2ce9989a99fa1b1e7efc2c5c24, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=414c218a40e5363007bb496a9ea0bfe6bd7adfa6, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=f35c91b314d10f6e76d76da0a3c62fdd4cb92bfa, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=4020a96320a81fa20f28ee6f83bb9d8b97058f6e, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=80c61ec7a31fa6cbd4c18404c4f399ba7135e030, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=2b8e679bff092d2f9ec2c29b7a932a64983f913b, for GNU/Linux 3.2.0, strippedPOSIX shell script, ASCII text executableELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=0d7e5398482ed042f98380b5e37bcea328396653, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=ff0391b336c0ef2c81c966a2437a02059f812db5, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=6bebcec61e3ccccafc5d66c7cde267412caa806d, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=5144c99f96e68a92d25cbba25141b8272b1253df, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=c282957c09094cdcd967e3e6af241d9808093f73, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=e0081eb8afbad7de11c077c2d5581b53eb4ba188, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=74b73108dc350f6b86eecf8b5fec4f1c13eae771, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=7c4772fd650358cc219c59097ef14deebff4fe0a, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=d398e6e73d53790ef18700defbee4940150b737f, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=37f435cd80908cd1458aaf6d6608808cb3b40af5, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=66c25fe6ab1b7f5df0470bc136fe8e3df2c01733, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=30ba49ba3a3d7ac53a8ea93f4b72eb2dd9828815, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b8e7fae378fb91a2a465157966029fa612e1830b, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=19736bef6d3f8fc29f426ce2fd63b19a8cc151a4, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=ed150def0b84a38625901158b6b4746cb38267ed, strippedBourne-Again shell script, ASCII text executableELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=c862d4e6fa376f1ddbd6687eace1db98c88f787e, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=3b0db25a01b879ee630afc5b96decd8e283ecafc, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=c7590d6c5dc121bd14e9b241071345327481b747, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=4d082ac89bd9ec685c55bddef213c9be06f80db4, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=d684a01cc1ad2828d22844e8e60340ecdea4640a, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=afdf320a871f3643dc2de8c6fc312ba39ea1eeac, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=fb412042c8159b381fa0ac3c38853806865aa370, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=ac7e07a651c6a252bec955fd30a9b330121cc8aa, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=88b9edbc22853eeebce4d259bc4ace480ac7d9d9, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=c9e1e169f8813637dea5271a99f7d84586d4ff8c, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=9c5a9a72523eca876073103e250835effe1ee9ec, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=b7b3f4d489c3007f51385962d4cbee4cb1864225, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=93192ce4a1eb1066893862281532c9f15a751471, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=aa602f0cb10728d43bcf15cbf30f4074dfc0aa18, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=76afad4b13ea5f45d2df1d7a8b1def7b96b612c1, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=6e4c36d04f6765b0d01bed18bd58e862ab6cfdea, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=a164c9def87afd3f745c900d4886bee1e00bd66e, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=f4cfcbf9b8461a6a290d3e75fc4e3c3c37b8bc4b, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=047fdbc0349523656299f4039f53783375578b0f, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=400cdca4197e86ebb40fcc33fc80dcf177467fc1, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=979026e090207351c63c7f64e711bf0491a7382a, for GNU/Linux 3.2.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) "(/>EKS[aghijkqr{ &'().5?CGKOSY_ejpv|     RR'R&R)RRRRRR'R&R)RRRRRR'R&R)RRRR'R&R)RRRR%R'R&R)RRRR'R&R)RRRRR'R&R)RRRRRRRRR'R(R%R&R)RR,RRRRR'R&R)RRRRR&R)RRRRRR'R&R)RRRRRR'R&R)RRRR'R&R)RRRR'R&R)RRRRRRRR'R&R)RRRRRR'R(R%R&R)RRRR'R&R)RRRRRR'R&R)RRRRR'R&R)RRRR'R&R)RRRR'R&R)RRRRRRRRR'R(R%R&R)RR,RRRRRRR'R(R%R&R)R,RRR'R&R)RRRRR'R(R%R&R)RRRR.RRR'R(R%R&R)R-RRRR'R&R)RRRR'R&R)RRRRRR'R&R)RRRRR!RRRRR$RRRRRRPPP PPR+RRRR*RPRRRRRRRPRRRRPRRRRRR/R.R-RRPR#RRRRRRRRRR"RR RRRRRRR&R)RRRRRR&R)RRRRRR(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)RQO?.Y@׈systemdsystemdsystemd-sysvcompatutf-80f15c5a6651a50c8bd62ead97ead6e09f19c6c4a584bb2e4db5d952060acc283?7zXZ !t/x]"k%rܮGVcr7vt= 4GNg(/7V!|n[h75Qm]Z =]4A}> %ٵ@<v3@!2R׬`.sQA$&$n(\IeBjf#QǠ]Q`#]v]H PpASRwb>^陱%xk΍)c9=nlhV,W;?VD^:)8+5W/$TdF5\K Cg;pa~MzWkX\6 6/C<Ғs d X"Af C0 l3UjyoC1=^ɡ#]&NrA^ɵ6LPz-reě:LK2X?@YuӘ= H9/P+|[",j،L!4#phQNLeΪEuޒg?a<gtla 59ӬKd$|U.euCr4 .$QWXBOL[( `悜~p + 2'T!v,RB AV)IS(sG&06=|7< ge[ Q~SW Ў4Z:u#5!RBL( ;S%N-k. EG&V z)CJwykozYgw~FBKVʃOzpx!oFNRe42q[I2qb3lfsA':`>a2I[dS̀H 4!ZԮ[L!-y՘<ٛ B&0 Ƹ%I\KaqV9qC<.G+"uv=gNMyŮ۾2xSWoUFIb 8څW+3 o;q v]bEL1=|@x&-dE/~ĝ}⢍~թm*d>F $7g4$!j{U+./E%ܫÌflf*qcŰT&0CJ94QHñ82`ЂF|$*n[ESZCy;ıt_)b Rya؁r|y&cH_P?(fk2.H'D:udkN= d>}C GmhcFiGG}Msc%*^@!k}IѩW3.>}瓍OXk:O 55$\6C: QLE~PG-=Fץq5 Ocf'vrhLt~uXw\)hVw{ W |I$s{ Ss)go3Q'ډuPErIXc4mc?&JZ#IPQyhg>vW2Z،-:W2J7`j}+&2731Jm5=t!fR`GT+kTӶxk]HlaLDÆajX}C6V0^sD"E/, o8qoQ1_xNFɟ29]2J|}NRWGNssmdSy whdͽXr -òVLBCyb=ǚ^3@ҬX2}Eao;rT6D%Mmz6 Ɏ!%t4x ?1OK"=-:zG([9Hrwޑ.b^E~(퍷,~V|Ҫ#@S%icH~7j,DO2K&8IO`la; yvuRBKG18swf@jN,\w.0!2~}n2B?= w㑔E3it?)TFs(>IzJ}ko.]PPl:swC<ʗ첦MGVhs4U<ǻٲ0EGD* %\K; l\E<DX>z%\nT^b[>xƙEAQKvLz30O*H¥bPbu@- ȁ@L_f9N<^.}M5 G\e֒rtBSP )W=GJ1bgrrLND- daF?kgcZUkߤGl=Xh==SaA.1XkYtm1x'Ȁ/I)<' \2ׁ4\΅r/XOx/]1,\<=xv#XIf-$͆30:};Tُ2ҟO\;S~ƙ6@2`mL7`a2B^I#im(mѰBhR#'#JWD2xTi蠝>Q))٠IE;{On*0i8_I2S4DnJډɖy7t.*@CPi5qL*B+S`=ų/%e峦xFi7_v[Kc/0ƠDB)-5\`^u+N)<ȩ9v&q]l?#pAX`v|K!9&w%FU˯:3yarnh;AӾfS6 =Pr2 )d<_R`vÞzd㯔E2@rVeAU>-VCWY!z;l[sGֲ6s.9c ty]>?olwL1M8)̐h5k}x:+W+ BNNEv#ϰ!wWy$T |w?AMN5?`!o9bҪurם;c4LCc;Ļ`)=JyEԑ?^sg]yG=TKQ?Ȭ/\^!ohpNk1{9c)pϓk#ylv<ږ;P9@ 6EŶ>('.M;j~B~-5POժ]!Sz' tL'8=.dՋTR;M뻪/G&mMߚB` Gi9nݣX\*E7e~w8թܙ*RPҝBu6_ʅB2(Fwvi{76LUN 1`3hd%q[F^Fj\0LpvDQImƄT;1B'+ dă1uj1MnwX"=䤭a2EUMzD%q׌m3!5TжcTk[—O<AA~_ VC>![cjĮ<ȜKmP;0AjLa繂3cݬy3~ox@!ar[-vB03K)i*\"; L5k|z)sɽà>`H"\=w{}Rv f_[+"0&AtL#h[m/m>5;%yQD[SGYW[,&`@TƵ+xRPZ<!j70}iIA[- 3'r(\[#v\\'tԩJ›$~f/QyB\Z6/4?Ҽ xm-!az]0ͯGmqrɘui_< O1]W;`xb-%&aٱpbZvrYkkyBv׉l /\RP}%$jpQp̅*fܝGpyQ\>(95Jh0,rt A~;x$TpbrVeА`ҧҞW0ƸtIO.]i&}"50|U]21Yg;%Ӓވ"u[u;Tlw .j2.gqmQs uS^L\{ݳ([Q#i#ڀx >`vB@+z ^\}Oʏv+lC/6wf{I_tU7@[o6Ao=+#ц8Y%ŒG`ަA#4kxG3}iѝ^`Hs% y# 6Y%2݈6W zzl Pˁ7qF[478Q"|JYU*r5jĄ,_y^6b#Ⱥ髆NjT?3/cM$ MF RwB6GpVqRtDg _iˈ`˖'!_fñ7RE7Lo1X2B0̺nX| P8J,[~[${qog %`h{i'q7ƑRJ~zu. ;QP-dz`` du5iQ"P5] Vfx 0&]9A9:4ӸaץHc!:ck"c]ׁWS45<;ڜQ1v \-Uo+!؆S4IoZȗ[S$CS4l#DTN=- ~bzi'q˗}W>8wЋ#GShW@DMmYĩq؂Rʌk~Gn?xSA,}FըϑQy͞Xm(ݣI}d]~j8?jeH̉RL4&Ӊ/ShkykgPke$y:[ӈګ5b&1{?kujwwڡnQ9#}"p2S[iH *{W1x;7)t:)\څ2V;i2Ek>H7dk`P:1h}+H<3,/uM(Y:~#xӅPIWP.QYwOf'pS\ؙģy"7\m*;gD- 2QndSB{#O`3;a.lRme-fxn^:> v7iP/;-< Ǖ&ƞf4klv1wKY{ꆄȝvO{С ȑ&Tl` m rMbHov'D}Ҝ I>/&OD*ٍiFCta%%,%qn?-|?7uc  -*2Ho1u@z,|r7xUJ=;w(L!cP'A<%3 R#kNd߫[r(gPc;gKQJP'B})%cx-o^܌&`X`Qya+#~F`6WJ2 (g?~`z׵^RL72!Rk1hQRv ,ړ6QsM(+%f_&>R%bBf()[BGK->qD|@?>\=$^i0C&+yB/ ~ϦL/YriWqN' mCq+6}74IW*чaduQ|+>23,|}d[%[䤆@-D$ː4rSl v.8S[@?F/.7MjX^lF`X LRk$61TK ac'KT}ws5M]σύ~)[a%Nu.S~MǙ۩E'"͎V"ua 5X z0mӏpOpe#*['5%)8 WrgDJD3݄IڷaYƮXo21O"YO:9vRX3n6+M/-tXf32qe$SqV:EBc^VuT9[=9 JC˳)Ms@6!햍2C0fU Ȩ߉rc Txmm7n$V%mJH$X銎կ'&m ywCjVUI3(tQ;2[B02: $YN̻{,UY!hm#I$~ٜ]J,q2) ̚v qa3%XH@k"i|i>ȗš`LWtM~XSOISƱQ{]nl6х!%6>jeuN*aK7~yq~4HH >B'׭%ZR:V`[b&&K^Z@}+!J 7YL YJQbzM =쓪=Ð@Kqy|㐂XXw 4 *) G!Y`^bIL|Aqy0svO& O|U(;皕]W' ȱHI}EӅe0k*p8`e"f7?OfpzՍ*Aw,_%q&O<iS7C!nPY <"i2%z_KM2>pB\ Q>WFW=vEfJxt" d]qGE\94!45돡 BJ:[|5ʎVr:aۈ~2x!;JgO(rw[i;t+!{+2}e[bCYՈ; x֖eVi J8q|\m)rTL0۶A;MuEXHzz#D*`@}kY"wHXte_{;YAZO*F&^8w\e|ɟ{>OFksLE?N! B^NwVvPiZ)cj_n}9)w sLV'Oc19=x[ uP\~6>29aBiF'G"؊Mec+1RQ/YGo/w y͖ |~BlwhaN~p^2pى"ߘ&O:>&$e#ȕמ=, _Zal^ kK&(|}e)o5pSGakMl|ꖵmoM\Bd Z El#1GS-'{7cu{U7mg 1^,.(();5}:f ,`輗)B$CL%1zZ4xiD_wyD 01 S?6:Xovs DJcT$ZI{MG=,ΐ^Pog-c ނ ǧ2[eԡ_Sc\ԆA徲v=YQ׬v:u*X{"LޭRZӠ+ǻߨ ȅpxÞͽȐx*by7 v.-T J+5:G$,ns[>lP@v>p;}g #l5~}L֡Uc hPxt<>M.m8ggFHgߛ1Śrpa#֟V'9)=ڧX1;7)w1AXO^ݟl? ;UoNC;ķe^k?/)m#Ҝs'ًGZcI8U9BvAOb?y {hH)2ڬ0/"?% z/1N;((l4}2RVR5NC,Jj=H4&<gL1;UVD>w  X&9vmOW(ԮY 7f_A<5瞇0G'e$s1UիY` FF3My-FW5J|C5|N\8/[0y:|9lyDd1_sY9Ku@H LɔXH Dԛdr绛BL>{H׍}hhBhL={ߑA_ xvY&.EeER' t@RNۜ(* wϖ,kz2Ÿ-УXu~}>#PuGfj =SYД=N46@<] fX$їJa[ABu4tx`k~>ñe/QfG ZM {a7  }pٱ7Ck@! IE@.P=x `%4;f^GDr*F_nm7Z\8,RTQR!-a66^Ɩ0ʇd MQ.$X$UV_}Aᩗ<i$fpOGIEIZniLG`OY{<))W!m+`YeU8TFj8$QǤMhWQGk <-5Tίdc`N7k!sB$߬Xuk>$9I;C޸EHymx(΄ %ϮPL}hD#ƥ"OvV[N_؜(lr' <1X+-ƀFX(GUɷB>$0܉/.؋i(v3'2g<ӛp Y.ZohA4oko t1dKKJMԳhXD_pgHe۬MO"j-n\ҙs^q`qU5."èN%&}"zx'uaٷJ?hW)49Ht2ŮT_z؁ x 6CU|\7@X?7. )[~1S2{uDdmZstϘ&DȄx$\!˜͆<ߗK-aVQSh'rET?8Z3LG1(y\@@a-@FjyE#\s|8 /7s#8`*yT\& 2./6OLYHrk O9rJ6?GA ,E`rrREkh~}lc q\uvL"{9;e @aRjqZ,d+0?`굴:o4K)?Lc*'F-CUflj ~~"V~S/]?._R7V3Qwa2"hF+ajzRuUAI18t׸l+a({DEvw# sުw E%?3.&c+{w6a| #vAX9{cpHvW"XoL##DYqN}ۺF!M[r7Ϭ̙b/#R=gYRZ:>KQu7-7kԏ=`BUqNRE soc_#Д %gnHw j S9X$LLN` tlA GCEĖPc魳x|~LhLk>V :>.p՜̊ A-dWgٲNUw{ xV1XO}pU<@KPYlI/,fQ8/Y,Bf+$Aȇܕ/ڏ l(QÝD/ vH祟X'RA'gG) gWn٢S#2&(D1p^'fnU^g>mfdO:!L;N :p@(͹+_f lls LA @ (ahBϥp>}Jf` `|ܔ :*(b֙k4l%]x:́> hS'M- "ida'=/aU=Ue 1zED=ˑ \G%PaQ^ 8}Ϝu5M׏1m`HPwF {# 0zVGVfoz%4W'AxGfd7Ӂha+cר&-Ċ9l,kk=DC"Ax+-)J5v}`Z JʏB.dpefo 0uo -/ݖ3b\f-J~̹J/ Q7_RJMT!V;{UpF~P3]@~tY3g ML,j7<L^Ȇ:nſ*g%JeKG?&̪,Diו۳(S&^Ri= <}ky(Pɿ3ګm;fZYH= u7%T0c6DϙgRp̹zYS):ynD*SLb6DӮPr9hȲC! ç"1#՞Fnq, ¾`F[U? 2wC.:J|EŅ( E= v* Lm:4&3?dng1z+߁&;˱jI{7-&[;5ۆE_. ќU9(c 6 ?d7=j@0x7NS(ݵ$kUhD#Bxz7F40i:.ywD+d,J.`f=[R];DpE%[Jh^~GyZH`cYQ" 9rpWnp:GDp2 u>/9 a<[^*o]Sk ?ȀQP\TH7lMOϱ-lhBә[/SzEjk;i%_.=^(]7{"_{WZwKn+ءQѤ8CG J5-CNkZ}nxVE 9d/pہv@_p.0Bgٓ&q#Zƿ.TDYg)ޕHUx}}쿓cEq; ״]rrb]'h:U?쁫rMAxվX@mW&tS!0#U:?8bR=5nmskl$Q}{j6VW^Ms!k^^+|r,?ʘA`lS.bEo|ZW+" DLcuEjj 9=hdlj38Jvv=]*kؖqMB2>SMHbVFWvRO@牚5Dk U=Dz? QSP]֜c>*@fނ6l`ϋܟ:c4*χy$( abb$ ^oo.:-Aė)e>q n[?.k ^qXE'$MRN%HZ=-9nT}m;ޢ7ȴtOT%~T5*1V$4T\d&kfHRW CϿfD+Ϥ#j( Qy"1n8(uVu8׿f('XXA[K"|z/ ĔSB [ju~"J=md8frI4q]-U¶҅#.)p9 H)͢v-zB7}E T}d_Q[A&dCT[BqR \=/N._F58G(/~;>YTաti)& h tِ2Bh2J}bZiX/sc`E+}rCGBT IoGUrEbnǰ#k`9UMG8[72ADr0Xq&r" z+<yP "]Z70`M 6F}7xj@Y u]8vr||qe&jY'$KV$wo27`e(:GKpK %U.x;*w~MuU@W]2q ۛ=oIHJ2lXQoHD[ciDRZ',f)`WR?uJZ̮Ӕc.^y18(mlS142!oG.ȧ/$仱Uri^Dq6Gm\aANj\0aw(k7|Ukd5ؕg!k6D!/u:1Hu-+}6>ig!Ps%aTg#:Yp]L_ͤRȐ! _yG5~dFCSBXeT]vٞUiDgd| q5#Cl|/ A'ؿjMiɃ R9SU.ǖ"sp9g l8ۻj4 [?NQ7h>,^QFm냪N|?7fXy%? QrL=7Ӆ)68u9qWq>WŎ.ԾNM؞a mh뫇4T F,ԗ'ǒCۍit0Bms*l(^]FFgFJ}ȋtYK!B0W*-gw8Τʞ.S`2 xmByF`y6 y[*:TE|ܦ=Ve+7G0=U"2”Nq쎚cjG߆otKu5Ó*vHLS 7 S71ſ6\rr* rrXkT|8(LTڙ0_ (ℿ\끴 c 2Qnm)~"E pO]*WcB_S3%I(FX!Itp\6S7%Z>7El޳'a elu3ψ a w߸)pk$ľwiBmsfuYNmJ=?IGD/m V0H&^!R,bb-+R~6I?9r =mnk[ Gw 6En rކ?<)AUH#M!N!yCmMqqOi^⧐^\,SS,^~.FkqpyE\,7}ɔŴ{So@K撽 l]Ёu,:Î^埝Qӓo5s6hZ{k&/Z0nm#i;sOĩd_O#PQ煹21YdY$Ν W~J2@e>cq1ʩ6iC#&fl6"s*u5,,.1lթSW5]G2&#Dd#Ƿb-#>=Q3ao4:XZ+]ք@]fgc0 \':5N}gʸ(dU|tB3R1K2MZ2YQH Sw6[3!)2ό m̠N@c."Qo0>>8x12vy'"ȋ!YJӋSs6?5gï5nP:*5^僵:4lH.H!lJ {c'j5]a<)ȪD_KjS$x@f$ 'ۄ)؋c?J;(%Dx+J^<œ^8I6v@ޤdP އތyyL\3r{ A5o8}\tq&G!'zVѯVMr'Oyn1ݟVܷؤ>Y;V:և6p(8 Z{DDK4J6 <#rʁODi|lī}8$N>WGQrqPS9?r9s8[llyΪ9NW >g13ƌ:Ks*p_2P:;qEmsEaEjߊVuj $PGXd 0AgS5H#@%$`[oO 8µ4bOZ|l 8YJ Cx8cBJ=ۑ.$5vcļ*/Z,.9Ute$\?Y鹷fލd5\\Fq!n߀Ƣ˰SAK2o$k.7ʘps7-b/_KO){INmhV71RƋ ݦv.+ć p ^~bP#/4[sQl5뎖UJ"eմq}XiFuǖE6azqJCf^]NBG(/WDoXll^DF:d[Vp,޻ĥ_Q(Ύ_o!Zo|dBUAX DϚG0,$jZ]Gf^;&b 4t}Gۥ]\!7" ,T hfzE6%C`G1$dA1r 6}η;-ד9mI2?Xx4݊'zzVQe;W~B|v 1]DU:i#$L+&jN5;A}RT:uP.VռHTOY(մhE-ubW9 _VVN*Hkeh@ F՞Tf=›.a܎EƩ-_%S '{*8 qEb )2?#޳Fa/dLEa=p1hS-C*Ї(jѦ~\,igt.KgK7 Q ),%`P>baJn- R':>0U;OCE @XCogZg8E1acEK+yz@8\ZSe<)ޭmRsly#9!^^5(;6|.q |y5ѓib ΀HZyDĊ"5O7خەjY(Ekr0% 3)=KkV]zG+8ZMzJڕ. I+bF}p,W;GKNP݈y@HW#H|eFq #kCmɆyź^}1EwS fZfe^;L~M 6J} Z8`1D*1%dJJ$!4^ؔbA^Y"-l&i5\0Ʀ:gޏ(ܦ!UǼQ5>'әe)FyDFϭyWj߼x{٦B~_k63لk&t)sIv)h rY"&lik3]o-NW)+ <xIњ $6|T~UtCΤݡb[ܲBj RV K3YKV0(Xlf{GzS4aZ2))m䔼SIRU=|xa➋;8c9ʧT-4! 'P^{ZRh8]wzVDEӈLj7*e7_CLs$gЕJcQsBڷk3ޕlN!-+AuZܠ7FVHL(sb&?jS,yuTNKE{:Ͱ.wڜ^'qo6Sqz;k,&1!"4@ePȃ\>R"XUevCe kL^-k k>_CUp7dYA|ò*{U-{9->uz'8IWM8|"%/Ct!Lן}hA/<20_(UkZ$xE*dtz/L+W۳1kց7 Cs, $NX+.>Efq3FdĘ1Ǻu3XZLqt%Rz̰څLΚ aB6݁C)uE2/WE(uOw1X&[V7QY+h7O?yIV9Qe,>Kex Ș'PqܤPd3#n Ph^h)4sesuٴ0>&T|} = _H$_DwRY-10:Ĥ3T|XUTڿ>{:+"2Y9((8z.ҮGLQRItֵL tx@Hh8"x4C4弪(CMFܗ\Ѽ%~m%*f\b PxiHTl d_Z1!OtYj(l:{Zc(-(kknv=P|"9g G'De|Qc)'+܎Y݉247e`^Px@*]!ڵYPe-86RYYUzǪxr7ú^޳w]=ҨX13|tN}-`52Bg2Bx*hމWo_fS]*1)kx@ }ǔ[ζijLJ*-WfԘQE.56NVh{d2E]¹?ڶe{w=}e.qEbaz=!n]0 4| QROݻ>~>BA2%nr65_].j}S&5JJ>Jscb &fX|ɪ_7HVK#qtnZ"V"Dz*;{n}R.aȤȾd@ ʀEH<6N`{?ANZrRiO[žV A8VcEzô 6H)j-}59.Jf =P<>JeɂV)GtJ_Y9ʚI|I a/a_R, )6= [vẄ́ չ +9j̕pSԉ Zy*.lͮ -Sm<{{&,"Sl}j i p(tyܰ /yrTՎ` Jav?r5:Yd܌Rw-=;8Ɔ@)% e~N8*[>1#)X7j꽎IO)Fa= ֯{})62pM^6!ai|XcՓ ^yu8qQ]>yQŷ"$sd/R梶`!C̏*'rQKJ:)ˌP<8dN}\?p\?%-}7a&N[[xNekw]Md>ᄈ auZsH)$ICRrxj%R75%܉?@Z%9LbLrqK)tÕCQizI)-2ڻV狣 XީfWRC+8rsgmOoΔ<ЫDdyYܻ3iԁeY])~l/c+@󷖲*~ T--4#gAό>#KTқƱ$="z3ˉ!{F@Vۻ5JS`HU*]/.:q**64h4{Cp[ +%!t郁jR?"an|_ҧӄv -'|11FزBgCjco`DS[>>?@H@m+).ba yk3]䪋92Gʺ)STljFwG%0C ˜xd\/3#鿖Q'4Yp7#32"6 l,h0XPd4c/?ժo_?L`ϜTF2Ǘ:׫s?1lSӧgB;XȤgy4y[1QK$<\dNOϿ`#[*#cF7j>fKT7JH>d_5%'RK ?GqjoFj/")F/Ğ*yH[wBZeCX N2''jas9'U=^<25'Luo{Уv.4V  @pl>j)A3(G5֣Isowplr|7JWugy),4HꍀjX#D,)uczyo0O9>߱%smL\_6rC\dZml`,gl Uc84X|GpY-P]e%?#4۵>BJ+;-c%'y*3<'fqM* _qGֶxnZ )z *6Z '>򋸆f;f_42ϦX8Wh -$01xb-8l,].0k2H`s5xDcftZ21zR&G#Ma/[<ؗ)o,356~VRsP3c<}Zc'IewV/*ڂBh ~HGڦ0R,dk" LdiUD'[xXI*@8ֳqNϧSa܏ ȋ/4\@ *RK#KaW1#wQwpFmI>ӛ6#=*c34^TSmTN%r6#?nZz. >2wTqJȑ󴪀r4p<rB`*U4Qc69ΣayCs?5Nת8# OYzٸōLdk][P3g V NVCD(x1Q'!S|4g@s yv/vy۹ >1txe˂)S ߏ\UJɞd PXvPT*YKњb{91ӫiFt#sWe$C5#= iX0."C,2k~m=W$We'lv̟\L{səE~XAJ=Yi 3@e Wd N= Gc*E-4dd.X2#RqVaנU2nz"(ֵm;c")P_ $ "s^BuwE^e=F΍n#L\b8/tKCQOPq{#Iab; RdƴݱH=;ȋ_e .u/osa`ӏ}FXzTw-(;>o2 73i3jiIM۩LO0)}*A=MK7ebU~D%oQuK )7" <εT-ZG8EBR2ڏ5hmR&.NZyg L0~JtGߣIY1rXn}i[GJdbavd[HPϤrC Qp;Wcxp^l"3JWA60! t'K~-d?/"f‡z=RɧqlI_|3Df>bU,}~TK] y,^pu9;Otv JG>YN&w,GNB|A!F ~8s 5h܂|"㢦kWćK9_V^F Iޝˡ]>W)t;\>{NiӠ AB|a=S6c0ݘ𱴁n%E:|-eZH߲e- `rMjcG.ZгS~J@`WYW Q fC//k9LP[;lBUb×2Eb3I' 78]񵑣KfhFIEO偨ߧ o^@RHO;2fJ8.Mlu 2GuЂZ[C˃oŒ&~pHrQAOt=c]=^kcnd4v+11qت }B o;"Ux%ƞCI[^ر)J\vLj0iܽ0 YH }gx7BdurA33<&κjI6ž4Q wίT5劓z7МB!'jޏ){fqqR4DYxɃw穈E<!DoAr5t9 $l#c UaBHdyT=";To3@ygAېHǫ4sgeqEgYX R;-B'f թmb#1,JSE:,ZA239 l,c̏[ q⇒ഇ(mb7/5kT6J9EGJDῺ{C|(Ju ]Xʜ@C#ry&D3au[tP#VǘTMFwM#%tfcK^4)qj}ALpq3g$asBү({_ QJk&˗wUg% v+ sLǨ ؗ,=B >%I[5y{c6_/jy"5c-üz<p}b]rab gMiaEҀ `̹97 dur r]WM,k4v%k*t.DJ{=MaHz/}p; }a W'RT\H\/W3kYJ'{!Z?P\)n4?D~#cAE ;7{PXjj$ll$~K Z:5/ i+=-i|q']嚭l]q̌j3% `vh:9b [_Etf,Eߟ7y_jK(dP^Bf+űHsJS`Kڽ+N+!21N}qSS+_tJQX iYx!Ѝ=?kDĈA2 >\ C̏q]vz5pHr>Q%Fg>Ɨ6p NXEFBre УŐHv#ޞیWJg&#KlfחTT$O^u}y7/%FԂ,tϋ+x$֓GRwfUEu]]~R4Z;(S~qp&UHw>2$#Y( ).&|VU8u;kXmA=i-{ZİiA9٧$=@ܪ}lDL_[v(Yɰx)-_hD6`x9Ȳjj!Z!IWH&9Q< S >}hl2-VYRpuLT(M՜u3Hv>[<0}lQ*Jp**n^&PLmT 1;Z#EQ`BG1/sR[|<+ }F~m^Lк<9{d.` T8@%gXo_codNw餗ꦧ"qQ9H@J#"ÞJ/Y?&h%=̡pqHv޳9/$ܔ`uyl^snA/mU%R(66̼^$8f¡hd"csÜH#erYr_^[b\,>%Rtma^va2 hjLl£l"FN,+,cOJ B ?32qL-X<';tyr](N^TȨĮplQzQjķ9J5wI a͙=0b Fق]!1i jWmyLf3#V3!nug~,30aPnx[bF9k8v7Sḥ=VyM`[L5.1-CKu%rH(잨 L^v2Vf^_ghSDRҧc9kP̹_u!,{"X'ށ| PZɫ([%H%FAc]Ch*腢Dw23;9ѠF+?Tyu&xuP+1C_kaaLz7KV<7:SeTFI|(7/-ǹ pn(l8sܓ=)]TcdBli$ Zpp*Pu388Qqyg =eP(wi¡._dq傱6fAǘ4[F+)~wv@G[+m%d%D7nH LZC<"r; y?f`u sn%jmȫEKfswc4Yet-ެ)jxC[Vњ&σZhrUZ0vWB>FInnٶ@7EM."6(G2wulC2bdguk7VqR >X8OUilz8NL /xvqkc"Mէ, C-vb=tb::wîV1sDѦo||Vrt!m?`NRmi4 ӱ %wr.(o_XCͶĞU3f<,ağM``HLry ۸z IW鮟MV׺j/@,B' u =J׳h%z8ޞ6Ym=MI跜6)?*aj!%q1/oqBDrxFQwЧb]d{;N2\T ?&BOͤ8zRwK=> @РE<@@Nw<-s玒bQzK| xVb3 nOejI(T]W t/FGm7 3wo&+.1CcR™d_ݛѴ" |z5Mb˧n"cP< 4ɣg$qRy"ӧ?b3ȿv-xV? =S͞X\됝sعZ!5#MմAӫ"w z}^WbO (Or4Z OwnT!1,"C\QLBX<sI-c`ZkDF01%JCsUl71q,a2ÂZ,I B$!aB:!)V&."R6fe$-Ԗ{$J~ܒםeƶ?V\C6uaMH&k3 B 6\~]p vV>->t@t(;và~1bz:Eo=Ѐv"F0~h09 ކ0>1R `"!gwa(G'8CH< &z{ҝ@敭^3 )ex\H\xW=# L34TG ?X]e?n_ʢWBaR݉hu*KQ<Ƌ0voW,LŃ XY@h]nNihO(JX 9rN#%UXS$ϒmԅP.PKJ͂)ݰ/DNco-[֨e-E ٔ"#$ TaٲˮyHr= kGJ:ر(D:DuT`V 56+PPcR1r!'y7 % zEEgHZr՞*7DxpVqqa'RDf uF&VXc! nF}c&kyߵYY3UԟUc281Z[̞.@GӨI7<]~ ɘ1a88b"V[y`ٰ)["&rbzND]y=>o!90asW_;erV3h޴Q Op ڽܘI XD/r#K /K<S&x:rvRFс^%ON7&+4cщ.={F~ ˓yv.mAPgO{ 0}dv\~`^-fLLkR/+*.VG$|CQ j@T|>8aQiSòQ `XL<kM 9'+v^v e=b~g`RNT0n͵z+3XEfgIޠj7htS]/Bu"a6@%hλTiA3܌-K,nl=ڠݳ[+ce sYMiWbTN|Uй|1\Ⱥ ^*omsߘv6F#S/|g}6H$|O/KX(itGds}2-z rm06K6~)u 9ʵȯ@v =%I{` CΉ"KF-|{ҕ,al7Jٸ,ԼN'10drUXVeliPEg k MoAt?ԋt{8D(h"saq#["H o9g65C8{yUY]<'ޕ yrwv :5IE?BO'=RߕpR5Ż^h>;iKˆXUW/gG Ypk+g{O 6Qe_>CVR-]$C;/p Hܜ:>Gm;[6 x!¦ӯ{}x~["`C6+J4^h X̀ :,ſ OcUu2' ͇ǒص?8iY+"9.3`ѯX)d~+<]gcShxTK գ9Z˴lpފg<k)z~$T(75@<o^yǭ;nV&*ݲeUskΡ&qԷْ@rg.9k>@o~1;")#2(.WCɧkTVۊ{3FTPߖEsQ@vS ,T>M¯}*[q2Fh;1)j{?[05a&gJYd1inCmVvJOD(b͑vrejE^y+nXZ[L(V/!dqibWpU:>RdW0]AJӟM~t % S!6xn¬P&ҚXX +*nqN,nR$M'KYu qaL 6d9\иAS\g[')(ouKGaF8gNs[$b\"%}jܓ-OEu6vhiz*m ֠i45WR<3XӔ^15ݣߝQo0c\w877X Jlg/ŨhkV/A 1n,wp nC!+(%J3ah% d%7j:Cߛ?,4ài2&f !E6^YV$*AwRpoOgwU ZυI lҸ]m(9d`?o,-1kg\{]Dݝd59_ 8f>#0AFYbWr›/>eTcU;ay`-$8lvܯ)CzTGꃒ4>R.3mb)|~} ߣ0cǦqd➅ԭLUJ >o2|#FV({y_%{{uBp_(\~{Aҹt#elZӾ+L 2j»|ܻ:^N[,!x/Tq5]8fBvk،5FiƉRqZ!l.YS7UƳ~AM>l"_C'hJ)jZ%]fapJdq`NRڱ x̡KԥcvFLAAW֩Lcܑd0!Ay2™B ^xtr_;a U{ vTsqCgS!m/P>yo Z`iwyny&L5+\"7cDB rMHbqIz|1Dic/%wԾXilU>Ln88?^+ڀw`oר݂/>rPȊnLruU @kwk4>b8/¼B®".{ʪ g S&ļgUqcQJjcm|)JmF-ZݓtW[+5(@ǘ^$JOJ'7Td=>eM_Y)p%hE'sBL.yrr7^P>UIoKkboɗ3%\74+)0i3\CLlm_ӺƩ[deM1{xCPT Z +4o[#fcѹ(N`,kXe+wO &J(F,A7ieJЭ!Ӫ47{<[=6?=L޿GѵH"1I:/Ⰼ%&E_l_rPۛ45lLU:Q1nߙz"݅Q S pk}'!5'NrlzM0+#ڧ.K͙6'q2AO!kVwAtN{;t*Zj` T)/Ώf+~o Gn qt`FkXԷ !x1 N"Y"VɬuU1LG2VFJ\'sK٩!Z[fvuC;wepƻ p+;'teN]㣆{^yH_1qw]Q7\u4 ffwGtz%yQ?v,3V6 6 EHZ8WA*O@g͠C0cuwnY5o:qrnH3)p'x14]F+w0*}Ka}PEmJM=ԥoG]JD+_ VR/)DQ.Wٻw&/r"\E۫ܝ@>jc 7(%B 3&}ۇWU RP(O4( 'jک}3VoesI0CmD~'uMqh1#k"])~1] إrx+V$*q$SN\ X/U|M/u(}sb VEW" b ;i?虂-E@:Gahw8+ 죬!ᨃB;/Ckq3K ;AМNG$&e0ŷ1զK{- .6uL׫$`# 6jVR#vJ\e$t+RHx:s"A1@Qx@ @eR*gCI{G?YAf'gIṈu=^Dxk0 AQcLi7ʼb{xaN|/>h&r#Ruf%ca\]^#p˜(q-um4lcNvMB<ٗKQm<{1Oud\ƬMK?3*( S2ܱx?wADU2Pn,f辆<`*UsO\iX,S]_`{@هAVO4xr_|UaxbՏUtFnm 0rI7} su "ujs-PңlM=<3.k֨ipcpz!B \2e%WS: HB~xʷ=. ͅ$]8!:btgꙇZ$=b9ϑÚbb|<,fKuW5?ѹ,PE_-b7 . Q5(+-Nnuz|.LA{ˈB7_b0&8ԚcؑD_`i5;&ʱzᨊ<vG+EL/e|XXƋ)8on:/ iP)Cuo\IMIh $h#gjT>9.+wv]ldT5jAeݽNG}Gӷی8aC'}ؿ{^ <=]Dk-bmu_g9^swx sy }\Cك^ˠȣINS&7|(,ώ(?@$&&$ }>6fa=te2YwH AR "̝AY@5L5z }J ve4 >$8AS#ʥ|u^G}VJP#@],_ 5?dhjyGZCCM k ;-&DV?둃9Hf Kpz-lyeU WcSb:7v6|ۋ10^<[2'FG1\ Wip1Zsdn|YXqMOj>X"kO3$̥uNM+_  V͢:>VݎwrzJD".$]i4u3 } Jo]FGKJMM%M8"-o5q$@[R-^(yGobesA [u`4?\"liG?\FwӰ;npoT`7Neg ~n]XR7 &AJ.aC-pcLL3x0 Jv\ i f{G|tþv$LN.p5{z)1dL6DwL~>\2(d*$% B s~;g}mPn.n3,iv,37DsB)(y 4jƥ栙|Nyh ;Uș `6KѠ"t.&?ɯr$"F5i*ERF?=CU)@#5Odl6XmurV1Q'Sq~T(3=\&JH2>*v%nU4 ٺYv#p%vIѿ5SDS uДסv>Oʊp (̘Z\n`B[RqAiy1 ` F}Mb@X ڙmaS~Oc$i=;^8mi!*D\FSޘaزF^5yj5᧿кaQGW•XH0j)$CG,Ҟ4DaM)PueǔQG"N㕕=;:;Ҡو&ʟWj"ZNH5A (>[bTB|k.rr'/i)te% /]=X٫(oC2X_'ki(rd0:1umꢇpoufSk~7)o0HZ$g4*k|j~sӕ tuV\A-NN~612 [}.eڞ} +@ <:b_g+L/[mխR;3Y,'M,E+辻"N2c*T,d܁/@b̒k@>+"w~"BX x,B"xNAU@=Fx(w~z”{ @ $,Tܝ!i/WL2| r-/Cf  8F 5PA̸W rQ׿;Zt+kLtFrJ'7P')_g]P9Ô|x 0F< D<\M  O?Yp-4-3t5XK Ku}Ϝ4%F .K5}(e2NqсO3 8hɎ'h%}_jzyfiL ؃ulx=qxb\SX #oɩߵͿP8?S)m&/&"?@DD[-G섞G>k?]G׉+7a}/Bc~5\[yIijXbo ?7.R-Z:5^ Fx29c&tY6>K8\*%  +QΟ|vN\VYNCX6'z¬ǹ!kc kbc˺ڨ+J#MM2EE+,I[*Mhk i6[,ow?iWG{YU2TOGL/;c7f NRO/8 uoD]4~K&;`4 izҫci Z (f)c]o&^OZիԶMϗPBWO(/+xx7:D}rR;]͏'E!sgOn64w$ 1 _uqNz1zV [t8wF& WY҂SsYtt\c$) @k[{NT3S.и}ѳİȹ kgHo }ů=qE؁;겘D1+AǪCҩkR G} M}w1@tӆ=*XP[#$FqJ\I}D ?25ЗkbOyUm<9%iZ)CFA2Yvd#Q nP>kFuUG XJlyf|{|YŤ}(~qMKH(t#*bD aSE^.^ TS;2gaohbVZ=*e{"D ͝FN>4ZX llqڞrQƷغxr=pK]q'ޠl Xܛ`Ҫ=2OzcÁ%bTڗx8o}}ؑiuN{MKpoK `g8"6G bufp0i=x8.Mnjxuˍ2"A!$•ʯ4_.Ûx8KX۫ Z2q=!FM# ĩOǡج@beKY ɷtrE̷q^I%W9MFש͊"*UJ 2ͣ Iy Q+3N:Ndq ;uk'!k֜G-%FhJ\kwHJ5VJGrf.`\j*€268iAՓWV𐉯c=[B>(4T5S'ad$MRtda'p=_n J(w[8 %WxV]rM4GLoW!薅FOWP{G c '/޲dF_o.ruz8Z8`tWUdGs%=s^ZV?Q` m -?G#֎,#Z稏-2j4 iо ѭWWĹlWTԡK*/u @c=0c0}=IDŽݙw- trfYo #\ sߥ C|+ Try8j!uv ךGeҳ|3AᐨwxI9۰FqfWf :K!T"6k0uns.$d-g"] GbmץeDyn]%Ev:C_N[Ms@ :͑jMAi6-Ejvc\ރvM e7D7l+Tjj%˜gDڳ5 oڋa;pre_KQq;t8 Kz3cX/b npS DӘN J1٭~hCc ,buC/y qMWrMFCA")^ mt<5UJ9bʓ rΎKbBLUmFU S<DCsQvZe`_W펷Cc.YG8xX[L*]-'*r< d'^+9Ra-GWpg0cc;'%i)pNs:|6Q?j֗9@F]|&C2T5n`-@Z Z97*v'+(P'PNԊG(mџˤo^=-JI?\>I 8v*=GW1_ST'nf!4!㐠OTAC&>#;;"ca*rL߇Yy<|"C^S6<\ %Tʪ!z,CWJpckێ ]q?J/;fBi ! I*lґ w$:GoppM'R")bb,_@Ư⨮ 88.?@ t0/O0 u|@?PS?uANhfݶ$c.LC]jF %ʥ" D)9IG\}Wwuʦ9J gJZ&r4ȿGi`0WcZcbTvlYKۦJ׶íVljZ9I"h-ZՆ~@}ť]MX{ǿǎ.#n`F]w5\_}px0Uh_yj1L(_dOصgu%Jkh/jI5(:,`獫HB꿑3i ܜ.-pV*{`waHz$gy{\-zKO؍n[o&~xoMQd-ݝ.T /k3݁>`gw*X%( Yuw'$RŜͩ'ѺBP܍TۯBvGzjcڳ.~_ceT.S: O UͦH94sע1ѓɋnȕ ƅ1~#b!>٣r7v}My$(H5J @90$z/*u~^ &ᘆYx3tX·:CE|8;H0zLM*9ܝV^841$&VlíKb:-3朅 /g5 LI+*;MfEv:x6 ^fYgnLRO4n^Yb]z,vFQͿ]<]'`hW֪*+?l¼X'~Fl*@7A\˥;1{HjBIfʙgJX jWk49D1_C%G Ck,+~ 8խ32_ȃTXҐM{{"j}\0UR15卵wh~hVc90°"qZ}W% OY݈S1 υg* =k[P3ֱi;U1zq)~;Af#5u5@D4$߶xSP%xCVvpGe>/̑s> ZnCcn01p.Nڢk>,+w)uya(W:sӐD͸:*xmp葫E:jAd|Io'p9 <4}0pݕ'v])Vrh/b ˫ӫiv]?$2ÞUCws-/۬ 7}Z(ίT+.g?}BDD.˱bs&I3Yڬ6.SƑDŽ:PηPi=u! m8Ƶ͟%U!-@ _T d}s!~^#b˗ZkytiI0+鶭$-4},f–dkw8 Nn(On|t`;#w,f8 y!rcͬE3XU+v2ƂP@ _=(_ILDa#ƌƵbuw"LZ!҆[Pq([ }!ݍ3+p` ?+=y^-b ~@G=~HiHBc{kFzyk<,j7-u?2w}t3Sdy^s;7 $+Aqyh4t4ث%@Lu.4Ӎ4EJ}W/duSQߘ+t@3u *QnV1,*Il*r{ d/fm|v Dd|^4Θ* <zP }rnDC rⰫVh "e˳lv'3aRphݴw"^>/jެϜmqk"6<fWKem&ud$N4iѭ4UBz9@𨹗i)"v^>?XeJ<_zcU`)ajcȯ#VX(?% ; cÛ^k’e]mWhz&}QT-yTl,R YYE,ef=q;8.Sj'|Oك]ܒ!|tH("*4އ@$*ԇQhYn(sI݈_ 5EJA1nMɲa4!P9+ٻ)uk3k jE-ݒWd5N?U'ށ+".זzxzCk=tVXa]`X*:9&X21<Ԍy#zYPX*f brHП.mq|C_ ]V1+QSf,mbFfz4UZŹ>Hj_9NI`Yȃ\[v+vRB/:>N4fTmDO<;{潞`Gk`ʒޏy '#z="` 陓h9˵B:2yT0/Vg^:~=3wBnلލJzSjV0kZdn !z<] 䄩RI7]R*v1)y_xUMοfɠT3XߙN N񒏵QͺH#LULl}:$22 MS50N<ө9CY~X=_.̚K@sKW(j0v˻,p;k'uӵ=4(aݶp\* F܃bg'SUb_p\n (CO 0r[ ,1mifL&5My4zÜ9d{LJl(4s7gPiawi(5枟VtN $< o4٤zE󐅈Ȏ9#q cceVR bl*!TH<,HlƆ`F⢳ڐku5Y+-wX:{OٍԔӜl@J& t ņ\q5G}^.$GpVxw|G,F_@&鑉KTIư| -GN}l-^ȒzW@KA|^nӐF ")~IRC Kl^=y!9pC~x[sUcV-RՃNf-욢~]Uq E<]:nѼx?"b xo;ml.ES1]u~Dvs]n3̂lDYlƃ^ɓ [ LQ2h(JB(%95-6vs#CګzEWe^p6Cmn2:dB?*\Hg".BDowgL ν S֚Ʌ~bL2PfqP6A| e€ܵD.]UU mhV6c-݆ruuq;GE%' ߨTjf+ 鹱WШ7<,4YOCWqW@Fn eNA1D4|sU |0IeLiWBbqcjO`[`wP(!A6,DRn!l!1/YęznӴp{}Z܀Q Oc9N|)}捖YL¦(#w*@D1( kù=]{Ufz8.ŎoBf l{Os|˻&WڗKCuhp6̃E$jnu?q,"D;)ϡF]n AE;Dy(C3(H\0ϊ]\$ oi)پ* $tEoG3i=b=,Ӧ/HJkUzkcg<[)~<1Fd|jGY{7ʀOyȊ&RB*,gW.~׺RTڸo늤[ۃeu$&u}wZ =y4<62MI˝6AM6ΚO+:JI5i7wTc֗t+ wڄgJYLBcݡJ-^/L'4 Kd]yl!Ҳi<Ѩ1<}YXƶܤݮJ,-&BvKćNcy_ʣ4HW!c=\0Ɍ (8:jP3Ly@J1SrXRָe.)|_&`x| O`ܚд i#{eI/Xr _5\TfQٹg.tU,ADp{fE%w'`mf>|tGY4ZzX񖝏꾋/ Ƙa+OxƓ<5Y:V%q~+Ө!:+kԫo(Q~,0i`L1QީTOVF YC Gqe9լ|gECT(M_|o>de4vș~ d=VoZTm]h+`Ny5\{6/pE<:1ۀGZ<=- .e5 ͵5А즕lV[''KR?#J,0̙D"D=T'ZO_< :0?[fS&2֏5')[%!7SfU9#Mn E0b*caa^1-_MB9).>/ T'wE ,D<&j莳uGί*иXwLȔךZu)f @1r_r&0Gr|7gn]~oŞɛjbx\XUN=*-ʦ&L}.kepͳ>+`e\L^~?Cr9#@V$%1&8Qb\D4(*uT䷶É/:7/Ug-f+iǞ܍fKW~ǎ*gg{M3k`FEnoU#+W.6f|1-٘q }.ʿ6-nV>a-odt儩&Z'7L] eL|:%Y@JhH=,5vxnF7\A\џo#O.*F;!RޟQE$Ugv'%( rп\4 >Y闵Sa'B~U tMǚԜ{cm'] kuKayGVA0gSh  cH`z*%ĮLP!bW"}lhqeI_ ![su7{^(6tޖBc)Q]"0`ׯSD2:m~~8qrJ6j.!l]9+,&̞9?X5b@*#_o HGv3{ֈP)\ ri>/"XVym * Z{CdF`wˮ/ohؿjZAƋվ{~FF(ҏf ̢զ)$ YF-ECfov-_*B_g,J~qeʄ7cPwZ$ĵt}KluvE?j\N||mgQp|F 6 $JETFTdFwn8)"qd82]~i(޲oich%P[uFMܪn{Af (0 `rX|W \13EA&]~X0+Vkwm^U7%RkhI(O ߧ"1G7eˢnuxDN]=_{Pzm8u_0-P.`!J'%c( O[-uX!X!6Vea{OJ֌6* oYĻuxw}͟AȍR=`:l|cA<:MVw-T-7ą*2p.l“`7%Jɣǚx#0<;j#l=0x0NF(vq$з 'pUl:~R,  }CjD/ t"r0B cV]⊽dPskˊccjc@D8(Ȧ`}L%&Q0Ew/)ɶ#u2Yu4kא7}`7nQyPȒJ8p7^2~L*B4Ys&QsSB]{0z8o77bW߼/i5"&벎4(Ql"D&XfA8I؟ hο-Oz: Ut%_>\ n$zc譺`*97 '|Ì< ׀K `]~@ ټ;Иg 5-0Ԓ/0J.7hpU޲^/Hw fz~&+YR}2\nܥoB6wg:sk R)9<[ Ȝ'PLّXW .?>>Ks\,)!2`8 ༀY?EbAE.yaSKZ -޷YS[doS$*+;:hvF<#l j+SW7$5W=['@GkUJ }lKIVs悚r=z7'~10ywAfkN@z~ *o905O- u gJ淋pvC?8nq^q{i@ Rυ)JxU6K[W͡G7+qmY8%z,$pgup`lNIcxH9 ۆe}]+?E4Y镙`=0r(&E{et931,Cyø(0.1x~Yk.b?-@8s`'bW43 92D'txe?j`ICn0 /9|F"Ys->cM[cv/枸/ ZK)m`JdRm v 7x1Y 9.&609L("Df_t158ae8p7~Exq|D~p'IXd[ZB6WDE[n.@Y0ˍ*oDdS[0Qy>;C hjmpD`/ sH5=߫{s܏7V<#X,9~[ˤkҐ .dkUz'y[|d &5G+O%wVx:K$Wy91k靰XWl>1=B+ (OeY |䰽fBŦ `^7V>\l: hNG:I_'+$W(Ez88goz吒Ort`U8|O(fǂM@Ԭ,C #:}[B%Ky@ mkU=bc~NCY_1$ ~zdHQ#U}w+KEZ/CNAh+*]A#PS-zK7Q**S旍lʟY>W*NF['KПYMSsGNzx !wP8b!Gq;_B,Tkp5m:Ro\NS5$>[KC'/hi6r½u|$r~ЈiX 3upvƂdLP}5A_'"Vאp(vc '-e 66]j)$$ζC7E>\Φ`ΎByO3}Ne&M)\Adh+ O_Let/y8Q Gy@>!X_ 4rmiyƨ>:`LK-r煄Z_ud.  `vap`3pʉxEsiOPGTYY$+7Ҿd|ZN5:ԚzZbkS]$T3YRuTS_Mn4OϿVx@)71mFA=?49[.I96k0ۘ[W=S2jhiprI.҆i6nOٺ]$?>&ADD)JU "lg4NbJlFVg 2՜ X}QS[T 0#|g}F VhΜ{lSUk}{FsBƱ 7?'8TշE=&=B+f 8rʜsp}ٙL†^욂ce!$|IeԿ,CZ8 Ç]^^nYTCZ",c?lΞ}B$\Yhv M'Ot_êmw[9b4h CZPze.VrRU{1w3􄮫ˤ`$:}KU Sdeb[p2´A* 0o2mգH9˳Asԡ"q g)ߓRĻk EaގAKj;K'6 a4%X'ؐW,]x*e96ي(эu*pE sǜzqrOz3;BRBPw; yCsX#"f 3e]r*QM??۲4ι%%$@. + ^Ev[}rt)y=˟a(}Q>H%Q@.fڣi%qV#Q,}|ԑtMo?9c`=ZU󽚕~ qRh-֎FNf1mK:jۚADnI2J o.MYt`F Mo% ݹxrZJ0l&U흀c{YA;QRՔ׃4:̚vȝy!@L^ z[##:9Iơf5\G7~*$\ h*) !l躇/ڻQC_ ps~c2{-_FKԻ<raUN `fΕ̝y[ 2{Vje+م_a1iC?:ߧ*'Akl/dƯjIG8E-*(<3aoWG5R6O+=dqSĞ ]P'pE:lľ1@h Q*ϴr<| ,/,|ZvE`/,Epq`*vYd^)Jvl8|]6!STfG3Ϻ􀅟@]>Wj 'C/:ȟAyL"τD|9gn>]zdёF $Hr ṁ_蜫_H ]"pT! ]hs}0bVʐ+t+Jgu&̑9 Zl+4B YwaheW32W墕 bӈv>Jү'hՂbSI\s ƆBZG9Acg<; ujK/}r| ֶ7/U WY]sd YL>M/ <tlz}mb7[:[[Yp 6.X4""[B=i-'v6+KVo۟h4#p-4Fӓ5 "f{>Cj\+&Ԇ;pv+&&!x ;VČɥDfi2цLwKR\])TpnX0.Hx\WX`άe,9'^PY ɠS G}H{gӨAL yN(q6F_HEh26eUC\;3)8SRX B@ӤS!ǩU,aw]by*+@I8bX zMmh-ۣ6-c̶.g*ZӚaz ~0"у1G+jk7šGZ+TW8̬g\h\ 7R& (SxS՟!ǡ>tM(w>;xۿXg) ` uG0Zq[ߦ-Zbk'txPbUnIsU<'&nԀ)MNIV۲ڿ~ f' [k`p2JOC2k 1F2U*@2u>O 񅭩S!I̙Rk$2+uN˓i%ѓ<҉Q$c|.johσ4%'2pF$_FK-JT^W1O8(~r~_ RTxb9H") znXe6GMẔ Yajp obQkL^ٍ2sǻ#>}keH;#}J9ii-q4j|LKl} G , AX,£#PծVXhL/aq+$L.?)T5\τE&LJpS.FtF?wXr=Rd_t[J,-m1 7̻^ 5->6KCc[ۣ~ Bwm}:1+;h@W|'F\ghM=] *\PˬTnަU{ t`D9 uŠ􏺦NL='R?\@Bw]mHKWB렸rVg1(Y;#- (NjLl?aཀp5O![MH4E>Ŋ!_6,LEGj~ئ@DXYYLgh&㓧 Hy*rʼn7p[3i媴~C$,_[_M]?m@6Yr@e!Z\]1cg;@{EoWj`[BF"j.jW{!G7ȧ0Eud6&ƍ\<- < b?<ݩ $8smƱ`u"Kmp|.'qSҎ 褔]69z烙 N-iZpSNal>Mk^ɣӥO]`"X0͠lE»LV%jO욼B8 h>9F;}{}ɁfMG?;Hc/B2|Fջ[d7 Te\B¢> t5kzƏɗ>lr£~st˜ظ ZY܊L۹i^0gCn 3 c=$re4F<ݺ";1씶oڽv ߦ<}:6+8g|}^o WcAlLx6VbOYc)jUBr\UnV L[".=&̦f]DAwE"pz[:dBmEgRnjCn]L9tYB:EٞI7yaUzT ~!kpgȋ@8b9FB\SҎ募sgx!JCumBeqC >znS;>2A|6΃IK17K$8q?E++WgJ/~fPduyă>0RćX{`disMݜmu{1Rܐ!RH@zPYpArá>%&s'8sG/@@"T 1K }hԣD[ް&*z-{{w ~gJc=_0틍J!jv(ۊ .*Zsc}}];[5]{ ]5T8rK l]103q2v,H p0+diڏMgX<{TLHtSs$0)N@86 |0׮)!SNʏb B{W8V䗼O3cHNi3=1_̩[ؖ(]tyx8z,BIgUXiw|Z̗a#mg^بg(XߨӰ,,[ہcP[L:$$&cfXV=jt{u'5䁘 ׻<hL^HIRb_5,R@2H55(2ZާeNDEp좷6f<]ȱdI3 jW@ڹEQ{(s_ {'wut{Z \:0s6xYԩ, FQvJ{戍a#`ƕ9vVFDF*$8/2/2"f>ʯA FpIf[ ׭,)(pJq(u׆SMdTFV0V#6>Uq v{9."r58GŠ)kժd(}7]+nGdmqZ=+hi|䁛sA6R1u@yG/j&%ʖIUA>N=+pih@LLF2%SSCbPD[6M3BV ٰϩN#K،aS~b"dz暑RWI QL,xCʕѮf"By]fnj#7:<"cPp-꜔BrN<3UCu =!75XAd#䡇K߅(4;k݃dLCzTI<=~v*ÕPSmO_Dd!=AOeG,X˦\f"v8W❟A?l0Cw< j\yec*#/P+FL\Α*[r׺;e$>ȱ 3 )AK$MJaiUyg 6씹ZW:stɹ96IbnoFq]M *yYP!Cg`dM>\_B#dJ,qx,Oct-ק C+w0;.kr1+vkUoe'2 i8?bP/AC8dhq!XZ.׎K|wm]s)v+O|i<@u2ь2҂GJLZk?@hfQ69o4Rq^2 ҸVKRM qh\ w4z: % *~V:C_@l!`(N0I&ھ۶^ Y, y7VWr,poKVwbm7MpT->^ L`m١R|/$]0B, 3|WsY/Dgf-, hS `%{*%MEבmMuPL\N !~IQv%VIKzhV:t?'Zn@J(J: J|+C"rЂ5Ы#8O1:HfW ũAXL:{C0rf7 ]{_,J,]?f%2] rO~q&Dm+Ƞ)-x}!֞.Pt>U_F_*tf"_ 02;3,a;03Hl.AT#yO g,;42y*-n{*mMq OjEI(eE E4a'-l?wBK܋ # rMne"-?$ JcVSsQs#0-ƩN[p4XMX@WYq[@$&vy*<8q !{0( I"/!Bр)`SI|mZ_qb5CӋŸ: GNo!!/e(>~@]V%n$|*6۬ IO+P7UrFoHB8_٬&q;doF6/;Q>QŜilCGKQD붭os{ytHFoދe |LzGx}rF8* NdofU$QJEHADJᶳTi~_*,u%o `;ʨfVi\n7Qmzq"Ӛ}*S:x`X RY5i%4d4:QVZ;4H`k:P DfANiPEWKӴy#>9^mƵ(WQ-;:v 9꨻3( dP1;`)rkSHB!:-HZCjuEIUM-ei.n(LX/ԡqtU Ys۶qp2I~{xXZWe$KrHBoܥ1GW[:A(¬ҽρ?Vh0N~d1!h&}J`?Mjd'>xѧdFCЭZr{(}X%u4jVX3mc<@coed\Iw;p"TZXMzR9c_.Hh7 I ggS`\H(x\ա@+MUwarR9`2Vw=gȍYRwoEUzoz1ߠRU1-ǒ;M(ᬎɋ ˃Ϳ3[ VW,pX;d.gҴW$T8rw6hH Xp a?I^δ̌}׏/RА%mҲCL?ꮓ1 t’Gz\}"us)};.E3Toi.[g w/d.h YdPU?疩bDdw ~eТrblZ:%;l7\eja\~.5)̞ݯ1dX.]D vܥ4+/v#papm7{q4#|jtQFܸu~Y)lK PM o$ۈB R+1',ߍFQ6^2arӥwwC!ã}Li+.L1NAl!'snm5J:«Z*jQȚ }+ P'iwדnmզAQ, O?-=;ļϑ6 =QB$n7|R__ 9o1};Μ ~~{Lѻ:,{ܝAQS3 `O&0$\1/v3Ѫ8 :*-(|gL$6)$W/YLif5ʴ(HԞ9KOfly̠aH_cLY7 j)g8m硐[&X 2h2_#ͣ P&9*Wt jO~\tEvV[&3$.JV 3?D>8ˤbc|]xg{$UΓ/KDKR~BM+gbz@`ps`K(V=vS~}Ϣ[51 HƬx<1JoY2dzRÆ0o5rąqQx6WBeƋ&-3sٟVz^Mbi⃗2qo=iytD]O7bN@lsL1Md%|X$k<=u{vH b }^s{ӠMjOX6wP5ًvz,x̑΅nȣk2L˾䵹._f9:Q3!hioyFi4X鏼HaVVpx ZoP?usi!M &X. 9ѤԱXc)L&M `Y9A 3'_+^~i>nجI<䡧yyD6 O=$_H*GwnbD5k}"=YI&vQєHH2 @ ygGfdvdG_nx~G;+ rxX;*=0:žzJYns;sTHkKq(B!wA;Ov|׋¿Î\r%t&FqeZQS;/^f"qaW~ߋ?g(o˜8\wW p^=H q o?*GM)p|wFA1J7O1-G/{"ۆʅܜM\u0u#bUkf#P˸u>wkr)>@#XjCV%c/1+M31[K0C҉P2-'׏q.L`Yw{KqjJЗ^hoa2.xch33=O)bo[MstItF!Vɞ+^"lR8hB, [)9lVB>罖IR`/,QKſ (TuM;brZddݾ߸),QX Tj$7l]UߚYY~c/ѾOr0:IOfXtujkI?ô#Ⓡ_a( ?Pۀq׌[ g47;dUtyr)j$h=l7+E4Kgȿw΁M`צՖg3dg% j-1,5I1ƹut:^GX2"Yy*zf:x,GhˤGZ"G9gI0$iG]d<^dQԖ+˜4U- ohÌ?]Ep51hr춿چT?Lh?>EM47s U:5+ +Nw+7v;SC.p#v(p32#CuYEDM+,B GПP Zfj&mA}7eSU‹F+xQe(xވ^c49N5L]QW k3nj_ 9A(.5UeJ6zYȼ r$* 'AܙɶFSWʧ5?/;״52ܗnѹ= 6LeHY#\ [(a`o%GDqe~?96q7 6L߰ L.wʹr U=z<]  hA~@6/je|’}ɯ$F 9Yl)LDl N.v&+cShFWe}t'lXtUI(֌`GHgUsV`^wQx03ƢQ^FGW) ?>uLr{S`6N@ZBz'3(+(ٹsC9;2O?;Sؼl?>] }f -(O?˼صUu I7'zb"G'~[L/%aizPxW;DE%.~;^b{dtob\%qkrF\ Xj7"P9u|[跢0R^ #fJsnP96Fc$q@%r Dh'>fD+#dB+MoVi4"Svuc«=Sp#=ʈ爗؆ g僧 qή $HPg= MgƎX;JE2)ư&hӟՐtA[X aN6lE+VrA@%\>'By}WG|kOiB_\-.K4MMkD0bzDϞت1ɕ(0UZvҵ)}g{6L'q\^'Ӏ 1x;ۂanΔ^8ho 3gLͼFZ,{АTd6a&S(9_Ί.aySzv 9(3ej胼E+AJx,; (j_{tLeT8 \z5Bke%T<&AJܩ~`y'CI[֕XAQ lPM0""B.舾DN_N7B#z~1c WwFPbA2a'yπ9$P B0۠Q!Jﳿe5?4;%g l|ov2_`bZ YY@2]GnN1;\mm7daRM|jp&y @M\5;wD&e 8 w\w?Rup$ n hŗ, Fjm / ,Icy 'ܙEB39{Җ Չ;߃҇)YI-*k@uhrAx?_kzr|8ɛ[&g?Z_1v/=!,~q"TZ5HU Y%eFİE FwO^UM~<,U2,'܁"ОyzsjP>I@FOu0} ;^HofXm 0""h7w3^XQpg6̓0SrQ93&|ЬkDE,(\ 8#IlA Lv0_ͥ4Jܕ|LeBYo z,)mO;M-8"GBy,[~&gHP +nQ s+$ Bh҈O0kP8m8wHW|bjJ~7\P9y*,qDpk8)( ;&!,X6±K&PTDݨ-|LbܘnkI*n+C [ QLLwq6>t4+IMxZ"d ,/+*M,5e)7/kygmtļ[T`d=YI%O߳)ǡh7^ƘpP/Иʟ@B6Qg:9bZ ;Ew3 XLUs41x>#S8ah @D7moqEa t^>օ[Rz1"\o &K%^&rZ?t QPfG`^ QBEǙtz& sFgv٧r8/ZGV\%E,)3Qm -٢:4ޱ4#2| s_=0+R-L|F#V͡,Ԙ7EdLmUG vzWW MvA#VL Bɸn|/^PA7|0 S"ݷpL~>4qv;W"}EnDݧ4'%,BCB k@]Z)WHo7<^@XzC/FgN2 )90> WZ1PG`Uzi |كtmSǸ؆kxe.]a$D[^p2 !}k@gS7p /SD{BmX|rӥsX1hsRcRA=VGBkp&GR%8ƿ9H$ 'ԕ檗 %˳-qD9?w $%ҝ{[@t&7{[l<)Ȱ0`Η'G{#׉10EwZؓ,os o%h;A睤ъXpq_- Oy HP'LdzI]=~э^~,Hkl`ՄOsD-J=>./G7Pa,>mDu|f6z xfA]IԠg0OS$81HcwX+axK-wi!3#j2B[#Fx~ ~kIOyJrx/fv ̍&0},VWT: =:M;6cEa3HCJ\k\Bn Kr&Zaٓ=5*Qm93V>!0|2hv[)faXP?օ*=N}/{> ȥ,Yٍ U6c\%CUwE>3">"E.wx{8y󁉍JRp&su(40{=e;i{p 0^,M$x 'G~-TS0:]Jx X UFQ=AYML-, # ;d5^q5HVvoȧ>F~0yhIn"*к?0 9mz-25z" `ɥE\gwN[˗K)-qo2 .ЊG?=t X)x6.v}U| `xOpjL:Qۯ_r־w>-ٰ*2/ᨧ]}Wª^\i<\fӔ yg!_BE8Zq!8uoXɻǃb{!ٍu_$[4u+/eTaأ)%yEn+_`7GBE%p|2L_w-_Tx6$H hNUr 3>UEͦͤu+JxX>^ԇ'ht<&~}zxCQ\?p)I1z@d*. H Gcݱpkz9hBBu2N6܂Mj5 ~A4j$>d& KГr,$j?M߸C;1) Ug@d> >jP}MYֈ.Gzz0޾kܫJM5mXK$g+0Rj hK<ҏ>@GVUo ؏#oHWr,Y)Gb8̞Cm1@KEUsc[J`jvZǐ' 땗V~Xpf["P 6 d:VsTI/XAÂ%"#JĤXϻ2朡5n=<-L}a7BՓ\-zש8L!T ¸ME ߊ!tbZmp9~`E›ת'0:)@ı5X<~\ugpGCeRD+4iYE|hyc)t#(E$_o.7 TI"= ֢DVi#z1ARE`W^GϼzXW(P |97<)@#nI+:zڨݒ;VϜSDNP ~QXpS)3 aTu Km1?( 3理Rtp{zUw]lo,tYQ=XɳQDañc+dH8p~މ8k &riWU$X Ox 1x2EHmk>H* '/HDGc^7qOs3pHV=XRi"Yz֭ҡ 1U垤ȯ|[Sfp2n^oSN8{y?۲~J}Uw08;%o)#YM=Tp!5S8"CTUX|7_ MG zY"H0r%ѨEaDb'z T|$+I;%X~]oe%b>U;WYGԨMQ:Y .O7^x~FVP汒s5xB"c $Lن" pb[ Ŭ9hBp e9̩ZEQԺ,r?^b1YRC}nhZ򦉧,!@S2 =nUkEIT\4QV  J]nilgNi e?Xck6+p2+;(UZo`m ޜE [i\֢? w- \,U: 4|ov$7/rmey໰܁ohfx}d=+zC9-/e[kp&:ĐS(Wv$TėPq(Y_lml/~˶j ZZ:8V݋DR4]ؕ27UWY!`.κiPpm;NgĎZeO)DNxPBhf~jz%RF'2 #Q qj,trMU'ke X("$Y4tO{龜IC״0Lp6;A BOzJяb4Hr2db$cB~b׊e:%^.m4cf, }`\^}SwKMeSnا}}d}8O1j 75h,zC| `:wKBQy> %V2> n<.NlָBXfqc|#;W8kHݺO)W$83xĞ|$еvزMA&,I#zk?Y#o#}&ˤ['`W3WyyDc3sՊXb; Q{.&+o[+2\r>Sd 9wig?̷R3>\G_722i8Of D̛dNW I7%LP}󕮺\ K sg ~)NW5kMLg˛- ɢ Y_hЍsjJ9 ]5)D[-X%-g9q9 栤M[%Sͤ}};YLkxYGj/&,=1>p`׉N4•JcV04&9'+' vk.=dE՝޽c_D B@]R䰊Ц5pqt,dа| ]Η`P!0X{-%y&-xV/V{XE s( NH5D K׍-?;vHez~lue?~uR 5S!igC"-eڰE#gG=7;ԋ97 ^,qJj|Ee;xr¼)Qfzo蕼Bn8T@']ɪB ]OwsOUoCͅ*g0xFIWn8ɐj .e׹#M.p]T׻C\ UptN]ZI˟Ǯ8rFsk:x}E}ȱMWQ#5( o0O̺p-\{ga%O穙jl>>}{x@4+L;=;^iWAZ!N[xySPI4ODžqQl0j]j<,'ZܷzZk\̄w2?Kh?͢L𘋹@iP ;'; wxU[RʝpGs@$ywq =r) M5,-5+5%vna&m* '$ VŢfR Z̏K^>K:û\I@X%_ 75⫵991Q|N0f N7=LL{~3{nI5 .󖑑.:'~pm8ݧ̶  zRbQk:r <^apǨ>MY#!2!hgcq|ڋG!m6.ug kۜ1-.m0-NyniP..1 C-9,;s]_= Z+r9ɾ>ōqʟ-gKAQ_;/nc=OUo3&#KÐ3mkUu bD߈*ӄe Y۟hZ}ëT"o =%#+hJ<y>0SE- < } <6'Ї@va1  31>;xE{FhǸ%ZN|L4!_! 8ƓR ADeɓ^q,%]t j Jյx-D $3* EY0E2[XGZTXt~q7/[ Yw*E=P<J?ZRHjM [3Rfk0!b7T!<3Ѻ$ԷЋRL# 7uέ>uZ8Ě@纣+z:~l pmIƐhye%I 1P۝؋IfA]9騒_nrD:] X+v2 lt/1Jue~4!>2ĊMS/Yo_ Aq 򾊛^U!Bxm2+@N6xxj "`B0o/iSxL}|5Y+xAD0<-h*}`r7;e Mʺ(yWA?AH7iNOg}vM5ӧ,EZx"}TGZO nYJ߀N~tS0xȿ[gUK ?+{WܻvIp"eؕ$:aEG[m}()*Q2_t uS-~?csYzH;Ky፮PNđ"Ps錺TUt~@tm{=u>?QLZuC ۙymۮu#B<&򹥓Y0 :F# R(3y<9<:$!䵺\:2EIHc4ʫ4F~5M;-nh970:JFcOTP6ĪF7*c)7Vtf_mU-:`I8SBzW>y66'zjo]Km|);} $ޫ WQW5AVf3 f2k;9c@>7S)\X;z-p:@o>";x'a7@Q0҆:#TY%d.ppD2wfwe`~oyQ~P&Wu ݸ::Le VJ#ӊG!BwC[<#s0o~[ O/ۓڟc٤QJb! 6\,7=;[nҜy`\O}rpKaN>@}ciU.&\1q`LXdl<&XN@r$U,8M\s?Oa&{ :F/?B~{(z,^5?G)N3O~kd@ 㘐,=CgBqo*S$BzYɏ3S/D2"aN DhWPSܥ0JLjNF*V )/JUH'# KXM4fA"Z}1҈h!VT|ҺMY_'sVvlw##5ka"?AUxxN;Q 3e]w9Dp֛TN.|qCMt8FUa8Twn'./UwD|Cu,Pͼ9Wc(+ MwWvy}2t::H."Lͱ, Y>)N0^ v#7A X1p2L Fc<ȺK+7]f}u|y˸[*n/q!5? VFs枦VS5I|M7HR`s be z^Kvs֘аV6m؃%\hg\"q Z@9^V{!Iw( }"Ga&6G2.ns+Ԩ/®Lv1G}|/ :-^~C2[Z},k!ܙdЏL~=`Vo͛sDoaN@SEpjqQY:.aP'ma5UKj/KӁ(p ChMc,;͓N@μwe(젌g~>Lq]:s\:U1Rz1pVa"wOsc書_ZZI+m%'CZ{v%'w̖$lUY;Pv_'3]f)$T1r<4+ҖojBޯ%0-KM_#jhW8ne]9J6͙k!YճMSU[&Rscn¹iL^j˰\b i[Z!..Gg´^CwScjpFu&q5^NFxN:L^*Mvx?!D &RJ`F#: ]|"` A VClyHa-= jViP3[,m{gBIQ6M:[B!(T _e G5.k5`5RU[Gc_.xm/NދF2* zb]VB)Ykn#Z\Fsr.#Z__95!2,3vYnlW#%⣇K!¬yf2vz r$?:V+1p#{>pڽn%tJEVa,j9돆+@~YK^L< Kߧ[nKRlЧ9Ί2rN F!Z_&*"DC`_)ѯu̟߿[;R#*&*Ҍ[ƾ$soo!N5@cFϥRLZΚSxѺ]v 6I:cek߂Jk9+[bn-ZM#0xf.Gçiиn]N;eTKƀ5@{St*H] M!K;i( bΨ~R-$yh'0#T~5H/ 5-) ~=_0w`~sB) CcF0w޶߯BlF$(>5!;9t ?TujCY 2ؑ(z\Po04$byDfǃ\t8|1Eږp0͘. ЧQY(>S0yq(ri,܉\|Jp}jLxAkަwZjQ J 7Yӣ  NtK4gaksu3pm\LBA[ 9g7`Yw] _à  &/l ܋ǎw."U%G[~2hr>6N;R8P@z5e BD񤽢rbA霥= p['pQ͸<*T";% e5P\CjɜPWKc(%r⽑ t_F-(jMg: 7߆{O ]W\"9"=؋гiD@ΒUx5q|SY=^hs'r x"\/0=P96{ңACވX '5Ҿ+KzINW Y|=W*3SpwLpc[- ՙ^wXy_MK?o>I sW}\*Ǝ)s=%8j00ť'a{Pdzp<4ҳȭ͋ݐOr(i:u ߁|!vDUzQB q| p^=1""^*W/ByQXy1xϿ_\k29\YVV{-AKy:qI>^`7dN D`GI&jRwxs l<t̶0e|4Eʕl.5\-_0VS+QI'Ȧ\k3GhڭT~~<_n̠W*z9xc)[c?NT]Uli-`ur8aHfNntAy*"ZWRz(Z0dİ >3*R{jݠI˽U~DZGC#Wp&Ze&y&%ieȁlnq̳ӗМiEb}=;h{5ynXz jI~r?*HWȋIk $Vn(ZOz%"I;26.qgO{ƥqqݝ$ފ` + Sz$b 0[%!^wqϜp)磝 %&--l *jI7jWYӦƺ>)@T@ T3orL9ގ34%Ϳ9O SiVj\FFX11m)лkdʐ'EG8|NY|H>Ev*Pԧ8zq\Inv^|a/Ʉ{QC\%COd&\1*&oW1#?FIlth):Qi3!wb-?YQl|/xi !uRr6tbx+&{@]y]'DLǼ~:ʷ3Y}:)ʅL#|T-&\B(wOAs]&ƾffF8* 77Ik; Xu՟1 n@$Y6Z;M|+?sd+#[F0KC}bQE jȃFfL,"7W#=_̑tV홴Кj+k-HR^pOwρaf#SEz$gU(zP_Oo襌I$f^g؃u?L]*?:=]oܸ` ύ&tH|bA+9okt#Z A`G+St:c@4ሼ>6n| 6t;̍\iJ$d :?7D%iׯ=Vi9-$D+wCqG5-9МWl;۲ՁV2f<+:) rSZ\_2{3W "w9sz*^\ȾfI`@]Z*t|JejV/{ p}UG>G]Ia}.'VՙG ݑ+ܡN÷ch7, >`9yPJ4BGB􍉱9f8g`Pk0%z L ͧm9K>`W#V=t1]fXv lA ;@̺Lq =nda$}}$ z (3cNSM1]m1Y2t4E~@2eTG+EUF,!@kMd  % &z#ĻlOXOߐ͂ӛ^39ts9 7itᚤEXkŀ@+J%5λRLEL4D]xB.5_p>X6k_7Co&].M7OtO@e ?+:#XS9Ck A5 ~f*(.{H(G\wLvW$-m]-md+<6+NiP[? Jo]okrմ,sHx-l+f"[('+w{2wg(!ĺ'g5mnB^eІ|0/#B38BdZM7%aɯЈ^4'a5@Ɣ*қxIaW9H%+dWl.w0 ^ R}*? :`5g6z;g[[?IQ'Oz6ew`9B\`ۣyVg{?)NTyr N\MEK=e.^<pGVoG0_V/vfG FfvВsUa1>fJ/;)f{&ǎ 4 !rԀ;a'fN l^B 9?XE%h Qv-Di½̚f#mxlG:aLgK>"`NB,tڛ,yW*'zvݵϦH?FJiWZFd bmA̢l:gws䀜!  H2epթ[·JqiB-t2=߆A+xȎHА\{x0(+~KfV<$kE$kVPMje*MXbsc#ێ-IcݓkcU *~ǐe[eI0yTbɨusٝ7m2D&fa:\q^|xԅΩǍpooheG GpF^qK5R=77Zc>#Rl#\ BSWSWW^t|i\+$jӻ裳 &Gk9\d\%j\1Uů, T>{9c'\Of 0DM<'k7RDg  4y 9=r F5![DF/=4$@!*,Fj Ib&ikB{ ~ЖZO/LRáCNHF'(XՉL ͜s5DV{rwq^C-K3箺s zkȰCs3 ZM~׌{010]Eָ#v14gz )kޢ]ztWV!|puzrh}?'&7 d-mIwLS.|:vw><$@6nDv,ӂg}WE4OO'#bن$-0y]~uWqTyOh%r0O檲gZv`,lg:[\ lӺ:)Zۼ'8 x1ތɢ?;لtJNRtpƸ9@;D㫺 ܤ"\ [2(@%SuX$+&j- fޙ&(Nĺg;S4LPc;Ɨ9:âCJtxȕ\r[W?6Ʋ2#T#"'[eXy1w$l` ݡ7lnĄtIШ55A[h'eT051F6uɗɟ ͶvEϋS@ʻOfTW;\]M7Yo-!p)oNen&ܠ2g,d XWVn5tW aѭ9 }m$x˜5RzI}E-`:'ʬ֕PP: ;TXU f#Y< 4j5kU@b9{x++>eXq{D%6~pֆjJfZH/x*Ӓi[ٿ}{;_ڂ*{BwoŬOF8EՓ.MJ:yOoL 8@পҸ>SQ$\8E$9r :fE5]H]N'iCcH[]2N:C%#7 kdj!WpItl=}F'ՀE'ʭTa ?r+-b~B@â9'+%&l覗"W%ȈdbKDV$FXҧ!S?k/-l9pk?W 1 k[IL$fg_`^u)hKN(L:̅"_r9̺ћ۪ꯦ ̖2n|gJ;P[Q!=&?(?[ T`zC?cOyn;[${}Y;k`PuAXM+$WDfZ%]t,,gsUA D0NJa4UB\g)eq6KK!w1ߔqը0EWվ.M쮌9-wYo0v,۔%ŵ60/UPt2ܸuGbEG'0v$^`y%sHewH!lgh1f#,&Ȫl$UUx3}y9nrA@,+R8\΀#9ȓbWئXU|hSP^+?gh=Ddœ.\ȶo5mƔu 9|ad'p5˄ﬞ8_Gr+!@7pG)I5jb'YX* A~/{3D|e< drXk;" Cx.{ 9JbtZOedГ"`iT#X cC nyU_c7YUEDoHI+ͪw }j% ^yQ?S; 0ս5=>GV͔xo"R, ;_o!; 0"ZM ^֍#ڝx6$)^G4! _6sLbw@Oz*4(1*!NAl,a޿(mpݙ@@Y@[' *(p&cg1l*F5!J58{2z'}c?Y5Qq4Pd,6ǶtvYvMHv#U 5_بvp|<=i_}i\o]g_ (DgK-BQ暪~H k#(6cPbyG3ŠD\z$2\ ؄5h#{v.<"ŦU.[, ;xSt(Zee<1?K,P@xRp YHNăZ: m-bil?2O4EEYoM4_JcP c8P W'<&PPi2>fDpkF^grѼ(-!z:N3|mbKPzIҚyHVAᠹ@/'\3B38tc({bla\nY;4dB@qh DB}^_D" IZd ,{Mq(ܹU5}[fp#Z),/ @fHhr` 65lËf&5 OZ#QfV9"/oHkqQ`pmpCP=+SkukT́_B*X΋._V 0<i0VZO)I Ol2ͅN]'Hq5AvB|B#D|ɢ>Me$<EMe._\:IBM|ܬ^+څse8eSU>hq-!DwAuQ\/H4e1TA~KWLcY~ |. e:77>=p:IhuTx=l"5lqa_XA~DN"F,w/7}*oasz& 6b SzҎLCDo;F.R  e²S/* MpӀ |X+5a 7cPwJmo=*Dlv #{eNj>VIh?J\_qm\*1.JVe V~XoәDŽivtdwX oug;EYA ><Q=x%57uPOn܀;ѯ&F~N+cCoBL/r1t91b!f 'B0$X[0v'&tnwh#g晁Պ~>聀Ve;zRx̹ z?3ke 6$e[ '5;,ਖ਼(uX5 E3&eaRhQdB5"b >,"ié]#saYQtx_4Ѣ:9`N794GbJtT]`Gk<皚}6\^ȅS J!)Q*lNQM/*]5-'+HI%x{@@$DӁT,Z, ǟy0Aʑz4% }a(bHTyZRWƁF#{OR ԱPhMo~ %϶!$;$*o*b? ;yGh`c>Ϭf&}z[5{`Nܕ{+!׶ ugŒw1zK'?",. i6b "FtWƝGc:";Sod'ަ$O(>8GC>XqD5~y }H0X\mj g ϼ 6g ``@8.צ$ uP֤kzI{z!<,d~ޮgb7&ԆpM@3L^t #E)Ex0KN[Ҹ5pX՘NX*`z,_T;~`ڐk A C =T@JDrc y86PugRuRie\rHJK$ȭWGS\Qr zȯ/pUNSP(sȂ!uK$av4onyx<-KhIMb98idҍUK6D>CԨqJumZjzd~qC^-/_5xrBBT~ACd>Qd/G-%]%B+1AiIWI=ˋ眬n46R;! qQVp[(t#+G~{ .E|?m[6vw bY0z%1̢ 3=O{<6WF,XA{g6qp#>S3"cߛWY8ZK.Hō88P)Lk]ⵓwqq~t3n{$#0KEI'|K%Xf8[%VP6c_Gc}~վ޷J$&n3$bB=ڞmȂ24>Q2uR|ʹ`i1Ts}۰*u˜0Zo> r(|G>aBf~җ<,JQ|3: PoX\uO4ۓ<$&$'f "`-M$}k0nJ  s2҆ PZxD@몉` d(X5/|[5nJo+(Oݫ8#&+Iu&ۭr$S4CxPpSyp$㐥ȵ?C%i<J ?]vcVV Q؟: \&蔼 [dIaml(=mA 9?#P`ަ?DLԵ -AB=>ų@=FVüH 5iR`U`0K:iS8w0}5<'[FfRf{s4±(xs6K[8czf>ynu>UYd˄ qpםٷt˙HGd䩒zi\ehR:#vpB^{zw Om@K'n=-&@{(E%u\פ,EfNˡ2|TP/^eefMb^UQS'M@2e-E̠;(ұ/Z/i](~NQb ̯eH,~Y %vPC8 %/g|a2T5B"ۦvH1 ޯ &yu1Fr=5>4dO,J߈[t`F^uBsU@I[P"^e(mz!FJ>#:M^7{l#QWKLjҪd܂dCF*C 1B Sɋ}CW P5r*1+)}88R]髧̻^۪F CǙs"v],DY4/IxK|Ǒ4K;6i^oJF'hJ#ĄVdρLw"Pfr!Z{D4mv{n޺z)—) q ȌD ?5W?\/ aFP@[Ӻc-8/l)"ĘlvM_+}l 8t  +H|TԂ#rɦ5EҝʘʨinGbA;ȗ<|d XQ=L 5A$HxmQɵU$q#t{BwV T֓|_ vI_\{qԽdII̮؁J_* q60"od JƵ,WۄmVl6 Z~5\$l*J7 [9b.NΖss0'ݵN]z} Y"%-hQ޳fcyх {r^i&f0Ͼc,iQMUx>F :/ܧu]Fb03F)G'+ş]>#@Jh{ a !Xe ` 6`)Dt) g7klȕӧlV123lF4)[wjy4{Pߐpں{I<*YI͘bbJ\]SFe k]NFkK0clcbwH"bnT]p90z~=y=:ɢ! .]D˓.3QOu(2ísPHc͢%p lݝ6QvK~\e@M[҄ ΤiSZk+B&vsї/]@j:?'^^1nKVOUbʬ%EX VEϖ<|Hʰoz'|w}ucdLfgl#+?E_ < ~*˭|t |T.p{Ol@]3Pm,'s`yl?ӿd!2mn,&pPFtYJ&{>Ej01tդsp-ItO avT jQ r Vݳm@?XaL^#,3Gn@HBF쯀k Ux755N Ny<0p!G?!І:%F ø i>["q/ {BQ++#KڧYUf݀/ɘ2.'Y2ois}cօm7uB;n1uWͯljd@_nt龖-1p-y#w@HE%EclƕPmG/B8>]c&GHX0E3#6竜 5x_PtX6mR3)WT^’Kd 7QUUػ98RiKT.f "j >msIoFetòd6U8$EP,@FUy o䑟0S_Kx]eVr|##2ի[ЙJ`>LJi>歱8s*v \+RGҴhSjP qbs\LsHoF t~FT1-߰ˡ{o*YڿÀv΍G&xjHg]D:FUX"|wy["]\5)9LHjC;g"x"l7(+|?9} ܇zh3)h-N'{2h>ji272Ny"pc;|J@< P?A×$I;yB9hyږc_< _rT]?1bzQSxeŵb Q3J]Uo*vkj ƽ7@.(mҬc9zVĩ:>uB%"Zɯ5Eakpfķfຶ jisSͲAHeT^TBn${:a-xpH"z^=6q1 F>Ί fLf8ρ\zd3C^b@&{/ÛFn׷ffw(Au($J(w3/ rB7N9?a<4sa;_p,$Aq}o~;6(Gaf>cwJIfV9WR4VYky ٫fx课7|D65៲vwx5}WϖtKbDE=}"^8א.9l&#5_`Z k͖A$1huqiIm?Y6] e 9`=2] E_3p t"ā/W8tE_O=*M ̀8^/vWj%w/-p!4XUzf9GS9Bc6nq*l %*;O^;Cwt,&a*l#l ?zbJR72+x܊C òGx{*LŒh^)o|#Qy1; j$K#6W!#0Œ C#R3'm\J9xSZhzG[쎛^hV6ϳn6ɢ\[.cߚmb>i7O3;Hy>1m}R^\tRE1] =U4w5͚F\y"Đ<ゞv򒰇 jfg 7l|][!eզcUJX /[hտ_p`U JG}>Z*Դ^UVV) /H$8";\5'Ax@P l1Gn?t^󈗽JU x1ai}}Q$cJArfL٥4\| ANJV@@Dp0U9ᏤPwMƖ tEH:l]A:i45 m2$~)t1"PrD=䰽DeICvM/?@#d/aƤAMt\N- `ʎlWa+,`bq.'GXGSKG=rB/ ÓHpfJ({,sUTQ+7傒KM/{BA7Y}=OjLk_WY,(VCat`& S"кQ3LTpu~qp}"{;:T1QXlܪH]N6Og_,;0(l/}2G\϶q?I Bj(w.njչQqo2KùuRTj Nw߇G '_ItѠ_wG>Ie{ծ0jO1D#bo(tδ Sxd| pGL1h[`ۙDF'ܭ^+'&yvC @@fxMRxY"Ab` Boi8GNh2!`S>山\  _߄}sIm@G#$?\Co aRۗ}]ҫlu*p3O)Dr$Ԭ'}V*bMhir :L^9C=+߈60LH0o~ ѯ߀IR2 t9v*ORE{`6[21i> H yY~ $8ZzbdT;% `ϫJsC(R?ocx)*`p$'&o{@S}/Sqr] PM eӯsakcӃuB+{žg `䅁lc᪁ZF 30֐Ԣbz}NHq-r}űdnjj#.I\ _Ӧ,$7=;'(mUn]c12ɊgfPb!躉<5i|Xcj7OaglS(CWN xIcZnj#&! 9v[KCT2r+7uPg`z[re! Wp*EU[uhʧWK5QnU 0$y5a3AHU3 .5qqtcgEwҁoM(r7fD3Euc,p2J}ζ9$]pGjݽ-~эר0u?nXldo!!#$ȣ'vcOېϼ46B߅'au+` c*sm(CT'/f=:ZOXdnTb͡OEa_p`[3̥ Qf.<ᅸM >ZBhJ: 'MNq"q҉6k C$oklPOkdyrHXIjxyUCb#C:~"94\12%g8_B\t#w.ۖhZ0kp*+lr"_iHA.پC_Bn&,v {Ϸ&ב?g>"$P 1frc3IVJG;4.f%/_ nyy]60ccd H(.TYc^P C8Bm9?a6K&$+;c]̞|k r/46=[a`e{nÖ`e>) 6z}PˠqDkƞyZ+_*H3qkeLuP!FLdiv3qO"*N9+o?u(kYT~uRNxLfd%-TXX^ 7sjirєsJ =7 $[\8*UP$n6"0)eǤu+AHUPo'hߴFڶIk|W<;ܱR'Jkn GPi$qJ=EV%|Pg׺qU%'cߑ&\l4 (l5҂pr@&}V.TaOc%˛I<5jޭ3u,*^ kwf :p1!&DҸj2RŰ$RhiQ1ټJàG܄ԃӰ8@^*꒼sv-%к_Í0!aT GLۆD0K lXp9a׹_"S0Ʃ^I1𜰩Pjm4YCE\UJ@D#WܧY!- 2 J}G'#݊NJ_DũWŨ{&;fn4X!C Ϩ#fJfTP3HǣqДnpX/d ;$reEQ]6kaQ稴EkhN\Hޱ;r;~Q[臠(t[Fuo(oDz~$}]'){5 w@m4Nne| ' .QքlLgVZyՋn 50k~WְbPdC||*D|yFdVxlzdKj1!G$L6&5S|~H?BD#M;=7ܛ=U=3p#Pm0*͆^oopCKGv$gur#8揤IWeSawMp,H`Jh\-jhu8qY)> *mӯ[ᑩX9X XB5m[v+i V婛 N$=z1VǗrE<؄vcaA6m+7[GC?vܖ+?@p@V:/ZpCτPg /DsYWWRRJCoWqȊ <]!o"Lwf [Q"2`;1lgfoϘ!KbHoh~\QهfEԊ9cȷI84ag>['k}Dջmpoa\j΂SOȘgYK+cQ7b6bݹE@$^y. 3\Q|hvIK=NdjzCf;܂7¬!fc‰c&xwWKϕLPn/Yրu: 2/^KO .F,>:;U;NbU2nңbn!Q0Z*7vzô7jm嫀=-Sv'<<;^HPu RI$ä[ߞcǖ@z$:)j>"vXlŖbNc+QNv ZL)LK2(DO:@ޗm:pwRtBByHQ`+: ۬SФg۲}!0tm#xDp/h4S!8n1ћ|838qZĈ%3B:!K54KHY ulen{t\A@YtiWՕ)k^&S6s`8.3Ym_y > VƂ}7&L.V5=KMbmS3 IAf|qOrS%D|s`de U Tz2t d>mɻHPN'jǬTSFQ&v ]tu+2%v&*\ryS\P[G Cyݔ9 :2N?sl!ˎiV:]ClRvO"}+DǠK3~0Q_͛5^mS{ }׏0Z3?y(`VQ&J6T 8ɩnatGx pEU }V -e@0?+ a5Q X~ {ȇW)CKw~k.xR˒R9 M P٤hc4JAFW 2thB9MUs؞gFޢMRE8F@!pnOiYb~!bΨBn~Eq<¢[)&MRZF[x{O&s1w: W͎4^7|)3 >n  eQhF2Oƈ]sҷ|{sa^ʱ|I)xŎ SͅSccs "@'Jψr xLP.ZJv׼\f]ie&UA bg֧{y7*T2sƣη_s [  -ֵEP.)N1'č?%2Ƌ5 V"C)S +ԭR%a!V]9]`jQuj@qU|IyI5;5zH$m`^5!YWpb/IaGFq78S+ EV# k,bq7$иrZ.k ?ařOZCwu/Dv"YL1·L躡рuV;3V9OgwdAc?d*j/?(WT=&('5g Q^xbF r}140;F˚'0%2!4 wBe#u~HMM$ZXϔjR. #&LqKN.X{]WPP$%{/.|Z (a Ơ4Nh7)O7Ҁ.P &֙=?#/_!8ۜ *E6$|b 78;xmX QaWKpv`q\Gq'|r+Qljh$Ur2\5I; .3(@5ؘjtRonX{W7U-Ҵv>y58?0x `L6DoL ˔ZȕO-.{Q{ULL{jQZ}))dŏȸ:hkV5WU(Պ 2Cx&(h˧=nݢf2"N0(rtbF1qYM9[̴2orF@\t9i)ɈHڑtߓ╢dd,ASLy/$\<#xNnZ!pd_J'uC2xn1ib+ s1˾vgq2tJE1E)xB=*er+WԆ/&^EĝQ;PNta#@.9(p)u u^7D4e Ԍ/O;Pӄ8~r:+0QA+O$u4@EWtNC3^fӓ¨,^$zt\=$רihnx̎tɋW'w{g"ց3i-<BϧZAy>x;*M&FU)wv ؊_&k}oP&./2ePEOF%B oX3dhMh{޷04CMSYr}a:-Kb 6+c S#eոYV PC&uHp d,D@x>.%v{o{cT3ciQ47mZpR S@XZu%[2eT睱TNYr',<`ʩ1tcUl[x msἒʅuL*i#wuUӕh~}u\Y7Z&:sX:O!T3@,RQ-#W 1PNM#]2:"EWB*ZMg²^Ol3@|?6!׈W򁮊:A+*__El;6Ρ8)zIp?{يfgQENI-(VK٣r2^ɮw訢@u ۦfKm1)N6.gv:D1C|8M V1W;BE 6@]=g2iÑ[ D?qC#!S`l0J?x`\Wl={0Ow|bt M\c.j֦/|ꕼeֽ K<tvO@fl[uM˶ KE=yt(ܞU4/GID9vx k-RspnZOJ1YBjVwM0͓:~Q;كw>:t!%v<E)RQ=%:KF0(n CohFt>[z =TgOFhdo;h]&ʬ5fHqUK ,f/eB*Jd΅Aݧv=/7ozaV&:sN34&z1"` p~IBj̧N=G@?^ZxbD&.akUTi_b8^FܹEA<2D'K@ĆGո 6="bP_*|8x`V /ޒ CЕCVr{ TLCKdaW& 'KQ_[|Z߀kX @O!4 5k1;о{mWT}D }Cy@ =تǟj􁖥laH@P)X<6}cQjpa%; P&ݣZzj"n]ZzK )ʿH'kH[r^8 cTot؛zӅjd<u<U7(7oLF]XA1ksu oFswds64 e4"gے O"2ESj-Ig3煳WAn] M[n+gνDއ/ kUZ&ew&5=ȋoj؏g :,5ҽ[&&~>Z]LY2k{}wSYׄEЀF}){_OR*g*ߌ :uwWFaor}Fȁt;u)_~;|W\[?@W;25ᒷIVEQ/4W]+NAJje[,&;W~;e! *ӏ4YcāP[s;SG ۀ 1>fD;qoONgK<kcЗ>¨z' 2z\ᣗM4C.'XfYMEUXAYJZ5l `#E)SPy\ig~s_㭡.1[B9 ]dJ3X/Ht?A$~_-da> - "npH]4i!14$xj<~vP|w⃾z(wQF-pV}Wj.H>8-ʊGv3$[RJ06Ie\e>w^fͮE`z-/e 崿 m+w:K/b&)wN0{k$HQlb3qH1(و2-$ss\Wlj#y( qSYY$AW1p%# !-4}4xXۢt1\؞i oo<( <11?yOen#*a|AV`|EqW5cG}1%G<|4PbٹWcXQg*W@5aSVX x)dž& "&<=`ctw{P#%Ә\QDtIwX ZeFoaup$C>>Tʏ_`mOfOk+\ ۘ&9'_c$M3Gv+cѷ=p:B<1FBj@V!U<CE~K.7 ^DΡ e,EEhLi)-O(~I C2LdGGZ5<+~b. <:|-y ƣE|n".^Z=Smn&rflFc 0? ؓ*s4 Yi>%Jy5GJ"ëuX[W)Hb,'&U+]3O^1+ċW)E~Ca$USVBz 'QC]l6N ]$}R5Rݲ'uGrRƞ~!=DYtSlq^DQbBM'Zx薲C=%")rBFMs;s&m) :4{ *RoHX a%6UಚBƫO ng)شk,u\#;SIR-:_Rzt0Cȅ&%;ZjQy־ѤJ{jR]ЉnS硫T Az" x ] l?s@LKj!lgKޭGڰ G;y\E7/`cb-g| DX 76޲ Wz2 ᮞ<@qSIцu2fKM?U[aSt RPi[xRꚅW\9 / oF}OXà@[MkCq}ts>]4xkpx9γ|FxLWu!#*>}=T"l38gphJ`B0 g9LyKCNkʔR5\NL $OV[@R( }-T` R{n]SEF,"A4>?Tkl]6c<*NȃdjF/ Dͫ`_I817r'** KTR֌6VXs4X@QdUwCUq ޻\sؤ`k;nɰUj 󎝹/UgY_M+,}䕸Tl2:W=gY5qۤweُ8̓6׵.ipV{puDwHʆ Z04BE@~~"SuMnW輁e1 m.-w)"[=_ц6㒞VhM iE#3NȞ2 yYCOgk7o.w͞fLszø}>#\!!zݼLm/ svOgYο܂/rH@a. bК3LwE,0s)QJoUj8ڸh^;KEgGF'=p}HQڿ}NM :1&*^Z*y:nHm.C߄8צ!5`E4C4Jg;Ή쁥ȳobxʀ kNSSsb\o5.HfܻX`QK3|W3Įs5/w> SlU[?z6p4VGhogB 8/K{5@t8Mj5sU} t1:nj1l`1BuE%}:Z}x$И B0PsQv/xQV=V]mȲtp_zl2_MU·"*7ѸR%.Ցr5,w?ĸ9=и-^G^3Rs.3|nE,)DŽuwN~ʎIxDF6tB?=ǬkM(3KߜG7|`,QPj N]Ĺ6CO tHVJq8*qc[6VE]KuPanC~cŶDRd UC2$벪Q5 j˔`` W3{D>V#|u 鸋o;aWpH{!h6iExhLk)}P\F5-ܺ(г. @[qP]}T5;f0A;Eױ~6]ŐP?D+cRFPp"shpOϦ\Úلt}Iey:fwfLwx84p'JkoEߓS4-1[#z!:z5#zF}j=y;ZB:BtC޴ ;j4F׉@W+V)|'B(5 DM Qྡ*HP6+N_BA7LZ8ZGs~5.r0TpV=іy>}l_" W "+ _U'Xg1F1Nt"P5),,mbkn!0gCTjLIy*ZЙbOA4PyJ;l{bV1.fm-\Yy/yXcp!ƧhXhå,@h*A>n8PeV Tmk0eTN&.=*j ^(ldb{~r% ԨF۰tGtSv' 9zXgK1I sX!5q:7b`cr #(A"|Mc_ÚPUn*!1 !YiqlE0O<=9Nar~/+rkUX]3cݾ5\2 {A{N.6Հ=԰O6V/̨ BC@i Iq/[&Go|w 3Є+1D̎2e=p9!!}$OȓNXSbI795`NB[`i59K9bLvyS @dYj {:0I慗TW}0zz##{L'k8+u2_QjdxFc{٫U]8G'3rîednj׫8$N^SgL s n'B V m}o0./T \UŁO.NjE EXU}< &{h4p+Ԥ hsjBq#MdqGGj/bcz򤵵UuUuO89dZգ:,wii^G Jcbvèx[n?XdP|\&VJurz(2[OP KXԥM_dT?mX;{J=25b9DALI7JҤI伿ft0]"4u_Dyh& #8 o(M@4;?YI$QA/{e蠱I +q# u' a0̷Veio]OEPf]̦:&N5 ))cssu(O*mYh&fl*JٶU_L'gY0yFIYٻxr-ΧUc;H  _hd,"M񢣩MtO0bxNWe' CɣH#hԫ/ fxGճ3J^Ó)_Hv4AckП1 v)(0d%53 kG93ʅ(<3(%XU:pAN36sR/ ,0NjqfP/V c`,W=0f}»!/TK$@+@3ᰊq%6@R*~c u\Q.JrB>q͌zq hG0b<};Lzq9TZsm-UL))wYAY?_ fnjެJ1O6̆sAk( PU,mܤۢtYRENEU붇5/ [z$<=xd5LQJa{>p}f$kC=qިǃYu; f"<2ܡ뷜2 SwBI,>"WǙaSULl2oܠG^Dĩ`~/jj rýkm|e ;)$aAYJQB$aR3`M hhѥ \槛>H5 7ɸw4(tF ;8W2NfΫ. ,A@R1lG9EG0c*a[6>GAFYX-i^$'%ʩz;zi8!%Fl~y9mA/-[ytmT mײJp6ݖ>P p]I3Hz *A2D8#cI#3 ԎjΔQ.%Xvb"8GYh'c~*l^_LYqV=>*.#4lm8~>&X8J't@OaoZmj1Z7" ,}$e83t䜫]j ij*_6L9q3vĹa`~cl`A,%X?Džag(?ѭ<+y)䦼ssUs>s"̦F(L6Ψ A%$JQu'ŝ\ /5p(Xi:8g:Arb2üKqH~Ŷʔ#UJ<q٦`vo IUΠ!SbspbUp_Y*Q4&Ep0wF ;A:WT?"B.HHb5\Pۃ'xcɞa!@X+m) hUA02jHOgCՊ}g0o5?( ,%>RAX|v!ڍO@;\!N| w]r(Xftp-+^ p`@B>gļ$&{ٟO)٢HH39t9{Lr]W3Y},<^7jgW4 ;Mgx1wH>sNZջ#RM,Sa?KO8#wѪ GD[gN'U~ae эFV@#İ{U] +bw߁0H\fMBc(#9,so7~e0]:!lFia.Nˠ9ߧ$앏zDZ-+[kLj2}rg ^Yr„n;-.67YNyW7$/MK]pU~lMDYȋBAC ䷷*zE4M{ =&sw4l^HW(v SrWp !W88d wm\n(MOrFE/TME m;yF]#QD0gw͈I V Yb|K<=;ne,m|JBi6.ɭpck',bIV$XuuJBs_j5`X H9a.>|\20zg~ F6mu5Ys +7~bx ysƑ2Ud6~.uȯ%G5x6pd1@%["k;oDk'ݜoPk?{ # ?I6EШ/?*c+Lގ>FT|Mg+`y% q\՝ك~\釣SN|g?[47ɚӁO8:k_v&1cJ`$o6056/ SG3|j qY(M{ժp#eeĢ+}M,;Y 8)C;̠h}lղH.~K!jx {:nXEuUuܹ#$] O݆3/ F!>'8^Tӑ4 k]d[&tluͨ,!=U+tDFF]Ϧ t/l: hC+g#MVnYK%@VB;\oj1ѫD=uXƛή  G RY7"^qfѼPy -LdƜ-{g).8Ί[wA~@ $1Y0P sL*&Wk6wA|4&uBy湂;v;{ei&x)DSYfȵC$t C#;J+b6r>|Qerw6}XXnл_zN Gn!^̥՘R~[(#f_T>>L.`֞ݗ9 &Dz $g 攲h<.Yk0"| (nR!F쀅 R?;Ɇl:(L*r cv~f.pԸiK[%q?$*t Jב\{JrJtwD1'Q3*hipʻ١LGߠԖiR.7OXyz=aPcUޤ}_7Nz+.JD5хl+|y_a4JTa0Zqqռ%#a4uPW5bF mpxMFQϻwY?{Zq1SP(3oTXf\`|S%I }醚yD~BwWL5!%M;J=%|99(d'/T_#A:{7Ph`xv ̼r'7ƕn y&X_6 s&}xi dOɜHɜ4QnC c8DР5 ECA|kwq3nPrRjW z>Ŧ3;UDj9̼T ㆠ.gZc`\F݁v_b@4jbmB)vc پ <I0?ykF/7Hި!) TܶgR}z.2233usqLnd۠i⟆1 Ca?QB&c1ivLט>EjC!7ZWq(&$i@r<vD߽wЁ0[_l:/]m[4mCv%UjY `0IuKAw}LKssVCT|f@%{,H3THqjL "z!/nv׆!̶[T xIo!rI B,aUS*h"5AF5.J0RL:dFameIylfxUչ'j4f^-%Ktn{ΤpJ=i Tu(eTƺҐTꔇYuij=2rywḧR9ekuRvF5 LCwֹU[e2/*Xꓻ"Wkv >GRJ4mzAFsГ?G.(j9tHΣDtZ0<8}M2Kߚ+VbAJ-hg~NZ/my[&֘!gR]bN8#ši &c(?ǔF+U0"Fp0nL@/Pm7Fh[$Y]^nj1CAe*26~[m'kOZO+^Vc;'VNEYM $d͸f ۆ,S ^v-:hYt7RkM4{:_BvFnȯT0BiĞv +V~XB}~t8 e[@k7 0&\RN٬73 Z=f zqa MT׌|BBLVnB˚vr_&L'0c "\k@x2f NRp0򢺢wߩ7z`Py U-A0F)>MàOs FzLʸwqC RgkJ mT!ct}?[Fmnt:=8MƗ0$E2!AAQ,9y$4]+dsCh7t2'=Xտk=3JC P@[i\dr6.fTJg̛XJH&I"\ԝ'kZ&WU.؋qV_;v{YN }|%U4tOe+6Agj/8m@{r% 12+odMI kIO.,ރsם&ELeTJ5Rf\:DVp_F~&93f{J}.cpXqp4C}Ys_˜)C,l"aYɃdXǟ@\`"}`m2`/5 pRI}sFB,a)} GcAb%9,8DѬWUyJaMrM~ # bT1IpiW("ߑ "[014$ x sٖe3 DA]떷ov#tӪҎf:]8nϹ~fj+; CcV[}1=p*TE DENrẍ́L5ʯdzcmu]PJ|z(i(_7OֶNsߕG瓵Ǒ9ha5܉~5eQseh,_q2]Hf2έVzC\ BW(_UdQndp$.pr O{ k൬1rE^9 UZ4gBY{d(^7x 6cLy&?c4Rvv%J;*GGcWe Tdb@W)x|(X ¥Kj]^m ˻QK%Pu*jhMsג@&`FظvCvB*ΜمFc`|ǪT:O_"7`B1J0  |LcXQJaAha$^U8BF$ 8UՔrI3<Ǫ;pӏ7P vITZk0 p~7]&kFQIGa4IJ8"өe^Dժ6jĠq h;yŧ29[?zw}pMU { r!H^te! Zj3TʼZ ƣutru1gw`Pcz9bUS$3yi@ ” 1W|a!gIM*;[twN.g4SaIA;yC N4/.Ǐg$A,xa$vhܳ3kb RJl;O-|NZ:MN1 >_ >bR6,~(4iϯG]9>̢ !lR,IVv:2Hi9 dS "t"t< _.*xk_!@hg1Q m֧$ߍVʼ%#OωՒ3xEMFtRF9L!q6SW)>Ep8~KP 隐 ك>8sT"@c3 $wq 8>\=Un4.GnZSl "zڊsr|PvZXT?e 1~l0gywGEe9PsuzfZZZ:vBI =)bGʓeyIMpqbPnvm}mNt$=4_(M;'0:Pp9o8 B 5wc**lGNր bG˛Qѻ{GGoN_{ gnƲGyM,J^ *7 Iq 3VZOi|vjP Sx<";H?Ƙ׸w(S$4pǾke{'kų::+k1Ql͉4\M5ZILRiKYU[, 8eWxY2R h:VLrCɮgM=qrK-Ziw,({Ee*P]'T&sGP"MKh ZƤzRe.g8V~D`OŎB*h)hFr,= snrNh3fUj>hu>FHn_S)3J _>qY_F;ol"-c8vn!8g sX d%'J)L1 ɌˬQ a_*Bb_”>Kz3{;a[ߵB)+[ 8_, HȚe 99FGsgHY}>fN%Db-twsM 3HGyUḰQ y+$7e'nuQIMcYWn6eFsQ\;loK#4-PCP2jԱ`6jͲ; \,X.{ꯠY8ֿ >^,I5!bj%@%vӝ* ֬jOၢj\05C+AX=3!15#sNg+)fXXJ+1rpDCGΜm u䓄/X:J1`B]>ٵ|jD|M`,T/ow*X0=e?5h&OهH{%BD{v&!eSr{bx)Ŧ# ǐ˘P"3&gq,3TpT0D -9u9{-@,JWB>OKD{N*~M@>!vTlʦ{gE$~e8k׌vvs{gkk ZkHjz,VLxv[A3n($Sy8)UqbS$A= Y{ew5? @ӫ;$%$x{x֋QsQK47236%;,nbh꩏AD;=/; %ecؖARˬށcATqHj1eO ' U*>:^!L3Z%J c͖ҲUwXR?znۜBJ.U8L;!vOk6g|/MMAoڏQw/-ہbqVL;CԌaJ)FHU{8ϧ `D!6G(EP[OhS"@Jx+jm@ X c'gp9 `+:g7BPys2 ]Qr#{'϶hYlonL7Ve#+E)ԙ(7 چVTP,_m?t?qxg V &+!H~k,`j{i@?ZSf7vgk]w?~ϫ;{{t^g:Ļ/꽻uyޠvحW;b_~'uv;g{;/4q᧗d{Ϋgo?йzwel+xg=9^g:ͽ֋Ӌn_~[O:Iw֯/_>9&ӯƿGoz^aq??x WO]neO޿z{ի7}˭l>O';׏w;}W݋͗}$?x}|Ya޻^_9xyvE^u:G;/]jsg7]ˋi/۳l vݝNsֹ};bڽ?K_}w?ށ_toyp_χ=aջo.'ӷfv뫏ziQ'W||^MY j%)t^㰘\/Aj@o6wL&a ZpAm=5W$zN Qu]"B9p`ǙҮ8yTiit 9ܕS:_r d؜6mٔq:Y kP *psENHe>ߏ)P@A1POs%*Nn ~Rb&)>1@GZa x+4P׃X<'8aL@Hc{igc0*  M:CH3GJ* @5z {h"Fuo:i\buu7+wn~~t9<1T`|;HJN, U!I?#nOcD*Bbq)&e lBx f_1W;tkgWđQF^ g}4G`)@8`t~{v(ci iq쿻 ejriafL7IƔ!匵 adII@EOiنWJ훁mJQЬj[ϛmZӖӚg-"ZD<|XD!Iey!_j\*q1Bn2cJ{!yUMcW% 1Gx'WDA/]ТGnrK:iДYTv㞧vhY| }<&@&gšQrR"3p()i]Odiһ,du %= #qӲmOx<{s@q eR9cl\c9su:aז]BbBZvG}+ tUIk,ZBEǘRx69ZѶ~ ;,ZÀ.t^?cU.?kg([hE+ӀdžUap~sxaEgasAw;֊;0P~ٽJz#YaŵIvGY7eI}^zk jaZz𖗭>%Aj(UӘD?Z}JR/9iС% o>Mxbb6㊵⍥"ֳt(@7a5"&;G2A 䫥2X̩"vǛ|Hl"⫊XDB*Nc#ٻiKo%wҍ5Σ X97̬I`e:x&0xb4F= ޅݳ_g5`iH}Baf5+-}vf9Y#kC,W`dQ6>pM r? owǹ@Uw{hϽӮMpשxOGZ"B F#:wnǫB *1W-P ɐ[ 'N iK,_6T< f)J&!ZEKTZPBL@]+9g{%E|xfowѢg_=;~zv͝yrv.v_u{h$ahOKFqKz/v12U g1m #Pa ˳qXBnu!Rt3T6rTwYћ Ď 7s]m֙(jL)kbކdVz.Fm*^4 'F:LvOsiq 9'kva84T(K:JۖT/shm btK*hDyKO"ہ }j`C8ɮ^hUp¥g.ALA؍Q; ;BOǡ^&="<5&[ 96 is5ްo%3*cn%R zήd _1,!q{Bibbn4%_UJgm0.I }ɇ1v`A//4Y*`wHΥ/r3LDs۔>(GeupHRF/!'2Ko'lAIR R K3YMr*OV4B @(NI3 G@|^n8ɚ`ݾ"$@o B• ~YÒsq LbM6 ^Wa08 ;z݁_'_nvڝ-<_lww^>~gle{oyX s/h-0g䉭nIEPzbA8UvAkcb$YC߫D9& YLxG!U/CHvj6$.}oJ'r[끴.$`GG\vg=J*:HjYx4i8 PiLpR啂b"E@YҨ=lL~s[Aa"\hoQ-@^~p $h=@Ns\p`vM#}NB:hY;<" hJkXp3 Eh(a%Katz0{bEk? ?@.9#S_EhɥPеau6iCAlRFAd&*$*s2'O&Y&Vͧtz݋,Rje[ :9:oyj WN1t0΋4lE rGm\eAlDo3NhS`DFdр'i Txk]m2$*T,x 2l=4?MwGk5<(೪QEyی:CE#EvԆyI0jӷJg5Xhg߶3|1qnݦQ3h !UJMȬj|"lx P9uxDn̑ͧYDrVE`e?]'_)ꞔ/N"AK rHoA+M3[1r AE"sbk$%J45۳e“}IHbk7xy|dAc}4_q}3tPjTѫ_"?e IʱØ*GAv^f7:xwU闝`޼M}ӟp[)xͳ`IzS[|yS o^˸ThrW;uF7^ZI#LSk12ő(%{'QU&6un =IPG^6Tkhp>ؓ1A`\P*_2C1\7z<֎{)z= aۋiM$?D}lɆʁD~k*aWS$EQ'OdF7_I(pٝ%SjɓUt]n6ьv.7_ZꯛLzbUWHeO2>V($ I>.wC躉}ba_2_77k[v;jC#-8JT"% ֳQ^xu4u,RUpa,2wSC@F([td異AL&$(OJ34a0Cr;Y'XPdS}DxWGlG&I΢F+de=tgpS/d$ o#rz)( k5A| 2+G)ӥ,r7XocN=3EIJ"3wN˼Ib\:ncqxr{Tq{4쒂fY??_H\Lx!0 kHͭ8tH @n򁕜fA [ s{#%P KZR\sNH\)M,Nf&\v$!%QP-,çnM1jzWe0Sb;*RE!xlF{ak苟on I}? =8 bEWfYЉtxs>RW<$N HB VQqYi.`ԴWSr?*eRgXTBX$ -\ɒ8F8nAUU^T{XjN|d,\1y3[ǫ5e/w|l'M.ClP{m怆{Ӵ AW:0?u$=rٖAƗ.B.=F Av/qL~I:dڥ3R[J!s4,lq i Ƈ9XZ`Q{68˾kY_(UQJ,$x~I)AYA \w:"7=RӔH=T5Ǖw%X0`иGC%u_׃bBDʶvz}!VtHE($Nj"}Éζ0j}X%΃. sJ_EΣrH8v}a2?{7Ln. Fܦr:D$҆c_#jG? Z٠Sdy82jr֌t"9[kO֊ XkW(*kע @&g+&>KV8=xw4o? 񨧩 =6Wv~\Fs4CΔaaГR†(GMz@Zx +o@S#ďg2Șe\>Kՙz)u%\ JƺfM|`'3vsS L/s<"&xv9`Mp>pW#5M*fdσ8ޯA% H  ;av;Oc-~'Ÿ|ݞ$r+cG߈̯M;ܰgìk*+YM,'W]}!24(rk ig\ZMcoҶeВ gk.NagtbMi$V3(N$!,ک5X{O޽;|9y0|,\'*ZB^E! Կ (RINfq׌\v-b[ĔV;.dլ͊U#%,#,[Aa X`s XfixMaU90PnyW4DM.Aع:(wb VTD}BS ]d@9͛:Xt\ߓ h~V*'^jfce<&)Esٕu n .%$=8YtE&ݥ aN'{ryc$;90RC+Dzlq?ut+ò!6j)TtWh>ڳy  k3?雠ܕaeg(E<ӓL*MlI.bgC&Q|zDLp]UO<؍UM֯h ˩T< |6.eokp^Dr\PB;Գ77 b$&lA{lR*O=o]J"vv3ۖ@" i$t~YIY/*٥ߍԅwo<|Qzut&d?LP>3%G,S}*pDmosv9C8B%L v9Z F?Pai\*-6*; Ugi9cz:c֕S&/*MޔyЕ3PYUI_n8ohΟ |1bd唂MaO ~͐ EXB?jAMya#jpOAEnл'@e^E)յÃ| ʵUkp 8q{`|̳*Q4$)uԍrEzE5.&Rfz9Z -W L=x@C{> EY^b]fx{ve@MSNk V@U̼hY4s0ZMJ/7 e=i7_iB"ƙ6P$']пH=qp2^=,a!+94 0Z(fi9\Թ`_.b vOKBA.8;ukaJԤa,i4$BKj9hl}":zu&=41qGŤ8FMʩ*w=MA px؛2]OGs#)*>*BśCGPFx|Av>.J/.gQy5ʚU3Hgg@&yV\KCeTg C8{fmw2 9t\#m%k.KwcMacu&BزGui&i4=yck*w "5I;Ki/8nj]T2g0·e}[GW[G}cxvpʽ7H<_됈K~D#1|8\Q+@? ܅f1$yT.C#-~,,=4?M?Fa}7dV kks|h+~ E{"~UE+  58;A_,D XQlcM!L'T爟 mt?? O- @pt4J59GC'}ePf0VUdDxRv#)h ىf'kUx #*]Mb1T@G>}fQKC7Ђo̎ Rzx*QT0|q Fw,%0ґeLa6Y+Whё'!NP(r uK1H.Z`EBf !Q8 ˜+ x Zr9#  \<5'( % % LMA_T*C /' y&H p (̼-+9e.$TU yb)B9 xt}AQ_wJ o@EEq?g:W b4OEj?y6 B`#txC]:?T'^Q Hٗ>zI +AKӦy9KyܯJk$.k| /~ h?o: )+Q嵠MH3X 2[n#JƬ3j]\6 _uZ" ,ћNp6 ?w; 6a+}沂,RA06t,c|V⨐es~Z^1ĽAT1b'Z79& M4ŞxփQMf[ z*bR|e2/cye< *OU$BMۯ"SmnG/|n6lo`zz{ ivO^7w/Γ]yS`=.~-1).z{Dw5cDdW-8g g_6gE// 򠔅@͛N䂟q `NWY' ^+MwO=gZQ=4gpQ)o{x35e90I'9 !mj"gα>{Nz u_' M%\wǘKPO d\W JV=:o$$NèhIsj4 p;K 8jU9dq:tjϿ td0/ylN.uC>]?"މab-dca4Q+wG__i@ak. `2sA2@rݸ_BRvEAسUӏƱ\#*~!Ժn‡- ?ٔ^jJ%px! 1Gq+mO(IZDi Uכz,Trg`r\5G7HYA=ڣV(H* Yǜ bLV tG+o(ymI,i!T&.Lf-`^v؇evӳDI9Ϻ N)D10^Z>coSP(|.CלAԭo`,$H`QzEb\#3Ύ00Bi ٣ P,Pr/ nҀ/"T2Ǘ0>9>)4:O甕(TLQDK Fot`f}!S }%PVz>oVYrH@:ђ^^UQ%v@dkn;q@}EE~Y(Ux}{WO ^ƽ ):)1\$Ei{{w} x$"4AV NTh2x@ڐ4Lw2$T?vC7ʁU£hkEp| [gv\%0|Khd . 7xyGBSR1~lv:3Ng!EYsTBhd4K FC[*bru 2v|~lw|(~vpLjjg!q#UV{Zq-]^u& R7'xQg-7 ucʓBB:Q5xcIxO` uR 2K|G0#T"R4Dz13] YQlf\ y 4߼ʛ9`D<mBƅ\N<0BORcq]hV#8(Ii%HL9D 4ҨN8u3#b> ,L%ς=lc~8 SraQ墕E junRTjGB<*Z2̘-w~3T(n)FkϊLcvqSy.%Y 6wq$( Ҍv{M7O* xf&`˪[#*jXeo;EA}κϗK%u՞!Puۦ_DE"Gaƒ3 ] ?9' H χGh 6l5IF_(Z' >¦oIH!eH$oa+<[f}%~s%JIU_9iך쫀 |K!W3iQő`֤U1Sje> J'wḅ8L G/|:~.Kj@(;(fz (y9+7C!WT۩  GJԜ)yM6kErINeam|:[yh 7TkqoJJ vyM|lՑPHćJ\Hl#|2䤾g)F9=H7ajڨ&К+'>WI)ZgJ1:gͭer+ RСv7ry(-ͯ1JS0bpu4 4ҡ~VV_D?g-YVjP.#LGt=ԖEiKBpN67ABfsu]izpN B `3):Rߊ^/2Y*KnA'%!f#]s ݼX8 ;Z6UC$)yrGFcGpZ7*̃{}o|hJ!osl5:rͶ+6&t߄s 4$2cx =G&Jǚ.ƅSjn$Ca>ul\xAGnSe);{yM*yRlǸw*@F΀`və=FnfoG1)^6m{F Iy 48pOz1CbY(, %p@QzuժyZiU*5>\P5!:v1xLSqNb%/0\Y*?@P9 (YL0 M&AV^jvel"w UkBK^vFwl.2@a$!*܇<~iUj -Z{7awDiū [a+Yѝ [Su E= `yg"^G<@ciiՔJ\$ԗpc 2]Wdtb-a3 >-1hfwbs~ v~c!Ws$]7Z Io oj@z/VʜL%8}"[z*YQ9en>s #rBb+j͠,@imKEr mmHn#:kpP.v+:Lztl^ *8?s4X[} 8vYg VdbOQve>w T䤚h x oP28DNqx40B4gAQ)% Oh3uZ$EZ#6 U"p]x;7#wEa/kU_O|ԽlJ}qhc*#ؚ_)5ފMCqb/W|` .PG4@IWPMvj-稲*ȃV]PQ͔kmj17YIaqi%'XI4/[-8W}Lwt65{ oK"]s;un*ytkunyQ+.X\S\Ejum7SdS~ucp椺ņ3\ wzإW9p90n{a3owVn\<· CseܢI[iKM'" w;Zq$ìO 8uPoWkxMy9:A{ϻXuWWQwB:;?z>ڽǯ4YI@a|O ,*=A'?O-FY[y&Cz@>N4.wk!n}ȢDAaʺG6/b0;:MJIEH>( IMbIDvcpTBGʹBv\xGtɛLq?7wq<wq2/`6 @mv0 ޚ}QŻLR䤵^z+~>՝G?.[N]9ւ0!4Ꝍfk?r 侁pU T+cv0`P.&đ+,֨/ _9#H6nX=K%?ÿZAFTTg:`B|&UNy#=ՐfEy`r*WmD$*Zҥ|Χ)V/XTFqja'趦Pl V(I|,yYH+Q?plhc7OtYrs04-ܕU-њucX!!t}J ۜN:UYjt?vTTL3ݡZdM>Y98ź Pҭ'@ .'bs}rG̭)KuY9o{_(yT×o4KuI]hc*RC`c# +&S Ӯ-M~?OQԲhs[7KF5{^wδBv }|fi0RHSQ=YmB>,Ty&g-5x5q"7!\hZfH < @IHG)ɗ E(*EvGQT{叢o= GnvSްQn7].'NTy۞8Kox ?eQVeqc}w )iJo:* wXSH?9#ϹX wAtT륔Ҍ'0hMF;;(Vj q뻩!`:uSoőV*DAbbuX h6i@*"fVy.AڐU fJΉsw͵at)dl-hPw##.%ĨN {N&RRcMIj}U3 (-"y;K9K4Ea=+*zwkYg")ugG@7ل 06.NZa-JK'qYĐC`fd@8ַf"fEf^`ᵄ-0ߥ;^0J6- w̬5.k7]I%{L'$@v3)X 3)cf tNVm$g:}Ӥo^yӿ1ϋ952 #{By4ݱW11$KZ֮? E%ɆBGAhnd>Cebaxә$Fe/DΙo5GHN7%"AL ݝaIrZhpFNo,{ʷL<x笉qӡ_wEypS`:J,O[kYm,MFnlj)(PB{,F X+"T(|%Y4ZK}؋KbVw C&3nv0ʍzwt(4d8D('vi-F bգZUH#{LJ^ߋh ~PבztLNcUJB}"꜓n8_1r OuMWGv~vRIzgaL %:8"k*K ,IA6r@54:)cE+^t^~ɹ]ʚ"R,77u)bMa7f [4S0}HԠ3H4ؼSx_lChFD!RM*xMh ;$CkY{2|<: eN6SrׁK dڪ8)M|O ʯd p`,+3Ҍ#& A&:i/vB^Nx36ɓy?G`àΦaX z{]2qfO&?O6+|s};W8&@7hgwq !ֳh"?cPBn!RlA2M&!>Q`hf։6sġYZWPzF5zevxNaJ3e9nu8'Pe^ZUs]DŽUI$|_M,b*w"֙|c$dbr(3̿9L QloM#X%(~6qdNf\IxLT<.sfe߈jD:YC‘HIPQl}VǏnrr b{TK+b }mպ^I26W>XL]ZYLUfQ 7N2rd/8È> /Py6s܂9$w9(7+f4VFxnmhڷR_߮$W[*$\NM}qȠpѯ$Lj\UGc /⠓:Xq9oxb)QIi:LBN JEnJE `\ԅf ;ߤ:[Cͻ<@JH!:*Z.$#[^閖5n@r~o'i2YS'\jy71$@LљCum^V㛀8oDi T i p!;lCJc0Nݿ|yd̃BKיpӉ'B~[#i"]ݯUkƻ[ kcr^KoG+`\=X52,)QVn=VZAt4#f;INb7L]WRb,rJ}U.D;XEZg Ӧmikcة\//p?:_ڝwP5q.Ne霬ev6V>` G_rVek4JP*1g9Q~x$Rus`oǝ x*4o&a<'pPUOMMa^ME ?ɔݡ丩BSG T`8S5a-l +9*0э% Eb*vB0ag1c灣t;HioGVg}{ۭX%o@8ltH_ܸ+#cH 6W=c @J#CB$:9ZVR:C,p}L$6:~0W]+Dv:gءcU%1k*;T v)&PkAYׅȩ.[$sbUJD T7q%h uW;N~Qڳ}@#>F蟇~lR}=c5 @Qg8٬ C*gs!P_5ƬW=1G1k0%h7pL0T)gF-B8[E["y*iWX 0;cq]m0TqEtv T0RIsŅ*j`4&9F%S᭄ӌ!1yY#&~*o mMd@ SRIfci[ C+?_[JwQ3ɫiHVgaJ XBqfq(gЎ8qY0Ϩz\Fo3/^KKڶہ UtQT4pw,-SJR7NV%77D'@(dB/9I.MS99W ”0A&hDr e j0Ʀ{Du^ًVDH S4V2\_4̷@9 -.6ì u-x/^ڟYŧJ?ٍ;kՆ4 &w0x/hz+Qj7{UɄh tuRt#ǎ'D Խ'c7(Vj;_ڿ9_(0O'$5_%oNa{.],5"XRNw&遼ʂE+΅[Kvq* N5lw{{g_YdԸ7UB-OdN35cTaVH\gn ]%#;tG2M dkh8 f64Cxm#DmVM93Gj֬]C5B3dT=U"aE:"  |]L:NUx!ƙvB;)e.Yoc}3gxM`u4mSZLR MF3v^%8"P⅀7#H>w.~<#].)Ac"N=xg4:c(Ⴭ!f.8D1GECZ KqJkNf)ỢXy|-"`bOen&Byƪ܋{^.Iu#ptb<ҒBe]դjs7æuxT6T2?|s<$9e-VomoD['m{1(LC"TUp#rNdՈ|9# ;Ct20Vg\>%+ -t"QE1rmIqpx=OW0Pm"<,^@Mj|MsBKU71%a8g 0x);2R߈9&olJ1b$.bb \fiR**yj J糫(>b.)>4HZLR @g;;t,L6zLAUUNUguwpCߏEᰉR{p{f]{(+m>׭mEY6^|̫3ZdwOfVڥ#B}A>{:ᏁV92/ yCҒ ;+k=5-Ⱦ}sFQqI$k9lsIr^g]Wfom<$2E0Z/80F13a$S=`5őɵM:.0l̇R!,c5uA15וUF %< ԛL9#k/^# qN@j9 !@%M!w @3O@K4 `GY]D,lR'1KyղLV!Cc>fgށr,;'.[7*ކ|UrQi܇I,%^1B7> s8Cv?+o,HS0=s}{*#ߣl>0hb(q\0zn%ݷP g&On U-aL+<`$/(M.#iGZӘI.))'nQ <,KҵHՐ[]TQ1@dlZ $wt(3ˠi5LY5 he9'2-_Q4Sun1<# XGUZY_Đr))f\tU&),u} DT(cwŽz>jd~Oz]*ѥI&*4p!_2!̠ytMCeU(Z{o^!s48S'ab (:/I]2K[0&C*C^i[؍2)/d^F2#>!:u"Ŧiy^Qܻv" FtFQFT[~V;z1{l4xU 4f{8;w^WJPzY.()Uf(êɫT1:YA eR`aڦOLˮٗ[e֚v;]Lmշe*bͫ|tjJT_r<@AԼp><.Ӳ}p\tn$crP?jPfLl)0f0X_~;6Q@}c o7d/Ⱥ|K[4}O%$JĦD1Gnl ϽMY5 PAe_)P+c[ ,VW.ZئQ01;}TpdH`'$CկʻuF0e`"T*Y7@ˆ<2:@5/GwFU+H#hpMS+[éENN-pjnpjlVE%85s59P-(F5%afi [hV֠${'F4>;JUޯ!c.#2KF I/]>pcw2vswÏJdJeX{,:\Q0ӵQ69n0J}!V;U܆'H5cD,g?85 b,AdRL,q#mo?bpYt59X:Pt;*ٱz;;LAM*9`FD%ȥLLrrLJA&0wduSR]L /%_wAݵ˚nf:uǏ RȦ!_e{VҨ[,-ɭUy1r$]ř̅8MCmooS ]9`aB@kq4z1$M[؂dYer}QHd̠@DY ˶~͇~QTvJz AŰ\2֬0Yoϡ|̛HaNT |ʌYJuhnrFNa<y$)SHq;Tp!_DV 'sg'k'kZbkP))Ni)S;qv ' wk7rmaV@]yD:\*жjBCܴkm[7`=:,&rjGrM^ża#;Xջml6\džd;nLOmx-^+'oxxv3H}1*hn &pyJa5{tI 'rXʽW`Z2ER߾+G_ZELX 6 Y Z(D")'* =A`p)̲rٕ5̙^2sqOii5%⨂GޑER6\l?5 Ze*x̲m:Zt`:z;E9?oFmP~5{Rre[$)|xrL H]=?~{͊WMS,p!!h**JY3!'F}!vG ͵Sɰ0H!qosIH@|G ܷ.TGDpd~r ^ {5{W{6O6{WDrT-͚ACs>lK|$'k}{ qx]]AraH }VȪ/žA,.4YD\TM1l0r(cg/C`+gM#n$ڽSĨMfmYkjUAó7EİYU)[?BdnGgM;*fJR2bB!~VP~=>%Z%5啨bN1ڵ.VE[ WYFkh xD[خDG$9F P1?,%X KW$#"+ )<;ksal_S&J MUB)zfC쇻8j}lb~lS͏/K)Յbd" cu~?fslH2|X](v6I#P,϶q/g{zeUȷ)x:Y"GJe疯_ҩij,lCGc)1ǁ)==DTExs3<E\]]$9!D=ZEC ʋP r^"۩G߸f]hJdYa|  RWfFhh<^ u!C0~'lʓ|-9I$4(3sBEb>He19CFuJ5X<ڨ )r92zC. 0oOIHM&XS${:}!6 84WnArD b$ƭGc훣atϮ򨳋Wdx(a$TR_7*:q)H#V+sRҀ=|]/.+ `Wj s]K]Z VTW#;ŰF4 :KܕXWەp3G7L i0v86:Zb&@!Du; W+^BDܻ(ꟸe6}sN >rO}ѪE-6Mzwp#hWfID?SvaaRHt i)qCsc5,xE,JN ͐ /SV ;z6nPq;:;qM˻̾m_f@(Y?:~|Qsy{vw{հ>Ob f[ـX1O0 ǍG h>v ao^Q֬1Z}SO^r{]yɁ+*9J }x4#R_S/W]|{x繯 -h Loi(Y :uF77e%l d G *W<+,2rkM'Bo~y\pQÓX į.<*6XkhBMw?h́"!BL?@kJ"CuP81Ag| TD߽]N?wSDEqv`k(w_w_EO 6 ʁ:Ϛff=MC1- 'PiauR'}LrpflNmj| Aӳs@vQگo[DOkL9ő8*lޭ I Nᶨ«B91:/Nr+0\JVwi_U*ҟJ[&A*vLr*B."U">5eB X4? QD"2?E&C"rL#/!rg\0 *=*+[t{2 ͿB_SΑi0+[?q(n34SB e5eK :~.  ð 3@Q'\R0. \p\tKϭ۰ *6h):N ZN,Xsz.u /`s1V;4&u>G4 \wWːWe _о-j㒕oԘ?JNLVד4|Ӷ&Ӝ]=t~%?;G,-e?_g;ӣ᳠K_9=n ?|W`_ǿ~e)2ļAR-佩nyo(7%v3As5C.H%4r'"Ѥ |'[Dy__׌7Q} ^ep)rDFT),Jsx݋hv2wOޚY ߙc0 F#r`I.1Ƿt$ɘAR0q]807sbav/S,$όK,~; fR^W<4tl>3  76`Y$7bKTj" ] l n( 61t\kI&0drʱEݥ 'e\).,@V6jelHSbܰCK+ˡVt)%5tFyPq@xe9PQSαvG/#&0*)%q[q5Ukڽdb~NzG1KZǨΦVGoJt6N9Cv>$9L 1lt>)yVF=kr1{G+VL}TV|5>@öYi@e~od ꘬0uW֞2"~n$ஃsR'b(OlC%H (mR00^m.Xr+@ak9A_A{<ǧaΐi'Xr9f]`6(ԇiA@)-Ct`i&VNԃjt[m72kBw/(ҳYU_aS2PGI?=D \?({ 6ZhlVPP9cg,a? 5b`*}AlSH6ݖ3-M %:.v v0ހ 1ceBgDRռhae~ 9Pc.  ^xjEI1YjYP4$/]ߟAbw:o"6;ojUz^r{ӡ+<2=N'ktm}ue%dq~qڃx` `[X3|$ZcNm7U[?ytŬ[`^j " bꉞ;CKVnNv:$ڲǎyycg7#iAM9MG/HFcDG9}n:~ܳF*}xy@|؆0闟LeUIt6P<1Rf4Z#jdjgU JyKZB 9].sy$fyVs UVs+taZV-EO[*ǃڡA &WtA#7To?9'H!# &-~Huؕ%&m94 !^C{MrF6E3Ȣ8E7ዓ1s60wS+p"}ӷ"ie*=*tTVc @DfanDEN@eߋ>"XF &* nǮVj(ާMҷ&s) 17,4[QV@6o`]a+tۣ9՗˜Q֬LK\Z0pR - Xx7[ۄD1 "SɏysAB.. O&x3@"~E3#WT pCFlȲ*3Bj̫D6605!ʮo/I9ď9SvCoȄlrY~EF!x$&o7\j)4ҽ5v˃ɐaU n2cR]]u<W|J['Z/Vhan{R\GEs2^NC(ϻb4r 8ZΨ1MNyV+UL&@a/-"#QB{8W?j=sufO G;7 NUnT܈|>{1 ʭzSDq"ႎ$ Lp=πBqL:57}c0 *Rƾ\604"'b/X;" ,\z,V*7:J8̵B*Tp!\nOǟ9%*P c6rLl3*Jx?}c.=4ef xh[L- bX,/Qm"(FkՙFy @|*T2m4tij ,~<~ڹ ۰:]Lްn9}?dYˆQAؖ_~i^K ѱXUH$V?ZS !@T@)5^IG- *կ> cRhrn5PݣNy^ cC|V=w/EGX!O{Y_{[j]1wby\$Jh( |ӻJ F 戹Y*/c ͌R7ib1= Ȱa3Hf2AA)]5:hУ=,WhŮ,'T޺ޯitsY$l5Њś64 KE:CAB\7Zf]dDfen8CID@節#|q0"Putマ Xd|(X5gpha:I1=–k)is^Wf3H#Yc?3Fs}SZ& <%ȅPዠ+L[dY4d>Mo?&ZVÞ<Ů}Pn?{T՝hֺ♢i.-!vnX^u ^$bvtW!rCHp #]l;SUTF`W@$Sƿ݃U➡aɐE?T(8[,ЮYॻL6L<xג}?| f,F-M 'P3?qS; ℤ;o|-5U+ =/!Hپ]HxN}2+@L w76kuz494|&B$i!D xVZ% fMJWCBf~N܈AO42;KmAn_Ki>Ǜ m~w@wHox '0t.SCX2Lx0sS#dr+)?FrƤj{!7۫VtEV-,lŌx_lOSg\)o(-̂g"h*mEGFj% 1J1+cN2 "#WƐ]c/wuhHS* A3JoQJ :ƪ|UGNC*!11KZX_3sLt t 2!..||P Y@xCO;o9hXHN.LB @:iP P<UpH^ ^,V r'ZA+۪ nb_O, M/scv᪮7cTWoynlos]|t0<&??rz~0~lOy:Wv޾|s"9YO.7~|ǽhNE{sea||nh߬~ya6Nҽ>;v``#oﯿћ޻W~<~ϟO6;/^|SzG[_m~{=y<.;|^M}rϓ?~8;?NUb{gw_&ɏ>^CVwvv^]v~~je绽Wo{WggGڹt2wE|M0?w?=bڋq{r>}µrwgul?v/6$;Wu~ݏ6iw`0W/߯>dO7?<6}t}~p}|]クn +8CՃ3}=|+>>?* 8r a_ݦaZ.egCwUCHCȑ$ίUE)nz[9TA\c>wb.e}̊VXcp]7 rTJv.@74I(Ƀ.KxP$0\b}m H&}2؁@яZ< p;T#qa++]A({GHT ^]tW%8r %a5M|2xu*uj4E`Z#QaMi]Wh"g.Ɵ \"cKuIEgӸф ?I.9X RRkT𐠏]GkA;(B:#CZ dN:Ҿ'wy7qNmY폯 Z9YmygBaR(ݐ ׇ'>ȔP@I  d( !s`@@&_@8" ߆C„m=EZC(A IXH"[z Oȭ.&PDHbW.3^4xF2^u^'~@4' @K"80 nx1}r|keu H(-С+2R `PrdUdө8v>_ A+yĽ :@*R%Awn3F e(qq@sd0ϱe{@a1 O@'B?mFO $Uk!m;>X1ZG!gp?R:pÞIŇdO8[f=Dg,7dYwcC@=u!Jpo5{c.'ї7J#?E2X's k~/m yWuc2V^Sp86 ~\|;s49^ zqz޼Yfw!t6`'k;/w_ƇGEI\g^BqN7w~ظU,9I+$08A KՍտ Tۘg @GX_eBD7?XrtsvF[7"k=j ҌgMv|pb}+ou1 K:Jl)UY+/#AtfaOYܻ ǫɪNS/Һ_",(XяE|zf8h>K{^ZҔ()y/&~[ `i-=좬n i;no$V{3no[F~~nw{zgh%񸯸Iوdgd%[#tnP`d6snv%7Tp !U&OTI+ҹ ;!~ }4ONPtnkA[D3[a$nF!b"'g,sk @WPhg߶1JF #6,STkbHJer MRw$RKR]N @PR%(B8[ #lKo1y21k-`V^(Sa׮C\iu㥅CV f(gA,.|$& 8'ԵZ[As>o Zʡ_Ž'Rf:N5˅VWABnK.8-ٌM+SdWKI4^OW(h4爝F84q\ JYJBhlJ!01ч{qr^\ߗ"RŻ U~up@sD ,w˒m'L}fɯ#X|66lzi}D\Df͕MhWܸ^4oE@Y<>]Ij9卒,|)7^[K6H^`XU^IG"kP,RaVK*K(']\m __#al^e|nm@-Rm0 XJTN)C8jEY9S|:K!d/5ʵV<\pZ-5L%j[mZh 0SCbIś#E\s;wam8خlQݿ,JDj揘&(>$i9dvW5?_ZJcIU`4Dܹ=g8uƫNF@􂨵 kW=PlMN50\=A6 U««%̺+UBoe+ADWάkvwl;D,BIn ҋ fG 5UQqKŁl UZ^d Y џ䞎SksHRixNñeB}p%iK|wi%p z`3|*Ot| ґdEUq:EhfK/-w ;+%Jw㊿VQa~$pLJVi WfteݗWs~@-ʾư aloL6GKܐ-Ƴ1W©0ω!=%MBUW5ӍMJ,>>DɴmK4'C谯j|O^1};:'!;>L#{(<{`xT%v6c6bTqy[:uG\)bs;U](COO׼MbڶcSHxpV=1o ˆ2fcڼ!/m-YfYu>9(NLM8g|Fc( 2],% Ö/fxmnw3-[ & Niq+¡R`~6^>v ^7̠1j뤬u1X@uGsԩt_͉Ws9՜jN|5'6`sFEgBlԘ5phV[]5Y f5k!̗g-Rh`%fxT +S0Y6^OߛQyhK ±^F_hxT&URp]hy_HD%K(gv:4Aԯwe\G15icIeQ1VVgpSr[6 A5.R*rYڐ2-.:N|ja% !5x =hexLirm{Ӧx?pᆳ1Ա5!YBVxD(T=R8j lPH%)h32 ƘUIjsX[J(&MՒ7sNڐ=YB2uT$G~K6O%y/Dt̼8@2-_wTXwA-i| (F5Fl夙,EA[-p/`$2\HztOqdK|gWa%TTg_P㔈OO4\29;գ4vzE>=$T]uqR]=[bUׁHp;xp Y t5 K)W#x\z^+/g_OZ,BA i>/EvQS X%c£HS!{{ vE QF@m0RrNqag׌l+~owDLoq2'qX*,Ęe3AZ#%mv^w]7xΠ׃Gzlm[AI:$A2E AMRJYAA>w*&kO<\c e WՃ#}>Vʯkޭ$ j@iд4o+T|NՉ,T?d꒛8(F[kRG&GM,j1V7\n)ίhCef" / I,6a9b$pIYYJ):OA?W荲'G6d7{-";NJjz>[`=Iկ9ݟa԰OnbpA >S{`{@3 Qa*8;u.YE!-_P) E\dcԏF$@~:hDJ:hĦf$dp"D9LqL˻KV9 HϏ0&{dqs%T!ll:i y Oo΁. qR#!m Wei݂sbA0FLtV´PTW1ކ#c4ʓn70ۍqC&7J1|->uF8Bvo*a^6oR^XC)*m;BD[ 8aEȍfbf w͇;M*bEXl>TgWH+)o@z QCڈ4>tŬR AgeB: O xC@X`kZu%po;\?ھp")s>^;-*QE'f=4^tƿ_?Yh-+nn_)F]J%ϕu5@S{_2Zp o?f m-o2L@#?`̫Q-W2`rU6?nDձqBt :-O҃!Mi !Јn? +'O u?WʬuM<#31SoDoɱaΓk*&p7l\Jdc !; aO ),R[s(U,r,ݦT榼pB£7f*i HÐ_IFX+.bʏbE\74r>4Y+l. ۨ dP zaE9sIe>2&Lk1Yņ+E{WnQ% 1r-FzJmjQ\so` TnqDN(yx+QX.|\ 4guY"sQ% wvUny[kdJ ' 镳K?ʁۊfyRp]: "S1x;B3UG'`3-/;J 9>5&3 `>/c%'ˍ )R(;[ M7yH7 /Mv9':VOSIwU6UAӧK-Tk^*#OA$x9D)BZ$%[#f`.e* 䂐)}8~M3^hfh@}Dme"Es ;ډRezS2v3eoO~2D^('3Y2&RY`B$?r^)Tn<,"Ay L&$̓x4$.^@l"r$܃=Ē- y A1nyG5/G3JlViPzu I +7$oYr*M#oF9T]q>%;݉--b(Wa 9^ް1#ĿեgID sR3b7UWa $Gn.8h\'*0֧> HM-Xz_+5?m ^H0?)O)y9H W\x[ܴMnyU@I"*v=f$,M `|D''{XT=ŋR^k![k{ A Wǰ*91'{%.L@Trr(W;Fy^X4{ =|883Q/bZ$#?ER#+`%;%U(Gy#ku(պY+}L6-ƧOA vppq<Kk+<xu*dQ;nDrhYC9J;zZ9Co=Ec8@ip16dPP4(x2_B <G毹bz ^[_wpqABud`$4=}Xߕm^Ҏ͑哷MIu`[^l \% sVczIУ,"nYQe?X64.޲PK{!zx|9mkKV(_AFd{4/X*3=K Pᗆ561T0s #smѨJjG! mjgR.m'NLa=Lچ&.X_(!4^O%+i%#&B )Ko Q ow*(W\`^ 8@~ ߯uoxeєKހ%o /\iD=Q3W6f`d[;}5_g_tb2@NTjo<$L4֬pYsu:G<Fr.7[OlJ>(sCI/C&\ަ-žFrE^uS{ց+uٛD#vmp}Ҭ),'W"_*b]7"tt&@̧>`* '@nـg(:epsck #,9 |{BiB[$}c Z?IFZ;Y)wo>Sԡl.:/ܺcUTKږWf8 Gl'_Պw,{Fg4Ց:ܵ,G_0 wNknr 4 <{2ׇwd5XT{QcT!d@+evg75DXQf/6U^V69.'><*7'ψh*X "˃^1*?(}4-Ȼ)fPIAF&bgl`$ C%E#1}W6OV6I`^0~|8>gp!h!tj #k []8%13E~Q}e܀@-0̲FͶ=ܵrcxl#}6c5W,v9ׄrhm(DܑvPx"k}eL XdrVas[m Jc>Sa&)YPsք 7V70 fJYDGoxi rTە&/P5z]8ww 9*w&G6a5zl ~?~i>QX|OWfȲnv%dgIV^ @^pE_T\A5~6݁=wjjˌMoLKwȳ˧%oֲ ܕѵŠig A}6V=Pdy+"Z;}پE[|V |[o +Ŝ[}_KI$HG=9hw oV=DSwA/Xbo3Vn0:-΋ϗrO;cHZ.d͘:>xS9lY$+eSHi0|>vl]d'Dʌ-ći]v1*A +2]PCvkne{p[ɞR y\3:(G3ۍolUpg槽N6B#Ռ߼Gò:\|O;^xb>ɓޝ:Q6UO 5=*!'Tus+{ ^͓Yyt\0;:~ޓid׫p SZGȳ?,]x-*lWS\kC9 D&}6N.ȃWV2T5@+kRRh;4iIpϭ=Nb%A,ȤD/R%/ƗM$Zȷ@rlJc | e\(o ^TRY {[Ϗ(Djz\8w۾TOhwp~Dk$ ?sh.jhr+={YUl:zuӯ35>dHIaw`ݔ/a(a hti^Ԇ2M/ 7k4mXjrT39<:5EPnx Z8MfQ, t|Y7#KsѮEI̗YI8.V?n$RPQ*.-B" X4M#<)K|5>ְ"h<͚vH za"R]-~\xY.Z\.4ޢ)W\Y|g#TZY7'F:r5 㑄>=,F8wOrR8Yw!4Ҙ Wm5DM3A "HL&0tE74J )u4vJu į.Fr,m;'!ᴻq$ͤحLR6G-`G,0M4h; xM].q%췟tI~k7M@ˁ Ґ[ػǛz(.qKzW~aHʃ9Y+pW݅(n;_XS1(֣ok^aiqqY|ryon(Bթu PAkL %ʹzoG2SSX>_gV^-⩈{k4}8}*j|ɽWtNX'OVbWl c` S&rr}>O-i{` `iui]C.V>ZLIKNzӾ+'Aن YCٴ'8*FcX1H]KY,Aİgԟ ~rGՇB8U:d FSž",\dhGXy(-KK7Jk O4#nٳF8m^= gLySδQ.b)a.d4hCq: XCPߤA?(Βжh`j֍f^qdIO05cA!G%8UJzY{qǨLY'sSBi?s):7h 8}++W=K#F#ƷgQb}32j׆΄?(?\*U̪ )seE!3 IMO"ڛdZumpuߡ_2lZd]F)+5 r1@PX3EeFryӠ9v@7ݟ٩r@B[cU z!"xl!e%L|ޗs#5"+}% _;!4e-ajѧ]x:6BWiݽ:q>.)^YrЪj8F %XR2I #dΪ'>blQ]"A*OEeN$[2M'F1># a/s gw[T Vjc%$:uH@\bKN*iQE)8sH\|e?rkcgrx8ow2 z!td=7B\ϲ9k:09ygtn@gx * I퇘t{yW78y;*SCDz8$hphEb׈U'WU'y0v3W{t: 2 {@M;,!2aH7rINK:D7kCIF 93! AhTfFh218`۷v%ftQuM/>[M6uEo`τo5h1da~ Q`gEPR`)zhaZ ؘ<_ХW9dm1Bx(=õ컗OLL=su/Q{L◉[&Hjd %Q;|RI %Z6))$#&W̋SQ"?m3Y[[^Pq&v;Tތ}Ta[kl0yr[ ZCmO_&'p~ƫM~~vĥM>WΚCHp3;ޣtHqǍmJXu͵\+~Qb ZnI˦2YC$@_"JN7d?9[^SFuazs߈}Q1Y驭)l<ˊ.{-<_TpC>|wi1FC;=,j-8Dt} 60dص䑆or5tķ_Œ A;)Exv aF!<ԼyEnDG^c9>aR-vDço1ʽjsХ+U~MX3LCeLHx,{݁ϾCM&B)붇 "]b7Z@oyzmv9-xQ~/y/2A7E&C֫K%'`;g;$S i"5f3(pH^NHGEQߌqv$/[!#b${1b!i#4{?,,wXi lZ =4^3yMt}. &v8elRo qR(+#wf,~WUQ^hQ]vcjN7RʗzK#9Xj %^4 ~ -S{(~)_CG*{q*M1/`!JNJԱ)f6q[o9 4Ck{ܜү9cz6anX}`4ge/U8\M{-_"#l|s܃ˆhUpzMmץ[0O1xߞΌG1)VefZxTK1ө'OcWt +f#7ĝ Sτ׿w=)EL:܇W{ ]IKF1"Wz?l{ԏ 7{/+1aVZۑ`/xB+on9Y|W= oӆqaN70^4Xi}-*.a'`Dhwt\CA$!3_ ;>kwיB&\ג XGqfntn2X*] G7 .vymQ38M8ӒP`rnk祯+gom4N^ A^Z]3t{'"O:v>`}*`QQWz:NUzT*ەHxAW)SL'° 1hK s"Х*3q:h$ 3L01@Ń'ct-/C&U#n>Ԓm#wF-a4'{:H/[΢, ܓMh. $Q{e H{\Ws:Eǁ$PꀱG4Aؙ5M:N I%7hm wInhb4ѱq~n6yj/#%;TxeE.2Y|-12pjKrՓ9N+bnڭas@dc_6ua.~;)/[=rž(W7^(gz0=#(:#QU-2=ӛRGk2hm Eaǚ_fRtfGLan/p fL~-a[vJpxl7ֶD¸])л{kk? =?EG脺~p!n! =hצ)g/qeTZNy^VnT$ȫ=ϓ'w搙!W*Rf w94O+,oJuCF*"խzTѿBFj<4Ȟ^8KX3kjrٍXS~|ЀǼu~(aU&=I7! ߨOX3qiTHMؠ.tbisউ ַ 2y~?G:`ӕp3IJCe~6#ޠK *FնMzfⰷB(Ih2(zq^IwgΫMqW{i}/8=ulj+ŵr (j~x79gYF'Wȼ.ffK*UW 8(+w"CNf=|bg @S.pj^u'u~(aN#)Ņ;U p[z'Ec ukPk ]U J.2elX'0g d}UUل皜l,Ba!%Qg92tDuv1|xiO "M `rQUWyrǖxǘ:m@"~DFj y|^7*GDnV&tq\>LXq}ɝ^ osPO烴k1doR[Wj mF?ڳFE4^\MbDͥO8Mno(x^Xo9w4cE}kdC"C ݣЄTϺ;:Jel 7U⦚S7!_xSJ[*i^/=iW{UTSDr۪^ĩbƷ(-aF!!R>{!O,|Bx4'XVH_SV^EZv./c diqp):s!z!s5D eLpKܔ+@z1-\ږ(>F(\אjtH~dy$n7j] ݢvf%8psz4```fG6s\,f;(ߢ_MU#uh$VĢѬrٸy8^$][*2ʄ|3-\{ Bn2G̰GXWS`fiͻ97^tto8;W/d|;3>Ly]>^4X?; ^TS N>h ZHfk ~}*`2U կkymajؐ^ "-9HS7NᬁH,M=p22JOЌ|7 S鐰-jۀ7P$-g*dJ^U CRc- `xj:]knU";qPdE ;H|qAa{4%C&kO  ?oЄ.M*|g\-FeJӧ&I!#}HX[疡 Pt`/#v}E#8G&C AV(V~0ǒ R|BUYw^G_+zc9l]^O)C8!ċ[~/;%׈PK9K?ȅX qpK !y0*ZȤ,!ŕ& iO`)XP(qVŃY u_ѯtu-z A ۨnj:)KOPzSrLC(O=Vu% K Fr!t?=H~g-?b)(_gU76WɺI3$q#*A̿%F:P>f0 |zBp]-8ԗ\,~u 4b"W~(Od*7Zqm@ Uu*x6Z~\jpy B ^ykj6ǫup1 !K+cXWjKפCzAgO{w.ed]WӁ65#7pKݫ= 0%v÷ROϞ鬿B СSVW*4թDÄ("a@_MY;m7bY)FYf`,c".Z/ibཽVO@l+ G%@H퍦"%I2ٶ]X,Z*Q\KUv QFVb^˟] 'Sm[9:**ӈ6g2y8\@*tZ/TfĤK?֕d5Wc#zR@'w+a$j\/%Tl̵9Krxryf])RL˫^UZ[&u Ay{/#$D ǘqڇ#;TVms0+m|#jc 6yZ_;47;gͨ C @n<;p #Kud?w1rj5QֆO\-hiG}5-1@߇bl=[׊. :(+"+P܄ϹQ̹)/䵺 hizdּk :*bBIw}Qޯ@MgsO;q@ #D.~fT*HΗm4atu꣭,/csE}fl,Ãv}"5shIg:fPV>pBfK3@xPpwM[ʮfEzx^$xqZNPl/q02Lxx>)75zȮA|\b3le4̇`u.|% Kl& U8`;-H7Cf=l1Q:SܛW{#u "ʢDV.y *$~BsX>ɉgjV̋}>*m9YӝTg>.5!!9Z h j*΃Mp,!42[@8TaoT?<G>6uLpY&_242=G̀;0RjٓS\,{cvIF'"tmE.pf|j*q-:Yùr"º.va֟ nT^Ihs;@ZVvgg {0]%QEz*(i 4}Nl_u%]{RhtU_*=^yamVO(֚ 28 1w@\/z#};uĞ)0p7ZRNUxkLteZOAN}O;RWյĺq3B`,Q5mi1 3+~e,c9Iܮ zU+.>1'2Ee֑`fn=n]fb~9f#p;r ?៴@D2@Z5?Z7B }eVz< lFR9l&$HꝟԍO\龧Zu9~|d'L`&,?۰كۿ-Jv: 昃o/b@pfbz)*1 m._=ʹ(Yc,;_mroh#8~ًCsh-2Zld)=4HWmD"a+OgF 6=fwhi0.'u13-z5-zGrÓAfVzr>>F5߲^y I7dT[~W9/$c>ijcDhْQfP&TYly|9%H @a.I$hDd˯}M}٧=EMz9TЯV?+G>E7lˤQ eZnpM3TkDѢWBR>1]|δesyα^G!E{CJIke~6cG4MMǿlzܐ ;A>OWLc~p'+{\'&,0טbQlyMPIŮWSdH ` &>v~)~AqOg2椰۴9jҫn#gNXyW1To4qŦe5j懝,)S} WkM*j!qES L ۮ_ߝ" @l \\턡ffaCj x;#)ᰨKrnYɃ@Od kGKk',z-IfP(-gLI2PHԑwɧpsᅊT&+-H u\|;1u7Tz9`#>67l[@j-RckKj謽L2yk&i۶OpJ*vo/Y+@w|?ŧ-f}J٭<eZ;Ƨ߹D/s^Nz]8# wa2@d31ۘ_pBLSvBuQ0Sj.'~>)hLL![2‘LX奡XO"jş!cZ;&;(|Ic `:[wSR&XR(鉸uBƤqCiJQDR=OS-j$oFv\u  N$SUжf$NL9)?]]oOVkA Y/$t=\^Jlm9 .nK3Dl CTs{=9ȳD{u2WAT<=e#0A(E,ܐ ]A ERALj TMs}ݺR` A@~#(Ȱ# Y_zU3>_489zYn M? ( 5{6fd_Ay sxF@Q3xxA}°5u7;SN tW Df|I$\O:@?F5jG_ r/~(A ݬ9>?2/ZVWHH4/*A!5Qr+U>?AV17Rd7LD*JnpR]);Ȟ[shO\yӞ*ҐY#Czf@%MJ-]Dni-"!1bm#0lbl C=Arq),x.g@tTIBm͂,Koޡђv5㫳d0LT˻3v."`|ٹkWC'N"л}]Ja-PDK#Z=E0>/N45kFȗlyAƯ~|g`p?J:{Ӥ9<> a̗p{5Hh4Bj+9=,(լ{SqjwmDBp #=Ehh2H\IQ T#mÏ7܎ s(0$a/iV2և[-(.kVkQD9sz)Q_ɬ\9r T ):ukБWgҿIhPJJ礉0yE$\\B_>A"dEiZ$vbw4 Ac}hXh׋0 m}tƧ~ fluԕn$(x5$>[€WAv{_O~gq[ak{H ؖ@vTFplRy ֙!~ ,dǖViH0}7o2@$ݛ ?9.x5~w|=s^ /j'_ͭ"M4l^s \uqq?9(f<L1r(Ոx3ԉXQS޿} ׸pkb̪o,n6]WєwMd8{*Ѳf/rtr$/^&rf/(}@^ ^ը@hVY {W7LOuJfE^,a 51KqYr?EpVU:j'E{{7Um(% spBukwmyr[?ͽ(ث8wyڑW4^HYs:* ܗT/8oAظC݃؍ֿsU o]Iel.xraz\<詁H퍤Uky~&1%`\&s WF0ԐߝZcѵ[o"ǃ!{޽[8_72K*Y`޶=Ah.\ԑkB՘ډAMK 檮NU˰ ƾ(IEgj>{uJ:3l.yRgb*MY%Y.@}E3Oט8WzJ zߦG ̡IM/ ݚ`NZNQ &yO&p^:d@B^nkPx*E1c߰)GYCȷ돼0eg-n#FxM ۶ H؏|g[4 7%NsaҿMoiIf! ;lߵS_-+\N'GWv GCvD.?Jm2~VMӄy)]zl|?O}R4oB$ɅaB>ZڇxAg^F%M F |(4s9P`[`S$2׹TgۤSL轵@ajF4gz =GS>d/r*L\`EvqpLCd̠$-~O=7ā1ԖC[Ѱ)j"ͨc5ލ?QH@4hTtiXϿcgPKUr$< l\_{8c ]xPID&+p*9e3rxD? X;"uG1"e h+-bc\Lr PX4j uNz*\LT~q `47Ζuğ {藰z!$pocvbpnkyl^; 4R(x{U'pT=)Z`t" Ak7r9j&.}䷹»h@1 }UN\:OS ݙlhz8WjqKH_jtHYI^VAuBjh 2>U G0RSdVA_ΐc;A S'8 HeY)YF\i; %S{&[ Zu1g mpH-j!$5EnaÇ wx;*uL8OA8|Vd֌ojiIof& e@3ͼp͒Hf }yo =6lNIXAk6uXpSvߘw5zN_@H ›Y6 ɟF*)!q66\xOIc%-{Y;ط0 ĺ{8l$MA⿀Ď`Ν$Lptc/5"\$5r6C Cwmom_ 3 ;ےuu X)xĩ/ol PmF3rWx8Hu5]9s#\F9-\|qC0/NE3'K%.%O]C2zYԨZבӥXu!P/2-hHILs#Ԁ Z2 aq5qLwf?D: 6vہr)AĒ_CKR+3o d,nhA*ǵw,^a&19K]P#(iR[XpvRK3h/a1A{π]FVv*i jW:zy{{W*F{sXqK}lc#ŸgFUZ[񈤊^oxWjY.Ni%~&C#v{m**E ˢm`*Es\anˍg v|ޗ6"H Ǡj\G(EvPCe&C5[åCQ5uUxgMު佖Tyy6v=XBrЋ>ۀYhHh<\hlPO S bĠPM$n8g2Y>U/P0ӪZk.KSVX:LMmϷ(5L(HX%v2vFFp$@ToGSQ#IʖE^\k_1hri?d0"/*N{X{ZsX3zh؀ǙBa9Q%.ȏ.O+ʾ?NkZHۛ^2`ߡ6$/XҸT nLzt*3:>/v0|y9u՟e8L\U_ sj95<:t# FtFu'7frAUS,FFpY4SL*wFνXW '+lL?!zl1qgtG*I7wOt3AR]-S?/&Vzr݉żTޅ랚5|Ȝ!A3``.1,`bɗ!#6o`6zי D@Q4Qi~ ;+u]'ˁӛ) zQwj00cB'N0wÙXbCs)| ` M8]$̶+NxF7MƢ3!^>r?l\8yј^!!+ړ VsS2 jл`Nt@+\jR t| #͹͔U1E$mjRb ]v6Q򦨩c_Iٸ8 QWAmȆn\qV ԼŒ oOeIHx(tF7ng4'״_dgN X;^y\5yI'zZmqrb0U DL\ku03;br 3\L7r=z$]p"MꯇE7,?m~G9A_bFg${ǂ)tjdLxMkĆX׮h8YՁIey?RDD<-JzuE7S6Q+9Lq jvXa,ffO(Lzj14sђ;殶ڸfzʡv{6̎R<l,t7+ipJ Y @IgqV T ~MnI.\ic]̘K-6ZaWKnxDcu@y*b]hn礶zlIL>a&r>ؓwX3~WVƉb /|- 3U,An06uX*8Bm@x!|IJ#w ѯGihϲPM_AʬjFH]M_,0 /LQF3>ȣ[Qx^c͈Cntv&u b|&`C& a`P|T Qٟ{&cqV`f &F v#Ci9} kJod9P$v0Dp"I?&S\v(FqIPCEãAɣ 1#VPP![db5\<x@,Cf!8,Ak J'!.Mov'V0U?)v(?G]ŒI݂tںsQY*n523?$H?wyXBS(9y?؞Y9ײf3rRT"50S~s Fl)Q$(lW&WcmaIMr18še{{jC\ ϡg7,lNXraBhk%Cr,te9ڟnM33̶)9NQ~+,dE|6 >u0*7Ԯ7RgXd>m>)@7@+P9;X JAo[ԍ 2 Ҭ!nT"-M#)T'ʏ6(Fmv_Q5[\SkXWܷK"D4G0~l?q?Ŏ2KDаFdP'#ciE@xX>Q )9_;ИC&!j.).u!, &/yJ/$eW@p1= Lz^[@~!SXO=eW&K MNa6 unc7dUq c$}=+zh><ʹ m7w2rYDTjAx,E:W REXzVзjk#(1ݡ>]0 ޚ+̱z"Ds۹J͋L[xOh&r%Bl ]Cs햴gZa ɁAy,?1:-U+mfF-Q&au7PS<":&j/F˘A,Shu=?M$rtj_V>H6;YS !(G 6\@7D~+W6!_fR)ߧ|ƚ|xv=:*'cqG;|Hq.!7c|{fo0=r2r h1_!zkxa[YMZl? (Yuz_ڣy\6 -Т} KetX{zC2<%t{Rܾ#l^7\XK7 T'dÔQfGPd歚_4=H;KX!~ۀU0{;8B\%95Vy?Lj[}~:2V{(]4 09}-wPSnj쮀ٗ˱7"n {¬q:t9#HX"¼ M&0]sg> vpJ#ܜqwk6$ŸZM>e4uYܡqr"t-i(hoNyBnd2'r{#ѵR# ɞP]c}8x'<{!R=XZd΄F^>7BvWz>jmjJ3noN3)R['8"3xfDkUB+yso Bj$C;DuhL!z3螛Mv!ʔ t\65='G3?ד,kq냏aIEw[~on2Ťiq֭ʾըb/鱍~dۣS݀&TW<;gKT=93qQ\XJUs!=!k8W -,W-ESվeJW?& z3,>o>AZD );ݮnXW)_=5>ukw@ۆu  te!tx[kn6ߊT> n6YbG)ZQ2XBj\?Wn.^HaeFFbՙ0r* |+05e |8G笠J4OqCIK?0}~0{tZŊ_Y^z5A3QrNF}R1?ʟ6R7yLޑ_Ȣ^h݉9tk0 ߾(&MmRSmqkr,jMA[Nl[Wzccs&Vء'X.d[qƏM2j&@"kҌ/} :Q2m>!`+oF -lgMÃ" |F#Ӯq(A4ļ1`O(IR_*)F\Re| ++ OxgqU?K- WBwS~\} mpXs[ǹLkD2c'lC &pmۍ[NE=V:֗UTF#%&- u4r#u_Q)kISїFأ,\-|15*X}nj/7R/=Na{[K`nbIQU6<눑nHC{A+m }bfT6!tUE Ϸ?XOu3,"Q7B$7nѹk}tIFk0UkHY@tČtB`vq/|8pDÚr%+) TF_7լ̔Lԩ{xz0 X-!#NVXIv1s&DKؘ?&H2Ir<’Wzo=˕q BHlS9=rB\=7 F]I2Û ?0\G=)6sW,2V[;]PKɌ7iaDe/e"d]9_7\D #cz3hcQ, pS -W[r2B@$%s>n̙6 >XčHs}ٟY!&cҬG`ֿi:TOc/FdTŦ{]l&M`[xnM?s3> dgѯ΋ZTy ~syj$tfK 9C'9 0Ȓh~carHB)0~dU*׉ sthI)^ [+XY4tjw?ts#uD㢼0[qkE[}A..1L4]nG/ ouUi|6BAgܜ,\ų.fMN>]?d T~D0"s٪p 7RメN;%+ͅ.c6Z\w63cɴMr= ~w2ƨv0xmtb>ɇBIn.j]Y-$lCTՁ>TRW@!h53&UFx:۽c.!9qG*Ea.Mu!vMn:罀?s<4%K;V" &]Ω8<ūP>k0Oɾ[ɀʏQܬw4kgehp5WC5WLLWz9Xs7EtQ[* q'>臻lcm~m f3վ,fV~/H醒={~%Y6tvP(Ӑj bwnscA,@>!K<ٷ$GJʿ_ U%9hCC3-[[ zhi`uM\ ;Z#"(;#ߝWF ~ˊWd|XRf`xe13E1-P 5RZ0:Ez%O^e 7QL3TJZ8C_a|c'f 9իccrqlV}OϻvEp[UUpJ٬X)x*l^?M|!S[0JBN@&RyO 0D!'zf9F4@Lʁi'0OϓƤ t BQ-,SG B(^Iv0OVL T췃ōUaUwAB:'xurTQa'H! AL/xo% Ùd9ٖ%־1>Vcj{6jHUWD+¡9h u06TLq\Kz PqMs=nr,p!m*vk[L̮ɮk 9%Ȱ>UHrm,e>YP@/3zW{vb#[mIѧݎ]v5?8KĐ_R3J ΁ {!zM9 g`. KVA3Zxd3i ؍XFK۔3)UW-gk{m S@Y7D <џiU3~pd4~pҏlWw&.H[N֬ rs[~X{e1?־TFn٧Sg<k<)Or:Uʒ+jT'l~;BV0.Hj{_^Yl[$w=<xPk+څO_8~#k޳?FwpsEcVlhSdɄʠh*v>= XرlX>@v839'mC6)v~ }Z5ĜaѴ|.[/$+F@fͳjCQ ckuן NZ/b5DR4V>Y%/;'9جS&pL(˔p}J+;>n 6ϑ>s}1~z`X C?JG8WY\NY<3oyŲԪt7d*󠋤synYyOh `+ _4Sh񺞜;:RQlKX)֚K9_?q>#7w's{Vyuu^Nzu˞Sn`{WíF9#M*?hÝ>0]:I'_n^m L*̇̇. i@b+ u,DJyi};$հjT#0VZ3Im:(J(uI틥@ {n .ig,_ɮd(Zt?.xP.P_㨴R ? f:y~Gm[*An*n/= #͇*-[7#B^S_H@$HuR̷aWZ_/KJ<##hDFc9~oapܱzqX<~?A,IqB֝R C$Cl}iL) eGBFSdC)> Cy/DAG"/4sh47Hd,א:3`3UA X͚7Z`c@1W|^;N.cI3cnܨT~_/)Bg_Qx9.@<!:*5mדsǔJ J^M| usK`ڀG0Hs>P,0`#UJ)b%t•QBjص3޴̍4+ְ /ðhk'@+cx?J ^d" xSg O͘/dYO Fjկ%O&Vnvh(>yinC.KpxTB:wPq{KV[LV[!U {,?У9{SYDfBUU.VeF==Pw{EƢXp2ѩ]G{lV]XoKY( DÇN9swmareȼ