util-linux-2.33.1-lp151.3.9.1<>,֜_ḋ/=„=v{7de$-'?xYbP#e_;wJh]Ր:ms=#/櫺~ #If4بOS-6 6 h TbH"-kߠY7vm]WNdZIdZ hb\c(D-kl! Ab I} `7-+q8gYTiquP+g(^q.nč |/SQ7tg\ǂ4m6!qݔ>Q?d   G  3<M frT  # ', -  $0 WWW(1788`9p`:`=1|>1?1@1B1C1F1G1H8LI>X@T Y@x Z@[@\A]Gp^VkbWcXdYeY"fY%lY'uY<v_vwxylz@PTxфєѦѨѬѲ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._obs-power9-06@openSUSE Leap 15.1openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Basehttps://www.kernel.org/pub/linux/utils/util-linux/linuxppc64le 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  @)h X@@@ @@@ p @@@ 0@8@ @@ @ 0@ @@@+@ @@@@@@p ."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[[[[[[______________________________________________________________________________________________________________________93a75081d3fbd709f4123f1504d81b224fbd13589cae72b4fd3ba63c9ae609692b8fbd3e79359f3f346706c2be23404b63a13dd283ec2844f58c64251cf469466f4ed753379ef4cbee5ec667cd35a40e48a1b00564df64b6b1653664184e5016628c28f88b7581a346de64b27527443321e34a60e80df5920ae9a43777c2fb93c3ea012930f7f9f2b9e3041bbea0caf731a5a613c3547addad581b7c209592fd6805d57719e0c228934166892750c278b222c2562b31f2a225ae1688614dc8a552b4d0e84fd0fb35e9263c319503e81a1219c7e4b52a6cd68c63372d2fa7116194b45d97b95571c56c29d9f5604503fdabe4070df1d5ef2bd159d3c1710c370f3266800838dd16a28a315517f0ac00fcfdab774e062087417548201fc8bec1e83a8fbaa56802f5786cb0d63b4e557462179bd7416e717adb8aefda9245f9a0a66305d11d5a4181a7026f3dc1d58f688a6d5dbbff8cd0b0d13d206e4473c24079e87b65aa9d155d4e2a397cdc9403f94be3523b483378089184ad57238aa1cfc841c8a696fd7db3477668ac62fe0c22700817e982e0cdba765e61caa712e998e4d8d4ccf70bf303a03f6f58f6f038696ccbb61b4ea9774fa543704756e527d73606c070c9a83311ffb1cf47f165868a8c9bca231cd2c0c5fc22b3e328a912cad9e8d8cafe554ec56faf33cba403b324dccd11394685666dcd7601b97d6cff7af9bd1c0b644eb25d4b3b4516e88ad353fd4d0715e459ba263f96630cdba71dbb12f792fe3d3287bf9f18e271dc4c91067044e22494175d7c8464d1dc156d58e4f5cde04471196b73d307c4a176d9493ab5bf117052f2fce487822ad202c84e817ff4cb580092592ee1f773396b2a8b66ecebebae3d33589fa4b88dce31decf34e44e006ce29289413e7e84eb36babbd17b2defe83f87a8aa6f64531f4ef13a4eafefa68e59a127de76d33efe278d7767c1daa553b8970c34a22840c1282209c95c73d1898ecd4577c8dcabb9eda185df963f28d53005a299bd5b4183ada7d0c36f258185183aa006ddedbd44e8d10fc7295c211ca5ad36b8081016d1bbd866912c451e18aab01a111793bad80fc6884242793d8c995108dc74de49bb9d5e098cc84286e1526156c01b7075af834b7e13e7baaa1f68841a3a9d336931c46b244ba99ebe538844dc53d9d409e12e21bb934bc819322cbc6b30e1f31dd516e32be92921e9438e7b5e962d8422555709cecaf94b40343ce0cb7803780cff81ec5dea401bdba36f6f5cee720633138397ec7cc785f6722e4b13f3e6109ebbe3c49f41ba3d79d2d9efd3dabf67ae382c5c572ca2194b012ee93b26afa681615d85ae4fb30f90ec58340de530f8ecb96fcbf3afa2d435ff186cc49677ebdefbfea078f7e4eb9afa307ea940d74765efde4169406ec8b14a6a4e1bc2349d79129f6e1710a4463b12222004181f4fc496640d88dd2728c421a0d2c21dd664aa6a8a86af265d7f9db00026772ecaba5641b69c568cb4e02a5cc70188dadc17432be90591a2143043255908272da575b90c08a2f9cc8114315e792b898dfb0e6bb4105467e0c451f1235ea0a5b73d17682effd9bff2435ebf64375d6901c2ed09c81bff094784fde4207556260c8db41cc760b4beb9ee68077ecdaf88222ca435fcdc11835f82bcaa801d8b3d67cd7218eac4b22289a12982f4fbfb610d1fde1f1273884c90041a7c68bd16a82483204e70f41f269432df9b3fb8de11d1d9f3d647ebb7749cacae0cbb7c784ef7a2baa0ad25e4966325063765e00ccaa0ce0c60463ac23a357cd57fc76593546b6977b11850b748fe99aa4418c4f8b6886ed17655da856c99079894921ba8fe281acec7ae659b700e1074a4fd35657f6722330a9d6d2fe43217e9de08f229666a6039d79b67c260e5abb19200dac65ee24fcf0327bc7c49b5ed0d4b91b84f24bb654efae9c393a251e8238c8abdf80bf2f2b4a0c06e42c7772f7006646478942abd196f2fbbdb52b1afd22f47d2a736a540056faa8ab9180b462b16c34593cf6ad2d4e5e0410f2b77bad1a3494782395c261d54a00415ffa8403769b39f6da6a9aecf2fb483e9fbff09d2aa82a713325a7acd28d91443d54b88094026fc3264d0cb370e18fce222fcf6b1cc7b5ec689b2451c332674420f59bdbd761b36bdc380d0d162d718909f1e9efcf4eb84556bda67ba00cc8d2b501b777f6aaf6e56c2ec58ee399882ac465c5f12ea0e43b286f1e979398c56aeac5d6704844ebe015962a3a59aee58c49b6aec45c93131dc6166171596f3dd6d5d4d02b6a256312113418330f8e4f9a3bea6f503b7a6aef8badf8d3726f29ec6636956bfc1ff9581d6c165d8ad853cddc77f541037516d863e9eb0da50acb2fb98d2482ca1a94618d70af041b4f394b813f1f990d567204dcd9605926fac3394daeaa135ed8195eca6d7ac76ee384b11cd0c783d5b28d7846364b251de30ee6c75fe6038e7b56595fd5c38871e619a1235a2dd48fd8d5f4c94bbe4d18da64b42e80c0666d0fd0a521f92610f3fc03b4b0a60ee529f9963402f8c4dfa83a0008c1ed44a5a5e2f54f8cae2d3ba6f439dc511763293f970e325a94ed7e228822e8df12e8a6c61a842886a8fe683cd37dcf298dae873feea93e9a2bcabc80ffc479ae936050ab00e2e82aaff84e70b65bfa16df11771f843df2ed059b47bbe081ad58cc8e4d397713c8b506ca21eabd4260f2b89985f31d7fd1bb1d698a536ab6bd73bca61f3f894ed533238cf318c4ac922cfa45c6b8e0419fec195fab8cd8bec6f0900dedf83a6c62859ca844e9cc6c51abe05d7f5d73c2fe4b6582caa77c91597cfce5c7c52daf64c6d56293c0d8e16f9874b5b82f73a12ef6d58ef6ebed003ac8929cfc6c4d1247cd4a6527c1406e3a0b76bdf8c79216f442d37097e5b64b5c48a6e93938a64b17b62624060a7bbf7a41f1026371602d48da2f2c71d6e0206e77987019edb97befd400e3f0fbcd51106754b40ca3df18384cab5053d50dce51d4e1df08b7c5561081cd28a283547a81475129c109c4092be9b9a8b1bc32778715a102054c2ded12645c0f5c4d2d22b03b043aae2ff1378483c32ab7e031f65963e58c5a0d0ca873751b8b1a308f9eca11dc9309b8e4c75ce2bd683811e89985f6cf6c958e8728b3a7354d41cd3aa602f0a67b956c57bcc749fd2c4a922c52085d0e3816ae8df400a4aa299c4636cd9725cc902b2fa8881289f01cda6b5efb8b5441f3e1e6893d73a18e8a29b81d78b51eb41247cc1916afaf30247ce9180d5b061418fa1238bbc243c3f0c27fce1ad82c4ab8f263a1f737c41551d4a0aeab5bfbeb48a445b8cb1478391cb1c8a0c56c6be3d80c4f96b02c0871769c25c4dcdc320e3ac3a6e016a87148434fcf5ff56b3bf2cfb2e3427d2da609d76dec09616715f64affebf1fe153dce9d7ca5390882ce7215c720f66f1abb02be6749790b0b93371cdc9edac083d4b35e3303c41a871f9131d5b6ce74525c6973a31a8b2737e0aa20044541418dec29a04b761b3b29eae34a2a17cb399f9ddbef1d6baaee5dd1be0f93846e7a623e45e6c26e30bfd40965f7b874b851ff7ee56f892431a3233aeada3c658ba3695b243ede770f6210159da07177f035a1cda8719452975ef1258f59e77021189b273100c3f0f5e1cd4892b7a503526f8ddca38d61c21080f977de77de8f80978275a1bf66439be7bacfe859e69453d06402e5c11d16b01da6ff3f185ecbf96fb73b2f5556dc0433e46a2b6047319be65c86898a5629207ecf084effb52493310d169298b8f9b7c02cab5baf1bff4c9a04eead0f811c1fb07c4e4fd077f34f766e595cf17791549e8efb3d6de7e953a4ee1bb4ba021b684910f34a976f13234b45409d81ef2efaf3433d4f1c36a0506d5d54883f7f3f5fd74c3dbd314a7cee30def51c90252b2459ee641aecf5bb7bddb139ebaa2c21435f0587a65cf5ec935a04349b85b8f2893cdbbe462b747f950b56ee11c3ea70889bd59747312a5e280cbb8e30c5e7422a486e0b060ac2857f03944ea816decfcf6f1123895ede738f41522e887bd22e34110015c3384e4e2332f1c16cf5cd09b8758f0c7b1726f793b448f2c7b8077c060e74238e3ad710c33c03fb140714c0be73a06650dd88e18536b0f31b1cf7ced0db7207be34756379f2401547b2de8026b1e842a32234305a3f40cff742b954f6a08a20a3fe4782e9d5307c7b57c7e330c09caaad4c82bcce54680d39ad4ddb5b3682faf79538f90cdd65e666aea29e9400aec80117fb94b20b737a59258d771a501b5581a75a7ef2c2f0d947d58fb9a06f98875e84688285555d23bdcb1f785185627c13743374cf35d547b068384d9fed2a4a946d62b235765157919355b23af19911095e359056ff7c16e8d0417fb15a131ffda3a068d332a37900fa9bb49695eb487a81c81fdacf86a6cc7a27b63c5003c8c3089ddc72a144eb1aeacca20544f119de1a95bede41dd74354b98b3f151ab57d1b15b8054ca7f7b3f134126727aa0bfbad1cdf457499a630198f7a41ef2c692f5739ed4c4e27506970e8b23bbba4efda78db91999f19c1a030c50967798f62d03217f47efe5c3572a5928d0e4c8ffc4faca7c3d0c1dc3333919ec3e64fd220e5639e57793b85cfd25c8cddc05512f761cff936c4b86766547330207f03e5cb54168ed5260ea6d88c7bf9a5f2751a786637ecbbc50eb3534ec30b8ae96f00f8b5171b5da1b207a30866471a6cc6a305a3ca1298081af113ab825781c3438b2fda0193a8d250dcaf1ad19955505f913cf320da7c66ffe208d5d7613fc1047ef161ea00ebaa03b86083275a2335006117745f7c9a8e31ae2357a237aca67681002c5169b9def76c5529e5946328c925b58a51036bb9cc05ac146eb1e40f924c3711965f1bee15d2c662d84cc82ed6b7b7668600de039cc7b3ae4f2597158d965157c0a8c3fa94fb12c63b118367af5f136a0da6425d3a54c007f456633bfee67ac249011c4582c58f4509bdbf12f845c5783606ccefb6c61dd6b800d173e08295b626ad5db3dd1b2d439ee006289300d592e7bb6d287199db40efed84567c26313d1205ea34823331a646e91fcbc5f29c133bb34013b82134a26f7321067b4fe4991656708953e947d6041f82301371c6d98afb8ee0d521670d0c2175499b216020f6851b9b5275651b33ad1a63ad71b8533c08bdbb0091dd50229c440bcfc0ecb96593f087868eb2cd3de0af42690502c04d2138f8bea4619490a32c4831462db20765886d6922e21803efd848d92280434c0cd7a2ec59f503b03f046df62a8866fa76dbd6f385ad05aada522974ce24b00fd21d8c9050d3e5d5ca3c183e6d26bce2b0e246eb6bb864fde9661a2567a8cea47d8a4239a8d43fead636d0b7cce47ffd46d45b60ea1ceb440fcf2a006dc5c57a8a3e866b462573396320c3a7babdf50694c9313beca7d6b4730f081db21d7721717a4ee279044209d1b1de756e35cea5ce61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c852ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0ba7d43682f8dd8eee55591d451aa0b4380e1cd01eb887a91528dbbb9187ed14d2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c6238548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f66bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e4d3265f8264768dde09b2962b2b19f1dd23b5283430b64b762d24515dee93cc8cfaecdd8f38c8fd02a9a6fe9685dde62da40bafd69412d0da67cfa86af3443e60189319a7ac414b0777557a29e5c6ddd32ec3a4db494eea31c193bdf80add723b974276352ad7e8594fa6fd62210aff842736758d3d2671c17e06605d892743952021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66fe337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060a9f48f15ad5f492bd454b781d293dee2c123c3947df57f4c709365c624fa72cff775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c60d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df840332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae51994ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd874f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b37100d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b20ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d4bcab470cac90909b105e525171e7bc0ad8fc60b0d98503f4d46dfad8060cf9e1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e68a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173dc8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa2509065959266652a2153e29fc80a3716fb3efbddff33a33590eaa20773d0b694e3daf55497287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773de036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df8257b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb5648d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9afc1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4daa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c32803218e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae941519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259dc60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3bfd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81de3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868ddfeb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9ff546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5d8e9402d77ee0e8fa37c13afd9202eec1cf01b204d02a89442e8ff3999f14bb96fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569be0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aaef626d1fe1fa53f3fdde633d2e038dc3d081ba609cb8dcde53a8e1a40b36ef2de00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9bd6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111fbccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda53306ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c3019ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bccf163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36d2d73796990694d4b07fabae50c6613586f14e0c337507773edb6cb1b04157c0dbf03fa8a7f4e7213f709a811cf2015f4f87f35d5b21a35852c4c5e66d6489b3bfd1b799c1a4b09c14bfad5995a4328dd2169815252c56a1efe4a12f29d53a1b716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b88464469a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48d64e54868b437b24aa682bc015f7761fedfe39badf1904691ba1c91035ac9decc4c0086a5c5b0e45a7c1880a818d6ae7f99fe074c6507ab0c2f1a1149781012dbc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e684012a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d503850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412f6543a2cbd41ff073f81159a4a5dde495a8dc886a4625fa019a41f93bbec6ce13f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebeca01bea62d0cf238109d534b9f5ff183ade8f28cdeb7f9f2b2b948fd241c4921bc415d2ed4f60c8263060ef1ecc8eb0613adce99391a4a40de537cc9c22bf2d47590a0321088d8a3d3f39efaa0568390b13c652a04dec563e28989411213a1d936f33f176094a227c2072557871f688b3838e23d441d92772d3e77ab6e38e109b24b124b5650413dc8e80309858c4d74a5152b6f740a49c1fd1c4daffd87fb56bbc05ab9605c66201bd1282ae96033f1e66cfd0d36dbc62c21b8a616fdc62bd8224a5db8f04f4ab2aaf273e64e34c1ebef97847c8e775e667dbc30491d185f077a229727999483ed19c5723766ab1cfec330b9a4cdd6a2f818112a32020debfa8ca2f6f2e9a39378c1266f8b74f17b894e3c8df9e3e34b8055f94eb8386d1fd26ee32522c5f95d216d1772ed6ef19c27129db52bbf7322ee6830e21a49fbc72196922f57bf3ad449709a7e2d7b41f456e57672a2e3fb3d0859dd26a0b2cd98af139f00c19cc052f5a7d2acfa55b749e73156e06563bff5c701bbf91fd6966de541f04f17c44f8e86315d378f7cc390bbe6396d4eee31a54282b1f2510272818249d7953269290a422398c54cabd6f4ed079d4d4c7d5cea9a57667fd329e3f07d60785e2b92bf2fe9de094db49e063d96f1f457f373d4e218a9c2f3490290ca38777dad882a31faf7a8ee995836fd75cca7c81cde7bee356de8d60a3b5b51781b8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b8806439b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6dba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f88177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe5514335620e8f478ee4dc4d26540448d39469091ef1d8e3fbbbb8bf753206ceac747d43e7186cab280cac92f84348cdd664f23808ebf10e17a004a27b88cb828aa6d25afca78d31cce79875476356e3c1f29f40ecd7feb00cb084f4bdaced6b305ef00bb2d4446c260110608fe9ecaf98b972cd20115da5f9ba96ebf2d7004f746f6d7eb4712e93b19cd4e2bf3e573f58c0ce0c6b9a4216a4f2edc0560e72c3781ef3d33379fd761172d824c3178e31fa99ee9769aed661718b479dd9e4f4152d03157b758f03d1db5c2e9c071a31441e2751e53cba6009e48c3f4d7941a26bbe5ef954965407af97896cad4fdb305309130f2e7cfb593b3912651c82536140062faa68d664ef23704d0be745bac27e12a4253a65c2da14077009e3ef20d417607bfc0fd73f27b8f48312119002e879ce2cbf551e3160704988ca7abed7a2dfc8171709bb60141d6f8ca2afde124fd65b0f82a8dff9fc83c6ccd09fb70262920a2f1219b0219e834c539d215e5817cb7c34b991f64a35d64139546a022e9959d5c5a416295e0d20e54f9f8dc0661de9e943b8e883cbb4da8b86a8da7e42490fdea9eb0fa19e506405161c2d953724622e66246766e7b73d849b788c2bd3b73759f2c4c48e7c9c7b3770cfb9919c7b93bc3cdfbf204a3f2ccae25aaeeda1c230eba1a5ded8e21738cefbf22e0e04fcb7879820f521a945edbb73e150d39e69a937d8e0e5def4e2bdb31c876a76d782464bc6f8dd5b3c336028dd810121d52eac5f1ecdf107c2cd3c94eae7bf8f985394ecbb2e2efc9e3bf2f7be6c74b12b8139e73b36d4eecd6e1739bd54c46619af14bcfbd87f2022dcae2d330b7c62b37eedd717a4874024a5018a37edd5a8521dae838bab700182c23b2cff8b388252e5e5628db1ccbec6b7082753d6464377ec0f41d17ffda8520f7792f55028b62c4b81b006ee508ba4e1a283a55e1964c0976c438ac12754704b2e9a5de193219f438eaedfe207f145e1bd7a35b84d54ed3064f7ccbae82f537c8eb40878eeccc867e28170ce806163d620e2ca8e4736efb7dcbb1c85be97231fa6f341a0dd1f55f1825c4d23695b857457273c1902a1b901d7c6f8e1ed983216e7c4fcc34fa4fb5320b275891447ca0e6c577a6540858b14214b6246d4ca0ebcfc43e71a72b88d5c51bee0e435b10ec8fb185cf400b994a4c73502f63d6c8ff688faf076f7ba4bfb6bfbf02feb62a9c312ac933a54af674435601e2a6d817c005eaca21f214d71c25813dadbe7cbb553fbb64901ed73114648f19a5402a964035ced5c9e879dc1be9fdbb59b8e8f145406070391273df9fabefd38be1f1add1e4a89aa1345f2d1fc1ed37d9f25d1a31edad9d7d8acd2f3808c052c553b813230d0a289dd8607e3d24b67a2958f4dd86eb05d92ecc722640faf7084b4b4a4a0873fd87b529a429153caaa27842741370c31b688f4b0bd9a424b586f12655c127a05f0a317ef5b2b66bf65bfab512f9d81f51e5c8a58cb13f5b182863947f2cbfbdc29bd7604178cf41d6c5a6e94d060cafc6bc3a48069ca94e58d1a13c02afc0733d8ecba71e77d77eea40eeb29b927c97f767d881d0fb0806cbbf8ba116ea9231294c9918c02805a696f9e73430f4ff6a5e67ed5fdec97d3700863fdd0c9b0973dc986720bcc07aae05312ab9b9606891ca351f19642a32b241178434aed89bbc7b627dd97101a60fefe739f7dc17898c815beb058d77da45ce0915c0c1453050f1f3eb1b7ef4c7672c7031cd9058b8644ab9de49b0fc358aa148a3737afbaec2a85f9870d776e60661b362ea84ebe79cf0bfaa1dc2aa0ef05ec8956b3309fc5554a7259df8c555a1713d1fe50df796baf96e8c4ad1b3237b4b5bb25b8d6bc9e08120341ff9b357dfe8e61ebc9abdfd289b595969463ddc0dc9ad4faeccc99560e7d8beefc40876beb2281dbb37d3cf392295ecee4c8a5137477b879cb8366068d8ce1f0b9a910d9b0811e42829d6e433c51c151a0c215eb6534e845fdd41db9fab4e97ad6ad270177538524c6f67cbbedeed4f2fe8da2f1ab8cf96d05ea878ea7c8b8b6f1430a2bf41dbaf1a2d606942ca3ba600add07b52de8a4d3a0dcf8ec755dea89ca27e15a1791a437d4867f3b7512feadb73ce35c951e10cf3a296f69cbdc0f3878a90c8611140bbe6427ce9a93d4638a334bc156c1f253f3a601be2cf1481d8df2ea960a7589f1f60de6a3fe6e67240ac9fb9d11ab756e8eefa77fc218cad0f1d4d7d3e71b9c8bd95834136a473dfaaddcf3179bf10347c93f46b5f725891105f4827277ed5b51b27d9c77b39677a8ae86f2c0a8cdee3f292086b52141f0a239cbc0e99f48b7ec984e63d500cef0413f119a045551af3c22becb17ec21f4800e449bbbd9eb9be2200c93b025e1bb3480a8911684f2b00667d45d9d2457ff566e942417fbddfb27c07dfe75f92df2aa8fa8ff8dfbb723d91c5a98011a4a5dacb229769ec6778232cd331ac54fb925d473888d8b2639e0834c0c5ae7246e2deb1cc529c4b72922299459cf9412499881f8011366096f8017deecb857791cebc44cc392f41eb25e2ee2a6211926b7c398d72e685b0fbbda9144fbeefc7eccce9f288d82fa5572ee6065aaf80c7511239541a8e1c94e2f8c4b7da93023e58d6496fc965e55d498f60e22064a8084c57b0a1eadc377cc6b8bc3d7baae466855672ed41260357912b77d56b5134e97e3f538e3078514086cb0efc7ce491186455b0083139355b5d9c86e0db72be580eb27d4a7b38077686e9777c2e322b311c378a25adb267f16cd77c133f4d9597603750eb7b0b43570c3fb49f01129b0232a0bb741e436882a498321cf4fb435aa2e4ca95b16dc448a331d7801191de5249b9bbbdca42f410e4b81461596703fa32e89ea22eab558219b58f592dd7996e0677e8505f6c1aadbc7b8393452f28e10969564f289413ca59efd12598a6f282afd426f1097f2bcce8e9bc1493e38022a1f4b3c4d33ebf2a635f2e50dee551df2df277472b3e39d5ab204d1b850a00a7e477d31300be20eb13b07ebe2d4152f3e807c77dc40241850011024bbf625c8b09b5647d714cbcc1dbdbf45dc932387b99adb60db0b1b6a8f8c8fc7afa821df3972f07160553cd1b5687a7f640fc2fee62e4a87bb1b3b9273fa4cfa0358b0a0e581af01750922fbb54b51f8f98b7cca8306c2a02884d82445c3eef32f0d83c5fffc5185b4ae195d6a449b8e57c15a9ad16cbeb1d31538e9e232c89f299868ddfd3a4d54fc5a8c6f24baa8b29f8acb7d7d58b9fc0a72b727649007797fecf7e3cd8b378247734abffdc6047bb1cf7d56752b23b01f853aa02e97f5c2cf00b50b1f0cb1ddaddedba6b009a41f1536f6a09d695e2ce05bf1ef7811ac010e4781735b3d3e6ae2591515f952efcd15bf43d4fc590e408bf56ced51e4e7a3b82c1b358d724b09d507014a0b1df31aa11a209ec361c97a1744ef5743feb943cbb3e92ca5c170deef22a778d5a53d623aae30846799f31778fe0817f2bf9ac9cdd8c6645d6a27d38e349a3b0f1d4a0cc0a4ccc58f2091b58ffe301576aae346bac7f1022d44498834cfe465b5df6606681cda24c3d6381aa4b4dca1637273514e4664360201ee37bfff43ad350d522ced2a9a17183c5d44fd80228b72974feacfa7201ca9164b490c1c9feec1a00208f1014f8cba51ab9908ce83971fcaff614926b8977eccb914a8341dafbce18e222729c168536ae068077b7f448c270d7ebb2c7b4f8166dd15bf5cbec4fccb9bbc51b71779e4e96bdab075562e7827f9df8d0dc55be3027138877652c42c17646a7e07fbe95a1acd8b5595c3e206eb00a7af81a0e08027472c4f5e7caf13f35c3ab4a8ad85d4f615c2a52dfaf9464e74fad85b1c76e9009fe2162297c8a6a902ea38fdab368c05ced734a0f8736693eb3352a2bc2a03173233613fa921873bbb126a0c096bffe698480bfa7595b112441fd53bf64a158491b30c491c51ba595e58eede9ba7ad5607d50cc337519a57ed13e9975e6f5ff7157a6170eda4ebf3f02d5b0797455f13ae2e776c92eef59d7e5acf80bb9831149cb02c22d901e47dfb33c33a51731fea76c034228d117dff10331f0a12ffa53dab43e31df17f5ec2938014275523f4465c4b5d1b63bf5b9e1eef0e708c9a9b84b0ae86b56b223653b9fe4bec6efb3d587a38c6bb120466eaf90ee629dd051928cf7fb7edec391d901d37be350115536240c3dbc6963886450fad67c176e35e78f086dd73812639f681121f3b5fa80333c963e6b84a5e8b39fe20b2f3d0c2b56284c9b7698042a6286addf1c67b12b45fbbe279365f965162d0775658a62cac4aed0df6696c7299883671d4414c6286cb09f4465dfd1f840643337995e7cf604c2f7cca90c0b7a0f2203e868000654c64d35e888afe759da938b3599f3210cf9935377086e5b3b391ebf2375aa6a6ed6c5e2d94daba0c10b10b8160c9ba619e55cae1113930cf743436a0da6c27538b2db2611ef590cd6cf128b65953a99bbca4c302b300b4144d6f96497297ec93396571bf510093e2777e9d181d47944dc2b3e217a4a270f1cc4602498927bf63109687da068bc0796a8b7f47a39c8ce940615623af25cb8125eeb56f7f9f17f9e9d50e6078b1de6c5fed69b76be5ae6476a7c7d043c0d91b3bda7a405d81953a8d3566a0fbcf4d56ff885e946f9e96abb01365d4d4c68d443e0580ce366abc363762e2e41ea27403a25e0f2715d608026f08827eaa7ca87ff557144b1d194713756c0aa65de4fd26f0bc2b26e299c0c7fbe3b6f574ed47c2ac644d45bcf07d752a69b0625f9f27724c140965c69959990269c3b82b0f8376031cb1dd26e7e92390db8a742c8b6207112a0d799dde6f9e8a3de7c74de7ba0ce1d71216e2da4fffb2c438bea6b636b9388784708af9ec11d5a70b505a2698f54d8c9550e3af39a9e253545cd042860637731f4e0a971d1d1e8cac3eb90168cbeabcdd27ec10ad1ffd14902be3b2fed85c4ac21e788a51e1dbef86c6e1ca3af17168e6f6175bcd76904a8279f88caed634ae139983f57d15b7987efa4ed24f33cb231c802728390f44b08c292fd44e3c44a435fbd2f03cce7fd23ddbbff52e64566d2fd7a067dbd26d11cc1b793f2753fcd946ad/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/wipefslastsetarchsetarchsetarchsetarchsetarchsetarchservicesulinux32.8.gzlinux32.8.gzlinux32.8.gzlinux32.8.gzlinux32.8.gzrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootttyrootrootttyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootutil-linux-2.33.1-lp151.3.9.1.src.rpmconfig(util-linux)ejectfsck-with-dev-lockloginrfkillutil-linuxutil-linux(fake+no-canonicalize)util-linux(ppc-64)uuid-runtime@ ! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(util-linux)group(tty)infold64.so.2()(64bit)ld64.so.2(GLIBC_2.22)(64bit)libaudit.so.1()(64bit)libblkid.so.1()(64bit)libblkid.so.1(BLKID_1.0)(64bit)libblkid.so.1(BLKID_2.15)(64bit)libblkid.so.1(BLKID_2.17)(64bit)libblkid.so.1(BLKID_2.18)(64bit)libblkid.so.1(BLKID_2.20)(64bit)libblkid.so.1(BLKID_2.21)(64bit)libblkid.so.1(BLKID_2.23)(64bit)libblkid.so.1(BLKID_2.25)(64bit)libblkid.so.1(BLKID_2.30)(64bit)libblkid.so.1(BLKID_2_31)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.25)(64bit)libcap-ng.so.0()(64bit)libcrypt.so.1()(64bit)libcrypt.so.1(GLIBC_2.17)(64bit)libfdisk.so.1()(64bit)libfdisk.so.1(FDISK_2.26)(64bit)libfdisk.so.1(FDISK_2.27)(64bit)libfdisk.so.1(FDISK_2.28)(64bit)libfdisk.so.1(FDISK_2.29)(64bit)libfdisk.so.1(FDISK_2.30)(64bit)libfdisk.so.1(FDISK_2.31)(64bit)libfdisk.so.1(FDISK_2.32)(64bit)libfdisk.so.1(FDISK_2.33)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.17)(64bit)libmount.so.1()(64bit)libmount.so.1(MOUNT_2.19)(64bit)libmount.so.1(MOUNT_2.20)(64bit)libmount.so.1(MOUNT_2.21)(64bit)libmount.so.1(MOUNT_2.22)(64bit)libmount.so.1(MOUNT_2.23)(64bit)libmount.so.1(MOUNT_2.24)(64bit)libmount.so.1(MOUNT_2.25)(64bit)libmount.so.1(MOUNT_2.30)(64bit)libmount.so.1(MOUNT_2.33)(64bit)libncursesw.so.6()(64bit)libncursesw.so.6(NCURSESTW6_5.7.20081102)(64bit)libpam.so.0()(64bit)libpam.so.0(LIBPAM_1.0)(64bit)libpam_misc.so.0()(64bit)libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit)libreadline.so.7()(64bit)librt.so.1()(64bit)librt.so.1(GLIBC_2.17)(64bit)librtas.so.2()(64bit)libselinux.so.1()(64bit)libsmartcols.so.1()(64bit)libsmartcols.so.1(SMARTCOLS_2.25)(64bit)libsmartcols.so.1(SMARTCOLS_2.27)(64bit)libsmartcols.so.1(SMARTCOLS_2.28)(64bit)libsmartcols.so.1(SMARTCOLS_2.29)(64bit)libsmartcols.so.1(SMARTCOLS_2.30)(64bit)libsmartcols.so.1(SMARTCOLS_2.31)(64bit)libsmartcols.so.1(SMARTCOLS_2.33)(64bit)libtinfo.so.6()(64bit)libtinfo.so.6(NCURSES6_TINFO_5.0.19991023)(64bit)libtinfo.so.6(NCURSES6_TINFO_5.7.20081102)(64bit)libudev.so.1()(64bit)libudev.so.1(LIBUDEV_183)(64bit)libutempter.so.0()(64bit)libutempter.so.0(UTEMPTER_1.1)(64bit)libutil.so.1()(64bit)libutil.so.1(GLIBC_2.17)(64bit)libuuid.so.1()(64bit)libuuid.so.1(UUID_1.0)(64bit)libuuid.so.1(UUID_2.31)(64bit)libz.so.1()(64bit)permissionsrpmlib(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/shobs-power9-06 1608124641  !"#$%&'()*+,-./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-addnotechrtcolcolcrtcolrmcolumndmesgejectfallocatefincorefindmntflockgetopthexdumpioniceipcmkipcrmipcsisosizekilllastlastblinelinux32linux64looklsblklscpulsipclslockslsmemlsnsmcookiemesgmkzimage_cmdlinemoremountmountpointnameinsenterppcppc32ppc64prlimitrenamerenicerevscriptscriptreplaysetarchsetprivsetsidsettermsutasksetulumountuname26unshareutmpdumpuuidgenuuidparsewallwdctlwhereiswriteraw.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.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.gzppc.8.gzppc32.8.gzppc64.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/-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_ports/2e9c00423d17b1eeab33daacbd052efa-util-linux.openSUSE_Leap_15.1_Updatedrpmxz5ppc64le-suse-linux  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqqrrOsttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttuttttttttttttttttttttttttttttttELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ce71b7f8456adc402c9beb67497a20f63349d563, for GNU/Linux 3.10.0, strippedASCII textdirectoryELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=823437258a8a6284c5c92ef263ab5bed02e1a977, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=cf187b9b67a4391d03f94e679545681ffbb1d5ac, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=832547f6a71fde82ac69e0dbca9023afc582c4b4, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=bd1e2a7686d935ea1bf223ee528bfdbb25fbf961, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=19defb380bf4f05a9f0b4a81ca240c5402bb4765, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=fe9d0c56b8d89ba12cac68fadb80f5945bef9dee, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8e149ba5ba4b5811fe41852138be929c76363094, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=b0a863221ea7643e24262d02e6804359f4ba8acf, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=4eba04b03a75500fc2aa9ec778de2cce95cb5917, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=63996f24955d29ed24c419f82d3361b1bfd843db, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=fc774494dac45da2913a6cf404cf1d1c5159800d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2690c85d2adf0b3ef934e2aaa16c9421eb217f22, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=0522bf65459240674b1ca630a77566c1b1e345b0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c7270eff15f6ad5ed22e1a0e088db57a8e60097b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=86033278fecf76596815b8d68687c259b335486c, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=770f7bbc27f7c4ba562cb935f70edcb0a45ac32c, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=897dae46f47e67dcb4680e0299a3fac17bb7bc46, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=80ae0e7b8ffface7c98ca40b2a7b227a8636439d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c55ec8a12c3971fec1f57c6a3dd979861e0e3e17, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3852bc44871d977b98476d4a777558164d1e58ed, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ad9008c313a9c5921b8a4ee6691558757e4f6558, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=47559b420421a1797b0a2d1c4a190c07eea305b7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=f1bed35a7bca4b769172461728090dea94e25758, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8647321269c9253b411c94b06b7670d1508640a2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=26472102dd385494f8c2cd8a7fb3307e17747296, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3cb97bcef46e57c1cf7805b6182a8619d0070021, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=224c18558bd3a421a6f0d3aacf6bdd511d8aab46, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ecfc720ae54f039fb8ac51db21dd88c88da2b5c7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=74ba906887ebdf96405050f5cefc4762cdf11e1e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ec4775e08f7e58dd02c9e9454eaac71ea84d367b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=66ae3ae33d02fda546007cdc2b776050227a47a7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=08235aee99850d6a85533befb0fad6baf0954815, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=e294a0c9161e1bff9e9ff8fcd35c594e8ad3e6b2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=331875a1438ea8f3272f00e5c826f10dafd2a457, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1b7621fb5f3daa8e6018a0e8cb8d00fdc18580d0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ed441833735ff6354fbf1af34ad7a65630a5e4eb, for GNU/Linux 3.10.0, strippedsetuid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=de43918234da8410901a0633b33fb21d2dc21878, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=813e9fb5e901caeb9808765d4e2e002e3a42c79b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=da4a761096983c2bf0c3cd228a84d6ccbe45ad2d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9dbe65edba9113b927e2b5f36b564e79d54a1b6e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7a48105bac21621d424f1c8510e733b7d657cd2d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9b963512171f3548b2644780ff7796158bad1aba, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=bf3130a963b9c126f45e1d945eb6d098c33b8556, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=41ceefd69bc6ff915f08e9d0a703a5df120dfc61, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7e9a0a6908c337c225219adfd55be6883251ed2e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=b7eff9a68f2bc163e427b098d46b903344b9948e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=f7c0855d652fc372fb029c98909598d4af6db317, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d6eb8ec7ebd62003df47f4a22ee1d048366b7bae, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=16d030d25970be4a198195e5930c29707db175f7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c264dd62892df8e53fbea06f6558582e5830889e, for GNU/Linux 3.10.0, strippedsetuid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=0c4aed0440476256285afc18463bc5ea2720a70b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c8b9e3cc410f9e8a95c7d9bcf555323ef1d83b29, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=09aa159efd8b889b78629ab626017484e64cf8eb, for GNU/Linux 3.10.0, strippedsetuid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d0b879d8f8db73d1a72f22cd5b83cae015819a17, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=a7ac8ad58535ca484ed02d8ee703cb9b00b09e4b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=0e36d89c51f8685536c0150f1e5ac0f05905481e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c2d367b4c3e910eecd5ae1793eb07a45da66a2b5, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5999b1f8c8df274a59e8daf6c1ed47cafb14a477, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8956097d6e7f90478e82abafa1cdc9da7f8d8570, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=167841ea8b1a3c71004afa292a16dab4f34a3cb6, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5bc8af5cb431389692c4e96eb23f0c86fc383a28, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=e132581096f1d4c3506934dba3cea715f34555fe, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=af23f49386622c2898f5b3ba499fe49e93d0e08b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=4fed4c6ad5624c89a71e9ae3937910ea9d18c6c2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c14399449a144df7a26387383d615da9e7f6ab41, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=20932ec175646805ad9c66c860393c9460babda3, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7073df152a83437e719e4cad1e80496871d0226f, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=448998835bfed67361d9a1298084b96c91f7c623, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7ad57e36493144e9558330bd240a642f82deb4b4, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=799ebac24a100f2e5c9b205381ff024d5996c0a8, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=41b7858a4cd9a933f6b15d3e7d3ecdf6a0270875, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=68234f30b2ddc0eb1a7c9fe208e49fb4456eab84, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2631252fbfb090ab602f4bb9964c6f5862ae7a36, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=45e82ef30fbc8ff501b6f68f8023e5ef7c5aa7ec, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=76e9454741aafc47e9688f4ebf94322dc515f738, for GNU/Linux 3.10.0, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2a0bd673fbd50821838ccd25e7c8254f1c0fcbbf, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6b8cf97839dd8771d2523432e3ee0c4fd997c7d5, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=32c78e8249931cb5772953a39590f0592272231f, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3326b2ad0f3fa49d4246f6bfb29d399c3d4bd527, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=a48260f197b5e9e2ad5682f59fd2d02a7a033579, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=03ae535afff0893ca889ac9a75979f01dc9a8365, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=77a47e6c41a1d3f8633346b70dfd1899670be1b8, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=a85ca22380c468486494095b1feba8fdfe1834a2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2b45d6321f7cb7f7a19e2223997f1727b6204fe5, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7068612c03127e247cbf4c6e66f2802bfd91d2bf, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=272499fd2202030a54ba9dcb8893d8b6bd9f276d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=00e670acfb2e39115ea5c1eaf83675e248405a65, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=66f047d90d96d11f0bcab88b2a64610bcd6d0ccd, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=86f4c5997ebbe4bbcccd5971d88b7395892fbae9, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3f09f265b5e114c4fb1b1ce9ec7380557148096f, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6d809849339b72c1aecf7aaf9973208f30887300, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=87fe3fd4c6f1f8ca74cf49803c4f9d98ec80dad8, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8e0c6b0c85663feb891009774bf5212f29a3fdcb, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=4b01e229f6ec0fdc9f99f698eb37cdc2e51dad59, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6d44227609b4e042aaf534b3c9f64b081620c76e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=bc244dded482b58061553bd91f76d0e2b2201e6e, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=635763454bdb6ce499088caf50a26db788005011, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=32f4545699416f2b87a7f80083cac78683af940a, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=02273f1c4d667bf7fe1c08a58a44ef8593278159, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=10abdc797a56e473dd7e019bec7cead83ab4b5e9, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3f8048f07c3e57bf9f310cf92293380947e88918, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=58ff54509d6c24feca822453a7e4beb04dee4492, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9d66743cc764b5f6ed924b98be3a23d2cfc3dc0c, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=b24566b18cc205856ab90043728db340e3331f1b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=496b6800b7e9a53f8c321d84920dac63e346febd, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d4f6a5ce2e7ee0d46da21dd7efe1a65a2b4c5017, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=faf6b076239d209d73383cf22b5eb77aae52f4e9, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8e64218ea9b6258d322e43e791d7c399707f01e1, for GNU/Linux 3.10.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) !%*,2EIKOQVXZ\^`bdtz   .0246FJKUXZ\dikmsuwz|         R7R5RR4R6R RRFRRERRRRRRRRRRRRRRRRBRCRAR?R>RR=RRFRRERR.R)RR(RRRR?R>RDRR=RR RIR@R?R>RDRR+R,R-R/R*R.R)R(R R=RHRR:RR9RRRRFRRERRRR RRRR RRRRRRRRRRRRRRRIRRRBR?R>RDRR,R.R)R R(R=RHRR?R>RR=R;RR?R>RR=RR,R)R.R?R>RDRR(R=RR?R>RDRR=RR)RAR?R>RDRR=R(RR RRRR RRRRRFRRERRR/R1R0R*R,R+R.R)R(RR)R.RR(RRRRRRR=RRRRRRRRKRMRRLRJRRRRRRRRRRRFRRERR7RMR5RR4R6RLRRRRFRRERRR/R0R*R-R,R1R+R.R)R(RRRRRRRPRORNRROR?R>RRNR=RRRR>RR=RRRRRRRRRRRRRRRR RR RRRRRR)R.R3RGRFR@R>R R#RRR=RR(R2RERRRRRRRRRR>RFRR%R R"RR#R!R$RRR=RER8RRRR RRR RRR*R+R.R)R(R RRRQRRRRRR+R/R.R,R)RR(RR'RR&R RRRRRR?R>RDRR=RRRRRRRQRRRRRRRORRNR RR RRRRRRR R=RRRRRRRRRR?R>RDRR=RRRR7RMR5RR4R6RLRRRR>RFR%R R!R"RR#RRRR=RER8RRRRRRR*R+R,R.R)R R(R=RRRRRRRRRRRR?R>RDRR R=RR>RR=RR]&g*z &adjtimextimeutil-linux-langwhich2.33.1filesystem(minix)utf-81361ca76f770d4773b5d15fd5d8ba1aa5203f11adfe4de05ed9f3548b5e0bbd3?7zXZ !t/54]"k%dN0؉ӪN/e o}L*DC' nsamkfW\:izZŁ78L7] Nx^聕/3<0g(wabm$K.gϣUIgEO n)l5B FPc~)5[(kk(:4A ~A_jg'U݉,2w{@.Subf6$5P '[!O8sÞvJYm&΃XB Ⱥ+~11<&|wMf7]y ۏc͈w~EҊ/= IXI#ё 2a㡗4dOꡎIC.sW=MM}\~abanynxp"jb"))Q]}*/";~xu.-R{* 6/ݲ؜:xM҅m{ q$ޔ{Oꨓm^dȻhEYz$t:Mլe1)v ~_p{ܯ"@CviĽ彪הp}s,D~ΨiuY|fLrD-QʆҘs%!NoY1S< K吕8 $RqEKjۛ?O &JǮթ@;wdgo90d7TBtJH4^%X {ū-'I divZ[C%ViI9qK=Ω&r JHц6yׁ5XgO u\h2B:圪]4VG*{[cy--?țk9.fwU,!}&bYMs[`Cz^ճc}۝_okFfQ]9a6|W75F&M_ޕ nƤix!,Km;D1O7˓* ,ZW|1Iz ֝5J ٓ=2;6O0 Aȹ/_}6n*lEJ)_;#\qoa?r^* C?΅u ^sOlck Hʫ4`{\5(^a~II6PǞB5d\PSD2u@c<%*⺀[x0kp%<ȦmmJG2; Z;oU7#謙d;YzKz\R[ƇuBCRfI9Ph~*Xط^rNVh ^tJzfН]w" 3ԫUl/=4\_6H)^6fX2HfxeNҐͯN'{X̍6XŽj2:ݭd{=̎W˴~ usͤ~ ӓ h2 -n"ef~$db֖{^ }uX5ht M; Q=q^sǏA3-@}䆁>bGkMnXq=gOoSJ$KBo;s=x*Voe>p-[d$;Y7-iŻp|RO/MB6RlVC)̌/uSv  2J؎'l E&y,"4/^us-ul̥IF[z~fqMR~%h78 YWxpW R,{'uLKwɌvչ}}ޏ .ǕZmgCy>jϱ\N& ӌ8k{[2(Ł?`e՗S7`wAoF?R9Oy9|XMVJ7tK֛TוPibؠ ̉͟4:T`% Oh0Qk% ǢHcMkf SJ>M*EU`O{EEwE= \8 7!rCvٛ\eP/ٚ!5vVٍޥ"8d,ڱFk/4tx^LG/*|S/x|<[_#LtG{uq ^YS_?B J ZPVc$14#?ӣE,Z ,RRŷ,%BƵ\-$ac8GLŠQZ#`㐮i2j n[2{7TN/aðHO[]4qpSO;$>PʶC5_GVn i޾{rJ'<qK&AO[[ףp8֧.)ה !:5-R Kٵrʫs=9Z \Wggcv;,PZ]*(?V R۶$̣߽^xr:9Dkv{8Vi*sm]C] ]s WY_qz*x'h;Gl):g*ahwo s%Y`EI^jtG5 f[T~'o v~!.wΚQ?ާD SE֗_&Ԡ3 :˜ui[ϊ4C+Z*[w2h6;V޷=)Ej!Scnu$Lw}F*|G*DpF~,4=;G4ةÏ-'>FL\nK+Ȩ"ڏYcWH͆醝ΤMhGv\,Dʼn K0ݷOY:CQiҺ@#[CSQg9|=Ԥlt=ۇ[C]X:U"$(y#b@M)ln."=ZrK^\g܁9%?A9]iWGL7%z#˜x*idᛥ?qj6B}@ 6b#{0IFp ")B n&z{|:giΨ|xZW!+RJ]E϶W[˛7,9w;PO/6;zFx@@%Vu'8 /S~,)M*C@"bpm H :bT._=MӇs 7ʷei۹~}"NStA۪FyyPzg/LfK n,r8c4]BgWKwuRąDfk>(Oràdd NBCӦJŃުtSwJ n_tS)0 Yl;)A#kN^nٴ?ʜqriS{"b-ĩv<(a}/i {*'D4n>4ڌqi aԇdRw<(!4E '+6?P5ذa2e}d2?V9)]7Y=a?-_c㽦 q€ Lξ`5L8y1[wU\ 7l%4^f=CbFʥzbҸ1vVO52#2bMqStoۈ,*wyR(gs*&[$Zf, IXq䓱kqHhj ;[Sh|"G"(/~:rE Z"([ٺhY\R2'2X7n@Jٗ:)=FԅYk>d2/`Fj瘱narIuRtŎ w.{qDQP!p ds56&~^C1c#B ҁj5cv7TzDdXϒ 15USMfM(ƄmHpPmDqSs#j0 K'S,m}+2#] }bs9ຐ ,|+,9TPM++O;-O)YٿC o%4pRm-q>_OQA:S Bfj 7T "W*>AB 2X>k>B g$hf} +W NVSB}O9/W;wCb..$}d*|ܰ)K]v)V b6,O5/jK)>%cFr%L54l{TW}Cݭ KZt3mŜ >\2_JjkN-7@ː̡ih}5 |k it>HD3rƊRAN4flXFTyz(vkvTdDdZ ڮԶ√g! J;'_X=׀#Ԍ.<-"',=߇J,rf U=p\3[ Ӛ66ߨeY6CXˉ5/OfWaEْ num* |1R7- ZTK3 ~ik\|ɏa"7rx6S)QrU|x w{ 䜆-dfUNJM|OQT\4Ӹu=h)se*ʔ^{҄=0 C.e!9lHk\SIV-Jg }AaU*BMX=z,5GjslVgʱ:_vLq=Gufd ʁ@9YT/|}ӆY79䵦X4_biNp mfrUx!Kmu3Mt>H5|ݙ6Yb +uAbtx?/ށ)1U#%[ &˩tG7I0M!L7"3 -L#I;@$c'`/ONJ$'p]ol-Q n2RAq咘Yv_mi67Vn* 6g8ҿ 18(G؈'2n]/C;% OĀHeMCt-ڝ^C)ʦk㍱o_賐F@⻲Q $"pI!/2BP@#.X{` wFutBfEպ H{Y#:`~aCȝY۽ 81?sIE qg:"luceMT1  tE=B,ɴ8 "Aӫ=Uzɽm0ruK盫ŗ=ęlwK[^Gc@'o %jU1-q .wX ѡ)=lکU䡾%*pQSgRF;*Yx?7-\een{cǔ lw-\^#3N=z*9Xa5ZA~CgCԚD-uʂ[,mv]o;~`yosAWKYrWw4[ɧO14\!QD~EjX|6$;2Sٙ!oNhaÎК>iŧ. !-kU -2Iۿkű儇I:X M|^xA%Q_5'O+jjaÎ4;,[$)|,?vG{Yҙp%k>%*iN;0#6ZG'e?:Cַ@'@Rl@(C_2Yr7޴ɈKKRit]VhɲƄ(:rW#e)+@KUTt0`>: dЂfQInˊa˩O~qvz?YQk9iN*U.E gEz~pCnŒOGU:HD\3B73|j/O)ҁ_(fW5[(.2@%Ub a5-IJׄGOP?a'e Dk|aw9˷fhV"zHrV0,쮕.$TF`Xq,KQ|^ˉaV>_oTR-B ؀#W'p6mhu)\u7WqOPUpZ x9Ys+k $]$|YΝN`<'HÉ1{˄Gd,7?e҇nۇ¥;WiZ!/ToP!knmv&^ )k:ᚲGr]{ѶjSc,>L zpeիDQ˖67OO. c1wEuLJ3~gQ,I8Mu(!ajw+a (n Y%g 7jAs౸YlɿS7Y'3wTFW@^XOq{[<4䆯st~QXc#)nRd)poxJ3eu]i]9ZBխVYQ3'p_H4O/F[S^F5za(΢ѵra8 +ѻh%I0 #˴ˎ)|ke6Q!UJt'NJBWFQ2X29_e퓮7tBRAvYHbQ.CNSłcZ^e|nn85K` Lnڀp0Riri@a@o0⍓C{߉!njcL,OvphM _Nyz'P67[F5(}yrI8Wk<%bX"4  NCΚPT!y1B"k#9Q٦WKR?^_g…O)ԫGqY@C{mѢ0{aÄ<~&:fވȯ 4O5!T:.-WBjMł4.>pXc٨qSXq@ - < n=#9;7{v[lleXҺ0`@9#d~_%qN)ۭ!5Gx2r(K,DG6΂/ ()GeWD ( YfKue],ݜA:4i|򰣠҄=(c/k :qӌ IW O}ǷJ,b@XvV‡_|JoψQwb Ezjj&f\uX6M4%> ȮX$ ̄T qf rh`$G=A"{pﴲoVAƢ-#Ω2Y )Q9AtPHtȚA<`R+클E#~zW2fcNEEz;B*4dkJ492)FM^3+:^=Z^c}^a,T^c rwo)E 0f]4 Gõf->PpT8Uz p7:.s' O~RąJYb0˃ܳ(F۽rdIer ֈ9\Qf׹QSm V|]+>ujx9vyWQ'<>MAtk0| xo x$_˛eكIG5Vzl(6l~dT1$k1MM-/gynw p~4 6 蹶[AQTКś FRƴ`f8J^t:2ʙ?M`nVz2+vO>Iw\L@w_ߦ2 ,H6 c$v(9!Jq`pwչ[mvPŠb>X`aP|ԅHd CLgl8bcnY$w#5~_z:)xkQρ2,~ TTBVҰEko EM,eKTt=ږv<4l ypouN\3zSg?7IIFp3^,ӛSoPHS XpO2e61))#mQJ%Ef1:!,$rnYYRK\;~g]* 9^KDҩs[:\•g,['h/Ie,D2|_U68|\dm.;&Qԩ7?e5 $ BEA-eQA8& ef j|܆:Pg>  )l&^{/EH@MJ$mlc=g9ދ+9ҼudE}9T>'ngZYM@A`q2Anhv%Dc@0`$dSEPw/{XRx; 㯙S2P [AbHYb X(ܔ-b7d{;T';U&UCEKs|PZ(0VeJp#3Vﰶ՝,9 nE,|nq| E9n権ua^`ie!kpǨ9wkKgŵU=(r"DDPZ>w$`^8e3ʠBI6}v7IhJHm Gm/h#媚s$(dpg3_uy?tP.V g5Ҳo(~bnz̋ap=(V߀?' -,p_" /R,^ *|2nmwAН7u}V`F > +m +fAB5ɣNvl[85 e_~!w`M 7r<&o0+˷^, : B9BBy/@IPK.`º[8 9}aJN+^\@޾P8L c0YRzYR/}IFu.aZP+ˉU Oy5q'hQէLd~oF9jFR @4F)ԩꈥap|ICɤK3mٶ38-$KoFj=>Yit4|P pT|vFRJyCQphx}ɤ: 9YNG+ E[HL(]J((6bŽ<[.-Xj5r?:Eh|UE#ĩ<$(\Bp^1릟cs)}N=Es7v/eE*/ A 3<]s+/RAkO,h[p)ZM.bx`@.h",{a";l H&f$zT/&wxPmѝHH:2e}74=$4'[PچJaF,^żY*Js g(0n7uP5DAѝ4n$ FRG&dS l:mWdJBr7B47+ɩRbKWR=@vm}Odc3lhq0:QʷDEuJ@DN8ONΡ=^|gU$ɈXBsxdJšI$ן*ROwj֣H@KǑB_oS("G)j a|y~t>ݥ*Am2pyx?s6ba!ES k u+F%jWrI43a%fo¬ ^YΌ)5X@6&X8}3{(5|~v\ >ψgn-e"DҀTRuaGVT-*2 땆z;y\iqokM[})G2~8lMgOxF_S ,V\J\!tʀJP2eSQޗi]ts)=;h?sg,_|&Kr$2~rɸBh\ -z; Ĥ 9"Bsnkqś_~k"nD\b#[*_BypS.l4Y[2v?D 8uܨ8Tb~gQYFɓ9r/$ٹOc H:աr귆dD?zgfM|X&):8 _ݕ;Y1#NtDQ._ŪД2 G$z^!#lG !珍0ˉ1Z=*OֈdmR5{-#zݝqRfPo xo~dU_t{E<ˡtu&6f\|v.$bHq}hA@PfwK;}>Tm9]Qxjթq\.5Gޙ:9^jO*XVt/Jw|N0o җk5 ja:,4aEP (#PXK٣2*UrBZefHS#)ԋ8MOצNo_"Tؼ#maآU8"q  (qe߷r\QiʥeVgUQaE3xh($d[ik6kd,*sQ/z5oṻ~|7Їs_| Pi~͔*jfU]^| 7r2y8V;+G1S%e{XЕm @daZW?y+=$3J:Z/CuncaiI0_;|yzytN{ݛX'|g{685TyFo5 v2gʐoED xףӿD,mnŻmU~&=~gើgK{ӗ&Bs{U>g׼UZ t" A̐eS)R0A4aL!0V0q.@g!-'9Ùޒeϴ6aۛM!&TҍF ]bH䲡&yc,9}fc#n÷"MW> 7`td$+\88[L-'$i^udZޙNU%6qP9)?zshݟe+t厸ƲcsHdme_.+eʸ>҇sh'T;rO:OE<)z`Y +gџ&L$-2/-t=iX,׾@d펃Y~ۥoԍe-hݝg´|sy+Җ9Q@"^Ơs/G*A,c-ϫoܸX2N~y KMʄ=$n "妛^ ]4VFlm~2܋ u'j_rHT ʳQg#(ȝU a leLRਸ :tW2HUl]u1`P]߲mŕ,:v\dzkyT8ޛr'Q<9ĒɨisM"h8x?6"ggqADY E7nVNހψNpK_Rfj GF&)PXpe?vJ(֋_r3x=2:dE_J* rt|<_dQX[w/gm12o8.걩5W ג#t +fQ-~SLkuRXJ[z "{ 7^S!=%JE (?* Fb2l2n&;rϢԨ? vu9XVsnKUKS-Q]z╲)%_ T&v1`f>_Wj?&# P-ױm0&˓#6="Ȫ ݭ$*j@-^IؔbߞPb.=v-ĸG{~l;E9$Swl?fN唫BGhπ@x9ynWfvɘq"¨{<0\WmAq56Zv0jӵe=D$)95?jq(Ѵ݋,T%x#"f7oZ-,ތXghqWJGb hKܜ聉fO̮)M.v8ypbОj8bveS%dH]|/\֠'t2Pv8 :i1yz 9 axt-i_ɍ} S?F5Ǎ)?h `cf`\~4F2 (r6\~u@<DqULJ]+*Fb -{~]1~{PL侎@b6GeXpw<#u$Qy r{$bqugtܡJʟrjA5W'Q@!PyWx؋k491N=0-NO`? d*5UKB/'6Ttjd^"x\OU5y'|mzt|9y_FrTh'Ա:]{n?Zҗ $(۞R e cz3B_zj)`P;}eMUzQj?.bDžvܡ@{yLuHJWt qLܣI+Y~r*x^vKx:#?\’gZMGؒiU9%8s!pٮ6 nh99&s}M *w2dym2mb <4)N僅\J&ʣ|jQӭ⍼;r$䘖ry,R{u8 aIVߢ] ¼;&{Ϯӄy Kuipz9AͅUX~#hHBȚ ~)D#>7rX1z:~D>0w!,Kš߄3 D 2h>"{ +"o(+ grvG ȝҞB-!qFC6 !]bqPd&lMaXxPjyuإO-j"AG҃! k\F1RBlV?$s'~ry2g]-8>!AҡT\8b G .J.3rwo4pooٰK/BpJ"n6;?ԓ> ʙCWL4&f Н=尿BL )BxuM ڠ>߄nz&Û3VH7ecJxu"UCCÉL 6r2*0Yv/Q͘zH p,N:(DF?` GTvgWdm1M+(Ō@$!f96ˆKN:Lj _)_-حl~\niYX."CpKbވ ־SN\1B[h"H8@3LB~(1Z@M<ƣ` -/b7_jj(x9\W5~wyQę94^PI3]޺{^Br1 dei )v J%D7b:6t(C!.|5"ЏZΓ|,-A;O@ ģ$zViIS~HDV!.vVAuea5x`A߱i٩X ["ߥ۴!XMd+VTtNQ<g+;pYn80YBcS=|,6=ţ2ykCa& Ĥ$Lud?Go`g@MxLX}I |,=*OrJ$Fli:,h;y3|fhJ > 6TWtSimƭ B8njb _*XzUsE2Th:bⱃ \AL!?TAo&vlO]oq\=7.Eq+@Ut8w*Zхbi~a=Q]"LF+6 7VB'H(/& -Lب%"J]A|D?6 `!L=$ύgtmSGuR5Zagʤ}Z(OR0g`GWRRˑLSS_׏RC 仓CwjE ܇.gim,d &p1&用\ h9?7smPU? ӽke&H =ߺLg& OfB}dP8*14*LWŒQse$R.9NqB5TO<{2f%F \B(Qx+7fRFR_Jo9_Lx5*Lbf/ߺk= _b:Nvl&㰥Aժמ1T@ U==KpL) >ܰbbr8 0ǥr7ex~1ñuԌ0IM &WLBpIXw'_oucq% MjE8k/X0]cV.)Cz2V:l|X!jj ws: 9_m>7ʶ$!BEE5l`(G!{;PXA6rpP"f@Ko ycLcxFW @@*4^vrڡu]5ǟ.½h*=TEW+}E`+5pإ7:K)}PYƝ’vgU-vσVni2;'߬w *heB66{fE(Qpщ\f,;w@-͠3U>yҦ*A#[co7xaNntK_hũkq vXK=?<8I;ݹR(Zgrs3 ^!68qO+0FQ  HBq jvyYeO`D F }+_b Eל>гL/< ~ipxV"JH.R3NKF#6, ]oY٩s5膓|F(+uwGoJѤ  ?lD(2mxfb{tĿЇMU"=*I)>&(/Ij/ƈo%eG#55ZVOI;6h-ySᮞkVG6GU[nOmmG^"X㹒w.Pt^U͗˞hɏfOm!9rڄWG#Q܋SS7?wQBص+(qj$ 5%ّғRLjQtP=tOEbX!EDnrZ3O~ )Kd'|/lJ5eY)_= MYKμd!VWȭ`aw+jY^"ҙ'4 i^Vi3w,( ΆCLg" ./5#L"CH86&kKwfi3s>Yˀ2d-&7o #TH$hb|j8yD;,]g2ELHb%lޔ<9s1wZ($$;@ k fU[u,z6T[k P`+Dn 0~Ae 1+f*^QYQw u:%aw1ѴxAlHwf%@dtSPAa ՄhQ#.HJs4wí'\/nzBsw+m)пxG|#YI~OR|EĬ(8a7Ja`:aQٲ/tUc#oRQaldQׁ9YZZj5=_zLA_pj 3; 4A +]*2{u;J ꓙNjV{4Uxx -TR .8`.yZZu>Y)Ȇb>>H$5k"UB9I)&K5M|cѯ"`Jʰ5Q:W.þTOϪ?!)48 >pm9> }D[r]&?K}18KL3pb|kfC,0ɠ#,+-khhD킐hT1\M1sLB D% x줝 k.޺W$D{U@nβkf*ƻWO :`dك~@DQ~CxjCL񝝗Kc`ͥϠ"46*n okg ׈fef 4 ojCrVh`-߳9Jwzb*~򋪗ys*ľM iVɰɄ3ѝ1N< L\`wHezGc{2`Ǩ6iv׋X L fi,aby (j.AW}ZMTntbOљ_`GL1'>Ƕԟwz#zѓ!eG~ʉkEKM'">F k2yRwQMjcl61$Q%"H)Lȋr萻\hגXDIa.2捨mϏ{K02%.*X ?f a$ =3j'Fv JU8>[";`99-BsTy<c䓎,i%a㚴昡GO_cCWsQ9hn lJ6^O)MdU'^ogb3᳓%AS%)G˟v&|`p _g? Ti]*x$  =lI)h/)J%㚜^m&̵emU`cÃWa{JC3gM~+3@ȇ֪n 6 TTHOY4mkvsbkR?tV&ze$jTc-W\Oj-PRfH~'O%\W Pަyj*P7 =~(%Pl@zj&b!#brh!{{Y<Pp_h#S25tlF%#e¨̠ V"!k֌?mT^wsCv1*qGVBDRB~8P[|*O,MokIs" hRm ’EO)U9]yIrVnz(&f–lh246`w)zn _Wΐ c8צB[W3U#t]XA\ *454DyR..*Cj3@ۊO%ޙ6y 9g,xx/4؀1>]*)Y2+ miWqP<*o0hş%JSM}V'*Zu"\=^u!Bmʇ f"EEivN`IrZxλJlt? Kht׈AB;~ЗڀDŽڤnat6WG\+|ͿvKK|N<:-^Q(+7j{=!CGW>' _A֨eH&+x`MM6iȁ U ;xcϴ==4O*!ϣ1i }0m}L+ƈ;ɥ$.acC89Sbqc.0i#ے:`gG|;Ƹ<2\/cM3f |b@MwA !m܍\6L`{^dI0b<:*4@Ivřnn#zA~o7|,~_(UCYZ?nn`?I%FrVE*6d/4ilb<Z*S_Lib;bDvG{me#Z׳j.,#ci)5X ukw(Ȭ{pMQ"lQaOU;kxrON*A٫u~΃c?r6]Jdo"&p"~ WͨO*O *t ;lN"ZX9@ j!ZwFHP%. M,~zY_-~ay=lO9e2!sS`ѩ]K7ORE X^:݂:ns6?h6VV,_0C=Z\99ֵ-jQS8I&aŸjZfX; 7ϱ2D/c|징ǷFp:ѩa8LK,(& ﮦ2U[~&7˪p^OP'8U(Bp&pʡ,fLꉖN\a!fj{}jN`-jK_1#Fe– ٗҊ<;zLPUo3Uq,x6 A[<'Jyj5$)C3.*:n56}$;̲tE'OM'OLRװQ/52<+pG>-n0S1 z#Gu"iXggi2ͦZg]2G˄Ej Plp&>R89921Ƃzx%R9 ahc0C?뙁u=q!I=dZ/HܐT "J 28x#=!x;pH3.9S} LA1)&`x`&3^ &[1sffk%{6 {r^2`sQߥREE9`zYcËqph^F4kbi} ^}Fks>/Q*+(R)CU4v'w]m.S1H,0>!0cM̰k~&WkrȢ o(BءxUGV(*{<p^ϟencV`7PǝTrE)@a/Kj |BLQ+a!CIi6]BFn1~ma ~iQ$7ŅJ LF/S g7})3Dd Àr $#S ϣC.᫨k$wEJO0F]C'I&e*̓)o7=: WqKؚ:Мw@UU`l#ՀVNUAXo?jIrLEA"Z'D:eYF3XUy#@yH$- =#ӡw9F(nMdW#7tU:ho6:oX4 ۈV[ʾS`4Eȿ45b^|E5v)Fd2"ax?xzY{u0VVKz!ZxmZٽЧ ##J\3Fzo涨_` Jf\PđB߈ؐ-4  mezyҴl6Ʋus—뮧T<$N UVan^'ܚVףsb7+|8fuCy ԽR\u\Kd_4Li$45ڄ6uMYq|,QCbGmj,;cax*%5'%(N)֩1WB ?v74Ӥkc= ] VT6ͧB(\c QE!ūR[RΨڀ7Ww Ic/@'؇xk)2fl\rԎ 8^ލWrkQ8 DS6Й[rO4va"n8'TG6 r,6uac Eux_k9}%FĬTēyo{lbT0swF#ڤ[H|-hU2T"rO2<(8vGF7"=kC6 cL|@lQnӂ̆;IsCҋ ]V2+-ENw5W^7hLX7nIr]bSdNK]C#uу;jc<ɏ(K9WJFr=Jb$N8A_TSMU. 3Xg5A:GRv%؟mk{mn?Lgsu`]mw1}4ȝY:^i)9+2-l6LqBq`mTdM?rJ͗SO~,ZS n'CꚜŧWu.ؔaXQYT[mTL_ُfeJ^*2,ꂴ [KChUlW|(5Foj0"m rbhHA(Mg•SI noή"g5k,t}U wroaxz_A5$fLӀs9p«;"n8"\(@ܕiwӋ W2Sծێf2LJ>%#pIۑMqm8eG&+yJm8|'T32;%rYfEG籵 >4&?mzr']i&S m6<)+!-YNre&?+)j!u&Nj}V1R._TTpfREs"ܝ.aWFa"v&ԙPfm5U7ҩɺ(섌q/[n(`z5`6!|)4;79N'f~ r}tJFQ|Fјu-lc9 }^e؎o?[?YD, 6ԻBɩF3l)-u6A\|`-/I RG7 "\Fזp\ng&Bk^\Tnz"w\+8"«$1i,);SeoK2@xϚ0oEf |7u*wb4R=kMizY~Y˜UD*I2,`.Fi-"Ǚir`P/گ/qzz\[bȊ ѲO%pY֢1wyO!TߥiI#S>UO)u$[=%#Y8i'3R2撿n!ķK b}idC&|+rM턚"xmć|0dWjGT[֤mcP0X00s&?}11b9>u ^cFM8}r.y'CKt;fjxQ5xEgI7fX]gL14^BZjh= +w=>XvqY2ܢj7:@KFPŁ"X['ev@ 맵uT{Bܩ !:!i a尚{O]}w1)7;s-Ɯؽ(zK9?c/oJV4Y䠮6bal먑_==dUXnXmFv|b^1?V=ތP.6=@UߧN`h<>VRi9q㞀@v9WeԖ"#Jdu7o;)pI}2mqwfƏH&cxh4ޤkb`IBWCHnj.tFG~غOCS:2Z*Ysј(mf D-xhG﫹y[aR("؋76fN.BB#r)%Chhhtyٷk12_8Lr?Z0(DFzOGS&{u!=Aߺb')K]'øG^qI8k 6.n!(FlIbOݎf_بU0J%ٌVl`STw,Wc-|f|?U8aUDQK0{M{se،& 7n~[2ú7>2z>/:'hBC?{#Y3h"ڛh-饔oii<r]GnR4HWZUzg γQZQ1N!VvNʯ1\xgo HQIҽʀ2PGzrR)Qa+"C. xdk[HI-m6KY:/2DUD);C^-۽tWe\~^ 0>sT}uZ4ڰ5Bעq"Hr +ogIJƱ'MCഭޑW1OLH?q)%9OY` t^kl~_}W0 U@mM^ !lbZA /z 5<ǖ5eIMNB_N!C)˖NA$&*2A_twRD|.6E,ܻ'Y^Z^غ-;n$`:a֞Aka ''Z 'sz%_H I)DD~XRX"TWStyv<,'إ^)58bZu+z() leE#S* %YH4n%=܋8C !OljB$^ *SA k ޔ K =[0_˕I;nF-K ]Ap xς@h'N0. QQ f f a2f:zl1A XV o\(PVGZp ,|tvG^|#xM8ѸdD)fD -Z]nuR<]y^C D=^.+ml=C3SA3 \HEB>؊:8Ty6k?iTsg:@H'w2I?[N)AhNC0vBlm{P"3 @")ژ@NR0[v(2Li<6~_& Sn9P0 ݓIGjڧx-'\/>ዶ ksiU2AK׌9bI_fCac%Զv C@~z 4IVGd' _:6nvEJ-;x$gw>Ux>B퐾5L-AcMτݺIqڎeX'q4HJNio.,u~ĺ<1p6'1 'l? Ym"P0p,|Rn8Ri27M@UWyxo:/JYAs(9ps {4d+Ku '9[Jsxsϒ0kMRl:EnELOI3+!%;&0Eʁf   fEDl>Zy5BS^*Y]֘1(=p`e,16p cBֆ7W5`0ZWiNki*iۙ;x2C @\ˊB-9M-i4*^e ;v/Rݱ/W:qӚmA"pQ2o A(oRqS\|N\W,4 !9~冄dA67%#/K^ 5A1aJNwn7\ u_7UU0l3^: S ~ 䤛OC,يY}M ,>zS#+YwWERKv;B]P^3?S5otLMz:USE.DtTBw\U[7t¼ kNn9)vJ ߲ &@F8LDFjW[ܻ$`;TQbҤ& oK9T3"SE8p˨:B̸' o 14t('Тo`;K}<& gnJ9!l  ,j2n8 -JK( b:r y 48K-ܶsj("K4M|Amb~-73+VJ9:%o`ޝ?,A % ޹:;$z(XE5@'3Fg13h`OfӪ;9yx I?.u\!{Mć}ppJWͤB">Htg{M#&MJy%4>X?5ȘKw],*l^]`nbl}&nХ\?ZE!rJh ';@Cַ'FU1Lҳ |}S//:=ch qR%^ .tdtxG+S'-_C@DzvBbKWp\VP7 I%9+6Y_pjAbsJ\r <Yѓ"0-r_;!\rMO_L–kQ?{1jso/}?ADsׇ/w3so{&ha@8m=іBWs(OFg st{ `O8۩p[eeal&Ma|"U80b!$r)87s`%QVmq^e|ft,4Q 0#gnIԥ(ccMeEl6 r+k _{{MbnFs;/RGcˈ/G4PKvI_xqLRҤ>%WU sv.JlN>s?|p_1kz[du< ۧGdyKw c䥺)%_ ߟ#Oqޤ3SR=r?c0}N u"`!ϸSAgMj[eŃSc&{f@oߴ Al.Ċ=3"C>ߪU T˴Yɾ;f(e%6j껑4 _C{N*^!!Iox/8fa&PB::W}u]'i;F!G_4xN'}FԠ5t]36B<%Rg S|r{&x&}?,$X + ,\o !^ToV=Lpdq;ἔ0s#_)4ÊU,MocCx"sq+]nĦv#[t:]ڪ)Dgo.lM Gca Rpfcxer^iE`u띄P} 9LeH7~ AS̗TS@GsY?etm Z ;PS!#ƚ~\T*>\'ڎ{ާ 922́#S0лaڃDʸAV[ss.1,*Ӽ b%LhYu$I@_ KVjmŎ)Lr'S x`i!cLuO N>[~He/·0@wU*pᒃ^G503NgNW_}Y&5;sgzXЊ.W ]+ʂYxvm:M,ڱu_?;+QSV!:L1&%P\)<wgGp~7/_!y9sup7qsJCʙ`7bǷIMFK$S$v:2Я'u]'17 ouhp9K9k#hn %[Cֹ"Z,.Ht|J+D5Rbb-6͛D$/'n#7n BsDq1Nu,ͫd+<)(5mvx_y1ʑoknjiʯ,z .\yy,#RlbBղ0#WԎf$]ukͤ%Iy0Vtf'E]Sy<0 O Pڙz췣/aYYYKlMN\c^<~vR3VUt0xPzijd'}3H\rn=5E6C<2H1ڡ7)U8h[ :EhCwp!'9GJp5iR<"bq-VTF v6'ۣVc?ͫܩwTtX*PCP2a<-jRE4XpFki}eF^W 1HkFZ '#mëVUSbhľ}D퓭Amy6<01h\2$I.I|CrRwR1>`(Y 4]%4^PKwB-DwCeVa7]PDC\JƔY[$p;A2j;a9A1[էJjez8l\#*AB BU7:Խ&6lk^vi%HOI˲0d|5)$ *>|/ ϣ9?MjaQ516oych!|]8( >@ȣ#`-KCCLs <9!sVQ|.b\Z_\\ #nڿ|8YȠ"i/j|$O3,5K_xlNӇj-:1+FfZ׋m9.-gzd([@8!/rYumb$#TaOy7J!+@d )]h?_[',=tN' :+ WTek9Ȅױ{r>73+kK Ge>$a]2bq |{?lۮȎ i?_:sxߎOAR6̶:Ք\Yv7տ\s=6iҌzoR֘8.5nAOq~o%'tV4XQ[Hđiu "޴I,c1t, #?M|=.hx~#Чʩ`cnSĥIҔj岮 ( 4H=}Cc0@.!?8.ѸLVkI/_+7ps譁R1ӂTuj!+ UFo(gWcQ'T֗E+p"yث7:8V{S 6<# ~'α/C&\-Uı9 a9,d-<ԝbM5lJyBe!WpI/QX<:\8)Ԭu@#;Yh6Nuoͦ^xȽ=O3Rן'=3S×?pdteVƺat,wj0^Fz "(jq`M9n9pPVkMqIv'dT!~ u]F(472`@h䐷}{OM"_Lt$,:!ڱZ5) )у9@̦ß(=*?."`;hwB%a-YUM'rd8O^6ElT:4jN]5qf3J}Mnj%kS % z?:\݌(as8 mT=}zyGpUʿ@D#7F/R ҋd&i\,36 pgm!S{nODE9ڸ884w }ɚr+ٻfa ]4ӆgWU\LFɋ׶U/jd +N>*HM/so%RÞ/?ʽaoD].{Ne8ۂBg8iuGv燨Dֿ<|*nuE~&0| bsT+! Ʈc=!Hv? w!o' !u!բ@ V] GԱ9Ch_Opy{4+t kLnq-:1F0X5Dե!֤g;™B~H@h>EB&'AQ򢜌黴4j8\qNLƂ]aһYرs ƫD <)Zk`-: O B\ZM9Xq%%Y-H(YD7}*8.ǢC pXt l ־ҹɸd hO<[jxOwFK<ú(/Dwv62U2υ윪T(uǒ¹E.˄p[ C*0#ߋi`|p[oʨgiw+%uSoLmw ?6[wXs R MF>$_z'.4ỹ|ԝ jk3Xʿu>rXr<7*bFSGMdSoah԰'ʙ`NeT6NQ z`N`\t![r.Bu@؃K#|b`60ESah89НԆ]Z8°#էW58jkJk ̌ZtvA@!QLd^6*4%#"AW݄+ِTb{#>˝Ӛ_8<*՟^\xW;fr?Vo-0wy5T kf/Y֪X>I")Ar^U/C tϷZӓӶOUG@U3vEYwt0ҼbE{+18΃-1}=~p *?h^v5H@迭VR X9X=KL-*!RʰUa8B re墡$q̨mb!שluY4E ,D F)ҖqcZ:Vqt GN)3=h=ZfP=ClzFy`>aZ u'=txW G̚4m$`I{+'A!x%^ڋma [#ÞMkX+ܔ2`}5*5Ec_TߌQ$]+8; bч>O7dyS苙-Vp. MN< n 3Vq O0j3Uӝ{Ό>;~3ΰۃt%7glw=NXx ]M|X`ܺ>f#ǂ#*ǞX K7PEBF|/Kds*r>k.c0`89K 'qݟLެorB>tlAd(S͸ Jљ;Bm81yƎO%3LPᎩo[& ykVH%~A)l@aA@vH4?vg:6dN͍$h@XȠl&;GX۝=m D"x#3W21cOۨSG903.j`&$i?|QN:|IG*p98.q8аjbN1 MG1y:?"[sd9Ѥ0yiuvO0* vS Zj+S:D [em>d?(rzd5^J,|Rh&Fee  1mWRLS>}£a8kMpQz/j/&|>}Yiw3ȫd<'iXTq3=X9Y.1Ea*g9KiIm},AÆO-Y~c%Qe1 6biڿđd@% Ɨbuɮno)yH_d-1gM sc2T7 .w]|Xyc 4۝g:O$$9Fws) tjw5 2OF 3GHapJg^}i9'{5Ϫ~_/Q:T\]N,J~U'B%Z_dIZ^Yv"9IنAN}c85-'GLݪ# 4%٦O~%0+HJ~K](Ԥo|?+)?9bڽI.O 7sf Uu_,Fܛm_N%ߘ{|\k *E-)XL[k9xǐ5v<፿OA^Mi|vl'ILʱmUч` y#$J5@O8HPJw黄PvvCv08´ÔQ4RI|o]"0Z fI"0Z1|[)EFeR͸v‚ŎM\Jv*!Sj2o<}GjdLI[ dt{>5&kkLY ђi#DS&:mJ4ϲ`^EHm4A+)Va³jm΂{3]K.IN2%J{ rSc%A#MQ(gv:-4(jydckCt2O+ěrVȿoj|o)Ĩ~~<ְlHz|UV<@Q` j|בYeZ;=#|1+((!xPF 7(Gg|{v3SHm2Cf\*~yX#;t3`a!X?Ԭ/ L箽Mg) B!שj̙фDfo>""1UGFt5CF`ozǦ4_*mT $t:]jӏ,醑:(T>񏟓Yr~/':Aw"C;"NW΍2?E+wu ŗ˿wY_Mz,jB~BVS8)ʈR˲]*`Oۑd-N8[ (ү:T#y&iӫQ /)} ؎Nz0 `P ?y ǪI{l~JyNE$)>@7HUnOʻ68u70@ܸbθѤWW$«o7aj>:]+idޭz7n#=~zL1]O2xs—)7ͥj${r}UTpso~ %폃lk*eU)}85F:q&vEƻURBzB$Wb]\p Yci (m-|Xr|{GN)ޣo3,x~)0LLZ2Oqŧ;kwߍP81N.*H7i Qu,kuݢrz}[SN1.n`:9X Iٍd+16Q/Wc*b@.ɜxQ i3[4G:F99YĖ!U:V=Pfk3lN`{$`J5,a2p;+O(ӱTɷǼh;/LIoMIʞtgr*+΅\UY.eHu|ZS_NБݹ.3!祘6̑u`ohؽGj붝W7}ݩf`:pyğ/}.<(YWrK7&x38ŢJ5mLMJ JrGf#[*x{5),#b8$tf'\)Ka6!Ƞ;-8Ws\*}F&6QjkfJXe7'I,a~%D'r b m\Ӷp\ aGR@4x|VY}S8# vacA"N.rUЦf)oUs//͋o?H`̥oAf5z>Lh:pFNҚy_)²'CІa  r공^lUiA)8q9S_=!\ צM __6?o ;RgJǬeSߙI(72G*͞9͞:fp0֥Br}<.PBepFG!F&x$~w,e't-ki u@w#Xp~ݪ>On |'ސHG7_6Fx5.뎿Fм 0`(qVڌ^ً& 9Ɍ_)0OǚKς'ZS̬cQ7r]/T;z_a)^"=ؾQ(={2%H+;7R? v0}ƃ&oBQOXy &Bi% T\ӿ G4ՉLvXv&~:f s脅 2Pijmu0icRqgiS r\3B$Ewi^M ;|-H s;3P 7X@KoߨrF/Rb4fYXc Ql鱠29b2,,s ˈeiɃ>u,WZS׎qOHb_0 >lSn1?AtM2(F䩣eIe&W>(Zblkt~TJEB.2q\UE!,/S4fEaū51쎤dv@EOq^=,Ar']E gvDfn7G"yeƆˣ$>kᙦaUN o5;M%hӠp]DdfT0#sEM %v'ƘU~{1Q>BJ{Xl0 Se;Q}f'MABMl*CPvD|8{DYT!Bw(=r91{p^8y~Y-gdftޏsv<@Rx [I2,Q[ד߼{r p: %+ 5nj@m`=/^+Ae1RRdQ/g탦ߴf@@LSe;H$U}7sd;]Toq$8cid)Z:qb`?N.Z-v33!XŁao -O0^e4q_G hȑv09(& Xʱ:ffrxH(C$x#Gck'̨ǀ6ז PyEГ̠kUjT],K0%0t?(2LHj/K"xb#_&53<[>S 'A<*=y/JSwŢosBFɉx_x(}xN'S6 W7'3Ob̘y*:OMŪUK:}>[ҭ"~$K6#WS{5B0rPX[rHf#M36 kF?l7*f쪅WU)2oWq`kM3wN] ̔o{$Tk/~M5灩~{4y3Tm `Ժ眇kJ66̏`g"6pj+²8K|# ;ItN6#(I.7E|e ;y}lDF/\#[_# gpݵ%ľw8KaQuӕ$SVdJzMd2^!cڏ,[g$( Ί92Gt&XC m tRz۠ cJZ$ų`>E}Dl9M8&SR:}n\oE;r@l\Eim>oLǣxz؃h~h>,\SN.J?ә@RlR*sHfDU*E֎:d+m5ldr4jzyTّ % 1KjȬwMlR׉K)+7ղ7: 2˿S ٚ.*ZWm=nTZ~/a^g,{W4stf'=2lՓ7( OG~7P oİ5*D]wkͭvx R4 kl>(P@fQ"Y A%ko|Zn;7UIX]z0/[9 &fd#FuaJx-~[gqTXZly`eJhC{I:M4DTXC*X7*c2CO}C&;}hE6Bdfd5_ /biA2r%'.p1XNl^-<5Uԥ3GE48k+7%ެyӊGCQs3< %F7}4ɹ!˿\ԾO$e(Ax^x?Ѵ11K:;6pp!h o RG"$JX|Cutt >F*\g Bz}ſyzߪvzAs{i`@SnLmV6CȫҘ\BX9\W}<׹cw,`$w OQ")FVw`-C;ї0[k\i6&AI,|̝"=X8qJ5.0K ɉ"ґ]n5 ;_tAWf+,ʕ^`jwTO /2q%WDl PyHhorJ `N w@e z$>^'NGv4J{g/XhD[~1A?njQvr'x!z~a/QQm*:W{ |&as 瘑Ga'&YuPuÓ=RqG(c'`qKK}X-X|swD94=}!@FLbsϛVm#YB!a&l곾v'b(e3 V0i/D@]wcg-WAXSiGSI@bJj;²&c}s>#nfP۲UQ y 3|K:8Og Yhf^MTvĠ8 $(Wqt9x| Dxh*ާBS'msn!7ʹ;l{{Əo+Np¢y>lƼ|k԰:'A;mM0Swʱs\40ɣ() y`~<k lYkIKYɵR/>Gى1pB L19Ȼ4l dBA_| /i{\$Zgq2sQɊsb1A9cc~Y؇M6dzUH5ږ\0GtOe~Lk/pC!e':F_-^svf{ܢ|ǶJF*nUw>Tv 1 lE z׏Y{ꔽk!f~ZUy\9$#p)ɅoHN"`JM@W6)v^v騹jT8l:2d:fco u~7v,'F{ )@cA tdx\s P [Գ1JBHР5kΡIRhը8ޤ%EpO( %rT(S @;hv$xcFd7iT-UB9=^$q6(0QIwvF)-G/=9J68?`Ss_S|KgݍylYg>. ʍuwC䧞/-Ҋە7QIk&eq=w~X/TMm&l.>a0`f^Տ?ٯgqt?59[X7A>v p/0]뢲gRÔ{>VLtFG܄nhs廥 .A}՜' K| JEx+qNh/ v/۩ m)>#>ZKw.%F 4x5IRL!NGe4z=r;xWMSn*R(_f\Hm7y̫Els@/xV +3iuQ/ۀ(bXÐJ5O+:7g~&{ <5Җ}g)amaQ:YVd^ \F!yV?' f;|W-G,LaRs$X"Kkx >vFwJT&DqeauniG57AOm7' ̎/:&g!:Bi ĒwlEȕqs<X{sA_?( :R43!3DE2S@Dz%5B$۹r>@2> T 01`/"Q$LTa^4_OĖ7.4 T񊎅T7yɞvgPI nD:c\^TD[}i ^T8a7@KrqW/ETg+3U7!WR $tӓ(܇o/l@D럖 szbFy2[y`fѹ*?mYAoPGI؜u}]ZՇX p%S/zHkIl|*c% vΒ!ôMLLAsûb뗯6AN1F& aZ~x̦v"嶧޻0PJ>HXnTF|;lsaT!n$_  {ENmvDwsV_>ʾ9ǣ's>k]9ƨWȹ\RN|k%zw^t֔'ODVrf `#\ dxy6g^v#N9>WIOm4+<@پT_Y7G96Q('m)}vH';"O=ZUvc! ն`lTl<]@wc-V6]WH\^d~ W "`R_BNqFhpcnBRM#"BUD=9MgpyqtdD`q|$ǣ]!1Avr&c̲80(iQK0]5f9Ҩlis [%Z_=lf>sYN[ }5ꥦ5H9$,g'1[1ďKD.Ov$(WybPN24ÂĈ!l$Z}׸qa;>. }J gRFg+~L;9?JC1Sf]lQ`A[#(E (yu7-5)5 64CkkN섙Gr"քw;s9=[W5=Ҫ|GiyUchso(QD6r(C5j!g&*#:\WXg&D[R œz ;ҖacT2}#{Q]Va<0sD4/ggi3-XO&rjv<6A92}i7gSMp_@Zj_ RxR%Yްiq P1Pkɪ<zRp D^*yu'ދp JA?)JKc0:[_y6a`2 Twt"$']`(">/$_E_"GlLrs/f8-0nfL,Hw~kyEC59>MOVJf,R`}_ A99\I7O&a-+.9^8P!C88qV Qa}Wb٥ϭڙ)[KUtRFnl_L;ɇ~OLN[ ~dI Y/]w[ҳk[ItV7KhL||zAvg < cy1ٱ+^({:drvyۗgƲҚ:{\aQO$kILˆh[R>>7EPgdy;%:pnX}il_ߑ"GJMk3^PξI,!vk!IK!Yr܋C^=ح|5_;@{ Xz-,œ$"W3Cu 3b_&+` D.[ʥEu(ߴyA!YAHLl)X”q! أƊ͑a XhM`>SG ۿJCW.bW;Y) v=6#`O "_mE+8bUcάT$+0BEQ*QH⾮zF`0ٳ*ςdf~H&oA*0iޣK{23e/fc$%Nj*I/* Ϯaps~KcQ.= ?Z@0Iyp"m &;*ZbL;)L!P7ͅ"oHX4cJRhN>(h|qirt}z%v%$gUDus)\J6:~.E);I}O)p.E+%C$yӒExn5軙+(C܇s0Cfy=`܁ۏkʼnb2vBO ꒾M(p%M"Bw'_d=nO3ۭ 22< > N=Z-xd+؟fgpcSB.n.8v@Vj)t1~O IHɼ>pÇWQ9{1}z'_}IlXKa PӓּX@:p!pAҬ=&o1=%5CK\5R*[mYѶJȟ9(U~ !l|v::ɱ2g&{zXbLtiUք Odh3#A=Z'_bET{Tl3%f Aʊ#p'6זXU[:7d@2+0jL *z5wJV#WJWR"JP7k7mJ Nbo÷a`'}+Qe_c 8gZ+čUO! )"pzi» 3=kgq$"v灯'\}}im) bPIj"6s~?QVZieOP{3b`gEq?~, bÄdZDU^G 6A=F;)NфM\Y]ppkψ 9BND$7\)>iL0.Zlzr:1^\j E96~5(7|\̑ɸ۞{ۀ<x{?S߈84a§ C.hjxc5W`%o` u|5wAw0 FMsіajzv*i vPsl8զCƍMTzds:>e8G;X-"Q@፜/ul m(ig Ǒ0a ؁d۵Ф"J &"t *%ɴ >CIR.B+a {0-zL9&v5=< Y0 *'gSDE0$4@ ڳ랳K}qlja^zH5[R^Q0VAB)b`$KGKAY%O`h{y .\S^A?ٜijƊvQyś&*/7cِU/瘕lz$>l3|pd~f,~x*x$>~e\E/2vq @-(fm豺pI_{ק@;Ċ+}mz&v@-ҵQOlY(QM~؄`E?Z} 륰O~LV3o;WrK_EW%jSun_+}Dyp]oJ)W6IO-p)m ~0;# }!?րk.$7eqi( 43 yҨT+;S u+~ "̎^̺!HRNi{je#"Vlpzo?a/C N- мG=hZx*vd5$5g?C ~TtNU>B @$xF3/&Osf$L|G)Zm s98@&񦑻19&h ]b AB9D3h)`q >IąI^c0%k`ZF$NoAUYB <َX!]fUj "!PqőI5ԖSd+ dXGpuw&ۥNETIVm&$Ԫ۴wl1RP$,yDWry!Hםj6MS-0w՘cf)6}$k岔A;⒚ .z4]uD>h"bH<'H3{G\HQZHx.j0IZZOTf g_YGH\ l[mFX:(ے1ry8(b,6g4?#\A^1DI@-~ \UvsYylH?ި@ս9Hֵ,v] =5L CMuR8xK9Q5iE!Nb& ҵjWB Ibqkͩ4y(cvǭڊzJ8WgHkzTzF_é \]R(gsaΕzS7nb)z&Us} /7#g+ 1;D% YZ