util-linux-2.33.1-lp151.3.9.1<>,__Ѹ/=„3nhv˄f"]]`oXšqҬlxdQ՘?Ոd   G /8I bnP  # ' -d {  | hhh(#7*8`9``:`=0l>0t?0|@0B0C0F0G0H7$I=X? Y?< Z?[?\?]F$^TbVncW,dWeWfWlWuWv^8vwTxy z$68<BՄCutil-linux2.33.1lp151.3.9.1A collection of basic system utilitiesThis package contains a large variety of low-level system utilities that are necessary for a Linux system to function. It contains the mount program, the fdisk configuration tool, and more._cloud126NopenSUSE Leap 15.1openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Basehttps://www.kernel.org/pub/linux/utils/util-linux/linuxi586 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 raw.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in raw.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-util-linux-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-util-linux-update-$service-new-in-upgrade" fi done for service in raw.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 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 raw.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in raw.service ; do if [ ! -e "/run/rpm-util-linux-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-util-linux-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in raw.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/bin/wall /usr/bin/write /usr/bin/mount /usr/bin/umount fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/bin/su fi # # Safely migrate PAM files from coreutils to util-linux # (openSUSE 12.3->13.1, SLE11->SLE12) # # coreutils with su were upgraded (and su removed) before util-linux # with su was installed (see the Conflicts above). If the admin edited # the PAM file, the seemingly no more used modified file was saved as # .rpmsave and the new clean file was installed. As we want # "noreplace" upgrade, and the contents of the clean file contents has # no changes, we should restore admin modification, and rename the # clean file to .rpmnew, as it would happen if the file was not moved # from one package to another. for PAM_FILE in su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmsave ; then mv /etc/pam.d/$PAM_FILE /etc/pam.d/$PAM_FILE.rpmnew mv /etc/pam.d/$PAM_FILE.rpmsave /etc/pam.d/$PAM_FILE fi done # # If outdated PAM file is detected, issue a warning. for PAM_FILE in login remote runuser runuser-l su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmnew ; then echo "Your /etc/pam.d/$PAM_FILE is outdated. Please check /etc/pam.d/$PAM_FILE.rpmnew!" >&2 fi done # # /etc/default/su is tagged as noreplace. # But we want to migrate variables to /etc/login.defs (bsc#1121197). # Perform one-time config replace. # Applies for: Update from SLE11, online update for SLE15 SP1, Leap15.1. # Not needed for /etc/default/runuser. It was first packaged after the change. if ! grep -q "^# /etc/default/su is an override" /etc/default/su ; then if test -f /etc/default/su.rpmnew ; then if ! test -f /etc/default/su.rpmorig ; then cp -a /etc/default/su /etc/default/su.rpmorig fi mv /etc/default/su.rpmnew /etc/default/su echo "One time clean-up of /etc/default/su was performed." >&2 echo "Original contents was saved to /etc/default/su.rpmorig." >&2 echo "Please edit /etc/login.defs or /etc/default/su to restore your customization." >&2 fi 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 raw.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 raw.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in raw.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 raw.service ) || : fi fi   rI |&e%U&P%uuv5eeeU%5UEu%&%uv8v5%%e6d%EeF4U%uuf5U$eռuUuU%+%u<%u%%5E&%5E5e<."sO6* {j /@<-W~5I4189q  |{)z[ uf! y  9 6Fo FgR 3 I a %A5 $[  !} @ 3a9 f n l  h o ;`z z%8N218'=R  2:fgR#72 Z*3&  = UKA큤큤AA큤A큤AA큤$$__________|_|_|__|_|_|_|_|_|_|______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\5ș\5>\5u\/9\ Z!YSYS[+vYSYSYSYSYSYS____YS[[[[[[________________________________________________________________________________|____________________________________b6a82cc3ff995a1a16516359c7b0fe2566042ca73dfb1abb1d39a7a7e0b82f2a2b8fbd3e79359f3f346706c2be23404b63a13dd283ec2844f58c64251cf469466f4ed753379ef4cbee5ec667cd35a40e48a1b00564df64b6b1653664184e5016628c28f88b7581a346de64b27527443321e34a60e80df5920ae9a43777c2fb93c3ea012930f7f9f2b9e3041bbea0caf731a5a613c3547addad581b7c209592fd6805d57719e0c228934166892750c278b222c2562b31f2a225ae1688614dc8a552b4d0e84fd0fb35e9263c319503e81a1219c7e4b52a6cd68c63372d2fa7116194b45d97b95571c56c29d9f5604503fdabe4070df1d5ef2bd159d3c1710c370f3266800838dd16a28a315517f0ac00fcfdab774e062087417548201fc8bec1e83a8fbaa56802f5786cb0d63b4e557462179bd7416e717adb8aefda9245f9a0a66305d11d5a4181a7026f3dc1d58f688a6d5dbbff8cd0b0d13d206e4473c24079e87b65aa9d155d4e2a397cdc9403f94be3523b483378089184ad57238aa1cfc870331552c76d26d120dbc037e872ccf09cca411391ca8e91be7580dc9cce1a3f458e02e144bc8cdbbe61e259abf9e4a7e02cb46c9bac5df5fedb8deddef8898d9b69f5af46097bd553372c56c2d381ae6a70ba167c4d9822572eb4f56a9308f7b4c64a38cb43bf3962fd54c1b60ab200f8764d69e733684eb62b637b79f837316c38385a70b608dc6b016b50bdeaf9fa53431fe67caa97ab29e55c3143eb8a547eb2754c77183e8a35aebf836d98723d14ebf4111463bc5ca900f2be006bff45b64326cc0fe58a45f8f047c747e96edb52a5155fa94b4f2769d3a583f32613576749623e3bcf3490a9d670c56c6c3e787fe0f5ae6e039a75f62ce72eb0506db6493c38c575f69aa0ff924734ee780e0e7ea909aa52556ea4073d89be4cd334ff9fdb30c581aefd6d2e8caf7e7054ec4f33ffc6d57290ebb38a62294583979cfafc1924292da749f34453b2b79a7f8c6c9594ec605df70a29c933f416bcee5a20d36ca5d7728cd0d8941be1a38c8a96b46b7f86e215a849da6e1109f251f6d092b0a6db2f34e19ff41945442f432a3a498c36c4409f7097f57d44ba3dca1750a3c6c87dd8a2783e545023020d6fef0a840e4c89f5164e1423bcb9508359a7e6383b62cf74b02987b5cf705d6719f56a2cf62b203a36e6c4eaffb228c369afabd36c8f735c2486471952752f38ce0aae92bcdc628c399c3fa24bac356ef2abccd0899e15a20ae93430f3e47cb22c82bf17e8e7433e8393a7d419d4a2ee8c1d6226144c455047c4672a5b8fb1349846d132dffdc6dc387947d6201f3978df10937ac6e5c6ac74f2de0b9d22dcd4f01752154b7c1c733d6756af9bd3b9884054554db9bf65f9fe0fc956ba2bab95ba912de8c834b3a4271f7a970ab818deabc017bd040926dbfef7069e485e5784ce4a794e323edf72c9e92c5f990275d1b417ca35c8174ffdfc139ba0433be99b92993ef38789b1963c2877894a82b7fd9ab739e7959103980ec51d2ea0e8b87fffe64b153cd090835fe4186296269125c771a7844391e971b1a2b61f921acf0b32681e72d0b05a104fbc9c9eb1a427c1ae093de243fdf423e736a93c74e70e0882f0e780e53674b0a3ffe5d663b058ec8cd54739e294f55b1f128f98038f5a4f9c39ce05b3f09a56ad3cdb0de4e17f1a865f3f637ae7bc7a01f56b966902451c614aacd7b69f9a894fcbafeb0982b3513a8a992f781ae0dcbad4b194cdd03d95cd9a6db728d1bb10905f5302ec56a56744a96280d8a8013ad85a2c33deebb90c57996b1c20f596415fcc0d6cf2283e08e10b25ea8d43c797717423549c9906d373994fbd2a9884f0107af1e51e8651d85518f8b9ae9c0edbaf9a13c2273a85a4fa175ed4868b33d67b19eae6e8c3ce9c4b321c7d26f7fca7051e985157a60242eedea9767b373ddf5bfc4d9b412520eea939d7c290183b64c3241660618f2de7887fff1dbe80ac5154256691ec536d83d6e9fa75a11ca6a30454b651ab28396a28728be7b7650a333661e462f2e47cd589daab1534f15f98b2dce359b8c5efaaa0cda9348befd17679721f08626ca1c1da89bf28a53ff6fd7be77591a99ceaf47c457c12e3a165af4091e30d6577f6d846813954dbe14270bc91261317c33edd8d9d74180059b5e300f18ff225e9ed0eca03e29ba89dd7666cac0f003f93019848cab8f99f546a30187643ccbf341f9ec6fde953f148d982240dcc29178e19e16de5426a03ba52af8e24ae41712f32f4e854721f2895728b5944b6b3f3e3dfee90b99703ce570ce371ebffe9d9008061b13e21b95b74f63a0b03b9b63301882a7f28c858f8a02ee29fda7d85244860fcd8ef3879e5648d3e1723ef540f4c27dfb2e9b10c0d806eff9458aa0c3ca989da7b22264930d69cb8b185e19fc6c4a4bcab4ef9cf52bf3432534aa7201b676afb26877494b068e3dce109b3e1b6a64bd5789f9fd0721f2da3d7e9b2a988e9bdad20e21e8c2f48152e3630f8809fbf84fb89f9e96fa4fc8a5c6f9b00fc397a532f86dc0a6bb83317ebced8a19646593169edf0f61d9f882260d61982731baa0375a5f307c5cc7ea0feb5f67d4cd093d31ea639c749a0046cee06258e847fb63d9858ebe647b0693c04d06d1cae7cb3aac5e71ef193a1ab255305b5ea608ab499549b60a1f54efff78729f552119c82e64559a2d0a7ffa6031f6e912835394de43eeba3eafdf4c03fb0fdcd54be9a173f5433a131ebdb1336a5916e52ff7884b809c6512294a2ec152c179295d1e73dbb279e5c9c65a6a9f4fd6a28a8df564039c75206da1c21eaf2f8eaa1dd3307cb8a03b34963fc3d55a4caaf04b4a929ca2b00b18da3e2334150695d8a7c757e241e8f1e714de3241af6298ca593796277cd8db60453d9d113a27cb439e233ddf4804a2c0dbff8217c2d6477504a7eacfcf5a42ef73076971a46d578cf2b741f25e3b1e2c0be69eaf61ea452c4dc1db3e50501a060d961d998255bc67db9c5e236e740ca64493e1975080555f2d432c20b85917e22394b4bba8e6e8c83b3b44b77a52f6f72abe0e4f465634d3c755b9c9c116c8feace8a266f8560030e83d1ff26b7774a599393cef67ced40ecdfc6077154cb092a8f8d92c3673ab8ac5559bc83c84b5b19fdeeff01c72d135c1e748e529c46a52ec6ee8d84c9cbce1c31a1d3be775c87c899dd9e9732af37ac78e3d0749c80f25b40ac8d109f2dc31bbb97afcedc232c4ec6c22e624574c04c9cd276343569227c915deafb235bd62b7f8c680faf585d6af7bb1f2b3f9815c541d186844c43ff70aa14445b8cb1478391cb1c8a0c56c6be3d80c4f96b02c0871769c25c4dcdc320e3ac3fc6ec680935f5f440be4450e5d489794497dfbca49cf22cc714cd899d1b67632df97129a434f54e2bc46e2b1a87d3c13f65102446cfb43404bfe2f5306bfff7bf0fcc25f8598a030224a4d60e85e6829911231c88dcad2786b777eae17035a13b297160fbbba5e2d11e0e95132148656639e7cb7cd4b84d9a7e55c2d48c4a09b28cdf00ee60837d3ad714b36645df4538642d758e8d74d57dde0faa315ea9bcf9c6970b66223653cce1d08b03273751692357df43bd37e4f45c758a1214ca2df893cb495860cf415dc995a9e46e8d589e1b9a8107535228a22d22146265d58fef43a04cc20261bbdecc06fa41b5d3c325327c48d9ae5bc3ef3150429973b73531fcf6729eaadfd9817fabb142d779264a09a2e641163c4e5b2881cc3aa1f0b4461542eb9028635b8066abdefd87e3f575cffca0367320b3a25711f4973fd1e530f2abe512e64ffc5abc6cf5184bdb2714ba35578d7527fbf61f89f2cf81828715ea75fa05366f7ba94100653066e4459295f521536469c607d93c2f357f103a9007b6c1641be305f7c4ffa03f59fe9f2b013a734806960701dd84b8dc5169a65ec935a04349b85b8f2893cdbbe462b747f950b56ee11c3ea70889bd5974731279f3ee54ef0a5f9873e4f6a8b97115da94ec87b3c37eb6653e370ea3183df178cc6974d409834ab2c5139d11954351d721190bf65a3e00abbc22680f5197b6cda34024abcea51959139838eac3a981d4cfbc946d5596dba4a7b36542abb3543f5c329af59db3ef14c5e8756f1f9d62b6c24a9f5a4ee1155e7f01746ac92fa6b2e00bf2800c90f0611a4abac9e9e034c3d99a2e383582010fdd6e376f9ae37c460b37159dd6c6202bb8816ba526b6e712f05828cb83c0cef407e581a5811280bbf3825b6262a0b11fc49b77aafefe4d8e9a821f6ec57f7c4c24d02472115055c687b3748aef857205f01d02d85ba37bc74de00c2d943f3769cf5a64fec2e5c352e426477bdfd8a9e60d9571f5e325617f5aa9adba47f78bb608b25ec577d657dfada8e86bdf537084cab18ede70e9518a2474ef05994b14e87087d765d0a356e208d8a030555bbdb2065d9e164ebdd5157b7964e9af75463f4646924b3b92da32e4cac962116d9791746d81309bc34ec5c22be4020810b978f6616f34ee4386ac072da042e0314574eaafb8f3c113f1817956555ee008b75ab56f8ec53b110cf429f13007db7bbb31e7db218c96d31f472a4413fe3c558a714a8ce8a4978cff5fd41cfc30e89e39ee8ea1b321fe14fc480b07157d5f0693edf169acfa0d7016a84ca53237171481d1135d1bf9845edbd11d8c84a1352ec4d0cbb55cceef7346421e4ff0d7595aba85b44f66805e89ec0a0326ee3817e56765c921b730d95b68a163c10c3c66b4ec15e70fef980a5a7317707a95138dd57030db8ad919348849e413d65c30aa44ef2296eca55aeecba7cb293e4eb0ca21f5a3d844d4053723c044d94596cb802a25f4c3a2389d37fcff9746d7f7a47e7a99fe5732c896870b7e18241a86e0f43aeae9e63b30d9eb78fff1e2c3e1453cf5c6a576c3d1d76e290fe57d90f66976cbfdc009d4f751511ec704d24f82fd8cc8b67226051f2d5ccd7dc5e8a88cc7daaa8f829f2d0a748ec521dfdf12b5f371a6182322e6133ba857c589318ab858a5bac9571e8f4fe0f799e98d56e9f16eb912d803074a8b6c3b5b26df6703e3450fe3b1e6aade5461e30d6e7485f20718efeca7c042c88a5b4c50d25a62507c56b73f4700679912ef405bdc26a1d7e95ec9982ffd52b64aeb227eb4f3ede09a717a4e5bc2670bac3c83d60b5a32b4682ad84cd3b5c228bdaec04254f94dd95706b9f12435c6e8695f5819e2acdcd13cb5453b8b0f3a57994e61d127cd31e65152de5e5662222a2264bd06c096dbb441dc8758382438959106368f3f6e57da570d376c78e3d9e2422636409797e40aa8052e72073b17d030431853577ce47ae95abe332a6003c7e967760561c6ad1778fcb47d5d38b086ff1a5f3439c939dff5cb7e06773fecbc571da2e4a409143423b7fd8211bb287722863ac59d31672e64aa628db344715e623212cea3b596afdf77512fca719acf7f3261a05c9c61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c852ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0ba7d43682f8dd8eee55591d451aa0b4380e1cd01eb887a91528dbbb9187ed14d2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c6238548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f66bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e4d3265f8264768dde09b2962b2b19f1dd23b5283430b64b762d24515dee93cc8cfaecdd8f38c8fd02a9a6fe9685dde62da40bafd69412d0da67cfa86af3443e60189319a7ac414b0777557a29e5c6ddd32ec3a4db494eea31c193bdf80add723b974276352ad7e8594fa6fd62210aff842736758d3d2671c17e06605d892743952021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66fe337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060a9f48f15ad5f492bd454b781d293dee2c123c3947df57f4c709365c624fa72cff775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c60d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df840332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae51994ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd874f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b37100d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b20ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d4bcab470cac90909b105e525171e7bc0ad8fc60b0d98503f4d46dfad8060cf9e1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e68a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173dc8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa2509065959266652a2153e29fc80a3716fb3efbddff33a33590eaa20773d0b694e3daf55497287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773de036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df8257b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb5648d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9afc1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4daa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c32803218e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae941519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259dc60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3bfd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81de3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868ddfeb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9ff546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5d8e9402d77ee0e8fa37c13afd9202eec1cf01b204d02a89442e8ff3999f14bb96fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569be0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aaef626d1fe1fa53f3fdde633d2e038dc3d081ba609cb8dcde53a8e1a40b36ef2de00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9bd6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111fbccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda53306ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c3019ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bccf163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36d2d73796990694d4b07fabae50c6613586f14e0c337507773edb6cb1b04157c0dbf03fa8a7f4e7213f709a811cf2015f4f87f35d5b21a35852c4c5e66d6489b3bfd1b799c1a4b09c14bfad5995a4328dd2169815252c56a1efe4a12f29d53a1b716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b88464469a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48d64e54868b437b24aa682bc015f7761fedfe39badf1904691ba1c91035ac9decc4c0086a5c5b0e45a7c1880a818d6ae7f99fe074c6507ab0c2f1a1149781012dbc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e684012a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d503850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412f6543a2cbd41ff073f81159a4a5dde495a8dc886a4625fa019a41f93bbec6ce13f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebeca01bea62d0cf238109d534b9f5ff183ade8f28cdeb7f9f2b2b948fd241c4921bc415d2ed4f60c8263060ef1ecc8eb0613adce99391a4a40de537cc9c22bf2d47590a0321088d8a3d3f39efaa0568390b13c652a04dec563e28989411213a1d936f33f176094a227c2072557871f688b3838e23d441d92772d3e77ab6e38e109b24b124b5650413dc8e80309858c4d74a5152b6f740a49c1fd1c4daffd87fb56bbc05ab9605c66201bd1282ae96033f1e66cfd0d36dbc62c21b8a616fdc62bd8224a5db8f04f4ab2aaf273e64e34c1ebef97847c8e775e667dbc30491d185f077a229727999483ed19c5723766ab1cfec330b9a4cdd6a2f818112a32020debfa8ca2f6f2e9a39378c1266f8b74f17b894e3c8df9e3e34b8055f94eb8386d1fd26ee32522c5f95d216d1772ed6ef19c27129db52bbf7322ee6830e21a49fbc72196922f57bf3ad449709a7e2d7b41f456e57672a2e3fb3d0859dd26a0b2cd98af139f00c19cc052f5a7d2acfa55b749e73156e06563bff5c701bbf91fd6966de541f04f17c44f8e86315d378f7cc390bbe6396d4eee31a54282b1f2510272818249d7953269290a422398c54cabd6f4ed079d4d4c7d5cea9a57667fd329e3f07d60785e2b92bf2fe9de094db49e063d96f1f457f373d4e218a9c2f3490290ca38777dad882a31faf7a8ee995836fd75cca7c81cde7bee356de8d60a3b5b51781b8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b8806439b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6dba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f88177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe5514335620e8f478ee4dc4d26540448d39469091ef1d8e3fbbbb8bf753206ceac747d43e7186cab280cac92f84348cdd664f23808ebf10e17a004a27b88cb828aa6d25afca78d31cce79875476356e3c1f29f40ecd7feb00cb084f4bdaced6b305ef00bb2d4446c260110608fe9ecaf98b972cd20115da5f9ba96ebf2d7004f746f6d7eb4712e93b19cd4e2bf3e573f58c0ce0c6b9a4216a4f2edc0560e72c3781ef3d33379fd761172d824c3178e31fa99ee9769aed661718b479dd9e4f4152d03157b758f03d1db5c2e9c071a31441e2751e53cba6009e48c3f4d7941a26bbe5ef954965407af97896cad4fdb305309130f2e7cfb593b3912651c82536140062faa68d664ef23704d0be745bac27e12a4253a65c2da14077009e3ef20d417607bfc0fd73f27b8f48312119002e879ce2cbf551e3160704988ca7abed7a2dfc8171709bb60141d6f8ca2afde124fd65b0f82a8dff9fc83c6ccd09fb70262920a2f1219b0219e834c539d215e5817cb7c34b991f64a35d64139546a022e9959d5c5a416295e0d20e54f9f8dc0661de9e943b8e883cbb4da8b86a8da7e42490fdea9eb0fa19e506405161c2d953724622e66246766e7b73d849b788c2bd3b73759f2c4c48e7c9c7b3770cfb9919c7b93bc3cdfbf204a3f2ccae25aaeeda1c230eba1a5ded8e21738cefbf22e0e04fcb7879820f521a945edbb73e150d39e69a937d8e0e5def4e2bdb31c876a76d782464bc6f8dd5b3c336028dd810121d52eac5f1ecdf107c2cd3c94eae7bf8f985394ecbb2e2efc9e3bf2f7be6c74b12b8139e73b36d4eecd6e1739bd54c46619af14bcfbd87f2022dcae2d330b7c62b37eedd717a4874024a5018a37edd5a8521dae838bab700182c23b2cff8b388252e5e5628db1ccbec6b7082753d6464377ec0f41d17ffda8520f7792f55028b62c4b81b006ee508ba4e1a283a55e1964c0976c438ac12754704b2e9a5de193219f438eaedfe207f145e1bd7a35b84d54ed3064f7ccbae82f537c8eb40878eeccc867e28170ce806163d620e2ca8e4736efb7dcbb1c85be97231fa6f341a0dd1f55f1825c4d23695b857457273c1902a1b901d7c6f8e1ed983216e7c4fcc34fa4fb5320b275891447ca0e6c577a6540858b14214b6246d4ca0ebcfc43e71a72b88d5c51bee0e435b10ec8fb185cf400b994a4c73502f63d6c8ff688faf076f7ba4bfb6bfbf02feb62a9c312ac933a54af674435601e2a6d817c005eaca21f214d71c25813dadbe7cbb553fbb64901ed73114648f19a5402a964035ced5c9e879dc1be9fdbb59b8e8f145406070391273df9fabefd38be1f1add1e4a89aa1345f2d1fc1ed37d9f25d1a31edad9d7d8acd2f3808c052c553b813230d0a289dd8607e3d24b67a2958f4dd86eb05d92ecc722640faf7084b4b4a4a0873fd87b529a429153caaa27842741370c31b688f4b0bd9a424b586f12655c127a05f0a317ef5b2b66bf65bfab512f9d81f51e5c8a58cb13f5b182863947f2cbfbdc29bd7604178cf41d6c5a6e94d060cafc6bc3a48069ca94e58d1a13c02afc0733d8ecba71e77d77eea40eeb29b927c97f767d881d0fb0806cbbf8ba116ea9231294c9918c02805a696f9e73430f4ff6a5e67ed5fdec97d3700863fdd0c9b0973dc986720bcc07aae05312ab9b9606891ca351f19642a32b241178434aed89bbc7b627dd97101a60fefe739f7dc17898c815beb058d77da45ce0915c0c1453050f1f3eb1b7ef4c7672c7031cd9058b8644ab9de49b0fc358aa148a3737afbaec2a85f9870d776e60661b362ea84ebe79cf0bfaa1dc2aa0ef05ec8956b3309fc5554a7259df8c555a1713d1fe50df796baf96e8c4ad1b3237b4b5bb25b8d6bc9e08120341ff9b357dfe8e61ebc9abdfd289b595969463ddc0dc9ad4faeccc99560e7d8beefc40876beb2281dbb37d3cf392295ecee4c8a5137477b879cb8366068d8ce1f0b9a910d9b0811e42829d6e433c51c151a0c215eb6534e845fdd41db9fab4e97ad6ad270177538524c6f67cbbedeed4f2fe8da2f1ab8cf96d05ea878ea7c8b8b6f1430a2bf41dbaf1a2d606942ca3ba600add07b52de8a4d3a0dcf8ec755dea89ca27e15a1791a437d4867f3b7512feadb73ce35c951e10cf3a296f69cbdc0f3878a90c8611140bbe6427ce9a93d4638a334bc156c1f253f3a601be2cf1481d8df2ea960a7589f1f60de6a3fe6e67240ac9fb9d11ab756e8eefa77fc218cad0f1d4d7d3e71b9c8bd95834136a473dfaaddcf3179bf10347c93f46b5f725891105f4827277ed5b51b27d9c77b39677a8ae86f2c0a8cdee3f292086b52141f0a239cbc0e99f48b7ec984e63d500cef0413f119a045551af3c22becb17ec21f4800e449bbbd9eb9be2200c93b025e1bb3480a8911684f2b00667d45d9d2457ff566e942417fbddfb27c07dfe75f92df2aa8fa8ff8dfbb723d91c5a98011a4a5dacb229769ec6778232cd331ac54fb925d473888d8b2639e0834c0c5ae7246e2deb1cc529c4b72922299459cf9412499881f8011366096f8017deecb857791cebc44cc392f41eb25e2ee2a6211926b7c398d72e685b0fbbda9144fbeefc7eccce9f288d82fa5572ee6065aaf80c7511239541a8e1c94e2f8c4b7da93023e58d6496fc965e55d498f60e22064a8084c57b0a1eadc377cc6b8bc3d7baae466855672ed41260357912b77d56b5134e97e3f538e3078514086cb0efc7ce491186455b0083139355b5d9c86e0db72be580eb27d4a7b38077686e9777c2e322b311c378a25adb267f16cd77c133f4d9597603750eb7b0b43570c3fb49f01129b0232a0bb741e436882a498321cf4fb435aa2e4ca95b16dc448a331d7801191de5249b9bbbdca42f410e4b81461596703fa32e89ea22eab558219b58f592dd7996e0677e8505f6c1aadbc7b8393452f28e10969564f289413ca59efd12598a6f282afd426f1097f2bcce8e9bc1493e38022a1f4b3c4d33ebf2a635f2e50dee551df2df277472b3e39d5ab204d1b850a00a7e477d31300be20eb13b07ebe2d4152f3e807c77dc40241850011024bbf625c8b09b5647d714cbcc1dbdbf45dc932387b99adb60db0b1b6a8f8c8fc7afa821df3972f07160553cd1b5687a7f640fc2fee62e4a87bb1b3b9273fa4cfa0358b0a0e581af01750922fbb54b51f8f98b7cca8306c2a02884d82445c3eef32f0d83c5fffc5185b4ae195d6a449b8e57c15a9ad16cbeb1d31538e9e232c89f299868ddfd3a4d54fc5a8c6f24baa8b29f8acb7d7d58b9fc0a72b727649007797fecf7e3cd8b378247734abffdc6047bb1cf7d56752b23b01f853aa02e97f5c2cf00b50b1f0cb1ddaddedba6b009a41f1536f6a09d695e2ce05bf1ef7811ac010e4781735b3d3e6ae2591515f952efcd15bf43d4fc590e408bf56ced51e4e7a3b82c1b358d724b09d507014a0b1df31aa11a209ec361c97a1744ef5743feb943cbb3e92ca5c170deef22a778d5a53d623aae30846799f31778fe0817f2bf9ac9cfa7201ca9164b490c1c9feec1a00208f1014f8cba51ab9908ce83971fcaff61cdd8c6645d6a27d38e349a3b0f1d4a0cc0a4ccc58f2091b58ffe301576aae346bac7f1022d44498834cfe465b5df6606681cda24c3d6381aa4b4dca1637273514e4664360201ee37bfff43ad350d522ced2a9a17183c5d44fd80228b72974fea4926b8977eccb914a8341dafbce18e222729c168536ae068077b7f448c270d7ebb2c7b4f8166dd15bf5cbec4fccb9bbc51b71779e4e96bdab075562e7827f9df8d0dc55be3027138877652c42c17646a7e07fbe95a1acd8b5595c3e206eb00a7af81a0e08027472c4f5e7caf13f35c3ab4a8ad85d4f615c2a52dfaf9464e74fad85b1c76e9009fe2162297c8a6a902ea38fdab368c05ced734a0f8736693eb3352a2bc2a03173233613fa921873bbb126a0c096bffe698480bfa7595b112441fd53bf64a158491b30c491c51ba595e58eede9ba7ad5607d50cc337519a57ed13e9975e6f5ff7157a6170eda4ebf3f02d5b0797455f13ae2e776c92eef59d7e5acf80bb9831149cb02c22d901e47dfb33c33a51731fea76c034228d117dff10331f0a12ffa53dab43e31df17f5ec2938014275523f4465c4b5d1b63bf5b9e1eef0e708c9a9b84b0ae86b56b223653b9fe4bec6efb3d587a38c6bb120466eaf90ee629dd051928cf7fb7edec391d901d37be350115536240c3dbc6963886450fad67c176e35e78f086dd73812639f681121f3b5fa80333c963e6b84a5e8b39fe20b2f3d0c2b56284c9b7698042a6286addf1c67b12b45fbbe279365f965162d0775658a62cac4aed0df6696c7299883671d4414c6286cb09f4465dfd1f840643337995e7cf604c2f7cca90c0b7a0f2203e868000654c64d35e888afe759da938b3599f3210cf9935377086e5b3b391ebf2375aa6a6ed6c5e2d94daba0c10b10b8160c9ba619e55cae1113930cf743436a0da6c27538b2db2611ef590cd6cf128b65953a99bbca4c302b300b4144d6f96497297ec93396571bf510093e2777e9d181d47944dc2b3e217a4a270f1cc4602498927bf63109687da068bc0796a8b7f47a39c8ce940615623af25cb8125eeb56f7f9f17f9e9d50e6078b1de6c5fed69b76be5ae6476a7c7d043c0d91b3bda7a405d81953a8d3566a0fbcf4d56ff885e946f9e96abb01365d4d4c68d443e0580ce366abc363762e2e41ea27403a25e0f2715d608026f08827eaa7ca87ff557144b1d194713756c0aa65de4fd26f0bc2b26e299c0c7fbe3b6f574ed47c2ac644d45bcf07d752a69b0625f9f27724c140965c69959990269c3b82b0f8376031cb1dd26e7e92390db8a742c8b6207112a0d799dde6f9e8a3de7c74de7ba0ce1d71216e2da4fffb2c438bea6b636b9388784708af9ec11d5a70b505a2698f54d8c9550e3af39a9e253545cd042860637731f4e0a971d1d1e8cac3eb90168cbeabcdd27ec10ad1ffd14902be3b2fed85c4ac21e788a51e1dbef86c6e1ca3af17168e6f6175bcd76904a8279f88caed634ae139983f57d15b7987efa4ed24f33cb231c802728390f44b08c292fd44e3c44a435fbd2f03cce7fd23ddbbff52e64566d2fd7a067dbd26d11cc1b793f2753fcd946ad/usr/bin/dmesg/usr/bin/findmnt/usr/bin/kill/usr/bin/lsblk/usr/bin/more/usr/bin/mount/usr/bin/su/usr/bin/umount/usr/sbin/agetty/usr/sbin/blkid/usr/sbin/blockdev/usr/sbin/cfdisk/usr/sbin/chcpu/usr/sbin/ctrlaltdel/usr/sbin/fdisk/usr/sbin/findfs/usr/sbin/fsck/usr/sbin/fsck.cramfs/usr/sbin/fsck.minix/usr/sbin/fsfreeze/usr/sbin/fstrim/usr/sbin/hwclock/usr/sbin/losetup/usr/sbin/mkfs/usr/sbin/mkfs.bfs/usr/sbin/mkfs.cramfs/usr/sbin/mkfs.minix/usr/sbin/mkswap/usr/sbin/nologin/usr/sbin/pivot_root/usr/sbin/raw/usr/sbin/sfdisk/usr/sbin/swaplabel/usr/sbin/swapoff/usr/sbin/swapon/usr/sbin/switch_root/usr/sbin/wipefssetarchlastsetarchsetarchsetarchservicesui386.8.gzi386.8.gzi386.8.gzrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootttyrootrootttyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootutil-linux-2.33.1-lp151.3.9.1.src.rpmconfig(util-linux)ejectfsck-with-dev-lockloginrfkillutil-linuxutil-linux(fake+no-canonicalize)util-linux(x86-32)uuid-runtime@ ! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(util-linux)group(tty)infold-linux.so.2ld-linux.so.2(GLIBC_2.3)libaudit.so.1libblkid.so.1libblkid.so.1(BLKID_1.0)libblkid.so.1(BLKID_2.15)libblkid.so.1(BLKID_2.17)libblkid.so.1(BLKID_2.18)libblkid.so.1(BLKID_2.20)libblkid.so.1(BLKID_2.21)libblkid.so.1(BLKID_2.23)libblkid.so.1(BLKID_2.25)libblkid.so.1(BLKID_2.30)libblkid.so.1(BLKID_2_31)libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.1.2)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.11)libc.so.6(GLIBC_2.13)libc.so.6(GLIBC_2.14)libc.so.6(GLIBC_2.15)libc.so.6(GLIBC_2.17)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.2.4)libc.so.6(GLIBC_2.25)libc.so.6(GLIBC_2.3)libc.so.6(GLIBC_2.3.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libc.so.6(GLIBC_2.6)libc.so.6(GLIBC_2.7)libc.so.6(GLIBC_2.8)libc.so.6(GLIBC_2.9)libcap-ng.so.0libcrypt.so.1libcrypt.so.1(GLIBC_2.0)libfdisk.so.1libfdisk.so.1(FDISK_2.26)libfdisk.so.1(FDISK_2.27)libfdisk.so.1(FDISK_2.28)libfdisk.so.1(FDISK_2.29)libfdisk.so.1(FDISK_2.30)libfdisk.so.1(FDISK_2.31)libfdisk.so.1(FDISK_2.32)libfdisk.so.1(FDISK_2.33)libm.so.6libm.so.6(GLIBC_2.0)libmount.so.1libmount.so.1(MOUNT_2.19)libmount.so.1(MOUNT_2.20)libmount.so.1(MOUNT_2.21)libmount.so.1(MOUNT_2.22)libmount.so.1(MOUNT_2.23)libmount.so.1(MOUNT_2.24)libmount.so.1(MOUNT_2.25)libmount.so.1(MOUNT_2.30)libmount.so.1(MOUNT_2.33)libncursesw.so.6libncursesw.so.6(NCURSESTW6_5.7.20081102)libpam.so.0libpam.so.0(LIBPAM_1.0)libpam_misc.so.0libpam_misc.so.0(LIBPAM_MISC_1.0)libreadline.so.7librt.so.1librt.so.1(GLIBC_2.2)libselinux.so.1libsmartcols.so.1libsmartcols.so.1(SMARTCOLS_2.25)libsmartcols.so.1(SMARTCOLS_2.27)libsmartcols.so.1(SMARTCOLS_2.28)libsmartcols.so.1(SMARTCOLS_2.29)libsmartcols.so.1(SMARTCOLS_2.30)libsmartcols.so.1(SMARTCOLS_2.31)libsmartcols.so.1(SMARTCOLS_2.33)libtinfo.so.6libtinfo.so.6(NCURSES6_TINFO_5.0.19991023)libtinfo.so.6(NCURSES6_TINFO_5.7.20081102)libudev.so.1libudev.so.1(LIBUDEV_183)libutempter.so.0libutempter.so.0(UTEMPTER_1.1)libutil.so.1libutil.so.1(GLIBC_2.0)libuuid.so.1libuuid.so.1(UUID_1.0)libuuid.so.1(UUID_2.31)libz.so.1permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.33.1-lp151.3.9.13.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /usr/bin/wall -e /usr/bin/write -e /usr/bin/mount -e /usr/bin/umount 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/bin/su 1>&2_ǁ__@_~@_s!_D@^?@^˳@^@]@]Ik]5@]$]$]]@]@\\}@\T4\G\U@[[[[;e@[(@[@Z4@Z؄ZJ@Zľ@ZZ}@ZqZdZ`@Z]@ZX@ZJ"Z7Z%8ZYéYYY@Yp@YZ1Y=0Y9<@Y9<@XX-XXX~@Xf@X}@X@X@XXXn5@XRXGX!@W@WhWhW@W^@W=WX@W@W4W4V]VC-VC-V@UoU@UcUCjU@T@TTTԬT T TT@Ta@TAStanislav Brabec Dr. Werner Fink Dr. Werner Fink Stanislav Brabec Thomas Abraham aabdallah@suse.comStanislav Brabec sbrabec@suse.comIgnaz Forster Martin Wilck Stanislav Brabec sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comMartin Wilck sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comtchvatal@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comkukuk@suse.desbrabec@suse.comsbrabec@suse.comjengelh@inai.debwiedemann@suse.comnormand@linux.vnet.ibm.comsbrabec@suse.comantoine.belvire@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comjengelh@inai.desbrabec@suse.comwerner@suse.desbrabec@suse.comsweet_f_a@gmx.deschwab@suse.delnussel@suse.desweet_f_a@gmx.demsuchanek@suse.comagraf@suse.comsbrabec@suse.comsweet_f_a@gmx.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deolaf@aepfle.dedimstar@opensuse.orgdimstar@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deschwab@suse.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comcrrodriguez@opensuse.orgsweet_f_a@gmx.desweet_f_a@gmx.desbrabec@suse.czcrrodriguez@opensuse.orgsweet_f_a@gmx.dedimstar@opensuse.orgsbrabec@suse.czsweet_f_a@gmx.deschwab@linux-m68k.orgjengelh@inai.deschwab@suse.desbrabec@suse.cz- libblkid: Do not trigger CDROM autoclose (bsc#1084671, util-linux-libblkid-cdrom-autoclose-1.patch, util-linux-libblkid-cdrom-autoclose-2.patch, util-linux-libblkid-cdrom-autoclose-3.patch).- Modernize patch util-linux-sulogin4bsc1175514.patch * Try to autoconfigure broken serial lines- Add patch util-linux-sulogin4bsc1175514.patch Avoid sulogin failing on not existing or not functional console devices (bsc#1175514)- Build with libudev support to support non-root users (boo#1169006).- lscpu: avoid segfault on PowerPC systems with valid hardware configurations (bsc#1175623, bsc#1178554, bsc#1178825, lscpu-avoid-segfault-on-PowerPC-systems-with-valid-h.patch)- Fix for SG#57988, bsc#1174942: libmount-fix-mount-a-EBUSY-for-cifs.patch: Fix warning on mounts to CIFS with mount –a.- blockdev: Do not fail --report on kpartx-style partitions on multipath (bsc#1168235, util-linux-blockdev-report-dm.patch).- nologin: Add support for -c to prevent error from su -c (bsc#1151708, util-linux-nologin-su-c.patch).- Add libmount-Avoid-triggering-autofs-in-lookup_umount_fs.patch: Avoid triggering autofs in lookup_umount_fs_by_statfs (boo#1168389)- mount: fall back to device node name if /dev/mapper link not found (bsc#1149911) * Add patch: util-linux-canonicalize-coverity-scan.patch- Issue a warning for outdated pam files (bsc#1082293, boo#1081947#c68). - Fix comments and unify look of PAM files that were just changed (login.pamd, remote.pamd).- Fix /etc/default/su comments and create /etc/default/runuser (bsc#1121197#31). - Remove /etc/default/su migration from coreutils.- De-duplicate fstrim -A properly (bsc#1127701, util-linux-fstrim-A-1.patch, util-linux-fstrim-A-3.patch, util-linux-fstrim-A-4.patch). - Do not trim read-only volumes (boo#1106214, util-linux-fstrim-A-2.patch, util-linux-fstrim-A-4.patch).- libmount: To prevent incorrect behavior, recognize more pseudofs and netfs (bsc#1122417, util-linux-libmount-pseudofs.patch).- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for libuuid (bsc#1135708).- raw.service: Add RemainAfterExit=yes (bsc#1135534).- agetty: Return previous response of agetty for special characters (bsc#1085196, bsc#1125886, util-linux-agetty-smart-reload-13.patch, util-linux-agetty-smart-reload-14.patch).- Fix problems in reading of login.defs values (bsc#1121197, util-linux-login_defs-priority1.patch, util-linux-login_defs-priority2.patch, util-linux-login_defs-SYS_UID.patch). - Perform one-time reset of /etc/default/su (bsc#1121197).- Integrate pam_keyinit pam module to login (boo#1081947, login.pamd, remote.pamd).- libmount: print a blacklist hint for "unknown filesystem type" (jsc#SUSE-4085, fate#326832), and add documentation * add libmount-print-a-blacklist-hint-for-unknown-filesyst.patch * add Add-documentation-on-blacklisted-modules-to-mount-8-.patch- Update to version 2.33.1: * agetty fixes (drop util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). * Other minor fixes and documentation updates.- Drop rfkill-block@.service and rfkill-unblock@.service that functionally conflict with systemd-rfkill@.service (boo#1092820#c13).- Update to version 2.33 (FATE#326844): * choom: new command to adjust and display the current OOM-killer score. * libsmartcols has been improved to differentiate between numbers, booleans and strings in JSON output. * fstrim(8): trim all mounted filesystems from /etc/fstab (-A|--fstab), new command line option --dry-run. * hwclock(8) new command line option --delay. * mount umount, libmount allow to mount and umount filesystem in another namespace. * rename(1) new command line option --interactive. * setarch(8) does not require architecture when modify personality like ADDR_NO_RANDOMIZE. The architecture argument is optional now. * command su(1) new command line option --whitelist-environment. * setpriv(1) new command line option --reset-env and --pdeathsig. * fdisk(8), sfdisk(8): print disk model name to simplify device identification. * column --table-empty-lines" allows to use empty lines in formatted output. * wipefs improved to postpone BLKRRPART ioctl until all magic strings are wiped. * script(1) extended to store more information about terminal size and type to the typescript header. New command line option --output-limit. * libblkid provides BitLocker and basic APFS detection now. * lsblk is possible to execute against /sys and /proc dumps with - -sysroot is specified. * agetty(8) reload issue only if it is really needed (bsc#1085196). * cal(1) has been improved and extended. * libblkid has been extended to support LUKS2, Micron mpool, VDO and Atari partition table. * rfkill(8) has been moved to /usr/sbin. * dmesg(1) provides better support for multi-line messages, new command line option --force-prefix. * fallocate(1) --dig-holes is faster and more effect now. * fdisk(8) provides access to Protective MBR accessible from main menu. Sun label support has been improved. * lscpu(1) provides more details about ARM CPUs now (FATE#326453). * lsmem(1) supports memory zone awareness now (FATE#324252, drop util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). * lsns(8) provides netnsid and nsfs columns now. * rtcwake(8) waits stdin to settle down before entering a system sleep. * Many fixes and improvements, see https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32.1-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33-ReleaseNotes (drop util_linux_bigendian.patch, util-linux-cramfs.patch, util-linux-fincore-count.patch, util-linux-sysfs-nvme-devno.patch, util-linux-lscpu-loop.patch, util-linux-libmount-umount-a-segfault.patch, util-linux-libmount-mount-a-nfs-bind-mount.patch, util-linux-lscpu-chcpu-new-cpu-macros.patch, util-linux-chcpu-cpu-count.patch, util-linux-bash-completion-umount-CVE-2018-7738.patch). - agetty: Fixes for reload issue only if it is really needed (bsc#1085196, util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). - agetty BEHAVIOR CHANGE: Terminal switches to character mode when entering logname; echo is generated by the agetty itself. (In past, logname echo was generated locally by the terminal, using the canonical line editing mode.)- Fix runstatedir path (to /run) (boo#1113188#c1).- Create empty /etc/issue.d for the new agetty feature.- Switch python-libmount to python3-libmount.- Fix local vulnerability using embeded shell commands in a mountpoint name (bsc#1084300, CVE-2018-7738, util-linux-bash-completion-umount-CVE-2018-7738.patch).- Do not run rfkill-block@.service and rfkill-unblock@service as it is just template without parameter bsc#1092820 bsc#1093176- Fix lscpu and chcpu on systems with >1024 cores (bnc#1091164, util-linux-lscpu-chcpu-new-cpu-macros.patch). - Fix CPU count in chcpu (bnc#1091164, util-linux-chcpu-cpu-count.patch).- Backport three upstream patches: * Fix crash loop in lscpu (bsc#1072947, util-linux-lscpu-loop.patch). * Fix possible segfault of umount -a (util-linux-libmount-umount-a-segfault.patch). * Fix mount -a on NFS bind mounts (bsc#1080740, util-linux-libmount-mount-a-nfs-bind-mount.patch).- Integrate pam_keyinit pam module (boo#1081947, su-l.pamd, runuser-l.pamd, runuser.pamd).- su.default: Set ALWAYS_SET_PATH default to "yes" (bsc#353876#c7); add one-time wrapper forcing ALWAYS_SET_PATH on upgrade.- Use %license instead of %doc [bsc#1082318]- Fix lsblk on NVMe (bsc#1078662, util-linux-sysfs-nvme-devno.patch).- Update to version 2.31.1: * blkid: Add support for LUKS2 and new LABEL attributes. * move rfkill to /usr/sbin (boo#1076134). * fsck.cramfs: Fix bus error on broken file system. * hwclock: add iso-8601 overflow check * libmount: * Allow MNT_FORCE and MNT_DETACH at umount * add nsfs between pseudo filesystems * lscpu: Treat read failure on Xen Hypervisor properties as non-fatal * sha1: endian fixes (affects util_linux_bigendian.patch) * documentation updates * other fixes and improvements - Fix regressions in 2.31.1: * sha1 on s390* (update util_linux_bigendian.patch) * fsck.cramfs on ppc64le (util-linux-cramfs.patch) * fincore/count (disable, util-linux-fincore-count.patch)- Combine %service_* calls again.- Provide /usr/sbin/rfkill from rfkill package (boo#1076134)- Add util_linux_bigendian.patch solve two failing tests on ppc64 (sha1, uuid/oids)- Integrate rfkill-block@.service and rfkill-unblock@.service from rfkill package (boo#1074250#c4). - Remove unneeded release based conflicts and obsolescences (boo#1074250#c18). - Remove sysvinit requirement.- Fix Obsoletes for rfkill (boo#1074250).- Update bash completion conflict to cover rfkill file conflict.- lsmem: Add support for zone awareness (bsc#1065471, FATE#324252, util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). - Drop util-linux-losetup-Add-support-for-setting-logical-blocksize.patch. Different implementations exists in the new kernel, and it has a conflicting implementation in util-linux.- Update to version 2.31: * New utilities: uuidparse, rfkill. * su has been refactored and extended to create pseudo terminal (new option --pty, CVE-2016-2779, bsc#968674). This new EXPERIMENTAL feature provides better isolation between root's terminal and an unprivileged su. * libuuid: Improved to match * libuuid, uuidgen: support hash-based UUIDs v3 (md5) and v5 (sha1) as specified by RFC-4122. Provide UUID templates for dns, url, oid, or x500. * libblkid: Extended support for DM-integrity, HPE (aka extended-XFS) and UBI superblock. New API to hide already detected signatures. * libfdisk: New API to modify grain, make possible to completely disable dialog driven partitioning. * libsmartcols: New API to move columns. * column: --table-header-repeat to repeat table headers. * libfdisk: Use BLKPG ioctls to inform the kernel about changes. * fdisk: Improved ^C and ^D behavior. * cfdisk: Dialog to resize partition. * look: Follow the WORDLIST environment variable. * losetup: Added support for --sector-size (FATE#319010). * script: Follow the usual semantics for stop/continue signals. * setpriv: New command line options --ambient-caps and - -init-groups. * hwclock: Reduce system shutdown times, log --systz when using libaudit. * Other bug fixes. - Drop upstreamed util-linux-use-tinfow.patch. - Refreshed make-sure-sbin-resp-usr-sbin-are-in-PATH.diff.- Update RPM categories and summaries. Do not ignore errors from useradd.- Link against tinfow instead of tinfo (bsc#1056171, util-linux-use-tinfow.patch).- Ensure libreadline usage as well as _GNU_SOURCE- Fix prerequirement of groups tty and uuidd (boo#1057937).- Update to version 2.30.1: Bugfix release, more details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30.1-ReleaseNotes - Drop upstreamed patch util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Make sure group tty is defined- don't conflict with sysvinit-tools in Tumblweed anymore. Needed for Leap 15 which wants to use a different release number scheme (lp150.x which produces lower numbers than the conflict).- Update to version 2.30: * Many changes and improvements, most notably: * The libblkid library has been improved for hybrid CDROM/DVD media. * The deprecated command tailf has been removed. Use "tail -f" from coreutils. * blkzone -- NEW COMMAND to run zone commands on block devices that support Zoned Block Commands (ZBC) or Zoned-device ATA Commands (ZAC). * fincore -- NEW COMMAND to count pages of file contents in core (memory). * lsmem -- NEW COMMAND to list the ranges of available memory with their online status. * The command fallocate -- supports an "insert range" operation now. * The command "column -t|--table" has been modified to use libsmartcols. It now provides nearly all of that library's functionality from the command line. * Security issues: * hwclock - no longer makes any internal permission checks. The System Administrator must set proper permissions to control user access to the RTC. It is NOT recommended to use SUID. * CVE-2016-2779 - This security issue is NOT FIXED yet. * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30-ReleaseNotes - Drop upstreamed patch arm64-lscpu-use-sysfs-for-table-access-if-available.patch - Refreshed patch util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - fix compiler warnings for mkzimage_cmdline- When when hypervisor_decode_sysfw fails continue with other detection methods (bsc#1042991, bsc#1039360, bsc#1033718) + util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Prefer sysfs exported SMBIOS3 tables in lscu (bsc#1033718) + arm64-lscpu-use-sysfs-for-table-access-if-available.patch- To cover release numbers of both SLE12 SP3 and Leap 42.3, relax release based conflict with bash-completion from 13.1 to 10.- fix util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - -logical-blocksize was behaving like --nooverlap- Conflict with old systemd-presets-branding to ensure correct preset migration (boo#1029775, bsc#1012850).- Drop "codepage" fstab migration needed for SuSE Linux < 9.1 (bsc#51950 (suse#36950)).- Keep dependency on insserv and fillup for compatibilitiy reasons in Leap 42.3. Too many poorly written packages depend on it. (Marked as "sysv compatibility hack".)- Update to version 2.29.2: * su(1) security issue CVE-2017-2616 (bsc#1023041) * minor bugfixes and enhancements- presets are managed by the branding presets package (bsc#1012850) The default activation state is defined by the branding preset package. This also get rid of the only use of the rpm preset macros so we can kill them.- Merge SLE12 SP3 changes to make the package compatible with Tumbleweed, SLE12 SP3 and Leap 42.3. - Drop patch tests-script-race-on-force-only.patch from SLE12 SP3 and Leap 42.3. Upstream has a different workaround. https://github.com/karelzak/util-linux/issues/296 - INCOMPATIBLE CHANGE for SLE12 SP3 and Leap 42.3: losetup -L changes its meaning from SLE12 SP1&SP2 specific - -logical-blocksize to the upstream --nooverlap). - -logical-blocksize can be used only with long option (bsc#966891). - Include SLE12 + Leap 42 exclusive feature, implemented by hare@suse.de: * losetup: Add support for setting logical blocksizes (bsc#931634, FATE#319010) + util-linux-losetup-Add-support-for-setting-logical-blocksize.patch SLE12 & Leap 42 specific changes: * Fix for SLE12: bsc#956540, SLE12 SP1: bsc#953691, Leap 42.1: boo#954482, was obsoleted by the systemd update, and skipped. * Remove --enable-ncurses that is intended to force non-wide ncurses (boo#978993). * Make release-dependent conflict with old sysvinit-tools SLE specific, as it is required only for SLE 11 upgrade, and breaks openSUSE staging builds (boo#994399). * Obsolete these patches, now upstreamed: * Drop upstreamed patches (tests-script-race-on-force-only.patch, util-linux-libmount-ignore-redundant-slashes.patch, util-linux-sfdisk-show-pt-geometry-1.patch, util-linux-sfdisk-show-pt-geometry-2.patch, util-linux-sfdisk-show-pt-geometry-3.patch, util-linux-libblkid-partition-loop.patch, util-linux-libblkid-wipe-offset.patch, util-linux-mount-reuse-loop-1.patch, util-linux-mount-reuse-loop-2.patch, util-linux-mount-reuse-loop-3.patch, util-linux-mount-reuse-loop-4.patch, util-linux-loop-reuse-01.patch, util-linux-loop-reuse-02.patch, util-linux-loop-reuse-03.patch, util-linux-loop-reuse-04.patch, util-linux-loop-reuse-05.patch, util-linux-loop-reuse-06.patch, util-linux-loop-reuse-07.patch, util-linux-loop-reuse-08.patch, util-linux-loop-reuse-09.patch, util-linux-loop-reuse-10.patch, util-linux-loop-reuse-12.patch, util-linux-loop-reuse-13.patch, util-linux-loop-reuse-14.patch, util-linux-loop-reuse-15.patch, util-linux-loop-reuse-16.patch, util-linux-loop-reuse-17.patch, util-linux-loop-reuse-18.patch, util-linux-loop-reuse-19.patch, util-linux-loop-reuse-20.patch, util-linux-libmount-cifs-is_mounted.patch). * Refreshed patches (make-sure-sbin-resp-usr-sbin-are-in-PATH.diff, util-linux-losetup-Add-support-for-setting-logical-blocksize.patch).- Update to version 2.29.1: * lscpu: add aarch64 specific names * lubmount: Disable disable ro/rw mtab checks (bsc#1012632) * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29.1-ReleaseNotes- Replace raw initscript by a systemd service doing the same thing. Based on previous work of fcrozat@suse.com (FATE#321122).- don't install bash-completions for uninstalled binaries (chfn, chsh, newgrp, pg) - for now remove procps dependency which is only needed for tests because it pulls systemd- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd) libsystemd-* libs were deprecated and are gone now.- Remove no more supported --enable-libmount-force-mountinfo. There is --enable-libmount-support-mtab, disabled by default, exactly as we need.- Update to version 2.29 (FATE#322090) * cal: possible to specify month by name (e.g. "cal January 2017") and use relative placeholders (cal "+1 month") * fdisk(8) allows to wipe newly created partitions; the feature is possible to control by new command line option - -wipe-partitions[==auto|never|default]. * findmnt --verify: the command scans /etc/fstab and tries to verify the configuration. * mount(8) now rejects requests to create another device and mount filesystem for the same backing file. The command `losetup --nooverlap` reuses loop device if already exists for the same backing file. All the functionality calculate with offset and sizelimit options of course, so it's fine to have multiple regions (partitions) in the same image file and mount all of them in the same time. The restriction is that the regions should not overlap. * lscpu supports the "drawer" topology for IBM S/390. * sfdisk: Support for deprecated --show-pt-geometry (bsc#990531). * libmount: various issues with cifs mount (bsc#982331, bsc#987176). * libblkid: Prevent infinite loop DoS while parsing DOS partition tables (bsc#988361, CVE-2016-5011). * More details at: http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes - refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff- Update to version 2.28.2, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.2-ReleaseNotes- Update to version 2.28.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.1-ReleaseNotes - Remove util-linux-libblkid-wipe-offset.patch (upstream) - use the new configure option --enable-libuuid-force-uuidd instead of sed'ing configure.ac- Install klogconsole with read permissions (bnc#990837)- BuildIgnore util-linux: it's part of VMInstall, hence part of every package build. util-linux itself can be built without its own presence though. Helps with some rare bootstrap issues (when librtas changes soname for example). - Drop usage of gpg-offline: this has long been migrated to a source service that checks signatures on checkin already (osc service lr source_validatory).- Do not BuildRequires bash-completion: this is tempting, but it pulls bash-completion and its entire dependency stack into Ring0, which is inacceptable. Pass the correct path (%{_datdir}/bash-completion/completions) via - -with-bashcompletiondir to configure.- blkid: Wipe corect area for probes with offset (bsc#976141, util-linux-libblkid-wipe-offset.patch).- Remove incorrect --with-bashcompletiondir that breaks bash-completion, use path in bash-completion.pc instead (boo#977259).- Add librtas-devel to BuildRequires on Power platforms. Needed for proper function of lscpu (bsc#975082).- fix build for openSUSE >= 13.1 (inclusive SLE 12) - drop build for openSUSE < 13.1 - remove old build conditions: sysvinit_tools, enable_su and enable_eject - cosmetics: reorder configure options- Update to version 2.28 (bsc#974301): * Many changes and improvements, most notably: * Now cfdisk, sfdisk and fdisk wipe all filesystem and RAID signatures when creating a new disk label in interactive mode. See --wipe[=auto|never|always]. * lsns -- this NEW COMMAND lists information about all currently accessible namespaces or about the given namespace. * The command sfdisk supports new operations --delete, - -move-data and --reorder. * The command blkdiscard supports a new option --zeroout to zero-fill rather than discard a specified area. * The command cal supports a new option --span to span the date when displaying multiple months. * The command chrt supports the DEADLINE scheduling class and the new options --sched-runtime --sched-period and - -sched-deadline. * The command logger supports RFC 5424 structured data through the new options --sd-id and --sd-param. * The command losetup supports a new option --direct-io. * The command lsblk allows to sort output by unprinted columns. * The command mount applies the nofail mount option to ENOMEDIUM errors. * The commands nsenter and unshare support a new option - -cgroup for work with cgroups namespaces (CLONE_NEWCGROUP). * The library libmount has been improved to properly detect already mounted btrfs subvolumes (bsc#947494, bsc#972684). * The library libsmartcols has been massively improved to print table ranges, multi-line cells, table titles and to support continuous printing. * The package build system and code have been improved to be more portable to non-Linux systems (BSD, OSX). * The package does not provide fallback solutions for openat-family functions anymore. * The python binding for libsmartcols is available in separate project at https://github.com/ignatenkobrain/python-smartcols * Other bug fixes (bsc#970404, bsc#975082, FATE#318444). * Security issue: CVE-2016-2779 is NOT FIXED yet. - Remove old util-linux-noenc-suse.patch- enable last binary- Update to version 2.27.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27.1-ReleaseNotes (fixes bsc#950778, FATE#320552).- Change condition for known fail markers from test for armv6 and aarch64 architecture to test for qemu user-space build- Update to version 2.27: * Many changes and improvements, most notably: * lsipc: new command * unshare provides a new option --propagation= * mount(8) supports read-only binds in one (not atomic) step by "bind,ro". * GNU readline support in fdisk and sfdisk. * JSON support in libsmartcols and findmnt, losetup, lsblk, lslocks, sfdisk and lsipc. * script has been massively improved to be more robust and less complex (bsc#888678, bsc#930236). * sulogin supports locked root accounts by --force (bsc#968733, bsc#963399). * colors support by default. It is possible to change this with --disable-colors-default. * more information in cfdisk * fdisk provides new commands 'F' and 'i' * cal supports the new options --twelve and --months * rtcwake supports a news option --list-modes and --date, no support RTC_ALM_READ and RTC_ALM_SET fallbacks any more. * Many fixes, most notably: * fsck: now supports -r {fd} (bsc#923777, bsc#903738) * Fix fsck -C {fd} parsing (bsc#923777, bsc#903738) * better handling of multi-path devices (bsc#880468, bsc#924994) * flock: improve timeout handling (bsc#926945) * lsblk: display mountpoint even for top-level device (bsc#943415) * colcrt: fix buffer overflow (bsc#949754, CVE-2015-5218)- Add licenses.- Add %systemd_preset_pre and %systemd_preset_posttrans that will do one shot presetting of uuidd.service on upgrade. (bnc#900935#c46, FATE#318949, FATE#317727). - Remove one shot presetting hacks.- Build with --enable-libmount-force-mountinfo the rationale is identical to the following commit message --> http://bit.ly/1eqf5GO The default behaviour is undesirable and fragile when using systemd.- Update to util-linux-2.26.2: * many fixes, most notable for logger, *fdisks and mount * (lib)mount, add support for MS_LAZYTIME - disable libmount/lock test to avoid random timeouts - socat is needed for logger tests- Update to util-linux-2.26.1: * cal(1): do not segfault when TERM is not defined or wrong (bnc#903440) * logger(1): major fixes and enhancements * agetty(8): support /usr/lib/os-release too * some more fixes, mostly minor ones, see ReleaseNotes - re-enable fixed tests (fdisk/bsd, ppc64le)- Update to util-linux-2.26: * based on the git master branch of util-linux, remove backported patches (util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch) * zramctl(8): this NEW COMMAND allows to control /dev/zramN devices * agetty(8): supports new option --reload to force already running agetty processes to reprint the /etc/issue file * cfdisk(8), sfdisk(8) and fdisk(8): support sfdisk-compatible scripts; it's possible to save your partitioning layout to text files and (re)use it in all fdisks * fdisk(8), sfdisk(8): support new command-line option "--output " to specify output columns for --list or print commands, do not abort when fdisk -l when device cannot be opened [bnc#886790], [bnc#893712], [bnc#890351] * nsenter(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option - -preserve-credentials * unshare(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option "--setgroups=" * swapon(8): supports new command-line option "-o " with the same semantics as -o for mount(8); it's now possible to specify swap options on the command line by the same string as in fstab * fdformat(8): supports new command-line options --from and --to to specify tracks and --repair for broken floppies * getopt(1): has been updated to the latest version (originally maintained outside of util-linux) and refactored * ldattach(8): has been improved to support GSM0710 and intro modem commands * logger(1): supports new command-line option --id= to specify PID (or another ID) allows to specify --rfc3164 or --rfc5424 syslog protocols * lscpu: recognizes Unisys s-Par as hypervisor (FATE#318231) * libfdisk: the library is distributed as a shared library with a stable API and a standard header file * libmount: provides a new simple API to monitor mount-table changes (including changes in userspace mount options) * libmount: Fix mount point lookup (and mount -a) if the path contains // (bsc#931955). - Fix lack of I18N support in util-linux-systemd (mis-compilation).- Build with FULL RELRO.- define upstream source for klogconsole to remove patches * klogconsole-quiet.patch * klogconsole.diff - remove openSUSE 13.1 specific eject permissions, did not worked anyway since eject-fpie.patch was removed - always call autoreconf, not only for splitted packages, skip autopoint (gettext)- Do not try to unregister an info file (ipc.info.gz) which we do not own. Already in May 2011, we stopped registering it: "do not register ipc.info.gz (not provided by this package)".- libblkid: care about unsafe chars and possible buffer overflow in cache (CVE-2014-9114, util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch, bsc#907434)- Update to version 2.25.2: mostly minor fixes (including boo#908742) - re-enable utmpdump and ipcs tests for all archs- Use util-linux:/bin/logger as split-provide, /usr/lib/systemd/system/fstrim.service didn't exist in 13.1- Remove pam_securetty.so from /etc/pam.d/login. By definition, local logins are always secure. Remote logins actually use /etc/pam.d/remote by way of `/bin/login -h` (such as rlogind). This solves the problem that root logins are erroneously rejected when using kmscon(8) or `machinectl login`, because they use ptys.- Remove known fail marker for fdisk/bsd on ppc, ppc64, s390, s390x- Fix mis-compilation of libuuid without uuidd support (bnc#900935). - Fix uuidd socket activation (bnc#900935). - Remove obsolete sysvinit script for uuidd. - Remove no more needed uuidd permissions stuff. - Replace PreReq for obsolete pwdutils by names of binaries. - Add fstrim service scripts and rcfstrim helper./bin/sh/bin/sh/bin/sh/bin/shejectloginrfkilluuid-runtime/bin/shcloud126 1608124625  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~2.33.1-lp151.3.9.12.1.02.33.14.00.52.33.1-lp151.3.9.12.33.1-lp151.3.9.12.33.1-lp151.3.9.1 2.1.04.00.52.19.1  dmesgfindmntkillloginlsblkmoremountsuumountblkid.confrunusersufilesystemsissue.dloginremoterunuserrunuser-lsusu-lrawagettyblkidblockdevcfdiskchcpuctrlaltdelfdiskfindfsfsckfsck.cramfsfsck.minixfsfreezefstrimhwclocklosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpivot_rootrawsfdiskswaplabelswapoffswaponswitch_rootwipefscalchmemchoomchrp-addnotechrtcolcolcrtcolrmcolumndmesgejectfallocatefincorefindmntflockgetopthexdumpi386ioniceipcmkipcrmipcsisosizekilllastlastblinelinux32linux64looklsblklscpulsipclslockslsmemlsnsmcookiemesgmkzimage_cmdlinemoremountmountpointnameinsenterprlimitrenamerenicerevscriptscriptreplaysetarchsetprivsetsidsettermsutasksetulumountuname26unshareutmpdumpuuidgenuuidparsewallwdctlwhereiswriteraw.serviceaddpartagettyblkdiscardblkidblkzoneblockdevcfdiskchcpuctrlaltdeldelpartfdformatfdiskfindfsflushbfsckfsck.cramfsfsck.minixfsfreezefstrimhwclockklogconsoleldattachlosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpartxpivot_rootrawrcrawreadprofileresizepartrfkillrtcwakerunusersetctsidsfdisksuloginswaplabelswapoffswaponswitch_roottunelpwipefszramctlbash-completioncompletionsaddpartblkdiscardblkidblkzoneblockdevcalcfdiskchcpuchmemchrtcolcolcrtcolrmcolumnctrlaltdeldelpartdmesgejectfallocatefdformatfdiskfincorefindfsfindmntflockfsckfsck.cramfsfsck.minixfsfreezefstrimgetopthexdumphwclockioniceipcmkipcrmipcsisosizelastldattachlooklosetuplsblklscpulsipclslockslsmemlsnsmcookiemesgmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapmoremountmountpointnameinsenterpartxpivot_rootprlimitrawreadprofilerenamereniceresizepartrevrfkillrtcwakerunuserscriptscriptreplaysetarchsetprivsetsidsettermsfdisksuswaplabelswapoffswapontasksettunelpulumountunshareutmpdumpuuidgenuuidparsewallwdctlwhereiswipefswritezramctlutil-linuxAUTHORSChangeLogNEWSREADMEblkid.txtcal.txtcol.txtdeprecated.txtgetopt.txthowto-debug.txthwclock.txtmodems-with-agetty.txtmount.txtpg.txtgetoptgetopt-parse.bashgetopt-parse.tcshutil-linuxCOPYINGCOPYING.BSD-3-ClauseCOPYING.BSD-4-Clause-UCCOPYING.GPL-2.0-or-laterCOPYING.ISCCOPYING.LGPL-2.1-or-laterREADME.licensingcal.1.gzchoom.1.gzchrt.1.gzcol.1.gzcolcrt.1.gzcolrm.1.gzcolumn.1.gzdmesg.1.gzeject.1.gzfallocate.1.gzfincore.1.gzflock.1.gzgetopt.1.gzhexdump.1.gzionice.1.gzipcmk.1.gzipcrm.1.gzipcs.1.gzkill.1.gzlast.1.gzlastb.1.gzline.1.gzlogin.1.gzlook.1.gzlscpu.1.gzlsipc.1.gzlsmem.1.gzmcookie.1.gzmesg.1.gzmore.1.gzmountpoint.1.gznamei.1.gznsenter.1.gzprlimit.1.gzrename.1.gzrenice.1.gzrev.1.gzrunuser.1.gzscript.1.gzscriptreplay.1.gzsetpriv.1.gzsetsid.1.gzsetterm.1.gzsu.1.gztaskset.1.gzul.1.gzunshare.1.gzutmpdump.1.gzuuidgen.1.gzuuidparse.1.gzwall.1.gzwhereis.1.gzwrite.1.gzadjtime_config.5.gzfstab.5.gzterminal-colors.d.5.gzaddpart.8.gzagetty.8.gzblkdiscard.8.gzblkid.8.gzblkzone.8.gzblockdev.8.gzcfdisk.8.gzchcpu.8.gzchmem.8.gzctrlaltdel.8.gzdelpart.8.gzfdformat.8.gzfdisk.8.gzfindfs.8.gzfindmnt.8.gzfsck.8.gzfsck.cramfs.8.gzfsck.minix.8.gzfsfreeze.8.gzfstrim.8.gzhwclock.8.gzi386.8.gzisosize.8.gzklogconsole.8.gzldattach.8.gzlinux32.8.gzlinux64.8.gzlosetup.8.gzlsblk.8.gzlslocks.8.gzlsns.8.gzmkfs.8.gzmkfs.bfs.8.gzmkfs.cramfs.8.gzmkfs.minix.8.gzmkswap.8.gzmkzimage_cmdline.8.gzmount.8.gznologin.8.gzpartx.8.gzpivot_root.8.gzraw.8.gzreadprofile.8.gzresizepart.8.gzrfkill.8.gzrtcwake.8.gzsetarch.8.gzsetctsid.8.gzsfdisk.8.gzsulogin.8.gzswaplabel.8.gzswapoff.8.gzswapon.8.gzswitch_root.8.gztunelp.8.gzumount.8.gzuname26.8.gzwdctl.8.gzwipefs.8.gzzramctl.8.gz/bin//etc//etc/default//etc/pam.d//sbin//usr/bin//usr/lib/systemd/system//usr/sbin//usr/share//usr/share/bash-completion//usr/share/bash-completion/completions//usr/share/doc/packages//usr/share/doc/packages/util-linux//usr/share/getopt//usr/share/licenses//usr/share/licenses/util-linux//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8/-fomit-frame-pointer -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:15341/openSUSE_Leap_15.1_Update/2e9c00423d17b1eeab33daacbd052efa-util-linux.openSUSE_Leap_15.1_Updatedrpmxz5i586-suse-linux  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqqrrOsttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttuttttttttttttttttttttttttttttttELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=097d4c40315a874c1dee4a170d585cd54ee209f8, for GNU/Linux 3.2.0, strippedASCII textdirectoryELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=73c65e208efb230f13bb5d347099906b92a92059, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=c73a57925cd82a540a6e8a6ca45f950461e1dba3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d6ae906a91d348e1d28c57c268af1fa2aacbb47d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=3f04b24f64ca0d4ca829d17c9a485e5b56fb8b3f, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=eb5a9d468e2238f83c35a44b396c490920beec7b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=e7684afda0613e1bc5b9ac3300c80a85cf0aba2f, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=84aa04311a8dc4ac3493287ae7d96b15724fdc66, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1460ac7393bfb619a244b72390f7e85448a0d729, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=85595865b1046183c5b3311195fbc0156c5aadfc, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1d946b6c97c7de1bf3c3ed0ad1a4ea83afee0f08, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=02231085def6f119e2051ddf628fb31ade0573b6, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d99eb35c01f112fc651fa857b3a1231b2af90983, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=2ac0e5276e429d513af724260a958712dba06bdf, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=adc1274753a37f80a8429258fd1f266519c862d8, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=9295df644663257f18249a25719709687fe436bc, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d2a0caf741c2fffa501398f475935de68ae7a530, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d87280f1887fd3313028a74c13ebf16b444aed20, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=bdee227ad1addccdfaac9ffd009cc35bcc865a70, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=6a9267a9c9f9cda606deaf0242a30b4d31ac73e4, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=7dd6e82a807b637162deaa6e245b2355f6cf4146, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=f07aca3c9c528a93ef4f5cef09865505995ec8d3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=2372f36bd0ecede4c49d9bc387d74af7be521898, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=05c3df72856cccefa40ef4cabd4456eee4297445, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=29d01f400d4b7000c989a72ee9e7ff71fbeb68bc, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=010b403225a5b9a8cfbedf41d302213700276073, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=ddf457920609c0f9ff091335eb8cecbaef7dde34, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=86bb91a23dbce4009101ae8d869760181506c4b7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=75234312c9ef518dcf37c2bd57953282dd4c71e0, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=30f30b4eb4c158ca4e8c8a3762fcc48a7705f1eb, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=944727672b34762e443b0ac808ca76fa033f71ac, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=9dfbaa75be3a47d109ca9321ef9f5e732a4cceed, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=64a43edb18173c67e1e37f602c8497eb975c4ae4, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=94dec68d1d03594c625e612860c4553c5fda4b21, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1a0188c0382f111df02591da7f3f91815bd5e633, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=b9c62925fd75f027e36ce73068d4e4addfdaa414, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=47ed3fbd45f3ab363cf985d1acb5c3468d4ec78b, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=fa0cf01d198314c04f5d5e487dc8a05a961c3eda, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=952e4d9e1b0e558fdbfa6b4e2caa142836624cf3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=e6417cd6273b14f422285dfbea6606007a6146fe, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=06c0ecac4e0deeabb1051df6974b1494b0050163, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=30e5e22242ad166e00aee6bcca08a328c91149b3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=a876ccfb9822d8cef9a4f275e5731c0e5f458363, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=f8a872a18c386e173c0dfd67df4b76bdef3e1257, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=8ed375929a869338345413051e326ee3168a45f9, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=fbad0beaa7f983c248bc40aa446ff26bf338954c, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=59854ca3c21dd349e6599e1833c7abdf482d26e6, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=09e10dc4df641078beef9788ec2a80d9859d28aa, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=914418fcb7d278f963479d5fada0a430bea05ba1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=69d36c80f5b8379b29f9f59d8e52348112c420f8, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=c740f62d228d1d38e90c1e550bd87fcf1afecd29, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d22e43725bc5221414eeffd3e47ec1e1bb852842, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d3ecd583d7d4275e23f6403284409855c3be847f, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=8f869fde7a5db6660ecc36c44bb1bb1513d2cab9, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=18268bc9bd1d18a47a9f201bca33dd227814a37d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d39fbbd2c70afb264837ddb1d487b2b740765b0d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=7aff5f276329e3b73856562eb1e6035b0ea3e813, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=acb730d9a03951c6afd43b9d12267b4422b0aa7d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=ee33c908cded8088950dab465f57473fa6a54b40, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=7462ec4d058f8d84e18154c3364f60d7bc20019a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1d63e333019222b25759a9a98e05eb5a60044781, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=2ed9cfb74264dfd67ec4591989564187e5e7610c, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d41534b02243e87ce537aa2cf848ab66591a923a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=36f1278a1794aefd54caf8aa774740ba4bb87d4c, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=ccdcd9f7ccb6355a376ae07073295f8addbbf493, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=a58e7227385ecdbe6cc4a18bc25c848888333da1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=ad77f78037ca9532d9353c9b4e099b14d3f1c0eb, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=8dccf2b7fa92d487e073a2c91c5357ca3c85675c, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=fe290feab7c740c64ec1f753da9799f4a076182b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=babf47aac41cd763d2844a4a80c4642ff3f81065, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=4ea55a5e2f1091ff8f3d643e683e2b5f7f6149b3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=92bf40f4b0de8bba5677e4c98a05719c5718ebe8, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=06244351f3962263a4a06c7eff3df094098b7759, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=a538ef1c01a30b62f1fa1f36db848ddbfd076189, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=cf0902a7691a8e8a9e0c936f4966770c5366e0cc, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1f101e2fcc16fb8c6df2d6fae6b78be72d537d2d, for GNU/Linux 3.2.0, strippedBourne-Again shell script, ASCII text executableELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=b8eaf6a1f1735c19503e5764c391eb63e2a731aa, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=5532e9e5181f50b56cd8a98648a4e0f165d3a8b9, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=df60ece626e962e2362a5902ddcde956c5c8f2c5, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=a7695df4810116b040164175c33e20b16540e412, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=b27e8a1be20caf43915ddaff784e805afd6988c1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=39161b95d9a4e88bb3c326cf6186559c714a13de, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=e4ccfeae93ec21959fffca39051343cb58d87382, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=3657155c242fcea22aea1e8ccffba91e084cd779, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=390aef854718b3414b30b821d1d3351d8833d217, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=758dada9d89718afa729ead80d4c95b4891eb79a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=0760eab80544977e9541a84ff16a5b1c404c8a28, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=0ee09c31f1afbcd3bd9584a3bc2fa6bbb4029051, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=cb6b97573e32fd92d33a387b142b86618ec12302, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=1597f96f42dc69f34c4c4234fe1bc9400cb0ddbc, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=0905be3f5175d97a9a74deb05bcb4af1625e5a5a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=3edb83bcdfd031fd393e935eda3861cc46f8c234, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=b93ecdd5b933f03cb5590b8fa90aac30c3f5e38a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=305402b3f67bbf78cfef9e1ce630ebb8ffcd7398, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=d1c5cbc856c96cbcaa4d05f58f996024f754291b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=691f199d1ca30db7206d476016999f792973c091, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=acce58ea14d905f45308cdd0d7e9500eeeb041d2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=23fcecdd99ee35f82d9653bd1e0c38056d98b1b2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=cf0d286365d8d5ec197001a95f7cb6343862839b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=0b10ac37df8cb15a9ec552add734cf55e32e3898, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=3801e9d2f269786076c2126d905d233dfb5a3737, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=0cf5798f17d70dd3b1c18c98f388efdae537ae66, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=b5899e925d20d7db0eab9f6ccc1474913ddb85ec, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=7ceec09a25d68c7dc9ac2e371ec100e6870ae432, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=51a5d02b60f707ea1cc51d89b8225bfdaac30a33, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=ed5c32ff0eecd5df8341f1e22f6748d3873ccbaf, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=5a53caf5087a975c69ba61daad148b4d1acc813f, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=c5616f69590e0c14900f36b8e7398f90e0db765d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=2ee59207c9f6c7e4b67ac4393a438c65f7bc2e3e, for GNU/Linux 3.2.0, strippedAlgol 68 source, ASCII textUTF-8 Unicode textTenex C shell script, ASCII text executabletroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)Algol 68 source, ASCII text (gzip compressed data, max compression, from Unix)%/3<ELUdr %=LYjx (/:KU^qz'1:D\dey  &-4>KTej                          RIRGR$R*R!R)RR'RRR&RRFRHR RR$R*R!RR'RRR&RWRVRR$R*RR!R)R'RRR&RR$R*R!RR)R'RRR&RR&RRRR$R*R!RR'RRR&RR$R*R!RR'RRR&RR&RR'RR!RRR$R*RR!R'RRR&RRSRTRRRPROR$R*RR'RR!RR&RNRRLR$R)R*R!RR'RR&RRWRVRKRRLR$R*R!RR)R'RRR&R@R;R:RKRR$RR*R%R!RR'RRR&RR$R*R!RR'RRR&RPRORURNRR RZR*R$R!RR'RRR&RQRPRORUR=R>R?RARR@R;R R:RNRYRRPROR$RR*R!RR(R)R'RRR&RNRRPROR$R*RR!R)R'RRR&RNRR>R;R@R$R*R!RR'RRR&RPRORUR:RNRR$R*RR!R)R'RRR&RPRORURNRR;R$R*R!RR'RRR&RRRPRORURNR:RR R$R#R*R!RR'RRR&RR R&R!RR'RRRR&RR'R)RRR$RR&R!RR'RRRWRVRR*R$R!RR'RR RR&RARCRBRR=R@R;R:RR;R@R!RR'RRR&R:RR$R*R!RR'RRR&RR$R*R!RRR'RRR&RMRROR$R*RR!RR'RRR&RNRR&R!RRR'RRR&R!RR'RRRR&RRR!RRRLR\R^R$R*R!RR)R'RR&RRKR]R[RR$R)R*R!RR'RRR&RR&R!RR'RRRR$R*R!RR'R&RRR,RR&R!RR'RRRR$R*R!RR'RRR&RWRVRR^RIRGR$R*R!RR)R'RRR&RRFRHR]RR$R)R*R!RR'RRR&RR&RR'RR!RRWRVRR$R!RR'RR RR&RARBRRCR=R@R;R:RR$R*R!RR'RR&RRR$R!RR'RRR&RR&R!RR'RRRaR`R_RR`RPROR$R*R!RR'RRR&R_RNRR$R*R!RR"R'R&RRRROR$R*R!RR'RRR&RNRR*R$R!RR'RRR&RR$R&R*R!RR'RRRR$R!R*RR'RRR&RR+R(R$R*RRR'R!RR&RRRLR$R*R!RR'RRR&RKRR$R*R!RR)R'RRR&RRRRR R RR$R*R!RR)R'RRR&RR$R*R!RR)R'RRR&RRXRWRQROR@R;RER2R5R0R'R$R*RR&RR!RRNR/R:RDRVRR$R*R!RR)R'RRR&RR$R*R!RR)R'RRR&RR$R!R*RR'RRR&RR$R*R)R!RR'RRR&RRORWR*R!RR)R'RR&RR$R7R2R4R1R5R3R6R0R/RNRVRJRRR&R!RRRR RRRLR RR$R*R!R)RR'RRR&RR;R:RR9R$R*R!RRR)R'RR&RR8R RR&RR'RRR$R*R!RR'RR&RRR$R*R!RR)R'RRR&RPRORURNRR&R*R!RR'RRRR$R*R)R!RR'RRR&RR$R*R!RR'RRR&RbRR$R*R!RR)R'RRR&RRRRR`R$R*R!RR)R'RRR&R_R RMRR&R!RR'RRRROR RRRRRR$R*R!RR)R'RRR&R RNRR&R!RRRRR&R!RR'RRRR&R!RR'RRRR$R*R!RR)R'RRR&RR$R*R!RR'RRR&RPRORURNRR$R*R!RR'RRR&RR^RIRGR$R*R!RR)R'RRR&RRFRHR]RR&R'RRRROR%R$R*R!RR)R'RRR&RWR7R2R3R4R1R5R0R/RNRVRJRR.R$R*R!RR'RR&RR-RMRR`RRR&R!RR'RRR R_RR RRR&R!RR'RRR=R>R@R;R:R RRRROR$R*R)R!RR'RRR&RR@R;R R:RNRR!RR'RRR&RR$R*R!RR'RRR&RRRRRRRR$R*R)R!RR'RRR&RPRORUR RNRROR$R*R!RR)R'RRR&RNRRuZЀIadjtimextimeutil-linux-langwhich2.33.1filesystem(minix)utf-8ad817ae8d220cbef5b7822cda5e02eeeb6b3574265e8848aba56e608a56b8d2e?7zXZ !t/m]"k%N0؉ӪN/e o}L*Cxe釛VB/*KKcd`NRrI>T%LU'H#-R߲YiwdĔp{,!`ARyĸo_&_'n+2`p <'onæ{!s,H$VQj@[^l*\H\rƜNGI iYt mGR<'mb+J( Jm4MWfX=MZakxc9+ 0̲;%1AM['2(HՂʐ"{h]lʪ`F glua,0j&Mp-'R,P@a?_nسȢ%nOMy'בB~lI]qЎZ)A7q>PqhE'ޗ^L9ڱKsw3.)w#7(lԦʺQE񃴜?95 kL{HQ +rS XHena)#7I,bߍQҐsrNVT5dkavU&@58ER+lzo8^\K5ʮ]n6TO^]ӽЫE.El]WL2vC?P-S&\y!JZgݥ*o<.%G%=.!yXah* #yRM" {Kpwq4Pvjg/=ʯthv!D%M"֔"n?"fkeYʝtL;/k>I(>Q&+ [ƅ?C7D^+$owp^i:w,?-˳pA}d  ]|#P~;T$?S7r}*erka7 B+)1:/ yaWZ?sh<)P Zf1ny/ݽwa2$d@!#0ƚ:1<SA2&KД۰O78omy8&Uzp?;-]ե!gvr|_ԕrtiK6350̔N5 wvbU>"1Ev*,)M@ ٝLH spb Qp*Kăh3IKNA18ݞ& 0.VHL=:LS\26թz@JWE-# βK; b¡t(ВO_NY` 1X PP/,WQ{;BMF $5w,#DEPu"Z.c`'{Ą~͂MOKUCƵ(1EC7z;tL:k͛9=E9Ve$QS\FrAHz6^෵W rر!ogCdek#wA$Xff-|a;k`T#fG&vd )aPlPfBR [tlS5 \\g +Y[YkQo*#uҒ5[@6 *LPܯ e:Z٭5r-0u ʒyn7L!B؝ɚ>"V ȹݍQȥOh+@k8T8&6EW?-Hd.9eabxm&H}B馥N],su2lS`arUwZ[gsbfKPwB  F+EQb0 DOe@3:HAI_Gm||, lO7 Vx!@ny 08Z0qՕ:kKi+ZSe˦_XyȀ=,_$]E`T=EbpM[̅%VSHDځ)UNRPk-($#OEm+_(ZkX{}v*ojZ-VBC# QQ@f=:kA['n)(X}˝鯀0\}O N<bϓIjF"{+xGe;GM߱?[oCOwPښu|3h+D0PS;ΪclhfHv$fN{4U'ҿDgPOC罓p%HBbfeZЙ%Eb2Kq>I|)Zb$KZwZ=["k𲶉F"+h<"Tk0r|PC)SI-X7)b]a R  c)x*uXH y{TLI`uEA MYLy~垮oP{NoPX+c!N]ޕB=X{ 滥#?*6֮f-L2@0"H)tFۑf$Gޮ%i]ZB܁Z*o_@#ML_t-%="b(aZhgRMNÌt>Ku[ [U$aO9+uV'b:\؀9$6T 6\lJV]@]Q]Hdކ^199=Oul DΘX%sYT #;@AǦ#5sC+4ӻyloR>paj <ԥ͆gM +}f(9/RJ%$v(Do{$Ru?`ƴʗZPfx'En@2]$ٷkkAҌaMdAڷcv:<+q"diL+7ؙ6B{e!U)Q(#ޮ 3sdU8b5H[ c4vfj. .Fqb1nz+373 "Wav㺎0W#C^n9VQ/+ԫr;ԯD$?`IҞV3c5vJ 9w&3 R{`3,⾹ؼSVc}911q=y@8& xEtɿ@ /9} w&d@ӉYka%ogS `16N ss[W:*P|O;Ӧ3.y7inTDɹJyxmW}ZWAp.:O@pnM_ CwyUJwqWVpPuus[ʉŨw3AP" d4k bAk;G&në+X8_ܫ歜h߲\{,+qW3d,gK{$Gj`/CDbeһxvOEDE3D hKu?Mda-WuT8S%1NѺ{aLk%[/8r֦k/YNNݒjԖژMj:K&wTN+_^fGO-j x7WLTѯǡ#IV6r>:@yf$TPNl.0p@,2CF%׃|W1E8Q`* `Ďd{zPTN~ bⓕ xU4qhH@ }"\|R#L2]=GEm,YbuWS{r+:V Fw2/f,TO,DS-Yp"Q&7:V!+L^|m/:/:`rÌ%C03 p/|uEe$K.;'Vs8Eʉ8G?# OR$gBٵV hF5!(,cbZTSyrLBڶ8Jzg꾋_[~5I[OtQܒ]tM0&i_ە~4.T tqXF Uz%k&ƮIHy=3\TG3.N{" v5VQ=~gt|] ڑ8L$ l--l/!/@_ D k;eVOaY!d6FZ11xܬ>V~}T7vo="m/sv a r׼eVNU$,j@H,!(r 3+}^94dw_@kiYwevz_&7+X|$'viȔ~Jv‹Sb{a.K`4 50.xtxFB7>324JvobV;fߥ&ܑ)h$ fXo91~+Jyn&tR_6Gcf,ۍpotfB_@]C}cӒxl^Qu 2 <7ױ˄em^LGiݢ` ?WL4;~r{bY 'O]SFԙQkS :ʨNku>s|[nC?iԢ6 3n)nMWmN4UOɩx@ S/n\!]5vqD\Vb Ę If<LbŴ|;»ǎD,6^B#qVtfAZm5,uq& w(^s 7Q>SԁקuRR,LMv(:kz[Ou3QU!Dg ۸Cyl;[a=q4BtjkO" w4=n\{,'cEZ~f |ZtccAKN@6-W7h aK.)OTzM^[X"sQK] `dJ&-!6U iS@|$o$ux"tl\k/q7m'%]ӆ,'| N9c{?GPp.=:  )G2 quK(*0̗i/a1>&^h?cʎZuF#AÚV"گ\a00bSxGloDWAr `~,hnU7g:mXmyGf7>o (2UǤ6p{! 8".]* ~ϼpyףӡ̼?G9vpvQ]7R>{l 3PgLMIIf>,վ__E7Srږě%Ezen9*L}e^] Wf~/QVyhI28LG3 p0  +@!~XWꭺ0 ΂L^Ak XaH< 5QCuX+P QUq@&UO iM1 #! 4 >̲[U}K{L¤EHƱ, 4Ls(o Py㾟#+T8 D@mg^ 0lZb6L-!UUxBWuT^gLl0V͌Uy/T^gizeyo)br`.Lzt S5.f_9#lgq|WXy0NjpFZJ-EckpDE:Y;@&L؀(\rv|;qrw~AnUؖ=਑wE>MɺPYq+9\ 81cYi韃Og>M qvrj2!p9&ncɰLȪ'9§E aᇙN{c :oS/2w6ֳ7ie5>U>2BۖӾn?У$,@1焲i~(bzC4bR!{82,WC̲'l{.ő#f } 3 ,mAXO+U^(zvkGA )c7h>!͵>; tZ#3 ,@g#>a1_vVnf KY"dD4Ty&]A>!kc`Pki߾&#aݠeTu9o!G(42{E 63TRiyk=燞▥^bI2Oa谺<ᴎ6> 36A#&_X0XuzEgء522wݧ{*aYL!667s]t@5&+{5ōT$_Aթ "پ.}wT{JQ!n}>8 >!T᳖+. >1?> u^Mj)?UU5#)f 4cUy޳.ͲZ勨/;=j}*PX2̭ΨS<歔x:n|K<~jEȦ>-}K8>X0<K+(8HKUrRFgؾ@<7D} U.=c:޴SǢ+Et0 i2۠9=HipbRAiʉٲ%M VITqLyUy(Bi꫔hBQ$a~:/7Mh(b$ۘIr~}^1>pd[Q!R#^p^ ƼJEW#AWCeQ6#fjyy9~C[_m;Gyb]w oR Z+$dKc-2xK1G +fԐ~lҚJAovSf#7QIU 1?{)U$edA+e^1zL7ɮt;f.\zPk6 ?U'QT8):M*E}T y/+(:J4_ztPlZhyHCdd.u,"8~Kv?X=$7Χ A5Dk7ǘq}-k Yf~(t9'cA}!y6j(HylO="*B0SM > wq>Z~KWZr~/Jz?lRRJJ&=ø.T*]okj'ʞ5iyg3ukϟ! uv|{aM넹N{as9bYFqQxx2-n_lM{34>.#ow^LiS*qn dI!DŦ`3B᳕rMaY?e=e V&pZhQKj?׺$W"ܙSh-Dt pmWӘq_ tg̳F N|!ɟeG%n9ի*蔈%p\ڶbp`+n Bm13'-'v>[5Nh h(:s :ΡL\oS>i}i!ŽnJkv."UlV^?'fV5'* Ͻ¸E<[R;{;a ~yDwƽE䖎&d#8k*DfBs1W[ Rm- %i~#m>I\O0,x@ۯ3A6Kzd*$޹G;c.3mp*7dd08FGŁn[ edu\;m?d)|S G\| !.}ؔ6gE=-Qohq-"s脗! MȢ*[@Ce&N]ڧ(h;IHj}[%PaX |9ԞK96 (.xZ l)-/L_lVΣGC#ۖ/_=ze A[*j s lUd'[eWCj1͎ O,=؄OƘAFvt.D~,ِ*>>Y$$ϝs "Av;e童·Re|o }SF1AtQt?M pa ٨!icU6῎E,L-7*7fC@N#VތfX5M]([?Hհ'3)qk_O ~ /R,^+TPOÖgի~vbR&1KXqhNR܃s0zEٍYǔ&+℀б$¨'^C۴:⟗ofYo!3ꃭV~6cr[%<&:^e6PkAc=x =BT}}à킃߸;e}yP>ۦ M+N&&m׫m.bQ0 A*Kc[L"߉[=|Xw\]Zxs=D>=҈&·.+l#K<3rƠo(anxsѬ e?}f^h j7>li̇EmR{CE~hT0I%.suGg A]g]:^4d;"htp'TsZꠐc6턽ʼ F:QڷJq)t5ǪOկ !ΦYe,A@ō'=y#/C`^jj|[aURlt[PER)Cf @6=1apʴif?/TYb " ;I Kʖp*9x%AvN.TUqPgQ7k }$AW U4]+lN P x9s?R`I~6Q|T5 nyf۾c_OH(l5vAĻ 5e6C߹zDLHlL~ƙ(܅ bw>S~. $v+:R*{w7ߟj/'ULư(F'uϴ+Ð6 1w(RȽtf_v<;80OEG>22]u2I4~͟? Wryp2cqL0'h銑9&Vvz 248"r(&A ~pӵc냧 $y<1Z'aX:EVdZ{ϡqQC/rV1X &04Γb 3a3Xp*FBEh`>!W`du sL5LAs#4y9^ Oa<µ'b*(PH8kUɱL#EfID`T-wNIntXRkřS! '1;Y3@R [brU搅V8/Q]ܒ"+'–+1δԆV,5ؘ'Ox D)`Fj u}˦9I9Gi!ΞZ\'67F[yq E[(:(_Qae8 C 7,Eڰvvcu[s\ym]JFP;.4@qN2 ҈8.* 4S :ӿ|pcTx\eZwwMZ5پ ]+ mmf2 ^}B ۻKLJI,;oxQtx ['pa.V)V,S'Q`k {IYV_t5yE/9%Sϰy, B` Bm$!CGk66Rh,BG |Xb{)UNp6 kiJV2&Pn>v^wmP͈] v6*yp[u"# a?5z0"]S KrX󇞌 Ի*m)>Coʾ #rԄ{) ЋIOW~ חIDOXo Swrjdb5|mڦB7?&=‚kUxãO ?vߪ-i=k?L5%^H2V8a9YQ"uJdQ=L;<"ȣ_`p_M>;ja(ןe3#0WQ p(p~#Yฦ>ULwF1PRM-{Ot 5-R0hST<;(-ogk%*ЫU<#w,9[6{/z]yCt\'F4̕WEWvݰ[s˭o ߛDŰw\[r2r1klJj *w}4%A߁&:XfD@xiPBjC#j7N_9n$m%2מ!nQ 5 ^7}#HCM'4go+ 9O_ID`yS~s?r\A=Ds?I2)9's.f}b苭(Mpq?A&|몘Τ=([~aN̒Iw5jl~XH3\"Uo)A#ʭe^.s-5t`qid;9sy4EM`G;8wdST+b]vYqlY:3%^!;?qQLQ(ȧU Y"CZ(%-6s6VgƉXB/}jáKSSskP;1bсfo)X `M c10|bx&y+;KD]AlC'YI ~o@%Cӟ\9a{^#QrV(E0 3Q 1dй!ˮkANaӁ̙CpF*Ar"S2hFHDѥzݯ .+P&CQHz-*)Z!%8GSi.jr9ْ+#~!4Sof&}Mr,WݶSLhڣjۙRIMٙ{lZ6XT^ȅؙɑ9I KwЧh҆P/0W=ԃ>&\Ơ-a\Sp%:Y bLmmyTy\_%\WnIM8@d87qIleQV%" ۗ>cCb/LXʞ*a#_D Y'%|AZVZ^@R;yQvMlcnHHsQ8c2]g%d=(b_MEq#rkjC{Q9OnJ7t=p=R1"̜nF "S՘UX v޳ٴlĭzL$-En`7e'_} {P֓F@;zTݷ~$jJl(?F=-OIkSXxDh[]f-Yo,l<փ1>|XѺH8W  ,&e~6}iʢR=[Ѣ4vg,D;=K*8]s/6_fxxS4 ~r9h* K*_S{sV|{M[t_6\{&!P\ >=Uc9EQ>p9Yѻgkez,_PyxarşnxG7t /@Xl^ֹPv +C)ٙ =HFf;!1ޔ:m<YC!o5eeL=֍G2T?ׯVVGZ;AӶ~؄ R h8+YNm*m&uNz^n7 t;?2 S+LO`ZEi(eaC:G5Ey^U`LZoK̟>]F$ɢ:*R&FD=מΒlL3;[5 Q]ui1X(@ʼʿƌס Ѥ4;31x-Σ U/SA%3QgϔnIH=ikj4ӿ εޖ?\AM,sȘFJ(x} .AE_纻9ajT,J:G_`3lQ6O[M~Nv~>KXr=BKaô S=rŠcϸs1v`nkAH]Vwnȅz[%1̭evAm.R/ 4KGFs8}٧eBDoX2.'T)H:%u<Me^:]i)2[zӇӉ+(t$y\mkw27|Zr[_ɛnE. )SV$Y0`#cc\&,른*c=(7րG֩B A{<|eoY!e~XjH^y栚^\uJ9`,]޿6zTG[cH %bR<7L[r"ee90\fO'=^v# t* 3WkPwוj8Eyp )_]2,Lݺn^!.B9xuٙ_&\2u%;NuTi.m1,6"閇b)9[/V[[9VZsT_@~W\bWú׊Y ,69LŸhi01V2: ʁyLc"fAcsQbJx|ZU@{~0'Ҁ?z JNbA: Q҂Y3{w7`I{tf+uL ieo6/[gunbk`j>ũc"%|_5Om/X07N;uG4a7!*w$6O (p8n' HK ӠyɧiPnԱF&~+3{*iK R!/$JO7Jbut EQ %xbM$!GlȰ 7o H&={x}5P:Pd<ʰ@8Ds^\ ؔTDXN8"ǮE#"_ z749K6$'3`:c4 GFI=X)DJDOlnL7`JHM8?ò[̀ sxE&`Aq! QF#D]/Gt 2WuZ)Okzz~GxP)m> y|1fCEOF:zˆ>C\U ٻ(? Wd"#(ʂ zX:\+YeZp9!XVD]j@89;=L Ie!}*F@ %P*ع{9u}ͺX[HMZ#>B.](U]Z8ؤ("v^v5Xm?NZ%7ϻ{C> u9*XD-$E/+AQ܅1%Ds !'$/JYC0_,!Y};8aig|6`bt\bڹ}3hU 6*k[  DM8׻2@;"O!O!'=uf}@_3Fڰ'GgE8)<}~1s144m`sX=3j2<]6UvP*@%aW:b[YLDr(GQ,XRpprGŸ}IYkL 04KAzTXe¼vC<51eU=NJE: mVS s۪SH _c<ȫR?~2sR@[gۀzI/Z9(Y~Pq Ӈ'u+h*1iXԱ4u7SߘKA},(;[qXJ! &ɔL8T*iB}Aď{-O=v9 Fmo!kjvreTPȵx&SFN-5$F~߫IjK{.$7Z Ɲ;y}'̡ .cI 7!r\_vbCKʵa3?CgG_c7ZV =+ czS~ ."OF&kNUA&+Ug̟-tpik^ m/|ǖ Ju'vbg[:8K<1} 9sAB >SuswWjYo A%OFJue-Y3) k"G/l=#'w*ЎٜQQW}W&քNmg6CCD6R }!o~:lGS|S?xjD? ?taAŤ〺N+䂯 U0p q SsiYH6`\kLw%Q{TPYFp.W.F 1HV G{vѽVkՃ~4 TJ);-a;wE^nO'\T˜V: Ǥp&Mh'0GI-ђJǑK)b`z4u)oX2+5(Hqk-qF m! h蟐s$S< m^?!c%XhQo@x%z8p# #)5SxBs)>5Y&V'oܯ:(Mdq.!TTPʑNW,#:~t4IWb؀,gJQjSfT"ɯ&)w'-lG@X? t0T Z*O<@N tKIm37I:S*t5֫.7guGHJ+U_$u6!wkYtdn|Y2SJ#\@ȡq)^O "s:eMȿ.ٕŶ} ݗču1%ךWAJ)b]!D <υ6FzϢ ;qҀW^uzk;t70:x@ /(_#(+LG!, y#ڔO(qa6xUw_y.g6Ъ%h~jnP9)Sb|`B zт=kʁzpQRmK 2fO/5gc8ˤ+kL@$ol(! Hd +qZD@kĠsCϷu1 e.ij+4b`7mk` ='ݵ8DW()- ⍜|Ma 7u?zH@`_|9kE=ɺ#X[2E.[|*]}l8 AESP eQU[Bcː!wF~ k>bڣ E# bbtz;찎XRt}ny1[5M6qWD&A'`BG /tSC =A^6 Pǔv qfHv m=dSy*_d-|O8t+5voX7 _#1ХaI<>oE #ei/ͲW wݼ.BD*^c}m8*Z`p; jUe} VX*?rOia| -sҏi1lrl@n5bVn{4HȜ$`Z9@&y5lz  ޅw4, ͓8?e$ :.]|&3 jq݁[6Ɓ 7G'c "jM/,6Zݞ̩74f3ʫY,>~ՑpƷ.&$6B=\'l -C%LxGw42^V{ƛ}5g&)uxϦ@2 ܊ Fc]Ur>4fgjaQRLcҹ93?>ڶί>ra|8#w\6 Ϲfπu_Վ\R0jhdK/UM M^v!?퐱s&dqrk̇S{)fD 4F\ȌYIx]\tPc@䭸` A,0R-=xG^sy`ݡxۼ ZVΈ#'Rti-|סk 1x 9WvYmwov%Wdb?t:?%JxfF>[CjDT>9XyoLbi+SH dW>VOԿ$5q%)ոfH%*~c^ TZb$K(@0LdyR%5K=2D{fV bpn<^,WE] %!:?N5DvڲrT)I#,}FNumAd>-.QR~\m!GW*2@eꗸ5~Z٢0^+IX3 6vK`|W=DlMyWMp֜ex]z?)7 ~4FՂmOO!V{UHȽnѸ88R('T͸4 (d$B7v68pe )bh_WF(=_֠U⯒U+ yO]Pܙ![=htwf{Pzlih mZh4=M$m࠴GgtYjWywON+JIcl1]{!>]tvZL%>NyS7e*,%Gl(hYG]VpELE@czEs(&ЪCPTEȕVۡoI75qB]J_bInQ6wJU;\2.,ЂV/L2&v./DgJ賞-򍠴2놁HI:2'@3iQ6Xu+h~ޔEzoixyKXT Y0 E[>p&9OM;䊁L½XFC*lYX=9l"UE˱:5>@?+CE2w- oF2'Qr ߮(G+6k/m ]_3 :[F>-4XvCD%;ox~nOwCQf5YLy3j/3\tͨq!mmF~5W/O{DIίߪȯ,쁦гI y`XS,}懶c>%K*$K笊W6Ѵ`̻5y۱{ZUu;87)7i(.H\up VĘR(Y{R}M}FcxrVX"ih \ 1yetz-ehPnm43HHZz.y)9Rk?=_µMVZapE *ȱG )vL._[‘@of _(tr=V R韍)mմ!esiji(l%%&(`HvZ!mrI7Er, *Rr~etiw|cmROGTT x<BZ4Hlgͽllo<̞T(-aO F0X DŽY\U{yؖ[Gql bZ_\% [Kc Ϊu۲ڇ]!.G5P  .. iA_2BSFQ:13^MЖ$V)1BB}>P? !A|5{A;>Z:mV) pNUt#{?]s<|piKW(q&5.D\H6G+ T@U rk _KgP-^Xk΢_ sadog 3t#GMK aGV>gaV`LE7 P^c$" Dz ըbic!k Oz7“kj1|faDֈť +rlym u؇*DtKJc =(qN_{ #ESMPcf_XhENWJ-(t+jPVjb@l-(}v+]l9*mDVT|#jݰ7𧻓GتD>^";ΫY{i ]PR:ᵥZAGU{<﹇'].]Gc$B'oi\2`)6~huxtߩe>I7z H_T9W18kfİʋd* Odi暨XWt87)|Ӭ̲vd6g<Ff2O9㈻ۊ%on~[.Dvޟ@tYP!u2wx  3j2ˑ(jJjBoؼsw: 07( cÌh a$q,DIn\wr8A'-! -_2/E y4{xv!<7|s1>79Ӻ{:a>䟴bX*BAս ۡ OR,2[I 9c- 8"4{E6%;lkY< g~j/:҉.s(<9F߫:IFYD>Z$8%wjiwp׭L?FN̛",bMQccz"{JtN0rkIi54H[YZDeyݮٞ6/{fx5 a&prT)iB.cwP?կ5p!2Y?(ܕ\m=V{p5 oGeM^:WSSK`z@"rwM7qạ؝df5aqugS^X-g΁N.Yz!몕hI &*`@mL['+ w~ p #nǡdoHJB8V|8<"+Wi\`KG%R~DuaoL}KY%}T4~?}ц̛bnR# R)4i4̳7)5.~Rd֙^#-{0<4=+r+0!v^4r0l}Ԡag$*h(V,"II|ho池VXNŇ tl@{-i֤,5f;d稴l&%_J jFLY` }Y qu¶{]$:)J^Z(D:am&¿$[6{ЍȼbNaTޔ,FJƲl8!ҐHH lpem|׷2j|@FՄv2_R`(GSNjIuNb:@(irp7?=v ~,Khт>(zfc情 , !N|T/5=ڱX? aæ!s<ץ=8l0oچhȩE5'SZ?noEܱ \[%(u'6,,ŻLn l vc웽ѐ@EA|Uֲ۰\ nbԅ]IɁ #we{Q-K?H+_^6Ao)ԏs..ާ#?**pZg%ӄ%uKɲ[S,lVFqF:x`dtDn=cmEcFH7_Y|$$|!n4&>#2:[! hx3@ȓ`Ҕ bّN#.*8g*OUņV\c0*T{l?d4E~n#X<[ wgA|~NH[8G@Fw:4uRDAj~;&}xE9JM6Eգ; |"SN}=хM'`IB*na8;h !.t-o'=\ܜo& O&3}ߝ D3 "'tC d6F@\.5xŵs*4S٩_ܱdwllpW;%:/|< HT= f<]|cl*K'0ݻ(5 XsG8qҦg\vy;ctzIbS;{MzT(xe ;X,1d`c( |5z| @"UE;q%qWo㙇u@&8ە=oR2pTK֟b/v\ RxȤQ|K-%rfzv ґҙxU8:nhvr=nB} V3[6>k?ͣk4`];7= [O„I\ WL`" t,=2LAu 7@}^śչ3N=97xp.Zk\ʤ9TzS^FzBYîQm;y;4ȶ7. ojfjÜ<*xG.@cI'%DySP6/$UW +k *QMKPn"G:ȠeIt'!=^]?,.N}`fj7 K_*ܣ[zjFmru['r*a,^0mFwՁ95Ryzo3O%R/g`n" bY:mNE`D&PRVTp#ѵ9.+/ќƙ+Mo,K8]~~[GjvAE Y[4GMlvy79W%ph1&ӡtpS<6njsXG*$2?v#Lj"@PUajj* [RN.`^l 1/VxAF 9~G_XlnBJnBM1%`9ʩJ5$Ԑ`?w3 >o bi5o'H9P  cHGq{}@ ׌=TUO6G7/==|ȘuZHEyIv3aQ?l7;HD5^eʎel`:@Tľd8Dz4 %Sg¾gxW }Al\s^zaMix y봃])e[>oXK(m yhf kA`uqwiX J֕a:-H(?=:+ے3:Cࡢ7rEXR3"-DjA(Ra&YR[XАt}\b4"h-FZk]I0P HDfkVb,8Bxϥ'_(ctI•G2ZWCHܨKv8g {s˻. {W a %k{%7FQh؏{N%S4ȡ{/rGvD-?9ȦGg[T㈅2Le$=hޒ^5uPJAxEqSjrqzC%.Q "+]l۪t'e%,^py!:qC4 %$~ kA @!')/e0Ϋ5F̺_Ϟ+=B4mMZsݘ)keaAZ'nM<&G듴4rP4,~"IFkbp<7pԩ|xDr#Զ.(Pq.n緀2Hzb`BhĐ NAS?ViPVNI8O<)f~0)?c)8g̜^xZK2=a?wb0gMD3 oOjI>Q+m`;(SBChj0L/O V3Sl]k߿QeIy(6DuZѽ*KO"8LC@8Wwo([ 1~->|c63 U?VJysiY6,j_+?b2DQPs)w9Q9w, X dBLG#@!j Ko[1n~!/ h3yq[ /u>&itvXtv#/6UƝN,#0UQWp}Fm-Bs-;tr@o /1^O ?hPhO& q)ny {Ƈ3*CQ/ߗc(K]q1tr7bAqEo:iJzp'@ʊo{mJfaXZ)He7Sʮ>s=0h$D[>!v &#YN 2o  sZ Ҏ|>I@EDrDXAovO1iLrL?kX5'2_kDęgüz״27tu\H9_T .dK1p$Gg33\.~%yOC}@i{ M v͚ mkIf=+irm tk}¦ۡ4:fXs~Qjst4.].l2U*WGFJE貈wQ/Oᨩ@s V23[Ce- x$JxF$f?kQ*č29twy՚GJysviຊTHMp%ٺg8C'4.bb HDDEox%8y0+P|ꗮUZsa' AkHPێ;<.xbvogې޵5Y$rUbGQ&Oo'{ xTv.|m&M=„!w<"ԏMkv=Ynh&N;Ң}\Q."yAsTdZ"3gQxB@zm\}Æ_H.+@xɄu.#\$UH#PD[PNocb rr-DU#ǔ+{#^1AEC!TbgOGJN-]pɦ^x)hA3K 64  |RmK(: ح~+aȞܣ1jSB1{5'l>]%zODoe@_{rLzPj޾7QR2f9ʲ%rs0ԏWx5n[`.KN:Dv4~#6W*q. w&7G굔:5Xl{MZ;OjYcNi%uT1z )\1&Ҧsizz |b<oP3zv ~H!Z#.NFf԰"O5q{D4 ,F݆˻~7ŏϭΫJ \\5g6ZƑI p9HA/@nwҧz(~ҋqRi4IҿAk::\{(A!FVp~YRnNVe֭s\!"Rv|U&7)#'q^; "P_!lw1S6Lc>U8aM$0 <51MyH0ÞgSfG7 3bEM(Zrrx;ՑvkYp&{1/ثnVֈ Օ]~9BJѳ;Vzy>W2mrW_v@) #? K Aahw%l2Zit_׆|dd^jC/}yk<;5P"$څ(Y-9ڤDICh\tzbi<}# 0ڷk,{i@+UpU4TQlJI7@f6vDC挩[0raa|oEMFOe![%souÿ PxdC\cY2/ůZJ/#{&x؎نf7l>3]=&rVC±/My΁mY"DoX{1t6_^!TDC"kRtI.&q^Nk6ZY,;l&"oo R\ebA雸5SV] ͥWh<X3T=AL0X_9n-h1P>̯!~ jLe{R= [6EgH_G(ޛo)Z__|/r7Za-|&TeX$ |7G@%~W[ǕpBfUYqH/+i}Y1Nsv1v}AͲwG6n{26(jHkYЦHa3 Y7iU-^7 ) 0G/*(Q:wcGu\rm+'%]ScS|c1o ObjBgUys ho:+@]34 nlDG>{˅f[T3`GǨĂI8nZr&`"XoKH$|ERؤ ys$. R]x#>q%_aJDvuȹA)223AsG1,J8WU75S(S΢GK0b2r?\!52ֿ1W 9Je: xſ,D`/3+)v.~]ȼO;jT1":\W"VT1"e{T,6~DbIH >ؽΙp =K6'3_bMSW(94i@/!Sߩ4h=p;FvYC3 >'6eHC~y4=?-6V%9a|ƍ0Ti JTfM'HP8[UDs.9dWvޮrr)GCgbfbgdpOHru{†{9@Ct C]jfgμ57!h)5TS#h [ ;,xdݗ:*Pg߶'0;Se,j҉m z^&'~5u[JiE%ZBމ> Kt°Թ^8NsNCOd] E{0U`l63*X nmȡsa҉f;>FQ銞Js_ ezSj`3kU/6ON"꠰'ҐsPRޗKNxm c@?2g6#򝡼E%I.&w_ rFCіAI6ԅ!״(ߺjYa[(GEyIr2ČxO5ObrV!(ո_\[okq`;BZ)Zlqzz@MT[[ !{_P9#2һ;R7>IPu/ǥ` y48?Dl|UOP:I"f\N6RQ1uiV%Ȟ f{p [>KUg] M.t_sbz=|:YYF`[_g$Gf`EA,ۇѧDqUNot<7k==H =Ts1ٸ˹X!J{q%q\ę!`V6Haݠw}%r4Vެ?-Tp}^ĤuaD9c#;\56)P  lm27^l4O(ևmW ïjJtʋX(=ig6{7¨\h/:OEKųV ii0, q٣^ ~HK܇(< cS 1F|gxC۶&qX9Jgn1&6j֗Ԝqzmbu|5M {scYx  _(م%”$$V.?:| Y|GB1Jf]͖L&#qq;e#Eeik(SkMU{\dLossSyWub>E=Hw#vJY X^$(M*Rr!l{EBink慷o1jnG~j)X{*90ԋMakr/ \+*H?CD\4{B3%;LWX)L2Br^@gժߛ![!]"0#3--GԶuyq9Dv-^*ϻk7wcDގ 1m←bW+طzp8+#u; krݧw,KZ:p" M?VwqXy"hN) 9JO΄OD80JY \yLTg5 ݙ JWyVhk_mʧb.$tqQP& ˣѰ- Ll܁t^9OcdB_iسn`pvmCAٻDYe2]Oc H&TCD'87nXRX[ݭ(@V^%âo&d lrc[y`tQAvS +[-<9u,Zm)R,[xe/O 6H#<JFqX7O^/M%%y%Ô_N2u-<)Vrs+D)%o xOoygY9nḭa#]O t;O79}Hvz\)Zxgɡ՟=$8^!:mOO _e"rsRI*ݺwaLbާyC.FF% s.kqY*n@n+HZy2ݮngG* ^:Z$&(šYRxA _5'jI8/-ݩS;ǑqڿJo$&OYj<(;jg u.b&3";! kA5m]vi^`cC^V>,Hh9dt ˆ|WJ@eS~_(G2;M}*d|-'Jdrw|bh=OdU\k(52zJv(i+Q <1qo(@{Ed\Z;4E1Ez׊έϩF#]\16%Z8؏Ɔ v g^Lۂf9S=G4mk)Y6VE \ĩ.N g@)}GZ6Sz)uI l|*q-J]HZ3Qf-a^Nۦ:1hnw)qkZZY۰""g4oR(?P5 \.i>Vg)?Ģ~E[̳/ ь>T$2R,ҒޠoKsˍsܴ7Xm)AMlPUarfUq]jBmŎ}GA:̚0ȟդAǭe=*Nq]p|AL$Ju)鶜ůN%!xYBQ٭刽GW$h!tijtZTmX{ZwJ#ṗ[wxxkGt s^+5qfHRHEmäY8aC(<^ߛ2@r5ǑzsQk@/^ip- <<f'LF;W3x1||O#HQKWAKuN`U@v[m`*%VkZX»[osUa(LMشQ?B1x4Q4_M>ix݅:RYh)Yũ޵fBEwiXwT.-`д(Q;-/4԰FtaeD׎XЊQKb_%y ڑ]#YA:9gTbW8C4-!W_8ݍP͔fjdA5-Ig7g%3T;FjCkRcEjS0'vj5/"nXY(ժ4P2L~ AX]c1uh~qur.z?:ח^^84*-dI\{͐alF uԹsη{&Dfb̔Aar@abvDt&2\ڵ'+'yNoO>􍎶Yy+ą Wg29x /p3kNnϡi(nG:qL+ |S6Q~^N?63jh'((#\o/)"ՎGWs෪ZI#w]ģMg*]ۺe AfH`-{'lgd 3V& Ըc~ce~xu'z\?_>;U xSk3es<E,&{;ם} "WX_dG wSdOЫ(8mhRq8aޙ<@1U9V*GXez\q5{YY3C֮~ۍ>= t%Q0.p&B m0 F G;80X }LWU_( ]:"'ySwI5/+;}dqm`Bq́61@Æ`PUk7aѥHۀF|uC(Iʭ~^i,@B% bnpe8БV+l!w:Xubj |33I{$ +Cl|̻umrRbkPL>Us˫hYT9P6ue [{Üڂ!aW4Kbf{ !d.s60ב:Y $E8 3q͔AХy .2>m:@+ͽgޓ|Otʍ<pKz>W<&&>@Z""_qM/>eB,ʘvذ¶9IV{v8NL< | Թ @K#GZ:rtHkoSSlkc2n5Uq mlM7L[tx^ߠs?JĒ݄To8%i/;a"|W>vX^;D@. R'Ʈ1GQ`o-NQYP~b,M2RJd7-0 fg߶vCj<']>nov)')nwTCkmaK|Nߞҭ,"vKSD Eg l3Jd6ƴ4%g$Odm^l;Didj^YH 'nq[8h!`s;Dľ?qiyb.vr/o-_BPJU?xIɹ=t+逥 .PA>Zgn^#1DtXsAcX5K4q{OX%8ji4 >$נfE~z(c2_ WCOHGqt4סz;Me51`- HvmD)eb'o)'Pm+O%Td,ʝVD|rE^#fhӫk$Ug>ms]Ր4~WO" {v(O]!0ENhnwn*AxW!ҿGE{zuP2ucqvXe1x*Wr:y`tfc=&Z--c(Ȕ3/+>AZ0Kb{hVtMkplt٭X"7mN Z#9 -@; L@ADE*]$ FQD3 _ՒaQsax^fgta<⣜4y97P]ǮgP[;?YIr=y/3qNSʷu߻k[J[hf*@&i ݣѬ!FT 0G_7ԑl cbXe'm3ZZ^"| .Mx֒/'v`'>џr  UV/33 7L^1wCw&:yZʁeg7?}ƗY|M?ݭ#DRcϭ߲ = t8r8#~+>:ґ/:"غNuҽDi~dkB|%TN+%^,P q\~o]x X#%onB|uL^eh^ xJ|V&BKIåkS0lKtln#>FTE1dF'W3+L=lMȦ7vOJ#^gZ<g\(H?]a/0Hlg]^,a$8ERnB'6E *bmbT:Hg–oey_ f l9DS9qJ丛{5tk΢_R:4c-wY!Yn% #fӳL W:GuYH5Ibo6>ӱѿ:7 ?_㺕bJBi/ᝃ*9홷`5zY0no1ˣKNB֛G6pd\z2c2` B߭J# H˞!YzR+_FP>2↵]U?k dM2[oS!P#n L >xP4fo'/Z?o9ęo>ՈM%㌪Ҏ/8(֔sV>=y_ZC׳5:j7\{+Q45:]q:uBd#ldY6Lqi0dJ 2lc#e:."n徤"wr{ik: WEw R?S2 !M,ev~ Oj.0(O2zN Z @5e#w~Ҹ7*c Z>Sc}%! n>eW^|BTՒ(';juQH2-H6ʧ~4{'*~ʼp βK"XZHrS=+\|AS.%F(ErBjrX(󒫳]UF/)lsX$DpXV9GX vZ\^gmor:,-BGr&ZXIzRud%cs n9ȕHؤ;M9gʤ9hr/wb@\7D&^$}R8#-7딞 $=:~.6igdSsCHrU|a3M'H)"]獈 .Y4Xby6z |GIT1S5ѹz5D7Nh i*ubƜh9># RzRgU5` .Gj~ ? (F6, G$w/>Wލn c=$m2.Ddٮf[Zmb9ԹΓy9֚SЖ>ٵ@.LɁ.DtjB %H|Ԭ_PѸt)=B~1 "y=Yr漞f&&53v*pN{@NgڍGJ@qϞpO~_UZs)@˿e-G8޸)cd*VĞK&t˿F;ȾBrmTyaJ. &;eA ? šIus(KpT4E@8:D& Z8ŠSRM*Jxe P퐊PM^˦@QemVA& 1Y0`f">jcs|8Btc@gM; :RxjGx4Z4e;xSqU~A'70P" pgꊦGA2B?XS#O#cb^/Ld1_O䇴)JQ𻿺AέgϠlI䆞bG(POx9ȳVuR-4XYuEC^i%}yhܚDQ] 3;@&!l": Yn=|;Ch$ɐ鰎vc`w? c` +쮁\vh >qg?YͲ^<-VdYx=c=;dq\!fԚ}fstxYAATƗR4Anu,x;1Sg|&TעCo-9~dX^s7Yksi[(=*aZ4GC;f L9 &Z4lS$ ,N oQqϔ'i~Aϸ p[nmUA|ۃ=_޺oĥPS]k4  W_1K7 tW|pjJ.clY?asMG&@ѸoNFyWՇX۽ PUK#rrBX$OLRV_:X =Gj ҇BS}־SAr|enW}t7SB|Md4͊=I[$˽7gj(+_zI|t~(,"U/@$oQ8wH{)RAU]zW]I\|aͱQs2<,Ś}D0 r!To&uTvmB5зRL]%PY2gqJ:+6QЀ5SuVCY1`D36p[ӊ ּ7!X9pvsP}Tr +2 & a՛;읤0u*p \ESk!u4RJE x6}Tݼ>]dT>QWcԓ55f0NǙ|KdߠfD1R%Ov_=َ dǡtO@;I b%/ZKUkbaɇ&8+Twd:L},b`A=oeh>ӍQJ*9d<<!2NykV[jM,;l EźmUYTEk'L2ֲ. @skfAiܯ u4k;v93dn}•s|;fD&l#1|m;0/\ !Jʔ%&g׊kp6ۥ7f2v0TFjDM}s{45QydxK6v)"tveJ$9^(N|U/D5[` H>57)ddRzzA<Im!NAzw Gs٪J9ki˜܀Hս͖ŧ- P=¾t|fm h1/3Ch!V-u0zؖq!fR+q5>^ 1'"s5}%;d; !z!kbL(l\O| ٪e,$#ZR4l"ތ +nV;B&7$s԰S %6O0 ⶷e]J{9,Yw)|u2u;~wWJT^E$|BO7J(hu~¼|iΎWиG -D$ ul u;U x7CRo7B sH8" Ăg#_>Ga:G]ř㿽Rr#cxC/lO'i_c}=?ײKzh# ہkF5]Sďn~n:ig-1R{b%[gef(UJ#]ߞneJ b Q@lHҊ2IüB"[OYpۆf($nM ˩<(+x,K#pe -IikS(=чYzE"Wmsɡ-c2=3r=BTx$,xxP.$O7܏q{1n纑6J"eXlŲɝD,6Ujwz&sԧ :Ї'>IʃBZL2vV*)^K47g7NnNzhs,^b'وf K(bmp(f3ZjȀ ,>w`?ⷪ vw4; efi:<݊is2 E \⤡un x;EëΤz{p 1RxS7h(nа[hROf:2 =ovh62Vx-(_Pv:xqYKrק9HŬM>\,m 1AQK=E&2]O#{=8,"U&{k (E-Wn0 |.z{[L̘p1\u%|xx$C`FE,8BMFF p&"TAwY9:xPe5C9$`ao(En5~ܲ-3箏Gq;Oi&e$;;qT?-Fq@o5z!s2=T;d !'`puLC@:Ob mwc.TwP=Ky~cb]*J6j'ՈMS 7E3u CIݿH!nkWe` s}`ˇ۫x'B|?^K8Y"RFsЛtBk]3:ôۡtvkCǥ`| ԈSd ~)zw|VY !̣%ΗhFoM$\ddo2[mC|[ʙ`vzn5;gOd1j|,"w$ܱSPћI\X<>]+OAqu T;Z[ f y')S$J Ӡ 2d85E1}x_=N+]Ԗs[À[8B?Q_4k1\~Kdu=f5Q}+ZZvSr*f]eF'KQ\Y$E4F f|t[ux}%}60qߓJf5?-nDn&?R^!Nn<~_lp~*lHqP25GH8]OUv=Ur~YENSh'y#SQB;ҮEGPВ1$-tI%Z\jcGo߭0y(Zc<_V_ l/+.>I]tA{XRs'K?R^$˟q4 <E<2ܲn=njqݙ -sqkgapoGB^#1*^XUX z+X^H\K\Z,Xp=ŪoL]ϝf$]~SxB~&%Eu4Nh]%&|u2 :Qdt&k [@M\ Q-I~QH 37Qkww Lo%PG>}]ꥡ}*4$q^ɩv^qBU-/q!itlWesJ]вphnA{ql[yH#zT,y_쓷ʃB9ivJ-Z(MDD^ }E^ *,pj5(m>gB?4P}6 P-)i'hME,{2~!]pU ["m8/ wR$B:K%]@z[3KIb^Y:p8)tɓ?,{}8ÌK?{|3Hvv)@x.QR+)?6 *n9:ikVUPGq1KmvRqq}!p\Mjʉ1qƔbp%ܳ< ,uDž MOrNh.8h  =_g)/S+v ?̣^]e^)Ja4 '|Oѧ.'O]{9L^/A|z8/x UN%T+L `Mdp͞=7tJ<Ҽ }wΣO* x ϝ'[%Pp\h?5w*XHx=|}5IuMl!m(S3V|'ho -0k"AoD *'դQhҼ5;[Cʘ(7Ӣ@$p'PʢU(p:+3V$b7EIou6 h7xOߎs{ 3+#`]5bp9r-8+Vz)q&-5?Xm눶j[z耠mC:7Je,qJ68}I}7"ۜݭ+T#_Adszu~i7C`/ϳZGn>/58LTN"{*p^{mX- ^%фb?{}t|>`3{kW:)xLbͨۈI)ӔMc|$,k9 ,WR[R[XL:seZ+Kǹ3:){'FS2&ÓЈ%9gp2?)^>ivorvuJ[4vmTOAԫ!@s5#%ԙ[ȕ_9za14GFwxy4U&Dž\VjDyϷBp2xPm dH6я#z9  zjOԄ |YI2,iy?&-Ax zL տ lj1?$쯴|@ƕQ1OE2o$x#(.wKԶ99Zdu αihtD}tYRr;EPQ ꝃKKbBȉKQ)[FC̔V> F v8#{h+H@ɇWIR?T|_ wILD%vF AG]gY\PDHe5}-p@`НC?/?08ZYآkUx0zו H3$ټt9\ #>DnQjv&'Qr=8|$,#9[:kS!̻{g9X $uI{OTt sW۪=KDč^ed?\o͘2/9d!p@p>d/l[/\qH,.D"(0,$+y*PǰiܠÜt*a d/]vnʩ:I}#2bl&0+6cLejuȋI-:PI-㢿ZSpy9E%Ȭ9HDտV&NH7s_;uxQ}m}AlNV Xh]Z/nL2?(Yq̚Ж2¸FFsjrcgd~óQ$T}FMT䰕„Pl>%BjYl߿H9? Zr9*M.CiIwlGseA9滩._=Z =~v&| pMң'P/_7QۭBvHNfܷa2qǀI1_' 0|h6bC5! JVXXx5W4'=zmaguyV.4uŴn"g?^,N,9#bu8YysvuhҠ4Q%#Hb/u=aaP!o r B,Z>xEMZogNGX lQ LFe<俦9J(/?%`>@CYMCQ\d%X,#7SS| _ƏeҐ>>hfAd} -wWAMk ĸYAtCu d8kf 1DS #NG8O$rhfI3yx V ߒ_m[3Gb7货Ac=]"s% tN͌`x R_dX Bw)O UԧH&0̬,ϊrnnܠ >tSPu: Qm2oSqkO|;K^e}׭X˖<IB[by~)r5|-M%_ϡb M 4t3gl @'T C^_mFN&9×ɳPnĞ5(W8 xXnΦ^lRAɥa]KR=u ː\qTTRS/vp}]=92^]v"iaÖ{k*VrU?xj"\>mv(qPp@U|Hݻr,5d<Ч`1('u5H6W )²+ X%sf~8@5QvVi`ߎ|+c"%\)jgJG~*jV5,&&5 trݽAC2VYQ m"I2H%0!~kKBpGj= EVv[ de}Xh "Ѣ~Ƚ{k#9yTP qiS_arQ:5zC/v$xu#=Nes7.;3\qm/\[GRUARK-;;hFٮD>d;ҋF< jHƤ7 #'ZA&q\y5PVvbPu:!8 XJS4ut+F29"QWLhI*` 1xkSqIAQdLϼj.B)FYbhP.}f Iy@t>ڂ% ηTW JMrD g("rd p4 tm`;B+$#6T;4< 8.e"W$0uv1S̝[*6G@N;5r8QxXw;Pww>X^*Vdm=Ӊ]ڨqF?C PLŖSJ!ߜ[ {=:"7TUm#1e+9Q-"VjP:!e_Jt)zxEX7Oc˓' Aj4!ӛ= NJc't_ 3t@;yp~WذRV&jH(tv FxfpK/O&@ `}tɬI)8M΄Ee^)P} U@褍3M `o턁` +2<"gs fSr3t\:D|bUt*CP>Jۭoh[oiaȘdžȈ }y-k}xY .cJb`m>X_MQѠCMs YSgwYA '6yhn~*01[tkU 2GʦyxXc>!V¼7ahjYL}!?ecJ˃{X&p#4rm45Xx`5(^}J߷ szP,VFE|XIQvlxEDnÇjMngnkhtMogfew>a6إ{JiH}ljl ڪ2R5*Wҹ>+Lj^l/Is-V5{?Kz Wr9r:,O ktbrb ZavGA'*oRnE_"c;C)p5{Vkh(`Pllנ2G_m!B$m=F O]fivNJ\EPJ.uWle31iaV=I*gk.$3('My?ۉ7wv(+3I/tVU'ʕxȗUv: a%3Z0lj8yWHR+W,N"5x-͑^o4vvXo6wWܽN\g]G$)iWL Z/=LG5-&gXgB.B&9ÔapJdF+_wNڜqH3꽼7g~]1m4LֲcZ_VqRZjDN0&L^!9bJwAbZ3/W6۶U UX A4n4*Tx)i|{0rWcuuCm]g: OϢ:_OyRz:i1Gv"l^I'y}uqPTb';0\+9/flʃcH# ,CrP˕ c.[!{O_{6LwZÈ-!Mi䪙_BsEez"2lkxp& ,9I˴xhfˆЮ9$'1i~*,W'ߐCouY: ?F5(uyۗ`{^dB[ɑ;ᘹq'u7In{\ X5@L(\Zt.HG]Gխ@sLf$ɴidݼGUTf{Pa?Ū}/~GD azŽ1 SD|Hp%ll?3;Xa3ɈSIwʽ0ȇp..3qG#6 y4B4B "6y3wk;9SHNbyhyߞX۬+_HwNVn`0l{e^4KPE4L4p1u">Ѵ#|9{9dr"+I j5"lШO%*>{0]rCeX1@x182 3ǣT )ۗ1+4r  D"3RMGNQs{>Y@1ѣ PSN5V;ڃHyug%BMhٍzŀ9#)9̗@r燺9m\:W@M슡3Ѹ^W_z*@yO^; k, ]O3]ȯyXƩ֨뛮c9\ZXM^m84c++k7hwm6ףf"/DSxsDm4VĬm hfy#>cH.4.a*Zy_;Hΰ@)Jyf4`/ EqmiȒmVvFI?sdiղ u& _) b$]KfcLE<*4鿃 5 imB T-hysֶs*o0oLOqW0.>١j41R$% i`evvN4Yi5D|y䇴 WzEriSf\ ~>[j/1kY0b\RJx\8ύF$bl[׏!rA%~Z|I̞9C"WKٌZz9E_l|  {K@f ,ᔤ%k9@jĻ,E=i 'Cyt8]v,N'2lKG9\b=d$KzϝFn3N.DPhj4mK|Hlwi|8~^8,QT!0Jmzh~YFB --|ؚ΅20FN㌌Dۡ{t\VX3Lv%^gum4E2Sģ*!)Y$A(ңQy\s y5BaZgB^Nͻ cI[Wa9My?>yc\P㍧UxiTX܁5oc)[T(xj:hƜo-ï_< 4l2Ԉ\e;*{0CR ']94Je9ߕ1"H]+jMsUrYlξl䖋$ F6]t꫔j{1Ok0o5W^ -1 iӡD>rM."R^Xng+?0~Iv{/$ϳ&TБjۇ bହ(iۻX"_'L" hʒuIb=Y?6܇V6ƫ5Vk`VhRJԤ_}R|zjNλxnT;b03"Ū^N?@@ө|-s!- UaT@)D3;dsW@e|L t !h --x+} Qځ3۱ZnY%~F1S-D?;1d D PzDlq/^͡^;MzTg5T[bOIohRԌb:)|D:z ?X.cӤ+&4'7)NzRnH.m A!oZ"*t :o3 \O&?Z"2S"QRgݮȺ[m4td*9 ؃mYWګ䢉αmh~B9i\~hB]+R뼞YT?qfYLwS% NEMu-q墳# up(s ;vpTdzHַ"ါ]8&j8#bMDqx3x MyVXqB׉&|L{mEʀ;\]:3H>V܈f.ْ21!Y?O[7,½nDѥi2M;ۦ9K &:&D/h&Z("ޣp܊M &Cx'm9ALJǃ7 P$os4,F ) :~0Ri fY)ŏ 8ty"sZ̋'Y 4ٜn5+ /`{YkiP&Suwv$0πьq;[&kS`CDm|,Cvî~ܓq D-0>'r&NJ9􊑏"<~??5FS1T]60l @^dW( R9*nHH-g({ݯ70i@OԂ۽sE42!kG*l(׉E@odwyyе O&k_q,8|CFcvtxo_78m䈒PlKqÍ ǦUMJR t,zȪ)W 6-qo(SwְZR%y.=\Y`*Dh 6POiUqNxC)R䝮~|hEM2B7L">Jw͌53f?iRҡj~`)'BG±tgH mֲuq7Rfhǁyʌ11/<=Dhh3r]Ȳ\Hoz>qg+ס~= AkW S%u{+2er viǩU+p_^%I/AK *}$d< M XPIuqo0nڠhV$~Cpg4OK`0r"0/]I ُOհB2" '7FO ]V2ź_m,20PcuC Ls%r>b kY̵@-aQ./%!,ikzuS~Bc7Y uQ#K1{'di蘆.V`ن&"Œt9eYohF4$ AGxùV8& DZvya0 otԅZHz*F:EnXwLmM#. ةiϰLOYRF,M3gu' W\.y/_ IU+6 @ㅸaU)(cԯs0{*bHAD(܂ܯCm5D7f|%\׊1rԏ#]UH&~Ep/ `07D\A{X}R]ɩ a$3P#Yp8 tc:GRs6쟀%47D9ޢM(cMwZ瑃P~**F< >r)67Q grDď{ŌHBȍeF R6F=L}@U >ENm_mιH# ]nTܕ>#d 09U(A{̜[PRlj=XT/##Ǣ?@mN#,4 @C4{&C9t\>͒ ʖ;. wO 3SvݺHҧ#Yt6͉%W:?Tŕ OP=YZ% ul< }б;0]Hbބw8=p8{sK>[QcBh4Edm=B5]*@LٻV% )O"ʣ+0[-8Q!n\)G@xSKuˇ(Z}-x£yo颎z:XxD=BWIe~+ċ#.jG.W)yX?nD%MXbz ;@75d'VJF$iYY d\G *'ȝ9'bfs<(mCD6ԏu>7F=f 5g[툫 9nk3ۚ`;1 җp5$:5?AwMz+{8N$'-ߍA[`:0V?0\yu6O(('* 6ewVQbPb"vxOta4u)<xq-=!KN=K0Mu>p%A} $H S^Ύ^xL{iu]?α̛ |jc>c$2);Ÿ=/1:s\R DK3S.ߛ-wV*=]Z6Y{v}`"f,F M!w%_SYhd"9Kpdh޾i*z=%)IL>tE"C̄N* oDF%*7G(ض3Nbf6oM]hU!V9٫ܼ61vBQ͏  P&v O0bSɻEYHg0[W2 C ft4BL)dCbcX@ۺqC1X>-vl^El+"T hwo dYC^y˜rb[-xX4)aNh:x4nw9!xN0bŃ j (9 \Rbp2q2*"RGI8_ ;mĦK:&WKgX*ʅ8FwVLÑCީv) xw{2,UذxPru(xtnŖfƁ_=L7B#8MrNC1򑱜p'j\%L!﫠~,fԖu`9Fz}+߯c¬@ Uzre\rv^ѿh ٰC60NjmalBV4y+*6KLeLRoWl E5bxh2nJ?[A%)Y4 oI_#8xUҜÂP eNu)ipk ki2M-)+s,w` gƝlvD.7kƮC21{y{E Xv3 vbQf ¾O^PS$A䉬j,6(}/wzHz#(vUt^B*),!G>avƇz`)#mIL[T۪[u/e;{-ivеʞCxLK .ߒr(&űUO՘־vDT+=¿6 OTz=A.j~ZLtaq%J_z Y|P~(,OL\fCbO\JDoE0"7^oCEILM`vGJqTN-ǮVB'#HԤdJ \χxjyu03RWDx6L5^:H2r .BW P{9VXEҟ7|:V\-0ABxfU>\l5uS C ͢Ðq0svjdf?b3r1c7/ހ.=yDj?],F&BcаOFYO:=lPQ>A 3pEZ[]_>m3ܶ·fQ5n=!7 B4䉄ApKOɱ?0|n-'Am`5>KPyW3GQlR jewgD顽c|gUv'~᭛A)K79NT˲#N X@`XV^𔕊utX,̈́A5"MXTI,a *xxC[ptKC3Nia9d0- fX[Qѧ`Nj)2|cwn#8bK(-Mj>e @pTVgOƒ٦$]k&\K-(uXt.T~u8}^9o u6ygC[S1\R녀h5*xo9z3}2 O.-ZjJh3ڰ8cSd֭E(Mr({ڲy4v]j&ˊL!{ѡY yIqͱ i#(4*:zyj(wG4Q:Oa_tFrC^wLJh.41(28kpcK iNaև is*$'\y+ܜdX"U'mg!Z%v؁ hqOhur2|DT0t6b>4^wnވ҃1*_,ލXX1E+'J?I;f ͲQ~"%Q|< (NǗiG/`87W'6.' 8hu 2vj]v=gGl{7MTH :;Sk&n˾=*vONZqy(ՅzRG?)h7^ bw(j~?oJ;a8HGM6U|^T 7. FjGu+㯣*x0'vgP"d=Az|Tp<Ɵ8@U3 yXcN-H*ppՃ5vc"@A ņ {)+y'K.nHL̤YP,wZra<2uS] _h8ż>eNS?灚P@I\}jU SW=jp07L_] A_TbQȻVFN򝽅<,u xy F+%t;qBpʌsF!iO" C"-P )4S@@&*lv+EGKz|,bDitD:F6]#/k>S |!Ń#1 *QP.+Tׅ{;~#r cR kU63lyqDr)E(˜p2^9 i.K}y̞  /U9C!k2p=dH UT_\5Dſ^C`L5&R}9Ah*0 BVCqFhgGJJ93S֠B.|4L|v;f*kk`u.@(e:'M "5i ;/8h[Hy?Ӊg9bIɋfBN3P-;}Mhfi7X4)8̜|cUbE䱌25$3 _سJ-za}[ۇ6۶& W}/# mX'NʛD3N֛9&m r@+QM-6'!{1(kȰl0M7I}֑>̟>3kkZ[{<Iwrh%)pWTz]Hեq >K2oR^.^rKu` ? !\w`beQ%B}Mtڭ?Y9&@9$|_rCeM UVH.q{S__rd)= 8Lk޼ t3}V_]y~W3ĽT%VUu^ oV ɭiY{`Sp_o7AnyLdzI^vdO,s{;M$[g((uhB]GuH{K' :jKZk{庇2]1ŁYB5d}e~,R0o"(><+ecӁIYjH.DZN|zME8~WG0&_ Qo쥢T\@d`r2 A,RQ_iaGiT"²X 6.(rtߖs-)_LXAuk4:}" h‰n-K߼Zvt5X#'Y#K?ф` LxwB/uvl۪'|!pXv7SӴ=I^(S$hʈ,{TM䛂bOpMtdȈ?8`@rz7E}dRG,_F忍%"As},Z3C: 徬tI& 0+Һ^c%{57)sYWYϮ}M@Wp#/2J =8RJ,w7LdͲB<%3jY9 >2+dYlk&eD5`.dskEw6'7@(J>SۑWLt?%k%D"< 䥦T-xYT_9K6mf ݓ(:^Dp Pg/5$-"$95T$RH2k\u,of$iGOj5[xK> z_Wox\aHuu$6ߨ]j@7~?"^])P2Rl"X*7Guaȣ^ʛؖMb0jad#*4;;`z6VBpx(\6~Ԅx>֋=gЛ Bk<1V\[U9R)l_1R2B | #koB8ݝ+&˦˶>j}GIJ]ݕ?M_Ǧ^c ƾ.䘤s鑘x\W:6?pYay-ZQ"4NS)m(`ݽ+y#YP{4dw';mSz(tU,+84vC~Q#U0ƵUMT=EB{f Sj~V+gQ*b J P+^ːoF]7~M޷mFǪfC}Vo7r%( wW}L9b+>AgOzop WWJA/ d`yRewH!pihqw1G!bK} m+韒rQ|srS^rK ufk0]$a!Z %hӁ ,8Er{PH2rsM^Pj{\ |ƈ'E ٭oASS/?#Kߧ"&6)H+ipDymkAݘ/X ]"@]J 2ORKԦ*) <%(^&y+q #5hnЍt@9f wG %vE XǍ&CTn̈́IZpGv+ȦMue*X Qh Zk1̢m?,DD.zjXA-f/K_1\AsS6-\"?eKBeXxZ pͼ (Pks'N}h6P$(rtxq}9F[)S|7ѽ2ZU@9yɿ e-M"IUuءy=yNMx} Q_@ d_c0)Ѭ b,N  6n"%t^"6] UXVnj ^iO!,[-`ʹC:WPI1q3!k7o@aAχ]|.v9[-;4?|H0qZ`k:UYiuX,S܂M \Ka U.~3it„υ ňR3=[H;6 tۿQ?zZ<ܢ5rK$37h)JwUhFH:1ZMSZBTQ['62-, 66&$\PCԢJmY8>]XN8Ys-8Qap-*;n-9 }i,#jtAQ};X(%U\J_P`M>cbTJO_=lAWtbX5#Ǫ5?#8JF"֢YMc]Ү3ɽVK|ޗ* euSvsźZ1Y©_Q;nZdiԣl0bp©|kgHOܮ)ܑI#ܸY+bQTBh]͗ajȻLR'm1X$5ɱ}t>3Ak)z|S2՘1ѡ0\6CX<. F$A0WOS۝"{ qf W0Z6f3=|t"9i@IHl>ox(_9WOeZ)/h[% '(עh>GDAtV8/k\61ً=~X /N f!0hR)a&ǓYzx\g`H섋P N.m03_9b&O"]|fyAsVԚj"8V^3)aiX3'YDc411'B^ʹDߡhpDg/{ȑc횂Ux啸~m!B<6;~guj^Psl{lsbka"NF*le- ?0WGe%H;BYS KE-PsL=?K6v; }H;FEJ0tA?&u]?))v][ej{nKv{ahI<3P/ϴ|:F@`dy˞{pdu,O7A4[jyDfwUm(;-Yʄkw|"WLT+v&Z8Q =. hЇjJ0Kv7M^Xψ+Ku3p |,15 n*BbT6):egy"}r,7r+ḱTh qa12x/_y(Onݲ+TW,Shשf/0eMcH64K {8䯈<SUTBvi%C.je,rIwRѴ}(o 0w Dz<;5T$KOni.zlRFV' kI`J˂eklF@`Nd<e_i4$ӸaƆ^ホD%CY:(X #Mf]MMY1FM=4g`%HS/n?p^;rYR42hAL}%L dB,=acg[$g4 f&Ws)|PI8p%IAU$Lt_#}:)4U:9eSɐd>|df7fun'K>Op]<xu:"h #~Q.HA3W!p՝BzҖxX_ak$܊' oh0uhl ۼ9Kj)i泖mqm,OxcnQlh5w\=K^cg!gCc\*e)tB0]IsGGJ-c @̴ܾo ugVtQv-w_FQ2YV=TYRæRLo]ːůFp^꺆Oڵ0yBO#l7cKwlb"}3LF*  Dwmxa4>ѳv/· lWO8p᚟i?}'0R3NHEQJ&K8xUHXm Q w`(z;P|#>^-58;ARW̠Otj򅜅0$ u'6a9ʻ d#2RyĔ%5DC:G%gN#~yN ݑ2BԻnDk;y" NLyG㝒2w7cdI]#o Ʋ ',4h|'EnqMϸncV{=IN.kU*91Kb/[jBǂ|ڗu '/*>v-Ó>/FAsRMJ<_?"w}Иrr*{rEq B?}K+pդK5DQ?avU:ZLjUGCun`EJ)\e6RU\#WWS[WL#sdGX^@zM<>勉RLT2֨ztKhu0ڴnGJe9Rԫ kz7e$abоĜfڰ;2f$QƗI&V*VۓKEULd.G^\FE>M҇}x \!.xo`Ef6{~7N3lm4TQq}Q"4dun@?'өxk>e_0xqѴz"1mYSnIh]Zpx1?4&m+ѣfl&XPᵜ]”&xzKkn&8<{u;  KID[גLl`MH|lU z\ՊXB(hIRɢ\ g^`BVt 4oë+}D"l(*'W:9#Ŗl/*3FOml%PU;vX?Q;MRa#qgZ0s(:WBJ'P0r}gO &K֜|EZ@1c"O2A-#a@{v_R.pB\$-?ylA YF3[ViW"nT-fLzEW Lˀ"{MZ-\;&Gi pu>H9k0Z4qsc>.!җu hk'%QB#cr4Xiֺ3$<@|\-Q;/%.N,|Lk&hG^:H&~dx#^V>k5Ĕ?Vy}`1&I+RHU9':ƜFdTDg`<Ƀt R2hD8Wagy.ϐewn mDeƒf>dս_%x!9g=cy6|ۀn\)RS7s!:Ȉ%z⢇udi`&:}p> ,RI%M6K3#3Nͯ&l+6UUs3:1g^.uI9qB%LUU ń0g \m_5~&/3*HQLh6)?Ÿ^CRKG}&г)J0LIg,ݫ@&V!vw=^>B_UAim}}{u4f7E ;<{>Bߩ+Nj)l}lgiԬfCCursHQeV?ooYGM6=[~LPlk} 5ER "$z^twΐ1ɪ< ?φ9KQ 7MdKe3m{"քBSLYvtꑗj s4X 8"ÿ.rXW)$r€fӕ&P0m-p_[MIº\h,] UJHGx'W< 5[.hiq2Y͊?=aC&F,LeK|RE $g#mCbN^ CBF =0ط 1( 78jG΅#H7E +BP-qhU8=7{J{=:9PPȣ)[veؿ',|7D\'myĐXf+2ժ~A&G`H9!W5-ܹ戽\CjdRFѯ̵`CQ/o| Pf)x{']jby.ܣ#ޕfX ϮYH}2#73$2 "O!U@IIijJ{Irm;I,(>pLyI\)lCz~@c6/Y V;T螻9ZML!Z*'\Qү".8=0GKόLܠ=UP*l:4ki x ;LC_I#5ew5NzʟW^q PΕqb6UH9uj%Z?G3DjQ/0Vnv%r&5| dN;ٛ4V7HG$iWɰ5ꂠAU O#l% Yyk04K10YḆ<=6?$$P1kpLׅNHW9ũW5 WNΧ4e[WG?e4co5}(G?iGoBR,q,rHX Y(g@>&RWY0_r.1{L"Q8Ufx2H!T9TG@IZxvaY`$ژUе$\J9LassQ‰ Dbf9{ 8P*n:u  %XBkdgC~;ET{b{w/iO4zU! Lȇ' P-^/Ѿ[KK5*R@C%1d>e5V,#iqstX GF `uF^yHΘ':^#* N s ZIJ>HZ#+>!Q'Ol {_AdON7R.bSOσ$.^HeYSыn.+"hNwI5ck7VZնbSCϨܹ؛*57,qfU<D-: (N{*ؐmK2W 'TluESd ^wr 7436ד[n>e4EMSVEMvQ‚TS>0~%!@vAj5NlP 6.OBsӓGD,7jcF$TkOtU?E{\>\'-^$7YCHY5 F 3[5Vgĺ݈'pk%p? K>Y(C±Jvo1K'_7gPöQhJ$%i KQ<{C(ŕY;Ǣ{< c']*#X;ŅvWhQTe(y#B aoπQpzYhء"GɳRуQ(=Ǥs?c+OJ-LU6$b3 5LR8lZ.\$ui4Vs^ВV톷n(0w$ mfiMB=6G4O11 i;Cxbk ̀#V$=X2 ds0U R(ym@#"$:_C &:՝?8OۅM #%9jDh?gqY CX2gNCi>̶T#EupZIؑȧH;Ec*mwúh[FCeӇ4b ScR&-5o-.%˄Ă|szm{4en^ r0;4*aQx1Ɋ`,6OZȈmy}fݺsV1Hdb(nl? Fv2(_`ۄԠz^iمtv" "B3#*tPYdX W=MJSTldeA#sy(P3sdS &hΔCM~mw;|.P]f6SEz5x繵>"Tn9:`=)_ðXu,*.sk JڰӘcu7a[Iu\/<$kgv 4~'ttP!w}GL4p!Z>(Ӕw2L&읚uY4 &Nt`:꜉m1@$0N "=,l8KJ}7@Sʟ ~|_?O50 I$f®dU?BϥW^bK OKW X($F\¢ug c>+(@ { D,Qvcr4C$ O6C`m)" ] 5p!/Nn= ^a^ Jz1ũ3ԏ;t0y[(Qõ?:o5PSjpO6dˆV1LSҘuƉVU_/.[6l- )LXBc-ALa|ow$D.ۧ]k;;iO]D4\ZBq~Sq678ԐW7h ? 9-7%W\@c%<MN/łN)|Vy䍄)g"bE7Jϓ֗N:rS*锝`9祍5{s.Sm7Mm3|%`29Mnu&EH^mj]P$-GAclY9RFZØ& *n WU>*6+! zy4?g{8u}(bͩr珟&Q=0sj>ğFb"tIȉor5/O oG<.i jJfѠPc(C=A-ec($cKJ2j/-Rܴoٵȡ(IzOXIfiPoXp%4??]"âҩ8T}ԗ& f5qC)kr`3;pٓ:V3`IÛ >UȟN6V#K\A;wj~s&zԱTwE̻IG]pk+$4~wߜ#mohf^$t&U#jLP1גy~ cGU״$S+uղ'ZaOTC:4.9z'l%*A W>!װJ.QMQ:̕$2X,#Ac4 hO X=V`,[jWiqz|(䶰A ~Y/X~~RYmmb[k ^AQ~O:6j!tW 8t""HE]p(bG"^坻|-0,7זwлm!I^_xq%FD&C ezB1U wfW`'S 砧wQ&9;ҨTQS~Id=;k GQϵm5OHu BKY}S Oqh5穌l3])3+hk3`Ѱ9Ť3jn^6=$y9TpNl O)&09n *X+E(.́/?~)-U8+޿OA*qgNtB26U/ʩ^y!PdtApVl@)Hڸ- tcEuh&2S-g e^o1F%G u~v,S퐷@ƮlM8$v%`eU5n,+Ak5IűȰN{>^ y0nXʯ3L[3RS. e>Qb f$JVH:^x,\2ۄ8\AKjI#\{*w\3:z"M7c7U+tc^蠞X2P;H>my[S \c2'L<.ȅ;pՕDnSdM']=L=)Y9bH Td?[Ucׄ6YS+冿c&W|r'n.X'vPt.,AN颍 \٦r7>Wb&V-n,ˠJȶə>~+ȳ4vsp|| <0ۈun3z9/ІCH ;_yM_UKD 3'\a̅m-BYm+>L,K,huB)$du{)CPqBV9o)Yc%k4LۥB+~OE< '!Kڂ%hF> ohNwqeZ_"r{(% gls1L)]Q(}ØmևOG[X*J&\>\5U . x"{u;߆OvaGʄG_BfLM6E]'f^ C%2'n̬Q&kkطIFW ܚS߶OS;[ :7 )>e_EX3GA$MArzj.aEc-o r(wqk4X]`GM2kĉC+^!xƚ#BbhJ[׭vۼ(iHH AA[~yN1IWA '8jm&rZlN;a$ǽy6?٥gNO摘8&"fcxXR0?dUt_.a$ lm 6>dVӇw-r!`b1X LpB!F摠\ߟ@fjYmщt\vMx"nrV}Gs!|gZoQr?ζKu>E,mu?Aynkߗ*Wd=Fx1]s FT}SKu, ijazOWdCe ˛݅=ܿ0U4y wrLDۇ*S59Lg.&9ਟܡ.Xd$FӋ%(N   ƃ޹G)T>tu>˩IFJ) KҰʷ]O<u"H–/Xdme 5w| ӱ]÷[A.gz;t@_!"VRܼ3N G_fo~9ݹ"lzh!'K~G[QAc`N*<%1gpLVݯp0v ce{@%2/uD:A(,=;YbҠȠ+5sB^)olSCԻ]v]J3cMK<wYٔiǠh寲Xz[0;7α?{rFP0` 5w14"ا^58^h.E)8XXlhiʉO֡ÀsQa(\KE%6OkׁYCӣRk79"iXi= Ѱ`s _i$t@/gA Y/,Yq";EA͏aNbN݅erkrAK=_TUHUϕxf .D'3Zl>6b]X}  T;qIW.UvBIzp5|;&C1M$6ȫ)LRudp,6CS AmjQ@,7&o(Zu_H<'^g5*4NPGMZWlLϔU+sV*))9ӫ[#FnKruZ$F&+K]:2]JGx>gk3z$Ӡ* Jeˍ =O,2SΩֈX,s7%`9VFjo&o2S;?Z-ҹ5,)(Uo@֒0m!Ĉ*]ю ޠTڐ0ga [|(}s |[LyΠa6A&!g{Ջal& rhH$7jD2Σu'_cy):Ă^P9v4\ }<* f3T ]!BQſP@JHφ=)c, Od7g3+sH !P ~? $*\u%Qy:sEX1㮊M‘=HGʴI% CpV #[y. n]N`7.u`|=dҁ}@X 5_ ?X\r ͅykz(Q *FrÛdYs2(Z^dcއf>P9)Z6'v^ {) 1}Lri^9oscߒ*3\/bULk%<0>`,/>=sᖖGpFuzsJ@誆b }=,44'`jS:/HMDB?:uW5a:h IE DΜ{L&jHQK!~X^QՈfUF7})APvDLi>G&2M`Gn'헅/YG{鈕]4\1ފ{b&ګ6H@fѣ5|=ikh w^5o'l,{ -P7/Ba:}ƜP8g5NqÔZ9d E"HF)drZT~*5G;irsdPƬ 8^*}K?X|1~ߙ0*r JNj~2\`0IU,L@t,m^WQt=ptG֔^7l-2ɇ=XHyۂ6.Ҵa4 cDC@{Iߦ;Ă!6P/ңHLNv.G3W47P^;t.|=n_8KJcŽ\6%>y\r"s#/ʹYɰ?Sm[cӎ!+Hۨ9,r a#>?dUPX)FL0;ט|sAUyfD:"B %HfI<\GE.ru7yk.Prwx[ r/MB1vR"MgxAQR&ަh0%' F汩 8dV5I8x+}~"5mݠ>M! 2Q(Lo+@ ruAqj?eI, V2ŧXK 7V4@&/9`%Hnr߅y{\z=G} يs'GZ0oeMSIpky)6IxJ)F4ޙJD~8 Lxdk2n825ڷ8mQajygo5jxQaI_=,\r3 G'KHTtE8S4{EH Ijz0zy寠Q?bl{Pۦ`S\Õcom)S\:y4F7=ږr CTC~GcAݠkM"WO!`6a)}w-BקJn7KwΐsBy镋*r3IJ{/}dSCȏP)!=@aC t{_mlin ֌!X ypa/xM&WZ h#ze VtNF֖%%M1F'/Pf-Oؖ'zHfBMD?PԘ{3zUatWK? b4KE1ܴEawBoVWs 2R4rsuT$=;A❯6%,pLsR[=="}z2|ذZZGxc/2{3FxwjXY&'W :1oA VRGd;"$r,d^ >u^~;<`*QH_:Y!n6D}=0$+Q: InUarW]YF X_Lu1t(TPi{1+2?`߾:]DG!R+|?:X~^NDD*T`ghbRA  #;#k[J~.? Ow[#̨t(yQFˈrݲNy#Ÿ1ǘɑs 'QmEPFriɢ\3Gw9oLTRa(h%L)]#e=Y[4[|9#Qb:kŴv<QVAG`$ughw?* {r:ÏP/BJ1 k⠛8o_?_9_ƨ#Au1d [蹞~Dlj2x:F">30\$2CxɄ%s+tmbIB@6Б\~zvP8n} pqCo1" mEH6}VH\Ƈg"X⛚必,fja;:~*a#h{%]:eBB,N@([3q$`R" N(bRHڎ^oAce؆m!՘lf-X ۵$H̴^}jyI-RSdlCc ܒ2Dh+2;8{[uIl_.[lEthXa5+$=ʟշŵALW=z\RbB%Z8?ˌغ7 R >ϩړLb%ۥU%9r׼۠@X[S-~@dp?rq?Q6 : Y tee )YIA4z.< pL)TFǁr_qS ̒ qe=4gx6/>Nk>nq(EȊdc`4{ ߍ>rWuTG(j9Oy?(xb}V+ V״6jm`qOx Ό>ʣB 5Ȅuf^.BA9U68FR379Yfࢼd"G rxCތaWDSFT 61_R|j;?v+&hp1дySQ>?x]]ROP8vvL4$MR&y{ RЏdǎ/:K'nNr\g܄'8} 5mb+x('g,lֿ[꤫QkE0'3&~5; uHGִ'qP,1W^ndr{T$ il Z" Ln+ 6+Y%R %[_bCNf-]p Ѥ0}@ !uR1ף +G4E?EZLMVWyGg?H{S\FD{E7AmAL1nֆ@X2UdntlbaP솴f (c=c*7T=PUM l}Ő,=,d7;[v^9‚F16Tzu],ڠ;nN+|/ꟛ@AuHՇ51OMR '"aaYqas%_ )*j٘:'zvTckMtXɒNY\~6ַ thRy[r&Ɍ+Ωsc#9 G f.G`)9?r-?iuEϺBJQ.PxN֡aQEIY%irHrwR*tQNݥ:)bN @~Wts3!_GT6,s-{n̙k">4ZY 'uPJa MHAKK-&Κoy~g,;5:˔*Rۚ[z_L]g^!x2xn'Q ^ yJph!SNMHmp].oN0V3xU.z?D~:Ƹ4I(NK ؃B\Tg`{K(q /YM6{!:kZ&0 P&_~ѯpa&kbbȾ_z!Ae20K[ -@{HƑ.<\'gGDuZjA!@Uak* d+06cp=Ftt E,(RTPy9/sXece2 6' ƴӒvKS^!({ 2s("BT_y_QrxCD|"$$*m/&*U>(XSkvε VzCy~wy?5>ߣLYB )QH$`aOf3p=ߠ9g6\ĽJaf\.pI܎nIJ}n /rQIzשS_ډ>#ݷuƌXN >wO&=l+ zAW%EqPU5 ~0ɻ<Һ-HvarE$TTMɿG9݋:ͳL)46=#<1y:<ԥLW$[6ъ V(xdN\I|)ZrD&K5,po M0䜼HwLpY0ҩ.~uI2o¹W]6JYrF՘!X 4;{/Һ{BfȞ,VY`Cݑ=H* UнSҸ<9iK4@Voϙlϓӊ1R|1aSPÍGY]^]]sTT=?6yolmUt mn0違)F 4"Ô!Ra%ńt7{*å|N ܈@C|%́] C.@cŹV&ʵp,gv[7=*ýZ|v1P5:N1줬("^"Q- M44%S$u|?2n0Ѳc`".Ǎn!lI5`o׫ 3UJ~.;sXF%[-XO<3MR2{WTS1LU0 L+Jݐ2z3\0CRWg &tKywgUI Cf[$, KXe'MVq vsyH`h8Eݓܴp3-yU/ -#7exyϾzJʔwNT/Pҷ{,#a@Ȱs1n)~FoNzs2xWMJwЌmDHIeJE`x-)S~q[!l垙DnX -QRemd  =8S [#IeǬR&1(='v'J$Đm\jp#V 0kц/R%k@5Vی18!N6 `G "j_bz3Gth^sJ[7%Wg_D< "T-tVTvոBFLāh5܎-$Eu<-QJN+շ UO[j׸ʚb%8E{D'}eR@Y9`cqNg>]s3Q|ϼNHƍǕgożBWn|a أ'<1 (O6N3)8$i1p6 #ߓ@%/Uc<1xN*D+x3낙y5m刜%P%փQVXԪ:42V,=)[Fa/R-diW;w7pܭ3yUkO1xu/nc87ńl#.~ ZzX/ *$izZTwc!ßlEXnV0'.z0@J"^;Ò[MC"HqSbH2̒.a#@;b GPZ58kS9ZY |#/BvH톼0/лG? ;b>LUgDʱbF0qpYYȫ׈wlkawKĄx̞#1e? M'nf|?berregY8v7-v\GTq#82+t"q&\G xKUI'NBsHQ 4p!DT 5?\'j8j-{wDPJןX@1\.7I|TskUdh+8kCW;]byҙ~5A|X^|A }'/a67w `NUJʮ\,@\ǿ%]Dsǻ|=ڝ:iA8to7[J!^nZӳt:Z*vK^zhN +uT0&ĵ$IչYRKJ4E/ oS]2RlAlC8.7p I;V*qAig")z@bc#Ρgqeh)I| )h;yӒ?8qˠU}#/PbW %VQLF@[ z(b{E9Zp`E|$TlCckeEG?>Qҙ@1koz>H1 lq31?s XnNqh`iot@BK4p^Bwfh _V#-gd|7]c %fz*뒉@zQIӮ?\~7׽iĪh#R3ӗS-=1jt~W uyS0aَd낯J^uy$ͻ|Ǥ'1.<5Y\YFoL1z eRxljp1ج T6x8?P\\a+ZUP&fI╜]_|>p'Y,v"T.lPH(~7TfQs,ڌ G Z*ZAd02 2 hso DN?P'j-|V"L~>u:n`a%mfմҬʼTgԦ"H&fO ѽgcYQ\VH}>n.Ԅgqr6SߎrElxNl~\3#{++![kE;P$dŲ#x~?}x6NGl` L ɪ>%a v}+VMﹸ[釾bǜh-=ǘr/V q_DTHGi9̿/7* YZ