postfix-3.3.1-lp151.2.12.1<>,'_Ҹ/=„:jeE(RV0"4a a'GI$ r͡U,:68ZI>$W1B$ %9Sȑ=qf`D"h&$_?1-pW$ԧ([v[Q-T[%}"`BSX)=LӍкqaG9X+Ԃ y .x w'1+w'r1ĂDFyzk-Ҋ2ǹF}]s8|S"Bj')!R.w@g%63>KbX?bHd   A  !'.d t&`) +d - 0h ] _tbg$kbkn o:p:u":uuu(u7u8vF9wF:}gF=>?@ CFG0HIX Y \]t^(kb*Pc*d+e+f+l+u+v/9wU4xXy[zaaabbDCpostfix3.3.1lp151.2.12.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program._cloud1373>_openSUSE Leap 15.1openSUSEIPL-1.0 OR EPL-2.0http://bugs.opensuse.orgProductivity/Networking/Email/Servershttp://www.postfix.orglinuxx86_64 test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in postfix.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in postfix.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-postfix-update-$service-new-in-upgrade" fi done for service in postfix.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi VERSIONTEST=$(test -x usr/sbin/postconf && usr/sbin/postconf proxy_read_maps 2>/dev/null || :) if [ -z "$VERSIONTEST" -a -f var/spool/postfix/pid/master.pid ]; then if checkproc -p var/spool/postfix/pid/master.pid usr/lib/postfix/master; then echo "postfix is still running. You have to stop postfix in order to" echo "install a newer version." exit 1 fi fi getent group postfix >/dev/null || groupadd -g 51 -o -r postfix getent group maildrop >/dev/null || groupadd -g 59 -o -r maildrop getent passwd postfix >/dev/null || useradd -r -o -g postfix -u 51 -s /bin/false -c "Postfix Daemon" -d /var/spool/postfix postfix usermod -G 59,mail postfix # ---------------------------------------------------------------------------# We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured # Check if main.cf and master.cf was changed manualy MAINCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/main.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/main.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MAINCH=1 fi fi MASTERCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/master.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/master.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MASTERCH=1 fi fi echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ $MASTERCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf && grep -v "^#" /etc/postfix/master.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/master.cf fi if [ $MAINCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf && grep -v "^#" /etc/postfix/main.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/main.cf fi fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset postfix.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in postfix.service ; do if [ ! -e "/run/rpm-postfix-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in postfix.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi PNAME=mail SUBPNAME=-postfix SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi /sbin/ldconfig test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix.service ) || : fi # --------------------------------------------------------------------------- test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $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 /sbin/ldconfig # ---------------------------------------------------------------------------~g}]T) .'\{zisRR%'$H%XR1z21wIx)))J`  XH:[sR%'$H I X[9x:x)`[xZh|@90 xI+yJ0 \fJhJHҐ:9)@)x*J@lZ[Jhk~Z<_g}((   # M -  E#d   Jz r u M&d $ +1+ 0 uv%^23K T &  A큤聤聤AAA큤A큀AA큤AA큤A큤AAAAAAAAAAAAAAAA______________________________________________________________________________________________________________________________Ze_______________________________________________________________________________________2a578b63978d4658a4982a6cd6cdc8b123eb297be639937a6febed1ab696868d6233f37dc93ae05d476bbeb03ffa6de4d006893a9d5c91d38afb66506d224e9dd5e51380e7ec868a42d336c868fc012ab95cac771d95361504cc6040b8d86221c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56d7c000b62ab236b5c5c4db8ad7edec232b2afe95d85c8e064a5c9f6d5308620fc3a8ab17dd75c874d9da896e729c516273900f8e5b80538daf60e8e95ff8666084c8bf2d0d78923734d713667ccbb34b703da09da9bfb4bc1ee1930e29252e5338b19f16f2cfe9cb398e59544cbbeeb4998718dbf231251a41eb31893aed223bbb3d6775b7fc8042b2b68232384694ac3bee6d1100b87f9dcd0840ee935dd2b5d1f8ccc0f7e3d745cf87893b9d1feec45b6e806db6b67180be55e3bf269a399b97a0a5a23df5f84d6c4396e5e1c4c6b10c690300ee392cfbf633002e300ce2cbe523e826b0192c39b42d71597caa8b3e5e166d1e6af98528f046f1ebe67279257987a8bb5574dc385076dc07254f804116424358cc8bdb9a9b53a15a83735def059df3100d111034858b951bed85886ef965e6b0d1e776fdbf45ae21e2f81d797aee72e247d4669ed2bbab4c643153c61a8f9d93e3bc8ec25cf2f1c20f89c2e16569906058e785c9ad48b3eee1736388dda6d1303b68fb53ce18be51a0da4c60677c89f6444d740476b907d17e292ae16eecfbdd150a844c5b045f87aacd11aea0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c142fac085b0a420236276365e4f84728f8a970d6fb5b22ded860610d0612a52acd3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef769e16b5686ca90b10093ce53f1dc9505cb24cf31e56688d228c4a739fd8bbd8819eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b050399c61c8aa9b4928006339bd1dbebd59081f7ea0bf20381936d55bcfcad72642fdf3be782f4cce5b80154b8c0973317c625378b858dc436fa13d058a683b575d7ac5924452faaf32bbfbd41f816947fccc3ff2fc17554be7bc5fff99d71ebe2eed12c4a05ddf1e305d7155fd9a68b5c948290c05538aedf58e88ddac2a7488aecd6ff7ab94a92159da177b67105cee1625528dbfc9787b25479a83f205e783d01f3acba8f28a41a5aaf1d631856a9ccb484feeb43d97b7bf558f291050ee114a5acd39bc6ab523fc65209ca3eb9b9ba0aa262ac4126165e92f7e50d4b1828e8eff157d6888b666880a11a1ef9db73c0563479078f45017caf1de7e9e83438f48357384c506c24bd7a4884067676dc17a43c1d737a8eba60d3ab7632f494665156d9961cfc75d9f200710be2c198fe66dac6fe7d2204377f9e073b52a488616ec4ae766c32277f60bba1b505e3837ccc29587c0cb4fbf65d20b17baa9463b0fb6d73737159f9e3bedf75645dd7c2254331beea55567da92f3b974d4ba8194ff816617c2faa6edec2450a9cfe004b09f3c37a2ccb4cd6fd2cb945bb95790f96375edf51cc914da2df1d516f93642aa01cb8fa4b9028746a7fa02a4bbffa23c147acf5e8636becaf954cc75c0932702362b8d11c641fe4918f9f67702a1292afef776edb5920945fbaf8e359c12be7feb8efd7aa2ff2fd0fe0226a63f13c35ae86b5d088621b993e8cd23cc2703c089fdde58e64fa5076d2894036d565afaffa927df9789dc81840db7abcce62531cfe5d440d0221436869f1d76ad2dfc3e5c80e5dd5af45632d77d99add2c3145b04409f47e12bb7bafe5f8421f4210bf01609c9558c042010a70ebc6596fd4c8015915b84a7f21b3a6b93a7687a195cda096ee48e1372bbba17c1a49b039b4208ddcde8c336278fe0ff2b7b482d3897ea3dd84a0df6a2fbea2fcbddee01c70e0b33f92d886990f16c7a43dea7a1d79b65480061ce1f0f9c62b2b4c2428f558c48bd296a9b332cbbdddc8b4ff5d44a178952c8d31e0073d9038d7c7ca47cebfb9628871b8b553ee06a445106a24a685b182710a9d5312264ebef254d6896e1a61dfd257ad8ea9c71ce4d138c3a48f94bb050563d71c6abac246c613320a84ebc1fea91bab335ce4916b1a5a4bf719987f62d1b0b2c65b6ce89cf27eebf99743bc9f126e91a60beb714eee7d5bfe784920b016c6b4a2c17a815e344dc74f14f80c11249a2702d1cd3ea2fdf6cc9786ed4874bec9ad3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef719eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b0509addddbd4e0f82ad351746e3b07f2dc95b1ec60ac3b99fd19528a217a0ea45f66bac91fe957357357fde7b4d5716d5de76e1b4ce7882661b1727e84e3d32b27ad5312264ebef254d6896e1a61dfd257ad8ea9c71ce4d138c3a48f94bb050563d5119ab8e74d95be2e0eb4c797651bbae217b72b033b3636db293a1527b0fd441726888184b4565c3c736605c10fe8118c7fdd820e1402be73455017fa0608b3d3cda105f9f9a155489ddede20dedd829c0fd4e9b16e11adeb00624609538453d0df6a2fbea2fcbddee01c70e0b33f92d886990f16c7a43dea7a1d79b654800615f3fc53b30761cfa6fb0f2cf840f160c7b9578ba282e02028541a6eea9fcb11929aad65a32d86e62e570b652e71d7f7338bb7a301d3a8a5767a16dee9329b2ecdb4fe595c969ac6227412d9e26fe6441d17555ce46d1c4bd6b695cadcdaf407bf9abd6a625fd7c95e0a9207c4f92e289ef5b7ab5321fa7a7c52edec7b956c7480b08fc4a5224cc31b4960d9c108cd0df80fdfe98813100737666f7fbef12905286307dd4171a4fb6c7096d5045f5a6115a82c5ef91ae665c99b89474dca75cb18353dddd58e2c1e3b1bb5ff58749bcb2a1cf808088d1ee0acc1c95e879c7c09c41a6b9cacd3e22c49310814f117f11e39d70232d0d4041e4a4193678819164ffc3c1781307c8510cc11f44080732721a834af3f68dc9b8eb2505e84a0ee1f1edf71c2bdb018c19bed98a97e9aa2b81e226a35ae771eb7cf483fff465acb4400ea0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c15097a362c3755b59ff337a8ffcc3aeb10c57932624185029ea395fa6b9dec649d3d902356052e33edece702bb0ec1746bc5272d7a5b7f147c03bdc2fa53005dd5a97477aca312b6625c6b6690e931906eb00242564ce58102bff5c0c98623c170b31f312d5aefc26fcea8ef8a5cd86d78a89952ef32e32e3fdca0598cfadaa48f0b9b0f17fe10500dcc4f2dc6d67b012d88539b097e90f1b5cbe6fce8a5d6353d8cdd165777a795757c37aa5491281db576281a8d41e4dbefd3bd441a3eb57b3c8e6c526a3101d8bd4dade05082796a5ca155d4d10c04d0192a3c8625238ed4a011897c9fb2810d5be7ebbb687aa99347c35a7e74bedab7740ff5629db925549bf7a2cebed4b7ae5ff24b8b7c613b661c824b35827110cb697f6b08ea13a12ec5d07ce83280dbfd59c64fff72dd8e9b1b7c9befe7824f010f9fd8372c1467b796d8f7bcedbf66c3a5c9b426dae9df92a6e37f847bfd0fb9904e90d7b358a58f261e1542c9f903603f476f613353d88d98e11d6c5fe09a5ed3eaa7c057b599289f2075fa53c399acbd77e2dab723bea4a9715bf83764344872f04428994226d57db112e9e33c29f2532218588065beb3ddec0a0c9500455c25ef616aae82bc735ee7f6e6dc0d07decaebf9dc23add8bd6e33793fe66cfde9ad70a564777ada26fe8c3c1199d1660ec74f2294c4cc476e8d4bf9dc62bbc7a46f090b33fdd5a55eec15675c33fe6f402ddfe525e55792f0b157d14318306477377f82b4ce6aa2636feb3904f35775cf043efbf802faedcc83b55dd8650b623cb6e735521308296dd65d89c859c55a8956fad44846a1afe3fd15b5672aefe2cb58df71ba42d92ecf9c255f314d37149157acc6459ededf1c1c86888a5a6e70bb9d1771c22dc16eeccafdae97e5eb3b28cba7718143ba28b7e266e966f870d0f4ad0cdc065d2cbec86afb0a6315b31b17d962fae03a96fd7570d431b4ce1b0d0369fee2fbbbd39d033e18718d17d69642559c130a627ceb68c213ef78b8ec135e5b4b56debf27234d8ae60afb7a5f0b8a05786dedc3709b75c0ef55fd4490bb83c4d2aff3ab8a01ae6128b06a43e86f6484d7d3c952af30098a8776b2b4b1b932d12629e1b34f89cab2d91dea1b1b04251892debcb9e072c707840f5d72784b18b240d41b385950457f5fd91e11088b1b1b326beb1b418a221e522ffebe4141b69f929774d91beaac2b1417342d98258f87f52e4862a513062df217693793fb606f59f8be55b0a6aad2542bad584aab6673f5369ac133f801523779092909210790da192b095d033c463357c5b20f7be012c6cfe016a637fe23c54dc1fc29218b72dd9929caf1fe6b2c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae5cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae539f116a3f57e37b11052fb17ed0f3e56a3caeb15dc6ac1b0199dc874bbc82566f499725b5493b0c4052b49b0521268c66f30b611eaf4392fe284c8f2558d571edc01d67f533d528c7daa17ad57081e461826853b9cd67c9b47d453af229fb37be54bc76e36f9165c9efadb0cd92fe52e5eeecca39f272fb0d9fcd8f066ad075909fa295334c7eb61a38611d79572e3b9807351a1ace2187be7122a535c5136285c8a9ef082fc2154eca502c34966a6b51d8e5acf7072f9207c742ccdf6ad9b1350ea672e2974dfb23a0ba943c154b168d873da4fe620a591b7dd1bca4b50e680add3e1d9b2ecf4ef4719a9375251264af81ac483191bb175bb6cc2e153186446e76695b4ee8491adcc696aad2c87c0bfbb30e0e371ed81b5a8a8cbe9cbc068715e37e52627aeb9074f23fc7c2e2f259feec1719e4c41a96e3c62dc26c0bbcf00edc222c6bd2dd101d15dde9af7cb7337edfdcb216c41b37affa13ace52f952ab10c5048047094fa0f701e0dbde2ad8aae567102d7eaf2ea99dae0b0a94503d919be6bdbb34e6561405aa53440f1dd84602af0d6825cd1058924ab91078421b8adf08a5d4630481103286e3db00ab5ef9404d0f6bea382d8da33afcce36b29e873097cd18241bfa59227151f75fc1125b2475b7e1ff6b77c2277e8f46a3d5cbef6b43ce4f67e3b216d23c37ad331ee6212ecd0d8bca85fb41040c81078db54168579aaa2cd24c8086d371fa5c1dd21aabf5a38581a43048414c49f9f1f7b442e64ed17e39efb4a8119815dff22e6d0c0ad06d759a86b1ccb8c500dbc2fb0b3edb83c9092834393557b9f4eb47a8592cac68111a734049d56712af3ccdedc8bf9377d03a44d245c488e02263c66cf115c8cd5aebaf629337153ac42a318f3621ea3eb2de839c13e7c6a7f6a3f1b1c6804d1ef600098ef90c7d90d7e2f401a0b0223c128651d6800935396d82ea8d9ba8fbdcc21fbcb2143b53f137396e1c3cbe0d40f1161e75c5a2d84a793921209b848fd431fb012bc8fb870ac06e2b5198f97b42dfe4e66fd2c80d63f5ca83a51d09925a3494e74a2a59deb3436f0c2929c43b9a7c06103733a3712c7debd842f7e483d7dbb64f7fc411d5f6daa33a53f81d2595e9a149ba17b04192f87ca8f461a7341279d6d29a0c34a416132ee980988553a817753f9df8af7db94fda9ddc1a6a0a2fedb19906256c9b005ef4d647f858ce9e952420b13295663dcddbca6542a3b15c466d07b06c4c1d4bcb3193e25c95f1cc638e2f8f20f8412a386323f1a15793170eeec90f20f358b8d5704227107c928dd2199b3f36810828d89732cc02c9e42e09764078eb5be9cd8176b260d31b3caff01e8f3dd6d551d6663d81e87ad0317123aa30d6518d69bce9a9807a697379615119b8ff1b7e2aaf71c62ff67847d3c8a8f477521b749c4e07f9a7bbb478b7566084aedc6beefbb525aa2257a53212eff3dd52d0509c2ce214bfcd97dc7a1b885dff9eb5222eeb6a620b87dd52f436e28bd15ed545a8bd79b754103ac939adb52718c89b2a31f7067eb143d505d7de1bf9325ed759018eb9f78de3c03a8b78cc8ddfadb80cd971e62a4e8fb334d4612227f22fc7e5fde50c0b775497ece9c09e080a63a9abc97ce080a0a43c3a2706f4a4b0a45a7ccfd782962e230511068e84e7b31baef459e27959f2fc4c90dcec008e06f9721758719cd5767ff2ca0aaf2c7647589b7a38501e05273c34f19d6cbd8752e86e75ebe37209b2c9783551463e2ca6734b0f7869de3f64bd646786a8bed051d6c02d096077b7b906afb41fcf36f6deacd7af326cc1740ffdaa836925d565369c33d4c460c89f489a3bd14a5dc1537bdf7dd24350468329c69b54580b8f4bc1ce591c9ccec65246c46b254da8e65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cfb0f712bed3a1686b237e087e66b3694ac27a3a4011914b00328940811e88ab636c1560b640e9d4898c3fa819a677cc6e5518c410825f5cbbb788e8b1471eab3aa5b94741409dcf6170a0df131b51e9ace280fccb2146767823cc48c7010c798a1cfad694c1e690464d659f2f3d59df704f9a8330450d22fdef40c4578680a31f23203dfed04846ed6cb2dd23b7f8dd879084c267e9b3f9aec297c69c11bf560885676864022190af93d3c3a59d1805292f11f7e0897e9f3eb2f8aad8a4aee7f6dc15b72480f9fb3b3c1d126a6f7ecbc267af93b5bb2e2b99757ea588109d891050dc8bc2d98eec8cf501ed31b7f0cc41b0bcd43e281b63c0bc8f2c20f5cd103985727b44c0c535d1ffe3cbe755359b9a9e875f5d6f30bf2df052c96aba1335ae0de4c96352bf22774208f6d55ffc7c4be761ba8f2570a3e56f166aea043b211ac17bb2155d56791311c4015db3372f404e59f6ec3387bf7164bc8aa8f3787d9e66bcf18e4fcc782ec7bfd86e702626d61b22ff910b1f1b828342aed5bb67871be540e076dd44d4a0973cb951444e64e25e9be1c1ed7c84d0f359b7e6a3316d0bf69b43d136f7b25b94430ed95a04c685a50ea8f9bca40a86d1496569dae3cfeb128d020378af9da1f59ea26e9e37fb8217de2e97798839b33c203542d4873f1d7dc0840f6b23bf58c8b1b45ec88fadf53c31bb3ee8240c5ba2881db2930f5ca68c1f76180c03f6d5152253cf2e787d52411ac5ad1a24e8bb6078ec62e7e8cf9e5b93676142b3546a5d54e6d32710ee6467454490822b3d682210c53f5c200ad1704d01d9180774664595e65a1730dff01709c874007483d44462d5cc7bdc54e30976c6e319295b12670de80c4d70ae7a428d72d5b4a5e1dc1edf2d942ef014aceac5076b6ba4ae9d4dd377b61318381351e5ae7627e21601eee47583f11f2edae65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cf5a2d090d1fb747489df4a62581e4c02a49541a8ad1834196061cab63908d0a30e3443958e70db4b05b61757ea8d40b33eb2ac22b6d9d5ccb25d15a04fc14c0127385bc83bbc14b58d4c98dc9babb7034afcb3ca07c19c952b43b2cfe1e270ea46ee77c91d4863a066ebe01599a6c7d226ccca9683e580ad6046c04b42ac41437../../ssl/certs../sbin/sendmail../sbin/sendmail../../lib64/libpostfix-dns.so../../lib64/libpostfix-global.so../../lib64/libpostfix-master.so../../lib64/libpostfix-tls.so../../lib64/libpostfix-util.so../sbin/sendmailservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpostfixrootpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootrootrootrootrootrootmaildroprootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootmaildroprootrootpostfix-3.3.1-lp151.2.12.1.src.rpmconfig(postfix)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)postfixpostfix(x86-64)smtp_daemon@ !@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(postfix)coreutilsdiffutilsfillupgrepgroup(mail)group(mail)iproute2libc.so.6()(64bit)libc.so.6(GLIBC_2.11)(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.2)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libcrypto.so.1.1()(64bit)libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)libdb-4.8.so()(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2.5)(64bit)libicuuc.so.60.2()(64bit)liblber-2.4.so.2()(64bit)libldap_r-2.4.so.2()(64bit)libnsl.so.2()(64bit)libnsl.so.2(LIBNSL_1.0)(64bit)libpcre.so.1()(64bit)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)libresolv.so.2()(64bit)libresolv.so.2(GLIBC_2.2.5)(64bit)libsasl2.so.3()(64bit)libssl.so.1.1()(64bit)libssl.so.1.1(OPENSSL_1_1_0)(64bit)permissionspermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowsystem-user-nobodysystemdsystemdsystemdsystemd3.3.1-lp151.2.12.13.0.4-14.6.0-14.0.4-14.0-15.2-1eximsendmail4.14.1 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postqueue 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2_]z3@]rJ@]'$]'$\N\Db[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@Peter Varkoly Peter Varkoly Ludwig Nussel Peter Varkoly Peter Varkoly Peter Varkoly Peter Varkoly varkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- bsc#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- bsc#1142881 - mkpostfixcert from Postfix still uses md5- fix build on kernel 5 by handling LINUX5 define (boo#1149724)- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- bsc#1140521 Postfix can not use ldap tables - add m4 as BuildRequires- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- bsc#1120110 L3: Running postfix set-permissions gives error that is cannot access postfix-ldap.so o Adapt the proposed patch in postfix-files in postfix-SUSE.tar.gz- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 (bsc#1094965) * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/sh/bin/shcloud137 1607526610  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKAMNO>QRSTUVWXYZ[\]^_`abcdefghijklmnpqrstuvwxyz{|}~3.3.1-lp151.2.12.13.3.1-lp151.2.12.13.3.1-lp151.2.12.1 smtppostfixpostfix.paranoidpostfixLICENSETLS_LICENSEaccessaliasesbounce.cf.defaultcanonicaldynamicmaps.cfgenericheader_checkshelo_accessldap_aliases.cfmain.cfmain.cf.defaultmakedefs.outmaster.cfopenssl_postfix.conf.inpost-installpostfix-filespostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptrelayrelay_ccertsrelocatedsasl_passwdsender_canonicalsslcacertscertssystemcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrtransportvirtualsasl2smtpd.confsmtpmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-ldap.sopostfix-pcre.sosendmailpostfix.servicelibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcesysconfig.mail-postfixsysconfig.postfixpostfixLICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzldap_table.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gzmysql_table.5.gznisplus_table.5.gzpcre_table.5.gzpgsql_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfix.xmlpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc/pam.d//etc/permissions.d//etc//etc/postfix//etc/postfix/ssl//etc/postfix/system//etc//etc/sasl2//etc/sysconfig/SuSEfirewall2.d/services//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/systemd/system//usr/lib64//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//usr/share/omc/svcinfo.d//var/adm/backup//var/lib//var/spool//var/spool/postfix/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:15285/openSUSE_Leap_15.1_Update/c7b332c6ed53cd0354fd0509f4f1b665-postfix.openSUSE_Leap_15.1_Updatedrpmxz5x86_64-suse-linux   !"#$%&'()*+,-./012345677777777777777777777777777777777777777777777777777777777777777777777778ASCII textdirectoryASCII text, with very long linesPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8e3b09fae62d20e22ebe17cd013bd18ec9e4473f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ecca24b4dca1efed95be8f88f9a4b5cab8fb4768, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2e89634eef57db21dde958b4e34152c4e2f2a506, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a5671ce354163644b5bf2ab520061ceed704f1e7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f071d5e4439de3c340abe5aa71154ec0e8660d76, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d1d709b0a51859f5c21b57003e0459a9956058fe, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f189038fdc9536b912417b21d1dd0a233601e550, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=fb75840e386e50bf3862a5d1b1b31fa1deb9ffd1, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e786f3325e050f7d6881006fac0133ba2248c03d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4ec1a1436a89d79393927e24a9f218adf2358527, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f9ceaaba21d1e1347cfdd482af2df1a960cf4ee8, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1470b6b761a28a6da178934294f099babbc145a5, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=72ab1860115b6578e352f5ffad63080f3ff2c2c3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ef9191dbc4c771be59fe9fa5c1ac0a95f305b643, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c50cd0c432348a086575271ba6d91870a0085f3d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=146f57da34415b20976e64cd0362e0eb0d8caadd, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9596f9cbaa92daf58d912e0ca7c9e6653dacdb24, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=da18fd2e6e858a2b2df7b23041977fa481141f51, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=55a6d282e3a6ba4663fb3c14e087d834277f0a46, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ee5f433c9d4e9f7ff4c5c38668763d4913d14f8c, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=b5e4d066f851c0f695504d9184dcd13dd3834ced, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=12d974fb63ce4dcb2577d23a2642aa7136036805, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=173aabf4209a996149e1bd6987448b928889ee3d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=de91a071a9b8efbf247e2fbf050a67befca551f6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=adf5d2fd19c97e0c79b7d72b8bb6fa407f8a1c61, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1bd7b4c51037da3bf47f9a5e31102ca19e70bddb, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=4ff0e39b2ffce1852269220c085a3549a543d76a, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=b0742c10b9bb41d90a2996715645b6bc472cc6a0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=88073f384ac90f4f569d06a6180293e5ce477654, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=a66340aad1953c884e09ffdd9d2e761ff6ee8b05, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=e45087445860c29fff0c78dd713b58c1427a9a6f, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=930ad3a94a8476103cbae992583b2daa0d9a0a6e, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=f1f3c0b89c34024c2dd7829fcfe5036939022f56, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=22750d83c61c086ce6e02b708a361d4fa82f370a, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=7396a4738a61daf0fa310f82b4bc30e9ffa7efa4, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3408196780a04ddeb7455cd6e6b2ae6cea8ec98f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=742aed44ac6a124af349180a21c3a75a82ad98cb, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=cdad7f027e2b3db3fdc582db279f7af022807beb, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d1875d080724e53dd243af8ec2a8561973d01547, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=796407d6f87df65d5acd676b52269e256d4bce97, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=916484fa8663d97097c974e03be44f653a8286c3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8f361c7b335d134c4ef34ea9013867825bc79868, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ca45c003bc4af4578f2095205918e6cca97d380e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2d40cd6e77034fad39830e37dabc649447cf68c2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f6ca30d996e6e36eca1d5d1418ed636919690294, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ef770f1d9326bc2892a52af738fe43aab6a9dd47, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f3db8108c69b75a33ce24207219e7fbc8a101a21, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=fcb76cdc51453d35378a57cb5d2e544e3904aa0b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=26ac4a1865d96778423a87463edae213223381b0, for GNU/Linux 3.2.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)XML 1.0 document, ASCII text !(.5EMS[ciopqrst} #$%&+2=AEIMQW]chntz      RRRRRRRR%R$R'RRRRRR%R$R'RRRRRR%R$R'RRRR%R$R'RRRR#R%R$R'RRRR%R$R'RRRRR%R$R'RRRRRRRRRR%R&R#R$R'RR*RRRRRR%R$R'RRRRR$R'RRRRRR%R$R'RRRRRR%R$R'RRRR%R$R'RRRR%R$R'RRRRRRRRRR%R&R#R$R'RRRR%R$R'RRRRRR%R$R'RRRRR%R$R'RRRR%R$R'RRRR%R$R'RRRRRRRRRR%R&R#R$R'RR*RRRRRRRR%R&R#R$R'R*RRR%R$R'RRRRR%R&R#R$R'RRR,RRR%R&R#R$R'R+RRR%R$R'RRRR%R$R'RRRRRR%R$R'RRRRRRRRRRRR"RPR)RRRRR(RPRRRRRRRRPRRRRPRRRRRR,R+RRPRR!RRRRRRRRRR RRRRRRRRR$R'RRRRRR$R'RRRRRRR&R#R$R'R*RRR$R'RRR$R'RRR$R'RRR$R'RRR$R'RRRRR$R'RRRRR$R'RRRRR$R'RRRR$R'RRRRR$R'RRRRR$R'RRRRR$R'RRRRRR$R'RwWXV߯utf-8a335da563a3a6b3d9d621093f8ff5f9dae7feab965b77c4c5506faccf7d0b7a6?P7zXZ !t/4]"k%rܮGVeo3Fse~}&*~ܸ..RֺdaRp1'mfls\Xw:/q"Bn#]®בq={/P//Φ(k=ihqyJ¹b*Fhc~<Jy6"enGSڱn"*<Lv01$ZIa5{=Q>ޘrtp@'"!<~qKΤ~ΙЎhY7upȂw3Az/~3#1P-\&dp hXk֤j}]9U"Lĝ.m x,1/6IM;uYY(QN8 \3Ne nWXt{*u4 (aY3$#aEGiQ oWhB3(^kS #bÆ=.ӏF-Ef_L상g_W T6d3߃_XDU1b o e]|ͻreG'i=PhBV6OQ!X: S8\ױ._;G,TpSę0;(jp܈hX Tcʘ2Q+5+.̯f.,%3(T?>T Ut:E*Č6s8RU#%tganlnv& spcӡe"$."9EPy<_3ވKn{4ZkuD#@b q1al4d=w̿VN|x<ќ}pWukhoK7Y l:Wc_x/TMHD$Xw㘃V$8/u&չ+";soQY* [@啲I!%ԥ_w±¨e=Bk XT*aKvCy~O8Ѭx̏|f#st"[& {e=x_X4;_nmOk~$npDm#?99'uO:PجZ ם(9smONͼcD5lMs$\ dh]_{0?:S2@2B}ȷГj_ >,IU(i;oŭ 8_?/狄\:A{{ܔP3TlC-vkײʅ$iOf&< SA&%׳GFbD D[zh.C=X}zAUM,gd %-w,`xyl˜0xn4# c-:% / ,Aimsk|4h͸ٷIQNz/7Ck+"vA D^al50o\_^ K@GA,G?QNr \x£~D 31\//vx&Us? nP@aX^. ЊE'M.9Aes-Ne1^xP [r gcQ2 K IUޗsG^E1jO62E"SL9Z|y#GzB3ryvz"5lIwmS'xI"6NN+6}l DKAIX#7>f.ȒɖM0h6*c's4f(Q05SvQˆ^c* a0ɴѻ#9o<MfjT(' GXzڠ@ѢLK@<!V,Mq#}sܩ ^3[^pkc7ZBWh{6F|s!6ϢetvVoPq!=Q"5O?!ӝ'R9lܥJC&HӨˈ[0i 3鷿Tq hA;vW(;pVL%I0-,/6`VW=bu э> R mhoxl,zM`拲B{bM0_%0Ƶ38Yl?Q;5҈)e9zEK{]ZE{ ; K)gcI> -? G6}ծWb'$QIdw,uT ~M !܂cA ;=E5{Z?zr\'ׇğ @#=Y'h-BG&3֊e=\"ٕh,Ӛ̅SW0YwTfrέ Y־{\>F] ,+[ٺ#_ܕ ~"EL-x"f<_lrUx$fpx2܃vTdYwZd֍6: ho~zA~iGcVqJeb )\ziDׁw߼L {F3^$%z (O;KZ:W},!3u"v9Q8Mң[&;PIip{RWo^ Yi-:1 rK㧖8KG#hX?{VNy=v|+WC9[n-i?]𴳌ݛӉLtv%dJ>Fq QM0TQ`ƙGn ^'۝Y[Q k'5F\*؞ؕ3TX?r4qi.Jlk7sH7;9n:Iph͕s6AF?| yQ܁NdGD ZְJYJrSXnܝG.g6U8?B;zgVD9np%.aгd2GMrXn|.3Aio\wj<˛-Pf-q/zɉqC46$j$8ZQ ^Qcu *,0K!^N[3߈e&@Áz,N ?s|Td3^F>/2램^Bq}I:xrSؾeۊv 3dbGҘs{9r!ărs?3-ԼjSBC2'j 6L7}ֲdgB(? uѼ0{BsT4Fh4M[ጼ](Kb'? E G؝0cîESmz ^]ŴCc:rn!/6wS̸Ԛ q+o}=dGi\TwşF,jiV!<_גZC>!3\ Z˥)x)cը7 %.j8=G5#ȜkV$DrD:PmI>rɑY} |^rAwyc5I *Ͳ*:'eekΣऩxWZ_D|<=Hyq pPBTհÌk?o$4Q,=_ c`p nT$REeVb X(,OVn٤ZtyFkh/H΄`=kL"s÷P:F2! I?<%6HOq̌m[y}ŃVKwj9(3a\\ ͗ :i&8!Ό?+qN\~`n&4CbWDT nEjKf&*,:_o"=u./L_QWY .-sc^7 p8`N^n=aJjO5Jʑrlϖޗ[yWP¿`}ALG=0 e>սziVuO6I#gm<6kfIuN uMT5-f %I!̡85+:(n(?]ԓf}3ĩbvH}ګ!;Cҍјt:0,~ybeHN)%R:W/WIoz37r^4DZ3YF%+ %EqH;FW GSQ?&NQr"bvPUH6 ŀf#F@@kW<|G[ \I>== 0q@J:KꐠTTf lArof,S.WDܔu?nUSm{C+ ct)j14_a,`WA9 [}̢B!CIWjHaRJZYfF.|<6 Z:e<9&IH"kOx+^5\Qn`Il<`ț.&  <rvf~CvfNQQ-Faj֚e D\xHUDkLdA c.wإ{QA`XPvg_svJg f LMG>nkë&ܶAa١ek¨+ۘmW\RRz0&g!y4^|łAF{hy$$%ܝIBѪF'Ej,ReMuT:b֏[?֛3Z\63 -Z Ҝ7f<ұXRAen߱{Fz2!#㙂`HD4Q8 Iȭ㌆h9`@R<}QM˄Byh,g-0RX(Pl4^ZֆX56N!6Gъ%F۰旵b۔2|[.vgX 97yrO0J*NB,LπKn@2'ڈ+Kc:Wx"7- r;hi 3Yk KA ޤn?Rt781vɴUqsMYa@-Df3:oߧ2!@E]D]Bz#1kE.S>3#(T[8BC!qc^Ӈ *q YOx}-"iQ$B"WǢbD-Q2Oș7#,8 G@ vSܨJ4s11vs$:쌒?$L.HRT!rM*芣0 $x6X׍_/b/wgP1oT0l^c;zQ鷨.!G]Ũ> Tk8xŬM*}q&I>}89`Gos/ES˵[R'mIk1xժ%_[A&ĵ.0Zۆc2up>qcFAbI4xV^Ol.YH9.'UQN ,=z!?UMBG1>A:wǎiXme҄č[xdH1L  2BT23fX;c&]A'd uW## n)y92{;6^}N*V]q].XEm4yX"|v\p/GbI{yIw5d [%||+DWqyqdT;+ϻ$5Õ[6UN&Od.ohQ't`<3Ao.'< ֒^pȞ[0)c ҺiQ $N4*H Ϭِ R;'hib% kLj_\(ppsS[ܱ<,gGqYohPMG϶ڨ $|K-$(n$c #ya] @"_egef{^ L8F+mV|*kYx~IT:-uQ;n.ڪIbӾ>zAT(\8,Po zn.38UBtlUK³Dqh⎬cq*L~FK« oinmrfPb(NQZӵlO8ubfPj"3#DzhE/Rb7rze3h<|`Qݦ_M՟7_Ye&gճڴJڪ1 #[OH/ۻiv6-9p븄A$;P{&/PN">_p^ŝLvnyT{> EK n z.SF2 \|Z 1!_+r.D<ɬn`񤭽5woӸ2: 0u?sqR8h_(Ku(9' aXao[M#K>5~{IM*u87q;M0srdq[Չq~k3ٸ{<dc|Acb8ؔr Ҁ! I4M3eH#*۩v_kD?-qsNg&vg3X(3FLx=Pƺy?} Zogza,_Qo#tX(1WvRPrC!gIgk`]~g8S5Hh܀m=?Z}HIf]?VZL&~bRJaa7`+'_Gea|l썱Лc[8Bu=aKCX;ʎacnUf!ޢ Fo3C`fV&YU~& _hihQ?I:غ ڼA{U͆f W%CH;㬬VDu{|oh)7nMk}ZAyDêpp{s ƯWAZڙj16VfU#;OhgВT#wyp;U2'э`xzr4 l-w_n.^CsYweyH\~:d8_ >7 Itذ Z5Ņ_C|r% 6i܈)3]nR&sbCp- o oSJ ʁ)]H8P)g- 39UcJ0K"BtrJt?Xj}ţ"VC.9.?dp*@!(`WB""I2r_Ij}d)4B G5@'#iݏaGLN_W\cAfk DX%Ob{y'Nq\( EUZ"?9/- Q*UƲn.0VToXu 2t1_Map[hOr߬d:K!K~8j綪C pIA ^Xgce&(zѦ[;Nv\4/a2$zE΀xM"v` 9c4״TzdX}أ( xSoz+S3z{ 9*a\c驜u]Q olK$Tݳz@KB$O5^A8Wp0+'^2pIM?DE\Yׁ@\>}+c5zo,;L53tWub}(oK,N_`r=٦ɮC=HdkWbez*2b,BP}b$.Qtװ1 K3@?Ikj֫bS VW#W]W?0 xT]ӾjlLq?`Cxޘqi;EmIʚLCKV<:xPyI+ 9ǩϵ͞-2mTwYL3[ "KzŏgQ,~7 q7O.)ʖ1 !)Cw4j)qqFgj}B~/1Z/]wP75qN$1 JԝvKxXוⷘ P l8p7 ?9̑>uȫzҗT/[MY;ggۭ8ep\C'~oSUy0/._W YjJGz]VmQlmlPy{ x!aUo^!|u-o|I>yʑBGk T;쫙l-.  ]!(sm[J\_ jI988fEBP6_nl?]85m)cFK|Pމ^|&YH7Պus9r Ft VokB8SXܶS+/qYyy(Wd2DNf-m4N-Qd)4`܏dw?TCx93,xʙ${3<~@e*-|;5o?!pSjyL, z+.ڙ+g%fBvO8(D@D<NMҶWں$StQy{6tL53 ci*LJwDem޴.v ]3m{{kd2MwnWCt6oF&*PZy!.@^EQcojT1xo0uUk&& TC#G!B4H\!q,bu+1}~ ʨGKTvR闸/ ǣ# ]9f5UcYsT3JkZL,1ж#»w:}cd3YXĖ"@;j#ҾlbN)/O^S-TL/Yf3;IoŨWemf)mJ.IFVn}XrauŒ#qXmDrX}QlJb8pbn~-}-Zj1\i}>n)>C9^4Cw$¤c^ˊ=3A2?5[ -j(xI 2!"TjU)HOe7D7dqŏ?.Q]ьA oA DQ(ȐW@Vl*Wii%(Ax*UZk[>h$}F@eZb:b‘b9{&ͻM\-Cip;p? ?#p*X&p q3 lU@ݸQG%REZS@k0zu l)&Lӧ2ʟNҹy+\LX ,⽨ҮLǑA? s:?ïP-'7S(r;go\yk ̸7H`"E!)5`:uCT̖:GɊD(9J*r-w03g=7ua|CEsm1x-O#(e(gyJPA9ÁşLS̽3%*7K:|s y Iъ0DQ%-7qE72h3(3:ڙWRbT~q 0,Ӹ}[#*Nz.u F(Y&<6iU>sb"J׶D|S%_'wK`jO9<вzv**yVilx O)knO*Qe,/Wj 6U ږRKG7F?H{OS]DxiyjLhUn!n5XA[MVH=#mxWByXCNNWq@IWҤ 2pFU2DIe䍷d)t0I'3FpB@] yشmTh3]2rߏـ~AB3mrimjܼ`vZphٵ¢Bčnl "KI>j)Cyw~K+ݼ"'nDŽCgیr?8:=l?; 3/mcyhNl++kQ$ 4h`õ?sqjCyFM zHt $Uq7tw瓂=qD\xZ oz=v_t/Rhi 7vsOD4-IE& $4l%wboVZ(_xk"HIt76$W[\hH RjAk gw2>S1>0Su`B"p';0aq_ZahaV6)F3RRoMˆ(L|DaVَں!d*bRye{>҃NvjBLdXh{u,I[dHTOJԏb$#)29,Z`aK 3?y67)/{M$Ѿ\UrY/*.EˡVB\whN=( #_9{Km+Էb6ܽujQf85)P,?[E\AP0*}X?)p!K͇ffG 9o@ct`IL6rtWL/Kƒ͍7Ƭh :&WAtyL1yib~ʥ9 >NQEL㚁\WIdzn?G}VaTtN' kx_ul7 O,k\xȌ_:v*읾-4b!ZrCbNg*QfQGj{&rVWG)CpZ˦/ MnvX(!JQef~;8q#Okך aGEXhs2Bpnw6bG9G6 XR]ܨ8)L_CBܶ9ŷЍ9BZD1x4ݷyhz~Q[˔EH#>7'%O' p@j`pLtV!NkʎG/{'Lav؍ Qۣ L &{ Fܶ~C.& zuam .#9*Ij3khscD b0u)"'1kΑޤɠ Wk,r>g^wljg<˰Vǩ_0>w/"]vM6P~4 >-uuH_կI5eGfiBt(Sn U\ znܤR<SE= t] H Zgs4%H0la u{%ڂEKoxZJn`C&5j;IAKر;^AʵG/y -I(<ŀ-w蚝0"5d@Yi4@ϡ@uY:klD nA'˔u*]Afý.,Wtj0,inp"xTd @ho `*ëEASD] /9?N9q`qO&s2?؄ZYdv֡HAxѣxam W:ËHݗi:IDi=g3 0YZ 7>Î`2f4kBVd_3V/ g2'OnG0c{,+b'|Znz Jw6ѥr4_XCES4<cFMgw(bo  P:Ƶ;5n]j3O[7@$MڦA'%y"F &8b lXk4OJ@7gq97zf+]9) ~TƫFac$Mܷ]+eֺ}(ov\V XgZXbm %;hջLXTF_^yqq^I|~h8m:[|tѦ0u"{,0H,,78Sr0li@ R2E_AL%׭{I?FxNAxnknHf<$3.H=K &}b"ey XA #ws4,k+i XtDlP/I`BN*+MC/xcP-ʨm`! Cr rY1sjqrכtmI%bb֛{LҙE\l%1t:I~P6+|G{l‡JNKH>N"nZ-sNJ40 Aǃuпrxb7QC_J'k3g|HY,oC&P*3Cjђ }K50Cb,(&v"/4YwWb:Or<2Um:R9 ;ik{OzBhݘ_p$z&q ;Mdir77&7Zm$U]CG)= _KҴ`3O܇u7=P3gjqo~z ^&Rhf{4L,Uj1'!@\·k&PN+QkѯJ- z܄sūxؒ1QlrF ,O$;eFjY~1tCʇlWE(KS#rDy|Jr( *N]3e/~S<6OBK4)(ͧ[ 2's֊`R`6"j5& +W"cK$g!1e?TʦHx"!j+PKy_3T졘-Y6bIBvj ϒVs8~2fFQߎL9 .wu[lB`Ғ/@ 1m xIIIܝu 0Zke=-1E ^ BvNw;l7+ ?1*usAhh;'e'M:#7"hAi1K:l(~%ެ MN5SX{t/8Md +Rv\*_-g\_xEtd#]r)mbL+V5Bqbʜ4=AtXy.俶Â!f_Z/\.vfZ sQaU/9t:n"kZ D nj\D3N5@ÍnɰW0*$,z[q xG08|fno-lĞ]2k̮{這D|wEm0>EDŬ@ЏsAczaf[0ב{dvp_{6ycݿ';ەn`P S.fޅ?_ `Τ JpUAqyw%w?ϥo?upUG3X'UZr>: 6PR`?¾.~N/Zt <=k K&14;42o]}ttη]?><6B yLfv۲-;Kdawm_Zu(\;x tBBgo:>12Vܹr䖂^u;am( *J aцahg=.^Q9OV]{B+5qbX+h NνynXRݞqy@ro!k GyDPmQ-;uU3h1mݏm^hQuk@NGez0#>oTSVJ7?S 2nD$acCP0-):Ts{ݸycP:mZ{#")+;ޫ :KBD9E*VEG,֔)D$Df"Itku { #c)*GZKI$Ӭ~uo4s }oP[9-}ʸYShƗxHܳdNѭ gjA\QTiM8vSk qD/@K-]/:˭ сD:9fHZ0vZiPÈ$c;;ysVKGg 9dhP ]r,:_Qs4AlGc,W}b6>L%XI( RJFDP3 3*ɶN}!V-zx@7* E\rUQp4d}ަ98DhW3Au1M{֭,MDf]w{ ^Pnԫi`.߳ZIySSsцH' KZ ;JztOb]hҕCNPݾJ8 rևw; zz/a:UjhGA (>J6ƙXm'@hJ`@QSЗջg@XC@j3h֢kNTbMɐfZfd> Q1ys\dE@`z7ڛQ2&9ɹwLoY̺)POSTy:*_K]XϭCyTd%,}eäNbjTU9]^JDI4|yô1@xum14tIXǣ AC)?xm飈>gIORstaݹz(g5*c|30qvg BQ@h;%WFʻL#WiOg /Bw i-;һzaJB0.&oO^q33 o^LEu_MEcLpjQ,Ãrwy9 Z`럿J"`'ˋ :4`Cf,ԙpu߿-,п_Re\!x "h!ei1,O*1EPSA$jW@U4L>Ml02Y">> ܅cympkRʗUhA'#C*o'Oá]㒩vʩ}Cg,&q%<̄u6A.R %Q$:Oz%3LϭXɏxlwj֦2AO5P RrRSYC U ћZFT)J\v&&k0 WD,E,,]EldW v2fnkQ.O>T$ T`tZ.à6g S|il Je龶=L=1x6RLXKlܻjeE5GMCLڱ@UƸfP ߙ4'R6VE8hc9 1)tP.fSNKB:Yk̓ߋ.5!hUUMQeHcv62D8E?&ˈm޺MX9e9|Ru"hs8GJBJ~S<;ds9) 5|O|C7-N%()كr)n9-h1Wq7!}&3X wt1>]__0erVKQbqOgry Mp'6@*hN> ļt,7E8Aêh.޺mPy536?o.%E&魀D bi9abm_ۖ4ˢ-pبe&8#KfL&i FL({a =a{$g'QIޕA|qZ5ft[9œŊǭ,82Vvt.oL)ld[uEDwuޱ~וvqÕq.{vK(b7 Z0@Sw@w#H3// ݦ16'1p!EzQ@nTSgȰxGLpDm-tdtd@E褔iwNzr_^\Q#D?JC.DK3L@{jJ<8{$e7 m|QjP:<9 0J(eF]h`IG w3AgWi2}z(} z˒bNlؕ _xtP_F{l.0ߡK۽]9[frg>NZ9:H~0y'2D:i1bZ'dDCf@ykFB^"v+bZsRLz{d ]V2 "_v):(Bh 0<„_$9DSe:Q@h7·)td~mAUYʊe?Ka/cQ`UYQcpЦuo /W揄wvSNMvlȚs>&Әi;JCW a$\߷') u,! ~&Kd}F6DOFݳ8>6XX3 =kF\>8wud_zҞ~2PBA䕚m<_C4˙frI:jqŮٸTis׻? cq%tp! N(]'ϟ%lm>7LKGT1EcGrpwqWã-~"5kۺ"@+(%k <:)0 s3iл6+Anc:}Q5ǨMGMi3$=)ߩiU@~v~79Ho~?娢˵TK4kInV<M;s ǀӪ>.ϟ Üޱq{zh6J]yHp٨).jNӯQ\yVQ-2[= ({J .[rQX[n'{ Lo,nm?ʜ"UpER?@K8鳞m-|=%oK@qgQ>jӢ,np+Jļf5z[6_((|sl߲a)@}yǫF׷WyC^PoR#fxBBtiBɃ뀾st,Txs@i! 7MY;| ?~Q-j#ܘP/8˕ c k]PzjuD8ouWo۷)3,@4ԳzkrV|{JRIGWF#x27;5?]c Ⱦ5K"L .}4 +Z3UB']1Yܳ"5oQ`xG)\2oQ7]mt{&V AJK;RIC{ZSdžcQ y iBsdj[)e]aVU&y!9Γ=t:TYS.tA~GܸEĘi.OwO b&eB^0Fj\ o0iJx&~pTqq':qߣ+XBt4ʿyv2S;ɘ?Sw-kw3Oe `emo3OH", Ox/@D;@LDUalY+J kPUP Q 0߻KcoҗpJ>H o,Fpn|F5jJhrs/@6M!jY4&Կ#zsb~w&l\Db6v,Eڄ8KkiJ+p :]LHM3-G\Mf,%/WAn "f;,\>S7QDtP},\/[I*oe,|ζ1$LMz1C26I2AU:=uzt}7VW!@ rtUFo3f5$zΏHى~5yg]DrH[u0vL1F=?Zni{G(=O n*%`w-$wg<г?BI$}x+M$Ir:gE[ 8ʆ ?6N[̃ĭn,^]ʀQyGE爰ϸa:k(Ҕ T;k]xM. #g͑zTÉ@iF\(ʍP0"E`O7@)s^M봒:-XeXMȹ`ֱ_J%Pu0Ƽkno|y R5nɻmAu*6t?6ɵ/+e،P0V7祒~Bt!=d n/B0MZY|;قi7Ȇ5I <Ը%U,}`7ܻyal|彻2IA l;rK_+6SS݉;{MRxl,S}*= iKZh#W% ܄~bz~OvfE wfrw\Kˠ$9 zDM$߆8X(oH|t^VP98-X\'P*(nqn*@OZj߇RfJ3Z7 XlT ئ8S('ȘB;UAJ3sOӎhY޹?tn 8K%uP(vd7˪T!j\:4UTMFv3؂KR4·υ*Yk5KԹuV ڈ ?J&B@ApיmT}KKh4;@w6ؕA 'ƚh;bM*i T{]IQloB -pz-`RLĔ"|,"5۷8Ւ1WN{S/H+k JM߆wxLyKs) lH4bբ'ifyt%3h?qNsz`%XҞ1gq _^:0o] y~5>"bݶ_nсm{Nջ|&*Q?m14dp"BOu1{SS^6Eu]/cYZXpׁ}\H%W! xB7?Mw n]DY֔+2$pw%k|&coN Kg4kWu;G~L;񌳢,_<Nuc:7BC88*gX;,>b"6T 4q;˹^5{Rŷބ&IEBҍ&}:f=^74IU9!C H%|9>`٩mƶU~3`﻾|la~$Y_)f2Fzoȸn.hO咰s#.݂P4ZbެWZ6Ph. ƘS(B99f7>A /`@4R3S@ uT@MTεCr&?Z`E8F)sbIt-~}ZגaqۧuZ+%{T 1VUX'?0?JEB'ZWhRCkcT+$Ve7lj:N 6AJ/`$_o+xDxTmХ-ߺSgo%wpsGlLS8S2>#)_wz-Ҕ߸:xO8(Td`i Rry =o W͌:d> $|Iw{R?}y8_<9F-p:=[O(YFH,u/[mݗjrjrOx\Pa}6M'ي1d^Jή\v)_R$ Q,%]j푧&bV2׾邽N2Bh( YNY.LG,!m/MB^nq5B(/F8gJ_~%tˏ;1y6r7i~Bq'0@G[nS&@ 5.o25}B,盱.}xi ~.nPUcfnl7q-wa+hNVj4jMwVd5sA p(YK,?f ɽi4cX ޢ g$uƗ8I[MYcq7QhfS+@q)5<@iTH{{*/{":X]H8|&UB/H&Q4r_tOcEب׋އt_w ?L+!57B+Ƭ%LD3Ri#:XmfQg z>'GB?blx28tLX] H3k%⩟ΰn3Iz[H2\tiBފH4S"$'ۡY< Fi)p;`R!1Ѝ½Rk~F`q,seS1b-KUw X t U-Caj'ꞯ&W1rJt{b M70>7zt4TIkWDj46ʤ#Mϵ kHD0 yӘm-FBF"x0LIS͜XIG%N ~k: Y;"rE4/d J$`C1*m*1Kݼ :CIB|BI]Ę>^4aƔ~_uH%C/d6Cq䝳Ot[[ӛgHz7"<ϐu(\onu HMnzR \ٗ3O:%h_Y|X: 28p9yp{ adg|SdKn+b̗Zc.3X#`7el&af^Yb 2_%*I7AJ9notLDu37ձLXϢ:u]([ޅz}gˈP@DM)i"=I5oi7Om47iI!{Wv欮2x%9lZ<x[vѕ)>X]\Dm TjoJY1)R(L~KG|*M~6Iwȕd_l{)?v&zmJar˒:^5&vPcUuH:9zTzo72!~W,Kv䘀yS3ft4S)ؠ'[KuzZZs| xt7 p,S@tDI"H~ot_Ŝ7!eA\,GŤ !<*kYڗC@i^兣z VATK2 @3-zYlCECD|0zJ,)OjZ~>n|^JjQ<ѽ?>f}>%:˽0{#1NO7 t"_5!)0/Ɇ[xP=m}GpBVk5s8x 2R@G5^h)'iGC vuEmOan=uy8J%#dV_ (VQ#gҕoo1K yjp*8և gW{P֎D\1H i [ >$:][AS 55-;I4sҲR׉|TG$'/`ޣsa{[}M1~ ޥ,'Cf3wEeY"lLi3_6Zt~ǻԟ' rp4"Oz&o~3&$;U#ֆxo}B=C b5#r^Q;h iXĄF$IT[(^%k7gEO:IM­HbBNԋ+c nұc3 ؟:B`uBXrZJ:r$b 7usjrK̹09!)i(%j> {@7`?4UwD?mRݟd  $(sB\DaE({%h;a^` VZ٫®$Lv^ ;>$k٦u*`+ߍ`i JOVco{xؗw Vء%5vdbOdyVSk藦++g}{_[S}ZWnQ%}Ǎ/"3[0k 65 bW?0P! S.ndCa۸CTɓq,{F`tD2 S"JɼGrg9zxd\" # _54C3XF^Nٞc"p-R\6A]x_{Ջ2|H}=@?W`(+\@B B$㰮kGWx=2dU%ҨTE V1J&epsXw\PKS+`^}*d,0,'ZRr/ܳqYE5VJϸ700XET$Z1@8 k:@0l-=|ퟍD?a =0&(JSJ &OP=ľGwd_L >")}Y@C^Uلj>CCGRv, 0dϙ@yVCx:;\cG@W_s^ڍ7\ &SF |[gUfS7ySmR E$^E_,\,"8R @6]% jzOA'tӦXZ X=zz{UM#54NoYHnerI:U:DKg9>"'CDt~p'!+GǗvQ~#}6$JzUg87- !O|JnV4 Hl yi<kdfρkK LخS x7CIF,ʚ&Ϥ]:CA[sǿehF伕9bnW`56J;x Hf-‰@հǢdMG`ި az.`0(f5kB ~B۩f 7ԕ'Pzɻ˶PQh=6yIEgTxT6힨'oPQBEGxmˈ4'juq6SSxT`s/^GxEގ*Is~ SzK orMlXH Ҭa ԻT[_V` Q6Dn"8yh75?$^Up 1u MAYꤾ ӊ9ע}i2LmBVڦbS4ZsF[N~ZH-J7I٧T=6ȷ(pI w|e^x GT2@ sҽz 5)x2۠@dxNX_^K$.vIER,禁81cEWZd!MEI3K~z{ϋp#nƷ'j3WS*Q~;|/L_}z eUo)c'tL<-QDh)íc1L*N 6m~YȦ(rN 9A[1f[ׯ VBHUö8D!9T%3 `8ާz]X[gM4l%a@n0&X^i7ŷzX˶=xAzP7ыbph9@;!Ds,Mդ=wK#ȉ1e2I!+,jՊ~ƾ◯|+yt݈rt!4[3N˟pyz{"zѽ\Fmwxw:zh-=Ě?Br8l%MNgz--X'3(]>pbϳ-}g'U4 3((SypE' 2jbf,L{@ /WJdJ=i4^ԇ9ȓ&̋'N_Tv@r<*Z*i 5 ۂVybKk$mG6"ʴR?Z"آyv:qu4.{ˇ5P7Oz9=* ِ7Ǭ[ko Ůlbx ՝|?cgUOHWJhH3O2!hô#Jr\N Q*Y/']={0֦寬WU] 8KvL'ԸsjcJD<~㺅 %{noWKHMmd"_.8!R5nw LW ռ:\[@}cç…([T0`  R|12#U;x~BUS _ubm43B&8?|gʀ's`"clY{M1.3hZ.ko R j'f<*qZw79/v/s,mG%]WIݿKCJ5E1kɡO T-M\+[23"yvF۫͜u%,?W %=z=ª5$[pw_.e!ۚMy#H kFՊ9\6>.ߣyPx~?bēg]z&rfJU@]-Gڽ|x؄@SRZL=Ir>bWx+WQR^ W%h$RaL'BE@AQ3 o?mnuO 8NѨ6\! !!?J@LJyN@ gUh\`sjh 8f];JY8 {`\WKHC~to)/WHyiZRTǒR_P&>lxpO Gǁr%=bQ`s0VѺ򞠣$觎7\f%cԒ0wCr:'1[ ٙ~-_OՄZFkᕾrqn}gJѳ V?J@R|[/FŪf[/=vPW{zY2LJ~=Ӏ.Bto; ɅjOr=Tq;]P{<MpҴvxl /7Λ@b%M:ih~% B'#WAAsiC&[Z8s/%g  .W hHk}>?rtk3@^Kh 3̍s>c_AB[VFϫzbIh1kݏzc4Ȼ/Ql閤01Dy\w2.XYXI2.ѣ't޾P5udJi"kܼ+"U'YWJqfSRq^;eX? Nl&-WY' Z7>+߻V}Z]yiD4f|?VG|C4,r ҼQW$ZWGJ+>K"hau`ImS^$ZwN r(:;V+ʡʷ,(;w->%N&CΎ$LZT&~emm(CQFZ׎C۝eK JN;iF$HfXnm(v#Z< 3 kt%(FO$kKTʦyePu73hLGN`1BU9 E˩ XώR#mC[I@+gFӿ RdD^ju9@AT7I8:uVӛ,6'OmMܔlDaSg9Ȃ;pVHiBuz3Ȓ #тbօ"E۞|{?UKH{pK4h/B##<ﭳi?!fP]XƢaBeG3ox82P C*liK٭X\ `&|EZ #V (K V'o?Qs =J #Lh*!P0V}`DRE i@v?4DZBe \6]23Ϧ! Ww[:[un u^8~aqY*"3|ԏ/~ۂQĖƒ90'( Iy5gX=*n;_ ;欫FM86-8K&|~S]+\iBdjs_N"걋E̐ΠUGSH!5}mW@. צt QXkxxX.&5Dfzm<8Ǡłiꭧr׺tK 1PŌdۀ3{/v%v6 czK~@x .FFEi\2hݡW֓}~6S9KwQ&^fto/Z^p݊;i0 Xلf ̣C o26;PH_7]cӝDx7?EʑL_[S~5 *c 80?xYC`e7YhJݗv@0#`i'jTkLV{4җsccMui  Zo]˓ߪdprx-f/+OL b~":aHF;onɡ1fKQ3Iy#stuWY\Ş$9x}-Z\ 2%jn?V #j JD~{.Ie*: ! *&*B䧚V?*\]_P, ozʾNͰIB)x$TMt9 ϣԥcN"RוDGʺ?J&_ïWnCQpOh5hgTJoxS̏|yY~Y*Ye ƒ&O O.snչ;1dT9E:V{㴭4nojNVK8&>; ञJ|6ܣeA^<9;p)®U9rLy}kxȌE[6 bPlg)z'w(vc>f2_q`N bzf=D wZuzR 1vwlTSƓȐrTJEuM߾msn17xk7|-iԛ:Tq\u;[H` Guad=y?vYw!|7ɾq̫oU!]wC{D+w4 cĀd7h󍉎R.-U#.yѵpnqTg*ln;ySJRA$38IbxǠhi!@ua"ݘ ;b ʬo["p(J)ڷv\zAe0=);]JAbhh :m&#orGX߫-P^,[Ns\XZSWiC64::)l.'^M#QrE(UGUZom&'h࿕Y'KN۲вc!Q$~ FF2ɓ7? Rv5y|IK*>ݷGBXb!7S4Aϕ߳ ~Ve˩qG#.4“4k#L}[-c㌅XSOe(HW'^xWoz L^cQrdxif8[Yh"T&CےH{s,}9[1{c5kIĦOKIrElO=@f\kWQ]'" `[!#LWr瀰rkD]9T dC#< "q퐬pȼDSZԁy`]%6dN[0PV!_jLX{Gmɀ#ס!BpU3 ѱj*lA8Ĩ˚N>Zo2=tFat+˾w#zױ:ZnLCpEl0qXGPh*`rާl&2.ˆ,r`M%zy UY AT&ꕶtYmMxevm-KeImOb&[b-ѣIЭ`7ߪ.͘bY L'ܫw{ ˟ {+!N/"Zh/ZF~]NbғNTl[4;災Z8.?R̗(M?TniVdgX2h1Jq$q*|nkeB{P˰o !w+v۶_8tjxpc[t'e}7ԮM˗ ӣgo@gb;\42jrta}r2 8{cyql,|-+|7_9cǡN:;{XZ#?AP`>Qd'Tcڿf.I vS?,Ė䪞Eϖ/)җA1T2Nݻ,iNĭѱF{י=1s^РӺ|f߭img+JVŗ ͈tr᳤1>$_ը&'ޘF% u[#яc%e uptسTZvu Ad;"jt+ ?n.#Dj_!,zQHYƼryW\lReW[ K\?Rj+'l?@UwřmgAyXz9̺T([-[m !EJ7 6!'0.H1TO\}z~cg ZwF)<8΃A{D)\x@cf3is%q;ىx!7=1ffgKfw4+  !$3 9{ZaX6[Pg:EґŒ A)jގƲ?>$^Upx"$B?@& F~F>X.̜➕T ު{vkO ^/;hd"c Y@ G95`ev! uNٖ$yy}-,~}X _ȑ/f8}72og(˫qIlM7JWB”oHRӕv0{ٷR4NNMXx`p^Hk$ȞNl(L8%(1B $1o%>?ߦ7̼1j{E{rVLe: fFOG$V#ѓ*h3QҚdKQ&cהppSФUTDRF&GuɅ1F»6"q6r3Kٴ ,H@p>a2LT^z3͐^f,K{}͡ 8j1DXlV_QvޅH8BM{~O җ[cISiVNxqP-D[Bs˞ /drRv21'Vyj I׸ۏvCrY0Yɫ b> ]i69EOS d䮵BQ,)zEFhܝȫiy녌~d eq.^ߑCA' H+?[nyT<5ˑ%Fl z'a= Dؿ%{2ÔP&x1)Ď/`~JfE# H#xOݏ2/Rg Dby^OcYӖO}3it#:k 6/7Ex8EȔ&x4N =L֙_YI!P#)A ?tr,UrC؋g-GՇ ̤"Ƚ\[1ަWۉ6#ڵ?!UJ4Q_!OP gJl*!W1Fܗuٳ|bc@g:‘[(c{47d6d%W `vf-Z:nWx&tu #K_K_[ן;Rʢ5߶1Uܾj{no$Is@-A!n@ cܭUұ*Jmab^kX B 3rTlbdre&SehYKa%;r~5:@GMx̊Ip0zH 1H,D)C뭄Gy+ Gm*ZQ|VDlbvG8 [g 7|A-pO Z xU#axλr5:I(=8xȠCy:2*%Sk^Q w|\oyWnu@ yC8n:ta"(9pD 0N?HAs?]㞱2g:6T@;wB=eOZ:4[QR 'n;}"{V[G+\]Ϫ@ ݩմzՁس3W %WpKHӓB]EBBk S %eH~|QWcz?L?l09ϙsu?v"6&1eB-%﷯\V95AM1¡xnQxy4v !Ң\]EN0 li~! 'KðYMU?Iڜsn!٠SJttE 叆;Xҫ wVKv/r 90aFG\#&@OJX+N0[Tܺ'4qM0̋"Z!EzK!1+<"k0<0L'eg/k-6=n0N^2C1ۢ5@kIQ;<< ldAa+EU(\fڒAHx\zeACV)?- 'f$ͯ= $0|E 3ZCzL׊Q>.1 dG.g{ش%9wͣ]Zd30t&D=bH9zjDoyc0l,n\>+1Q%'D7k6A ٹM2)0Xչ@J# czb*OѫɘAp߉qg&Rȓu9A8ZT?|TIMB ;qtItcpDрHhnYt+b,):R捉<|Q &cϗ,sn Q=#g6|(_°Amcv}0L [w]]J|6xuyEw"i/%sf?a ֖prai?)al]q 7[ W & !Ip8t_cMZ0=“TkB?oubA&ezNiWRڒ=ڤ0o.gpo/v?'E4&*9' 72u3o`67mqU(oLL^2_fQO&E`=!MzH8zxm;.L^IeYpirUɰb9{F;- ~)hY~IͷV>xB6V&̓Bxr 6*_ϐ. [qmm|."Q9ƴHnC*&Ì_n<\%qȆ#Vr"5yP%Ϋ5>6q@ 6Av (.#aWVĜoL37POKZ.ﵽY` Z%5=ݔ^qQԤ8Hpw#5o>ʤVi,}˜|LG6vDM>k,M;(c)$CX3'#XMzHqe4^Р4el\tp{Ud7 |fgVL 4 LG=omߞU[JdtCOI-Kq=}IEj Hm^ | ,cu"R# z蚪 JseoN\01-ϱF ?߂+瘔hP18m4x1gJ#"8 ˯[s䤭#:pɋXX &E㨪KbEp-%ȯ%_\,ݴZ/lO "Lj.{ajRԖKeQ^{Ho=MiC]@n܎ 3f@HUrMdEQ(@aw,䞣BAl^74~g8Z>O9:sZ=p܂-+)INhEYe]xx[?=ɐ'p0WD^$۩<*8yi=ԙ /+ȏ=F E⛋ʟ{f_,Q4V<" .qV꾮WHyy(8 #ſ#It@17-2 \w>dT$.om}W:2J. NKEzw.%qmz(LF,ٚ* Z;?7)u F^Z7idILjS#4lXV[h^O?zFX6l4 ]ﶈFw8 /DOo^lL9166bA%cI:/\z&^cq <%.{Q*%C~xzgu͏uTzS0_mK] c/|*n,O_qRf"Rc(hYR߅n54lZbڝ7WZ(ߐJjHvY D0SMtu]yI* =d*y\.)ku$3@_}])-*>k<"yԉL؛*6/1~ƈn4K2bܕV&9tSL"Q6\`%Ia6)=AM^ 3C9}[xCo_(DVRI PP G:ObgcMSuJ)?Jx\ b,x&03]:Uj;W;?F X g;8WacK7"~.R2 e2   $^hdIZ)0]iH{yq !vO(_MR"Qj)%j/2,rjZĵFq{*8}=kzQlhaQQ5Z0`4_ߖ՝qs.(vQ4d2:Zb'x\"ռ r&` eMGPr Ǚlf傎DBWx %A,{G&8f9ܼ}!vhbxj:8#`nn!wJUءqʼn$\ԩHm"D܄mg"ڧvǁG4:R%@O;%pWϜ"Go$w*FdjA?8v킑=JBOzNzA{t8C:{Bx xHD7vb?jZDZ>m`:ǩX̄4rrvha;"X >Dɦ@cci; 3U]֝Yhos-/4):obtmvv^8'`fe_\(po*KhwG.UKGguO0 k"G<#0gfTz>D/ jb؅_jP䢺#nDE$k!b|v L~O^[{o,HhlkT>;.;V@4hƚf=a@lmG3篇L*Ih@Kec+$*yv2鱭+-tN$KE5,Q ,;:4i@&c5b CD9eFfF(CfEUhщY=e6_Q5!aWHt-Rc0{f^v"U|'.!_&Ђ3*9fq&p0P8c-7,&p>\᤻*EcUZ2bET8`IJf=T Pn. YZ