udev-249.16-150400.8.35.5<>, 4e,p9|>:ڝ=r)dPjp4u}>"(p%[B ^hW'R)tʴ:AHB#e0sq$,IRtz`zLk`yx[Od%op?4w툐Zn!+=B_&Eihd 2DCr"?8mz=(.Hx&Г#!VĹz_X' [O՚9 E%10'_2Gm /XP=~j,3A)`oʅ[x:ʸHx>K? d  N %1pv}{ l & d   C? EGJMMPhP6Qp6V 6VVV(V8V`9`l`:`=>?@FGHIXY\]x^~bc̜de#f&l(u<vϸwx`yzCudev249.16150400.8.35.5A rule-based device node and kernel event managerUdev creates and removes device nodes in /dev for devices discovered or removed from the system. It receives events via kernel netlink messages and dispatches them according to rules in /usr/lib/udev/rules.d/. Matching rules may name a device node, create additional symlinks to the node, call tools to initialize a device, or load needed kernel modules.e,h04-ch1dSUSE Linux Enterprise 15SUSE LLC GPL-2.0-onlyhttps://www.suse.com/Unspecifiedhttp://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.htmllinuxx86_64# Units listed below can be enabled at installation according to their preset # setting. : if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in systemd-pstore.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi # New installations uses the last compat symlink generation number # (currently at 2), which basically disables all compat symlinks. On # old systems, the file doesn't exist. This is equivalent to # generation #1, which enables the creation of all compat symlinks. if [ $1 -eq 1 ]; then echo "COMPAT_SYMLINK_GENERATION=2" >/usr/lib/udev/compat-symlink-generation fi mkdir -p /run/regenerate-initrd/ touch /run/regenerate-initrd/all [ -x /usr/bin/udevadm ] && /usr/bin/udevadm hwdb --update || : [ -z "${TRANSACTIONAL_UPDATE}" -a -x /usr/bin/systemd-tmpfiles ] && /usr/bin/systemd-tmpfiles --create systemd-pstore.conf || : : if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in systemd-pstore.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi /usr/lib/systemd/rpm/fixlet-udev-post.sh $1 || :: 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 systemd-udevd.service systemd-udevd-{control,kernel}.socket || : ( 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 systemd-udevd.service systemd-udevd-{control,kernel}.socket ) || : 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 systemd-pstore.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 systemd-pstore.service ) || : fi mkdir -p /run/regenerate-initrd/ touch /run/regenerate-initrd/all # The order of the units being restarted is important here because there's currently no # way to queue multiple jobs into a single transaction atomically. Therefore systemctl # will create 3 restart jobs that can be handled by PID1 separately and if the jobs for # the sockets are being handled first then starting them again will fail as the service # is still active hence the sockets held by udevd. However if the restart job for udevd # is handled first, there should be enough time to queue the socket jobs before the stop # job for udevd is processed. Hence PID1 will automatically sort the restart jobs # correctly by stopping the service then the sockets and then by starting the sockets and # the unit. # # Note that when systemd-udevd is restarted, there will always be a short time # frame where no socket will be listening to the events sent by the kernel, no # matter if the socket unit is restarted in first or not. : test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in systemd-udevd.service systemd-udevd-{control,kernel}.socket ; 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 systemd-udevd.service systemd-udevd-{control,kernel}.socket ) || : fi fi : if [ $1 -eq 0 ]; then # Package removal for service in systemd-pstore.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 || : fi1 h&ɰ(95BWFp (7$c9/_p%Y`xI8hX8$ZHPz$4o=\4Ur M Ve__ (H h %9h@i'k(( {V& G'B 45<10!! 3  A큤A$A큤AAAAA큤큤A큤A큤큤A큤큤e,d܋Ve,e,e,d܋Ve,e,d܋Ve,e,e,e,e,d܋Vd܋Vd܋Ve,e,e,je,e,je,d܋Ve,e,d܋Ve,e,e,e,e,e,e,e,e,d܋Ve,e,e,d܋Vd܋Vd܋Vd܋Ve,e,e,e,e,e,d܋Ve,e,e,e,e,e,e,d܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Ve,d܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Ve,e,d܋Ve,e,d܋Vd܋Ve,Zd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Ve,Zd܋Vd܋Vd܋Ve,Ze,d܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Vd܋Ve,d܋Ve,e,d܋Vd܋Vd܋Vd܋Ve,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,{d܋Vd܋Vd܋V44aa6d87036533ed4282de371169e8c0ea7ee3cf24d075994049c15af6ab816772bcc7dc13cdacc3ec82832c653e1fc5ae0ca37ead4e3785550f0ce2a6558f45fd614e45e7075c1abbf1aa2dd9b747045f2c91a27247d2651bc2b3d3dae804d32d87da0f73a6ee38e3a0a22f89446b31c49abfdd05786bfc86f64f58c9522f52845ac369168e00d30bdcf74211d6e6f912b7a916fe76683a398197bcfba58c03b8bf58e9dd7e21550fd5ddc596eda7ac628da6a5e682a8509909adeddde892053a0f299d256fa2f9a102b16cc1019251875d07b81f67f5da6b37d8965e6de35328dd4b87b8d59e4c67e3200a06024a2ff15971e7e338df747bc9e07243a9e51098c6f829a5bec8354324280c2957266a15855bdbfda066050a8d428a3af20b13a4de333c8e910098a279e3a31a1cbaef70284c5d92cba78034840f2b1d4060a5bfbffab6f9e167dfe245391a2495f83e654912bd2151476aae2ab9ced4d398bef0a813aa325a058bf4980037af79868765823abec0936feaf65f366be29457a3ff2ae312464f776ea5c127013507c777ab143dca1be2fae32372b7f79e333d7ff19c8d4f908784b36d6308697fb6c03980bef1b582c17d11628f0d7a82df949c184ae722e920afedc59a9e7a2cc5710a6e02569af44d699cc7823d8f80975075ac47ba82cb7af4e4796ccffc24d5d14655ba472639dde089b691dbb24ee378bc413c905a055a7d1b05e3227c15e2b157622eef53ef225d2463fe7648f3a976e27852eaa03536189739c4c66f4961c4685b4f05bae461896677c98a2c4a242f5790e663632321ed61f53da70878f8e7b42e97ff62099c576bc6deac1b2ac8571f1b58406b001e415859dfeb1026e10138c2d115a2f3d5a6c213d896e50a49f7c76e5bf2e8558fc0e4f8a213e21991d2651715c15b77972b4897124c591187f959a5dfb759840f689aff28142544c1eaa88798435cbade22046358fe230ef9ce5e6480e7b711ee6f6f4c2a96d0c197f4ee32601743d97de421b4a6d40f73fa851e363f7496d0613fd14f020629e7057f54afe84c9c6d2b4d94153ac09f0aee8f5c62938df7c72dda0015db2747b112f9c9dc3e31b952eecc94f6aae9cbd2631b277a5b56d487ff00b50c8e1cd73cdec138136f54da3e333f077e5398b5b61408b542c2c6e0b77dd66b1bd885cd5c2cc82191662738c1e565950fcff3deabdcaa56e345a5dfd95acbc4dcc129f35f30fba51e00ec5578bff66869377d554582ded0d75507f9062942dc6c883dfc4bf9811d26c39b27c02ab0ab784ae9e20b1e70c90a8f4d92146340f77e9762b2bba0ac87e51aba1403c2d73e956208f0e3fb04ab0d7956fc0e03d19ce1e75cbc97e499219633b7eed0beb3df40a0d19431c536dcc71eaa456734db96094d0090f7ff8e3847c4da9a3da54810cbdcc571026fdce6a8c8376d9bfadc7a3a2d0ca361e4088a0f33e400fe63a573f75be5b7abcabaaf5153ecc7520852c6b9d9bcbcec181796b0234bdc7c983b8af7cc602e200622476637027d385cebd57c69b318973c8f28ca52d0a75437def0daf111815dc30c5b692c0b0494ef0a65e0c992f5569e4be44722327e89152f41ea986bc66de78af99fc5ca49784feca69cbdd0ecf06c45bf8db2680bcc2b2849e2c4636c2c82c27b6bfc81566cdee6c75f82cbd64b44c438d15efefefb67b24c2e4096c4a676f5d3d4ed5944f896df30db9950241d2832824b4caa6b4c0a16bc77fd7a73a7dc88d36a6ad8bd08e79a995f11459f6191d922126b4cc2452ca685c2c874b7839caae6369064d7c118bd8842e479ff069443eac84cbbffb140323d2ac026ab34dfea5324f4e463cd34f63b92679b5276190fa854aebd5730b1def5222cf7269c4c5c430f90a5a3de5eeaa4dffcb7013dec1b450fcf1a95fa81f70bedb7ab38eba27dfdfb4ceeb2294eff143ed83454e2b37278bbb917a3211472ebae4e66328cc1de60acd02dcf5b5abfb44a46deabe5b0c038da1e7e4172a85f4f60d2d3b887adfbce9eb89fc7a64772697cf84fb588197c057c3a8bb4ed2be7552b5a9dc48de2774a05e0b47dd70b12083d1ead99c0a35c3260b639483a4fdcbdcb5628225c5e046af9282ce75277429276b0db83fad3ca3d55eadc9c7b91ead0b9a0355ee8ab783d08e7bdd8e85d9cbaa0cb8c44bda9bad6a784f316eb64fbd839d02588ae68c925542079cdbe6f66b16570c12e6126a0622cdc81ab5bcc011dde3fe708a9da307b445a7c9c659ff1e52c629e6d814d1513f4b7464b563aa38d482df7e06f8293fbdd496f67c9705a97bde79fe6d626b2178f33b9067cf1bc69c05a0ad6c4994b7f0c4a3f40f1280cdbd4618eea628658850b4cb19690ca45d412a58134725f4462ea07330c2c4757fcd4db6e13e2c1219a38a8e552427aeb8ab66630b517e7023dede03ed0ec92bd6fd73b757afa588aaae1a4c1cc0fbb3ea7368ceb987437ee3a631ad48aa053be33314bef2d079042cbe1f7976134534c89593b5ad1a61ff660873268636145884edc09350b1472b0f5808e0172195d94f87c21e9402c3b499a0b4873c2e934fad3f9105e25bb09dadf8d2cc3d9cbd1b869b356b2ee7e31948fb0bd7c8c90f7a75b327d80961d902b2e9937f578e30b2a2ceabd8ffa3a50f0bb965023ad2987fd8d1798d988d8733864329aee570bb5a0f82c1b666547e2fba9b17b9126733272e5052564dc8145010aa4447e66a987c6dba7caae70b8f62868caca1a8b3d31065ae33f7f329802e9407272dd0e8e55730756d0e3e5c4b60d9f9f4bb8bd14fc92bcf5246ead6fa877475f6480f35e0a19105bc4f9f3da3f1c28fbc0c75e400de651eb45758f2f50b5925ca6c56f84ee85473e91c77565e143ae35a149434f274e68748831d1933adb597c23a293f344cb8c237e28b0ebbf3a978dac7b94a70be1f96eb2cf73eb9315960ed3cad20cfeda98d2f2f6e8f896ec7d60a3eda437fac386a177213e3964b6cfef9ed19bbda0664835300031120378cfec3e9049d158fcc7f64e3bb527263115a4c62556c2d99c8ca19ca95c79f7799a4fa50fa46311ec3521fe9d0ba61c7327c31ccaa5961eeacf4e12d4b1d2b0f0bcf414cdad497cebd263357be4f44a87bd28b0e85070bac222ba6385a20eafaa8c7ffae083695390282bc7e953cff18d6bba874c3ca4bd7c77391d5b3c2e3add25bd9988b957ba416bfdd72f6cc94a7d0e3c0b4d793fe85141ce4920bd1a747c1d288a47f268cd30b5b84964db6cddf09940e61141fa98248468dbf8a2a01ac9499045c45062fdb03abd55cdec32fb13fe6f196290b52b5c4c9fc350406bf094ce42b78bcbdb4cc046e042a46be83db515a32e05bf7ecfb6cf86f926a6b881b460cca02ad85534572cdbd125bdba411417de1158b0709825114882cb8b8b7735e62983389654fbf42eca6b703543f76867dbf53eeec9288c2c88d0fcb338a2c26536767245b64ae515fc073c21bc78769f41188140e1d7b9576ec8dee34d5851721726417b25f78af68845dc3627c3336e7959a3db2a81b7d77c35018d38f840d41ea5fa3e9f63b6a41d68c36ded365927ce95d8026242533566fd5a9015ebcdb2a4f4c8d618a42513ab22dc7f9d14637bcea150a6d0782c9b1ca41f4c501f2d0a219eb6b4c0df4d8701cc5a316b2ddf63797d4c1b689bc0b289d5cb8063a7034e13b7f0fcf71e24d5cbee9b502e392faf073131658fec0784234af6e12dffb92354367e1335266de43edb6451534c9e69c317075212b216cedf1d3b6896f14ee0b0dcdd6e2a89e9e8c9d0d828e28e67bfa3f06e802ee7aa097c0c83e97bfb8fc1a4bc67740cd0988415907b0fdb5e9cd955be2626b5095b55c7eed4aa4e99bb5348e36a875615bcf113566a8f4b3fcf2c9bcc229d772a074007e854bab67471aa199e72c162185b62c0888791c9b3cde2c8b180fae4e4ae3a29564f933d0adffd46b8696d6ad29b2e80b9dcad60ddb2e4a3deee5a5b1df09f116f1ca9d4dfb150d495d2b8523e7f8175a9b06704f168e14ab97a8a333d4a52ec9501bc0c509ecb94d8ca323df93e7a40c06eee31aba4c03d0bd7a719c67675a6eb57eaf16d64528d81de6a6d5b5703098518f977c3b984bdf179238402a8ca0205f85cde798a275b8da22a593f2aaffd4697e4cbfb14cb7eb1d52b96f03d9a60c82eeec920e92558658904ccf6d33eb54d2c05d916210cc6bd549d16a941290450ebd6a53fa73854256aa2ca91172cbce3ea805ccf2cd52de8acbbc2db88d209de84655fa997c5ec291608292fe2de555e8a1e5ce574acf315fe65268c469872614073d5e36cae87198a78651a2f71ced048f26a093a97bc05678cd2f0023ced7948fc49c6c5d87056ebc8ef611d0f61b2ac01e20fa8cca035f957e58fd60600e3eec9bab927c23438299d7e6254472600168b557a467a497d537353511ec07657b494d1b13fec35f5a7e924d2f13a4d348c43333346721cba696fabcebbf5b3208e09acd91962417cc92d41b7d02c02681f091214c33176803f920a01b4e7d2cf5378f93271d54f490315f98f5e7a87d42060fdc2bb2a014f219f0cfd902929d5f66ce9cb7ee0adfc270758ba6448882f20d234375c3cf705f94c324801d77ee04799742ababfdc14b252fdd7fe8ff970061aaf1571f13c673c0d523021ee2e207b7090d087e2bb7653601e21712022c805680262ee7e21bfb978099d7931bfcd3714d391d754849d8c35e3ced3d2120c3a61f9fe1e1b49fa3c45c3dc19bb4cb87b2cee4ef2c1b7f7490243d43d1b6d8888b259f1bcad12c08aa812bfcd0bac17f5dedd212abf2e8d6e4fe266cd2daae33edf86a443af84df022da4753010cdfd554536fb6830fce95f4d526985ee0983d0a8a24cd946c90e55643e4cdd547ec483c31abce64f0abeacb0a48de4c1c449f118ac572cd281812e9edad6c18bde661885d4b6084f0c26900cbd8cd8d1734002b08402303c200150d949032f43f4c1ebf3d37dd1677356a387273c407ad0a2fbb630776aeb7c66b39e46b24d911ecdb13615f6541269f187976baadf49189248f487df94af11585805fb98468d9b74ca4152eabed5047327ac3d14ed6a7691b7a7ebdfe59a65a0a7d6cf0fa9a192b99f8c02145e97f0f9fa8335ef8d58f33e0839cea99198c0b618c4c7b4dc7ec2a58ff64d08da63ea20dd11e83f011c77238ca715f14f09db89d7a145f83666095c21c5eb9cc45b7639f62b7d63f464a78f2f217f3ac818a95d6f334785540f42ac97e543d9bf64e7460c5dcd1a900b12cfd98aaa7edcd0571741736ef9466b55f9c12488b1ffff8381acea2261ed3af3ca698200b6dab1fcbced0c56e897d4cc654d685c1a5227a61bd9a2935c31fb3208fd352d854646cea87adb15abc39b7e14696e312804acbeaa085bac6abd8fc608da5fe3a771a5e5e373012dd65b245be569698f5a5446c652f436acbd6a934461f1122aa6ed0d80fc0693b0dbdd5e4b6fbd1e381e52f98c30b01714b8642d666d41b10dba40aed849e882f13927e94e6d008561e7f31d19b45cec5c1fa498b901f452a201648967f6b9f286b74ec22fd34a9215eb5823e0c95f5a0ccdc3466c44833b1b1e4bf768eb97466f115a85ebe80919146f1d2b8cf99e06e83f46577617913ca956403aced2bb1cfb03ee2309c03bc39dd61f27e5a1c0dcbe51e087d135a0590d440b50361b2b39f04a9db5d3a5b1358a556b35faa988bd01896b19fcf10c3a8e691b2952d26b4502d994986164a682cbe1361bafec5d136d841a9590357bf065bf90410b65adb91ce5bf07b4176b466abaedf9d7edf6a77d52f097ce976bc978a2e878931589a537f4c738ad9b65e9e88aa59c0d993ca7492a656e6f45730de8a6110d5c621a6df3b9051e67301155eaffeb27219c872cc2bd0c5e967d9fe5fab180c38e93c02581f56e86475076ad5e7d3736f7ad8ee81318bdaaaa2cd8f7602c74e68d483fc4da9d83162d752ef18e9ed5348cd2c979d826694f5e0ec600d6bcf6a4dd96433de77c0943bced25561b345ab972b0506b7cc2daad2fd344013aedc291df30c8ed65cdaed78159aa038b2c97ab/usr/bin/udevadm../systemd-udevd-control.socket../systemd-udevd-kernel.socket../kmod-static-nodes.service../systemd-boot-system-token.service../systemd-hwdb-update.service../systemd-udev-trigger.service../systemd-udevd.service../../bin/udevadmsystemd-udevd-control.socket.8.gzsystemd-udevd-control.socket.8.gz@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootsystemd-249.16-150400.8.35.5.src.rpmconfig(udev)pkgconfig(udev)udevudev(x86-64)  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    /bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/env/usr/bin/pkg-configconfig(udev)coreutilscoreutilsfilesystemgroup(kvm)kmodlibblkid.so.1()(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_37)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.10)(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.25)(64bit)libc.so.6(GLIBC_2.26)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.6)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libc.so.6(GLIBC_2.9)(64bit)libcrypto.so.1.1()(64bit)libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)libcryptsetup.so.12()(64bit)libcryptsetup.so.12(CRYPTSETUP_2.0)(64bit)libkmod.so.2()(64bit)libkmod.so.2(LIBKMOD_5)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)libsystemd-shared-249.so()(64bit)libsystemd-shared-249.so(SD_SHARED)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)sedsystem-group-hardwaresystemdsystemdsystemdsystemdsystemd249.16-150400.8.35.53.0.4-14.6.0-14.0-15.2-1249.16-150400.8.35.5ConsoleKitdracutfilesystemmkinitrdutil-linux0.4.1044.111.52.7.02.164.14.3dܺ@dǢ@d\@d@dddZ5dZ5dK@dK@dGd.@d.@dJcccl@c1c=@c=@c=@c=@cccck@cvcc0ccc@c@cc@cD @b)bb@b@b@b@b@bk@b^@bL/@bJbA@b; b1@b1@b'E@b'E@b'E@b\@bs@b!b@b@b@b~b8ar@a a a a a a a@a@a7a@a@a@aaZ@aea@a@aa6aLaa@aaKaqV@aqV@an@amaamaamaaim@aim@aim@aim@a`2a`2a\>@aTU@aMaKaKa;Ha;Ha;Ha8a8a2@a0a/k@a/k@a#a@a@````````@`ݮ@`ٹ`ٹ`s`̊````O@`O@`O@``@`@`@` @`@`m`c`[)`Y@`X`OL@`OL@`J@`J@`H`3`/@`-@`3@`@__ܙ_ܙ__S_м@_0@__@__@_:__"______ts@_s!_cO_cO_a@_a@_Z@_Z@_O@_G@_FN_D@_>e_ @^@@^^^^^@^@^ϧ^˳@^@^@^@^^@^@^@^^^s^^r @^ku^M#@^;^8 @^&^@^@]@]@]@]N@]ʞ]d@]]])]@]]]4@]@]]m]@]@]@]rJ@]nU]S]A]5@]\"\"\@\@\ڭ\\@\@\@\\\O\}\\M\M\\@\~d\k\f\=@\73\73\l@[[[@[v[[[0[<@[<@[<@[<@[<@[^[ā@[ā@[[[[[@[j@[a[[ @[0@[!@[Z@Zz@Z@ZZZ@ZUZľ@ZZZZZZZZ2@Z2@Z@ZZZZ@Zw@Zw@Z%Z%Z@Z@Z@ZZH@ZZZZ@Z@Z@Z@Z@Z@ZZZZ}@Z}@ZyZyZyZyZyZxG@ZxG@ZtRZtRZtRZtRZqZo Zk@Z]@ZX@ZV@Z%8Z@Z@Z@Z@Z@Z @Y@YYp@Yp@YY@YA@YA@YA@Yo@Yo@Yo@Yo@Yo@Yo@Yo@YYW@Ym@Y{'@Y{'@YyYx@Yx@Yx@YqY_wY^&@Y^&@Y\YK@YK@YC@Y7Y%uY;@Y;@YR@YtYtYtYtYtYtYtXXXsXg@X@XXZX@XYX@Xe@XpXXX@X@X@X@X@XtXoXn5@Xn5@XWXQ4@XIK@XF@X=mX43@X.@X)@X$a@X$a@X$a@X$a@XXX X X X XX`@XXXXXXXXXXX@X@X@X@X@X@Ww@Ww@WW@W@W@WSW@W@W@W W Wv@WWWίW@W:W@WE@WPW@Ws@We7W)@WKWVyVVVVVaVՄ@V=@V@VS@VwVwVhV`.V\:@VLh@VEVD@VA@V'~@V@V@V@VV@V@VV @V7@V@V@U|@U|@U|@UUoŬUUUȒ@U@U@U@UU@U@Uy@U@U@U@U>U@U@U@UUUUU@Uyx@Uyx@UmUY@UY@UTE@T@T~T~TTTTTC@TTTTp@TTT@T@T@T@TxcTw@Tto@To)@TmTmTl@Tl@Tk4Tk4Td@Td@Td@Td@Ta@T`T`T`T\@TWn@TWn@TR(@TJ?@THTG@TFJTD@T>aT>aT=@T=@T=@T=@T=@T=@fbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.commvidner@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comlidong.zhong@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comthomas.blume@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comthomas.blume@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfvogt@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfvogt@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comlnussel@suse.dengompa13@gmail.comfbui@suse.comfbui@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comdimstar@opensuse.orgfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfvogt@suse.comfbui@suse.comfbui@suse.comfbui@suse.comrbrown@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.commatthias.gerstner@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comeroca@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comstefan.bruens@rwth-aachen.defbui@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.commvidner@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comlnussel@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comThomas.Blume@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comThomas.Blume@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comdevelop7@develop7.infofbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comThomas.Blume@suse.comfbui@suse.comfbui@suse.comfvogt@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comrbrown@suse.comfbui@suse.compavlix@pavlix.netfbui@suse.comfbui@suse.comfbui@suse.comkukuk@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comjengelh@inai.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comkukuk@suse.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.commeissner@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comtbechtold@suse.comdimstar@opensuse.orgfbui@suse.commeissner@suse.comjengelh@inai.dejengelh@inai.dedevelop7@develop7.infoasarai@suse.comarvidjaar@gmail.comThomas.Blume@suse.comschwab@suse.dewerner@suse.dejengelh@inai.defbui@suse.comfbui@suse.comfbui@suse.comfbui@suse.comwerner@suse.dewerner@suse.delnussel@suse.deafaerber@suse.deolaf@aepfle.defbui@suse.comjengelh@inai.decrrodriguez@opensuse.orgtchvatal@suse.comthomas.blume@suse.comjengelh@inai.desor.alexei@meowr.ruwerner@suse.deschwab@suse.dedmueller@suse.comfbui@suse.comjengelh@inai.dewerner@suse.defbui@suse.comfbui@suse.comfbui@suse.comwerner@suse.dejengelh@inai.dewerner@suse.dejengelh@inai.dewerner@suse.dewerner@suse.defbui@suse.comwerner@suse.defbui@suse.comfbui@suse.comwerner@suse.dejengelh@inai.dejengelh@inai.desndirsch@suse.commeissner@suse.comwerner@suse.dejengelh@inai.decrrodriguez@opensuse.orgjengelh@inai.dehrvoje.senjan@gmail.comwerner@suse.dejengelh@inai.decrrodriguez@opensuse.orgcrrodriguez@opensuse.orgsbrabec@suse.comcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orghrvoje.senjan@gmail.commpluskal@suse.comjengelh@inai.dewerner@suse.dewerner@suse.depwieczorkiewicz@suse.comwerner@suse.dejengelh@inai.dewerner@suse.dejengelh@inai.dejengelh@inai.demeissner@suse.comcrrodriguez@opensuse.orgjengelh@inai.dejengelh@inai.dejengelh@inai.demeissner@suse.comwerner@suse.dejengelh@inai.dearvidjaar@gmail.comwerner@suse.dethomas.blume@suse.comthomas.blume@suse.comwerner@suse.dewerner@suse.dethomas.blume@suse.comwerner@suse.dewerner@suse.dermilasan@suse.comrmilasan@suse.comrmilasan@suse.comwerner@suse.dewerner@suse.dewerner@suse.degber@opensuse.orgledest@gmail.comwerner@suse.dewerner@suse.dermilasan@suse.comwerner@suse.dermilasan@suse.comthomas.blume@suse.comgber@opensuse.orgwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.de- Import commit b473c02cc08e093e370034425671cbc001c6748e 02caac7973 units/initrd-parse-etc.service: Conflict with emergency.target 70b3bff9f8 sd-device-monitor: dynamically allocate receive buffer (bsc#1213873) e2e1fbba2b sd-device: change type of properties nulstr from uint8_t* to char* c9d3dd5954 udev: set description for device monitor 3f07f44fde test: use sd_device_monitor_set_description() b304a1e1a2 sd-device-monitor: logs description for device monitor 929d4066c5 sd-device-monitor: introduce sd_device_monitor_{set,get}_description() 340e523048 sd-device-monitor: fix inversed condition 02659c7b67 tree-wide: port various places over to new stat_inode_same() helper b35a4b042a stat-util: add helper stat_inode_same() for comparing stat's st_dev/st_ino in one d25219cbe3 libsystemd: ignore both EINTR and EAGAIN 648a151313 errno-util: introduce ERRNO_IS_TRANSIENT()- Import commit 155fe1917157bdeecf7e28ef0ea9f62084f27f14 3b8c671f90 detach-md: similar to the DM case, also don't try to detach MD device backing /usr/ (bsc#1211576) 6da5d2d1fc shutdown: don't attempt to detach DM volume backing /usr/ (bsc#1211576) 37178881c1 udev: decrease devlink priority for iso disks (bsc#1213185) 02ede28319 shutdown: get only active md arrays. (bsc#1212434 bsc#1213575 bsc#1211576) 412b8dbb32 umount: /usr/ should never be unmounted regardless of HAVE_SPLIT_USR or not (bsc#1211576) 16f897570a units: remove the restart limit on the modprobe@.service e4e85b08bd tests: add test case for long unit names 3f84b06f9d core: shorten long unit names that are based on paths and append path hash at the end (bsc#1208194)- Add 5001-sleep-don-t-init-sys-power-resume-if-resume-option-i.patch (bsc#1186606)- Make sure to pre-install the groups systemd and udev rely on. This is needed when the tmpfiles are run at package installation time (i.e. when file-triggers are disabled).- Move more packaging fixups in the fixlet script.- Move the persistent net rule fix in udev fixlet script.- Rather than having one script per fix, use a single script (or "fixlet") per (sub) package that contains all the fixups relative to a (sub) package. This has the advantage to limit the number of scripts but more importantly it will ease the sharing of the spec file between TW and SLE. We should also be able to compare the fixlets of two distros even if the spec files have diverged. Note that all the fixups are run just once now.- kbd-model-map.legacy:: add 'ara' which should replace 'arabic' in the long term (bsc#1210702)- kbd-model-map.legacy: drop some entries no longer needed by YaST Related to bsc#1194609.- Include pam_keyinit.so in our systemd-user PAM service (bsc#1209741) That way "systemd --user" instances get their own session keyring instead of the user default session keyring. For some reasons cifscreds refuses to work with the latter. That's what is expected for every PAM session anyway.- Import commit 6441bb41141aaa8bfb63559917362748a3044c15 165ca0d018 udev-rules: fix nvme symlink creation on namespace changes (bsc#1207410)- Update 1001-udev-use-lock-when-selecting-the-highest-priority-de.patch (bsc#1203141) Optimize when hundred workers claim the same symlink with the same priority.- Update 0005-udev-create-default-symlinks-for-primary-cd_dvd-driv.patch Since commit 38f3e20883ff658935aae5c9 (v248), the symlinks /dev/cdrw and /dev/dvdrw could have no longer been created. Futhermore the rule added by this patch dealing with /dev/cdrom was redundant with the upstream one- Import commit dad0071f15341be2b24c2c9d073e62617e0b4673 (merge of v249.16)- Fix return non-zero value when disabling SysVinit service (bsc#1208432)- Drop build requirement on libpci, it's not more needed since udev hwdb was introduced 11 years ago.- Move systemd-boot and all components managing (secure) UEFI boot into udev sub-package: they may deserve a dedicated sub-package in the future but for now move them to udev so they aren't installed in systemd based containers.- Drop a workaround related to systemd-timesyncd that addressed a Factory issue.- Conditionalize the use of /lib/modprobe.d only on systems with split usr support enabled (i.e. SLE).- Import commit 119740915155d473de087bd633ba62c1c3e47d36 (merge of v249.15) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/1bfa716e7fb6d7169cece864e75dfe9e52914c99...119740915155d473de087bd633ba62c1c3e47d36- Make use of the %systemd_* rpm macros consistently. Using the upstream variants will ease the backports of Factory changes to SLE since Factory systemd uses the upstream variants exclusively.- machines.target belongs to systemd-container, do its init/cleanup steps from the scriptlets of this sub-package.- Make sure we apply the presets on units shipped by systemd package- systemd-testsuite: move the integration tests in a dedicated sub directory.- Move systemd-cryptenroll into udev package.- Make sure that /lib/udev exists and is a symlink to /usr/lib/udev when the testsuite is run.- Import commit 1bfa716e7fb6d7169cece864e75dfe9e52914c99 (merge of v249.14) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/540e0bd5374f9f42f1e645eb15971431ebb4b8c8...1bfa716e7fb6d7169cece864e75dfe9e52914c99 - Rebase 1001-udev-use-lock-when-selecting-the-highest-priority-de.patch- Don't overwrite /etc/pam.d/systemd-user on update (bsc#1207264) Regression introduced when systemd was forked for 15.4.- Ship systemd-pstore with udev (jsc#PED-2663)- Import commit 540e0bd5374f9f42f1e645eb15971431ebb4b8c8 29fb8a2dd0 core/unit: try to submit stop_when_unneeded queue on removing dependencies bd63eab381 core/device: start units specified in SYSTEMD_WANTS if it is not running e0898fa873 coredump: do not allow user to access coredumps with changed uid/gid/capabilities (bsc#1205000 CVE-2022-4415) 119424f96e coredump: adjust whitespace 3833d5a408 coredump: drop an unused variable 36728edcfd coredump: Fix format string type mismatch 34f6867a8a analyze: use DumpUnitsMatchingPatternsByFileDescriptor e67a7087ec manager: add DumpUnitsMatchingPatternsByFileDescriptor() feb8f2a983 manager: rename dbus method 98fed27339 analyze: extend the dump command to accept patterns a06d9470af man: document the Dump() calls of the PID 1 D-Bus interface, and what they are 79eb37a5e0 cryptsetup: retry TPM2 unseal operation if it fails with TPM2_RC_PCR_CHANGED (bsc#1204944) - Drop 5000-coredump-Fix-format-string-type-mismatch.patch 5001-coredump-drop-an-unused-variable.patch 5002-coredump-adjust-whitespace.patch 5003-coredump-do-not-allow-user-to-access-coredumps-with-.patch They have been merged into SUSE/v249 branch.- Fix systemd-coredump to not allow user to access coredumps with changed uid/gid/capabilities (bsc#1205000 CVE-2022-4415) Add 5000-coredump-Fix-format-string-type-mismatch.patch Add 5001-coredump-drop-an-unused-variable.patch Add 5002-coredump-adjust-whitespace.patch Add 5003-coredump-do-not-allow-user-to-access-coredumps-with-.patch- Import commit bcf040075f682f67370ddf7ab93d7a0d8b9cd9cc ab0f962e4c core/device: Log on every event received from udev 2dcb7c77fe udev/net_id: show the correct identifier in the debug output of dev_pci_onboard() 5b824103e0 udev/net_id: add debug logging for construction of device names cb6925410b udev: add one more assertion 82e343153a udev: drop assertion which is always false cef726986b udev: support by-path devlink for multipath nvme block devices (bsc#1200723) 00b34f08d9 tests: minor simplification in test-execute e5b4571c20 tests: make test-execute pass on openSUSE - Drop the following patches since they have been merged in 'SUSE/v249' branch: 6000-udev-net_id-add-debug-logging-for-construction-of-de.patch 6001-udev-net_id-show-the-correct-identifier-in-the-debug.patch- Import commit 0cd50eedcc0692c1f907b24424215f8db7d3b428 ae2067b062 time-util: fix buffer-over-run (bsc#1204968 CVE-2022-3821) 0469b9f2bc pstore: do not try to load all known pstore modules ad05f54439 pstore: Run after modules are loaded ccad817445 core: Add trigger limit for path units 281d818fe3 core/mount: also add default before dependency for automount mount units ffe5b4afa8 logind: fix crash in logind on user-specified message string- Add 1012-man-describe-the-net-naming-schemes-specific-to-SLE.patch (bsc#1204179) - Make "sle15-sp3" net naming scheme still available for backward compatibility reason- Don't replace /etc/systemd/system/tmp.mount symlink with a dangling one pointing to /usr/lib/systemd/ (bsc#1201795)- Update 1009-Drop-or-soften-some-of-the-deprecation-warnings.patch (jsc#PED-944) To decrease log level of messages about use of KillMode=none from warning to debug. SAP still uses this deprecated option and the warnings emitted by PID1 confuse both SAP customers and support.- Import commit 7b70d88264a588fdba36c6e7655d1feea2b0e0a0 (merge of v249.12) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/4949659dd6ce81845e13034504fe06b85a02f08b...7b70d88264a588fdba36c6e7655d1feea2b0e0a0- Import commit 4949659dd6ce81845e13034504fe06b85a02f08b 0f096f16ba tmpfiles: check the directory we were supposed to create, not its parent 82c3793e43 stat-util: replace is_dir() + is_dir_fd() by single is_dir_full() call 2191a9ae95 logind: don't delay login for root even if systemd-user-sessions.service is not activated yet (bsc#1195059)- Make {/etc,/usr/lib}/systemd/network owned by both udev and systemd-network (bsc#1201276) This configuration files put in these directories are read by both udevd and systemd-networkd.- Import commit 17d488c53ad150de59f7d842e870e0c3d141d8ff 6b3bb1161c core/device: device_coldplug(): don't set DEVICE_DEAD 1e4058a0bc core/device: do not downgrade device state if it is already enumerated f1d33c466e core/device: ignore DEVICE_FOUND_UDEV bit on switching root (bsc#1137373 bsc#1181658 bsc#1194708 bsc#1195157 bsc#1197570) fdaad2ff3a core/device: drop unnecessary condition- fix parsing error in s390 udev rules conversion script (bsc#1198732)- Call pam_loginuid when creating user@.service (bsc#1198507) It's a backport of upstream commit 1000522a60ceade446773c67031b47a566d4a70d.- Import commit 2bc0b2c447319a9156e7c5a18fe971f946554a6b 6256b14446 test: adapt install_pam() for openSUSE 3ea5b7e295 test: add test checking tmpfiles conf file precedence e63e641ee8 test tmpfiles: add a test for 'w+' b531758614 tmpfiles.d: only 'w+' can have multiple lines for the same path (bsc#1198090) ea98492c53 cryptsetup: fall back to traditional unlocking if any TPM2 operation fails - Move coredumpctl completion files into systemd-coredump sub-package.- Import commit e62acb68de9bccfa272bef98fe5b38effc37528a b70267d883 journald: make use of CLAMP() in cache_space_refresh() 3953e685cb journald: make sure journal_file_open() doesn't leave a corrupted file around after failing (bsc#1198114) d03a5f79bf fs-util: make sure openat_report_new() initializes return param also on shortcut 05499d5a30 fs-util: fix typos in comments 9f77c8fae1 journal-file: port journal_file_open() to openat_report_new() 4d07c034da fs-util: add openat_report_new() wrapper around openat() 258c04836d meson: build kernel-install man page when necessary 23da9cc83a man: do not install sd-boot man pages when -Dgnu-efi=false is set d452b8738c unit: install the systemd-bless-boot.service only if we have gnu-efi 98f44dc500 boot: don't build bootctl when -Dgnu-efi=false is set (bsc#1198093) 9145684460 build: include status of TPM2 in the feature string show by --version- spec: make sure /lib exists when installing conf files in /lib/modprobe.d- spec: enable 'efi' support regardless of whether sd_boot is enabled or not We should support EFI systems even if systemd-boot is not enabled.- spec: cope with %{_modprobedir} being /lib/modprobe.d on SLE- Import commit 5b022ce3dbad3189b7ce1e7b0f018b18ac6e583c (merge of v249.11) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/23b6a8633186a2b5b2487621c81ec7e7bb068db1...5b022ce3dbad3189b7ce1e7b0f018b18ac6e583c- Import commit 23b6a8633186a2b5b2487621c81ec7e7bb068db1 f19292f18d udev: 60-persistent-storage-tape.rules: handle duplicate device ID (bsc#1195529) 3349f636dc man: tweak description of auto/noauto (bsc#1191502)- Fix the default target when it's been incorrectly set to one of the runlevel targets (bsc#1196567) The script 'upgrade-from-pre-210.sh' used to initialize the default target during migration from sysvinit to systemd. However it created symlinks to runlevel targets, which are deprecated and might be missing when systemd-sysvcompat package is not installed. If such symlinks are found the script now renames them to point to 'true' systemd target units. - When migrating from sysvinit to systemd (it probably won't happen anymore), let's use the default systemd target, which is the graphical.target one. In most cases it will do the right thing anyway.- systemd.spec: minor simplification by assuming that %{bootstrap} is always defined.- Make sure to create 'systemd-coredump' system user when systemd-coredump is installed (follow-up for the split of the sysusers config files).- update s390 udev rules conversion script to include the case when the legacy rule was also 41-* (bsc#1195247) * change scripts-udev-convert-rules.sh- Fix a regression caused by the split of the sysusers config files shipped by systemd (bsc#1196322) Calls to %sysusers_create were not updated accordingly.- %_pam_vendordir is still wrong on SLE, let's define our own definition for now.- Add in quarantine the following patches: 6000-udev-net_id-add-debug-logging-for-construction-of-de.patch 6001-udev-net_id-show-the-correct-identifier-in-the-debug.patch They might help with predictable network device naming issues. They will be moved to the git repo if nothing wrong happens.- Import commit d150ab3db99dea63a546567b3227baf0d85e4265 (merge of v249.10) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/26736aafa1df67d222fe46c54bf74b5c7a44d8a1...d150ab3db99dea63a546567b3227baf0d85e4265- Import commit 26736aafa1df67d222fe46c54bf74b5c7a44d8a1 8973cb2462 systemd-coredump: allow setting external core size to infinity (bsc#1195899 jsc#SLE-23866)- Fix build if %_distconfdir is not defined (see bsc#1195679)- Always create systemd-network system user, even if systemd-networkd is not installed (bsc#1195559) - Don't rely on %{_distconfdir}, it's broken on SLE (bsc#1195998)- Make more use of %{_unitdir} in files.{systemd,container}- Installation of libnss_mymachines.so depended on %{bootstrap} but it is actually installed when %{with machined} is true. - Call ldconfig when container subpackage is installed since it ships nss-mymachines NSS plug-in module.- Import commit a186eb9f9cc13b65f8380dbcae3080228e8be7e2 1395c74be7 udevadm: cleanup-db: don't delete information for kept db entries (bsc#1194912) bbafc8092a udevadm: cleanup_dir: use dot_or_dot_dot() d16f6d018d tmpfiles: split out config for systemd-resolve 41334be59e meson: minor cleanup 3db0c28462 sysusers: split up systemd.conf - Drop 0012-resolved-create-etc-resolv.conf-symlink-at-runtime.patch (bsc#1195153) Since v241, the patch isn't useful anymore because resolved is no more able to create /etc/resolv.conf symlink by itself,it runs as 'systemd-resolve' user. The symlink is now handled by a tmpfiles config file which is only installed when systemd-resolved is. The tmpfiles config file has currently a lower priority than the one shipped by netconfig.- Make use of %ldconfig_scriptlets- Merge nss-resolved and nss-mymachines NSS plug-in modules into systemd-network and systemd-container respectively. These modules are plug-in modules hence the shared library packaging policy doesn't apply for them. Moreover they're pretty useless alone without their respective systemd services, Hence let's reduce the number of sub-packages as the list keeps increasing.- Merge libudev-devel into systemd-devel- systemd.spec: explicitely list all files for each main (sub) packages Using glob patterns in %files section to reduce the number of listed files was error-prone as some introduced files could silently be placed in the wrong subpackage. The sections were also hard to read and many files needed to be excluded from the main package making the point of glob pattern usage moot. systemd, udev, systemd-container and systemd-network packages have now their list of files described in a dedicated file. The lists are kept sorted to make them easy to parse. The size of the files, especially the one for the main package, is still reasonable and much easier to read now. During this rework, a couple of cleanups happened: more use of %{_systemd_util_dir}, some files was incorrectly owned by the main package and have been moved to the correct sub-package, etc... Note: the rest of the subpackages might be addressed later but let's find how it goes for now.- Rename 0006-sysv-generator-add-back-support-for-SysV-scripts-for.patch into 1011-sysv-generator-add-back-support-for-SysV-scripts-for.patch This patch is now SLE specific.- Make sure that libopenssl-devel is installed when building resolved. Openssl was implictly pulled in by systemd-experimental subpackage but could be missing if the build of this subpackage was disabled.- resolved: disable DNSSEC until the following issue is solved: https://github.com/systemd/systemd/issues/10579 - resolved: disable fallback DNS servers and fail when no DNS server info could be obtained from the links. It's better to let the sysadmin know that something is likely misconfigured rather than silently handing over the DNS queries to Google or Cloudflare. - Replace '%setup+%autopatch' with '%autosetup'- Don't generate ID_NET_NAME_SLOT for devices behind a PCI bridge (bsc#1192637) If multiple NICs are behind a PCI bridge, each of them will get the same ID_NET_NAME_SLOT value leading to conflicting names. Such names weren't generated before SLE15-SP3.- Move the whole content of /usr/share/doc/packages/systemd in doc subpackage- Move the systemd-network-generator stuff in udev package This generator can generate .link files and is mainly used in initrd where udev is mandatory.- Restore /sbin/udevadm and /bin/systemctl (obsolete) paths (bsc#1194519)- Import commit 7a4e2ba4e01a8dfd305b24c40e156f8d293995a5 (merge of v249.9) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/6c7d6a7100488806bad0a81bbf2bca99be641938...7a4e2ba4e01a8dfd305b24c40e156f8d293995a5- systemd.spec: drop our own definitions of %_pam_moduledir/%_pam_vendordir macros since they're now defined by pam-devel shipped by SP4. - Rename 1007-Restore-support-for-halt.local.patch into 1007-sysv-restore-support-for-halt.local.patch - Extract bits from 0008-sysv-generator-translate-Required-Start-into-a-Wants.patch which are not specific to the handling of 'Required-Start:' and move them into a new patch 1010-sysv-add-back-support-for-all-virtual-facility-and-f.patch- Import commit 6c7d6a7100488806bad0a81bbf2bca99be641938 (merge of v249.8) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/103742c59ad2d37a54bfb91135d9c7b082ca3576...6c7d6a7100488806bad0a81bbf2bca99be641938 - Rebase 1007-Restore-support-for-halt.local.patch- Import commit 103742c59ad2d37a54bfb91135d9c7b082ca3576 e95df40b09 shared/rm-rf: loop over nested directories instead of instead of recursing (CVE-2021-3997 bsc#1194178) 078e04305d shared/rm_rf: refactor rm_rf() to shorten code a bit 6d560d0aca shared/rm_rf: refactor rm_rf_children_inner() to shorten code a bit 6666ff056c localectl: don't omit keymaps files that are symlinks (bsc#1191826) 30cbebc56f tmpfiles: 'st' may have been used uninitialized 5443654ec0 macro: add new helper RET_NERRNO() 8d90ecc435 rm-rf: optionally fsync() after removing directory tree 591344010d rm-rf: refactor rm_rf_children(), split out body of directory iteration loop 8c7762c4f1 Bump the max number of inodes for /dev to a million (bsc#1192858) dc9476c881 journal: don't remove the flushed flag when journald is stopped 29efc29efd TEST-10: don't attempt to write a byte to the socket 773fb785b6 Bump the max number of inodes for /dev to 128k (bsc#1192858)- Rename 1009-drop-or-soften-deprecation-warnings.patch into 1009-Drop-or-soften-some-of-the-deprecation-warnings.patch- Update systemd-user PAM service again Change the default implementation of pam_setcred() again, previously customized to run the full "auth" PAM stack and only call pam_deny.so which is basically the SUSE default behavior without pam_warn.so. This is considered safer, especially on SLE where a regression was spotted by QA.- move files related to static nodes to udev- Update 1009-drop-or-soften-deprecation-warnings.patch (bsc#1193086) It rewords the warning about the use of 'KillMode=none'.- Import commit dcd562c17a5bd8df60aff757c9a4c823b1da9144 (merge of v249.7) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/a7d5fcde94e2351f6cdd1826726c52e22c9355f9...dcd562c17a5bd8df60aff757c9a4c823b1da9144 - Import commit a7d5fcde94e2351f6cdd1826726c52e22c9355f9 f99aa40c6e TEST-12: make sure 'adm' group exist 6c7194ff99 TEST-08: don't force ext4 for / dd1814b8f9 test: use kbd-mode-map we ship in one more test case 94c5febf2a test: fix TEST-10-ISSUE-2467 - Update the dependencies of the systemd-testsuite sub-package- Enable systemd-experimental sub-package again, rpmlint should have been updated.- Import commit 77ad76ed6e5c8170e3825d57abf8690b2a95bc06 (merge of v249.6) bcdeee7b4c virt: Support detection for ARM64 Hyper-V guests (bsc#1186071) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/ad045db5d34afeb4ece43f349783eda931e49a04...77ad76ed6e5c8170e3825d57abf8690b2a95bc06- Temporarily disable systemd-experimental sub-package until rpmlint is updated.- Add 1009-drop-or-soften-deprecation-warnings.patch- Disable nss-systemd and translations features for the mini flavour- Enable build of systemd-experimental sub-package It will be shipped in Leap only.- Really enable libiptc for masquerading support (bsc#1191651) Currently used by systemd-nspawn and systemd-networkd.- Convert systemd package to multibuild- Import commit ad045db5d34afeb4ece43f349783eda931e49a04 (merge of v249.5) 8de173ff93 mount-util: fix fd_is_mount_point() when both the parent and directory are network fs (bsc#1190984) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/2f8e2ef85dfbe8e10a21e0e1bd5e356ff8ed6c5a...ad045db5d34afeb4ece43f349783eda931e49a04- Rename %{gnu-efi} into %{sd_boot} Build conditionals (%bcond_with and %bcond_without) are used to define a specific feature of systemd. "gnu-efi" is rather an implemenation detail. Also not really sure what "efi" option alone is useful for since systemd-boot & co depends on "gnu-efi". - Enable sd_boot support for aarch64- Suppress PAM warning when the credentials for user@.service service are established (bsc#1190515) systemd-user PAM service needs to define a default implementation of pam_setcred() otherwise the fallback (defined by /etc/pam.d/other) is used, which consists of pam_warn.so + pam_deny.so, and will throw a warning each time a user logs in.- Drop systemd-logger (Leap only) This sub package was introduced in order to configure persistent journal and also to make sure that another syslog provider (such as rsyslog) couldn't be installed at the same time: each syslog provider conflicts with each others. However this mechanism didn't work since uninstalling systemd-logger wasn't magically turning off persistent logging because /var/log/journal is likely to be populated hence not removed. Moreover using a subpackage to configure the mode of journald was overkill and the usual ways (main conf file or drop-ins) should be preferred. This change should have no effect on SLE as the sub-package was shipped in Leap only.- Overwriting rootprefix= is only required when split-usr is enabled- Rename %usrmerged into %split_usr- No need to install upstream pam configuration file "systemd-user" It's overwritten by the SUSE version anyway.- Predictable network interface names: fix slot based network names on s390 (backward incompatible change) (jsc#SLE-18514) The default predictable naming scheme used by SLE ("v238") have been improved with the two following changes: o PCI hotplug slot names for the s390 PCI driver are a hexadecimal representation of the function_id device attribute. This attribute is now used to build the ID_NET_NAME_SLOT. Before that, all slot names were parsed as decimal numbers, which could either result in an incorrect value of the ID_NET_NAME_SLOT property or none at all. o Some firmware and hypervisor implementations report unreasonable high numbers for the onboard index. To prevent the generation of bogus onbard interface names, index numbers greater than 16381 (2^14-1) were ignored. For s390 PCI devices index values up to 65535 (2^16-1) are valid. To account for that, the limit is increased to now 65535. To reflect these backward incompatible changes, the naming scheme version has been renamed "sle15-sp4". - Import commit 2f8e2ef85dfbe8e10a21e0e1bd5e356ff8ed6c5a 4c4e642712 meson: allow extra net naming schemes to be defined during configuration (jsc#SLE-18514) 78466e4464 meson: drop the list of valid net naming schemes b9a2098f9d netif-naming: inline one iterator variable d7fbbc5e74 Add remaining supported schemes as options for default-net-naming-scheme- Enable support for Portable Services (jsc#SLE-21695) Will be released in Leap only.- Import commit 48cec2f159dd8fd15d0baf9a1ffe2d762ecf769c 8d65ec4a66 test: wc is needed by test/units/testsuite-50.sh 1527bcc5dd test: make the installation of the debug tools optional in the image f4e6bf0b37 journalctl: never fail at flushing when the flushed flag is set (bsc#1188588) 3b1aa2f79f manager: reexecute on SIGRTMIN+25, user instances only fd46c81922 test: make sure to include all haveged unit files- Update the dependencies of the testsuite package The debug tools are optional thus no more required. OTOH strip(1) is needed when building the test image and nc(1) is needed by some tests.- SLEtify This forward port most of the SLE stuff from SLE15-SP2 to this Factory snapshot making this version good enough for starting testing the version that will be shipped in SLE15-SP3. Add 1001-udev-use-lock-when-selecting-the-highest-priority-de.patch (bsc#1181192 bsc#1184238 bsc#1184254 bsc#1184859 bsc#1185828) Add 1002-udev-add-option-to-generate-old-buggy-SCSI-serials.patch Add 1003-logind-store-a-timestamp-when-the-ACPI-power-button-.patch (bsc#981830 bsc#888612 bsc#1072933) Add 1004-udev-don-t-create-by-partlabel-primary-and-.-logical.patch (bsc#1178023 bsc#1183702) Add 1005-udev-optionally-disable-the-generation-of-the-partla.patch (bsc#1089761) Add 1006-logind-keep-backward-compatibility-with-UserTasksMax.patch Add 1007-Restore-support-for-halt.local.patch Add 1008-login-mark-again-framebuffer-devices-as-master-of-se.patch (bsc#1187154) merge compats/persistent-nic-names (bsc#1061883 bsc#1083158 bsc#1178561) merge compats/udev-compat-symlinks networkd is kept enabled as it's shipped in Leap distros (bsc#1071311) The following udev rules are no more kept by the systemd package 60-io-scheduler.rules (bsc#1165579 bsc#1164717 bsc#1134353 bsc#1177490 bsc#1184994 bsc#1188713) 80-acpi-container-hotplug.rules (bsc#1082485 bsc#1040800 bsc#1078358 bsc#1081170 bsc#1075743) 80-hotplug-cpu-mem.rules (bsc#1076696 bsc#1127557) 99-wakeup-from-idle.rules Move systemd-sysv-convert back from /usr/lib/systemd to /usr/sbin (bsc#1178156) Add conversion script for moving legacy collect based udev rules to chzdev based ones (bsc#1183984) SLE systemd default settings are hold by systemd-default-settings-branding-SLE (bsc#1065301 jsc#SLE-10123) Don't mount /tmp as tmpfs by default Set the version of the net naming scheme to 'v238' Set the default cgroup hierarchy to 'hybrid' Create /run/lock/subsys again (bsc#1187292) Restore "Provides/Obsoletes: systemd-bash-completion"- Drop git internal files from the testsuite sub-package- Adjust pam macros- Don't reexecute user manager instances on package update yet This can't be done until users have their user instance updated to the new version that supports reexecuting with SIGRTMIN+25 because this signal terminates the user managers for the previous versions.- Import commit ec72db9ee0f8ce061f83624d7148ff38a5993b11 3b1aa2f79f manager: reexecute on SIGRTMIN+25, user instances only fd46c81922 test: make sure to include all haveged unit files - systemd.spec: reexec user manager instances on package updates- Make sure the versions of both udev and systemd packages are always the same (bsc#1189480)- Drop dependency on m4 (replaced by Jinja2)- Configure split-usr=true only when %usrmerged is not defined- Import commit 40bda18e346ff45132ccd6f8f8e96de78dcf3470 (merge of v249.4) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/7f23815a706cf2b2df3eac2eb2f8220736b8f427...40bda18e346ff45132ccd6f8f8e96de78dcf3470- Rework the test (sub)package: - it's been renamed into 'systemd-testsuite' - it includes the extended tests too - the relevant commits have been backported to SUSE/v249 so no SUSE specific patch is needed to run the extended tests (see below) - the deps needed by the extended tests have been added - Import commit 7f23815a706cf2b2df3eac2eb2f8220736b8f427 ad216581b6 test: if haveged is part of initrd it needs to be installed in the image too 088fbb71d0 test: adapt install_pam() for openSUSE 4d631c1f0c Revert "test: adapt TEST-13-NSPAWN-SMOKE for SUSE" ef956eb8a2 test: on openSUSE the static linked version of busybox is named "busybox-static" 6f7ce633b0 TEST-13-*: in busybox container sleep(1) takes a delay in seconds only 278baaa3ec test: don't try to find BUILD_DIR when NO_BUILD is set 3bba2f876a test: add support for NO_BUILD=1 on openSUSE d77cbc1b64 test: make busybox TEST-13-only dependency- Upgrade to v249.2 (commit c0bb2fcbc26f6aacde574656159504f263916719) See https://github.com/openSUSE/systemd/blob/SUSE/v249/NEWS for details. This includes the following bug fixes: - upstream commit 6fb61918ccdd0610b425d5b0e5417751f8f8f783 (bsc#1182870) - upstream commit 6fe2a70b9160e35fdeed9d37bd31727c2d46a8b2 (jsc#SLE-17798) - Rebased 0002-rc-local-fix-ordering-startup-for-etc-init.d-boot.lo.patch 0012-resolved-create-etc-resolv.conf-symlink-at-runtime.patch- Avoid the error message when udev is updated due to udev being already active when the sockets are started again (bsc#1188291)- Import commit 73e9e6fb847513c6d62f2fb445778ef5bc0fe516 (merge of v248.6) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/cb29bcc5ef2c0ee659686c5d229646a6ba98ec50...73e9e6fb847513c6d62f2fb445778ef5bc0fe516- Drop 0001-Revert-core-prevent-excessive-proc-self-mountinfo-pa.patch Commit 81107b8419c39f726fd2805517a5b9faab204e59 fixes https://github.com/systemd/systemd/issues/19464 which makes the aforementioned patch not needed anymore.- Drop 1003-basic-unit-name-adjust-comments.patch It's been merged in SUSE/v248 branch- Import commit cb29bcc5ef2c0ee659686c5d229646a6ba98ec50 (merge of v248.5) 4a1c5f34bd basic/unit-name: do not use strdupa() on a path (bsc#1188063 CVE-2021-33910) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/94efce2ee59fca15a48ff9c232c8dd7cf930c0a0...cb29bcc5ef2c0ee659686c5d229646a6ba98ec50 - Drop 1002-basic-unit-name-do-not-use-strdupa-on-a-path.patch as it was merged in v248.5.- Import commit 94efce2ee59fca15a48ff9c232c8dd7cf930c0a0 (merge of v248.4) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/c0aecee593511e49638579cb2b9ac8aaf1f8e6c8...94efce2ee59fca15a48ff9c232c8dd7cf930c0a0 - Drop 1001-unit-name-generate-a-clear-error-code-when-convertin.patch as it was merged in v248.4.- Import commit c0aecee593511e49638579cb2b9ac8aaf1f8e6c8 42ec1d537a login: use a hwdb entry for tagging Parallels' fb devices with 'master-of-seat' tag ecc7c7b462 login: use a hwdb entry for tagging HyperV's fb devices with 'master-of-seat' tag a4cfd70476 login: XGI Z7/Z9 (XG20 core) graphic chip requires master-of-seat to be set (bsc#1187154) ef553e0199 sd-dhcp-client: tentatively ignore FORCERENEW command (bsc#1185972 CVE-2020-13529) aae6c575fc sd-dhcp-client: logs when dhcp client unexpectedly gains a new lease 258a3d2043 sd-dhcp-client: shorten code a bit 0a80303114 sd-dhcp-client: check error earlier and reduce indentation- Added patches to fix CVE-2021-33910 (bsc#1188063) Added 1001-unit-name-generate-a-clear-error-code-when-convertin.patch Added 1002-basic-unit-name-do-not-use-strdupa-on-a-path.patch Added 1003-basic-unit-name-adjust-comments.patch These patches will be moved to the git repo once the bug will become public.- systemd-hwdb-update.service should be shipped by the udev package- Finally don't create /run/lock/subsys anymore This effectively reverts the fix for bsc#1187292 made earlier. This directory is specific to RH sysvinit and since we're going to fade the support of SysV init script away the directory has no future.- Import commit e9a23d9e064c2e7ac21a1b984d116bcf15327e63 8dd19c6ee3 sd-device: allow to read sysattr which contains embedded NUL d52409e5fe pid1: only add a Wants= type dependency on /tmp when PrivateTmp=yes (bsc#1181970- Enable TPM2 support- Import commit fcdb8dce591db2f5fc3c1e3eeb7abe9a2090b401 aa2d840a3b compat-rules: fix warning: "label ‘out’ defined but not used" in path_id_compat.c - Restore 61-persistent-storage-compat.rules that was mistakenly dropped during the merge of v248.- Create /run/lock/subsys again (bsc#1187292) The creation of this directory was mistakenly dropped when 'filesystem' package took the initialization of the generic paths over. Paths under /run/lock are still managed by systemd for lack of better place.- Drop systemd's dependency on udev (jsc#PM-2677) In some environments (i.e. containers) udev is usually not necessary but pulls in unnecessary packages.- Now that chkconfig/insserv are history, let's implement the strict minimum in systemd-sysv-install to enable/disable SysV init scripts (bsc#1186595 bsc#1186359) Indeed there's no much point in dropping SysV support completely until upstream will do especially since 3rd party applications such as vmware still rely on it, see bsc#1186359).- Allow the sysusers config files shipped by systemd rpms to be overriden during system installation (bsc#1171962) - While at it, add a comment to explain why we don't use %sysusers_create in %pre and why it should be safe in %post.- udev requires systemd in its %post (bsc#1185958) udevadm, called in udev's %post, requires libsystemd-shared-248.so.- Restore all "License:" tags udev uses a different license (GPL-2.0-only) than the main package and "osc service localrun format_spec_file" has the good taste to restore the license tags for all other subpackages if one of the subpackage tag differs.- Expect 644 permissions for /usr/lib/udev/compat-symlink-generation (bsc#1185807)- Spec file minor cleanups: - Drop all "Group:" tags as they are deprecated. - Drop "License:" tags from all subpackages and make it inherited from the main package. - Drop "%bcond_with parentpathid" as it's not used.- Introduce subpackage systemd-tests This subpackage is mainly used before submitting a new version of the systemd packages. As such it's not intended for regular users hence can be removed/renamed at any time. One might wonder why the unit tests are not executed during package builds (%check)... the reason is that the environment used to build package (chroot) is too limited and therefore only a subset of the unit tests would be executed in this environment. To disable the build of the subpackage, use "--without=tests".- Add 0001-Revert-core-prevent-excessive-proc-self-mountinfo-pa.patch A temporary patch until https://github.com/systemd/systemd/issues/19464 is solved.- Import commit bc08011f04ac4f12569ec05965149f665a0b110b (merge of v248.3) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/6f5c11b28f5739b901390f22c2bf4c003cadedaa...bc08011f04ac4f12569ec05965149f665a0b110b- Import commit 6f5c11b28f5739b901390f22c2bf4c003cadedaa (merge of v248.2) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/e5f93c9d2e9e26dd0dff430c4c072a547357ae7d...6f5c11b28f5739b901390f22c2bf4c003cadedaa- Upgrade to v248 (commit 5d3d934a5c2f4593207497db94e6f313348e89e7) See https://github.com/openSUSE/systemd/blob/SUSE/v248/NEWS for details. This includes the following bug fixes: - upstream commit 4327574fc1093513badc2177f71cede2fc88c13c (bsc#1166028) - upstream commit 3573e032f26724949e86626eace058d006b8bf70 (bsc#1186411) - upstream commit 30927a24848c4d727f7619cc74b878f098cdd724 (bsc#1200170) - A couple runtime dependencies on libraries are now tracked manually (with Recommends:) due to the fact that some symbols of these libs are dynamically loaded with dlopen() (heck!) - oomd is left disablde for now - pam configuration file 'systemd-user' is now shipped in /usr/etc/pam.d - Rebased 0001-conf-parser-introduce-early-drop-ins.patch 0003-strip-the-domain-part-from-etc-hostname-when-setting.patch 0006-sysv-generator-add-back-support-for-SysV-scripts-for.patch - Dropped 0004-tmpfiles-support-exclude-statements-based-on-file-ow.patch as it is SLE specific. - Clean systemd-experimental up: - Enclose "%package/%descriptoin experimental" within a "%if %experimental/%endif" block condition - List the build requirements in the sub-package instead of listing them in the main package. - Enable support for fido2, pwquality and qrencode in the home stuff - Improve the package description- systemd.spec: clean some of the build deps up: - libpcre is redundant with libpcre2 (only required by the full build) and the mini variant needs none of them. Hence drop the ref to libpcre. - normally libidn2 is needed by some optional features in systemd-network (only). But it's implicitly pulled in by libgnutls (required by the main package). Let's make sure the related features won't be disabled inadvertently in the future by making the dep explicit.- Import commit 14581e01203df7aa63c7c8383a12e6ebe258476f (merge of v246.13) 423b1e759c Revert "resolved: gracefully handle with packets with too large RR count" (bsc#1183745) 4723778738 meson.build: make xinitrcdir configurable (bsc#1183408) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/9753d1c17545a5d46530696cb14254f5f12024f1...14581e01203df7aa63c7c8383a12e6ebe258476f - Drop 0001-Revert-resolved-gracefully-handle-with-packets-with-.patch as it's part of v246.13. - Make use of the new build option to ship xinitrc in /usr/etc/X11/xinit/xinitrc.d (bsc#1183408)- Add 0001-Revert-resolved-gracefully-handle-with-packets-with-.patch Temporary workaround for bsc#1183745 (upstream issue 18917) until an actual fix is found.- enable libiptc for masquerading support in networkd- Default to the "unified" cgroup hierarchy. At this point, most users of cgroup (such as docker, libvirt, kubernetes) should be ready for this change. It's still possible to switch back to the old "hybrid" hierarchy by passing "systemd.unified_cgroup_hierarchy=0" option to the kernel command line.- Import commit 9753d1c17545a5d46530696cb14254f5f12024f1 (merge of v246.11) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/134cf1c8bc3e361a2641161aa11ac2b5b990480b...9753d1c17545a5d46530696cb14254f5f12024f1 - Rebase 0001-conf-parser-introduce-early-drop-ins.patch- Import commit 13bc08870147b35f87cefb074aec22e767b7ac04 846d61e0a1 boot: Move console declarations to missing_efi.h 171a37228b boot: Add startswith() and endswith() functions with no_case variants 0fad9f309a boot: Drop unnecessary braces c38bbb0874 boot: Fix void pointer arithmetic warning 438210924b boot: Replace raw efivar gets with typed variants e46cb3e4a0 boot: Add efivar_get/set_uint64_le() functions e16bee35c8 boot: Rename efivar_get/set_int() to efivar_get/set_uint_string() 2808d0e9a3 boot: Tighten scope of variables used in loops d3f3d57743 boot: Add efivar_get_boolean_u8() 0551ecce71 boot: Make all efivar util functions take the guid as an argument 8376ba3b9f boot: Turn all guid constants into C99 compound initializers 166fc2dad2 boot: Enable C99 c87d66e261 boot: Move Secure Boot logic to new file da7bba9438 udev: fix memleak e06139117c nspawn: make rootfs relative to oci bundle path (bsc#1182598) 8ba587d46c PATCH] Always free deserialized_subscribed on reload (bsc#1180020)- create subpackage systemd-experimental to host pstore, repart, userdb and homed- Make sure the udev socket units are reloaded during udev package updates- fix-machines-btrfs-subvol.sh is only shipped when machined is built- systemd requires aaa_base >= 13.2 This dependency is required because 'systemctl {is-enabled,enable,disable} " ends up calling systemd-sysv-install which in its turn calls "chkconfig - -no-systemctl". aaa_base package has a weird versioning but the '--no-systemctl' option has been introduced starting from SLE12-SP2-GA, which shipped version "13.2+git20140911.61c1681". Spotted in bsc#1180083.- Add 0001-conf-parser-introduce-early-drop-ins.patch Introduce early configuration drop-in file. This type of drop-ins are reserved for vendor own purposes only and should never been used by users. It might be removed in the future without any notice.- Drop use of %systemd_postun in %postun This macro is supposed to operate on units but it was used without passing any parameters. This call was probably used for issuing a daemon-reload but the following calls to %systemd_postun_with_restart imply that already. So let's simply drop it.- systemd-sysv-convert: handle the case when services are migrated from SysV scripts to systemd units and are renamed at the same time (bsc#1181788) The list of such services is hard coded and contains only the 'ntp->ntpd' translation.- Import commit 134cf1c8bc3e361a2641161aa11ac2b5b990480b (merge of v246.10) 25f220eafb sysusers: flush nscd's caches whenever /etc/{passwd,group} are modified (bsc#1181121) 4a543f0257 journal: send journald logs to kmsg again 26df96473f busctl: add a timestamp to the output of the busctl monitor command (bsc#1180225) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/520e53b6d85087b05892ee637ae93f1b269e7e52...134cf1c8bc3e361a2641161aa11ac2b5b990480b- prepare usrmerge (boo#1029961) * don't install legacy symlinks to / * use %_pamdir to install pam modules * leave nss files in /usr/lib*, glibc loads them from there just fine independent of usrmerge- Import commit 520e53b6d85087b05892ee637ae93f1b269e7e52 (merge of v246.9) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/2401461e5f0e32922823d954c56106f96344070e...520e53b6d85087b05892ee637ae93f1b269e7e52- Import commit 2401461e5f0e32922823d954c56106f96344070e 6131548b0f udev: link_update() should fail if the entry in symlink dir couldn't have been created f6cb8c7d79 udev: make algorithm that selects highest priority devlink less susceptible to race conditions (bsc#1084748) fc64e47291 basic/stat-util: make mtime check stricter and use entire timestamp ae91d45d3d test/sys-script.py: add missing DEVNAME entries to uevents 09e3473a7a test/udev_test.pl: add "expected good" count fc89379b5b test/udev-test.pl: suppress umount error message at startup d9e114f10d test/sd-script.py: new helper script for udev testing f2672eae66 test/udev-test.pl: generator for large list of block devices 42b68e43e2 test/udev-test.pl: add repeat count eec8ec375a tests/udev-test.pl: add multiple device test 73b8f3cf93 test/udev-test.pl: count "good" results ee04d70bb6 test/udev-test.pl: merge import parent tests into one 03942c8fbc test/udev-test.pl: merge "space and var with space" tests ec95546189 test/udev-test.pl: remove bogus rules from magic subsys test f704429217 test/udev-test.pl: Make some tests a little harder ce1a877dc0 test/udev-test.pl: last_rule is unsupported 913c72ff2d test/udev-test.pl: fix wrong test descriptions eeb25a1be6 test/udev-test.pl: allow checking multiple symlinks 00ab4292da test/udev-test.pl: test correctness of symlink targets 5b71ee2911 test/udev-test.pl: use computed devnode name 2e04bb9ae8 test/udev-test.pl: allow concurrent additions and removals 8816dd593c test/udev-test.pl: create rules only once 214418632d test/udev-test.pl: allow multiple devices per test 1eb6b23f27 udev-test: do not rely on "mail" group being defined 4a0a4dcf10 udev: Fix sound.target dependency (bsc#1179363)- Enable support for zstd compression systemd-journald will now use zstd for compressing large fields in journal files. systemd-coredump will also use this algorithm to compress coredump files. Please note that systemd older than v246 won't be able to read new journal files as zstd algorithm is not supported by these versions. This incompatible change was actually not the only one introduced by v246 since the hash tables in journal files have been hardened against hash collisions too in an incompatible way with older versions.- Explicitly require group(kvm) by udev: the group used to be created by system-users-hardware, but has been split/moved to qemu/kvm, where it is more logical. The file /usr/lib/udev/rules.d/50-udev-default.rules references this group, thus we should make sure the group exists. Otherwise there are errors in the journal in the form of: /usr/lib/udev/rules.d/50-udev-default.rules:86 Unknown group 'kvm', ignoring- Import commit d5e7958d35dc7758fe2e87e0a8193b93ce1a1b15 (merge of v246.7) 450792497e sd-event: fix delays assert brain-o (#17790) 1040a19d08 udevadm: rename option '--log-priority' into '--log-level' a7b41e19bd udev: rename kernel option 'log_priority' into 'log_level' For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/f6104ea5f554233e34b94ffd92da8332c3bd7d8f...d5e7958d35dc7758fe2e87e0a8193b93ce1a1b15- Import commit f6104ea5f554233e34b94ffd92da8332c3bd7d8f 617aed9236 scope: on unified, make sure to unwatch all PIDs once they've been moved to the cgroup scope- Don't post-require systemd-default-settings-branding anymore This is actually not needed now that the branding package issues a PID1 reloading every times it's being updated.- Import commit 49caf8e37aba04841e5493ccc25e7edab462d95b f8f7286527 units: restore sysfs conditions in sys-fs-fuse-connections.mount and sys-kernel-config.mount e9c7158dc7 units: wait until some fs modules are entirely loaded before mounting their corresponding filesystem (bsc#1178631) ac7ddc4201 Revert "units: skip modprobe@.service if the unit appears to be already loaded" 17310a1d19 core: serialize u->pids until the processes have been moved to the scope cgroup (bsc#1174436) 1416965614 meson: add option to skip installing to $sysconfdir f71a1ef5d0 systemctl: give a nice hint about org.freedesktop.LogControl1 when applicable 20a3f9fd95 systemctl: immediately reject invalid log levels 9f67d2e57b systemctl: merge log_target(), log_level(), service_log_setting() ddf7cf4872 systemctl: add service-log-{level,target} verbs 026d7d156d systemctl: list unit introspection verbs first, modification second- systemd-default-settings is needed by %post scriptlet- Revert the change that dropped %{release} from the package version constraints used in Requires: The release number is actually relevant since it can be increased when some patches, which might touch multiple sub-packages of systemd, are added/modified. However the %{release} is still no more used in conflicts.- Import commit fdce77ce2067f9dd90d816bad28b51efed0b6dc1 05fff5bd02 generator: use kmsg in system-level generators, journal otherwise ecc07954de log: normalize log target condition check d32ceea42b log: update comment 2ebad02b60 basic/virt: Detect PowerVM hypervisor (bsc#1176800)- Simplify systemd-sysv-convert - the previous code incorrectly assumed that the sysv init scripts were uninstalled before %post get executed. It therefore save the enablement state in %pre and restore it in %post. Now all is done in %post (making --save option useless) and there's no more need to remember the enablement state. - "--save" option is a NOP but is still kept for backward compatibility. - the previous simplifcation made /var/lib/systemd/migrated no more used. - we do not search for units in /lib/systemd anymore, this shouldn't be needed anymore these days especially since this path was only used when systemd was introduced in openSUSE and it was never used in SLE (checked SLE12-GA). - the option --show has been dropped. It's never been used even internally. - the DB is populated only once even if the script was enabled at multiple runlevels. The runlevel info was never used. A dummy value is still added to keep the same format just in case.- No more need to clean the journal-upload stuff with --without=journal_remote Since -Dremote build option has been introduced with meson, this workaround is no more needed.- Move journal-{remote,upload}.conf.5.gz man pages into systemd-journal_remote sub package- Explicitly list files in /usr/lib/sysusers.d shipped by the main package Currently only one config file is shipped in this directory and we want to check any new files that may be added in the future.- Use %{_modulesloaddir}, %{_environmentdir} and %{_modprobedir} wherever appropriate- Do not include %{release} in a few places where we explicitly mention package versions It's usually not a good idea especially when used with conflicts.- Rely on systemd-default-settings for overriding system default settings (bsc#1172517) The new branding packages now ships the drop-ins to customize systemd either for an openSUSE or a SLE ditro.- Import commit d7b5ac76dc95ddf30e707d26998e36303e9f52a7 (merge of v246.6) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/1cab0d44584687ace92d1df30eadf264231e3b65...d7b5ac76dc95ddf30e707d26998e36303e9f52a7- Ship {/usr/lib,/etc}/systemd/network directories in the main package These directories can be used by both udevd and networkd.- Remove dangling symlink /usr/lib/systemd/system/sockets.target.wants/systemd-journald-audit.socket Otherwise the build system complains.- Import commit 1cab0d44584687ace92d1df30eadf264231e3b65 (include v246.5) 304ec2c7ab fstab-generator: add 'nofail' when NFS 'bg' option is used (bsc#1176513) 6ae277fb37 test: adapt TEST-21-SYSUSERS for SUSE acd8bfd2cc test: adapt TEST-13-NSPAWN-SMOKE for SUSE [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/a4e393eecb9dbe140a6c7d57419c291d786155cf...1cab0d44584687ace92d1df30eadf264231e3b65- Drop 0001-udev-temporarly-restore-the-creation-a-few-symlinks-.patch linuxrc has already been fixed.- Add 0001-udev-temporarly-restore-the-creation-a-few-symlinks-.patch A temporary patch until the installer environment is updated to create some of the symlinks that udevd used to create during its startup but now udevd relies on the init system to do so.- Rework how we prevent journald from both enabling auditd and recording audit messages journald.conf gained a new setting Audit= to control whether journald enables audit during the boot process. So let's use it and make sure it's disabled by default by shipping a drop-in that overrides upstream default. Also we used to patch systemd to prevent journald from reading the audit messages. There's still no way for downstream to configure that properly (we would need to mask systemd-journald-audit.socket meaning shipping a symlink in /etc) but I think dropping systemd-journald-audit.socket from the package is a nicer way to do that as some users might choose to reenable this setting (by reintroducing the socket unit in /etc).- Enable audit support (bsc#1175883) Enabling audit support in systemd will only make PID1 (and some of its services) to generate some audit records for certain events. But it doesn't affect journald, which has been prevented from recording audit messages in the journal (SUSE specific behavior).- Upgrade to v246.4 (commit f1344d5b7f31e98aedb01e606f41d74d3caaf446) See https://github.com/openSUSE/systemd/blob/SUSE/v246/NEWS for details. Now that the number of SUSE specific patches has been shrinked and is pretty low (12 at the time of this writing), they are no more tracked by the git repo and are now handled at the package level. Hence It is easier to maintain and identify them. This effectively means that SUSE/v246 will contain upstream commits only. Added 0001-restore-var-run-and-var-lock-bind-mount-if-they-aren.patch Added 0002-rc-local-fix-ordering-startup-for-etc-init.d-boot.lo.patch Added 0003-strip-the-domain-part-from-etc-hostname-when-setting.patch Added 0004-tmpfiles-support-exclude-statements-based-on-file-ow.patch Added 0005-udev-create-default-symlinks-for-primary-cd_dvd-driv.patch Added 0006-sysv-generator-add-back-support-for-SysV-scripts-for.patch Added 0007-networkd-make-network.service-an-alias-of-systemd-ne.patch Added 0008-sysv-generator-translate-Required-Start-into-a-Wants.patch Added 0009-pid1-handle-console-specificities-weirdness-for-s390.patch Added 0010-journald-disable-audit-support-completely-from-the-j.patch Added 0011-core-disable-session-keyring-per-system-sevice-entir.patch Added 0012-resolved-create-etc-resolv.conf-symlink-at-runtime.patch- Adjust %pre and %post for the restoration of upstream tmp.mount (boo#1175779)- Import commit a4e393eecb9dbe140a6c7d57419c291d786155cf d8e3bd4e22 Revert "core: don't send SIGKILL to user@.service immediatly during shutdown"- Drop requirement on 'sysvinit-tools' It was used to workaround bug #886599 by explicitly calling vhangup(8) from getty@.service so when this service was stopped a virtually hangup on the specified terminal when were stopped to give the shell a few seconds to save its history. But this workaround was dropped since it had no effect (SLE12-GM was released with it but was still suffering from the bug) and was replaced by commit e9db43d5910717a108, which was released from v226 and backported to SLE12/SLE12-SP1.- Import commit 6d6d92930acad63f9b9029c305a672c32c550d2d (include merge of v245.7) 797ad47d3e vconsole-setup: downgrade log message when setting font fails on dummy console (bsc#1172195 bsc#1173539) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/b12cd8b89b4bccfcf972b47153a2b01cd7775932...6d6d92930acad63f9b9029c305a672c32c550d2d - Drop 0001-Revert-job-Don-t-mark-as-redundant-if-deps-are-relev.patch Upstream finally reverted it and it's part of both v245.7 and master.- Restore default upstream tmp.mount (/tmp as tmpfs) behaviour (boo#1173461)- migrate-sysconfig-i18n.sh: fix marker handling (bsc#1173229) The marker is used to make sure the script is run only once. Instead of storing it in /usr, use /var which is more appropriate for such file. Also make it owned by systemd package.- Fix inconsistent file modes for some ghost files (bsc#1173227) Ghost files are assumed by rpm to have mode 000 by default which is not consistent with file permissions set at runtime. Also /var/lib/systemd/random-seed was tracked wrongly as a directory. Also don't track (ghost) /etc/systemd/system/runlevel*.target aliases since we're not supposed to track units or aliases user might define/override.- Include in the package version the stable minor (if any). Also update the version shown by various command such as 'systemctl - -version' to show the stable number.- Don't restart udevd sockets during package update Otherwise we might miss kernel events as the daemon need to be stopped as well.- Import commit b12cd8b89b4bccfcf972b47153a2b01cd7775932 (include merge of v245.6) For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/a6d31d1a02c2718a064bbbc40d003668acf72769...b12cd8b89b4bccfcf972b47153a2b01cd7775932- no longer explicitly package setgid directory /var/log/journal (bsc#1172550). The bit will be set during %post by way of the systemd-tmpfiles invocation. This avoids a conflict with the permissions package and an rpmlint error popping up.- Fix build when resolved is disabled While at it sort the build conditionals.- Import commit a6d31d1a02c2718a064bbbc40d003668acf72769 bb6e2f7906 pid1: update manager settings on reload too (bsc#1163109) e9e8907b06 watchdog: reduce watchdog pings in timeout interval 385a8f9846 udev: rename the persistent link for ATA devices (bsc#1164538) 66018a12ae tmpfiles: remove unnecessary assert (bsc#1171145)- Disable bump of /proc/sys/fs/nr-open Hopefully a _temporary_ workaround until bsc#1165351 is fixed otherwise user instances crashes the system is using NIS (and the nscd cache is empty).- Drop legacy /sbin/{udevd,udevadm) symlinks hopefully for good Since boo#1160890 has been fixed since a couple of months now.- Drop content of /usr/share/factory/ (bsc#1170146) systemd ships several files in /usr/share/factory/etc that are copied to /etc in case those files are missing there. Unfortunately the content does not match the openSUSE defaults.- Drop most of the tmpfiles that deal with generic paths (bsc#1078466 bsc#1181831) They are problematic because some of them conflict with SUSE defaults. Therefore it seems better to let the revelant packages owning these paths to provide their own definitions instead. Meanwhile we still keep the homeless definitions in suse.conf until a better place is found for them. Drop 0001-Fix-run-lock-group-to-follow-openSUSE-policy.patch Drop 0001-SUSE-policy-do-not-clean-tmp-by-default.patch- Drop %tmpfiles_create portables.conf from %post of networkd sub-package It was probably mistakenly added because systemd-portable served as template for systemd-network.- Import commit 08cd65ac385c884ed6e4bd71128a0796f56ecd17 (include merge of v245.5) 1ceedf8535 meson: fix build of udev 'path_id_compat' builtin with meson 0.54 e61569d4a9 pid1: by default make user units inherit their umask from the user manager (bsc#1162698) 64fdacd5f1 user-util: rework how we validate user names (bsc#1170272) [...] For a complete list of changes, visit: https://github.com/openSUSE/systemd/compare/c5aa158173ced05201182d1cc18632a25cf43b94...08cd65ac385c884ed6e4bd71128a0796f56ecd17- Drop 0001-meson-fix-build-of-udev-path_id_compat-builtin-with-.patch It's been merged in 'openSUSE-Factory' branch otherwise this branch won't build anymore since meson has been upgraded to version 0.54 in Factory.- Switch back to the hybrid hierarchy Unfortunately Kubernetes and runc are not yet ready for cgroupsv2. Let's reconsider the unified hierarchy in a couple of months.- Import commit c5aa158173ced05201182d1cc18632a25cf43b94 (merge v245.4)- Add 0001-meson-fix-build-of-udev-path_id_compat-builtin-with-.patch- Import commit 31f82b39c811b4f731c80c2c2e7c56a0ca924a5b (merge v245.2) d1d3f2aa15 docs: Add syntax for templated units to systemd.preset man page 3c69813c69 man: add a tiny bit of markup bf595e788c home: fix segfault when parsing arguments in PAM module e110f4dacb test: wait a bit after starting the test service e8df08cfdb fix journalctl regression (#15099) eb3a38cc23 NEWS: add late note about job trimming issue 405f0fcfdd systemctl: hide the 'glyph' column when --no-legend is requested 1c7de81f89 format-table: allow hiding a specific column b7f2308bda core: transition to FINAL_SIGTERM state after ExecStopPost= 2867dfbf70 journalctl: show duplicate entries if they are from the same file (#14898) [...]- Upgrade to v245 (commit 74e2e834b4282c9bbdc12014f6ccf8d86e542b8d) See https://github.com/openSUSE/systemd/blob/SUSE/v245/NEWS for details. This includes the following bug fixes: - upstream commit 7f56982289275ce84e20f0554475864953e6aaab (CVE-2020-1712) - upstream commit 66a19d85a533b15ed32f4066ec880b5a8c06babd (bsc#1157315) - upstream commit 7f56982289275ce84e20f0554475864953e6aaab (bsc#1162108) The new tools provided by systemd repart, userdb, homed, fdisk, pwquality, p11kit feature have been disabled for now as they require reviews first. Default to the "unified" cgroup hierarchy. Indeed most prominent users of cgroup (such as libvirt, kubic) should be ready for such change. It's still possible to switch back to the old "hybrid" hierarchy by passing "systemd.unified_cgroup_hierarchy=0" option to the kernel command line though. Added 0001-Revert-job-Don-t-mark-as-redundant-if-deps-are-relev.patch: upstream commit 097537f07a2fab3cb73aef7bc59f2a66aa93f533 has been reverted for now on as it introduced a behavior change which has impacted plymouth at least.- add systemd-network-generator.service file together with systemd-network-generator binary- move html documentation to sparate package to save space - move networkd and resolved binaries into correct subpackage- Import commit f8adabc2b1f3e3ad150e7a3bfa88341eda5a8a57 (merge v244.2) 77c04ce5c2 hwdb: update to v245-rc1 b4eb884824 Fix typo in function name e2d4cb9843 polkit: when authorizing via PK let's re-resolve callback/userdata instead of caching it 83bfc0d8dd sd-bus: introduce API for re-enqueuing incoming messages 5926f9f172 polkit: use structured initialization 0697d0d972 polkit: on async pk requests, re-validate action/details 2589995acd polkit: reuse some common bus message appending code 5b2442d5c3 bus-polkit: rename return error parameter to ret_error 0a19ff7004 shared: split out polkit stuff from bus-util.c → bus-polkit.c 1325dfb577 test: adapt to the new capsh format 3538fafb47 meson: update efi path detection to gnu-efi-3.0.11 3034855a5b presets: "disable" all passive targets by default c2e3046819 shared/sysctl-util: normalize repeated slashes or dots to a single value 6f4364046f dhcp6: do not use T1 and T2 longer than one provided by the lease 0ed6cda28d network: fix implicit type conversion warning by GCC-10 f6a5c02d26 bootspec: parse random-seed-mode line in loader.conf ddc5dca8a7 sd-boot: fix typo 2bbbe9ae41 test: Synchronize journal before reading from it 072485d661 sd-bus: fix introspection bug in signal parameter names 80af3cf5e3 efi: fix build. [...]- Use suse.pool.ntp.org server pool on SLE (jsc#SLE-7683)- Drop scripts-udev-convert-lib-udev-path.sh Nobody should need it these days.- Temporarily restore /sbin/{udevd,udevadm) obsolete symlinks They're restored until YaST stop using them (see boo#1160890)- Import commit 8254b8d9646f3e0f5f8057d1ffb5d6c20f079aaa (merge v244.1) 639dc9f4bf network: set ipv6 mtu after link-up or device mtu change cbced49daa man: fix typo in net-naming-scheme man page 7dd04c99b0 network: tc: drop unused element bf4b7d07ba man: fix typos (#14304) 1ba2e7a730 ipv4ll: do not reset conflict counter on restart 49806bb310 macro: avoid subtraction overflow in ALIGN_POWER2() c4c1600689 test-network: add a test case for SendOption= 6f15b45949 network: fix segfault in parsing SendOption= 2e531b830d seccomp: real syscall numbers are >= 0 f7616ed52b network: fix copy and paste mistake e8b53300c4 network: do not drop foreign config if interface is in initialized state 00f05813bf seccomp: mmap test results depend on kernel/libseccomp/glibc 4de1909e61 seccomp: use per arch shmat_syscall d83010521d seccomp: ensure rules are loaded in seccomp_memory_deny_write_execute 2c6568221a seccomp: fix multiplexed system calls bcf0aa02bf Fix typo (duplicate "or") 96d7083c54 network: if /sys is rw, then udev should be around e874419902 nspawn: do not fail if udev is not running 29c9144655 Create parent directories when creating systemd-private subdirs 9cbb8b5254 network: do not return error but return UINT64_MAX if speed meter is disabled c08429ae33 core: swap priority can be negative f25c0be335 networkctl: fix to show BSSID 65fd2fce59 systemctl: enhance message about kexec missing kernel bdd0af5f81 Fixup typo in NEWS- Manually set system-uid-max and system-gid-max to 499 It used to be detected automatically by meson but it's been broken by the migration of login.defs from /etc to /usr/etc.- Import commit d8f6a204858bff68b8e0e7be86b418c36087ab2e 6c5e492a65 cryptsetup: umount encrypted devices before detaching it during shutdown- Upgrade to v244 (commit 090da85161ceb1ba0b4c208963c7156a8fdf10c6) See https://github.com/openSUSE/systemd/blob/SUSE/v244/NEWS for details. This includes the following bug fixes: - upstream commit b49e14d5f3081dfcd363d8199a14c0924ae9152f (bsc#1139459) - upstream commit 22683674716fd0e5b016ce5a7d8fd90df5f9f9e7 (bsc#1151377) - upstream commit faf205de3ba9a11b0ba17682123d7f3fedc7da24 (bsc#1151377) - upstream commit 27c3112dcbd1b5f171c36c32550d9c6331375b0b (bsc#1155574) - upstream commit 21b40f16622f171a9969dc334d74fb5eb2f575c2 (bsc#1159814) - upstream commit 9b88bb5023dfa3cea406c14fdaa3d8e3e320907a (jsc#SLE-7689) - upstream commit bc9ecd484f1ebfe0de8b567c90f6cd867fbd5894 (bsc#1141597) Legacy and obsolete symlinks have been finally dropped. Dropped 0001-logind-keep-backward-compatibility-with-UserTasksMax.patch. Users were notified about the deprecation of UserTasksMax option and how to move to the new mechanism. The dropin replacement for UserTasksMax is therefore no more generated but its use still produces a warning. Added 0001-SUSE-policy-do-not-clean-tmp-by-default.patch and 0001-Fix-run-lock-group-to-follow-openSUSE-policy.patch. These patches were extracted from the git repo because it's not clear where the SUSE tmpfiles specificities should be located.- Import commit dbb1d4734daffa62e0eddecfa4f784c84a9d8e76 1439d72a72 udevd: don't use monitor after manager_exit() 99288dd778 Revert "udevd: fix crash when workers time out after exit is signal caught" 152577d6d0 udevd: fix crash when workers time out after exit is signal caught f854991504 udevd: wait for workers to finish when exiting (bsc#1106383) Changes from the v243-stable (84 commits): e51d9bf9e5 man: add entry about SpeedMeter= aa1fc791c7 udev: silence warning about PROGRAM+= or IMPORT+= rules b9a619bb67 udevadm: ignore EROFS and return earlier 1ec5b9f80c basic: add vmware hypervisor detection from device-tree 7fa7080248 umount: be happy if /proc/swaps doesn't exist [...] 47d0e23d26 udev: fix memleak caused by wrong cleanup function a6fb0542c5 parse_hwdb: fix compatibility with pyparsing 2.4.* cb1d892f17 parse_hwdb: process files in order- Import commit 0b715187a87907e18edf98eab9d0a50fced4a424 9dbdbc2f10 logind: fix (again) the race that might happen when logind restores VT (bsc#1101591 bsc#1140081) c848bec110 libblkid: open device in nonblock mode. (bsc#1084671) b70ad6c927 resolved: check for IP in certificate when using DoT with GnuTLS (bsc#1155539 CVE-2018-21029) bbedf3d557 resolved: require at least version 3.6.0 of GnuTLS for DNS-over-TLS eb732c2e29 resolved: fix connection failures with TLS 1.3 and GnuTLS 4e45084ac5 shared/install: failing with -ELOOP can be due to the use of an alias in install_error() 2e297f0d87 shared/install: fix error codes returned by install_context_apply() dd29d70d32 man: alias names can't be used with enable command- Fix %{_libexecdir} misuses of /usr/lib- Drop 0001-compat-rules-escape-when-used-for-shell-expansion.patch It's part of the previous import.- Import commit b7467b7b553d6d0d6f92758d966b69f1a88b6b42 441f44f371 fileio: introduce read_full_virtual_file() for reading virtual files in sysfs, procfs (bsc#1133495) 8a1bb5c66b swap: do not make swap units wanted by its device unit anymore- Import commit 5df9000899ef7d45ddbcacd0fdf73afa07a40f6b f0ed7237e4 udev/cdrom_id: Do not open CD-rom in exclusive mode. (bsc#1154256) b37054aa5a compat-rules: escape '$' when used for shell expansion Changes from the v243-stable: ef677436aa test: Pass personality test even when i686 userland runs on x86_64 kernel 3f6398c450 docs: fix inadvertent change in uid range 25bb377a73 cgroup: fix typo in BPF firewall support warning message 6d97aca0d5 fix build with compilers with default stack-protector enabled fbad077cec nspawn: surrender controlling terminal to PID2 when using the PID1 stub 0553c3c668 pid1: fix DefaultTasksMax initialization f406a691a7 src/core/automount: use DirectoryMode when calling mkdir -p 20438f96c3 udevadm trigger: do not propagate EACCES and ENODEV 6480630bc3 hwdb: Correct WWWW Pattern In Documentation Comment 9d8e889810 nspawn: consistenly fail if parsing the environment fails 40e169b304 nspawn: default to unified hierarchy if --as-pid2 is used b5df1037a0 cgroup: Mark memory protections as explicitly set in transient units f14e3e02cc cgroup: Respect DefaultMemoryMin when setting memory.min ea248e53bf cgroup: Check ancestor memory min for unified memory config de1d25a506 cgroup: docs: memory.high doc fixups 2ab45f38d8 cgroup: docs: Mention unbounded protection for memory.{low,min} 19a43dc38a Consider smb3 as remote filesystem 5c0224c7bf Handle d_type == DT_UNKNOWN correctly 8282bc61df util-lib: Don't propagate EACCES from find_binary PATH lookup to caller 9d0ae987a6 network: drop noisy log message f67f0e4ec4 Updated log message when the timesync happens for the first time (#13624) e151bf4674 units: make systemd-binfmt.service easier to work with no autofs 2b8e574d82 Corect man page reference in systemd-nologin.conf comments a0577353f1 man: Add a missing space in machinectl(1) 693e983988 log: Add missing "%" in "%m" log format strings ea7151b8c4 pid1: do not warn if /run/systemd/relabel-extra.d/ doesn't exist b90549290e man: fix typo- Remove intltool BuildRequires, not needed since v237 - Use python3-base BuildRequires instead of full python3- Add 0001-compat-rules-escape-when-used-for-shell-expansion.patch (bsc#1153648) Added to the quaratine area to avoid uploading a new tar ball just for that single change. It will be dropped during the next import.- don't package locales in -mini package- Import commit 428b937f917ae177f2315e8469800941885e441a 0026b58744 pid1: fix DefaultTasksMax initialization- Import commit ed81f69153488279957268e247a5c81b678da491 (changes from v243-stable) fab6f010ac dhcp6: use unaligned_read_be32() f2d9af4322 dhcp6: add missing option length check ccf797511e ndisc: make first solicit delayed randomly f2275b6e12 dhcp6: read OPTION_INFORMATION_REFRESH_TIME option 6dfbe58ee7 l10n: update Czech Translation d4cd0e9d32 sd-radv: if lifetime < SD_RADV_DEFAULT_MAX_TIMEOUT_USEC, adjust timeout (#13491) dbefe59259 polkit: fix typo a321507476 sd-netlink: fix invalid assertion 45dca7fe86 network: do not enter failed state if device's sysfs entry does not exist yet dd83d58796 network: add missing link->network checks b294305888 path: stop watching path specs once we triggered the target unit 2cd636c437 hwdb: add Medion Akoya E2292 (#13498) d133bdd1fa po: update Brazilian Portuguese translation 530e09b594 po: update Polish translation 0c5c3e34c1 polkit: change "revert settings" to "reset settings" 73e0f372d8 man: fix description of ARPIntervalSec= units 5412cc54a1 hwdb: axis override for Dell 9360 touchpad 9d4e658529 test: drop the missed || exit 1 expression 7ed7ea82f6 udevadm: use usec_add() 477bf86c91 udevadm: missing initialization of descriptor 19ac31c989 networkd: unbreak routing_policy_rule_compare_func() a20a2157a8 core: coldplug possible nop_job eb55241742 tty-ask-pwd-agent: fix message forwarded to wall(1) 1a3c53c06c core: Fix setting StatusUnitFormat from config files 91db81e4dd network DHCP4: Dont mislead the logs. 6af590838b Update m4 for selective utmp support. modified: tmpfiles.d/systemd.conf.m4 6823c907cf core: restore initialization of u->source_mtime 29308bcc13 mount-setup: relabel items mentioned directly in relabel-extra.d 8ca1e56165 Call getgroups() to know size of supplementary groups array to allocate 5d84a7ad1c test: add test cases for empty string match 1536348cc8 udev: fix multi match 3ccafef0ad man: move TimeoutCleanSec= entry from .service to .exec 8c0c30a820 zsh: udpate bootctl completions 0556c247a2 resolved: fix abort when recv() returns 0 9a25d75520 man: remove repeated words be3be29347 hwdb: Also mark lis3lv02d sensors in "HP" laptops as being in the base 4b92ffccaa udev: also logs file permission 75a2845e5a udev: add missing flag for OPTIONS=static_node 19e9fc4262 network: do not abort execution when a config file cannot be loaded 3e1267cf50 fileio: update warning message 1b3156edd2 pstore: fix use after free f500d2fa81 journal: Make the output of --update-catalog deterministic 64d0f7042d travis: protect the systemd organization on Fuzzit from forks 4247938ee1 hwdb: Mark lis3lv02d sensors in HP laptops as being in the base 379158684a po: update Japanese translation 31e1bbd1ca docs: fix push recipe in RELEASE.md f06530d86b man/systemctl.xml: fix missing "not" 22aba2b969 docs: fix typo in boot loader doc 000e08ca70 pstore: fix typo in error message - directoy -> directory f7f9c69ac5 Fix typo in comment: overide -> override ca8ba8f8c0 po: update Polish translation- Some files related to the portable stuff were missing some %exclude- Allow YaST to select Iranian (Persian, Farsi) keyboard layout (bsc#1092920)- split off networkd and resolved into separate network subpackage - use separate lang package for translations- Import commit 9e41d7ec3572d8d5ea1e00f683e9fbf8108e85b4 fb1b9d54f9 tty-ask-pwd-agent: fix message forwarded to wall(1) dd14da3bb6 core: restore initialization of u->source_mtime d62f30f647 resolved: create /etc/resolv.conf symlink at runtime- Slighly rework (mostly reorganization) the portable stuff- Track 0001-resolved-create-etc-resolv.conf-symlink-at-runtime.patch in the git repo This patch has been in the quarantine area long enough, so let's move it in the git repo.- Upgrade to v243 (commit e0b24c4356aa0c1c56ff274ff72228f33482a5be) See https://github.com/openSUSE/systemd/blob/SUSE/v243/NEWS for details. This includes the following bug fixes: - upstream commit b2774a3ae692113e1f47a336a6c09bac9cfb49ad (CVE-2019-20386 bsc#1161436) - upstream commit 5406c36844b35504a64e9f05fc74b8e5e5a09143 (bsc#1132400) - upstream commit 83a32ea7b03d6707b8e5bb90a0b3a6eb868ef633 (bsc#1132721) - upstream commit 7cc5ef5f1811c539ae7f20255c2a093f413cc64f (bsc#1172824 bsc#1142733) - upstream commit 83cb24ac20baf19f7834931dcf6e03486b4c9c30 (bsc#1156213) - upstream commit a2dcb1d78737d3daa301ee63fbdd02837acb71a8 (bsc#1158485) - upstream commit 08185cff19efcb1d7d9fb7b546e7f516ab6dae91 (bsc#1165011) - upstream commit 59c55e73eaee345e1ee67c23eace8895ed499693 (bsc#1177510) Drop 0001-Revert-insserv.conf-generator.patch as it's been dropped from branch SUSE/v243 while we were rebasing. Drop 0001-rc-local-generator-deprecate-halt.local-support.patch as this functionality had been deprecated during the previous release and now have been dropped by upstream.- enable systemd-portabled- systemd-container creates and owns /etc/systemd/nspawn now- Import commit 0f9271c1336c5c9055e75389732a44745d796851 (changes from v242-stable) 07f0549ffe network: do not send ipv6 token to kernel 9d34e79ae8 systemd-mount: don't check for non-normalized WHAT for network FS 5af677680c core: set fs.file-max sysctl to LONG_MAX rather than ULONG_MAX (bsc#1142099) 29dda7597a random-util: eat up bad RDRAND values seen on AMD CPUs eb6c17c178 util-lib: fix a typo in rdrand 829c20dc8e random-util: rename "err" to "success" 5442366fbf man: rework the description of Aliases and .wants/.requires directories ae71c6f634 docs: typo in arg name replace-irreversible -> replace-irreversibly 09774a5fcb meson: make nologin path build time configurable 69ffeeb0b1 man: add note about systemctl stop return value 4cf14b5513 shared/conf-parser: say "key name" not "lvalue", add dot 4481ca7f86 shared/conf-parser: emit a nicer warning for something like "======" 46f3db894b shared/conf-parser: be nice and ignore lines without "=" 7d928995f7 nspawn: fix memleak in argument parsing 7727e6c0ae resolve: fix memleak 7f32a81976 journal: properly read unaligned le64 integers fa419099e5 activate: move array allocation to heap 815a9fef2a systemctl: print non-elapsing timers as "n/a" not "(null)" a4fc3c88f1 factory: include pam_keyinit.so in PAM factory configuration a453d63315 factory: add comment to PAM file, explaining that the defaults are not useful d9a5a70a59 factory: tighten PAM configuration 5e2d3bf80b test: make sure colors don't confuse our test 5fe3be1334 wait-online: change log level c49b6959d5 systemctl: emit warning when we get an invalid process entry from pid1 and continue 3c9f43eb03 systemctl: do not suggest passing --all if the user passed --state= 5964d1474e man: offline-updates: make dependence on system-update.target explicit a04dd26e03 alloc-util: drop _alloc_ decorator from memdup_suffix0() 7c46a694ca man: add example for setting multiple properties at once 1d72789271 man: CPUShares= is so 2015 45da304673 man: document that WakeSystem= requires privs bed58a06e4 man: document that "systemd-analyze blame/critical-chain" is not useful to track down job latency c5461f31b3 man: be more explicit that Type=oneshot services are not "active" after starting 455ee07abe man: document that the supplementary groups list is initialized from User='s database entry 5f0cb2616a alloc-util: drop _alloc_(2, 3) decorator from memdup_suffix0_multiply() 7bc336794d generator: downgrade Requires= → Wants= of fsck from /usr mount unit 66465c4381 systemctl: allow "cat" on units with bad settings ca937b49da pid1: fix serialization/deserialization of commmands with spaces 4bb3113023 growfs: call crypt_set_debug_level() correctly, skip if not needed 0db716771e cryptsetup: enable libcryptsetup debug logging if we want it c8b9b3956f cryptsetup: set libcryptsetup global log callback too 679b3f6b7f basic/log: fix SYSTEMD_LOG_* parsing error messages 8d6b5158aa units: add SystemCallErrorNumber=EPERM to systemd-portabled.service 6681fcd445 network: fix the initial value of the counter for brvlan 853ec5f458 man: Add some notes about variable $prefix for StateDirectory= e6d23358e9 sd-netlink: fix inverted log message 6feb862407 blockdev: filter out invalid block devices early 9f7c0dbc75 blockdev-util: propagate actual error 3f5355bcb9 man: document tmpfiles.d/ user/group resolvability needs c15b92cd98 man: fix wrong udev property name 9768a900d6 meson: drop duplicated source 15194f22ed cryptsetup-generator: fix luks-* entry parsing from crypttab c2475390b4 core: skip whitespace after "|" and "!" in the condition parser fdc754aeb7 shared/condition: fix printing of ConditionNull= 572385e135 test: add testcase for issue #12883 9aa1edddb0 conf-parser: fix continuation handling 8fbc72f45f networkd: fix link_up() (#12505)- State directory of systemd-timesync might become inaccessible after upgrading to v240+ (bsc#1137341) This happens for users who had previously used systemd-timesync with DynamicUser=true, ie the ones who upgraded from a systemd version between v235 and v239 to systemd v240 and later (v240 was the version where DynamicUser was switched back to OFF).- Import commit eaa7b8b148927d471609de75e542dffcc1b36df4 7e58b89136 udevd: change the default value of udev.children-max (again) (bsc#1107617)- Add 0001-rc-local-generator-deprecate-halt.local-support.patch /etc/init.d/halt.local support will removed from the next systemd version (v243) so for now on warn (hopefully the few) users who rely on this script so they have a chance to switch to systemd-shutdown interface.- Add 0001-Revert-insserv.conf-generator.patch (bsc#1052837) All remaining packages have been fixed so they don't rely on the insser-generator to generate proper deps. So let's drop it as all services should carry the proper dependencies itself.- Drop debug-only-remove-new-policies.patch The new DBUS methods have been reviewed by the security team.- Import commit 9984a86d0d2259d54c7060f9c09f214202b4efa7 f2459bf373 random-util: eat up bad RDRAND values seen on AMD CPUs c90a2e9793 util-lib: fix a typo in rdrand 4db1cc9d46 random-util: rename "err" to "success" 981a62a102 random-util: hash AT_RANDOM getauxval() value before using it 64a9c3d918 random-util: use gcc's bit_RDRND definition if it exists c5d6ecfdca random-util: rename RANDOM_DONT_DRAIN → RANDOM_MAY_FAIL 298d13df7e network: remove redunant link name in message 77cbde31f2 hwdb: Align airplane mode toggle key mapping for all Acer series 460f03794e Revert "hwdb: Apply Acer mappings to all Gateway and Packard Bell models" fe9271ad84 test: return a non-zero return code when 'nobody' user doesn't exist 29d355e755 fstab-generator: Prevent double free of reused FILE* f30f1adc11 meson: make source files including nspawn-settings.h depend on libseccomp 84bab914b8 alloc-util: don't use malloc_usable_size() to determine allocated size 5240972d8d units: drop reference to sushell man page 0a26de5e33 codespell: fix spelling errors 582de105c8 nspawn-expose-ports: fix a typo in error message- Buildrequire polkit so /usr/share/polkit-1/rules.d has an owner (bsc#1145023) Otherwise the "post build checks" would complain and would force systemd to own this directory. The owner should still be "polkit" and the perms should be in sync with the perm set by polkit itself.- Add debug-only-remove-new-policies.patch A temporary patch to suppress the new DBUS methods introduced by v242 until they are reviewed and whitelisted by the secteam.- Add a comment explaining why static enablement symlinks in /etc are suppressed Also remove any /etc/systemd/system/*.requires/ symlinks for the same reason.- preset remote-cryptsetup.target during package installation This target is supposed to be part of the targets that should be enabled (or not depending on the presets) at package installation.- Upgrade to v242 (commit 071c380dcc434dca2a0c8b6de0519cc9e816c6d6) See https://github.com/openSUSE/systemd/blob/SUSE/v242/NEWS for details. This includes the following bug fixes: - upstream commit bf65b7e0c9fc215897b676ab9a7c9d1c688143ba (CVE-2019-3843) - upstream commit bf65b7e0c9fc215897b676ab9a7c9d1c688143ba (CVE-2019-3844) - upstream commit 37ed15d7edaf59a1fc7c9e3552cd93a83f3814ef (bsc#1124122) - upstream commit bf65b7e0c9fc215897b676ab9a7c9d1c688143ba (bsc#1133506) - upstream commit bf65b7e0c9fc215897b676ab9a7c9d1c688143ba (bsc#1133509) - upstream commit 1f82f5bb4237ed5f015daf93f818e9db95e764b8 (bsc#1150595) - upstream commit e55bdf9b6c5f72475b258a7a4585a0480551cb60 (bsc#1173422)- Drop "BuildRequires: -post-build-checks" from the specfile (bsc#1130230) The syntax of this directive is obsolete and should be replaced by "#!BuildIgnore: post-build-checks". However there's no good reasons to disable these SUSE extra checks, so let's re-enable them and fix the few errors it detected.- Import commit 4e6e66ea94cf5125f9044f0869939a86801ed2d8 430877e794 pam-systemd: use secure_getenv() rather than getenv() (bsc#1132348 CVE-2019-3842) 3cff2e6514 man: document that if the main process exits after SIGTERM we go directly to SIGKILL 26c4f7191c bus: fix memleak on invalid message- systemd-coredump: generate a stack trace of all core dumps (bsc#1128832 jsc#SLE-5933) This stack trace is logged to the journal.- Stop installing macros.systemd There're no points in installing this file if we remove it right after.- Make sure systemd-network.rules take precedence over our polkit-default-privs (bsc#1125438)- Include the SUSE version along with the major version of systemd $ systemctl --version systemd 241 (+suse.42.g15a1b4d58) Note that the SUSE version format maybe subject to change and as such scripts should not try to parse it.- systemd-mini: explicitly disable some of the systemd components For some reasons, some build requirements get pulled in for the mini variant now, enabling some parts of the code that were expected to be turned OFF.- Upgrade to v241 (commit 15a1b4d58f1d2bc9c21c7cbab6fe63b58e48bda1) This includes the following bug fixes: - upstream commit c0d76959080e3ba6534bce1c7053c750668e8b55 (bsc#1160595) - upstream commit 7334ade4a7e103b1a01d1c8fe1ea7c7a854a1c31 (bsc#1123892) - upstream commit c7e93c4d15019323973baf12daa76357c83892c4 (boo#1111498) This also includes the following bug fixes released in v240: - upstream commit 2675747f3cdd6f1e6236bbb2f79abfa53fb307f1 (boo#1111498) - upstream commit 9eb0fc32d6cb63e71f2cfc1e7dd34c3ede4b48a3 (bsc#1140631) - upstream commit 1432d2dbdfa90963272a9b581dc4b55dd3ac514f (bsc#1155574) - upstream commit 26e35b164b8d0603629b3d394554cfa728e8c3e4 (bsc#1169488) - upstream commit a9fc640671ef60ac949f1ace6fa687ff242fc233 (fate#325697)- Import commit a1d86af7ed49dacef671e8ec8dae9472a8fa47f5 92d860fc12 sysctl: Don't pass null directive argument to '%s' (bsc#1121563) 1379e30d59 Allocate temporary strings to hold dbus paths on the heap (bsc#1125352 CVE-2019-6454) b5569a03ae Refuse dbus message paths longer than BUS_PATH_SIZE_MAX limit. (bsc#1125352 CVE-2019-6454)- Import commit 01b4746d3c6f6cbf969fa2176c77ac3f616a7eda 7af53e005b sd-bus: if we receive an invalid dbus message, ignore and proceeed 92dcbfdd7f bus: move BUS_DONT_DESTROY calls after asserts a83e7b3b43 automount: don't pass non-blocking pipe to kernel. 726127ea1d units: make sure initrd-cleanup.service terminates before switching to rootfs (bsc#1123333) a6347a3cb6 core: Fix use after free case in load_from_path() (bsc#1121563) 22e2550222 strv: rework FOREACH_STRING() macro (bsc#1121563) 2ddd38f41a test,systemctl,nspawn: use "const char*" instead of "char*" as iterator for FOREACH_STRING() c2c8333e0b strv: add new macro STARTSWITH_SET() 1db243a601 Update systemd-system.conf.xml (bsc#1122000)- Import commit ad34cc45f63720ced69960dc66b47bddb146176d Import a bunch of fixes from stable/v239-stable: c8293f5af4 Revert "network: set DynamicUser= to systemd-networkd.service" 7f605592e6 Revert "resolve: enable DynamicUser= for systemd-resolved.service" 5a48e92e06 test: Fix networkd test for an already running service 36eae1688b Revert "timesyncd: enable DynamicUser=" 3a11f24cf0 Revert "unit: drop After=systemd-sysusers.service from timesyncd" 23cfd15ce9 machinectl: fix verbosity of import-raw or friends ba037daf29 Make bzip2 an optional dependency for systemd-importd fb609d2721 pull: initialize libgcrypt before calling any functions provided by libgcrypt c50857bc6b hwdb: remove stray 'i' in hwdb match string for the HP Spectre (#9571) 9a12fd17f5 man: Mention that paths in unit files must be fully normalized. 76fc2ab4a6 tree-wide: use instead of #ifdef for HAVE_* fcc699c093 network: update log message a4f497b2cd Use #if instead of #ifdef for ENABLE_GSHADOW 121c662eb8 man: add missing option for system.conf 564341146e core: add missing option and drop nonexistent option in system.conf 7082a3599f journal: add missing option in journald.conf 3c15efa9c1 basic: add missing comma in raw_clone assembly for sparc 4c210b6dce cryptsetup: Add dependency on loopback setup to generated units c777fbbe3e journal-gateway: use localStorage["cursor"] only when it has valid value c5b1bef639 journal-gateway: explicitly declare local variables 2361522ca6 analyze: actually select longest activated-time of services 3e810d92d9 sd-bus: fix implicit downcast of bitfield reported by LGTM aef660a4cf resolvconf: fixes for the compatibility interface 06b3f54f50 install: fix error handling in is_symlink_with_known_name() f70ab9a468 portable: fix error handling d2c40d4e80 resolve: fix return value type of dns_answer_has_dname_for_cname() 6f684e0670 resolve: dns_scope_network_good() does not returns negative errno 15d83e1138 bus-util: fix error handling ba0a1f3384 core: free lines after reading them- Import commit 3bece8a25ae11e8ec132cdecc7e72a00ee790994 89a9721a47 Revert "logind: become the controlling terminal process before restoring VT" (bsc#1120836) c3a8dc821b pam_systemd: reword message about not creating a session 0ba0f5b3ef pam_systemd: suppress LOG_DEBUG log messages if debugging is off- Import commit a3b059a8c60622e4ec30aabda93c6b41d0953dc4 9dbe9f12ec journal-remote: set a limit on the number of fields in a message (CVE-2018-16865 bsc#1120323) 61d569ab1b journal-remote: verify entry length from header a08760b26c µhttpd: use a cleanup function to call MHD_destroy_response 43f46a1a3d journal-gateway: use _cleanup_ attribute to stop microhttpd daemon 437b0b2d01 journald: lower the maximum entry size limit to ½ for non-sealed fds ac9e209710 journald: when processing a native message, bail more quickly on overbig messages ce103705b9 journald: set a limit on the number of fields (1k) (CVE-2018-16865 bsc#1120323) 35538171c2 coredump: fix message when we fail to save a journald coredump cfe247b555 basic/process-util: limit command line lengths to _SC_ARG_MAX 9d59e6f6ee journald: do not store the iovec entry for process commandline on stack (CVE-2018-16864 bsc#1120323) 8d650a68d4 journald: remove unnecessary {} b608f532a4 coredump: remove duplicate MESSAGE= prefix from message 0dbb2dc066 vconsole-setup: fonts copy will fail if the current terminal is in graphical mode (bsc#1114933) e501d65540 Revert "systemctl: when removing enablement or mask symlinks, cover both /run and /etc" d3ea69961f fs-util: rename safe_transition() into unsafe_transition() 338470fdc9 tmpfiles: use CHASE_WARN in addition to CHASE_SAFE d9ae1b30da fs-util: make chase_symlink() returns -ENOLINK when unsafe transitions are met 8b76594d1f fs-util: add new CHASE_WARN flag to chase_symlinks()- Import commit 8ae56af7802ef8f91fac64fa244d62a4468fbbd5 4474878178 udev-builtin-kmod: adjust logging 805534aff5 core: use the generic module_load() function ac7e902530 shared/module-util: fix preexisting mixup with errno sign 415aa40793 udev-builtin-kmod: use the generic module_load() function 8a36b4bac6 Move module-util.h to src/shared/ and load_module() to libshared 999b910752 core/kmod-setup: restore comments 1f2b822a21 logind: stop managing VT switches if no sessions are registered on that VT 5ad8d374c5 terminal-util: introduce vt_release() helper 145d492490 logind: become the controlling terminal process before restoring VT (bsc#1101591) d4b5dbc033 terminal-util: introduce vt_restore() helper 2e8af185f0 logind: make session_restore_vt() static ff3048364f udev: downgrade message when we fail to set inotify watch up (bsc#1005023)- Fix the test for figuring out if /etc/machine-id is writable in %post (bsc#1117063) "test -w" always returns true for root user even if the writable mode bits are not set. Fix this by testing the file mode bit value instead.- Move systemd-sysv-convert from /usr/sbin to /usr/lib/systemd (bsc#1178156) This tool is not supposed to be run by users.- Import commit 69f9f79e1b03e3d23df25b61cbcc9304af3e358f (bsc#1080919 CVE-2018-6954) f3615ce49 tmpfiles: don't adjust qgroups on existing subvolumes (bsc#1093753) 7165e92f4 tmpfiles: use fd_get_path() even less excessively c2c531c1d test: make TEST-22 easier to debug, by outputting to /dev/console 621b78317 test: don't use "nobody:nogroup" for tests 1f9c7acad tmpfiles: return correct error variable after fd_reopen() 2236280c1 tmpfiles: reindent one comment less weirdly f6bdfb889 tmpfiles: use correct error variable bc75127cd tmpfiles: clarify that we ignore file attribute setting errors 621c8b1fe tmpfiles: add log message where we previously failed silently bc9229630 tmpfiles: use fd_get_path() less excessively 5a1106039 tmpfiles: add more tests c974086cc tmpfiles: don't follow unsafe transitions in path_set_*() e64a510eb fs-util: add new CHASE_NOFOLLOW flag to chase_symlinks() 7480154d0 tmpfiles: make create_fifo() safe eb890962c fs-util: introduce mkfifoat_atomic() helper 653bb81af fileio: make tempfn_random_child() accept empty string as path 2b1e12bfe tmpfiles: introduce create_fifo() 6dd80f289 tmpfiles: introduce empty_directory() f2c137edf tmpfiles: introduce create_directory() and create_subvolume() and make them safe 6a76f6dfb basic/stat-util: introduce is_dir_fd() 38a7f2e81 btrfs-util: unfuck tmpfiles' subvol creation 26e19b6fe btrfs-util: introduce btrfs_subvol_make_fd() 5fb5bdf5d basic/label: introduce mkdirat_label()/mkdirat_errno_wrapper() helpers 390b767da selinux: introduce mac_selinux_create_file_prepare_at() 0f72fadba smack: introduce mac_smack_fix_at() f2838154b tmpfiles: introduce create_directory_or_subvolume() 2de697fb8 tmpfiles: make create_device() safe 558c5fec7 tmpfiles: introduce create_device() dee986b1d tmpfiles: make copy_files() safe cacb14d3f tmpfiles: introduce copy_files() routine 81c85ce17 tmpfiles: make write_one_file() safe 9ec6b92ab tmpfiles: make truncate_file() safe 8dde36e03 tmpfiles: introduce truncate_file() which deals with 'F' exclusively 481134a93 tmpfiles: introduce create_file() which deals with 'f'/'F' exclusively 057861560 tmpfiles: make the stat struct parameter in fd_set_*() optional f37caffda tmpfiles: stat file in item_do() rather than in its callers 86f1362d4 tmpfiles: set only default acls to folders #9545 (#9599)- Make systemd-mini-sysvinit provides systemd-sysvinit Some packages (such as shepherd-bins) want to conflicts with systemd-sysvinit: they should also conflict with systemd-mini-sysvinit.- Add 0001-logind-keep-backward-compatibility-with-UserTasksMax.patch We have to keep support for UserTasksMax= for a while before dropping it. This patch is supposed to do that and also to make users aware of this change. It also hints how to configure that differently.- Import commit f39674d6d114d999c50672c7bea8cad21e1eaed9 7d1e04e85 units: use =yes rather than =true everywhere 185ce0d34 units: assign user-runtime-dir@.service to user-%i.slice a051f5e41 units: make sure user-runtime-dir@.service is Type=oneshot 30c6842c3 units: set StopWhenUnneeded= for the user slice units too e74de046e login: fix typo in log message- Own %{_libexecdir}/modules-load.d (again) This was incorrectly dropped during the split of the SUSE specific configurations.- Drop a Conflicts: in systemd-coredump It not needed anymore since the mini variant of systemd-coredump is not built anymore.- Import commit b54f5d7a8b41898ce98f43cd1a6cc92c0071806d 5def29d24 coredump: only install coredump.conf when ENABLED_COREDUMP=true 9133e2d6e dhcp6: make sure we have enough space for the DHCP6 option header (bsc#1113632 CVE-2018-15688) ebc3fa418 dhcp6: split assert_return() to be more debuggable when hit 51eefb6ac chown-recursive: let's rework the recursive logic to use O_PATH (bsc#1113666 CVE-2018-15687) e1e1aa237 core: skip unit deserialization and move to the next one when unit_deserialize() fails 1c726c87d core: when deserializing state always use read_line(…, LONG_LINE_MAX, …) (bsc#1113665 CVE-2018-15686) 4cd7d11ac core: don't create Requires for workdir if "missing ok" (bsc#1113083)- Make systemd-coredump sub-package optional and don't build the mini variant.- Drop duplicated %{?mini} suffix for systemd-{container,coredump} subpackages "-mini" is already part of the name of the main package so there's no need to append it again for those sub packages. It's only needed when the name of a subpackage is completely redefined, IOW when '-n' option is used with the %package directive.- Dont ship /usr/sbin/resolvconf symlink for now It conflicts with the bin shipped by openresolv and provides limited compat only.- Upgrade to v239 (commit 6d8584e7e8e5d13d2bab49b9e6f6d2ec39759978) This includes the following bug fixes: - upstream commit 0722b359342d2a9f9e0d453875624387a0ba1be2 (bsc#1045723) - upstream commit 2f2e14b251b9929e84e8b690d0187b766dfbae20 (bsc#1124122) - upstream commit c839b729c5f7b08f6d91bf9567d0b1f91d17e0f7 (bsc#1155207) - upstream commit 8eebb6a9e5e74ec0ef40902e2da53d24559b94a4 (bsc#1168076) This also includes the following bug fixes released in v238: - upstream commit e8a3144ec4ff332bd63644e468a98e1a7e06e7e4 (bsc#1112024) - upstream commit 4d219f5343b1924e7c519c2c178aeb5d1a5ab924 (bsc#1123727) - upstream commit 43b7f24b5e0dd048452112bfb344739764c58694 (bsc#1146991) - upstream commit bf443be99565e4327f1c8c12b79d98b4c1529cf1 (bsc#1156213)- Ship systemd-sysv-install helper via the main package This script was part of systemd-sysvinit sub-package but it was wrong since systemd-sysv-install is a script used to redirect enable/disable operations to chkconfig when the unit targets are sysv init scripts. Therefore it's never been a SySV init tool. While at it, don't ship this script (as well as systemd-sysv-convert) when sysvcompat is not defined.- Import commit 19b3868d32af20f1ecc86fe3c997144ff456fd65 06c2284d64 core: introduce systemd.early_core_pattern= kernel cmdline option 479b002083 core: add missing 'continue' statement c7fbccc62e journald: don't ship systemd-journald-audit.socket (bsc#1109252) f17a6c790c detect-virt: do not try to read all of /proc/cpuinfo (bsc#1109197) 5a1aa84544 compat-rules: generate more compat by-id symlinks for NVMe devices (bsc#1095096)- Import commit a67b516d49115a5be0f2ac27a2874cee6c59a7ae f8457adf9d emergency: make sure console password agents don't interfere with the emergency shell b8bbb50634 man: document that 'nofail' also has an effect on ordering a5410b2229 journald: take leading spaces into account in syslog_parse_identifier b793c312c7 journal: do not remove multiple spaces after identifier in syslog message f9595f0481 syslog: fix segfault in syslog_parse_priority() d464f06934 journal: fix syslog_parse_identifier() e70422883a socket-util: attempt SO_RCVBUFFORCE/SO_SNDBUFFORCE only if SO_RCVBUF/SO_SNDBUF fails (bsc#991901)- split off SUSE specific udev rules from systemd package (fate#325478) * remove 60-io-scheduler.rules * remove 80-hotplug-cpu-mem.rules * remove 99-wakeup-from-idle.rules * remove /usr/lib/modules-load.d/sg.conf (see bsc#1036463 for details) these are now maintained in the new package system-tuning-common-SUSE- Enable or disable machines.target according to the presets (bsc#1107941)- Import commit cc55f1ea9e1c1ccab5b9fb97e10e08830d02b282 962b38aaf user@.service: don't kill user manager at runlevel switch (bsc#1091677) 3986c4d82 units: make sure user@.service runs with dbus still up 5e68aa0f2 Revert "udevd: increase maximum number of children" (bsc#1107617) 099138fd9 fix race between daemon-reload and other commands (v237) (bsc#1105031)- Import commit 6ac2232d88f4b64428511a4692a51bd00d610b32 6247696db nspawn: always use mode 555 for /sys (bsc#1107640) 72f558b57 cryptsetup: do not define arg_sector_size if libgcrypt is v1.x (#9990) cfcd97cf2 cryptsetup: add support for sector-size= option (#9936) (fate#325634)- Import commit bb5a925bcefd4743873cae3f748ae1a426e92d44 8983bd246 core: don't include libmount.h in a header file (#8580) 3e4156a8f tmpfiles: don't adjust qgroups on existing subvolumes (bsc#1093753) 42edc93ac core/service: rework the hold-off time over message- Enable regexp matching support Currently only used by "journalctl --grep=xxx".- Import commit 0350f62a8cf7f151951b6b78337fe3c198b8bf6a fbf43a697 core: don't freeze OnCalendar= timer units when the clock goes back a lot (bsc#1090944) 4134ba8b6 man: SystemMaxUse= clarification in journald.conf(5) (bnc#1101040) 78bb2a0c4 socket-util: fix getpeergroups() assert(fd) (#8080) (bsc#1096516) 1753d0420 systemctl: mask always reports the same unit names when different unknown units are passed (bsc#1095973) 50ebf79d7 scsi_id: Fixup prefix for pre-SPC inquiry reply (bsc#1039099) 570f7655b locale-util: on overlayfs FTW_MOUNT causes nftw(3) to not list *any* files- Drop runtime dependency on dracut (bsc#1098569) Otherwise systemd pulls in tools to generate the initrd even in container/chroot installations that don't have a kernel anyways. For environments where initrd matters, dracut should be pulled via a pattern.- Import commit f63623c1fc0eb01b8efc2037d004f42ed8328356 6a161916f device: make sure to always retroactively start device dependencies (take #2) (bsc#1088052) e4402648c Fix pattern to detect distribution ad59c7970 install: "user" and "global" scopes are equivalent for user presets (boo#1093851) b1876c81a rpm: remove confusing --user before --global 00ea8a214 man: updated systemd-analyze blame description for service-units with Type=simple (#8834) (bsc#1091265) a9b587e2f fileio.c: fix incorrect mtime- Add 0001-resolved-create-etc-resolv.conf-symlink-at-runtime.patch (boo#1024897) - Ship systemd-resolved (but disabled by default) (bsc#1018387)- Disable user units by default (bsc#1090785)- Slight rewrite of the previous fix- align permissions of /etc/machine-id to upstream code (bsc#1092269) world writeable machine-id is a security issue- Move 80-container-v[ez].network in systemd-container sub-package - Move 80-container-host0.network from udev to systemd- Import commit d8196805089566ecd846b7c627ff2f3c42588c50 621b247f3 device: skip deserialization of device units when udevd is not running a7da5bdbc device: make sure to always retroactively start device dependencies (bsc#1088052) 303624f6f systemd-udevd: limit children-max by available memory (#8668) (bsc#1086785 bsc#1066422) 76acf3ae9 tmpfiles: fix directory removal with force symlink (#8619)- Ship 99-sysctl.conf instead of creating it during package installation/update (bsc#1088769) Previously this symlink was created in /etc/sysctl.d during %post which made the symlink not owned and more importantly it was created only if /etc/sysctl.conf is already installed which is not always the case during the installation process it seems. So ship the symlink unconditionally and put it in /usr/lib/sysctl.d instead since it's a distro default behavior that might be overriden by sysadmin later.- Be consistent in 60-io-scheduler.rules And use "?*" when checking for the non empty string (instead of "*?").- /usr/lib/systemd/systemd-coredump was missing from systemd-coredump sub-package (boo#1088057)- Drop systemd-bash-completion sub-package Now we directly ship the completion scripts from the main package as we already do for zsh. I couldn't see any advantages in this split.- Be more accurate when specifiying the tools version we provide- Make sure rpm won't expand %autopatch even if it's commented- stat(1) as well as systemctl are not use in %post section of udev So remove stat(1) from the list of dep and move systemctl to the requirements of %postun since it's called from there.- Import commit 14b3e00c3ccb8c1c82c8a2e99a9534750880a09e e0a8285e2 pid1: when creating service directories, don't chown existing files (#8181) (boo#1085971) fb25886b1 Fix format-truncation compile failure by typecasting USB IDs (#8250) (bsc#1084638) 5a6e9c92e sysusers: make sure to reset errno before calling fget*ent() c2e1ee488 sysusers: also add support for NIS entries in /etc/shadow 51cb94fa1 sysusers: do not append entries after the NIS ones (bsc#1085062 bsc#1045092) 783f3d368 basic/macros: rename noreturn into _noreturn_ (#8456) - Drop 0001-basic-macros-rename-noreturn-into-_noreturn_.patch It's been merged in the git repo.- Rename the tarball (bsc#1087323) So it's clear that it contains some additional patches on top of the upstream version. Use the commit hash in the name so the exact version can easily be identified. Provide _service file which can be used to retrieve the tarball from the git repo (with "osc service disabledrun").- Split systemd-coredump sub-package off (bsc#1083849)- Enhance IO scheduler tweaking rules to support blk-mq as well * Set optimal blk-mq schedulers (bfq and mq-deadline for HDD and SSD respectively) * Explicitly set CFQ for rotational disks when no `elevator` is specified * Verbose comments explaining what is going on * Rename the rules file since it is not ssd-only anymore- Don't ship machines.target in systemd-container but in systemd main package machines.target is supposed to be a standard target for starting/stopping all containers. systemd-nspawn is the main user of it but other container managers could also make use of it.- Build a mini variant of systemd-container So we don't have to manually track and remove all files that should be shipped by systemd-container in the case of a bootstrap build.- Run migrate-sysconfig-i18n.sh also during package installation (bsc#1086164) This is needed when we upgrade from SLE11.- Add 0001-basic-macros-rename-noreturn-into-_noreturn_.patch This fix a build error triggered by the introduction of the new version of libgpg-error package. Patch submitted to upsream: https://github.com/systemd/systemd/pull/8456- Turn off the IP sandboxing for systemd-logind Since v235 logind run inside an IPv4/IPv6 sandbox by default. This creates incompatibilites for systems using NIS.- Restore (maybe temporarly) "pam_config --add systemd" During its installation pam-config seems to overwrite the defaults shipped by "pam" for "some" reasons (see bsc#1084924) No idea why but since pam_systemd is not part of the "pam-config" defaults, we need to restore pam_systemd in common-session manually...- Remove dropin that was used to turn delegation off for user instances Upstream now enables "memory" and "pids" controllers only which should have a very limited impact on performance compare to the "cpu" controller.- Import commit 46d6bc9c4f1c05f3b4fcfca754cc59963bd86ce3 2a79f4e78 units: delegate "memory" instead of "cpu" by default for user instances (#8320) (bsc#954765 bnc#953241 fate#320421) 88174ae85 compat-rules: fix syntax errors spotted by test/rule-syntax-check.py- Remove udev-remount-tmpfs script Complete the previous commit.- Fix hotplug memory in 80-hotplug-cpu-mem.rules When new memory was hotplugged, the rule was supposed to call an external script (udev-remount-tmpfs) to remount all tmpfs. However the script was broken since its introduction (commit rev=715, 14/07/2014) and had no effects... this makes me wonder if we shouldn't get rid of this...- Make sure /var/lib/machines is created when systemd-container is installed- BS forces us to own %{_prefix}/lib/modprobe.d This seems wrong but that's how the SUSE BS works.- Upgrade to v237 (commit 78221ca750a9c266f9f8497dda59d7ee44000a6c) Udev rules 60-ssd-scheduler.rules and 80-hotplug-cpu-mem.rules have been removed from the git repo and are now maintained at the package level. Those rules have been rejected by upstream as they seem to be written to workaround some kernel shortcomings... This includes the following bug fix: - upstream commit 3d083b2245b0b8e52f2d8ccc3e55246f41f1f544 (bsc#1102908) This also includes the following bug fixes released in v235: - upstream commit 2e64e8f46d726689a44d4084226fe3e0ea255c29 (bsc#1069239) - upstream commit 79873bc850177050baa0c5165b119adafeebb891 (bsc#1069239) - upstream commit 4bc5d27b942afa83cc3d95debd2ad48d42ac07a8 (bsc#1089376) - upstream commit e9ea4526a3a3b41eced29b8d742498cc36750424 (bsc#1089693) - upstream commit d75b31837c93dbb9b20067719026ad0fb7cdfadd (bsc#1117025) - upstream commit 0e8856d25ab71764a279c2377ae593c0f2460d8f (bsc#1117025) - upstream commit 048dd629c4590eefb2ebd6a316c7350ed3a6ff19 (bsc#1119971) - upstream commit 9b32afa9f241fe8febc0a754850f1e7331caf6e3 (bsc#1126056) - upstream commit e6dde451a51dc5aaa7f4d98d39b8fe735f73d2af (bsc#1137053) - upstream commit 0864d311766498563331f486909a0d950ba7de87 (bsc#1158336) - upstream commit d60cb656fc63c24b430421764b7d0322857d34fd (bsc#1161262) - upstream commit e2be442e791fa1150aa835c684acc6d7189de3e1 (bsc#1165011) - upstream commit 64a36ae4b1dd23474dd7ea261381ac437b24fac2 (bsc#1172072) - upstream commit b001ad61e91b6499897f0c977045c7608c233bfa (jsc#SLE-7687) - includes IP filtering feature (jsc#SLE-7743) This also includes the following bug fixes released in v236: - upstream commit b3b4ebab02395933cde554b5a5d5c363dae3920d (bsc#1083571) - upstream commit 3e3852b3c6c61506963112fd218a86b673fc61e6 (bsc#1110445) - upstream commit 4050e4797603d3644707d58edfd9742b5311c7cf (bsc#1124153) - upstream commit 8cb83266062b383cdd4a57301ef559d64b491c51 (bsc#1125604) - upstream commit 19a44dfe4525ab01caf593a9c2beada4b412910d (bsc#1156482)- add basic user space support for suspend to idle (fate#323814) add 99-wakeup-from-idle.rules Currently this only covers the power button and usb/AT keyboards as wakeup devices. It is planned to make that configurable in the future.- Don't call "pam-config --systemd" pam_systemd.so has been integrated directly in the PAM stack since bsc#812462. So there's no need to call pam-config.- Fix build errors due to the split-off of systemd-containe: found conflict of systemd-234-33.1.x86_64 with systemd-container-234-33.1.x86_64: - /usr/share/man/man5/systemd.nspawn.5.gz - /usr/share/man/man1/systemd-nspawn.1.gz found conflict of systemd-container-234-33.1.x86_64 with systemd-mini-container-234-33.1.x86_64: - /usr/bin/systemd-nspawn - /usr/lib/systemd/system/systemd-nspawn@.service - /usr/lib/tmpfiles.d/systemd-nspawn.conf- Use %license (boo#1082318)- Split systemd-container sub-package off (fate#325469) Other distros already do it and it seems a good idea to not install this stuff on new installations by default. At least /var/lib/machines subvol is not created anymore at boot even if it wasn't used at all.- Import commit 295ead0f396beb2b5199abd99a17e274c2581f95 f4f94ab2e meson: install rules/80-hotplug-cpu-mem.rules 2901aa9b9 meson: install rules/60-ssd-scheduler.rules 1293c0056 core: use id unit when retrieving unit file state (#8038) (bsc#1075801) 596b2b241 Revert "vconsole-setup: add SUSE specific settings for font/keyboard in sysconfig" 0b595da04 Revert "locale-setup: handle locale at boot time well"- Re-enable systemd-firstboot It's used by the installer and also by JeOS.- Use %systemd_post in %post- Own /usr/lib/systemd/system-environment-generators directory- More systemd rpm macro usages- Disable systemd-firstboot I don't think there's any use case for it currently.- Use systemd rpm macros in paths defined in the specfile- Stop importing i18n settings from /etc/sysconfig (fate#319454) Bits taken from SLE15.- Make systemd-timesyncd use the openSUSE NTP servers by default Previously systemd-timesyncd used the Google Public NTP servers time{1..4}.google.com- Import commit 4a6a1e4f0b02e6cedf7eba93b85a6dd968f875c7 db1d8eacd compat-rules: make path_id_compat build with meson - Drop 0001-compat-rules-make-path_id_compat-build-with-meson.patch which is now part of the git repo (see above).- Don't ship /usr/lib/systemd/system/tmp.mnt at all (bsc#1071224) The previous fix couldn't work on platforms using a RO rootfs. Therefore we don't ship /usr/lib/systemd/system/tmp.mnt but we still ship a copy in /usr/share/systemd. Users who want to use tmpfs on /tmp are supposed to add a symlink in /etc/ pointing to the copy shipped in /usr/share/systemd. To support the update path we automatically create the symlink if tmp.mount in use is located in /usr/lib/systemd.- Don't build seccomp support in the mini package- Switch to Meson build system Some rearrangement in the file list was also needed. That was probably due to the upgrade of rpm.- Import commit 0a5600eb7f8263c7c79fec0d85cc159d54aba636 2a181fc6f insserv-generator: make it build with meson 7b0401da4 build-sys: don't build networkctl if networkd is disabled- Don't build-require selinux for the mini package- Drop libgcrypt.m4 The mini package builds fine without it so it doesn't seem necessary anymore.- Import commit 846d838c37865da60eba48090e570e959291399f b1e0a348d fileio: include sys/mman.h f1fa784cb meson: update header file to detect memfd_create() 8838ba7ec meson: define _GNU_SOURCE to detect copy_file_range() (#7734) 531a00c84 Restore "restore /var/run and /var/lock bind mount if they aren't symlink"" (the 3 first commits make systemd build against glibc 2.27)- Import commit 3f421e4fbf6fcb31d74caf729435868ba8824483 7fb9ea39a Revert "restore /var/run and /var/lock bind mount if they aren't symlink" 23ce1207a meson.build: make docdir configurable (#8068)- Import commit 8ec9f58d334c76e736957812d9e57151502a6f63 07c6ee3eb compat-rules: get rid of scsi_id when generating compat symlinks for NVMe devices (bsc#1051465) 261a4ef38 compat-rules: generate compat by-id symlinks with 'nvme' prefix missing (bsc#1063249)- Drop 0001-compat-rules-get-rid-of-scsi_id-when-generating-comp.patch It's been imported in branch "compats/udev-compat-symlinks" which has been merged in branch "openSUSE-Factory" in its turn.- Import commit c516268845b0fd0683cef2e491b84077371e8f01 37da1facb core: disable session keyring per system sevice entirely for now (bnc#1045886) 8a1ae0449 strv: fix buffer size calculation in strv_join_quoted()- Drop 0001-core-disable-session-keyring-per-system-sevice-entir.patch It's been merged in branch "SUSE/v234".- Import commit 2087a80d56bb6f8c7fb74a19172259bc9d9af866 2b8971b8a tmpfiles: refuse to chown()/chmod() files which are hardlinked, unless protected_hardlinks sysctl is on (bsc#1077925 CVE-2017-18078) 8c2bcac25 tmpfiles: change ownership of symlinks too- Do not optionally remove /usr/lib/systemd/system/tmp.mnt anymore (bsc#1071224) This was done to make sure that tmpfs wouldn't be used for /tmp by defaut in case the dir layout created by the installer did not create a customized tmp.mount. But it had the bad side effect to break "rpm -V systemd" and updates of systemd via delta-RPMs. Now instead of removing tmp.mount unit file, we mask it (still only if no other tmp.mount would override the default one). It's the official way to disable tmpfs on /tmp after all. Since we cannot rely on the presence of fstab during package installations, we introduced a service which is run once on the first boot and which figures out if tmpfs would be used. If so it masks the unit. We also handle the upgrade path and make sure to preserve admin's settings (if any). Another advantage of this is that we will only need to remove the introduced service the day when tmpfs will be the default for SUSE distros.- Import commit 83067827cc891ddc90def200fdbe725917ec9fa3 3d60486f7 core/timer: Prevent timer looping when unit cannot start (bsc#1068588) 460bd0cd6 Revert "handle SYSTEMCTL_OPTIONS environment variable" (fate#323393)- Import commit cc94ce8513221061898c83f57862544b16021f0e aa3eba828 delta: don't ignore PREFIX when the given argument is PREFIX/SUFFIX b1ea0173a delta: extend skip logic to work on full directory paths (prefix+suffix) (bsc#1070428) 77c5065f9 delta: check if a prefix needs to be skipped only once db32866d1 Fix parsing of features in detect_vm_xen_dom0 (#7890) (bsc#1048510) 11d40461a sd-bus: use -- when passing arguments to ssh (#6706) 1148d99f6 tmpfiles: consider /etc uninitialized also when /etc/machine-id is present but empty (#7849) (bsc#1075179) 3a95f69bf tmpfiles: downgrade warning about duplicate line- Edit scripts-systemd-fix-machines-btrfs-subvol.sh We shouldn't be creating a /var/lib/machines subvolume if /var is already a seperate partition or subvolume. /var/lib/machines will already be excluded from snapper & similar tooling in this case.- Import commit 82dbe8a2ae56649231111eaadd4c302a2d2175ee 8c7f0c449 service: Don't stop unneeded units needed by restarted service (bsc#1066156) 869be64ce sysctl: use raw file descriptor in sysctl_write (#7753) 0c2400810 sysctl: disable buffer while writing to /proc (bsc#1071558) 9eb1f30b8 Use read_line() and LONG_LINE_MAX to read values configuration files. (bsc#1071558) 4dbea654f def: add new constant LONG_LINE_MAX 48f14cd71 fileio: add new helper call read_line() as bounded getline() replacement 861e1a222 build-sys: udevadm should have LOG_REALM=LOG_REALM_UDEV 8ed5cf3fb meson: libudev_core and udevadm should have LOG_REALM=LOG_REALM_UDEV (#7666) a9f93f1d0 virt: use XENFEAT_dom0 to detect the hardware domain (#6442, #6662) (#7581) (bsc#1048510) fe56abdf9 seccomp: arm64/x32 do not have _sysctl c9194fe37 seccomp: arm64 does not have mmap2 31d9b3c32 fs-util: small tweak in chase_symlinks() 9dd0bc7a3 meson: do not include man/meson.build if xsltproc not found 7e29e2b07 analyze: replace --no-man with --man=no in the man page (bsc#1068251)- Add missing /etc/systemd/network directory- Import commit e30f1b10e276fb18db10ea2463fbd7146ae778f6 63481b24b firstboot: do not write vconsole.conf when arg_keymap is empty (bsc#1070124)- Add 0001-compat-rules-get-rid-of-scsi_id-when-generating-comp.patch (bsc#1051465) This patch is not yet merged in the 'compats/udev-compat-symlinks' branch: we asked to upstream if it would be possible to introduce a new specifier that wouldn't strip trailing whitespaces , see https://github.com/systemd/systemd/issues/7462 Also this allows to give the patch more testing before merging it in the git repo.- Drop a useless rm(1) from the specfile- Remove requires for pwdutils, we don't need the shadow tools anymore [bsc#1069150]- Import commit 4b9afa11f918796184e1264d618b4ff5d18e481b 22dcb1d04 tmpfiles: when /etc is not fully initialized, some specifiers are expected to be unresolvable (#6860) (bsc#1055664) 216beb768 tmpfiles: Allow create symlink on directories (#6039) baf85eb79 udev: net_setup_link: don't error out when we couldn't apply link config (#7328) - Remove stderr redirection to /dev/null when calling %tmpfiles_create since it's not needed anymore due to commit 22dcb1d04. Indeed the messages are no more emitted at LOG_WARN but LOG_NOTICE.- Import commit b9a41367b6c1164318443491cc3dae0e8208e15c 86804326f systemd-firstboot: add vconsole keymap support (#7035) (bsc#1046436) 9b64225e9 resolved: fix loop on packets with pseudo dns types (bsc#1065276 CVE-2017-15908) - Drop 0001-systemd-firstboot-add-vconsole-keymap-support.patch since it's been merged upstream and backported to SUSE/v234 (see above).- Import commit e44237e76f6e133e62ff6c681d3fd06ebf12f66d a4e02c099 udev-rules: all values can contain escaped double quotes now (#6890) d2b767a76 tmpfiles: remove old ICE and X11 sockets at boot (#6979)- Add 0001-systemd-firstboot-add-vconsole-keymap-support.patch (bsc#1046436) Temporary patch until it's been merged by upstream, see https://github.com/systemd/systemd/pull/7035- Damn forgot to drop 0001-Revert-core-device-Use-JobRunningTimeoutSec-for-devi.patch in the spec file- Import commit 6dea894131d78b20b9e0482f75afa6ee4dec8627 1cdd944b0 unit: when JobTimeoutSec= is turned off, implicitly turn off JobRunningTimeoutSec= too (bsc#1004995) This make 0001-Revert-core-device-Use-JobRunningTimeoutSec-for-devi.patch not needed anymore.- Import commit 93688f8e53b4e482a55a7d4aba2d927ddedebdde c53522be3 compat-rules: allow to specify the generation number through the kernel cmdline- Import commit c1e8af7d1e8b09c2878a5b17f513bfc41ae46dc6 982754275 build-sys: make sure 61-persitent-storage-compat.rules is installed with meson 9ac2e8b9b udev: proc_cmdline_get_key() FTW! (#6925)- Import commit 9e0985dc330b1cf04bc44049962343bdf4ba851a 4fd7cd041 pam_logind: skip leading /dev/ from PAM_TTY field before passing it on dd6312828 logind: make sure we don't process the same method call twice (#6583)- Update scripts-systemd-upgrade-from-pre-210.sh script - drop dependency on awk - fallback to runlevel #3 if something goes wrong Note: I'm not sure how this is supposed to work as /etc/inittab is likely to be missing in my understanding. Indeed this file is part of the aaa_base package which might be upgraded before systemd is installed...- Drop macros.systemd.upstream as it's not used- Import commit 58ea3c819cca1639ef8c922505c573ba5e262b3d 334945091 shutdown: fix incorrect fscanf() result check (#6806) 027202892 shutdown: don't remount,ro network filesystems. (#6588) (bsc#1035386) bc77b53a5 shutdown: don't be fooled when detaching DM devices with BTRFS (boo#1055641) d9d293847 util: make get_block_device() available 421ce7382 tmpfiles: silently ignore any path that passes through autofs (#6506) (bsc#1045472) ca8f90e62 device: make sure to remove all device units sharing the same sysfs path (#6679)- Make use of "%tmpfiles_create" in %post of the logger subpackage- Add scripts-udev-convert-lib-udev-path.sh (bsc#1050152) This script takes care of converting /lib/udev into a symlink pointing to /usr/lib/udev when upgrading a distro using an old version of udev.- Make use of "%make_build" rpm macro- Renumber scripts to start at index 100- Introduce scripts-systemd-upgrade-from-pre-210.sh It collects all existing hacks done in %post to fix old/deprecated settings in systemd older than 210. This includes hacks needed to fix system that are migrating from SysV. There shouldn't be any functional changes.- Move scripts for packaging workaround/fixes in /usr/lib/systemd/scripts It also renames fix-machines-subvol-for-rollbacks.sh into scripts-systemd-fix-machines-btrfs-subvol.sh Note that the "scripts-systemd-" prefix is used for those scripts so we can gather them. Why not using a directory instead ? because osc doesn't allow that.- Add 0001-Revert-core-device-Use-JobRunningTimeoutSec-for-devi.patch (bsc#1048605) It's a temporary but urgent fix for a regression discovered in bug 1048605. The fix is still under discussion with upstream but we need to make progress here and limit the number of affected users. Consequently this fix reintroduces bsc#1004995 (the bug report has been re-opened) but this one is far less critical and a workaround was provided. The final solution will fix both bugs.- Import commit 2bed4bf99cf7f24eafda490f778ed5e109f8d7f1 7a4935268 compat-rules: drop the boggus 'import everything' rule (bsc#1046268)- %regenerate_initrd_post is suppsed to be used in %post (not %pre) section- Import commit 6887cc21f23e33ac37801a01d76176e5c16fd8ea 9dcc6c04e pid1: forward port console specificities handling for s390 arch to v234- Import commit 986e98fd5a75470ba17e21fea12d7d4e966c1ecc 4706ebc62 call chase_symlinks without the /sysroot prefix (#6411) (boo#1051172)- Remove the unneeded hack forcing systemd-crypsetup binary to be linked against the just built libudev I don't remember why it was added but it looks unnecessary: most of all systemd components are linked againt libsystemd-shared.so which includes all the just built symbols. Also I don't see why it was done only for systemd-cryptsetup since all other binaries should have had suffered from the same issue.- Import commit c5705e01800bdadd6a4fa7dc50d47b13eb697211 8ea065d44 compat-rules: don't rely on ID_SERIAL when generating 'by-id' symlinks for NVMe devices (bsc#1048679)- Import commit 06bed720274d9436405a7c27c8238d7d1aefca2b 66fffdf12 build-sys: don't hook var-lib-machined.mount to remote-fs.target when machined is disabled 96c232066 Revert "core: don't load dropin data multiple times for the same unit (#5139)"- Drop support of compression from the mini package Hence remove the relevant build-requires from the mini package.- Upgrade to v234 (commit 78af11131da1b2760778206806c0ebe8616a5284) - package /etc/systemd/system/dbus-org.freedesktop.network1.service - /usr/lib/systemd/resolv.conf is not installed if resolved is disabled- Edit pkgconfig(liblz4) dependency: liblz4 now uses 1.x *again*- Added 0001-core-disable-session-keyring-per-system-sevice-entir.patch (bnc#1045886) Temporary patch to disable the session keyring stuff as it's currently broken and may introduce some security holes.- Import commit 21827ea0875ff197e16e72003b2bfaa1c6e8daad 1ad06735f core: fail when syntactically invalid values for User=/Group= fields are detected (bsc#1047023) d563972e2 timesyncd: don't use compiled-in list if FallbackNTP has been configured explicitly f4e0c16f5 gpt-auto-generator: fix the handling of the value returned by fstab_has_fstype() in add_swap() (#6280) e1345aac5 fix add_esp() in the gpt-auto-generator.c (#6251) c591ece9a automount: don't lstat(2) upon umount request (#6086) (bsc#1040968) 643ab2eea gpt-auto-generator: disable gpt auto logic for swaps if at least one is defined in fstab f07d2022f fstab-util: introduce fstab_has_fstype() helper bf735bb35 fstab-util: don't eat up errors in fstab_is_mount_point() a4b40fbed resolved: simplify alloc size calculation (bsc#1045290 CVE-2017-9445) 8b960bec0 only check signature job error if signature job exists (#6118) (boo#1043758) 1418bfb5b job: Ensure JobRunningTimeoutSec= survives serialization (#6128) (bsc#1004995) 19b6d5f08 udev: turn off -Wformat-nonliteral for one safe case 717ace439 udev: net_id add support for platform bus (ACPI, mostly arm64) devices (#5933) a3bf2e6b5 core/mount: pass "-c" flag to /bin/umount (#6093)- Add minimal support for boot.d/* scripts in systemd-sysv-convert (boo#1046750) While at it, the handling of the symlink priorities is also removed since it doesn't appear to be used at all.- Don't try to restart networkd/resolved if they're disabled (boo#1045521) "systemctl try-restart/preset" wants the unit files exist.- Stop shipping /usr/lib/sysusers.d/basic.conf (bsc#1006978) Ok looks like the previous change was the right thing to do and we continue to follow this path by relying on the new user/group scheme Therefore the basic system user/group are now managed and created by system-sysusers and udev also relies on this for the groups it uses in its rule files. Ideally we should have listed all of the groups in the deps (with "Requires: group(disk)" but the list of the groups is rather long and the risk for those groups to be re-organized is probably low, so currently we simply use "Requires: system-group-hardware" as a shortcut.- Make sure "lock" group is created On SUSE distros, /run/lock must be owned by "lock" group (see boo#733523). This group was previously created by another package but since a recent changes it doesn't seem to be true anymore or at least this package isn't pulled in anymore when building the rescue system. For now make systemd creates the group by adding "Requires: group(lock)". I'm currently not sure why we don't use sysusers.d stuff for that purpose and if the "lock" group on /run/lock is still mandatory. This should be revisited later.- Make sure dracut (if installed) will embed the new compat rule The new compat rule must be embedded in the initramfs so make sure that the installed dracut supports it.- Upgrade to v233 (commit 330b55d5e28d17f361062dba66426e46fb7d7857) - package new systemd-umount binary - package new environment generator stuff - drop /dev/root symlink support - /etc/pam.d/systemd-user is not patched anymore but we ship a dedicated file for SUSE now. - manage compat symlink generation in a dedicated branch (bsc#1040153)- Fix systemd-sysv-convert when a package starts shipping service units (bsc#982303) The database might be missing when upgrading a package which was shipping no sysv init scripts nor unit files (at the time --save was called) but the new version start shipping unit files.- Fix indentation in systemd-sysv-convert While at it, strip trailing whitespaces. No functional changes.- Disable group shadow support (bsc#1029516) The new configure option will be imported during the next tarball update.- Ship /var/log/README Unfortunately it's not possible to also ship /etc/init.d/README because of rpm "sanity" checks that prevent executable in /etc/init.d- Drop systemd-{journalctl,loginctl} legacy symlinks.- Drop %preun section Currently the only use of this section is to remove the symlinks enabling systemd services on package removal. Those symlinks were initially installed by the systemd package installation but could have been overriden by the sysadmin later. If so the symlinks shouldn't be uninstalled. Also in a near futur disabling services will install a symlink to /dev/null.- Import commit 9e33c2ae69fbb705e8ad143536e419a231e93020 04ef0eab8 importd: support SUSE style checksums supplementary (#5800) fb601ad9a importd: support SUSE style checksums (#5206) (fate#322054) b76b27c76 hwdb: fix warning "atkbd serio0: Unknown key pressed" (#5772) (boo#1010220) cb0d991f6 loginctl: fix typo causing ignoring multiple session IDs (#5732)- Make use of %systemd_postun()- Restart a couple of systemd services on package update Those services (most notably journald) should support restarting these days. However logind still doesn't but that should be fixed pretty soon, well I hope :)- Don't buildrequire pam-config, it's not used at this step. Also drop the use of it in %postun as it can't realistically happen...- Don't call /sbin/ldconfig in %post of the main package systemd main package doesn't ship any shared libs so there's no point in calling ldconfig in %post/%postun- Silent %tmpfiles_create in %post (bsc#1034938) Due to bsc#1024740, we stopped generating /etc/machine-id during systemd package installation making the specifier '%m' unavailable in the tmpfiles.d configuration files at this time. Make it simple for now and silent %tmpfiles_create, after all that's how the macro was implemented originally.- Import commit f0325620d23a247682c629d28883a364e4a7a8c4 327814841 core: when a unit's SourcePath points to API VFS pretend we are never out-of-date (#5487) f4b9fb58e units: move Before deps for quota services to remote-fs.target (#5627) (bsc#1028263) 44b9d27f8 udev: net_id - support predictable ifnames on vio buses (#5675) (bnc#1029183) 64f4761c9 units: apply plymouth warning fix to in rescue mode as well (#5615) 77607b887 units: do not throw a warning in emergency mode if plymouth is not installed (#5528) (bsc#1025398) 336d6016c core: downgrade "Time has been changed" to debug (#4906) (bsc#1028610)- Consider chroot updates in fix-machines-subvol-for-rollbacks.sh (bsc#1030290)- Initialize /etc/machine-id during the first boot (bsc#1024740) Previously that was done at package installation but it didn't fit well for appliance builds.- Import commit 68fc0a749a83d16d4cde8471d5030bc6254ffd96 76d4d05fb udev: fix variable assignment 473df8cc4 udev-rules: perform whitespace replacement for symlink subst values (bsc#1025886) d6c3ff647 udev-event: add replace_whitespace param to udev_event_apply_format 30ad15f7c libudev-util: change util_replace_whitespace to return number of chars in dest- Import commit 103259b3226251d06f79ca627f7b0ba0bd49f4bc 0ee7890dd automount: if an automount unit is masked, don't react to activation anymore (#5445) 99865a181 core: make sure to destroy all name watching bus slots when we are kicked off the bus (#5294) (bsc#1006687) f34234c54 build-sys: add check for gperf lookup function signature (#5055) 44e39538f sd-event: "when exiting no signal event are pending" is a wrong assertion (#5271) (boo#995936 bsc#1022014) 471b26807 sd-event: when an event source fails, don't assume the type of it is still set- Don't ship systemd-resolved for now (bsc#1024897) If resolved is enabled , systemd-tmpfiles creates a wrong symlink in /etc/resolv.conf which confuses the network manager actually used.- More indentation cleanup (no functional changes)- Remove obsolete insserv requirements for udev again [bsc#999841]- Import commit cd97d5d5fef79ab9d957bf6504d085c0faca6bfc e587b6ce0 disable RestrictAddressFamilies on all architectures but x86_64 one (bsc#1023460) c8ae05632 journald: don't flush to /var/log/journal before we get asked to (bsc#1004094) 7261eaf3e sd-event: fix sd_event_source_get_priority() (#4712)- Move fix for permission set on /var/lib/systemd/linger/* (no functional changes) Move that part after the fix on timer timestamp files otherwise the comment doesn't make sense.- Import commit 028fd9b60580976dffb09b3576a2b652ee35137c cc2ca55ff build-sys: do not install ctrl-alt-del.target symlink twice ececae77a device: Avoid calling unit_free(NULL) in device setup logic (#4748)- Ship systemd-resolved but it's disabled by default (bsc#1018387) The NSS plugin will also be disabled, users need to enable it manually.- Don't ship ldconfig.service anymore This service was introduced to support stateless systems that support offline /usr updates properly. AFAIK we don't support any such system for now, so disable it. If it's wrong it's easy enough to restore it back. Related to bsc#1019470.- Be more consistent with indentation (*no* functional changes) Indentation should use 8 spaces now (no tabs).- Import commit 2559bc0c076b58f0a649056e79ca90fe5f1d556c 9c4a759ab systemctl: 'show' don't exit with a failure status if the requested property does not exist [SUSE] (bsc#1021062) f9194193b systemctl: remove duplicate entries showed by list-dependencies (#5049) (bsc#1012266) 2a6653335 rule: don't automatically online standby memory on s390x (bsc#997682)- Fix permission set on /var/lib/systemd/linger/* Those files are created by logind which run with umask(0022), so they are not world writable and shouldn't be affected by bsc#1020601. But it's cleaner to not let files forever with their setuid bit set for no good reason.- Fix permissions set on permanent timer timestamp files (bsc#1020601) (CVE-2016-10156) This change makes sure to fix the permissions of the timestamp files which could have been created by an affected version of systemd. Local unprivileged users could have run arbitrary code as root if systemd previously created world writable suid root files such as permanent timer stamp files.- Import commit 3edb876e3b80437a95502aa5d31d454606ea94bd 27b544224 core: make sure to not call device_is_bound_by_mounts() when dev is null (#5033) (bsc#1018399)- Use the %{resolved} build conditional for the nss-resolve subpackage- /usr/bin/systemd-resolve was missing from the filelist- Silent warnings emitted when udev socket units are restarted during package upgrade (bsc#1018214)- Upgrade to v232, commit de62e96da6a62ac61a7dea45cc558f5fa4342032 - a4dff165d nspawn: resolv.conf might not be created initially (#4799) - b543fe907 nspawn: fix condition for mounting resolv.conf (#4622) - 1aed89e55 core: make mount units from /proc/self/mountinfo possibly bind to a device (#4515) (boo#909418 bsc#912715 bsc#945340) - bfb54ecdc coredumpctl: let gdb handle the SIGINT signal (#4901) (bsc#1012591)- Really include legacy kbd maps in kbd-model-map (bsc#1015515) Instead of fix-machines-subvol-for-rollbacks.sh...- Enable lz4 (which becomes the default) It's much faster than xz and thus should be more appropriate to compress journals and coredumps. The LZ4 logic is now officially supported and no longer considered experimental. The new frame api was released in v125.- Good by compatlibs support There's no longer need for enabling/disabling the support for the compatlibs as it's been dropped from the source code.- Drop /usr/lib/systemd/libsystemd-shared-%{version}.so from the 32bit package This shared library is not for public use, and is neither API nor ABI stable, but is likely to change with every new released update. Only systemd binaries are supposed to link against it. This also prevents from the 32bit package to conflit with the 64bit one if this lib was installed by both packages.- Upgrade to v232, commit c5c3445825981e2a5c3ed71214127d5b1b9de802: - Dropped backported commits which has been merged - Forward-port Suse specific patches - Added --disable-lto option to ./configure - Added systemd-mount - Removed in %file /usr/lib/systemd/user/*.socket: since 798c486fbcdce3346cd86 units/systemd-bus-proxyd.socket has been removed. - Removed in %file %{_sysconfdir}/systemd/bootchart.conf since commit 232c84b2d22f2d96982b3c bootchart is not part of systemd anymore. - Backward compat libs have been disabled since it's been dropped from the source code. - Added /usr/bin/systemd-socket-activate in %file - Added --without-kill-user-processes ./configure option - Bump libseccomp build require (>= 2.3.1) as described in README - Specifiy version of libmount as required in the README- libudev-devel 32bit is needed for building 32bit wine now.- specfile: conflict systemd-bash-completion and systemd-mini-bash-completion Otherwise the build system detects that systemd-bash-completion and its mini variant are conflicting at files level even though those packages can't be installed on the same system.- specfile: clean up nss-* plugins descriptions and drop nss-myhostname-config script for now. Currently /etc/nsswitch.conf is supposed to be edited by the sysadmin to enable the modules. However for some reasons only nss-myhostname is removed from the conf file when the corresponding package is uninstalled. This is inconsistent so let's remove it. Actually I'm wondering if we shouldn't make those NSS plugins part of the main package and get rid of all those sub-packages...- specfile: remove old comments and unneeded sed command- specfile: no need to create systemd-update-utmp-runlevel.service symlinks anymore The symlinks in /usr/lib/systemd/system/.target.wants/systemd-update-utmp-runlevel.service are created in Makefile.am since commit d5d8429a12c4b1. 'reboot' and 'poweroff' targets initially had the symlinks but there's not point since the latter conflicts shutdown.target whereas the 2 targets pull it in. See: https://github.com/systemd/systemd/pull/4429- specfile: remove the following warnings: [ 256s] warning: File listed twice: /usr/lib/systemd/system/dbus.target.wants [ 256s] warning: File listed twice: /usr/lib/systemd/system/default.target.wants- Own a couple of directories even if they don't belong to systemd otherwise the build system will complain. Some directories (owned by others packages) are simply used by systemd to ship some scripts or config files to customize others * optional* components. Since thos components are not build required by systemd those directories are not owned by any packages and the BS complains...- Import commit 15ea716 journal-remote: change owner of /var/log/journal/remote and create /var/lib/systemd/journal-upload (bsc#1006372)- %sysusers_create and %tmpfiles_create must be called in %post Calling %pre is broken since the respective conf files are not yet installed.- %{_libexecdir}/{tmpfiles.d,sysusers.d}/systemd-remote.conf are part of systemd-journal-remote package (only).- systemd-journal-{gatewayd,remote,upload} units are only part of "systemd-journal-remote" package. So exclude them from the main package.- Import commit a1c145e6ad6588555dca64402f9103fb1e02b1a0 7f34037 man: explain that *KeyIgnoreInhibited only apply to a subset of locks df5798b Revert "logind: really handle *KeyIgnoreInhibited options in logind.conf" (bsc#1001790 bsc#1005404) f79fee7 Revert "kbd-model-map: add more mappings offered by Yast" 3760c10 manager: tighten incoming notification message checks d6efd71 core: only warn on short reads on signal fd 6eebd91 manager: be stricter with incomining notifications, warn properly about too large ones fdf2dc3 manager: don't ever busy loop when we get a notification message we can't process- Rename kbd-model-map-extra into kbd-model-map.legacy- Remove tcpd-devel build requirement. tcpwrap support has been removed since v212, see commit 7f8aa67131cfc03ddcbd31c0420754864fc122f0- remove all dummy "aliases" to /etc/init.d (as it was already done by factory more than 1 year ago). Even if a sysvinit script is still requiring one of those dummy symlinks this should not be an issue since this is requirement is translated into a weak dependency.- specfile: - do not own /usr/share/zsh directory - do not own /etc/dbus-1 and /etc/dbus-1/system.d dirs - do not own /usr/share/dbus-1 dir- specfile: %{_prefix}/lib/systemd/system-preset was mentioned twice in %files section.- Specfile cleanup: - use curly braces with rpm macros- Specfile cleanup: - %ghost files doesn't need (anymore) to be created in %builroot - do not own /etc/X11/xorg.conf.d and /etc/X11/xinit- Specfile cleanup: no need to protect the manpages with %bootstrap condition in nss-myhostname package since the package itself is already protected.- fix nss-resolve sub package: - add a %files section - add a package description - libnss_resolve.so.2 is now part of this subpackage - add %post and %postun sections- Specfile cleanup: - reorganize some files in %files by types - some config files were missing the "noreplace" attribute- Use %config(noreplace) for %{_sysconfdir}/pam.d/systemd-user- Rework systemd-gatewayd package: - some gateway's files were still in the main package - it now includes all progs dealing with remote journals - it can be turned off (SP2 does that currently) - it's been renamed systemd-journal-remote to reflect that- Specfile cleanup: - only specify once %{_prefix}/lib/systemd/system-shutdown in %file - no need to list the content of %{_prefix}/lib/systemd/user-generators in %file - machined is not built when %bootstrap = 1- Specfile cleanup: - There's no point in listing all generators in %file explicitly. The default is to include all of them and if for some reason one must be excluded then it should be done explicitly.- Specfile cleanup: - remove explicit call to make for building man pages. This is not needed and was maybe useful when generated doc was pre-built and shipped in the tarball.- Specfile cleanup: - break overly long and unreadable line using mkdir - gather directory creations- Stop providing udevd.8 systemd-udevd has replaced udevd for some time already and usage of udevd should be avoided. Therefore don't encourage this and stop documenting it.- Import from factory: - Thu Feb 4 11:05:37 UTC 2016 - lnussel@suse.de - curl also causes building of journal-upload. That one has rather unusal certificate usage, set it's ca root to /etc/pki/systemd instead of the built-in default /etc/ssl as journal-remote and journal-upload think they can put stuff in /etc/ssl/certs then but that directory is managed by p11-kit and doesn't serve the purpose those programs think.- Package rootsymlink-generator helper. It was forgotten when switching to the git repo but re-added back. That said this thing should be removed as it's broken as soon as there's no direct link between the root fs and its backend device node (i.e. BTRFS).- Add kbd-model-map-extra file which contains the additional legacy keymaps needed by yast. This was previously directly patched in the systemd source code.- Imported e251b8d7fb5c801fdfa3a023257ba0e4d514f3b0 - Re-add back /dev/root symlink generation (although this must be deprecated and finally removed).- Migrating to the Suse Systemd git repo: Third step: - Re-enable networkd (disabled by default in SLE12)- Migrating to the Suse Systemd git repo: Second step: - Import the specfile - Import the tarball generated from the git repo - Import lastest changes for the different scripts- Migrating to the Suse Systemd git repo: First step: drop all patches and drop the tar ball. The dropped patches are: fix-support-for-boot-prefixed-initscript-bnc-746506.patch set-and-use-default-logconsole.patch ensure-ask-password-wall-starts-after-getty-tty1.patch 0001-rules-block-add-support-for-pmem-devices-3683.patch Fix-run-lock-directories-permissions-to-follow-openSUSE-po.patch 1007-physical-hotplug-cpu-and-memory.patch 1066-udev-add-compatibility-links-for-truncated-by-id-links.patch watch_resolv.conf_for_become_changed.patch 0019-make-completion-smart-to-be-able-to-redirect.patch systemd-add-user-keep.patch 0001-core-re-sync-bus-name-list-after-deserializing-durin.patch systemd-228-nspawn-make-journal-linking-non-fatal-in-try-and-auto.diff avoid-random-hangs-on-timeouts-due-lost-cwd.patch 1037-udev-exclude-cd-dvd-from-block-device.patch 0001-add-network-device-after-NFS-mount-units.patch journald-advice-about-use-of-memory.patch 1011-64-btrfs.rules-skip-btrfs-check-if-devices-are-not-r.patch 1006-udev-always-rename-network.patch handle-numlock-value-in-etc-sysconfig-keyboard.patch use-rndaddentropy-ioctl-to-load-random-seed.patch 0001-pid1-don-t-return-any-error-in-manager_dispatch_noti.patch 0001-add-hdflush-for-reboot-or-hddown-for-poweroff.patch 0001-pam_systemd_do_override_XDG_RUNTIME_DIR_of_the_original_user.patch 0001-bnc888612-logind-polkit-acpi.patch avoid-divide-by-zero-sigtrap.patch 1035-99-systemd.rules-Ignore-devices-with-SYSTEMD_READY-0.patch suse-sysv-bootd-support.diff ensure-shortname-is-set-as-hostname-bnc-820213.patch parse-crypttab-for-noauto-option.patch tty-ask-password-agent-on-console.patch 0001-pid1-process-zero-length-notification-messages-again.patch handle-root_uses_lang-value-in-etc-sysconfig-language.patch 0001-core-exclude-.slice-units-from-systemctl-isolate.patch vhangup-on-all-consoles.patch 0001-systemctl-pid1-do-not-warn-about-missing-install-inf.patch apply-ACL-for-nvidia-device-nodes.patch make-emergency.service-conflict-with-syslog.socket.patch 0001-journal-warn-when-we-fail-to-append-a-tag-to-a-journ.patch 1096-new-udev-root-symlink-generator.patch 1099-Add-default-rules-for-valve-steam-controller-to-work.patch 0001-journal-set-STATE_ARCHIVED-as-part-of-offlining-2740.patch systemd-install-compat_pkgconfig-always.patch 1012-Skip-persistent-device-link-creation-on-multipath-de.patch 0001-avoid-abort-due-timeout-at-user-service.patch insserv-generator.patch apply-ACL-for-nvidia-uvm-device-node.patch restore-var-run-and-var-lock-bind-mount-if-they-aren-t-sym.patch systemd-pam_config.patch systemd-dbus-system-bus-address.patch let-linker-find-libudev-for-libdevmapper.patch 1098-systemd-networkd-alias-network-service.patch 0001-let-systemctl-completion-ignore-at-names.patch boot-local-start.patch 1095-set-ssd-disk-to-use-deadline-scheduler.patch tomcat6-var-lock-subsys-legacy.patch let-vconsole-setup-get-properties-only-once-to-copy-them.patch plymouth-quit-and-wait-for-emergency-service.patch respect-nfs-bg-option.patch 0001-If-the-notification-message-length-is-0-ignore-the-m.patch 1062-rules-set-default-permissions-for-GenWQE-devices.patch rescue-emergency-target-conflicts.patch Correct_assert_on_unexpected_error_code.patch 1097-udevd-increase-maximum-number-of-children.patch 0001-core-fix-bus-name-synchronization-after-daemon-reloa.patch 1005-create-default-links-for-primary-cd_dvd-drive.patch allow-multiple-sulogin-to-be-started.patch systemd-230-cgroup2-use-new-fstype-for-unified-hierarchy.patch 0010-do-not-install-sulogin-unit-with-poweroff.patch 1003-udev-netlink-null-rules.patch 1002-rules-create-by-id-scsi-links-for-ATA-devices.patch 0001-nss-mymachines-do-not-allow-overlong-machine-names.patch shut-up-rpmlint-on-var-log-journal.patch systemd-tmp-safe-defaults.patch portmap-wants-rpcbind-socket.patch hostname-NULL.patch 0001-pid1-more-informative-error-message-for-ignored-noti.patch 0001-journal-fix-HMAC-calculation-when-appending-a-data-o.patch handle-disable_caplock-and-compose_table-and-kbd_rate.patch kbd-model-map.patch systemctl-set-default-target.patch 0014-journald-with-journaling-FS.patch 0001-On_s390_con3270_disable_ANSI_colour_esc.patch- Import a better fix from upstream for bsc#1001765 - Added: 0001-pid1-more-informative-error-message-for-ignored-noti.patch 0001-pid1-process-zero-length-notification-messages-again.patch - Updated (no code changes, only patch metadata) 0001-If-the-notification-message-length-is-0-ignore-the-m.patch 0001-pid1-don-t-return-any-error-in-manager_dispatch_noti.patch- Re add back "udev: don't require nsserv and fillup" Did this in the wrong project... it was a complicated day today ;)- Added 2 patches to fix bsc#1001765 0001-If-the-notification-message-length-is-0-ignore-the-m.patch 0001-pid1-don-t-return-any-error-in-manager_dispatch_noti.patch- Revert "udev: don't require nsserv and fillup" It's been judged too late for being part of SLE12 final release. Nevertheless it's part of Factory and will be reintroduced after the final release is out (ie through an update).- systemd-sysv-convert: make sure that /var/lib/systemd/sysv-convert/database is always initialized (bsc#982211) If "--save" command was used and the sysv init script wasn't enabled at all the database file wasn't created at all. This makes the subsequent call to "--apply" fail even though this should not considered as an error.- Added patches to fix journal with FSS protection enabled (bsc#1000435) 0001-journal-fix-HMAC-calculation-when-appending-a-data-o.patch 0001-journal-set-STATE_ARCHIVED-as-part-of-offlining-2740.patch 0001-journal-warn-when-we-fail-to-append-a-tag-to-a-journ.patch- udev: don't require nsserv and fillup (bsc#999841) udev has no LSB init scripts nor fillup templates anymore.- Build require python and python-lxml in order to generate systemd.directives man page (bsc#986952)- Add rules: block: add support for pmem devices (#3683) (bsc#988119) 0001-rules-block-add-support-for-pmem-devices-3683.patch- Fix is-enabled check in systemd-sysv-install (bsc#997268)- Only BuildRequire gnu-efi when building the 'real' systemd package.- Add a script to fix /var/lib/machines to make it suitable for rollbacks (bsc#992573)- reverted the systemctl split-off on request of Franck Bui.- Add sysusers to the new split "systemctl" subpackage- Split systemctl and tmpfiles into a separate package- Fix 1099-Add-default-rules-for-valve-steam-controller-to-work.patch to enable missing functionality of Steam Controller- Backport unified_cgroup_hierarchy fix for Linux >= 4.4. boo#989276 + systemd-230-cgroup2-use-new-fstype-for-unified-hierarchy.patch- drop 1060-udev-use-device-mapper-target-name-for-btrfs-device-ready.patch it breaks btrfs on multiple device-mapper devices (boo#984516). The problem it tried to fix is already fixed in rule shipped with btrfsprogs (see boo#912170).- fix warning about missing install info during preset (boo#970293) 0001-systemctl-pid1-do-not-warn-about-missing-install-inf.patch- Avoid bootstrap cycle with sg3_utils- Fix patch patch handle-numlock-value-in-etc-sysconfig-keyboard.patch that is do not close a file descriptor twice (boo#973907)- Add two patches which address logind/networkd disappearing from dbus (and busctl) even while the units and processes continue running. 0001-core-fix-bus-name-synchronization-after-daemon-reloa.patch 0001-core-re-sync-bus-name-list-after-deserializing-durin.patch- drop all compiler/linker option customizations: - -pipe option is used by default since day 0 - get rid of cflags() function which is not needed - --hash-size has no impact specially in runtime IOW, use the default options for the compiler and the linker, there's no point in making systemd different from other package in this regards.- use %make_build instead of 'make %{?_smp_mflags}'- be more strict on own lib version requirements- systemd should require udev with the exact same version- Modify patch handle-numlock-value-in-etc-sysconfig-keyboard.patch to allow that open, seek, and read of /dev/mem may fail e.g. on XEN based virtual guests (bsc#961120)- Add upstream patch 0001-core-exclude-.slice-units-from-systemctl-isolate.patch this fixes forced logouts on isolate target aka changing runlevel (boo#966535)- require curl and bzip2 to build importd - curl also causes building of journal-upload. That one has rather unusal certificate usage, set it's ca root to /etc/pki/systemd instead of the built-in default /etc/ssl as journal-remote and journal-upload think they kan put stuff in /etc/ssl/certs then but that directory is managed by p11-kit and doesn't serve the purpose those programs think. - /var/lib/systemd/random-seed is a file - own /var/lib/machines - add systemd-228-nspawn-make-journal-linking-non-fatal-in-try-and-auto.diff- systemd-sysv-install: Fix chkconfig argument for disable op- Create groups adm,input,tape in fixed order (boo#944660)- Make sure we don't use tmpfs on /tmp by default (bsc#940522)- Avoid enabling readahead services; they have been removed. - In %install, only process kbd-model-map.xkb-generated if it exists. Resolves a build failure in 13.2/42.1.- spec: update minimum kernel version to 3.11 - Update minimum util-linux version to 2.27.1- Add patch to enable working steam controller: * 1099-Add-default-rules-for-valve-steam-controller-to-work.patch- fix CVE-2015-7510: Stack overflow in nss-mymachines (boo#956712) Add 0001-nss-mymachines-do-not-allow-overlong-machine-names.patch- Update to new upstream release 228 * The various memory-related resource limit settings (such as LimitAS=) now understand the usual K, M, G, ... suffixes to the base of 1024 (IEC). Similar, the time-related settings understand the usual min, h, day, ... suffixes now. * CPUAffinity= now takes CPU index ranges in addition to just individual indexes. * A number of properties previously only settable in unit files are now also available as properties to set when creating transient units programmatically via the bus. - Remove 0001-Make-sure-the-mount-units-pulled-by-RequiresMountsFo.patch (merged upstream)- Update to 227. - Rebase systemd-pam_config.patch, handle-root_uses_lang-value-in-etc-sysconfig-language.patch, 0001-add-hdflush-for-reboot-or-hddown-for-poweroff.patch, 0001-On_s390_con3270_disable_ANSI_colour_esc.patch, 0014-journald-with-journaling-FS.patch, 0019-make-completion-smart-to-be-able-to-redirect.patch, avoid-divide-by-zero-sigtrap.patch, systemd-add-user-keep.patch, set-and-use-default-logconsole.patch, tty-ask-password-agent-on-console.patch, 0001-bnc888612-logind-polkit-acpi.patch, watch_resolv.conf_for_become_changed.patch, 1097-udevd-increase-maximum-number-of-children.patch. - Remove 0002-units-enable-waiting-for-unit-termination-in-certain.patch, 1001-re-enable-by_path-links-for-ata-devices.patch, rules-add-lid-switch-of-ARM-based-Chromebook-as-a-power-sw.patch: fixed upstream.- Modify patch handle-root_uses_lang-value-in-etc-sysconfig-language.patch to handle locale at boot time well (boo#927250) - Be able to use build service environments several times- 1096-new-udev-root-symlink-generator.patch: fix substitution in ExecStart value- enable seccomp for aarch64 (fate#318444)- Fix again UEFI for mini package- Drop one more undesirable Obsoletes/Provides. This should have been a Conflicts. (There was already a Conflicts, and since Conflicts go both ways, we won't need a second one.)- No UEFI for systemd-mini- Add 2 upstream patches to fix boo#949574 and bsc#932284 0001-Make-sure-the-mount-units-pulled-by-RequiresMountsFo.patch 0002-units-enable-waiting-for-unit-termination-in-certain.patch- Disable systemd-boot on aarch64 since it fails to build. Error while compiling src/boot/efi/util.o is: usr/include/efi/aarch64/efibind.h:2:20: fatal error: stdint.h: No such file or directory- Fix UEFI detection logic: basically we let configure.ac figure out if UEFI is supported by the current build environment. No need to clutter the spec file with a new conditionnal %has_efi. - Provide systemd-bootx64.efi (aka gummiboot)- Modify patch tty-ask-password-agent-on-console.patch to reflect the changes done for pull request 1432- Undo Obsoletes/Provides (from Aug 11), creates too big a cycle. - Provide systemd-sysv-install program/link [bnc#948353]- Fix patch tty-ask-password-agent-on-console.patch not to crash away but enable it to ask on all devices of /dev/console- Avoid "file not found /etc/udev/rules.d/70-persistent-net.rules" waring occurring in %post- Add patch let-vconsole-setup-get-properties-only-once-to-copy-them.patch to avoid broken virtual console mapping due stressed ioctl API for the virtual consoles (boo#904214)- Fix last change that is use the new name for udev packages in %pretrans.- restore usage of LUA in %pretrans.- Try to generate the systemd users and groups always in same order to avoid republish other packages (boo#944660)- cleanup specfile by removing commands that were dealing with systemd pre-generated files: we're now using systemd tarball generated directly from the git repo which doesn't contain any of these files. - there's no point in using LUA in %pretrans- Drop 0009-make-xsltproc-use-correct-ROFF-links.patch This patch was initialy added to workaround bsc#842844. But it appears that man(1) was fixed (included since 13.2 at least) to handle manual pages that consist only of a .so directive such as '.so '.- Change use-rndaddentropy-ioctl-to-load-random-seed.patch to make it work on big endian- Use Obsolete/Provides strategy from windows:mingw:mingw64/mingw64-cross-gcc to do the bootstrap cycle and kick out -mini afterwards.- Update to new upstream release 224 * systemd-networkd gained a number of new configuration options for DHCP, tunnels and bridges * systemd-efi-boot-generator functionality was merged into systemd-gpt-auto-generator.- /usr/share/systemd/kbd-model-map: added entries for xkeyboard-config converted keymaps; mappings, which already exist in original systemd mapping table are being ignored though, i.e. not overwritten; needs kbd in buildrequires (FATE#318426)- hostname-NULL.patch: Work around a crash on XEN hosts in OBS. /etc/hostname is not present and systemd then does strchr(hostname,soemthing) with hostname NULL.- Add Correct_assert_on_unexpected_error_code.patch to work around a problem of an assert on ENODEV for closing fd on an input event device (boo#939571)- Remove udev-generate-rules.sh, apparently not used by anything in the systemd nor udev-persistent-ifnames package.- Systemd v222, bugfix release. - Drop upstream patches 0006-pam_systemd-Properly-check-kdbus-availability.patch 0023-core-fix-reversed-dependency-check-in-unit_check_unn.patch 0031-install-fix-bad-memory-access.patch 1032-ata_id-unbotch-format-specifier.patch - Drop SUSE patch 1013-no-runtime-PM-for-IBM-consoles.patch udev does no longer enable USB HID power management at all. - The udev accelerometer helper was removed, obsoleted by iio-sensor-proxy package. - networkd gained a new configuration option IPv6PrivacyExtensions. - udev does not longer support the WAIT_FOR_SYSFS= key in udev rules. There are no known issues with current sysfs, and udev does not need or should be used to work around such bugs.- Avoid restarting logind [bnc#934901] - Do not suppress errors in any case, even if they are ignored- Fix devel package requires (both mini and real required real libsystemd0)- Rework patch tty-ask-password-agent-on-console.patch to fit the requisition of https://bugs.freedesktop.org/show_bug.cgi?id=82004- Rework "-mini" package logic to not conflict with itself and then add libsystemd0 to mini.- remove SysVStartPriority= from after-local.service, unsupported since v218. Note that this option was only parsed and that's it. the logic to give "start priority" was never implemented.- change the default fallback ntp servers to the opensuse pool.ntp.org vendor zone. - We still need to run systemd-sysctl.service after local-fs.target otherwise it works only when /boot is in the root filesystem but not when it is a separate partition.- Obsolete pm-utils and suspend (boo#925873). - Remove pm-utils support (remove Forward-suspend-hibernate-calls-to-pm-utils.patch).- remove patch sysctl-handle-boot-sysctl.conf-kernel_release.patch from the filelist.- libpcre, glib2 and libusb are not used by systemd, remove from buildrequires.- 1032-ata_id-unbotch-format-specifier.patch: fix udev ata_id output. - 0023-core-fix-reversed-dependency-check-in-unit_check_unn.patch fix StopWhenUnneeded=true in combination with a Requisite= dependency. - 0031-install-fix-bad-memory-access.patch: Fix Bad memory access - 0006-pam_systemd-Properly-check-kdbus-availability.patch: if kdbus is enabled (i.e boot with kdbus=1) DBUS_SESSION_BUS_ADDRESS must not be exported. - spec: add a min_kernel_version macro to ensure the package conflicts with kernel versions in which systemd cannot run.- sysctl-handle-boot-sysctl.conf-kernel_release.patch dropped, replaced by a tmpfiles.d snippet "current-kernel-sysctl.conf" (feature implemented in v220 just for our usecase)- fix build when resolved is enabled - remove fsck -l test in spec file, systemd requires util-linux 2.26 or later where this feature is already available.- Fix bootstrap build by guarding filelists (man pages don't get built in bootstrap mode) - Drop commented sections from baselibs.conf, allows format_spec_file to have a successful run- Install 50-coredump.conf as coredumpctl is now installed by default and does not use journal anymore as default storage- Update to new upstream release 221 * From 220: * libgudev was moved into a package of its own * Runlevels 2, 3 and 4 are no longer distinct, they all map to multi-user.target. * The EFI System Partition mounted to /boot will be unmounted 2 minutes after boot. * systemd does not support direct live-upgrades (via `systemctl daemon-reexec`) from versions older than v44 anymore. * systemd-nspawn may now be called as part of a shell pipeline. * systemd-shutdownd has been removed. This service was previously responsible for implementing scheduled shutdowns as exposed in /usr/bin/shutdown's time parameter. This functionality has now been moved into systemd-logind and is accessible via a bus interface. * udev will no longer call blkid and create symlinks for all block devices, but merely those from a whitelist (cf. 60-persistent-storage.rules). * /usr/lib/os-release gained a new optional field VARIANT= * Details at http://lists.freedesktop.org/archives/systemd-devel/2015-May/032147.html * From 221: * New sd-bus and sd-event APIs in libsystemd * If there is both a systemd unit and a SysV init script for the same service name, and `systemctl enable` or other operation is run, both will now be enabled (or execute the related operation on both), not just the unit. - Split libsystemd0 to support systemd-less nspawn containers - Redo manpage file lists without %exclude, tends to hide unpackaged files. - hwdb belongs to udev - Resolve memory leak and add missing _cleanup_free_ to 0001-On_s390_con3270_disable_ANSI_colour_esc.patch - Remove systemd-powerd-initctl-support.patch (no longer builds because shutdownd is gone) - Remove quilt-patches/0001-core-rework-device-state-logic.patch, 0001-Let-some-boolean-survive-a-daemon-reload.patch (merged upstream), 0001-Let-some-boolean-survive-a-daemon-reload.patch (obsolete)- Remove libudev0 from baselibs.conf- Drop 1055-let-9719859c07aa13539ed2cd4b31972cd30f678543-apply.patch as now upstream code - Add 0001-Let-some-boolean-survive-a-daemon-reload.patch to fix bsc#933365 and boo#934077- Add 1098-systemd-networkd-alias-network-service.patch to alias network.service the same way NetworkManager and wicked does. This is needed by yast2 and other parts of the system. boo#933092- Modify patch 1021-udev-re-add-persistent-net-rules.patch to use the new return values of proc_cmdline() in enable_name_policy() this should fix boo#931165- Drop 1021-udev-re-add-persistent-net-rules.patch, 1036-rules-disable-usage-of-dev_id-in-persistent-rules.patch, 1040-re-enable-dev_id-conditionally-in-persistent-rules.patch, 1046-fix-duplicated-rules-with-layer3-interfaces.patch, 1050-only-rename-SRIOV-VF-devices-when-name-starts-with-eth.patch, 1051-check-if-NAME-has-a-value.patch, 1053-better-checks-in-write_net_rules.patch, 1088-drop-renaming-of-virtual-interfaces-in-guest.patch. 1021 originally broke parsing of net.ifnames=0 [bnc#931165], and given that neither the kernel command line needs to be touched nor the source be patched to reach the unpredictable naming setup for SLE, all these parts are moved to a separate package.- Add upstream patch 0001-core-don-t-change-removed-devices-to-state-tentative.patch to fix the fix of the last backport (bsc#921898)- Reenable networkd which was silently disabled on Feb 18- Add 0001-core-rework-device-state-logic.patch to fix spurious automated umount after mount.- mark more subpackages as !bootstrap for systemd-mini usage.- spec : remove --with-firmware-path, firmware loader was removed in v217 - spec: remove --disable-multi-seat-x, gone.(fixed in xorg) - spec: Do not enable systemd-readahead-collect.service and systemd-readahead-replay.service as these do not exist anymore. - spec: drop timedate-add-support-for-openSUSE-version-of-etc-sysconfig.patch Yast was fixed to write all timezone changes exactly how timedated expects things to be done. - spec: remove handle-etc-HOSTNAME.patch, since late 2014 the netcfg package handles the migration from /etc/HOSTNAME to /etc/hostname and owns both files. -spec: remove boot.udev and systemd-journald.init as they currently serve no purpose. - suse-sysv-bootd-support.diff: Remove HAVE_SYSVINIT conditions, we are in sysvcompat-only codepath, also remove the code targetting other distributions, never compiled as the TARGET_$DISTRO macros are never defined. - systemd-powerd-initctl-support.patch guard with HAVE_SYSV_COMPAT - set-and-use-default-logconsole.patch: fix HAVE_SYSV_COMPAT guards - insserv-generator.patch: Only build when sysvcompat is enabled - vhangup-on-all-consoles.patch add a comment indicating this is a workaround for a kernel bug. - spec: Add option to allow disabling sysvinit compat at build time. - spec: Add option to enable resolved at build time. - spec: Remove all %ifs for !factory products, current systemd releases can neither be built nor installed in older products without upgrading several components of the base system. (removed: 1008-add-msft-compability-rules.patch was only for =< 13.1) - spec: remove all dummy "aliases" to /etc/init.d, that made sense only when those init scripts still existed. (dummy localfs.service source: gone) - systemd-sleep-grub: moved to the grub2 package where it belongs as a suspend/resume hook (SR#286533) (drops prepare-suspend-to-disk.patch) - remove LFS_CFLAGS from CFLAGS, never needed in systemd as it force feds config.h everywhere in the preprocessor cmdline.- Update to new upstream release 219 * systemd units can now be "unsupported" (like, for example, .device in a containers), similar to the "skipped" state in SUSE's prior sysvinit scripts. * tmpfiles gained the 'v' type for creating btrfs subvolumes. * tmpfiles gained the 'a' type for setting ACLs. * systemd-nspawn gained new switches: --ephemeral, --template * The /var/lib/containers location is deprecated and replaced by /var/lib/machines. * machinectl gained the copy-from and copy-to commands. * machinectl now knows a "bind" command (for use with nspawn) * new "systemd-importd" daemon to download container images and run them as nspawn containers. * networkd collects LLDP network announcements, if available, and so shown in networkctl. * The fallback terminal type was changed from "vt102" to "vt220", allowing PgUp/PgDn keys to work. * Pressing Ctrl-Alt-Del 7x in 2 seconds forces a umount+reboot now, useful should the regular shutdown hang. * Removing storage will cause systemd to unmount the associated mountpoints so that they don't linger around.- Add suse-sysv-bootd-support.diff (reinstate old Revert-service-drop-support-for-SysV-scripts-for-the-early.patch)- Update to systemd v218-1050-g38ab096 - Remove patches use-usr-sbin-sulogin-for-emergency-service.patch (upstream fixed it) - Reinstate and improve (remove huge indents from) tty-ask-password-agent-on-console.patch, 0014-journald-with-journaling-FS.patch, rootsymlink_generator.- disable systemd-resolved for now as it interacts not well with our methods and security has concerns regarding spoofing. bsc#917781- Add patch kbd-model-map.patch to add missed keyboard layouts which are offered by YaST2 (bsc#910643 and boo#897803)- Update to new upstream release 218 * New utilities: systemd-timesyncd (SNTP client), systemd-resolved, systemd-networkd, networkctl, systemd-sysusers * machinectl gained a "poweroff" command for clean container shutdown * The udev hwdb now contains DPI information for mice. * Userspace firmware loading support has been removed and the minimum supported kernel version is thus bumped to 3.7. - Remove patches: G=gone locally, is upstream; D=dropped: no longer needed; N=no longer applies to source nor is it deemed needed; K=killed: no longer applicable and too complex to resolve: - --- G 0002-rfkill-rework-how-we-generate-file-names-from-rfkill.patch G avoid-assertion-if-invalid-address-familily-is-passed-to-g.patch K service-flags-sysv-service-with-detected-pid-as-RemainAfte.patch K remain_after_exit-initscript-heuristic-and-add-new-LSB-hea.patch K handle-SYSTEMCTL_OPTIONS-environment-variable.patch K 0018-Make-LSB-Skripts-know-about-Required-and-Should.patch K log-target-null-instead-kmsg.patch K tty-ask-password-agent-on-console.patch K 513-nspawn-veth.patch K 1087-infinit-timeout-for-kmod-loaded-modules.patch D module-load-handle-SUSE-etc-sysconfig-kernel-module-list.patch D avoid-leaking-socket-descriptors.patch D 0001-make-fortify-happy-with-ppoll.patch N fix-owner-of-var-log-btmp.patch N disable-nss-myhostname-warning-bnc-783841.patch N Revert-service-drop-support-for-SysV-scripts-for-the-early.patch N 0001-make-209-working-on-older-dist.patch N 0001-Don-t-snprintf-a-potentially-NULL-pointer.patch N tmpfiles-do-not-clean-for-mandb-index-files.patch G 0001-sd-bus-don-t-look-for-a-64bit-value-when-we-only-hav.patch G avoid-assertion-if-invalid-address-familily-is-passed-to-g.patc G optionally-warn-if-nss-myhostname-is-called.patch G 0001-units-systemd-sysctl.service.in-run-after-load-modul.patch G 0004-getty-generator-properly-escape-instance-names.patch G rules-add-lid-switch-of-ARM-based-Chromebook-as-a-power-sw.patch G 0008-Reset-signal-mask-on-re-exec-to-init.patch G 0001-login-fix-pos-array-allocation.patch G 0002-login-set-pos-slot-to-fallback-on-pos-eviction.patch G 0003-login-Allow-calling-org.freedesktop.login1.Seat.Swit.patch G 0004-fix-typo-in-iDRAC-network-interface-name-irdac-idrac.patch G 0005-Replace-var-run-with-run-in-remaining-places.patch G 0006-Revert-back-to-var-run-at-a-couple-of-problems.patch G 0007-README-document-that-var-run-must-be-a-symlink-run.patch G 0008-Use-var-run-dbus-system_bus_socket-for-the-D-Bus-soc.patch G 0009-mount-don-t-send-out-PropertiesChanged-message-if-ac.patch G 0010-mount-don-t-fire-PropertiesChanged-signals-for-mount.patch G 0011-logs-show-fix-corrupt-output-with-empty-messages.patch G 0012-journalctl-refuse-extra-arguments-with-verify-and-si.patch G 0014-nspawn-fix-detection-of-missing-proc-self-loginuid.patch G 0001-Fix-systemd-stdio-bridge-symlink.patch G 0002-execute-free-directory-path-if-we-fail-to-remove-it-.patch G 0003-Do-not-print-invalid-UTF-8-in-error-messages.patch G 0004-man-document-missing-options-of-systemd-run.patch G 0005-systemd-run-add-some-extra-safety-checks.patch G 0006-journal-assume-that-next-entry-is-after-previous-ent.patch G 0007-journal-forget-file-after-encountering-an-error.patch G 0008-core-correctly-unregister-PIDs-from-PID-hashtables.patch G 0009-logind-fix-reference-to-systemd-user-sessions.servic.patch G 0010-man-update-link-to-LSB.patch G 0011-man-systemd-bootchart-fix-spacing-in-command.patch G 0012-man-add-missing-comma.patch G 0013-units-Do-not-unescape-instance-name-in-systemd-backl.patch G 0001-core-busname-add-lookup-string-for-BUSNAME_FAILURE_S.patch G 0002-manager-flush-memory-stream-before-using-the-buffer.patch G 0003-busname-don-t-drop-service-from-the-result-string.patch G 0004-fix-off-by-one-error-in-array-index-assertion.patch G 0005-logind-fix-policykit-checks.patch G 0006-rules-mark-loop-device-as-SYSTEMD_READY-0-if-no-file.patch G 0008-man-multiple-sleep-modes-are-to-be-separated-by-whit.patch G 0001-gpt-auto-generator-don-t-return-OOM-on-parentless-de.patch G 0002-bus-fix-memory-leak-when-kdbus-is-not-enabled.patch G 0006-Do-not-return-1-EINVAL-on-allocation-error.patch G 0007-networkd-fix-typo.patch G 0008-sd-bus-don-t-access-invalid-memory-if-a-signal-match.patch G 0009-sd-bus-don-t-choke-if-somebody-sends-us-a-message-wi.patch G 0012-journald-remove-stray-reset-of-error-return-value.patch G 0013-core-libsystemd-systemd-timedate-udev-spelling-fixes.patch G 0001-cgroup-it-s-not-OK-to-invoke-alloca-in-loops.patch G 0002-machined-fix-Kill-bus-call-on-machine-objects-when-w.patch G 0003-sd-bus-don-t-use-assert_return-to-check-for-disconne.patch G 0004-core-don-t-try-to-relabel-mounts-before-we-loaded-th.patch G 0005-sd-daemon-fix-incorrect-variable-access.patch G 0006-sd-event-initialization-perturbation-value-right-bef.patch G 0007-sd-event-don-t-accidentally-turn-of-watchdog-timer-e.patch G 0008-systemctl-kill-mode-is-long-long-gone-don-t-mention-.patch G 0009-ask-password-when-the-user-types-a-overly-long-passw.patch G 0001-journal-fix-export-of-messages-containing-newlines.patch G 0002-systemctl-update-NAME-to-PATTERN-in-help.patch G 0003-tty-ask-password-agent-return-negative-errno.patch G 0004-systemd-python-use-.hex-instead-of-.get_hex.patch G 0005-systemd-python-fix-failing-assert.patch G 0007-dbus-suppress-duplicate-and-misleading-messages.patch G 0001-reduce-the-amount-of-messages-logged-to-dev-kmsg-whe.patch G 0001-bash-completion-fix-__get_startable_units.patch G 0002-sysctl-replaces-some-slashes-with-dots.patch G 0003-delta-do-not-use-unicode-chars-in-C-locale.patch G 0004-implement-a-union-to-pad-out-file_handle.patch G shut-up-annoying-assertion-monotonic-clock-message.patch G 0001-sd-rtnl-message-append-fix-uninitialized-memory.patch G 0001-tmpfiles-fix-permissions-on-new-journal-files.patch G 0001-errno-make-sure-to-handle-the-3-errnos-that-are-alia.patch G 0003-analyze-fix-plot-with-bad-y-size.patch G 0004-job-add-waiting-jobs-to-run-queue-in-unit_coldplug.patch G 0005-job-always-add-waiting-jobs-to-run-queue-during-cold.patch G 0001-backlight-Avoid-restoring-brightness-to-an-unreadabl.patch G 0002-backlight-do-nothing-if-max_brightness-is-0.patch G 0003-backlight-unify-error-messages.patch G 0004-backlight-warn-if-kernel-exposes-backlight-device-wi.patch G 0005-backlight-handle-saved-brightness-exceeding-max-brig.patch G 0001-replace-more-dup-by-F_DUPFD_CLOEXEC.patch G 0002-pam_systemd-use-F_DUPFD_CLOEXEC-when-dupping-session.patch G 0001-core-close-socket-fds-asynchronously.patch G 0002-logind-bring-polkit-policy-for-hibernate-in-line-wit.patch G 0003-core-make-sure-to-serialize-jobs-for-all-units.patch G 0001-logind-ignore-lid-switch-if-more-than-1-display-is-c.patch G 0002-logind-fix-printf-format.patch G 0003-logind-ignore-lid-switch-events-for-30s-after-each-s.patch G 0004-logind-Do-not-fail-display-count-if-a-device-has-no-.patch G 0005-logind-move-lid-switch-handling-from-logind-main-to-.patch G 0006-man-clarify-that-the-ExecReload-command-should-be-sy.patch G 0007-man-readahead-fix-cmdline-switch-inconsistency-betwe.patch G 0008-man-update-journald-rate-limit-defaults.patch G 0009-nspawn-properly-format-container_uuid-in-UUID-format.patch G 0010-logind-allow-suspending-if-there-are-no-displays.patch G 0001-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0002-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0003-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0004-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0005-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0001-conf-parser-silently-ignore-sections-starting-with-X.patch G 0002-man-note-that-entire-sections-can-now-be-ignored.patch G 0004-machined-make-sure-GetMachineAddresses-is-available-.patch G 0005-core-Filter-by-state-behind-the-D-Bus-API-not-in-the.patch G 0006-login-add-mir-to-the-list-of-session-types.patch G 0007-logind-fix-Display-property-of-user-objects.patch G 0001-hwdb-update.patch G 0002-hwdb-update.patch G 0003-hwdb-PCI-include-primary-model-string-in-subsystem-m.patch G 0004-hwdb-update.patch G 0005-hwdb-update.patch G 0001-journal-cleanup-up-error-handling-in-update_catalog.patch G 0002-journal-properly-detect-language-specified-in-line.patch G 0003-man-mention-XDG_CONFIG_HOME-in-systemd.unit.patch G 0001-keymap-Add-Lenovo-Enhanced-USB-Keyboard.patch G 0002-keymap-Asus-EeePC-touchpad-toggle-key.patch G 0001-nspawn-allow-to-bind-mount-journal-on-top-of-a-non-e.patch G 0002-nspawn-restore-journal-directory-is-empty-check.patch G 0003-core-never-consider-failure-when-reading-drop-ins-fa.patch G 0004-socket-properly-handle-if-our-service-vanished-durin.patch G 0001-Do-not-unescape-unit-names-in-Install-section.patch G 0002-analyze-run-use-bus_open_transport_systemd-instead-o.patch G 0001-virt-rework-container-detection-logic.patch G 0002-fsck-include-device-name-in-the-message-about-missin.patch G 0003-units-use-KillMode-mixed-for-systemd-nspawn-.service.patch G 0004-util-ignore_file-should-not-allow-files-ending-with.patch G 0006-tty-ask-password-agent-Do-tell-what-directory-we-fai.patch G 0007-keyboard-add-Plantronics-.Audio-mute-button.patch G 0001-build-sys-use-glibc-s-xattr-support-instead-of-requi.patch G 0001-hwdb-fix-case-sensitive-match.patch G 0001-sd-event-restore-correct-timeout-behaviour.patch G 0002-bus-make-use-of-sd_bus_try_close-in-exit-on-idle-ser.patch G 0001-umount-modernizations.patch G 0002-namespace-when-setting-up-an-inaccessible-mount-poin.patch G 0003-core-allow-transient-mount-units.patch G 0004-systemd-detect-virt-only-discover-Xen-domU.patch G 0005-backlight-Do-not-clamp-brightness-for-LEDs.patch G 0006-log-honour-the-kernel-s-quiet-cmdline-argument.patch G 0001-core-fix-invalid-free-in-killall.patch G 0003-install-fix-invalid-free-in-unit_file_mask.patch G 0001-systemd-detect-virt-detect-s390-virtualization.patch G 0001-core-sysvcompat-network-should-be-equivalent-to-netw.patch G 0002-units-add-missing-caps-so-that-GetAddresses-can-work.patch G 0003-units-order-systemd-tmpfiles-clean.service-after-tim.patch G 0005-po-add-Greek-translation.patch G 0006-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0007-po-add-German-translation.patch G 0009-core-clean-up-signal-reset-logic-when-reexec.patch G 0010-util-treat-fuse.sshfs-as-a-network-filesystem.patch G 0011-build-sys-add-pthread-flag-for-libsystemd-shared.patch G 0012-core-transaction-avoid-misleading-error-message-when.patch G 0001-vconsole-also-copy-character-maps-not-just-fonts-fro.patch G 0002-core-make-sure-Environment-fields-passed-in-for-tran.patch G 0003-core-You-can-not-put-the-cached-result-of-use_smack-.patch G 0004-cryptsetup-don-t-add-unit-dependency-on-dev-null-dev.patch G 0005-man-fix-path-in-crypttab-5.patch G 0001-units-order-network-online.target-after-network.targ.patch G 0001-core-use-correct-format-string-for-UIDs.patch G 0002-core-transaction-fix-cycle-break-attempts-outside-tr.patch G 0003-fsck-consider-a-fsck-implementation-linked-to-bin-tr.patch G 0001-main-uid_to_name-might-fail-due-to-OOM-protect-again.patch G 0002-journald-make-MaxFileSec-really-default-to-1month.patch G 0003-units-remove-RefuseManualStart-from-units-which-are-.patch G 0004-util-refuse-considering-UID-0xFFFF-and-0xFFFFFFFF-va.patch G 0005-nspawn-block-open_by_handle_at-and-others-via-seccom.patch G 0006-tmpfiles-don-t-do-automatic-cleanup-in-XDG_RUNTIME_D.patch G 0007-units-skip-mounting-tmp-if-it-is-a-symlink.patch G 0001-parse_uid-return-ENXIO-for-1-uids.patch G 0002-util-when-unescaping-strings-don-t-allow-smuggling-i.patch G 0003-localed-consider-an-unset-model-as-a-wildcard.patch G 0004-sd-bus-when-an-event-loop-terminates-explicitly-clos.patch G 0005-bus-close-a-bus-that-failed-to-connect.patch G 0006-hwdb-update.patch G 0007-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0001-architecture-Add-tilegx.patch G 0002-architecture-Add-cris.patch G 0003-arch-add-crisv32-to-uname-check.patch G 0004-architecture-remove-cris-from-uname-list.patch G 0003-namespace-make-sure-tmp-var-tmp-and-dev-are-writable.patch G 0002-namespace-fix-uninitialized-memory-access.patch G 0001-machine-don-t-return-uninitialized-variable.patch G 0002-vconsole-setup-run-setfont-before-loadkeys.patch G 0001-util-consider-0x7F-a-control-chracter-which-it-is-DE.patch G 0002-util-don-t-consider-tabs-special-in-string_has_cc-an.patch G 0003-architecture-add-string-table-entries-for-mips-le-ar.patch G 0004-core-Added-support-for-ERRNO-NOTIFY_SOCKET-message-p.patch G 0005-service-don-t-accept-negative-ERRNO-notification-mes.patch G 0006-systemctl-show-StatusErrno-value-in-systemctl-status.patch G 0007-service-flush-status-text-and-errno-values-each-time.patch G 0001-journal-compress-return-early-in-uncompress_startswi.patch G 0002-journal-compress-improve-xz-compression-performance.patch G 0001-logind-allow-switching-to-unused-VTs-via-SwitchTo.patch G 0002-hostnamed-add-a-new-chassis-type-for-watches.patch G 0001-units-make-ExecStopPost-action-part-of-ExecStart.patch G 0001-event-pull-in-sd-event.h-from-event-util.h.patch G 0002-util-fix-has-cc-check-and-add-test.patch G 0003-sd-event-always-call-epoll_ctl-on-mask-updates-if-ed.patch G 0004-fileio-quote-more-shell-characters-in-envfiles.patch G 0001-Clear-up-confusion-wrt.-ENTRY_SIZE_MAX-and-DATA_SIZE.patch G 0002-units-serial-getty-.service-use-the-default-RestartS.patch G 0001-po-add-Ukrainian-translation.patch G 0002-man-document-yearly-and-annually-in-systemd.time-7.patch G 0003-core-nicer-message-when-inotify-watches-are-exhauste.patch G 0001-detect-virt-Fix-Xen-domU-discovery.patch G 0002-Be-more-verbose-when-bind-or-listen-fails.patch G 0003-Add-quotes-to-warning-message.patch G 0004-systemd-return-the-first-error-from-manager_startup.patch G 0001-bash-completion-p-option-for-journalctl.patch G 0002-journalctl-man-allow-only-between-terms.patch G 0003-systemd-use-pager-for-test-and-help.patch G 0001-bus-proxyd-fix-incorrect-comparison.patch G 0002-shell-completion-prevent-mangling-unit-names.patch G 0003-Always-check-asprintf-return-code.patch G 0004-bash-completion-use-list-unit-files-to-get-all-units.patch G 0005-core-only-set-the-kernel-s-timezone-when-the-RTC-run.patch G 0006-parse_boolean-require-exact-matches.patch G 0007-drop_duplicates-copy-full-BindMount-struct.patch G 0008-shell-completion-prevent-mangling-unit-names-bash.patch G 0009-journald-always-add-syslog-facility-for-messages-com.patch G 0001-sysv-order-initscripts-which-provide-network-before-.patch G 0002-keymap-Add-microphone-mute-keymap-for-Dell-Latitude.patch G 0003-keymap-Annotate-all-micmute-workarounds.patch G 0007-hwdb-update.patch G 0001-nspawn-fix-truncation-of-machine-names-in-interface-.patch G 0002-switch-root-umount-the-old-root-correctly.patch G 0003-bootchart-it-s-not-OK-to-return-1-from-a-main-progra.patch G 0004-login-set_controller-should-fail-if-prepare_vt-fails.patch G 0005-sd-resolve-fix-allocation-if-query-ids-never-reuse-t.patch G 0006-login-share-VT-signal-handler-between-sessions.patch G 0007-journald-also-increase-the-SendBuffer-of-dev-log-to-.patch G 0008-mount-setup-fix-counting-of-early-mounts-without-SMA.patch G 0009-journald-Fix-off-by-one-error-in-Missed-X-kernel-mes.patch G 0010-machine_kill-Don-t-kill-the-unit-when-killing-the-le.patch G 0011-units-fix-BindsTo-logic-when-applied-relative-to-ser.patch G 0012-util-try-to-be-a-bit-more-NFS-compatible-when-checki.patch G 0001-hwdb-keymaps-for-Samsung-900X3E-900X3F.patch G 0002-Add-hwdb-entry-for-Samsung-Series-7-Ultra.patch G 0003-keymap-Fix-HP-Pavillon-DV7.patch G 0004-hwdb-update-format-description-and-document-reloadin.patch G 0008-hwdb-update.patch G 0001-systemctl-Correct-error-message-printed-when-bus_pro.patch G 0002-units-order-systemd-fsck-.service-after-local-fs-pre.patch G 0003-keymap-Adjust-for-more-Samsung-900X4-series.patch G 0001-login-fix-memory-leak-on-DropController.patch G 0002-util-fix-minimal-race-where-we-might-miss-SIGTERMs-w.patch G 0003-sd-journal-properly-convert-object-size-on-big-endia.patch G 0004-sd-journal-verify-that-object-start-with-the-field-n.patch G 0001-nspawn-fix-network-interface.patch G 0001-completion-filter-templates-from-restartable-units.patch G 0002-systemd-fix-error-message.patch G 0003-Quote-unit-names-in-suggested-systemctl-commandlines.patch G 0004-config-parser-fix-mem-leak.patch G 0005-login-fix-mem-leak.patch G 0001-login-simplify-controller-handling.patch G 0001-initrd-parse-etc.service-ignore-return-code-of-daemo.patch G 0008-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0009-hwdb-update.patch G 0001-systemctl-allow-to-change-the-default-target-without.patch G 0001-activate-fix-fd-leak-in-do_accept.patch G 0002-analyze-avoid-a-null-dereference.patch G 0003-analyze-fix-mem-leak.patch G 0004-backlight-Avoid-error-when-state-restore-is-disabled.patch G 0005-bus-avoid-using-m-kdbus-after-freeing-it.patch G 0006-bus-unref-buscreds-on-failure.patch G 0007-core-fix-a-potential-mem-leak.patch G 0008-core-smack-setup-Actually-allow-for-succesfully-load.patch G 0009-journal-do-not-leak-mmaps-on-OOM.patch G 0010-manager-use-correct-cleanup-function.patch G 0001-core-fix-resource-leak-in-manager_environment_add.patch G 0002-util-remove-a-unnecessary-check.patch G 0003-udev-event-explicitly-don-t-read-from-invalid-fd.patch G 0004-shared-conf-parser.patch G 0005-logind-fix-typo.patch G 0006-systemctl-fix-resource-leak-CID-1237747.patch G 0007-libudev-monitor-warn-if-we-fail-to-request-SO_PASSCR.patch G 0008-shared-conf-parser-don-t-leak-memory-on-error-in-DEF.patch G 0009-bus-fix-bus_print_property-to-use-int-for-booleans.patch G 0001-journal-Do-not-count-on-the-compiler-initializing-fo.patch G 0002-include-fcntl.h-rather-than-sys-fcntl.h.patch G 0003-mount-order-options-before-other-arguments-to-mount.patch G 0004-shared-wtmp-utmp-don-t-clear-store_wtmp-in-utmp_put_.patch G 0005-shared-label.h-add-missing-stdio.h-include.patch G 0006-shared-sparse-endian.h-add-missing-byteswap.h-includ.patch G 0001-login-pause-devices-before-acknowledging-VT-switches.patch G 0001-nspawn-don-t-try-to-create-veth-link-with-too-long-i.patch G 0001-socket-introduce-SELinuxContextFromNet-option.patch G 0002-util-avoid-non-portable-__WORDSIZE.patch G 0001-Fix-warning-about-unused-variable-with-SELINUX.patch G 0002-bus-remove-unused-check.patch G 0001-systemd-tmpfiles-Fix-IGNORE_DIRECTORY_PATH-age-handl.patch G 0001-logind-add-support-for-Triton2-Power-Button.patch G 0002-logind-add-support-for-TPS65217-Power-Button.patch G 0001-shutdownd-clean-up-initialization-of-struct.patch G 0003-bootchart-parse-userinput-with-safe_atoi.patch G 0004-bootchart-check-return-of-strftime.patch G 0005-bootchart-Do-not-try-to-access-data-for-non-existing.patch G 0001-journalctl-do-not-output-reboot-markers-when-running.patch G 0002-udev-hwdb-New-Entry-for-Dell-XPS12-9Q33-keyboard.patch G 0001-core-swap-only-make-configured-units-part-of-swap.ta.patch G 0009-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0001-virt-detect-that-we-are-running-inside-the-docker-co.patch G 0002-bootchart-use-n-a-if-PRETTY_NAME-is-not-found.patch G 0003-fileio-label-return-error-when-writing-fails.patch G 0001-sd-event-don-t-require-a-signal-event-source-to-be-e.patch G 0004-sd-event-check-the-value-of-received-signal.patch G 0005-sd-id128-do-stricter-checking-of-random-boot-id.patch G 0001-keymap-Fix-touchpad-toggle-on-Toshiba-Satellite-P75-.patch G 0001-units-introduce-network-pre.target-as-place-to-hook-.patch G 0002-keymap-Fix-touchpad-toggle-key-on-Asus-laptops.patch G 0003-sd-bus-check-return-value-of-vasprintf.patch G 0004-core-map-the-rescue-argument-to-rescue.target.patch G 0005-util-avoid-double-close-of-fd.patch G 0001-systemctl-when-mangle-unit-names-for-the-isolate-suf.patch G 0001-tmpfiles-compare-return-against-correct-errno.patch G 0001-shell-completion-fix-completion-of-inactive-units.patch G 0002-shell-completion-propose-templates-for-disable-re-en.patch G 0003-man-we-don-t-have-Wanted-dependency.patch G 0004-selinux-fix-potential-double-free-crash-in-child-pro.patch G 0001-systemd-continue-switch-root-even-if-umount-fails.patch G 0002-systemd-try-harder-to-bind-to-notify-socket.patch G 0001-strv-add-an-additional-overflow-check-when-enlarging.patch G 0002-hwdb-Add-mapping-for-special-keys-on-compaq-ku-0133-.patch G 0003-journald-add-CAP_MAC_OVERRIDE-in-journald-for-SMACK-.patch G 0004-journal-do-server_vacuum-for-sigusr1.patch G 0005-cryptsetup-fix-an-OOM-check.patch G 0002-shutdown-pass-own-argv-to-run-initramfs-shutdown.patch G 0001-manager-Linux-on-hppa-has-fewer-rtsigs-hence-avoid-u.patch G 0002-time-also-support-infinity-syntax-in-parse_nsec.patch G 0003-time-earlier-exit-from-format_timestamp_relative-on-.patch G 0004-sd-bus-if-we-don-t-manage-to-properly-allocate-the-e.patch G 0005-journalctl-correct-help-text-for-until.patch G 0006-calendarspec-fix-typo-in-annually.patch G 0007-systemctl-do-not-ignore-errors-in-symlink-removal.patch G 0008-util-introduce-sethostname_idempotent.patch G 0009-util-fix-copy-paste-error-and-actually-set-the-new-h.patch G 0010-shutdown-do-final-unmounting-only-if-not-running-ins.patch G 0011-selinux-make-sure-we-do-not-try-to-print-missing-fie.patch G 0012-manager-do-not-print-anything-while-passwords-are-be.patch G 0001-sd-bus-properly-handle-removals-of-non-existing-matc.patch G 0002-keymap-Ignore-brightness-keys-on-Dell-Inspiron-1520-.patch G 0001-core-don-t-allow-enabling-if-unit-is-masked.patch G 0002-snapshot-return-error-when-snapshot-exists.patch G 0003-shared-install-avoid-prematurely-rejecting-missing-u.patch G 0004-Raise-level-of-Found-dependency.-lines.patch G 0005-units-order-sd-journal-flush-after-sd-remount-fs.patch G 0006-journald-fix-minor-memory-leak.patch G 0007-journald-also-check-journal-file-size-to-deduce-if-i.patch G 0008-journald-fix-memory-leak-on-error-path.patch G 0009-units-make-systemd-journald.service-Type-notify.patch G 0010-hwdb-Update-database-of-Bluetooth-company-identifier.patch G 0001-login-rerun-vconsole-setup-when-switching-from-vgaco.patch G 0002-shutdown-fix-arguments-to-run-initramfs-shutdown.patch G 0003-utf8-when-looking-at-the-next-unichar-honour-the-siz.patch G 0001-keymap-Add-support-for-IBM-ThinkPad-X41-Tablet.patch G 0002-keymap-Fix-special-keys-on-ThinkPad-X60-X61-Tablet.patch G 0001-systemctl-let-list-units-unit-files-honour-type.patch G 0002-systemctl-obey-state-in-list-unit-files.patch G 0002-core-watchdog-bus-properties-cannot-be-both-writable.patch G 0003-sd-bus-refuse-properties-that-claim-to-be-both-writa.patch G 0001-units-make-sure-rfkill-service-is-bount-to-the-actua.patch G 0001-selinux-access-fix-broken-ternary-operator.patch G 0002-systemctl-show-BindsTo-BoundBy-in-list-dependencies.patch G 0003-cryptsetup-default-to-no-hash-when-keyfile-is-specif.patch G 0004-core-fix-transaction-destructiveness-check-once-more.patch G 0001-units-tmpfiles-setup-dev-allow-unsafe-file-creation-.patch G 0002-man-tmpfiles.d-recommend-using-b-and-c.patch G 1009-cdrom_id-use-the-old-MMC-fallback.patch G 1010-udev-increase-result-size-for-programs.patch G 1014-udev-update-net_id-comments.patch G 1015-udev-persistent-naming-we-cannot-use-virtio-numbers-.patch G 1016-udev-warn-when-name_to_handle_at-is-not-implemented.patch G 1017-udev-serialize-synchronize-block-device-event-handli.patch G 1018-udev-do-not-skip-the-execution-of-RUN-when-renaming-.patch G 1019-udev-avoid-use-of-uninitialized-err.patch G 1020-udev-keyboard-also-hook-into-change-events.patch G 1022-udev-remove-seqnum-API-and-all-assumptions-about-seq.patch G 1023-udev-builtin-keyboard-do-tell-on-which-device-EVIOCS.patch G 1024-udev-always-close-lock-file-descriptor.patch G 1025-udev-exclude-device-mapper-from-block-device-ownersh.patch G 1026-udevd-inotify-modernizations.patch G 1027-udev-synthesize-change-events-for-partitions-when-to.patch G 1028-udev-link-config-fix-mem-leak.patch G 1029-udev-try-first-re-reading-the-partition-table.patch G 1030-udev-guard-REREADP-logic-with-open-O_ECXL.patch G 1031-udev-make-sure-we-always-get-change-for-the-disk.patch G 1032-udev-guard-REREADPT-by-exclusive-lock-instead-of-O_E.patch G 1033-udev-really-exclude-device-mapper-from-block-device.patch G 1034-udev-check-the-return-value-from-udev_enumerate_scan.patch G 1038-udev-fix-invalid-free-in-enable_name_policy.patch G 1039-udevadm-settle-fixed-return-code-for-empty-queue.patch G 1041-libudev-fix-udev_queue_get_queue_is_empty-logic.patch G 1042-libudev-queue-provide-file-descriptor-to-watch-busy-.patch G 1043-libudev-queue-watch-entire-directory-to-allow-the-re.patch G 1044-rules-update-qemu-hid-rules.patch G 1045-rules-don-t-enable-usb-pm-for-Avocent-devices.patch G 1047-udev-net_setup_link-builtin-should-print-the-reason-.patch G 1048-udev-net_setup_link-add-a-bit-more-logging.patch G 1049-udev-link_config-ignore-errors-due-to-missing-MAC-ad.patch G 1052-rules-uaccess-add-ID_SOFTWARE_RADIO.patch G 1054-udev-exclude-MD-from-block-device-ownership-event-lo.patch G 1056-udevd-add-event-timeout-commandline-option.patch G 1057-udev-unify-event-timeout-handling.patch G 1058-udev-unify-event-timeout-handling.patch G 1059-udev-fixup-commit-dd5eddd28a74a49607a8fffcaf960040db.patch G 1061-rules-allow-systemd-to-manage-loop-device-partitions.patch G 1063-udev-path_id-suppress-ID_PATH-for-devices-with-an-un.patch G 1064-udev-hwdb-do-not-look-at-usb_device-parents.patch G 1065-udev-bump-event-timeout-to-60-seconds.patch G 1067-udev-always-resolve-correctly-database-names-on-chan.patch G 1068-udev-net_setup_link-export-the-.link-filename-applie.patch G 1069-rules-net-setup-link-preserve-ID_NET_LINK_FILE-and-I.patch G 1070-rules-net-setup-link-remove-stray-linebreak.patch G 1071-udev-import-the-full-db-on-MOVE-events-for-devices-w.patch G 1072-udev-netif_rename-don-t-log-to-kmsg.patch G 1073-udev-drop-print_kmsg.patch G 1074-udev-fix-copy-paste-error-in-log-message.patch G 1075-udev-timeout-increase-timeout.patch G 1076-udev-timeout-warn-after-a-third-of-the-timeout-befor.patch G 1077-udev-timeout-warn-after-a-third-of-the-timeout-befor.patch G 1078-udev-remove-userspace-firmware-loading-support.patch G 1079-udev-remove-userspace-firmware-loading-support.patch G 1080-udevd-parse_argv-warn-if-argumens-are-invalid.patch G 1081-udevd-check-return-of-various-functions.patch G 1082-udevadm-hwdb-check-return-value-of-fseeko.patch G 1083-udev-node-warn-if-chmod-chown-fails.patch G 1084-udev-ctrl-log-if-setting-SO_PASSCRED-fails.patch G 1085-udev-fix-typos.patch G 1086-udevd-don-t-fail-if-run-udev-exists.patch G 1089-fix-cgroup-device-controller.patch G 1090-udev-path_id-set-supported_parent-for-well-known-SCS.patch G 1091-udev-path_id-update-comments.patch G 1092-libudev-do-not-accept-invalid-log-levels.patch G 1093-udev-Fix-parsing-of-udev.event-timeout-kernel-parame.patch G 1094-udev-avoid-magic-constants-in-kernel-cmdline-parsers.patch G 1098-udev-link_setup-respect-kernel-name-assign-policy.patch- update set-and-use-default-logconsole.patch - fix comparison of console log facility that caused journald to skip output to console (boo#912030)- Use Robert's latest patch 1098-udev-link_setup-respect-kernel-name-assign-policy.patch which drops NAMEPOLICY_KERNEL as this breaks all on current systems out there- remove 0022-systemd-tmpfiles-ownerkeep.patch since this is now implemented into the systemd-tmpfiles binary - add user based ignore statements in tmpfiles removal directives (bnc#903009) add systemd-add-user-keep.patch- use --boot option in systemd-tmpfiles-setup-dev.service (bnc#908476) add upstream patches: 0001-units-tmpfiles-setup-dev-allow-unsafe-file-creation-.patch 0002-man-tmpfiles.d-recommend-using-b-and-c.patch (adapted)- Update patch 1098-udev-link_setup-respect-kernel-name-assign-policy.patch to Robert's version- Add upstream patches 0001-selinux-access-fix-broken-ternary-operator.patch 0002-systemctl-show-BindsTo-BoundBy-in-list-dependencies.patch 0003-cryptsetup-default-to-no-hash-when-keyfile-is-specif.patch 0004-core-fix-transaction-destructiveness-check-once-more.patch - Avoid old net devices naming scheme on openSUSE 13.2 and less maybe caused by patch 1098-udev-link_setup-respect-kernel-name-assign-policy.patch- fix systemd-nspawn network-veth support (bnc#906709) add 513-nspawn-veth.patch- Add upstream patch 1098-udev-link_setup-respect-kernel-name-assign-policy.patch which may solve bsc#907318- Add upstream patches 0001-units-make-sure-rfkill-service-is-bount-to-the-actua.patch 0002-rfkill-rework-how-we-generate-file-names-from-rfkill.patch- Change the maximum number of children from CPU_COUNT * 256 to CPU_COUNT * 64. Update 1097-udevd-increase-maximum-number-of-children.patch- Increase number of children/workers to CPU_COUNT * 256 to avoid 'maximum number of children reached' (bnc#907393). Add 1097-udevd-increase-maximum-number-of-children.patch- Fix error return in rootsymlink_generator.c Update 1096-new-udev-root-symlink-generator.patch- Remove upstream patch 0001-systemd-logind.service-set-Type-notify.patch as systemd-logind.service is already from DBus type, compare with upstream commit eab459bc0639b81b32735f36d3e929e4bfa2cb4b- Add upstream patches 0001-systemd-logind.service-set-Type-notify.patch 0002-core-watchdog-bus-properties-cannot-be-both-writable.patch 0003-sd-bus-refuse-properties-that-claim-to-be-both-writa.patch- Re-add directory /usr/lib/systemd/system/basic.target.wants- remove pm-utils-hooks-compat.sh again, pm-utils built-in hooks partially duplicate hooks run by systemd which may potentially lead to problems, instead temporarily re-enable Forward-suspend-hibernate-calls-to-pm-utils.patch until boo#904828 can be addressed properly- fix bashisms in write_net_rules script - update patches: * 1053-better-checks-in-write_net_rules.patch- Add upstream patches 0001-systemctl-let-list-units-unit-files-honour-type.patch 0002-systemctl-obey-state-in-list-unit-files.patch which allows to use --type in the systemctl command list-units and list-unit-files.- Add upstream patches 0001-keymap-Add-support-for-IBM-ThinkPad-X41-Tablet.patch 0002-keymap-Fix-special-keys-on-ThinkPad-X60-X61-Tablet.patch- New root symlink rule generator Add 1096-new-udev-root-symlink-generator.patch - Remove write_dev_root_rule and systemd-udev-root-symlink- Change patch 0001-add-hdflush-for-reboot-or-hddown-for-poweroff.patch to skip hdflush as well as hddown but only use halt as fallback for poweroff as well as synch in systemctl before any reboot command (compare with commit 4a3ad39957399c4a30fc472a804e72907ecaa4f9)- Create rule to set I/O scheduler to deadline if device attribute 'rotational' equals 0, usually SSDs (bnc#904517). Add 1095-set-ssd-disk-to-use-deadline-scheduler.patch- fix systemd-fstab-generator crypttab parsing (bnc#903963)- Add pm-utils-hooks-compat.sh in order to run pm-utils sleep hooks from systemd (boo#904828)- Add upstream patches 0001-login-rerun-vconsole-setup-when-switching-from-vgaco.patch 0002-shutdown-fix-arguments-to-run-initramfs-shutdown.patch 0003-utf8-when-looking-at-the-next-unichar-honour-the-siz.patch- Add upstream patches 0001-core-don-t-allow-enabling-if-unit-is-masked.patch 0002-snapshot-return-error-when-snapshot-exists.patch 0003-shared-install-avoid-prematurely-rejecting-missing-u.patch 0004-Raise-level-of-Found-dependency.-lines.patch 0005-units-order-sd-journal-flush-after-sd-remount-fs.patch 0006-journald-fix-minor-memory-leak.patch 0007-journald-also-check-journal-file-size-to-deduce-if-i.patch 0008-journald-fix-memory-leak-on-error-path.patch 0009-units-make-systemd-journald.service-Type-notify.patch 0010-hwdb-Update-database-of-Bluetooth-company-identifier.patch- Add upstream patches 1092-libudev-do-not-accept-invalid-log-levels.patch 1093-udev-Fix-parsing-of-udev.event-timeout-kernel-parame.patch 1094-udev-avoid-magic-constants-in-kernel-cmdline-parsers.patch- Add patch watch_resolv.conf_for_become_changed.patch to add an inotify watch on /etc/resolv.conf which enables the reload of a changed resolver configuration on the fly (bsc#902901) - Do not apply patch 0022-systemd-tmpfiles-ownerkeep.patch in case if the script /usr/bin/systemd-tmpfiles-keep is missed- Add upstream patches 0001-sd-bus-properly-handle-removals-of-non-existing-matc.patch 0002-keymap-Ignore-brightness-keys-on-Dell-Inspiron-1520-.patch- Add upstream patches 1090-udev-path_id-set-supported_parent-for-well-known-SCS.patch 1091-udev-path_id-update-comments.patch which will be applied if patch 1090-udev-path_id-set-supported_parent-for-well-known-SCS.patch is applied a this may fix the trouble with iSCSI (bnc#898233)- Add upstream patches 0001-manager-Linux-on-hppa-has-fewer-rtsigs-hence-avoid-u.patch 0002-time-also-support-infinity-syntax-in-parse_nsec.patch 0003-time-earlier-exit-from-format_timestamp_relative-on-.patch 0004-sd-bus-if-we-don-t-manage-to-properly-allocate-the-e.patch 0005-journalctl-correct-help-text-for-until.patch 0006-calendarspec-fix-typo-in-annually.patch 0007-systemctl-do-not-ignore-errors-in-symlink-removal.patch 0008-util-introduce-sethostname_idempotent.patch 0009-util-fix-copy-paste-error-and-actually-set-the-new-h.patch 0010-shutdown-do-final-unmounting-only-if-not-running-ins.patch 0011-selinux-make-sure-we-do-not-try-to-print-missing-fie.patch - Replace patch keep-crypt-password-prompt.patch as this with upstream patch 0012-manager-do-not-print-anything-while-passwords-are-be.patch- Add upstream patch 0002-shutdown-pass-own-argv-to-run-initramfs-shutdown.patch - Add patch journald-advice-about-use-of-memory.patch to use mmap() flags as well as madvise(2) for journal files.- Add upstream patches 0001-strv-add-an-additional-overflow-check-when-enlarging.patch 0002-hwdb-Add-mapping-for-special-keys-on-compaq-ku-0133-.patch 0003-journald-add-CAP_MAC_OVERRIDE-in-journald-for-SMACK-.patch 0004-journal-do-server_vacuum-for-sigusr1.patch 0005-cryptsetup-fix-an-OOM-check.patch- Add upstream patch 1089-fix-cgroup-device-controller.patch to avoid trouble on existing /dev/console with nspawn (bsc#902240)- Modify patch avoid-leaking-socket-descriptors.patch to close file descriptors for incomming connections in pam module in case of short memory.- Add upstream patches 0001-systemd-continue-switch-root-even-if-umount-fails.patch 0002-systemd-try-harder-to-bind-to-notify-socket.patch - Add patch avoid-leaking-socket-descriptors.patch to close file descriptors if an incomming connection can not be handled due e.g. short memory. Could be related to bsc #901481- Add upstream patches 0001-shell-completion-fix-completion-of-inactive-units.patch 0002-shell-completion-propose-templates-for-disable-re-en.patch 0003-man-we-don-t-have-Wanted-dependency.patch 0004-selinux-fix-potential-double-free-crash-in-child-pro.patch- Adapt patch rules-add-lid-switch-of-ARM-based-Chromebook-as-a-power-sw.patch to make it work even with patch #438 and #439- Add upstream patches 0001-systemctl-when-mangle-unit-names-for-the-isolate-suf.patch 0001-tmpfiles-compare-return-against-correct-errno.patch- Add upstream patches 0001-keymap-Fix-touchpad-toggle-on-Toshiba-Satellite-P75-.patch 0001-units-introduce-network-pre.target-as-place-to-hook-.patch 0002-keymap-Fix-touchpad-toggle-key-on-Asus-laptops.patch 0003-sd-bus-check-return-value-of-vasprintf.patch 0004-core-map-the-rescue-argument-to-rescue.target.patch 0005-util-avoid-double-close-of-fd.patch- Add upstream patches 0001-virt-detect-that-we-are-running-inside-the-docker-co.patch 0002-bootchart-use-n-a-if-PRETTY_NAME-is-not-found.patch 0003-fileio-label-return-error-when-writing-fails.patch 0001-sd-event-don-t-require-a-signal-event-source-to-be-e.patch 0004-sd-event-check-the-value-of-received-signal.patch 0005-sd-id128-do-stricter-checking-of-random-boot-id.patch- Add upstream patches 0001-core-swap-only-make-configured-units-part-of-swap.ta.patch 0009-hwdb-Update-database-of-Bluetooth-company-identifier.patch- Add upstream patches 0001-journalctl-do-not-output-reboot-markers-when-running.patch 0002-udev-hwdb-New-Entry-for-Dell-XPS12-9Q33-keyboard.patch- Add upstream patches 0001-logind-add-support-for-Triton2-Power-Button.patch 0002-logind-add-support-for-TPS65217-Power-Button.patch - Add upstream patches 0001-shutdownd-clean-up-initialization-of-struct.patch 0003-bootchart-parse-userinput-with-safe_atoi.patch 0004-bootchart-check-return-of-strftime.patch 0005-bootchart-Do-not-try-to-access-data-for-non-existing.patch/bin/sh/bin/sh/bin/sh/bin/shh04-ch1d 1697443344  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~249.16-150400.8.35.5249249.16-150400.8.35.5249.16-150400.8.35.5  networkpstore.confudevhwdb.binrules.dudev.confudevadmbootctlkernel-installsystemd-cryptenrollsystemd-hwdbudevadmkernelinstall.d00-entry-directory.install50-depmod.install90-loaderentry.installbootefilinuxx64.efi.stublinuxx64.elf.stubsystemd-bootx64.efinetwork99-default.linkfixlet-udev-post.shsystemd-bless-boot-generatorinitrd-udevadm-cleanup-db.servicekmod-static-nodes.servicesystemd-udevd-control.socketsystemd-udevd-kernel.socketkmod-static-nodes.servicesystemd-boot-system-token.servicesystemd-hwdb-update.servicesystemd-udev-trigger.servicesystemd-udevd.servicesystemd-bless-boot.servicesystemd-boot-system-token.servicesystemd-hwdb-update.servicesystemd-network-generator.servicesystemd-pstore.servicesystemd-udev-settle.servicesystemd-udev-trigger.servicesystemd-udevd-control.socketsystemd-udevd-kernel.socketsystemd-udevd.servicesystemd-bless-bootsystemd-network-generatorsystemd-pstoresystemd-udevdstatic-nodes-permissions.confsystemd-pstore.confudevata_idcdrom_idcompat-symlink-generationdmi_memory_idfido_idhwdb.d20-OUI.hwdb20-acpi-vendor.hwdb20-bluetooth-vendor-product.hwdb20-dmi-id.hwdb20-net-ifname.hwdb20-pci-classes.hwdb20-pci-vendor-model.hwdb20-sdio-classes.hwdb20-sdio-vendor-model.hwdb20-usb-classes.hwdb20-usb-vendor-model.hwdb20-vmbus-class.hwdb60-autosuspend-chromiumos.hwdb60-autosuspend-fingerprint-reader.hwdb60-autosuspend.hwdb60-evdev.hwdb60-input-id.hwdb60-keyboard.hwdb60-seat.hwdb60-sensor.hwdb70-analyzers.hwdb70-av-production.hwdb70-cameras.hwdb70-joystick.hwdb70-mouse.hwdb70-pointingstick.hwdb70-touchpad.hwdb80-ieee1394-unit-function.hwdbREADMEmtd_probepath_id_compatrule_generator.functionsrules.d50-udev-default.rules60-autosuspend.rules60-block.rules60-cdrom_id.rules60-drm.rules60-evdev.rules60-fido-id.rules60-input-id.rules60-persistent-alsa.rules60-persistent-input.rules60-persistent-storage-tape.rules60-persistent-storage.rules60-persistent-v4l.rules60-sensor.rules60-serial.rules61-persistent-storage-compat.rules64-btrfs.rules70-camera.rules70-joystick.rules70-memory.rules70-mouse.rules70-power-switch.rules70-touchpad.rules75-net-description.rules75-persistent-net-generator.rules75-probe_mtd.rules78-sound-card.rules80-drivers.rules80-net-setup-link.rules81-net-dhcp.rules90-vconsole.rulesREADMEscsi_idv4l_idwrite_net_rulesbootctlkernel-installudevadmbootctl.1.gzsystemd-cryptenroll.1.gzloader.conf.5.gzpstore.conf.5.gzpstore.conf.d.5.gzudev.conf.5.gzhwdb.7.gzsd-boot.7.gzsystemd-boot.7.gzudev.7.gzkernel-install.8.gzsystemd-bless-boot-generator.8.gzsystemd-bless-boot.8.gzsystemd-bless-boot.service.8.gzsystemd-boot-system-token.service.8.gzsystemd-hwdb.8.gzsystemd-network-generator.8.gzsystemd-network-generator.service.8.gzsystemd-pstore.8.gzsystemd-pstore.service.8.gzsystemd-udev-settle.service.8.gzsystemd-udevd-control.socket.8.gzsystemd-udevd-kernel.socket.8.gzsystemd-udevd.8.gzsystemd-udevd.service.8.gzudevadm.8.gzudev.pc_bootctl_kernel-install_udevadm/etc/systemd//etc//etc/udev//sbin//usr/bin//usr/lib//usr/lib/kernel//usr/lib/kernel/install.d//usr/lib/systemd//usr/lib/systemd/boot//usr/lib/systemd/boot/efi//usr/lib/systemd/network//usr/lib/systemd/rpm//usr/lib/systemd/system-generators//usr/lib/systemd/system//usr/lib/systemd/system/sockets.target.wants//usr/lib/systemd/system/sysinit.target.wants//usr/lib/tmpfiles.d//usr/lib/udev//usr/lib/udev/hwdb.d//usr/lib/udev/rules.d//usr/share/bash-completion/completions//usr/share/man/man1//usr/share/man/man5//usr/share/man/man7//usr/share/man/man8//usr/share/pkgconfig//usr/share/zsh/site-functions/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:30673/SUSE_SLE-15-SP4_Update/1964594674926e95b7bbed905f6b88eb-systemd.SUSE_SLE-15-SP4_Updatedrpmxz5x86_64-suse-linux            directoryASCII textcannot open `/home/abuild/rpmbuild/BUILDROOT/systemd-249.16-150400.8.35.5.x86_64/etc/udev/hwdb.bin' (No such file or directory)ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9bde526c90fd5485a71af1b6c3781584f4c420e9, for GNU/Linux 3.2.0, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5547cf9a8ee7b0ab56eb562975d57727ef2e4528, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=bcd9f8f4f19c7609ba7f91413f658f9b0be7ebd3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=af29c40c65611805cb658885843d6a70e966ab02, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=736ae7e6b83966842d36258bb766de05b0cf9bf3, strippedPOSIX shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a0851cc9ef16f786be31ae5c6e8998b4720a95a8, for GNU/Linux 3.2.0, strippedUTF-8 Unicode textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=558e2e316ba1bc37a6f79d63c6020fba69946c55, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6258893f289169e514e263d35959143a0c8ca729, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0ab39f9f07ccfd2dc8bd2778a732ad4456cef5e8, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f51177288c28c86291442440d8959524df63ce52, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f3fb40db4afb3f1215a3e8e378d42bff74fb318b, for GNU/Linux 3.2.0, strippedcannot open `/home/abuild/rpmbuild/BUILDROOT/systemd-249.16-150400.8.35.5.x86_64/usr/lib/udev/compat-symlink-generation' (No such file or directory)ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=580482e23314be041abbe94cc6494b891ed20330, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2d611da0c6bdc42b46dfdb7dd3f01e371a737185, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=40b8e0300227f6db75d791117ba90ee611989325, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6729c4d6770202f7b9743a7f6f31863d1146bb76, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=aafad4562509b6097197dae871a2b006ce43e9de, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=753a949f1e240407c6ba5329a4d80cd55257621d, for GNU/Linux 3.2.0, strippedtroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)troff or preprocessor input, UTF-8 Unicode text, with very long lines (gzip compressed data, max compression, from Unix)pkgconfig file 34567<DLU[ahmrz  R*RRRRRR)RRR"R$R*RRRRRRR)R#R!RR*RRRR)RRRRRR&R(R*RRRRRR RRRRRR)R%RR'RRRRRR*RRR)RR*RRRRRR)RR*RRRRRR)RRRRRR*R(R)R'RR*RRRR)RR*RRRR)RR*RRRRR)RR*RRR)RR*RRR)RR*RRRRRR)RR*RRRRR)RR*RRRR)RRPR^޶QLZnַ if test -x /usr/lib/module-init-tools/regenerate-initrd-posttrans; then /bin/bash -c 'set +e; /usr/lib/module-init-tools/regenerate-initrd-posttrans' fi/bin/shutf-859fcc52dbc09575f2a44b8915af746a52c7acdec9b95333109a40817f6d27fc6?P7zXZ !t/J]"k%Hp٫h#ܪUuz}B@u>H77on[wc)0fCn}0r+'#ױ-g~B *vpG(ZTc 1ȟz/CzP"rww>Z4p- 8$lډwhَ_)]H(c8q՜c;=\Pg!Eݰ`h V<&&$>q~X>ʹB;tU2$Nc& ^ƮrtJty Rle "Cy#%c kt]䎚 ދ&^v!Tl%_=9=kk:dۂ e{rt1|b#/PiNHr7n'E )XLJ'>@aN*nK!LvKE)Zӌp6*Zse%yXP X <)\|N 40f3{`,g~@.J45ucs%ROZ9q~qo80#uSobMTݨ<@  ☪♀s :H8}2f@mP;+= B0:/ Exi(GYy`{B[8~=ɂORV|mNg-пˤD$vE~ ˻9N+Vx8Uզ̴G9HO@tSu'QxՎgN󫚄17i<6>Ê"hF,wGTc/Dž[kc{}d$q?d߯)8z9?*0FNObR:,DMSORx&s~U?kv؆Z^a`64 Rm+?E_(,N4?};8ъ5"ER/Ih }(x̞ W[%~)ZԲ gNt99+zە1sCrPeGЊǂ Kġ`YYAb'wZxjwS 7kJMߠJ99^& r.5(+\\<=Nt=y؊ d@$S HQ!|Q"q`&.dؒlyBPUHK(v>`Rt2ba-c$ZL1+0cX87F9K)׹…sGVzr_$kX~CڕJmbF en%UtJ׆06螲i:\F.HPGQ笱S2E"#$ޣԬl> |]7|*|6=!\v9Av0hL,Q?pqG,âu?w(]=gv?X * hGʥc%ݙu3BP+:L[3ѵ1@=X M y͞;SܩkOj0'M"guq~~x,u~-H;9Ҫe&dBamO݈e%Tj{.ulT 9.j`Hga&͘(σ4NA"O4\M+~& v$ȨzX''O=eSep!%2Ilbc ~^6Hor R΢Óƅ=LnYRw(0!M?D(^O]&IsWCA8M92^j MT4&~8;2˴tW3ND[+3 ʬL~ CN; ;[k`4i%AO:scJݏK=)uAW%ϐ{eo44?8|@OUE Lѝ'> a\,PN}SI=lnpfa;P%ٔzF2$+8)fRi5\IPsވ);#Xޘ9Q:k"Sܓ<r|mߑ!ZN'W b?Z$(Rlaү6?sQs1_HDTʺZ0F+P-5`XoٕZ@F?e> qY51AE+k+'מO 8*.'1+I K֬*B-B~I{E'D:3Dǖ#pX=a]IP&,#b5F)m۫BƉCcP kM&Vv`[5ʀfS/]P:-z9yx  =fx<"V㛠S!Y,?d^V`,{@&IoP$y(d2^ZA7pUBהkpASs6.|$D=ͬ\fl9z&/"9>G t1O\WpJ/3!ݩCrx#Rj(tMV%iڋoFIpK8A,`:1,hamZ;nAZޅ-W )4X9ק=!4[,Zu `TZ_ a_Y.. ,zom$9{Jګ̊ O-Jmy`Ǽ^InA](x:3qĉNvT+%:!{>Ôb=7(KYgbTw7ʸ6V1]S L^( ץ7J,j'J*|_5>A]pb0z6*Jh#q1hMhV35&P꒏=J K|Ek]h,wĊ|O>Z,~ʥ%kSx%1a*tU {^ /KLLT<tk8j?#fbfhS?E 5WZqzS[ @aKn!32tR$9x a5O>d|'*[5$:E3Cm({h@u_Rx}`_/IZDX"YIc#9 v@ f۽k]Rɜ4AGjD0hko #yA!h‹ObNIۜHldՊvЩ{ք=U0> UtեS$D 3/͒8QDlP}KD 7'f=u>K*Pj/ S|XͽhNWd%YuZZb=(OAỤpZF{;;-,*eU4~'  EJtQ~t%|Y1 ;+\_rPft+|NEuhIIϱ%=;Mz* "oyGR9_DI,$31دk7t%?Q+1:#xJJ T=.`LlM#Wro5+wͦ|b1VQ!⒦S05O]y:"cUzfIF/-6!h߳&.Vv4J>18^pvl^O6|E~GM}32NX$ MI0Q!zU>Dpۓ?^9]o N.+⭭9%ͨO YIE>ő|>z&62b8]Y)FcNڳPꞠp|Sliw Q$P 6\DM[ h1||$_Q(bN`O]0ÈF)#6.}k[Knb)PL>Ea&t;v-^ҞIRN,e6{HkJ^Uõj9 D8u>0KyZu mp.O}mZcլ)zxÊ< I{6B:!Nz=tf7՚G}pFrՐvw2H +VWQ(9& ^/=S첩inlXCK^͇mJCι踨1M3 R[ˉiy9&r>HST*رjs1XjBBDKg 3ƑÖ,h\6+_MwzX LbZf-'`ݷ Q\R3#Z\kg"8ވO-Uh`0~0?=긕4QHS.tv@6p/VIJr%!13pf'J- `>3Q QgCy]lYb=,"׳"8Ȏ}nXswcB|*YlF&;f9Ϩi*CNwqШ}?=}T)6rn.dm$p#Y؃8Y&"\uԚwE(MNٽi&ī GԼ61Bw 0n(@{/س Ǫ0IN ASL7٠ZG\y7a;MCM UF i$*&AlFI r\sn^/ccpFppnig[$"vbrtis3'1cwBztdt>[" rp&αuܱvG.GX1V>n7gyҲ_toZnY R0TkڢBl+&q6/aU 7 ܲ:W+PorI/ HO /@1xgJ4T6Zz\4Ͻ]|;yMZPy\QP]bFXwwNۖf0\xJRVop(%*!ϫETQB'>1>9 xKW /xXEx)̓*?JFHCn#d}^k2ӂzNųdAr` _-{@^RNs2"7xL1vL C<.DpN_¢yrђ&P]I&_4-%9g٤ q GbNhRTחBj8tS(3S;%_N|1HF Ҹq*/xo C*pZNj@~ks( HJT8Z,nk&j 3x2oE[};*ϤdO^K}%^oxzk'y_;_OTvYCOo2Ě[6̜J2~D wGe +[쁷[y+YyѫSkj/qaYb#bf׬L.dB۽,@˷ }!:|-н^FbwO^1.9i0 ]ULcxZf腱B4HOo٫жekijՓ ņS=R'D$IK a?K&΅.i ,h9 )WJ}-Bת׿kJgz9I;<@FHj(.ݒXm׆6Iz]#쾽PUQ] `d]49 .=_ -O(6{~F9Fmx2>ttG$P6G*qR]Mޟ4;XfBZvF9-iWC)Oҥ`<izlEIF/Νr.꽸{rjKv뭦u BnZjem3}&0X?Vh^2sHxOqgœ %zXZ>|l["px٩δڱlԤ_.Of?Rny4CǕ<"Z =Mϟ8qRd7&NDZ>@[u2zi[a̍XdUm,0s(F^"aWx ,,4^<+\\U<|1qP^R6jxf42w~y%y8wC'EufBf~%޻W<_v:8VsOsׅhyQjU%)HuONp߽Ƴ0}{!EATJi ,yK$'D=+7kǔwa?.f1{8a߀ ʒ-S4̆o_2#fP* 2su_'}ʛ*, E9P`ڱ~ROoר"!s*&ZM fԔ}L;gc*D+"ʔ_c&s_xGQ;)?yT@y3.ɸ^z5h0 }ςx,K֍6ٳ9r=8?Xp] ozV{< <iKٶ\PpC ྒྷk K Fi 놙Dکp*Xw7YAsby[9 SR/4VGo  9 Zw;,_ n_`f#.LsVivpº>qzAaT ؑD|L)0+ S:xBmU 5$k)o+*nxg%vbL=]nm'IMިT^X1j0Wg5ps׃΄Vm-۬;lzYⱨ]I]fɋ<^P.{$C]SNf?:ˍB\hD&-Ѡ S?sUl8)Z:{ TZKXTzIk>bzW# @pb08y?v1> #:M?dKk:W;Ls; u[\釟.FXf^r- \ ~q/,Ɂ 4%%`j-TgOg+ KBYM6[p  EF4{^UV.Ҋvi ܘ42Z53#w _JM9xom-遺-C#p1*;m9.CͬVUf2_Ր57yȨ] kV]D/:g`3vyG#/ԑTCOqk FJI,G")yY{^pɻ!JA*3 {pQ̮?NBZ԰}s8׿K?}kՏNe{gF7;dQgg|Lk.~EIF>dMF\f€ (v߆3ny5QFZaivnEkZlQLW酏')Xp@n=#_*0#|yS=+~Tu*M9n߂w(sv'}R\M_o(跧~~`%cw? 4TAKZp^/;mpg|Jz }̀)_%=y^T:oaRBRs曀%$xxu9[:hQZͥ8$i@ ڜWԻ%iklVlCݽ,jZ翊VJZW?ے u%K`8l2$uPT`+P]2Uu^Ca#ȏں%͚ TWC!բ=PNH+~FԜ$nKPy< >~vAv;x%;Tt/_q^OWk=?>RAw*P}ZiO1>Iy2werQ}{b êOhhWav_FH0$ 4;9 k/)Gx"T9.wI9QZ|% 8U)ok^lJ):=?[Uƾڣ)z6GDj PtI0^;kT XR}EC "a,RRׄ^ -y|!%ZC[ᣑ<ffVKW]Zcb&K0EbQdP}`80GNv7v.fflm U"i9KmtqK$d%'_5\e0yǞT{@qтKXe4 zf7$I/, 0Ne3e08l8O7 '_< DEaZc ?9]-XoHx "g) XoϜGe*X2t\ۀޗX4 #_媮d=6w텥~2̎J(!_C")?/\T܏Hz<3UxTmpOm-JO0jwzp[zyi^1-qIv'Jf!MY'z,'ㆥ%ΐY5wڳ%J*V_)'?ݍQ`6<{E }Po¦R`2@*ԟFɆ4XpIp[YVJeݧTgs$)QʆMԎVtLk"5žviE\Aշ. !7DZDjQm# {+.XUæcM!&*I]" |x1ḉ,vD!AcݬIo_-weF4D>?~}S=HfqcFlU-% qbwτwLmdE4n4SMbb;ql(;!;,UoCWRV')Bh{Ly*NY)y<ҫHqEV'4)^!=0}Yo09Zp?}V̖;2f6Z g ȇo -pA7 ;ޑIEHk9Eϓ_&"5d" L:~xTQ<FPuzV%Yp7j85#WRx25k{}xdQx}r肃ZYjαhNG X jYgZ,;?^$.:ݢSXC665"sF-pW 9flLdD%^bvbco:.^cwf9dֵ; I3Q;emR2ִ *a[89)ٖl,n@Z+-z)4n"s,]E]ϡHQ{*FkW`JLwa5`A{+Q,6l RN[08#$8L$ ;)mСtD}ZrhZH1K=Uq<sS{rP6c^#0}@q}M`AEU\jB\>t)@RhqKP3דVe$'O}څviEBR&iѬ \v0h@mڬFe D?FS8РѬʫxD_6򧢹vɸ2yҕe+Mz@lt3Wpc|~yX-%q<˚HW(ڞW#%xZ|q|L4lG.L|| h^IN$,9xvhcF|Vh`쇫io@yZӞ}haZjηjkFFUz6Իϼ3^ۆiJY np4<TeJ_ӂuOp[; GtD' gY'֟<_D4ĎKwM:~%F? pB^l|zh2`6۩eBN]( 4 hWP X𵃰Dy)N[3frA7.&'P{.d-A!^iM'#!#4H_܂\H 鴩Z=dK¢UG:r eh~YY1zdQ;R2l$/3VWϨ} 6q1ҿQyH'HjeG9L{+)M1i|5I&*R=^]^>w A{o> Y.``W׮4,WZ&a"&jlpmUUw >4ǴL5>OI-.*&IZn,OҠ{IyI|3!vLVoڕ ǦtK,q砮rq,q ?삀=[ͼt L St炻Bf)P=  ~|}d) jac-功uR8vd]s8+T< !' bZ0 R-&FZ*bdImL8Vh=3ɀe* hۼFf1kP@O_.z;\USB]3snYuB2ȾČ5gC:=茽H^ /g%P/a2yڻߢApRbG>v9ÍM)W2]\Ѓ3t#}%weJ,!R7ϡM(OY=L/caTw7v0~EvU@#C$TaWzRh(wIT(O͂ DgqY_yklUGS\=$FLzT" ),3` $5sI|0uPh;FO}bwvGO_$,A]wMTx?" !_oj.a24M  %ϧи;R:x9xܰnQe 磌n&Pw<.YY+4Aistؽֶm>V}-GDczGt>Dr\vB˗1GuR]l!dO9_CG yr^S'[|lľDc,PZVы$J~fNp(CA csѪ/۞Ҵ[/W~ ڨ#ɣ3vjm@#8:NL%Yd)CS EJArZ.x佛pTunRRqFIx"LR2AUCyWDFFn~[$Kp^aJ?Y&f&p|=|VjsSlآ \Pg{쵓e/Nux"o\WijwVV;ͼ Mq?k6l.l'2*?x~?hZ-ߔ}{}HnHl3jVZ^rwa+ N [jҾoP2̚ Qٻ yLk\j2CWTаq+D{uè`֠~TRTT)#5Bw T$,B2R~]Y%D6P,w L~Ba,q RorZX=.6V֪>YM6ܝrA>HwZ4{wKm*igݔ@Ǽ..9~,6s#T붹V|t'mH'\UmŻxdcM&{qvrh}O$Yʛ'Ou~c435x=U% ¯nϑH5ܔuT`L-MaK?lFٛ !O3g|A󩌝)0/G撘x.d4b-1J=(mYݶApR@OLf[3k>N~/)hbrf7舗8]w.VU-^7b}(>g Gnn}ضA<`AiTNذ>":oqFJmDѪ8Q1`2킼^2jO)v:E[xx 8jmjvB(8̄5MJbPn70QPXTI7}AA#E 5Fvf0 y!t֮$-OSK*OT.뽟)/f9ĥ)U@^bq+/,bna':=rxfNEqw!FA#":6AǮa A[>>Pi]QIɨsAU<[w[u 4m;hZ$Mٷ YZz <%݄՞㖫9+;y1n ӧυ'X}ZbU5& *}pӝ/݇܄ʔp OhA~n+!޽ϟNlnja4`  ]FhDFB !!?K$JWu 1ty0 &\"׎㒈yrTnge5g`aSR،]'o@J9S..XfT7]uyf  ';6WC RwP)S|5>Eefbj̚`cΩnZ:gZG~dV{zӲ [7la=v  1 &wM)7*R:?J6wO)vB|x9*MٛQMXz~KXת28+X Ŗ YmkM \w¤#?f0ũfC=I\C=:e=}0ЄkQ=[AzeˈhU_,!Z“(H+= (g2%qݮe?ȵ&)'ASZ Xno}3M2]h("DSrłT]x)#bᅪ r)bJ5r=_g{,hk4q= ܤ }?2[Eq_cm.&PI`|cbPXbtMU ƙc6b`|wvjkR8/_<}]}>w"xN7/Yrp\I6 HjQ]qdgLL= >} SKl2S:gSkii  oŒ66{]r&(ϺD<USN5upg8',eM چ}IXm~#;4b4$G `XUaWb|C8L:I[F$d&$K@(RaY\͹A=Q#t8yg_T )joFf0)Й#` ݡp<"Fk߅TނU;,?0k.30&t@(v~VvT%uݵn}):Jl^3,hyp%*OOe3N=L9M'>PVzH{E{hTs62R٫Vcs/˴'R&(#57aK 1JTż~XZ}/ՑA[Kv0~ʺl*RL:}F3sVzC"EwȟpY٥H*<=ZAזRiPny}H6L:BC')s"!W*LWR5>Mll gFR88Q.mD7{ޱ7@ŽuoDbKUBJ};~P4U(͋Nɨ*G k٘+:AaRۺ/K\aMǐ>ʐkusƐ9rpo&RL-fɶ b\ӟl8ZNH|BoI.U䝳͹brѩ5ߪ v}yoYi+D~v, >jx2)$:Ճ@1XD1PkK9Va>HԕF(I.ӼAߥ 9s݂i -;? %䊠}^S-U}#Ջw9 0|F*A慉ґ.]tLOvƳOh' x Eq˥CKxvMa$?eFx&eͳbDtӕŠaÂ)*,D\T$ Hc^S\y>A`TA*;>I 您ѭ_(~]@YRCDlHCF@V:Y:"ω͇Y!ʂ>TboG5%9SgGO!nD6iEz{:7s{r}(|%D`͒9C[12dq S*^z5uTǣtdx"aH6o-rߚ̞ >z]yĄ(\NA+ȚvBY῞ВFk, 7SgR.ކ:Uuk=hG.\1b=Ȕ1;IyMR ˪p3 : o7dO^08 X QM@gs%j*N{3`%q[d<4(S-e`#%[-R3TI")d4}j|$L.QE U.:Ja[5Ж&FnoNE([t"gjSOX x&b+v&2ȥs+2R鳛7JDϝzܘڶWZf͵ Ck{` Zj5 1NQpҾs4>d{BUk rK;t,Z_w^)Yvc:|HAIn۔FSwO^tۑvԡ{*)hW4 l#":z.dǠV Sjwaҷo%!<82T<EzQ09K!Obyސ%*6M r a 刭~ 59 p\qB?2{4!EJ8>0QTr r*+NUr0{^,T{_ ;tr;  T) HTr%˰Pە/¼:C3b|Yecji!.`m[ha|e >\'sV&+=D+iYOeS,󛌑,O0x1⬆8}}wQ%R˴S![z.Xp=fjә]WK м8ARX˱'vl9%%pPM7U 0Mu곏ͿS 6G@+{=-Pc׬ pÇ'm|,CFq`'m{^89ĉ<,t4{GH͸D5UEtȉ+l2Ϝb~$E(XC(ț8DDoELKi:Fj&+1Ќ.8+UO>lw`[+,gI[9yx[(+ L>rWҬub2St9t$L'63Kx7&IӖt(?}'gZ9=0I2hUCk PLz<<Ϝvc Q(>inZ|vV!kw\S6 b683Q؇u[!4XI5^F4?V` "cM(f=iUQ%ƑV̀<){ 6@jCc q|& U9.F0a50tEkOσS[z zq} 4ҝ\M9ީ6Z??=':S'59fC?Z (ٽC~u\BPFR8/ouus+sfsj)qw;-̴ ɍ{GʌTp-B(t{Plۋg`3ɍ~`Vp;Zܾ@JOsţTlWĔuB#YoQɆ6˭FUtoqeQŌax6&+Ʀ_43P-}@*C+o'oM<3Yä_+LKՔz<@}Krȟ)tͿ;C39#c1LcrCkF9k]\ۇ(4M?wy&Uw<VHEx"]o~C]_DAo:% @ {5>,Kنcы%^;y?T0?SA u*~xx0yd$*F!׹scռ vo'%:dG% Y5xcn׼m&~lSvM+7|OG1O2,)1J9ɤlSC4p6 2H:_ad'czt?뛷3PGT{riD^@i:K6:7GN%zfٱb؉lMھ%pѓEil"ѓ+lq]q5wj7DiؼU23rNx,]NfZFt ?/ 3^TVgUJm5-_U‘ MnІVzkH]T"l,).b<@udĽ@UO^1JMq`ixe6'T Ih2E,yB?%;SkQ8Ths"Oּ(X}g w숇gMٞ6 J*TQ9*Åݱ8&Iat|Mx-lPk6*hnZb)J[IC"wTB5s-><{dL Ƚa?;H],j}rEHaԒI," jݫ͹<\v\j_iW2v)C}"*t [+~m n67X^|鍬&H T 4qzķveP2"R>p ytn52@u^ M2D6ecKL7ĺaP-2Kivك^w8Ɉ)sE]:NVŘ_*Q& mN]Hw^37c.([ ~т+ "GfuLJ(nKh+If뎚~G?n;X g:t{ Na,tnyQc ӱ2,|ϔ^(^kԈJZl֫$h|ZK0rƢf!6$9frh4@?fn}q;Z{4O_2Ǡ?aS,cy7,ȖpCo*o[0\?>z hyޞG) fxWn䙸| Ƒ˒S C%KZG1_7c K&7bE/Ud !14TeLXh]3[uƛN4kWP*$.!v,oRԊf*6^y ?ԍ:ٶ[fÙQBF"ٷbQЌT5BIoc/ve3˰H4^Itv"AGj j<-- HryGϮdkۚoe1gCj@2*QQx@x]-㇁g Ez'dEUP l6U B Y{YPʌhFhC{"Ey'kk~}`r-dݥ16qv =m 2Tp8B?n4Jtf<u!=4)2Ȃ J? Q^2iAo6 'i80ҽ9A&CfynxJlHxbH;;3EqF|ѿHhnÊ<; l++kvOC="|<,2BG-ʎٔ b@VjX OU"a8|XvEJZ@jkΞ`eC9Rp۸V%P9S/%E Lqh`n)apqGS1άnUCfqF \őke)Qonm?F?g,f6^E(s.G#jc잿D7ӕ"8VDŽ BUr~e\ղwJ5p H ,dBƒ}z15A51,hkIXxܺh!rDI]&,'\u۩K.ۗf\S qNMYsB رfF2]:/PA(wh>SJ~*K5x#-1RՊ}().x@w= #6qBL8V+5ԡ蓉a;Uo g> l%&7Nq*x0DO -vVa),umI߇aek~!M֜f.ik>E`="aÀU0kȍh=#W9nAg\0a<}};g˜  oC1֢2ze7R,UL1ˡТQ3>~(kT3O/ Pp~1Zq"Qqoˇd'vS{3RBi0R[)9(3yP%佪Ә '0]B`1EtyrQҾH_&s4h&W? oMbv%=-kq݈E{jLcl;ǃ%&R+ydD/Ep%vtﲗ7DՙF7L )#fok[iQ=eW^=YTN%:86g6(NP̥ &ZC~B'CۙJr}OtkC-.krQ,H+K)F.V H\lw 4{%%}ƱC"ZpvQ6"HQI*=KHV{X%%O;=brlQ7$5fmeHBRY  sN*!V +" n03G]};dfTD;){kY$>I)n W}C |x )WN#cʁA'/2J+ز#Iř r&^ g~_`erWkVK׍?= QUʞm7ѣ̐Q61Z,g1Z[~[v}T=ߵtc Vd6!*=4W@4- q!u;CmsSE*ˆ]̪M_ySKgs!F\OPC`xKx\٪8JVAsܔbجQ n :;b\ 7Wq35,-~ g`I3Ffn$# Wӕ|U(6yTgxzjD&Λ?6aux{x.ʗdŎzVf{pF@0)CbpB(Oi9Js"ІiDxAa} s: c ^P2=\JG rJ|{;[UPզTHo{%JҖEifQ+=Xo{*zDCN9} ^tVC=mϯZoZـl{f+(b9p1XKqCE~W@.漡i״ϒB҆-ܵ_usׁg(m!%dHԇf71!|谥1ī+֢5y?'37xsaͅx(_=@$#.DK_7DT׋Kϴ.iXK+{[z[{!d uM]2id׹kRU6DG#&b_l7z}̸_ƺ~n:J4DGW*])hQ|1u6W  8 >$v6\:+qB&%=}.lV3 F?]YaܓUR,lNb g eЫ 9x=T>#1L,9meŸuYc [1z஫@ Jك^ 彲絫jNIjFch0Y/cϴ2C ~#xu}Ե ֕nЍ08I*AAʟùF=Q9=e{HR43(%.0E;jN"Sy&A}vs,|t#kb/-ŽQulY19Sڱ=h+ $Km@|vhL*,wj0hSԨ)tUvDj0Ε m?źD8|4]D'B07?ќX[x]5>+$͆G\ s0Qgq =,j:XX=nC=:_zwȍBoCWi"8/"}n?45+72~=t}'`jkZ̧.{UWa6΃dm߾*!.Ȑ1Iq5`Zg-uƊG N"Ĭ~?;=U}LCswDΎ= 6F&Ne@}A ' }֯כoBTup}k aqo>m )rg_~)=4f7;͛BTa-%rD"PTHeHI Y'54YlԎϟu8.rM,%\zL=2Ъ_=*?5_pFx"L@ v8O m}G=L6OHr>`T?oB`i] RY`0e g; mw/"n,|sEVW{u1Qw^<Y|^QU iH‰">z 馠mQ>H_| hu}o/pZ7L1p,gG(ں'#A1S)7 i!UJ4_7{E-'3~lGFD{G >**|M ONB" IvvI3bǚdU'aPL)x@F)+翊Lۭ/~*xK%؈s`Vk8q4z<-Xu1Sʍ3,9 τ=Lm9t/:Y-{gB-O8~/9~ik9c;@֫?~ZnG;|^xHs|ɋW;k1HO%cXr}OdkLyklV-5=RI3Hp\`݄Kvz\ l#:y pK}T[H_4R?-}p]EK}T]]!."̒JY-̢~.ĝZǶQ&y\̎a$y7DZblFgb@.b<sUK]ͮ!ok%CVz#̃K13<rw-|!T-`.nE¡$c\PJ ΝשWQ=7 B0xXQ[Dx%!)_i䊧K۞ܳнf*]^=/(<z&)k_B˷&iHa:0g,>\v@xL@:t)R>,n.85|ʈi XZJѻҡNa)G2R5/y%k,me+V>`c|M58cߴsޡj>Hk@l=eڋ82[(bF4QK_Nx..ǧ3#% )z^ԯYܒl!c0MB1L @SۡKkĺ~0|/k3x U. p7) ܹ6q9ܭ'M<}Bٞ|,$'xx32أ*G\ߓFX".Iс\eȝ=ፏUW3vPS|&cO 0tUp–9W\XMVp,88tHŘ;m8Pso@&6KA~= b.26,L2QTLpm 'e˯<9z*z*d{iP&Iz F짼=ʇ' 1M3=e˴3&7aE`o4S]I0R| CIV Wl;&ӲWROG8@'5KQ5 5qfed:.OBk7{#ok13-219; . 3F|H;eSO9]+jTfdB4q*Bv}wG;--r*h )Xu$i*-vhDR]~AJ.Irkۙb:;,@kǶx0EY3Qm!$|'1h!ܸ7wbI (mjz\d}@x$UZ=b9Un= `XXT׫4xV[hF-o5#r>U'14" HO5NqD7 ЦL~Y$;ψt ( wt$C-vry|p/zêHϽWMb_T( > 85 ڣ$9XC PFk-۹ +}OôE43d|z `nKwǖjRW!q!Y[8FK8#hX&]:s!\3f|kץ6g–&+vw_"ΖynZR8}DRYnxb$c,>*CW7V#={HfDgKUOҴI܁-CC"BCG[}=4M/%6;)ְm@֔ۥ[ןTz{f'ot[q䎵cU^^McumD\.gYXߩ;3RI;Bdd]W:kcN4\Ef%c#[2`l(Tq5Ϣ{MRu؎$vE fiZn.f0;yB8 oISjڊd5u$X@[u"UOX:ultsv(y6OOpf[4.RXjDe;\>pku"~޶/5OWSyojc%=AۇOmPrb~N:5޷?VQ/>3KBo/2[We%(= 9B '^ݟj GBTt}l&w8jqMa%?+cx}ٲ7js$4/ڊo1>_ݮ(EUsN؃)-[| J0L-,tŔyY龝|OA'2nueq'qOhW24 -l?*j)^mR4N*Y ВV5Y+4B#; !x V[V_<-AA6v?J,La.ZDEf`h{VaJk5܁*.IE5& k#PD(ͷtM;cKmi5 1@x;dtD;CҷH?>1QiN X0φ. lЫY s:RG8V&EƖTN,U=7d=][|fm!%)U'b5#{K\Rq1ڏ4DZ6dAw&toP?NL9a#Ȫ/@I "K=L;r+i|/MFC#URḊ|]c#k;F5I6=i|6G) :6F.U%|A솟Ђ QM\,xts;VŸ@1XZGeh;"7G)EժkӁpQUp-4gy;_>^k9Ni>ss4k)b EW"<=40t[0~+fV}t| `UcJܤ gvdG߄!-ࡷـ4mt͚I %QboҖb߬$G ZϠEπC&bSIUTs\C9DqxhzlCq L?\c& mּZtMJCX8.6m:;JѴX~uzaZ_< ȲԂv̩$۾du &{ӟ=&WK'R$ʜ1 mKVvPB]yLGNfL:,r.#\dOY@AuHVJbLeL&tk3yAJSD*dPiе*䌴ܵ3ɨ迖?7*W~"wKk۠D)?wn:oL ^ftUeVSQG4^ aI SSh,dF^OV[0F&6H_Ej17i#y`X˷JLıɥľ83m &@Tk q?~HGg<ǣJQF@T?ڻ}5 ?`(,@D'tKD$&2>O!Wh0w 3#_d]&uktE ISw_Ո7ҵ#SIy>kĹdr`N07&-G\^0睢m>1;ĕ,6$&fH #/>?ȵ$I%|&Zj IB`)h X:89t=Ƶ *M9հܹޯ;*w.DG.si jyֵoψ@~r2 S'͡So-ID#].*-L_ںt牷eV;i K@CERmA-zwy5%S/},o>/Za?ZRo2O 49NQZ~N]Vޔ*qYPEaQgsf7ƄE*%M5lqJNy|zSkUxP7ngiOKժ:う ?ȹ־Z\M]aw1o5i^7FGvNޗ–.0h'\nOvZm-cݥN益Bυ@_7?gȼ!m)txV`vEˌCnr?eVkNهV:gZQ2S\U%k=(*Kv'2OMȂ=S {hfnHo,;XO&nRC0Z~SbQ6Q](sz=b/0dz'xث\#$ (3n6=@$SSRj,yZkG_me[YZCVҢd IʷI7=cbL9mwʾJs<I@; ruemƒ_j1@yqV ?U_F@t~ 8$E_\K,q_w3\PkSDr;@ /&&!VWһ1% ΥE6V}dEtێY Q*q<6j=s=LvvǺN[{[|Q=D9#PLwanG|֦E*|y)Z=2%rkn(R5;|L01ӿsϤ~'yTz"PX7=/Xbv##K%vxƽL-̹oZ_QSx?pOJYgؙ.My"E ЁWܙݸڨ sP5)zpru>>X~ BO8y |OW!qYXI>4<1,<_aGg} #4SS:"㑾{;^ګuضݡRK HP_^5l nawϮ`!zo(JҕxE}~ um\Ԃ$t%w(7;}.詟EY0Oȶ\wMA"^ve/9&:L'brǽ蹧Vc;aܮr.\-ћq jSq3Lim S/T)ޮ)K;f]ENh ؓxjpObPJlKB6A%} O|uWAiشߕ6('slot*Ū׾0nA$mDXy̤ދ?"CK$+Ƿ EרpR+ ;Iޒm ˩CìT)兓|>_-=o3%v> .?#&'}[@b0e)5}p zVR_zYR(|rbaSRD}:;C6sg'(2w/qW iz"äq#} ? O+&!:D;zqϬ=U99wɇ%D5dvIji苮>Qר՛L0{2AlCNXNw"ړ2J?d%:C/qFܣ0CCpMl~'gʩ/^ҝguq]ty>=,q,]bs +aӎ<׀z&X DFrMQ'80NE%y@nEiV&:οWV\Bxč`cV -ʊLJe:Le_G OHQ}Ҥ'o ,.8{IEwoP bl*P&ve)EZ7gt)|ĐcZHps`i4n)zbf}o<"}I:LWf/->.Kc2MSǮax'*}}"vف(# MN-7]lvZS@⎢PuIZPTNíndA鼏kEDh|S&<8X}u/Ux*_gTC`4uBYd\g?j)kp7"'Kr" $~V/A/pإ YvICm $"4LI?ܯS;m?Wq_Hbڪ0X']?rV<)TceHo B~.v2+5eݬ3:*vo(H|j(IPkL?{lAM%v A_csmzu`舕eOlTxHO]+2 3FG6d!tؔ50+E) _4Jt /,.F_|Hyj1CwĪ#vA其߫t{j}sd#Ϯ> M VvB*N3.By20ĺ,FwQDlYx8!@=iC$+4s.!A#Fh$ 2' eQ+5ξ-//A7ɢeه.7p(㶽nO[đ0401WlTNƒT*sm>ٽ\1IQOaǭN@H78 q}90T˃ rW-Sge SܷcFN+/ Ut"jv#tH{\3*1oZajuZ[r u2Pb@PhTCrk+u$54\3MNtjV6t8Ke6N? %R23Fu͈~$?H?~;@-`g0nɌTVy } 4 ԳE@ ~RZeNò{(>9!ՎSת Joh&൯AABi2}[̀'v6H>5괰WE^F\_50B"׭4!}_#Gi7]̴"Z'):ɞWpzUێȻn$Wjt5sDx?(Vc( ӵ5Ay\1j627:B| َ>ssTDQ{$,N s64kaL՗}'()npz^*v (&r&*@J-V#`B&rN"Rz)pVj*h{E}PO,o5N LcņD"o;WS&3YCֶ:Ï!a8A  -%Cm:[i/ۈd[ n2aL4s#"W%z$B)ɍ 枱K r;5Z[wRX&<8}˜}ڶyxgnWTR׳ECv&m%9p&)ȨX~3a./ޣ)A/Zo)Rpav'Y ;i}/?͛j)1iՕ%rd!ʹX8zXx;#JO_5 x8.tHPh˦:ܗL'Jweh9u״ xoNMxWm]^Xސ MDP̯9n>ȶ9&g׍PF%@ڋ=/C.ly)+ze8T߲U4"915#|t F\A:U](U}mRޱ{(Lci#TqZ#Po2֒bEHb4P7QrU; 4T{.[;eHdYξk V~pBދRqa}u;DB5=n %u>AQ{7ᤫx+Sp_.sC#bu'Y"1J](| r̪;/L D{5LC@+ИݲEJo` yfq&x_1}D"[2f#6GmXOSeOM;ԥqZ3xb]}pt@|.T('aJ5y{ c h37Y#vߩW"zdqkD9A61YMX+1Re b>ĘW.tdg1:\QtgIMq!kK$GdrItV⬍voV*"M\$pl@߁)LE.$5 ͨk\(]L+3]wuY.s&ӣuG~;*,ݴ+B5bmF]a[ t*E~σgIGu%gsDyr,dnӇv(?xT0[K|0sKO7IѶڞ8.<ףD06np Oҏ[RǠ4Me#G CNiYOTwȷ=)s{ /v?Dh@ja`R܎SwH0g {b Oh܍ɵ=&-l||3 8J1ʒ!C,ãZc?`'$9H[H9Աg>Mo䇔P & UDasxM, HL?/ܒVYA jF%|jC2G5f'9xW P[>_KP]ғKz5HJaW5J6S!r4-V7KJ-4X23L%pFw$>9K^S:epG=YGf`~%:@MM ֤ٕM1a8Qjs-#p'Q C-}ìUKӱTf e6齞9,5pk?DRK*[ojl 4z4n2q;&Pޱ,r_ A,v2P &]P_mcY:Zi3v#%7O Wt Mր/2 .}-M븆ejH ?L47|J%^2Qy7イMjlR $C?2},iyqVU0%K}s꠭VJ=%T?y 43Ca]]M7kFȯh3,IƉݝKuಣn~Mt$,w>[ؤ&'fdroʵTL ڀR1\/XG 4 yL@ХN8vc36Qᚁ9N&ҟS-MDEME0!NR #Vz#4ըfD -D =tr*g0]tbMzQΑO^d,,?hFNo+dw"` ^<Ʋ;HμbrØzZ+s$=*mp|<_lir +fj?Ȯ$&u15ڬjF4O|]D 0͗# S&s7(JlS7v\/<$32[IG;`$ap6ӇAfC$'䀎bckZDncADh<[6m22"i&E_-s'M)yPNf X[EXPl{ ]ʚ' t#&OΐHCNKNaU 9&<0L1oˣ3EgX`gp1Ϣ/hKN05D()r~jxH$>?b%yOZx!.Gw̬R' J|ܞ͞ ״}L)qov)Vi+13!0"X:*{I"gaGs1T3G7rn]0QZ 0 $_2eW]MBTsRE"Cm2( ;F3m#cb *SB4g^~ Е}E}M, uk=T3{=q!exY&c"/$ }P 5 w}J(o"2pDpC2:jwQT4x[ɜZfg|n 0tZ= ^o-V)4֟w ;#bJaU,k }r^_(->߰~J>07NnkE;^zP#i5vy``N%zn1G3x\Tr^[@ߎR8cd̄Յ F,"?ƿ@,{ʍaBXm4ɰ_\F0{Cwɡg: `֋Xn躞,w)o)DjA}kJUqkFj>OכF#0I 9-%թ26YZqJ1[HGΕ G J[{e7GL]WYŶwTF#jynurd]Zlh`%r$gyWiWȆ0m:H{GpY1$r$}BB) hyT<Ý'bx>\~jj݀GQ tg~m1 ЌX4Wfoz1Lm>t<ìAOibH8Tc6iI3m Wd_jPDz+؅:'ڮo?A5 Ö{hgW5od-5hپfAVc keBp=Kd/jKΊ>_4(yIbB+FK,7aLv6N#QO7 >}W1uzwƔG [Bx=bn gXYO|fG .ɯJ<E~+;8 |D:PV1N"HЛ=uB6\z h"fT%[BJ ۲"@a򬦭`WgtfO50fnn~|VQ4#9}[Z =@2{b>;!\a)MRT%>s¤)n\GUJϟG؅>լ|LRJF z8hZHYFăSk氰oX09wڹ\7X@ǃ*pD1Hn& {4X+ӡ(xu * ,DZŵ9{e&W)L>R:bg>57(-KvM0eTꊭd>ɣnSI^!ڈPKÞ@_Nd-|&y$Lk>Lngώg ;'Pr*LMM.u*LU~R)Qyش-!yN30 k|EKj%JpYiuq} ZѨX,R]pL@'nВ m#ZqcxC]n,&APH+n\v[--@ٍԕ)>3#{p^-TAGɫaUˊB GifU;Zx (\&>Z[YN&bʌXˢ濘9Il34+&o\Cۯ;TTfN.-]hS Ԭۗuaʘ<cǾÞ"A֦&+Nt۸Ie![Lr=Z4ga.Jrj~OKrO`QکkO)2🨨bVH>`BfT6˦!9֣z"~\̿Fu qOȰ~銙=EO)Z_iJ壮,Az&>^am /@5B'i\z:ah6o 'Ƒ?K_U{ qsu0Lѳ,k'X` vGD֓0g*%&}dܼ>P 'q{r?DF [֧,ݚxAQ nRJL'0 )"W:AMjys !(JtG/AcdC;|s_Ez+وY,mwդC!6'0F*|Zqa[=Û0ي$~qD&>۱3FOh#}eQpk1NWĿSC"AjcKsC8tc'GDg+=[?NQ^\d'զ~7QLy )F5 Pqlj;a?v,˲mnoo&04?qQv?D~W0adN4iAO+ ZD2',t.t`&|(= b6)5\2 GIr*Ȣ *x>+6lQrAG̱%&79-'\,74*,$S0v(vX_6%0(p~shrb;2n/24v.<1H[*p|,;PM{̃O t18G^t~.5j*Ǝeȭ.*7R(_Fr\2_.KlAq foa8ܴVfg8~W74 'ThHcT:u oBtpx6.jZ܃k)Mw>&#?/ +@Yҵ"p,Ԡ`%P^MLJA0WI}g F6#q !c(^_J(.LڏjC/ :uN-މ@[G>V˩ViF0 4k #!XqA:* B07'F.b#Cus'A@&c7t.sV9YF?EF)/<@ *XJj͗ycia_\ #EÙUbmI~3,Opj†kY?0zH Z$Z ԯ{:#?c6 %c{*)bUSXUhHxIJ)$򢃈aROWA5:Ї}Ak`v𺀮^9 ֛׸2Kr3ORm"ʓc^#⨜VI{V ™4%5ɦ~P=(z#)f} %r$=Y>hLp3*Jm, s8"IsR"kAņ%mJq[(>=Τ#+Er5KNjŧLFvA8$n:}3T},Q9^1Ʒ慊h 0@yg^X'Ym}j#3,k 7:1!i41ѺPmN{.8*lE$ܜQRZA÷2 Ke6lAٖۑ|`'`1Ɛζ{v?\{Vs3uLy7pv ,v(Q#@ n$\uAgu :ݸ+iW)s: o zH@<%Рp'ɨ5X$;l_&{iT> ,sJal+r dÒ(%4lbJZx PZ׻,=I2F @bVB3#Bvz:"i~z5a)͋Gcgc# rcgVPX |q<3#9rQ@uCH [~țP(H=ns#6@(wxk ҦkAlf|-qyB9BP#t]~MO-nU;8;%eo86Ys q-˙]ۀwѬKxrD<Y!,vi&" [o,w$^%// 0[A 7蝱 J=fW-X[s}VAhMٞ׵Yox_Vþ׈ 1D``xGtC 6LA ö Wb&8}vtAwy-"N"s!QeՈKVqi]ɍ}Ń68aC"#F c֋BYcKHntsH׵zDs>'x;8o%R=))5P'.4ϲca=|>{MV0C@]x ] Չ1z.+_ivށQ(v0]PpUVƯs4{}(Ty-NG( ^Ӗ1WMZIi.+Ìu4SU$FtiPNӘ&klm ZsUy*&Xr:"9FPuzA,~ 8'=$QWs?|?8@ r.5 [H?ԓ1ϜF ״>w&;ޡ&阱;䙻 ax*ԑV*k;Cl3 tj_!:wQ& O鸓5n|޸#"ؗgգL3|";Hvg4_mrLp;k /:G45J;+; xP8kf4K{6EHQE2}%󫪇CbAx I#i,/ 7n&.Ig%_w7 Hx9]`hVp_Qɇ*F<ȯ_+jĒn:Dg~_74sߧrQ<ejvjop|`QP:\7.jĚx΍#ޞ[rFdDʯ1bRjI  jkT3\ˎޫ1[4dkcxF6$ץ4J!{QQ%!&ِp.&p/yѹovߺT0X{Q> QvZ¶"6(#F˲k?u5? DJV!~&35mNصU+m流z\;6 F4gr,^d5@b?oV·J0t۵@,~I͔hXIF"!=\F%U1{j\wuM(h}i/1_ \#ȃ(UJ_帔r[C"$[o 㓐b=zp;nI,_k:L˻Դ;L&,Ѹ~zΉDjUUKzK2ƪɦnc1ؔZ<2Gy.aAgD};ȃ0h[&mmM #f +!rߦB8wqqrYݘSKeբ| 28g܆E'hʊ5xmCro.odcWhВ{EmWq`[av剟Uu~FMސ~D;_@edR2[g )r뮚 joWOæg~nŠp]dn.hpukұjIq[؇|Zq&JB`*uh)(1N @WP|\wghba̧;&`ϻ9h;]pMaR-~@)zE+eeulZL-f%^VI2yR3<`OxT&l -_$޻\?ǧ!& JXRƾݨ|.bٌʃpl|`S!$-YxfB=Ku.JfU+, Kࡶ5\r ܽ J@ !L:K t[iEd2]p{qM;rޒrXr`#AᏵ+R{bI-x5MIxßvkVjQ-w'2ܹVGM "+rv*7H6ͯ?m%03=aZ>$o|m. %JtA:+OL~ORoA$qN(`#pI3KN;PXX})1`ݙuV,6VjZkֲ2™ʣOY۞ fԽ:5K!E(? FGxQ %_gaJ֪_0z\1ECq(!M\m|]J8X1&BGm KS!I=A;+규ʀeZJBpedw;y+k1,0FV} D`|-l[KodkW[tZ9u[)J0i?*yp$l"-{g6̞SHcAĵ漏X=V dX aYoI^*BWf3D[S'9C s@T&$~xf{i1K Xw2lнGcOt"˟d2bAηj*w> }pP+ i-l暈FɍꞾ |rL| ww\W:'nM檰#6PM| dڛblk[6#hOUgVW)$],e&"d#dVkV=5>Rq O)Yܟ,3 99W1+_ះ,D2^b?ȡp}#r d DH6'OgԫJ~*$KILh1ݠ"QE_mqJa3~pi_8=9VgM];6됫L|¬^n4S*n=}m]~iCKjf*#&F._:a'tQÑ z7:RwWU}tӖj<GݰJvgFި5::.^+]^N1% F@ImW*Ƃ=R9$j Wg@fpK頍oY/&zUcxC`⼸"ɴk1rv=hD揸-)C:q,Eb7^źN蚺-MjWD/[T{"% 9z躵&2, ,QLw>yEUI -NCV)hc)^ݲb _F/\IƓQq@'ĢyۋAֆX`"sb] <-N_3ۛM#,HD̛x#̠a8 Ic㡯+@2orD8+Kܻ[쭗@Uvl@븭_oZ<~gĩf`=Uf eagQ69䁮S1CDw >)'šwKvN T-D}{Gjշ/{sA$Ҙ13+ \> OKI1䍰 ,ouD}Z22rG#r!ƌ35pAqNd 1KY~Q^¢6|}ۻ `!Yov0bwEPS@o%27I* !̰ԥhM?ЖLRӢ)pɏ~Kߠ gͩTm"w!)c9Y!n/ a.sZv>pr폡9VKoV;\~ k7ɢSHi-V\C_sF 8-p4rE.&+҇fxR)ZvlHSjzFo}yZLmW$~R=o\U1ڥ]քem؜{F[ n;2Vӧѱ_~ϸw[b#,0]pG8v| cYpPro.{INr|`<CSK>Shhil3(r[(92 jF R6_w;(bBK.%V0AJvu#p; i-'t8-&VSBfk'Nfa&n?Xvkac,·>zzcc@(bx{D8C)S 濨CLq0v2!kC[Y9E]&J"w0id`MI?ri^<"6!1i!RARX^PÀ;ynM8^)ZȤ7_\">Z[ԔN*X$}`=5q\ aL"Xbiǎu3\A^4i^-BP/Iw|>wڄ?:Vz!U3)F m8j1Gh}Ѷ)XɅati=>%1#s[zSlޗ`fҙ DҚW\^>.p?KjD}TNֈ:3Nb=`8bG"DzYj#{YYlAoKj-! D6gJthg2WnQ0pAؼ-2qf2El qNy|4-mO#7N1lykNx E$a)hqyd02IG A.V8V[f@WU,]BiM% ~F@ߨ 12%g7ji,J&D<{{qɥ{f'S[D묛NyF"RJ~A%qb"?k|CދW8֌><-6/ryyxd ,&~ ɛՎ+޲0 + P#13vHp6*6{hɅc_vf=ߦQ  ɤQJ.9p'U{y]Jc!6s%C=k=[E;[ JRNm?qN#ľy/*/嬫QMܛͮӈl+g x6ȣ)=%+7ӟ Tvd[a^|%?,&i>[#Ktҝ~U8OhPoƆyNى,; d2n=:krТ^F)gPʫ+%GLl+ylW!ܖ|[SaLm[p|gIw]c{;qba azR:^" aI~Y?2sn*̮='_þO%J6!u)_KVT$=D~ tӤ@yBV)Ǟ|␝c`ITSm_`r,~oțZqo cٌ{LAw FtQhݧ"'F5P5޹ D,꠭3[D 2532)#!hpWST]rzᢹ=@zIx 8;p3 ᒗSePV#WNŲZC8~dft$Vw3j_P4ר^݆}XV&,7;;0T]qTtW1A>vx؂dkcdR-hjsib7a`H1tY_P@~Yx bJg&:n'GJ 9cZZ.P;qG5ʹ1r憉PCo&BZ{\5Eu,%6@_!R Շ?[O :]TY$f)37{I)>Ps&ZN8W: 5"۶Leb:W`TAz"b7@|G%(9.|0&ռJJЛ5zP)\c7U^n*B&ڎ zBU$rsR~t^|lH_4~\te0N|IqvF@'ʷ(:im-oa_YS|Eɒ3'x<?@c]C.\:XT &D֏`{6M}>:f HjP%MQT;:V[W(`Nj<ABci~%E8B+VB*cs874{_h|UBP bQV)KlnJ<1/E?I"af _uPX3'o9n+He&dya)`g2*Bڣ*_kNhtFlBj /ysa~|7oog3O3rE|Q XDqeΥ1  e:pk*4mKJ!ef huDZ5sm$>UDWÈ;dkGcvG/߲᫣pzq9gYbVKo0L1ܰQ Ԃ`/99ϰ=|/ed9@li!PNATwUa~X^Gl&0 +kxA$q>J,(vl\DO9W7aeqD9F3j> .-R O_I)XOVtd_(%G nȳ.A L9k+)MFs7Q{~#w8P*gvK WNfNQMGN!I)~A '#T_<լEQ#4B-"#KyDzUP͆w)9rMe_y.4FH6E~5V8 'A76crgz榒UgM-=w]Tv9jE*#аY e0mD\h%ˆt3A:2aW+NY("S]kU*Дe@ZCE`P:HWyC2dYF?'sS 4|@%]>(9c*Mzu wO9O:Z8 ebGv+`@~{)Sy]rODSuj(Pa)sS%BcH.-_wփj ›UEzɫWV4,.fMB֪`W‡JxQMԈLh@bmQee,-\ѐ3wH9<ڌ*7rSL12ԭyt߉Ѕ0G:R)/dkwjVH RQ )mYbnPf=$S) `SCՋ鯕Z ܾ73r;/%9cIW?x(`h}`+{W9R! B4ys- SIS?|E,M coEl;h^fܷ=?ݒM$kirnj~꭮Iw] 2H퍹k`$#6<͈C@ @1'$$ZchaewA/gslT+q?{E2Gg.9@n;?MƱCBiwV=کhlK1 .g?w#1,h BBv,W0P?~G P V\,7/a2 t،v{}|d"g-sL'te]r㋙P'o֟ HQq\n 6T1%:\e_qw аGh=o2a &Ѻafs/y!l\'[5b%h YlI"o_ͯCdA1!jX y {_RM ɹ8w0I~3L.—X`'VwZRbGQ$rD*| ^C@Al~wޟ]b}&=oZ۱ċ":_U{{[晁8%|;m4^{\`I ]W&`bc>iH<:mm%6gݱdK{4b='jh !KS庭µӂBIly2EϷmp )] {[l!UԚs$ė`/t~hşt4x Klďm$b4 v[ζO+ymevGOOBy xyPmt|w~+tO)hs]M8]@sm*> ԄY!C6 u"0$)eD$w|-~u(vrn.{R1I{n%/ݍ$|[91зin+_z} q:#vke #2Wꥴ$YIBq#F|rߗ*@)1/ƩX`]G# |fܚw&{]OI1OZߺrHB$iͰ`n6UceZx-$[ob,eQ+%  ښH\nsYR( 'a^9RXr[0oC_@FB[F%!oYG܈\J QL1ߥ";aee][3 mLb(΄_zUM 01#G|e^ʱ 4*k`X~ ]S/*RTxC[~^@W4'[M͕|s LA@->t%4?4L)ӄ{ۣ14}>B. "rFLiIg&Þj!]vqaڴ~a34XP UI.Aq[ߟbYMм_q h$[ִxަ nPG_~ >M 4x 9^N#>Gm L#a˽ջy:1G~Ksu·{?EM E]ݾu/Ԛ_'oᩛxvҽ*ClL}%5r7wM`Z }0UC=|Ml|VǓ]๐@yZ=CspE v9iߵJPMŮtq{NS=4㘗'1t~ώh> Mo#We=<=}0KG%Oýc@ tZHi\@Ȑ֨ʪ;lo/B:6hL6k#Fu{Y{]_ݓ;i_WOA!:C?ZݖB& o>pukgmsOT#B<=GHዐ)&,-RzOE͈)H e#bGژti"S4-B0LJ>pFqI&s]b ,<3.9\`j|t5|}fl- Ê۱d$/F鑬]S{v_YHՐ71(XBG>K>;ys}"ɕȞKD7XC$.vG2F~_BwIIȍT]x|eT0erζ_GK|bV;+ɠ2ބWt8% MT?=Y* Jd[w֌-K1;F$ĿvA ?S:ȥFrK^!oc8{J+ 1 Z6<{ݏYс(WXžvfdq (z\/UeWq\ hO!y92:Ř@s# L)+v@u% a\ݻ* `zV.Ç9Cyt^ew!Gh){yg R>hֲz$uʫ56iiH0:Q xn Ϙ 6L7 bc zzLxAބc0>fsyܒ~FZ\ϽG+ctԚ nF~esxX1 өPL-?P!-.+^>ٕ IX>֮ ~|jl7ml9B]! Gу͢ Ng&۽jP[;iF1:\%1y&VM8l-$*OJMocVm9d4ܦ%l~(eHFAw\AOOI,"IuFDQh<ק/Qfbw'륅RMlNEr}e!eȮ͹܉ \FA: BT1n]ɀڭ*UZHLmw/`/rXEAD %Pe* Zg$sqUJϣ J@kL*XcbJ@uś/M/3c?J^0 ` - v!p1{G?B._qyu/yT?}D شf.eەy%ᖳ`!HA-$5eedpiAkG=+WS$:_2Яwp01#bڻZk3|f+mT iItLǿC|/;gr/~751F$7]SA/D z,֐сX)t"U!HxlrR혞O xI-r_ȋҼ8x nFV~bZu==PHAKj(ɩR o15ɡ$O+#J6NJ;r揝teJ&yk47uMRyreuOAoew ۘQˋFѢptB"43ccFď8_c7p;{ɸ FѶޣU--S5'TClI* ogn ۶Ѷ=cQ:0'L96߫ܗ Bs+W@"??_*}`C|ƒeWwm_[{#R{6DLQqqLƔ~Kꬻo]3T>\/+t@BWY/ qZ@~I. vxHZ֒~yd4@tqw:wF6݄+fulPP_[! ֱ H- cKhHU HiJ@6RQgC%;!wPcg~oTrLcLYM B٫`_eY3d`E۴A [H3ؕ!Lmb"|Dq4Xk%b CHEV2FbsU.f4/gI!/8Ђ+ #4 =Am+s[I,؍;1V}zR" 9 $`XhiLʉpD(c UU !YIA$Edz|JՈ0wW;gSQ8M&a_"H0g pRbxEJy]oY`s+9sK)|P (!̉0x @R$ B XS H!0׺h8J!M*;?{dR YhgDF!+q!VP$rIi8?;3X{FCJBE}̲, eL+𘒴sH\{Kj .4ICdg4X̴FJ@ >4Kbh%C@ i  #oL ^B(b/)ߌBVaI XjLT Z$"3fREDIm 6eF;I˘d1X\`%S 1 YvlbaJ -SzM P@Sl!*in19\uKy+@4Xe WT*^ə@-<@r m 4{bElP =01 $)2,L `* bh HHJC^yLZWNジ19 Je`h_` `iބ+NAְWiT0h! Ѓ36P.+B9VHi$- 3ZձdؒH=[I\rkBƙ|H4XCB8OU A2 6!B=mul!atZ搗a$o+b{ f3ErPf2c# %HXCb$i+LZ֒H B{J Z!WE֔XdeG!t%?^RK .Y#UaʻZ|9Bb5l 4#^F#TVYL3fs]i$cF$ ^iIs^ ,K]]]b4im4mX`C͝hb/={>'f0AX!.#m؁ Mjm8mfUMj%B"n"+8IF{*S|V&{>vh,Bm 65 l}{4Y m@Nĉ7\.MŨmO\q16ǫeuph9|YfK@VQz!$p$/JBa }pU46roKbGiƕ 2ؕ">v}=yP ʚFS4b,04X6M/]{Wa%δa$쥡S2\@yRF4ٳw.oWOai64ކhcHZ. 401\b[{~0؁  c܄Pm"m!ֲFزx(u$ɴ1jJ9foON08֒_+LChAD@SMV4,8Ъ`7bGhZi0ESr f@کi݄@f;'˽Tƃ" 5&uD-`Z&i>IMW2.4 *jBFf0XAmd>@z^&[-v|VMeRwX!BS(M k*jL]vh;kbó:h=+5pU C@6g Ɛzvm ׽8-Ӣ3Fg֤`^disı vow-,ݾRкd1]ąK 8Wl$Mv )-k-q&H9V HDX2 D؏C۳AЧOE3Mhܵ^UM> b76 /AgY+Isa[7-Me<-%ӄS_iXbM2lj@] !*KzՅTK4%lBmmZ%6" S՛4gM#= g!S^ (an3H&4`q=:SecSak)s`qާcgp6-Ũa/v#'rNVc 40'笷5 VcJi`kXb4I *iXiI Y_b ޱ-e-M ̳TÖb޵1nvmDh-_ ǐ/yiytM&~Hc&d47KB Եݶh]e%T" .#h_C2ayݵg:aСi1)`w&֢M"!rK[M` Yc @Z8 #`q?&ZEJU=; XP6f0Ul(m6 H3Yz.6&l41qR ]>dִYp5d4=F&`uP!inڛDZ MT6 T2.}1d3P]t}[6*^j ص#yDXA>]aBlm oo@/47Σ_a5lpģNiduP(hYZ4 -@̄pو\Kf^֨.خ4fUk7R kxzZT@j) -CĬƧn7Z7$a{lkR`߱C*ƚG-%10JMiI ];鎭X]d%Kⴈ`n`Rt,[)`sf]`94I lB7L5@Tw?BY+MB}ѯ[ KKZ抴/m9j=ZHxkVH]5e eM E2AiTU5O-[%a¿8AdYbFSf7zvˢЁ P΍vPbx*ҊƏ/9$j^P^`C[Vz敛DctLz]eȵ>-MD#5ETak 2Xi3%Y|5#4qZ.4/ĪBDjtd9Ǩ`\ʋrQ !2Q""$ef. G 7-*5IU$XaeqJ>Nh%`EaIb|ir;/bJc2QƗ]r [wExԻ0&뵓 T1FYp,Sje;MIXI^c_*9RDUobnOV@lE3ójEL%&mQj0-&VywF+Ej{IjYq5}-kEm,Fb\fcG-~ WT0 $hSimքTW I!T-"VXZahY`.A6\i؄! hB@bI AsJ^wƊa:̈z M7yذǩ饒f'K#1ͥ`n?\NYiNYډs/1큠Sixǟ@iEv, ȃ|XĂFj@ر6:ݣ:h ~ KpcW,1aM0؂ۡPK8V@HD4%4Xi{ȭD*"Bh-KBHI p6 mܓN"0f2XYϽ -$jX$6&!k1H,c 6*WJ&2;,CR3h(¶jMR`^i"AKt@HG6ؐ#ZV>RE9Ql,iie5`j55F;$"MP֥/}&*Pau -䁣A@P`:_PKFhX4Zi~֒صmg0.Bבfb_esڗrB/4&%kش(b+i$ctCĦ*XlM665 {.1I @03VXŚ^"B jaaC+b vKU)rbH3J @VBЭӓ%6&K5Vڰ S (hUcl8č{,466b^+lXN@*&īiJf|x!CMȴNJlD4(bJLCa]=sB`K+a! ,XOڿ ޻m9ki"H#E1 @[ƕwoAzSHK@tke4IHJ$mXb00J송T:Z@Ppi ,E9-4/@@sq kHՠ?3Ø%  (ݲl6^{0 $Лi$&LJHFcBAKHm6$6!!g-&m$VRi6ְCh 4^ɳ0zcƒ7s, Ƅ\h FVm @CB % 6$6ڼv&̱4lD m!8iZi*K[r4f:ZiF h hQh#5Hq81X-^`P@t-ԛa6.!&m$I,KHJN0VؑqpJ`(`ؐc"$iؽT5j*tU`"@_`+-ĉ3i M!yђhm*$E4uPД،q6D o\0)i X,HlB/0 SSidC͞,#w1Xr\abYk`c1H~4-! \6CŐ\ !K6& &1S(hMwFl:!U8 44a B{V46i.M}z]Tn[BlZ h"0ȥrcmf% +-&ť#R倲X* 1bi -K*eD%UBT*ISܩZ%BĤ /iBJSi6&Jg2r$#1*6׼`]gT1 I X4 #zv iX;h0T;dU;4a`P !at C$6F&m $& hD@TVIaTR ēi6(i*&"B!" &ĊD ,Y[ [ 0 xƑpbݘ1!6$7416M#`i }l_qRb2B! R"^Ah PXiam"iIa1`hؓw)4hfɠ$@=F 6մЦ4- 崐+-1ĸc0l4Il5Ri*9 4}FawPP(JbIiEUq%gK%ܥvT4Z I+n!Ġ m! 0H8*Fdƈh5--pSa Mb1-54 ؤѩeX2(jMPm RlЍ&aiPSL "Qj,^Th X XI#16[a EX.zVb ",CPim!4y4l kC`` T_6$i6 i 熡sP^ !0Wk*Ml&,.D0߰RҨeB6Uce "lNl7%UP2l BT0JcE'W;\Pb0&XҜA+4Di`Pf)ā^"NZ0?d.l?htaHraY)h?h"Al>LP<?P)d`P %mG P1 1\66&YF/PʆKA$Mڵi&*mpč{״`Pl- R%y66 i"kd0 4+@C F) @6h<#{ T4[h-P–qZӵM/- CĽ 5s5ƊZf;X,4,,&-Cu3 )af%!$+Yx(E- cz4L]KI0ג,ޱLD!騹qvQu #Ee I[mDBJTV+sjĥf;-/<-}(anb4QyR3wHK) 9 %RSS;Xaj,kqvvZc.I`Cz{Vh^0rmӅز 2:%J" m)O.$Ćl[BXF4ʬ}yd&`^b.Kci"zXcf9bF%7iPh.bYELk vtQҶw׫f,c`0eӏ ĢKR9؋仩. _ dm}_Ľ+? ςnvʊN!gIV $[RATTT!*BUv _GVeĖ }zl >V,j߳n'.Q /D h2KPʘ⪉P< ۝NrON)<~_1c:ƃff5 @޹<]|Nzvq* =DUJ$Iv3!,EMb 5*ņ,FCEm[22@p[\o{=#HHTl[Z?imo9\v6{ɬ l-,٤&aAi`AyxBY HHI$hI ADZ !$ en^`Xm.2QD1YܐMo +-b95K JG:QxtiƄRQH"eZrMOjBcckr$ Ue`GC~6rf /G*x)}/y]*hQ\U}nfE GC7KRp37!\Nc%-d;权YJ$|)#l`||5zqw.z.0;Ieڒ4ArBB?mGMcnkӛѸS4/TeWtpKWlZ=nLꋧߎNd`c4\i /o`wT?g+\3pn<<2W`/y{%Ŭl iֻ5$l \N+Z4~|=LٗjҎf`fMib5>F ܻAl 6fKLz;2#hsi5Jt<7U2CZ3#HNd.L{|1|(]hZJ[}Nyu3盓 s~[̳rd~ "V^;-z>*[" 􇛗%u,dNù~ E1ykCݳb{yOH#z.p}ޫt/y7;O4S2yI(ۙd_>N`ӆq%wX+ϯMۜiWg'*⁋Qc>x^%fǰgp !P9&0Nd%5c$aoca79G Mz?f" >71s۟GqnpK<辩X [%7de{OW-5߄jv tdp){dTfbQ0N5-%#Y|1Jn[Zuz?>I{xdI=~(mredk׷ΪMekez<#m jGǟtĜ펿qYY]dȍp^vNz֮!3ēԌI84t;>-Nu{R\&L-^ϳ- 0[kc5#I55ݯm7xfZ(?PFUo[w&mit yŦsr\X9|(R/il5qp{^u{I*IWzĿBCl*l%t'IN aPJ*V75t}LѤ*c2 ݏcF\U_ti}^ިxƾ/~{ɸn^`I, D$fJ/u}k?vR6|ݸ| -@A1U실>ʩ+/߀mnJZC(,] 0Hoab!G=roRj0K Ǜ/oj^Go_}pX/foi(?Kӌ5qbf9NFx%w }5/#Ԟ4wzA.AݷAC)O|'Z4x=[[s%sJuRJW)ˡ_"}>̽BUtlz/f[mu|G?8{%?W=-J»dߊu|g?lABCa!Qa1 DMtOs[YZdNe콽DW^άpwZL}Q0!9 _jy1@ U$+3jo+ #n,AEڃr?8Z?ȝ /k.H, N?x3>igimR_ɡ Ё,91Xڹo#[ݬ)&̖2Òt4<4IZC{W&zԧ2zlfir^R9\P1X. *"8"Cv >)p|:ʯqH&i-HHIs,itIrP6!#4!pZ4$$GNĸ>HjÄP@+yƤze%}o4Ixfjf>D؏|6Im &=,l]JGVC@BbH ϮhI!w-agH֋_T~=H_9Z-:_:Yo4 Aavh 'lBq]xJU0Ut =-Yn{&! Cc! ׺ py>=CoXY.JQdG՗nr2<i}ox}ncm\=S[K@ n5XWzږt~#[G\dǹ#0SMzړtҰ&bh. .?1tKԮQOHdLx{y}e4x3=_v wgS:/Jln: L9A/g~sǠDoּ: l7Osڝ,sM_rm=dUMSz`#͛ν\q~:wGEe:}׳KJZ=oDFFz=WrΥc!an4N6MVe&hViWِ Q}S,ite&a|-.cyN]515ZanlS.pq2t u)T6;(Z\y![Kl>ww lN@b@Q4=%zJ"1r;}|l? Ҝ߫Vxx҄7aRa>GW1*x =%)C5oUT9eXb^|.Rheiߍ`L3<04FPzL^.ު޴'#()P6\=f.A??d݈:w~dl  [񭌺‘1fX.D 2E&]X<\0Y.nkwgT~0 7m{@1cgIVF+B-j4KLICHʚƸI\+/]zFlَнF+ 6Exbyg$ݝV|Xeq5OlA6l# 5OKe 8=K8hSHPh6?c-D+1d?&U4%bG`IahBN` tXYpB\ߒ1 6((w n ̰<$6! cM An *e"ċ .Z<;֑34 $$m%qK I8ЂB H9փ4AbHG!u"rm$شpք#)Ai&M%Φ imɈWZ`B{Jt&ؙ1ၚmCM&up>{Qw5刧^[DK`!5Z9Ng(1K|Iɑg~Ncbkm3/4^_KZ0=gjg#xăc?'-'BJ^^H=50G1IHwL?5d%W+bQR*Ss9̿6J.'wGEHTxtQMۆg a洙 { C[KB9[$H.5n3Lc-Uv]NBN145J75tEkws/ +3קeÐr26,V=a0ͭba-'-:zm6V3 խFUs)cҮ5j][EV^zYhmMƍ+1PdxN$GѰ~bFt\uՓΟ]]'+u5i=ݓ!4A*Pd~/\ӻLZ>řlS`CSK(nOb9M+n)hx3ߔixڷs7Ğ p9~̎{xS%sM,X:ὼVxPӥ2GckM߆a;msAm h%±Py>ZY뚪^FT~LoH79$BU?Plyrh. HTJ!25х d,)f:#B߮a#jl= bj RРJ ҢJCQ7+IpOI30K?j859<ȏ McRwsy+* zBR9 h%0l؄z֖ ٓA2<]P l:Yv%LNtS?緜ıhu0Lqv-1}6zog7h;JR/czi/kHmx抑#rpƳ^ժFNF7\̑ϵay2#k=3ꀲ" ѰHٱ bL:u:<ghmlA,J*`iI M Z_6$وA]E Kz >,@{ 2Yz!-B>SАc4,`/p<ol$r-(b F/en#޳V[Tu!3#pG p*o/lJeQf/E?@*u:-\jMc2qDYtsys];=HX9[5パ~6Y;n^cٛr=@! @bFAeD OCySߣNܝ/O*wP3"/ėN籣݊~qzd ut2D~= ?噌,{ҔƜ!ݪڳ{+{ 3 dbx% U Gݎ J!|/LLa?_rJ7 u(i| 9(KFtQ ߚH\-mjIZ(w(,w7;/Y"# q[GNPq4$QzОe  !B(_b^ `hB6T|cAб  U"&M@AZnjE A 8P," Y%A4,Qm#q_ Lb@% °ь$5LxBXqYC*03bV p`+˓ p¨ 6o:t>{Ǟ(|B=Z(HP)Pp0R0TS ` T~Ngt?ZK'Ϳ9u(D_iKzBqKKR$扄KjOB R9n$$9x:n^x{aFUOCUmʝ] #'&sݬⶻֽ`q;@z֖,Gz'ks󼛤Oc[81uJMXM $oηO/PҔ6~-J@!Y&ATQVx (*r{Yyu&+g;2f0=,?{Wih1p*'䎷ԗEd|ʱ⵫>3%H;(,er$~m^6-Iq L}150Ì<֍P ̀>ARG3Gn:I佖]-5rgSmRD?u {JdhӨ%l 'Ѧg&z(0H5F'}D%j"Wkngmi~eYD]"V qakEns.&>߂;lK R Tʍ#$J廗wml{o(zZ9}K* ֗Ldі'WkGZez\ܖwۄǢ=ko'pAXl۵ u(83 z&#"Lps=cƱ+Z0,`? IltkW!AZB$?`gy=p]_g%aeTސ4gC.7F4Ky}BӈN0 բؙEn-~ȴ2ҕLI{i&&YmKly5~(N)oGs?Re@V~+B>h̗@?$Z/WKcYv lu?!Ɏ2H0gc!LOdr3 Iw&w9?NWT"~U9]bO/-&zr[|`M##0r&{2 ,.;pC' $B*UpE_COm[“6U )w8ȫ bsY{Ŗ_VX-Ԥޱ+Z:7sNxfP,f,ԉ(S7 0~3ȅ2oh`ԇ{Ja}q>m"&byf̔mlHB:]ݻ)ݗD>/qΘRnID~y^_k+yIQFҘӸ.DiBۘ?Ux}{L6bDт |cK~mqH!;H|^Go0[U/w|Ηs"\bsa6/[EqS#ӢH0lPڣ탽5T'Ky a_tghmPK#Qs[*d x'rN Ig޳!]4Vn߷V'Ҏjue{@^iD4CBIlDog,"< Hц K4h D(穅'*_3uӴI%^@ճof"E_2&f_3Z5W(:5{'Ud`/SI6ѥ㵲lEz7G8$J55 8j [,sL:Џ8{xFOG8DB[jFB˃t:Qzu kmYoŏqnAM,ڐcNC>Fh~?}- >G~\罅._LYCW}]d )=:qR ̰ژz]i\ |@ϧ):ēr%3(A=oȥkg'xNc.crL~㤲}aW }| g,e;d˭,<"l|oE Lz ѻwsWۜ9÷avP09? .ǟ[cl$a.7bGlim{pqy^3dK=h껼Ҝ~hbvg([w5hO\#PZ/" 5zKճh$5??0tn̞ػUm|v9!Ѵ1*H(akU?os7?h8O\j9 }ݒ#?cufٲ@/2t{Wb\O;#n7jk=/I{7+m/qXmoKSzv?wX xmo.7>_uz [i5| .we ȗpE7 X"޾Uug~muUߩf?혜4wNPCN/3~&=b=a[_"<|V$UGpRv!Z1ʈTd9P z;Qr8~lÁPʠZdDkxcNKq=0`pJS'ktUs|3n՚ea{M_gdTphYܘ\/~ rو:amADǠ4Z憱E¹ P}7= 1Yֳk1qc Q;|cfv`8 Idվͬ 7qgēGGl%LJ}E ."P8ȆIhlmy_ﹾgKo z„@I/N'Zbv[uYp(0zX!,Ll1V;J(e O ,kjٕi] S#Mi}kݪղQR $Sv;1Q}kd\A9n |z:*>$m_hǑ8-?;mƏ&!mJ?@~\^=\O!=[?ߎh:.]_,-Fc ˜ܺϱTPJ&HE. Rn }"/m0i"yںv<ڨFZ֏ċom|nߍc>;٧="D@  hs9 $Q e"P7&SM 4Osz>L4!8Bhas:F0y"+Zާ/:u (Cwus& 7T.f@֖Hmga<} bK-2TUѽkX9,} OVy#OA)Y^-a9mBJэ; 8<^Z_1خ{yq~Y '*z$AȪԮUr%BďSA^&MyR^&-]5d] xJݣQ#x1bm +IEJ%Q%D*Q*`AK7F*}U0҄hbkLIM&&pӽgnʼxf$]Z<"KU89ij8>)ܫ);1k|w;NOU?׷^B vu.nX>|X~^u;nXm` 9~rEMwAXl ԛ.zc$L}S )qS=XEvk7bKTF#29΃U̪3IvF|}#I:+5R^%V˚+FYz,2՘ , M:\;-k.?ClH)[s˛+Q֬Z>cBxA?]vؗPjgW8wU")nVҺQtyPt7?W.z"`߼&%9̔tvWYIΙ\a\C}tzRINnB5ޫ R-2m3щa;YggOI e>k\wL=X@agZQ[I@b.3*PZCzv'F1b}63׷94J:מR*d3 !70o4`eW5ce:곙k+/9!-^+!A2wj̀??#>rk|vT@jl lv\U_{ ^gj-¬ 9VdfȯD? Mgkd_S疭CkR1aQiz:賾eҵRE5[R)}t7]$p(zmR)TЋ"@ J'lNCRYq|EJ3pHG:!ǒ`< oSPu[?Jb6W0oW[|ixfMR*CƝ9]\-U2Al>|~! l J(ƎBL/ʯN9\b&B% I.vM>rMjj5bg=UH~4حR~ꢲ~騁Da◰kbIϠSژ8zˇk\@!cCIl*xČ}Ơ;/z?KPe;je 8"80ܖk謊5;YUG:ۯoY&c ;ggrf㼦ki-*_jJ!]47ʵ5X(tLЅXL1\`zƀ([Ɩ崵F ~?7T;*J"e4n9 6joZ8*XB>N)]E@,58eaMOMp djLAE- 5Kޕvw|W %_>7;ؾb4&ѽ(F e Ww,DH79p0*8'59&O|7p|+d-!lB!dyyJ;o8қBQ6bK+iGKQ.ҽ6ITќsu.'Zė-{/d:GzCP>\FX0~Zn3 $B2OϷÕ"s<'o>P$H8\\<)ꕞ}v5m,ÞT/WraHԚb+DL&@k L764ʐ҈qdʋ'"Q4RqY[C ]R'm/wwaAgüpEO[1rxV,?q~<)90lj42OA ,QB ,C>xo~T.I$@^.R&A`{Sp'=;!kӢq?=)0<%r5UN>mźD=ϑ~hmg'y gblJQSwSǠtXlk…4sL8֔dYc9S\1fȱAsэF~2_%=d;Jkb B_ _Hi6Qa ߁}#%h]r!FekKA|o" 熠@+}io m ib59yЃf4 ΏÞf;h >5gc?6}o#qЅKtMb~o۞|`b@:_e@\s'IF=IP2ku_3K,@ыf11~VB*o_ܜo`f1«\"3˔jCW< ea:[`dq{/+u|36A'rݍb)>ڜ׏^ V.Dr!b$f"v`fIF:ggg2׬B2Q@/.id["_:Κʹ߆A4_x:]}_i]Ocn=G8I9k'L5J0lq$]\epfxC{wFw;t=gtTS*dLS)(h5!3Giv{ 7 8/igیB^WvSis)4_!y:a9i0r@r5֯/sX1)Z9` ѱG/:ȳ>HwQ}vi ?[ ,3UL uU׵ZJ󚌲*YH%mBa()M)7q ك{1Cދ.z+1T>VR1L!]r\xʵ}rM ļ0]gfbx< tQAG}ݬ@>g}#nZ'+,cV G_URwzŜsQl0<窄+,'5e9} 0 )M> bjٗ%@S"FP˥rH"vEre0RR:-ڷz價Xb0ƽb.0A=/*oF78{]纔*(FVⴼdn(&bP2Zd}EP#ୡZ= ÆԸ8 z|ybVH}O1"hp(/r0_>!>[e41*2v'0~w[L{rj@bDA!gG鴑,-@A&{i!BI,|F6z$8SJt-bTl mTg(ߋ7*?ƟԟBժnm/pIkC=*;#c}n0z>k˂bww2 fBѿߪgP q{G{SFLjV 8%~tX!9n{tWjv{d$1h CC՛?߼CS_,}! ! h؀K_?ńx^IϧѠ=RvJ@/_^To`X7S-S՜~ ot?<85}HRMN ?0kbuVBN>J=ܜb9 :oWa-Jxnf0-D #D$~BU/.JQn0ds` AHD4j<,̟D;=HgmLN'70 {&F"}'B*p;PQu2UOf)jJEⷨZ1x[ǥA٣?ő+sp%pcLh8ۘc=*y,6%e^H "y9RgNצs0a{=a'TUR96ICgEV&B\`)U:҄ F]͏}Y说Nߒ)2y6q WLzr!)smuX±3NO6d0lMbɛ\ev3ҥ $]9no3!_kxsAi$HϒR7 nGkyl6nTεvw).ZNфxA[pݭ(YyM,\t7^ѸY9ҁB. aHz*>U$ruxU,=}4Mf1ȴ<F冩cLi*X1h0Ri~vKοhb5,VIVE& 0?h]s\_lg,ĩh04"lߵ먚 _iDM% ۭo;:$(K=pM9 p'C8qTyF&Z4!6kzX/3tOGU'qa9NC/~G W`L\#5]ڴr|v]Fg7&VC|y<܀Y #h%]_Ľ CYIQF{_AF:ՙuE+9yfmosO]#\\maC$|?IF:]hMkY= yKa`wB_Gk?o c[,7K"Kvu"Clރ~~ˁl0v.#جʸI[(U/SÈ` M[ey Mzqպ{ktyw+-6R~×m~n]f'+F eՑ& rKEM<&{hs"׍u-A`M;w97{uTF:P ܿ#-G-%Q!6"AJ8LHqZۄHDޝzJvduqfUGycҷL%E8$3H١fZ9".!s>5?.q<Qj@0/caǝ(ei[ sXfw_,3B%ABl]TPSdT;vRtR)ZO8sJ&\:)!`y뿱\<;~B?}4#j('i2,",\:8% bAeƽG\_dD~6nω֜ B\Glc$Xd;hEI@r،튎 3CnO Ǚm?cgNAUd렸9FK@_ z8y}ܨUf]4a*CgBLE10@m0dA!/ ~o/5ꁂ8 {cQ1Et}$lΗ+bIb }'4y}D,(WuV^'o;Yޘ#X=2,ta k{C1f5xjn_S΀{ i|v~U #<ʹFQj.n&s)Wr 9_N*;'#˂uGfWp5$A;*r nOY>{0]6A-I{i/?<xGƦVϠ'+}ozf$]1a^+CPZ)5Wëi+!URWk~F Of'!ts/. \ @ 'Lm~}f3/^G_)|f/+>#y~ y<?_kpTfc- c#3w:Lq0^# 2`Sx,8#˱ PW-0e]u0#D`K|C[a z%JsBGCh?~P nUCƠ,;=دRiF<87^~`SR@YQ{ zjܨOc"4fP|Fw~7*P. cѧ1_CUĐ󻄨"a8M1\UTiwN*j܈kSH/g%>c1u$ڔw`>,0XDxϭa?mٞfYW;zFiHLzD6P 㽌n7я5۞zS=Rj.Is2^p_T[f5HyVP_O9er*l醴VF"&p8EH(X,E_?_F)T2Putx$;j6~*'UK(L)2GБ>͑I"=lC =#XL".8E>(eUGP i nW-*Mx.;3*.AV V3GQR A`[v9N$wb)zSD;tl}oz|c}ϒcu΋]/Z=3h}YE ,jk{S9U6-4 ܉S0x75,kHPNQS=sⲜG:Wׯ5%Ŀ!{ FLyg9_CatrIs]Dd`WuKBUl߸{W߇Sy+^!\ b IPjI( 6& >0>a ?/yO🋚} 2+zHA*q'i1=[ (MEM6>GޱK~ͤ1ga&<7|Qc ^LD 1a1)PRqA?Q4 :qzYj^E{-#!Ew,4 8YqKg9M}m/kuD*b!$]csr>n{m)_^) s\?ŧi%ܖ#S˖o]}f@!xր^O.+}jZ>˯x^g< ޚGt) ғإ(AiI{񥸑v7XcӂrXZ z ҧlyO@#W_bX m4n{?*N8XJB ^AD@eemxἪKѯňh-L;Kkܪu0\ 2ټ9G1)33:{ޖ$;6Yat~U.^I <oλzK>KȊ ĵ#=nռg ?)Xbl `#o[+S)s\ 7| UM(#jJ7F'V8(^s^$`qߊa)֊- ľEprfFڿ6v5'*똈 G(K 5h+>+ϒeg$V7FMaúwEҀj%s<$pNӘJ{qN#A"/<=o(Mhgy$E5[ 7/C~q!O[?Q50:׾,Z/qь?Z?BdGq8 (I4*F.AIw52V G.}M}&h/FpB{ oNFQjZ z?>F $?6^7 J'H_A> 7l66׶hu#гi=| *Z HGw WTXrZ:41U1u MVNE]2" =4) v]B˧fm3닞JaPӄG_7}Co.4*HAC}fAD]K9g,#V׬u:t whZ ̌!F-k1c.p.$sxK>'ޜ'YaUYs`MNqJK6)Hš3@:8`APCd)^=tU,c0D!)?oQTL#8 %AJ 8oj븦 kU69(r7۳w 0QpSX益W6XGJ *}x/tczBɃj624]h>$$706.M6_5}I#Nr37v#i -Rq[ߣciGxP!' AJ3.|2̌!jJ.Qq 4pf#xPNFgBjm\w#'aN0L!`p$5ZeƯєQvoVx/IT ^-/h&cw==ƴ!z-%ZB2Hab11hpҨ嫥NjyNM10.]H 7IDu:LC/P)ٝQ]-ʿv~RW5vOadP42 \ڰtdc0r=R y֌Os}5sr HiE}W!8j?Z#;XP0(baC*2d|;Q{O~])D->Yà\W]i{'IVhGF|8CX15;n兡7_o2wT%+6zنNAb{tz;ݶossŤ̴8 C0%D$]"О@ d`zEQج?kljo\Ie^KnT .B"6^ OsNW +F⤾iFOԅ[w$N{u{ti1*],Ϭg*0 I BuYT˾YGI(VQ4$q]20 @F` -#|zcȸŻVuH] 2^;ihq2 ÛZ21D0 WdѺvW<&6"BVlⱿXANe\jb:".1ȋ/R܏YGh?fW#ڋܷ.9mr7NO (`3u*)K~Ym o`vd "*,cA)dvEڰHy>V=TdSAvw. ?"-h፼P:q1c],F,?x&d4ЦP)˱e ʑmKmifT1Wv)t,J"pspO(TmmhQGYѥiĞ  P)}c:⚘y+ۥ<$PJ#S6Նv>PA]b~|I]!q|!e^M8[WHbo&rXZ4JW"Y~lHj:O<2$-`ݘegD#iT ɡsM`Yy+WU~_YD(k-k7+Q50N}MĄu mU2b $)r^0BbW}TnV@5Ѿ`\Y52E`*QUkވLq#krXc3$oym=_Β1C>Oh1ȏ[#zuE^u2uja3 " sVf}#RCbm0u_XvѓjlߕD܀hw@zG@p[ Q[%$@/sou+6Ж՝5<=Qz."x7ޫ0(#J@ڷ aw, ]τT|Z!ԎBq(99mJ΀DXBf^݆O@t&$ݲ!D < s(B8aZ.bLB{N2췃x0_CMe \]eQ30l>28+.m^_鈿/ X|my6 XVx6eì F%$d9R ð(1fcMؐ)/ w+hЁ%ץ8:#u0De7[ cƫü|כBY;Ý(o"J !'\fuL-e# O+U8̯%1M7Hj7i˛{8994}0!8lXD֣ƿhCL\Je{/=g`5 %dz #0ry_OJOOOOOOO76?O?|pnwG󥩦[Qf ǰf^X2J#]r~3e3pf5vZ+@{&*Ö/wBk@' ?lOV4;+\t'&sKgVxh z^g䀡iDI ^+z :'**&**'z*********'***) ****'w &gxA aɇ:L7^y" kr}7Gi_='Κ 6\>o@"Aٴ)2Ƒdt]2m)7Y?gvAwLzWؼ1<8(b1saЦ߰{m~ѧ{eqfÿw"4;!plkeRalkgE (1UhVVVVV;5PjF0Ha#?b{+t$]t5i/zX=5>샮aukÖc]Wϕ[z8YtL,ml)?^j4tb]zWjWf@SeˍU(WP| %" D UK+ Q"yמJ@:z'ԶTԳNL4$if[*Y\*2S˖#^d,aǔyKH1h_{dgL{1> 89o)#b9$р xߣ6VX(F mY){!&]A)Z4b/Yx+,ϛA|g$z,j "=jGrpX('Fu5A $KrlU=*QPae&PœFk;@,-> B_ $Df.c Խj䪵jۣ%d-(@DN_׽eSq^JȚ Jɪ(zȪ:@qyU 5GdXST+;c_Q< : :,ӒRRRRRRQPc(}W!B <^I ?"wNyG\ax+n覎 3zgU1[w?Bz+=.TFs9B5|LE]$0 aM8~l0%``T``Z``````^``Zb?łB@;2+P P)^~a$p'.*8F q '=3};kga۰蝆66fNwD򤆊냶-F1fER?hC<02rRp F*A###+=-]"pI4:Q`\JpRRN]EKKKKKKKKKKz|mmmm5us*Nm.ŌmYdy aR>P–L+ϛROBpף<Rao}JaGE"@r2ryz D=Cլ8:||܌'dɴɺɼ-p !_;d|u1kΤ1Q'lyz@mHvgi cE:fz!r_xRTM tyzm+ꢐOt\|iJvVVVVVVSeeNõG "pj2 `71ۇ ]0DRNgc>-H4F4 e ,bLN(F3 agL"kէ 'ϟ>|ϟ>|ϟ>|ǟǣ)l+kν&Fiﴙz/9jWB,Eh |XX],:_;d2K+jղB:'ΧLH!j>ѣF4hѢ֍4hʣF⍭7hѢ; YP7~^|PތF4Z ѳ%#MG5^Eil^?i2Tdj<@5Ȉ0 He˴[_4Z -m3ځ 1@ tT0I"ڳt9RgE,WbѲ\Y0w8[B`0b;Q=™$y %,|9 H\ꌴX2{ȢTF~G7ymgqz[_X,v_ Q/e(̭=fkkf+=-eBDm1Ll"ˀ8^ RXJh;!?6("]x6c9mGpo+qb 0R |B&UEU]s@@Wh4NT}aVCkUudx9f!O-m~i}p @uĊ+ߕjuNXԯBa;e¶ϐ3Ӣnɚe2T3 ǃLCz- h{>;KOS XjX "Bq%D^c"a!E9iSӦ{gg}ͦР?Hͻ ]3K0*P(rXaiwX͈=;q'|ZMms2S;eOʐSe9|~eē)hE)u?>= )D)D}_=MՌ7 6[cR]4J<{1Zfsl0YI2 1}Ww"Q%6.iE ^ĸLATPj0oN0@S{̃lu@PG]T%QDOBmͱ⃥"Bt޿#*ň_UhPaO ϗ0bwmRvKL;6LuNR82͙Xh+?1e-=N)f]C:5s\ίqHr1Ĵ_C:ƫ(;V4ioCgG]}?Q]PD*DАd~ayZFᏉ7vXf(`{*!ZGvϻg/ݷp<8KF18r6Rٲ=+WWz6S`N 11 @ "gL^NcIUJhBo0ۻW<DL55HO>|u ĈCɨ <`I)=cH_i 'tgE,H}$৔R&WlwA xfV!ۏ)f6#/W4<ܚ % H àhO+KeV:7Z[5;ԪPp,W8V[_+8;7 ऱ*ۇ.k*L0@ @_dz?&^1h6e'&>&aP02RM} v\vۧsf8` ;9?Ϣ{5k]qm-囧*p@1Ap`e VA,/rHa\9vzo( B$W3UdJ. ¡"kTyY>Y W99mA*I9LDVɆG鮨$bE#A>Ӧx3H,O n 7 WU#Qqb挛Seb [8Tv\Gs\P;{w@F]`/jJ|$C^T)-@þg((PZR o A_l~[Y$+ {e.@}my.fg:hqyxXVO("*؛Qm>$fXhh߼'O.)&y@0 y[(;_!@ҧ~wz= OfU0qcT10h K[%*R "d '~B6%e%5^Vc(BAÖY=KJݺ}r & \'ELmcu4T eX+6//)&-&12) HFQiF7G~mJl50>N')Q#yo17ax@+P6Q}č$NgL+ }2 Dz:b0R PW)||Nɛ_;絍HhJ[#,F&'u3g=j*W$  FP4oynsx$@6BR $Hsw&2ɋ<h2LGFiqH&qڶe5:[?5 xM ٌC=jj)]xa6dlgS7Lw[_\eDc)DQ:>9]8:yc?xg *nq}muvI^UW^+U mY&d_WHԠ$Sqsw8-{KE4qLүƣ9. ҿH~ӓº_B.<1ƬM]:]vw٨y5Q`!_.WˠcwH@gw6<Ԅy@-bM%VIq`j|܍UH DG*Z{<;g[wI/8B.bg[y\O"`'>l⒥2lx% Xoz;O>ϝ;qQtvj5?Uқf z,hD^v;I&|m!ib(<e9袔tF ruxQÇJMG ro $̻=7PVV`ȭbiJ@;7j07C7Ѽ|gfYa]i;yoE6d0˳r9/ct2H&+-C-~q# ,vg$h7c3yQz_;UwεHQ,j4iZ U22nmr!H((((();ᬯ`l&,GCtR@'| qU؜ERJ2U&TN'H4l8*TuG]{D^'DX#%4GSmEuhC䞨80Y'҂"kY`2t?k(f;?lG0 JӾ^r-֋,!gz8)ۍ y,cc\̢nRs ^)K"C]py[ 6WdU<]:|vl_.Y'! ǮE5 ;<{\h L ރ82c14c{F P0 Ā/xj##B'И), .PZakr 7HYTwJ@3_ 9Q)Yv\σ:F[>3RVnufXBx TwGglsQo >쉛͌*G!D-2/SɦPПXw˒u ˙2%=U#&oݔ<-tT:bIue9m?fEI*P"j A}_o 56$v7i\zw<Ʊ PJaW^I=ӵv?OkvYqx4O09Lw~]H1?'HM*ތ5%MCҊ8V{o0;S/~{SM?Ψ=VS=Xz:.*S@l΃bBl.>5X6eD `-AxX ”A"{9|l?&~Թ;܆t{?+I]{OF?0o+ITz^{}E5g`X&qټcgK@> IcR[ s5 ͤ)j57r6!W֘y!'(M~r:;F"my9< jK935Br2 [`QXT/k#>38L)̌z~O|^CO ެIAA)}}"mya%`,2P|._6 sv_$E]j$ulqn(2 ϥ|V aZ% <2 ]w;"[sGl%us3C'4[kοM#kqv^f_ [@ZVC< "_g<^ւI߽Fԃq7ܶM L[='7rSR UPV/U' Xm@4R0p0," X( yXPF9H WLe}|H35iF@\GXI b c።m~S>O?F㺅_wi]T[%ި^GUUTʣ 8%2}NƗsJX]Od*F90EJ%xTBg_@8BݖAUoʑ uUE#}/ygoOu͙>Jذa6'`"nP#5$9a|8,9r/F &/ixI[Ab]#<C!E`Af†2z~eҾRc;{fCEVf'3McjwH!@QG`Ŵ(ozMS20A9"̾ř1@I|tkQڋW;%4T2;ͲPځu6=Z<~fWf.(37'S6,]7Gʈk Ly?i#QKÑv?r{wH 7Go i,t~gṍkzIzI`<"" 6Þ#(N 8; u]ۅn(SSrt $ X@„a5֪BqRO#|s@S` Kb_v#iܲu+p2%=3_zM3 \+MW#g196'f፺2n7Cwh7 gXPb  &a,⊩qJ` Ss4c@`Vpb;8)y:=;g驛U5_{+,4@|q@]zDzn8u6k7ߓ9@4C(`.ָz~hh>PĄvoYτI_j\S-3;nRKɗQΣp[%l 翝CC~рYCvoQ.U ܀Lhpit1(*"kJU7U.j`"dWSKkB{Og>c_\ AA۶yUu.7]KJO^KWS/)Id$X <~i$E S#G^6|_"iGӼ}֫]3B G('ڽ:\.IӁ$zmt6LW#_l0='t>:=x9ymlwNfg @qZUҒȑ86a6axdسcR,0_8LQ25[fQ #!/ tȄ]~эD2b C'aߋOUCW}lMZu/.ǥ]*xj\q h^smӝQb (J?dt&c`T21|d f{W!1BoHQ(g A}˵y8LR|k]Dž_6Xa{9cj1gEϖ`D(cX.7e/Ƕ|R^1;K;nfY%A̴"!,[q ,BFAq]ͩԎC! 1}m:_:wm-LDĽ [5ZySI/%ǫRTb-I4VQz.@R/(oYI$Fr+>&?JUk\IDV֤J a(ܧYLoϓ:G7߮z=\OsrkZ;joe11D N2 ? s pJiC>yRcI]17{4Ƒ+B /VVTn%oaAkd>@(-2yH9HvH]j'S 2Dž>x{Kݾg3z>H+fYh&`y1X N$(y2KJ2C.|9 %F{o (V7 K a&!8C -Z73֖ǡϏP!7lK {+Ӫv{!)`5 0<.[ QpС];?krӅu)|1_#OU?͏0o*شnF@>vABZŅ5w)5X 5٥ݾ> 9SX7^}ƣ)Rwd$BWy|Hڈ%-wxPF$3Agja=u|~&};W˄La{K㾌̊]r24BxSQ>#\*X!EU.Q*̭MBw b+d3} Asy~̷uHk\&_A 5m3L*0\socp n¥Pҍ@a*8u{:sK=:;}Y7cfBT@Fa*Neqer=0-[}K "uŢ<{!$xo!⪆Vw/c^ʶ>bFH,(fKy.ko6urPi׹q}Ƌl~+!l.!p- {^?wðm u%{ vN* tkB{(Gj JˏՄ@rKgsD V0cd*Qmo"/Lwh~76T@5g~ G;<*!¿kY,+Fɡa@ |*bNrj10"0S'i]D^JjV|ms-52ňɇ ;h`GÇ!I$%)} ~A3~ftE{f޺3q_ʳ~m T@ bK~?{yʗkyfӆ\CAG^s_ŢoYPJ;/h zƠ␏ew_h6K`&*+p]OW9/yvp@<;?P F'չV]}ZGƼ˲ ڥmfe4 sT^rԖJ>qJR7"8 tIq`^7*niOU8{UK9Jζo.EBBQRr᝹o$8߱/~;Fcm.O 6m1/6T؈>M8~156mx#>J''/ǣhKQR{|=ӷ#dnmm8-8h~ ӨVc/ G}fcy* ɻ?{X]WCx0&&o=?MvW/[TU. ;OB$F|Ӽ/}"L`@ X_DYp뚉bVeXG*JZJ@זVU>4É3Olݲ;| RWTpA5L2(quC>#e0ٿCEBYN<h;@9UJzw7G~vLq C#?UUFb7bͷ3)&n3Fp$}LY[Kښ'G's%QZEexP#~܅`BXlW*}]TN?d` 9-5aAB.bb}_Ti /Q{9L T&__}[ɿ glTmDmW$!7kO`e zP ׮QC K;iE"5pC3@p& ۋ8nts6U׎{HK1 {^``uG< WmVK]'IQK?C@2@CJ(xIv+Ai*i,;Yy9c7p!MFEklO'iN*W{gffT2D0 МIO][!_%]sU%P!~wzBU1: < UQ1p2QE2 \7#XT@Bd,ٟL*E+<]TfBQKHV,C ??r.rjCk>5zG3ҋKmv&^+6F@r~bP>O| iJ x\'MJ}ҽ B}' ~3∓]v~kL0~*a(o 0+]{G`Ƅ $"={I@u靀0eA!UY[n_.ů/-fKϓȐBՊ;eM$Ciouk41 D$k$լں;gS,?ۆ@:UE&"Y&~s|Ο#_QE5I_aciiwϲ VH?"Œ,PdF @PrM|[.%0P8ldlc\/jߕpt䱰|w@""$GYldu⾧*q۟m!{808# *iH?$ͱbVDA'x 5{ks߮.kF^¸R$0(c wqu?6O)C-҂%P7=ñVzK,HPIt[vI@3  Uw3[_;uUqҭY>SiV 2=W+k,nS.SQŠI_JmX\a~$_v ='?ǿHx{~6# Eb`|_Is.n;T!I ߋhPK}QR7 {DٿgTU|~B_iw/|b$LpzJy2m}7_H?VEf Ib(P(C2ߘee ɮ?8^E"{;Z,LJJ=Ժ_e~f5 !p<>yz{+\v R~bBwxgsqJȬ\PcyC"02`_b3/6qk!:5 zoWٱawQQ"b%\V.D"Y) NoߪdM@ԉh5c!ˠoiG^/;vMA #F77oQ~!F[UCPXQLt%;+}B,7oYd1uwNX8>:0^}yS2ͻGs9C Z̍mM#B&kU0׵}W)'D1ŷ5>?J;PvnjQJL$FĬv'AȲx">,Y2u\ߥkz2-嵾D\ mm\{* }/] 0:?'+3[UašNEgV]=z6դߏЄ˓u`bo)r¡ n%iR]C-B:t7dW'N-AKU.4I+z:s!!/Ej3v4UEaeQ @֧(/UsM.zJ|jI&K%ؙfYUY-9b#m4 =BLaܓH6MQLرYpc2Gwc h#/SxT쒤 Y^*Ȁ4mF@e֬-$yJm6RXӛkg$t:e78zϒX(̏) iv<Ӗ C?&[&ϔW!:mASibEܤ}*A)xў'Qmu>댢fK͕Yv(2`[2g voА2 kJԺ׃B!7%#n\+“ sHsAN\ &iT2L?DyjSDJw@P\]P_ňb3.ҥB&JֳGu {"qSz!34 ,:\|k~QΌJ:\ɔ;meќJ/E쯟UrӰ҅00T sRJ(w햆9r]Z4^ (ӗg~&Bo:OV ;mC" )B4N1\Cu~wd0q<]PHq 38#") ]lg~KvT=wnоryRܗC ~KS>|< >c.IZsJ3cMTkte]Ld{Z|TP(,¸,Gziz(uD (h)OUR# V}veBluh@I<@?UZ\RBOH[VKoOj75U2x)\Œz'b d:)PacrFu݀SB@c=~b?tfݷͣ|lo/$~0wIN!V?%|g+[P!.w e*\@f,OWuƞiʇHƸ[uٰr|ՙތV 2]|ͪ`N|aI[fP'tPk '# A@m&ny:v 4J>Qy'*S.ťtZRS(!TUPB|r#*G嗀}qw A*OP&CKsZn4~T; 8)c)VXn gDqe/!֨Y>.M 7uBPE թS Lg!Iψr̴ sÝZK?d̻Nl^7apq *áXh5PbD'ńb]i 枸uWګEk}8:3 Ro&DXWmI>_ ֬1ؘN*@8$O˵4Iǐ+ɋe MO"Y">lڂ,$ E {tsCTC=lԿP\N g 룭yfz;f%#Qmy[!7έgpwv7`Ri%j!DGlM b|k8) y_:e2#b.mhtGTz @e>ճ(ّcmXGl*'b_)((QFhW@i%²m R{|*]k-Hk`K%}g7Olo'>838GP~,7MJvWUoh"`;LHV}Caj,@Iaqʵ` #M/Eo.Jف% ϸ(e^vO"ZWTPi!!*+ ޹H:Mtq*^uGISȠz!#gx0ٮX tI|%e8s{=F馵;ܺOeOL` FpYÏSo0Ȯ]P.=?mO,;VopIUMjC;g\ [ aEʟM RO;]'4!,P12 bdt:Vy @rEϞ"Kq'ܵ^#px/pВtR;TKHV}*0\=۴"h]=IQGb8Bۯ+o54ź@/13ϳ!šj]9 *Cn%ˡ2 mHSmʪN |!|| b֥)ԕߣr?j%e5cRnE&dVM@j LJͯU]2 +a3{žeflLu~q?cl~*E(>zc;iKׯ/%TgՔ\]4?d#ws.T3߮E=jCw 4&qB2 gjxOZ~0وt K(zBeLMsEІyM,l )AG~ Rw0I7N~E;ly|~-B~ݼdCyH04Oy;DMJ|-jo-S<=(m##*_"N޿RզY@Α7e<IӐ+'B Ce6BA#?fx}<.ZWYSRF nwm)MhW_A;_lV@uq74CY?S]h΍y qM %+gNߝ=D|exY4ȬfW1cA3b{ kNբ.hJ=$2m%59BCn6]Q_0LmF@P!ԆК3aN|(uGR3.̑h2h<>+)KDZόo캠_*:/^߇MIعzhk rBĨ,/ŝ ~i,TJb]^nSUAHNo9j@Y(IQ@J0%Ꙗt?Gv4܋iVB&ӮtTn)p(լ`iln=s_rլxu~~ulPrYFRaw~.Ni&e/ez# W/)yΉ7?IC^A'& dK"}# p攚lr%}Ka4k׋BF~0 i#p0qvc Ohi6,kx/o5' \hVm@r۲h }썎 1S9|WT72Btk3AA*[:bLKP!ÎזMh[d(05eBzT tsnŌ%R+iIXR$" nj٬'1)OUwsedJ0-Kgk>Xk%Ź#xBM5:- ɂj” Uwo9I*^JV_Kl/a_pSԗo~oErPȌpRk  &A$n(~~C54c,Xt+܀R $52;uSH{hooeY)G@Tj@.[;}aL3zl17("I_wP"Dx0N+U(UT0,*تm)-cEZA+$Ԙod790g;"%ppijLMe MnjȞ&,,_cRhT!ۢ2 ;&[8_H3I!A<$0)N;ZCg}QΞm ^ؒhN䞾cD@XͲ\'uIlce :^#Ue9%,-E 36WAy+ <싶kA4 >/3OM;ePy&M^8!E$fLLMttk,5-TL5*ELyM3>1JJrY:Pa(,/+5)9{]zbRS{ȶbߝsRsȅV%ǺRз`lf=#E]āCUت߂pNq|\O*!+k$ f˛~{4G>79LϤ?n.Q6qVwPr v-t]N+htĖ펖-~b(F/7|Ʋ?_U[Xyq?uΧ#w0 @`iVڶɃ Qy`3U r#sDLČ23.sLuX9TeE75h=%Q5 IЀ}fq<ݍ Rg?/XԔH .w 2>J?wI@TlPS#ϟ؜¹.)}u ىSQ {ӼaX2(U76G (yX51|xrP Nh`IS"n#fd4A qM_Q=e;⊌WJ9-$ %*$v^KdUBh*@0yxo` <G|pomu%Y"BhPۦ͂C%H.YΙb Xi|ؙ@w]2>O Y'X@-aO~+Fqk$EE Q͔R#BQ11!D91!H$b8\ <[j6`dJnIGC3rbp~u~ds-ćf-n#*]iXg˖zQJM3zPaYO]F\tA+7&b_"1uf F-q[^ -h'ƍ3F76kn(w*L|0I3t\ (B9RBOCh!MS\Qn7)Z||v|)yx[0|x+/c\&Wh?E}Mqrqmյd'YQ|Oȕ/ n BFZ}]jkW8~B@I;LTM4B(v/ bK软0C3&ObՆX*.d"84>3ה5͂ Ɨ";:JSMGֻe|;پfȑoli5K'g(7b&(tcyE ǡ@m-=9wf/ Yf'@s~zˊmu1Ŵ'0AZPR7&cFd^:31?ٙ_#AF嫴?~  ! 3iyNeűH[| 7xP2: lika0I!ػb]f9HnJ% nͯz hJ9B:aIIlU/'yblM3Ը:f/d7? 'Ǭf=q,C_?<--iCLьxl@*@8)U断Cl0pjR%wyzs@ ^Ł{(V ـ˄'#KZx,)p~NHNleo *ja=>bU , ((D\f*5!L}2U93X Yǩ_n}rH8zxk#fz<#"IK7CQ@9s'+~Ali37blDma[K~ ?߷$;uOdLDtUlYc >:Iͬ*5aBK=8Є[H8T9lEA٠.a7 Vk4[2Ok訮 l`B݋Ѱf̩\hLAqZJViܷHۂ}eZ>cӸBH}s٨wMOi`l&L?Vki'??qҹ' Omoi4ْjvG,rt7vD}yn &a - D̓תBĪ2 z̻G׎m*ѕ4{3#Npx|U9E9I2/g1@Fm& L2WtFovNB_Osͧ(I36o8 06I+JtcVl ıE:_M$ ,L: Gm,ި@.Axe9:_ˠC~oڊd;cNcXXK3WG ;EzT(B.c[1T5X{fC5yõMEޕTÊ"fӏ 0?sĹkn 7Ul﷗{IAu[2dym2#_Ԯ{o"Ǣx?TЋ/K~؍9-woWfQ!el}o֊1DwHY,&a&bx4sa魼}GԊp [Gµ %ݢ̠u[إ{q:4וӦ3@y!U2=K2/K)\Ėf#ѫgIMkaQ inVn" hK.ԒMY:D!9wJe+Ɵs-1R6h93s.~ǒh{Q,vTܯ$}xx0fȚwZ$m<5IxwUaZ?Y9s.ڃr3k]̻(o~^Ía-M_{-%i!¶S[:KS໧qQH+J.GC>mR:jǿv8o㢖j*byJ 3YjA"B)Wނ1`&J8x'PlLEYC:× }k}/ bYC};J+8t&ғJH7#/}4{F-([PnX#hIp`EH/k? t7)±0~mmGD=~7yݳgYɳ%QY+fsM-U_E0.q*YV)ܙRځY %.aOp.JJ V5ʎB]iU<% O/W]}BMdoVRG5C-˗Klf_+1H9<ϡʅ:ck Niw>09rBhXΝж{*]|"^d֚YHD\'Ø7DF/]mM*'q]HZo O bURº_j8'2pMY]S]!PCZ ֜R*n~C or"?Ze8+{O{ *cQnj#+]Fٞk{ q-"`̧̙S] 0-dW^ 9xxv-S}U~{\[\֋bBjĞ0}{'x:s`? 'yk}!__GɞEMs(-gۏ(T0rթ>!d`;IG+qu!'ĸ{T< `*1JZjl ZG3@cúYMkl'*MJM58iA m.ȤIsl?7A;V G7!.;Cs:60z(aІ:U:J!̀0R8/ĒG?خ'+^2(1T#{dHy7ǚgy<$ E?Q(K+\,z|_"q(<P|0;z\wkʼ\#*୫pQO;E5%5"%`HF9I] r:I)gm?dW/[њz`EΖySQ Jq3Ho0i y%[z>!r`gI +^ԍE_|oa/=g\Lm {161 $O/sB:MwLx:j RNYt]hQV)}|q"M,Q7\S ~Dp*83r:ҳWILslG5(9A HZ#󵴥i8l׈7F~q}3紺3th,`B@fz^aHm0lҍaje5]g|Nm|@CV`b p(|A҃+DZbuz8 ZobWL:_L++m\ n](6s>jw*x=[Mɰ;EzΊRiүoacfjpwD{K{S6%QCo2d{ Di*drD]qrKw{KjYxxr 7JH^qp≿AdVx on]s>G/͓p/$Ҙxj;,Ea WPthKouR>6.#F4R`pd\4-5t*Ⲏ@|#ipcձzR=AtWv,lK%j2>wbZP mU/a7mWVkP:Ek+y~;`O ڬ`&BۤfuaJa//kīR Be)s(96K]y~, {;QI@:)n  rPՑ`FX 9?-8=mt2Ÿ)3J~[F{di=3L;> Š`,% 뱤r_rGJ@/2a9LQt*9GGLRJ`&%f>5Byʫ])1;`-++90 WVÛk#IL4m6P3XݴJVvktzCtnKgt@EL@tB,Ӌ(yV|~.ՠ{qN$͖G}Z$9Wgk%xrB]oyɰG'q7yl0_ Z1>yȚGkk[ea TiV E"; M>1B}y 艱WyheLEke(Jo[ӌjd5ky%=} )%rTTTDݍ( akVo6GH3$|6JO]9@n;oM_ᶮ̒8ؘ `e78_e4y4*X:J(JѦ~2F5f$*h@CIN2U(<0 hNCSgc8˛yGl[n(ގzF$³&ЄldqPAIv! n!e_$7ء2>x0"Z/9_L[L,j h-AvT+k۝pzJ]+f'.*jM?)RkL~W܆1VxBa,Z cqۅSWvW|ԟ&ݱO <'Й0;MQ$d{lP_^WG&@b>n-ܛdq{{yԼ"n>|]Pv{|RJ, in܁q|!ʙ9)x~ՖoM},:KZ.:k!TfИ1cfR^ XՉw//?%VC`dw9 PU# F|%Բ?, D@: Jʱ3QvZb ߂kwd0w۽VBIWe$38.kdܨVǟ*fN1HBIߗw.QdO Yl$G/~Q$+H2OĔ ǯ QN@3.'6ceíxd b׳ǫfpKvK f+OhzЛ4\Q4unIb7ȤEu> 4}ʠm0 { e1A=|1bn_ɵ~2Χ0 5!+5֊`zSt1mkEN#jDݏnA 1U;ج7P)KqLa)s5mHTiG8x(tyItφCG_z}aHl'H }1?>;1et/\gѻ t!iAw nhMWSDq/ii %` {,Ӯ 52qb"b8ϯU=J &Ȁ)e6߿12|oi'׉NñڍZ#Z%[_x*XT _QwH߸N+%#wW`*k!iOK'cm fCv^vw`n%SU M\|:Ia (i׭UcNZWhM||DE}:emeAɌzMJ{gLcj(ߥ.l"8 fЫfi)hUZ?=LE `;4۳ +ɊEW#ߛi>*9Ju$ڛ+R{c ֋nS{yl[E۔Z53 ȃZT:Amuw~|;=ttl`y+/Zj5fX%Gi< ZPR |ۙu]A+ʘ zI _qSlP .gJk2JsFf-!,@}O#Ue4e9sSHY0;:1[T1"bc l [W)E:ӮUg_ 24QoE71\i|YDYr bQѳam$wdߪT@"2n~qHL՟_DrhWTsXx+t]{5-& [J覛!4V"7B}bv8=H[avIH3ڣbmx0| }‘H2K-GεOgi6*" cR6~E9$;mK2Qj@-Sdڈ`֑*I|Leu}  k5Swh0-QE&aSv/g "];fE#Y<q\ e7򈸡 Z={P-%R Ji1(3h$F,nqa|~İS[ؽe"Y!IdҷR<0PV+R8:Ǘ*c=4(?acPPL44*sO0ws>6!~ʄb Nu<?xw@x8հ{s5O':! |0=4Xd UΨJi<F|%ӺٱA4sI=դeӋ[ }1yՖzo|*s*=r9@5vMD"Qa9~Ԫ9}:՞d~6qq}_ӯwF35YX3k|3C{ɨdFpxnf\=:Я^y&iK!g j5=iB,AOK%ctQ!GNM,XI F*$JAnG& [i3kgziR=U?hqC56+RqvqZƁt\ywE M/y=?T8)K3R#[.=^$$STo D5$ǩ|.>6 i%ZU֭t2Ѱw"ʞ ƾaf&};=#c"Kr0o4;[ l H"[6eΊo38nAiOD P:'}c2k(lsD6М:-ɵ>5.W0:Ir] L@+ON1Q-ȼ ZԹ^u/oA5l*$2`6l(k%faH;?蝀0F3 ˦jH!kcQK:@9S߄phMqbÂ#7#]sۚBO"LK|oX-!2/Vy>x? Hk C1yui̽O/@*e3#v M* ;ri#D~-~x\fXuhⱞ!gYiYHv]TNǮ5誢y 0H1zORN )տ<т8b ޺9''uI4Ɍ5dFeaf;c 8,2*[jڸKBrNMoFL]+~A>Wz=!K$(XJeqlEՌ*OD,b7U4FA]B1i_|pJgE`ap<͠;-vy/TAS_rB5L$AWGw@e`6RA׮$zh־7ڀ`^s ˋ<ޭPa}njjeRX"gVg"P![6`O+@P= TS ޢbF`TMxU_O lbk. WJIp nG>$ll꼐hikъ@c+'7;0.`$t ˰{Dg#t✭z`;AdFpP tHjy8zqNE=Y{{zR*Kѷ3[E$Wo߲NB|tU-1uڈ P:K 1;ь P=[JĞ` jJ>vۓ},F_DEl1z,@I@ϤHFͷP/D{ wl+t16\^ѴYKh%z(bQ1oU|~0އ=vNv8Olz*_Ys sm֨z|!&8w]Ye4zƃpdzG M]'bL T,s%I5()qgXHyz@^k,two{ ;@bSkgI.FPIdQJ@ *i۪2tb}yt>y3nf.v] aucϑ>7H[˝$'7o!`.䑕|",N}^2T &  Dߊ7c?ۢʍzPgfֆRG!aP@vgukiGDOsw,<g\/G%oZeJѿ5X^LcX?0Y%S ~Sa3b\gOn^ȨFTZJXyuݸm-|e3FR?;FH\ KN93v!=):BG X +'[MgD%/ #)V&#T9(wT6cZ~l8K1_=i1U< jT q,Ǎq':*NC`nj1s%UI%m,E3;1Ak#4Q>5TDa."`eARWnuj@`WxMi˛JZfޫr'>%a߈r=X.jDӬ.e|W ͜A1h84LQ+VF6ۄɐI/J*5|/\5'sIe3r\< 0rXㇺ(stg4 V8Xa}4hapX$ |B㧃̸ h_T' R~%XCZmb^x[(.ғ(p:X0H1ӧk$EOEJǐKjK?圝TrG/Z $WZ-u(+|"HۑGn9!s:QsZ8w=SO˰uq6ȷg Щok)t&~~oFDWbUC; !x~U۔nc/%y2 +íiZnrey!W/}X5DBc&ʕ)f5*;aͬV 6=5%"\pbS'fTv 8ij;T:*I34HhJx kWR BlA@ =N<]~.L︦R98rZ,1X  YmnU&:~|ާm27PzGܞ/Ou(ET|`ۦɰ\~xH ^CjVt?]t\0'hĸ߲Y$O59kz}_:"#ox51 YvUCbÎ[:fMEMSGC$*2TQ[Ff8 +='x)x`j4!@k&Hy[9n;K)0DFDQ0[{'9?,J- ōT<׭I@V1.+L)P%$O֡%~H;덂*S.n%IS#ٓe`Yk.>5 hG\P`FU+B~al>$NCo,6zq HFjAis73`"9>0`c^hȣtBOzX%cōAk'nfϫ*v%ogsO-8zebʪJew+U\#JZ6ΛR W* 'yGdb6+ۓmrVTR\(Xn7:TzҺO:b:G\_༌Mľ=hqAI9{u;b)G/6hj¬>hߔV[ty܄Tl \(r&u8߿1^.ϖvqg?<'34=IhPi&s,T"֥r*#Ѱth)AC3<-a 8tU .ķkf( ]dݭpI*^ 'F4e:c{ò #=Ikc`QW2^`!K}CחGu@jxQA2JZ݃ Ⱥ[1B ᛒ:zrxH3EDAJQ*RQ! S4 #4`uz@=)B#:]{7jo'76(:#!`גBwH!"e4u Gs| -vΨɲh(OD=I햅"'JwJF 7;=kM?(<%8>֏ϣZh@Vuh~- $%?Q.ƳLxȶ2\'SxSr, {P 䜓ܯKHwW 'XԯձA O˱%IN׹7׾ٍXr/1e}U\ bOVa'= ޘ0_GRAwkUANXzƙgWH)x{Cn+b eRo$UXan*I@V?F5Ӕy4gjnu*6 Ipߊ|06р-2SZ˗PzpΈiKZCn>NHC 7-wھ:sQvۖDn8ڸXȖxeZanBS4?Fs[U,JA&~q XF 73"ZW V3\(Q[[5vK $tHh4=7`O .D1yU}])qrp`L/ ҟEI畬=-n -q6˔0 0/wo! 7jq8lw]",oQr5FSx̌rrJ#AҫnqEwq}37!ci=c}CוA)?Q:P]`m+31ۓpR ҟpHzxڑFwڄ >z}9떼ipxkWlSܻǡC-~u'f7 5e)Q'/4}Œgy3"^s77 w/T'3XV!~cfFN뺩Ğ\a|R?Dza0u#fAWnD60V?U L_t߷GE*of&کsIJ\#fveX)tx!Ų AZ9Md+s'o]1/i|EjbA v7KS'+9?׼Ch wm,lr%gh z[qa08[Nw4DWo୓A8ua~f[0 rG ܍L*-K2ԁws~Ͻ}\Oqg|J44~7^BG::u2 "e<_{`2~/wOR%XקFRZf*IL0 80N*g@W̑p"C&@0.:6CNNƔ T_w H"P$W^! eN*8/4bPo'3JWl>pm~?߽v99#L4YPэY4t֙BL#Op%Yl$8Q8;+U8(smDڞ =e^{ 'D%F82ߠ=GJ6p!u 3ĤUwcSro syl^Q{>PK +';5k!ƃx힛lXsR ~9URї K;Ȧ+FZ6xgT?4-ezN*0D 9|2"\C8v;W,kо K2K*uB׈[fFJ %痳&U>|w+)+6XXmwW&Zf(ܸ *C Զǡ|s]x)ƪ`EZ ٢pRZGr8mk4_F:zkwZ6 Iwۑʘ3 ; p#VE|uD 1|,WNg_\{ P_\g%S2LD4Ł+ 70GhXѷ sS*S0ܙjcB",MDm,m:iӊm}zBÒ\m7~n۷I Z}XZˍ2?)ubu*납} (B]Yz_nC*(?0L, qljg u ЩO1@.x5;ueF^Iӗ@o 4~XYJ~hLj=I&&peϩSUnT0aSv/tW/:*x駄7^f pa_pDx\MhJʹˆB]6FǘB \ [Zэ~ҠXP)Հr'ȵtIj͗#h#&\ءFiX}zO^zh?dR#H4)А$rgCDb{O`=W7iJoNJt" flɌrBnħqM6]sO+Dab@Z}LupbdֆB2)zd:lP'FuMj%3mc.'cah9A<|gz_2y1NKgKu:ozy/5VE -+N;uSCƴS{_-vw-9O8JAچ 0>i5Y`n"tcMxlEa`۾5t^֭ЊiEѸ39`uՕ:N!hqaEn6U *+q-BI=Wh5Î?҄]w4Y`ۦ;ւ.7w5X᩽c&kb( WYe(NB*(@?@Z7?,&UƿiZ #mbfЪd+T_GR-eFV9zL|!q5RK7hQΣC81&Vym;ȢEɑO[R1>G `:@ߦ=of*RuyTS< 4wWI"x l( 7MF=vaB/qָ G,p%֏3u $ 8#sTJq(;ur?jFCU϶F# y.2j 3ɴ@S&|l94 s.hrA3} O!ܚ ש`c0 nigQrN@gX5A7XOTȻnq2l|ANP +Y/jps)ҩ=ZXxa7 hgnC|N׆zVs%'< Iۈ! V79 70nmHBE_ӀL԰ZUWhFrŕ?S`{˟ yg23o ?%ܨ=d~Ix5,/PT~$<5w@ea#jH=86G輁? HA\Zb`07\ ]: QM3J{ Vӹ]cL3k=tM+tĿpW|e8Rkr3L_M;uu# Q߸eT o)<;۱]]=84K.$cjeF.K1"֒9]PE1J6 H d^V޼,  SaԎn yJPNSKp@VޢL1l*Bisǻ(D)TkHQ8}@ke~ n+̝ˬK h}g!;5Wq/"lRAL я]ZRaku +FcJGɇ`]X0~ 2x}*8?)pѤ=~T+^P9 jQׯ6 Ν8QUHrXi#Ph}Pb 1Ӯ)u숊ofٺ6m2 k L{ɀɯсˎ$H=D[ Y.AcKF zߵKvRʅ_J-:?t0AR:C&R($dieι8xհ•W'ܚ~$^lP Ou(w^G3CG[=}R1)KSr5 5D*|;+8ϖA0+Jk/7  V d7clC1ӝazkta{Ԏ|d|yugl0Fw⯺)l<ݽK%jVo:WsԠe[&yӘ`)u#jθDK0 cԗ_IA#š)DhIM(nCmFG*9`g as7/S|hU31VTP7F@)Px:ѓ'˻pNq&^q+yQ4p["C}ݽuRLkm,hx87ago .WJ?6ZO6$_`{,Lip2xs߼!X)3ժ킎pF2h-lz9CLz{mHC6ΞΆKshgQ㉕MrDp9K@Y_osʃtz+MŚ-k#B'^Ss(N8|MpRk뱭 B 6zi.elG%ު|&ڹdzClgG$_xG"'/>'JE[G ǣ?\6wc;ӑ[P_1M&@Zm1 :wcGs50/L5".D.mA?*i X'1mMt5 mX$CIrea zL7\V̡=d6攍I !ǖ%J7N/5#l<`o:!{Hmϼwt*35dMhwc“a~)>@u ܹ8DXK)BWڄ+5wcr_E՜?Vh4+6g^A 8& &$855ĚS*{:3 _Y%+R}$!;exA_dƏ^QV @Yfk2͐"4) @!¾ (UhSRyb4=u`;^[]0 A԰,/~n-pn)D._y)b1[ͧ9C7{N3/TK=;swLRGVFdG )۰~ɮ%fß+~N5 R;-Qf[!{chmJd;Ton!qA#pf Sn,M=B_Ʌ3rI4x x#Kȏx;eɤB(ec]X 3K(A*@yqjNi *"}ELi@[c%4ls,1/O4V> 1h8'ꑼ[/" ҅Xu"#@UĿm,)ч*iM-3.SLNX’^9M7(_dXl2B=);Bu !NܥLp_i0j#׉aBZ]D0d!vވGP/XggRg6Qزt7鑦iփ\< ugئȈ~)NdB(|jΊ/Gm^oZ1,}vQ dCGp).h#r<-d JNށ82_K7Blظb&k[^_h> iZ vHVd4 Cl!c 8A@#mnH+ l(qѠA f8SO!r33Q|RҀTsf>8Nǻkͳb)1X{E+|;h9XU];%2I{ǒ[mZ%`G͵xh2|6͟@t=E_ABwJ6Wm뢁` s*Kx ?MM%|,VKDf="(ð Z6gHX! 7(x] G~z׷GZa[LCA pPq֎(׈!ʒS⅓-LuI;3Y]o,#*JQGqF%ČciJ ]I6E`Txñ#rg(ojg#ӞlSǦlVEJx+3ە兇[# frG MM*(W_ESPh!vqudBuh5##9Wx G^3~Nl @GP-UuJw,9,_1w$#ҟ&?9JȮJ+){lvk&+بbc Zx&mu"^Uf+Z Rs;|o? (JP^&|nL½qD6A.sz:K;se6Gr0=~I/ }\O~0.+* ?i$"BNS]1J}qn ,,` :RMiۊ"!2=6CqbmV$2tRLGr6JHF忶ǒ@hE10 9_JD76]v̔a[1j>z0p',n7GJNoZtdu=x6{}(6lfOP;+0|g>ڑπ{e8e!OmH߻ݕ &܍&;Ea‚؛[kCG)FIp9јz`& < ,IHoM;yuzLayw dԏ"]|523[lqp;,Qo88z;L|\71Mc fr @[*~/ddIm㰧 ?sɴ!’h Yq!5HkY}Q4gw0+ޱSk( 0W~5R#EN2aDG0S{`EW;2&gɕ+MA^Abe/+Ƕˆ0,9IL"Ω}Xj ݲ| :clՀVf)ڭFM\INO sXk2'̫~l2. Mcс!!waZVX̀ ԤM53KΚ-(/¸f9RߦMl+MC.tDGW\Y;nF! 94in0S;l`Mb?< Ybddۆܷ}DP{@RbQz?LVRHv):3/"p2wKױvWgczz`KrAw?.QqJ1 :IhǬS~%=gzS땯mieDT烬=R䰑Pωa׺ #,?fs?06Hꏝů4E0_B^ej*G&jDƸbSunÄUrlSlKCY$T Tk9Q;et#O lG9*$C$F[rb9|O` +qMIEVI BQ>B 5YY怯‘b/`yIL.'zX[T׵vo#nh1*-Tlч1Ä&_ۇ#Gch9GL[^-z&e_f>jOM!Gq`&^n#L0p$s L70h!y(WcbU`v^NAG#}d#^4oPV }PjjyVgK#!cL (k3%Pt2W7(z|7t*Wd ]kvG y.i! HtsK Χc k8zdC%NoҲ,MD@4C/:򠇪lR2P0Y^A9ى؟e?N/'1P Q\I v!-mG'4blX-Dqsw'Ĥ(S^'m$Vp_;4)6XsHAO)OLړPi6OnܙD0$J'2~7QD_{&YyٖWlOxǿԔ_Fjlg3UeWcn<<|ҨPM?D5̸\M}9r0Q.4ab]yg+;@ؠ5*9 lk WcΐH0'uFǽ(P]=ske~%ESXy ;@˪AWiDЖ:q.ra24] L奴P`GO >b[}LHMF mLXBhf+n(>+OYK l_={L^ 5]jyj!nt,=F15 yLhLK{(F(Gݞ׾Ӗ/8d`|NHh4Q6IշGB#@ f\՘k`lK+X`y2Ib28^5X1|Y3 nJ ƒuݸ;PO盱7;>=# fA)#ے"KmF5Lv14W9i{3<\W]Sבɥy.R-.G2[pܜsKD0oRy#KmwQGqelm uwPfլ( J+M.>է%iα%ٹ1 y53LY]= SEg69[n:lu#nn+#yyYأ,"+ZĜau!.U)7w"E_T;F5VށgDP=k9M (!#jV'PSt翑 ZU^P̋3G-ƣHj!;Gv%K"wsQ)Stqi a˪C\Ǹ8'2 =b]8L!h3* >EsșR#9ٛr 0׊s^KJl)xc+Z^R?uAs,ޯ~ UChFoRžU'.ӱ{CҦ?[s2x< (,(G8"zMML@D;(C>iR +)QEMaKPYt ݕ/MPEb\}Mx"7v={w˘hƻ7/dz?f1m2K.t0[^ugg vװ;)K1DYLkPI4i t@U7nH荊-Jы%ʏw-|"G"4v3>ߣWe@C(q5KqAQ!sauMD#O b9[lMdiy.hQ~Xk Qq԰58~e^*#M$uz^MtI%FN mh^}hqqf^;{ Tb3qM۩!P:f|hX:BX"QXȑE*!DT=J +*8}/=AcfR?kw?I8y+~0ڷ۵QlTҦIN~GB?aQ4V#=19O(LHZy-L@< hڸG5K 7 {+,Gd,sס2=o+.X pZ?`uQ ~8اCk~ OACb'<*umdBݜG)ۮ&t q~xR!cٚ6L #onW#(Xv/WV3Ko_ⓙ"Hmtqna/ nz7"Kn3 ?m2dB Ejtx.}l3pR-:Sg\x5dxK}{$rG-{hhaH|"/[ژ͸N>g%10¦ `YԗnX1hK'9ږ߂$[ 3 W6lxaBQi6Dz>| Q|h}E. (:׬ܖ*ق5LWwO X?KJ߬5GfCX>EdB]PԚ:,"I ԅjx*2U9A,uҬ6W$X!Pߢ>F7J8aMXsޡf[jd̩,ͅA/%{2SBt e5ʼnF';s$1J|K' +) 5v S@&00>2nn˝sIY/s?9Wfq"_aI d 7ϔ:(.U WT;XX,'Al}Q]}6Dj<韅ay&[jc}.vΜ^بVO&ݎʞ#NEәʾ@R= څa%o(65zH+y0o" D-& e瀯8m㠪v0&BuT(=-k&-"< n0DReTӸWTVàY,8^Qo]P9_u3xW_TcՖ Qqb6'4{Z ,lXu+egVuK >P#IB*h{{BeyE~ %ʝAl߆[4Ƽ;n8(G<÷uܘY22= #D. fϽ|;oM0ќC-CR*s+дlڵEvK~sJ>+,Ϋ^>h(Sv ]D|VZv X6h{1T\lNhAu6Uڼ?v=C+HmB*!|f1)3>3!-JWl3LS r 5J:&֠uKpA2Xr;:.0_~6:&Bz}8w`3J۸: v.j`RC]LL(Gk`Dl%=uVlCg'4-ٗSB-g3 E]G^\iA|f,` }3Z<[ؤlk*7|2`X c 3qһ(KV﫧mkMmWkس?ˠ")D| ?,:?ړ$|.uհ=(*7v'j0}F4κC@Kw :dVv qd_5)qN `u^SfK8[VIpaxZ:ʆ'KKڲaF\R̄(h_s@M櫛|Ya50k 8>oŭ63j<,(}쓊!I!W*w*@3"B}am[z\)aKFVpk;re/Y2X쌍vs9PƮ\na_@kh̾n†[JmlU1SKy`(?I\{$k޳ܵ:8ZSf,xSdiٝ]@,Tʧk7!lmctq|8sr#n`N-χ]d1{c,}vǛPڟӅ 똖G lk]Ot1.D AOf$}c8l9AtHDuNSOHpZq)q,j=Ou|$WΗI{_.tT-c$2MSԕbyU3[JMlxFLl~# 7 =dE1TYOgID4#uS$L @=wakɑޤ[q}P "sp}e_J$ 6UQtKumF45B#{<`NhUk5FDnY 5SSޛ.]Fpg D/͗*Rxf@9vԒ+ܑ|ALUN_,fnTn + ՌiL9O*u] )8߾*HGD .El 3T]#v'Rt+ؾ6%=֗x:2!!}&C p}$9'comrfh_Z]9e=Ж^23Zxw%2#ZIMO.D+ 3S@-^ʐ0/+|1 \$ |F(P4jANhEJ(3ro5dg"v bnUXsrwMz_l[ ^=xv`jqhbe+9$=R#jF&Q? B'[X }йߐ+\J'@`C[ 䅢[ehQD"`fqbot!cZ#XtvX >#1RcMUr0׈g|(B-ᑭڊf;`~ Ű&rB|/ w.JXGb-hXmjeAy0&A!| h/EQNNtQhG& k[  }nLzE l޳ #Xu^g M.b 1qJd ʞӲ$Vܹʫ͂B^LU?$h?@Ij =Wb8[ų{ެ0Gc&іreD* H?Fڭ?Rc~sAN]m*ڥ$.3̰VЄ}Om˿,:I$sTT= \ژҺt}SIjD:(|0Bl?lr""y-k NˬÐTN0zfecY6MΔc{;Ԟ׵VHMvfc*!iR5u]EZmX3S蠇`"shV+<6lV6Dbj9# 8E[:f+K%3Er+~INeΟej=r@A # ڣujϊ ƆI!xVACiPZx:GoᰋU 6KO% bY 2=#4[O%;jCq|OdPfXdZFnƸӯ_7+$ƭSnR;I59BWѩŊm0I$E7GO)o- ] -N;y5Q?iINӫK 5W[>(36\X /# Օ?e0fuQ׌3/{pNV`5 ќEޗF䢞4݊(%ߩ"Ū[YW1bȘ wY~f~vdâ ASa=^Q/Wg7%P/˧``2`K'BpjbsZ2ɨҟq M"+`}xBL#9aN|`MM,s3>#^bqK> ">7٠NWtJb@_P'b6z%Ek'bHep4q54Qtфӥ!~&pq>~kK_R[P8HOXKm`w0@PⰭoArrpԗ}cy|0n"6Jg)X-[TjXxߋ"L)D̶ĩFfz{˝\607~[ S?yyʔ*H"[ :7[\#uMȮj ?kB2P^ZeV5mPê-6lq1Gt!Md7˄:  ?vL5ꝊLAZjWQR?W:Ths.YaC3>;V$G'Tv.,b(ϳ6F˝wBw D~swZDW~o<0 iR 곬Y`IP(NLMm\tg2Fa|yabdq~YyJM)uz 5[xb>ȵ'EhYOUeUCJxڛED+ ;d1HgxZj \| e k:͕zƬ(ΦjMm跠pO 62jRm2ݥyV-H"_ Q P^;@ؽ5o @`JQVy\w,]2% ;v?i_\ZO v K> 51eWj&%U(@}){K(:(JXx<#hg 1> C"z٣m/&)Bd@m}bӏ Mp,&l*X8(;[Z`P وBn#yD+sV'{?\^̿?PU9q~[dP5cWl&"ݳA!zvە(B HloAЌ NV?BFg-m_8#Hzvg\eL.vq;( DL#\*y&!kom2p)oeTCЪ?B00r.-dɱ<Wn6z<?>?7rs>).@X\m]dUB!Ds(9l&cAc~ 1zBzcWi&TSBٔ{F+bdQpH˻sܕ֛u/MmJ!J }q8nxPUT4utX?ٗfd34$rȝE?}Zh'S? K$8)G s- :Zx,OrE%c-bˢ>Cݒ F_ۂv]d})+M\gMQ>:,GA.˿k!G.3ߏٴ oA]tQ{a/~uNt`GpqyFGO Ubն!9ci+: P8W9QC ͶHQ6_SzJ.p2=TߔG[FUCXLgS{eҿzSOB>ՇK [[ua <G/b=;5^LQHoīyNvk'8ǧd M,0yj%Ylp`~7͏ Q9"}FίM<\7 r]]Bksfh'OP!eOMhj\=իo֛`(B<śi _!=i'V4'!-ҭzXcb ~Uɖs2g$U#??*lPHt'~Wt/I9~[UMdP]ߟ}R#y8оcz[~8Z/ͧGX\@du.;X\)~t7ײO#8R ;cU|KƿUى5ϘR>L͌~dn)D׀z^faaZKkOZTzܒHIR!/𔨅ę|'YߟjlGרa<~P~c8FT'_P/1pBpT=u&AO0VNqS7ΗљzGpqW k(a "ʡWiȲ.Wp!&"VyYhG8gGl*0 /Cy QR|)9<_zAce g7Pbm!+}զ1kU =0?IJ&vR7nfق} !8kG[/lD7tf#oO}g| l Ķ5g](v!-u1zx3P dK}Es|SR+o!ݔMب"oehTläM6BCR.|nrEǙS`|$.G5 h% Z`ο`ߺɱe@;U #'aَOX;'N:z/8U™G~N,bBg; 4h&px,R^r)֥THEGp=Z\(dS_8'~Pb{e߷9WE !̭t\yT$>O+#W]KzCl?+=4"j$o!{ Rx7ؕY\dI`ǢOhhզ([A^GG$:Tό4*|,p;]|C$+$,|a<]Avn؀&#׻ cH>t'8+]"]P#)»+Ƨggs~ʫmmBXz+>q)+eHaӺ霯v iG)^Eݚ8ncVg5NUWE >G[7\~72V"+), _mM 4M8U֜Tn*WBn 8GZ3c\@ n WwsY7dC\ʪ\<3~ !sl%CX'y0NOBŔ܋tQe,MWA^:v$5da dO\&H?{IsDb7ݩuBGѪ{~羊aȅ.;#ˎ@Ho -骠uNɳBD_p%o(zaYۤJ 8ӆ< DKuFxdaC*5 #,C4g!p/-0NSi =O .هP`@LK}+6#V,v2G髜(ADV :k>l?rJ)7ŻcճɣrQE܇/!GzJZ,'$1@H>8G.|*免Cm0O]FWLYuձT'%t/7XzDi]U;\,hŞ4,Ԓ Ư%D@H@C-;H9RulڰqLTRmh.\@3jkэ +` YRŭ]no3P|j8VpnBjю60P1{?t IJdFRYowTmjS{])ߦO &etS r&`|#;{{MD4Mo_;:N~bpYfOJPzX_ <4#77+RPBerNRvl2^N&* , hT e{CEvXmc>9H^?‡GWOy46cReJs/.F1kQm-ϬbkƼizt44QOO ӾHY4H-!>w?nN-":::\y&,0.L एٟywq7 &]WÜ'#PKx3C>Wʞ́MQБ`t;#/7GWc5 n%븂aT?;i+,0^~=;sy׫]vsH?'WFK-2G+"^Emޱ6 [.\/:4iۓ}t zdop'GjjVn&nT^]: DOxЌ3`E$Pʤu ḘX o`K%&fKrrHtXJyQ>Ѵni4Pxrq3<[$W7RA|N~{ϲ{4&$#4?(Jhh2p @m%Ş7,UÞ"UohG)x_}xG,mԸЋgN恫gE\kϔYpRd.r-QmB=(+fbRa; onDBB*V>ܓK7[㹇PyE̶5䘣06kld1&bZ|9 ؚ/-l>-(,"(0x+++ 𫏒bcKQuPEUM\5}/I>UH_or!2?*7+#v $Pbo3XIvI|-)qxSnC()]rߞUwAlt"-\}x ;isPs1F 9Ly) 8 _<Fe獷= *x!zlT.* ڊ/\\m': s‡&$?3<; CJϫit ]ߓ 2 I:̞j[j!g|Iiн;5* Sڌ|e^YNC 5`Q2˔.J~3!A2]"WIg0&$[UWs3WLQ?wn`7(&9[ob<$JpL*iz\ě5o񢖦cfDbd MnNΗ8c]- ڸQا9z{'3a-O 2^OKIk6 qV'l# ܁B[ rAp{daV\#sQޖGLveX-g`L"V^BnM)6|^j:" -6@6j<6]h\劕a^ʰp\5߷R$kD'7b1tv@N xjBDy_QƤWnٲ*bKcՐviC(9OKda5G7)wc͊A֝l+/YU=f6 lC h@.Tu9^$/wDċɒ˴E 1W,!+yJ\;‹2KoބA~3zRHcE sK#RS ym+Z Ө6^k+M *%܀nu VV9yvʭ̙k $7i[Rnؚw zc1 \T[BPFŲ.1m%j)`r$tF'1DmuI.S񥁴^?i?IJG/YNR_zdG?KG7_Г.S p,V-ߴ}Vk{4I"kEԘA^bԮygz&\Lw6W1I: <8=]2gugɝGQ ZvX`(6.e0|ȃ\sS ~Y,C.fJFpނJ#eHcy<;(ly>fR%g:6;mA:mdfNGJiӼh~8 E\  ҽTz+s:$+wlH5rvɱ)՞nO߄e0* ur=v$aN4F~hٳxZAhH8Nv[on+-A4Q.-V!dt>ꏟk8.(hynmbMe?5y?/ bPd4Ck$g ]?Y!xjJ @m~ܱqĊ$AM7>F嗋W!mmsN,{yf))F_dfBvp*~ia-݁#2^DУ];`'[4ߑ[n99yѬ 4諺͍}].0W\"4n[QN?j@G'\s,&<' g id 2fQl$?sN>[ V8}('4Gbu Z9L((`06%q->3LL*Eq $IORю􄓽6^jꯞ#*eΣ oףV_t *ihA#4.`jh(%\$8<[猉d!v+9}]q'/?~(9z]EU˒"B];p*xa07(93rCt=CW?};"eM+f  ` 2A61WIñ[Y#bj-Y`$$SyE%zg#,'zsmSYMK-ۣV'VR23J r1*Zs$iPBZn;! S_2rUn{@'޼CoKQ(Bo8b/^NST@[ ={c/˶q Ŗmo}5>Kf^En!agAmVYruOr=ФӸ1BaNj$:cubǫ6#2@}NMQZ茔^$)8 nG-nxÙջ&N*?0M([ni ]=PveLh`ȓVHD)AI^LƗqihhsO#]dln`yǒtL{e9 Q<[%0cYH4ôaθt=?#{6Cw5x'YONEF" JZ]*Mi~+'HSBaYqFkN1"`azf޶vS<]RsHd)`|Zd}&l uMK ]ܣFDqE`~|mk{\16^"Cp8{A$Kq`ܴ>FWv_2E*hWKKY1prHɹj/6nfuWPGFsPDU+@4i-BM>"t"(AZo5WI0OëB-Xn0 Lx5fSl&-HnBiB^p1Y WYfI'y:p8cAt$$`~w,y~%w:sIظ%bۘ7d<"NqI|DI:/M>'S1gC:ʃ3궕ݩ,N*gb7G f66N;S+ 䦼Y9 A%1d%2CJ 6mSIk,'>+?p{9-ldXk!!R}К׸H=g tI}(,ײ-4-{eƶ&V.Pk*l-׀k~Yԫ}g`|CTs7H t9_jH%_ s &kj2h_d̘ʻW0J<[**+@Əˮ14K{>yzTb*o0 4W_ v}JAt?>P LvK˸v_:o4Ļ]Ђw Ɠa?>&)>vcx ?V Ac\JBf?z'xgQ!"g1d~?֨fntw^7[&~kXnRqqHE os xn҄@f4+*a5ֵV $B4 GG.2!*[ھe)їdA,b , & R <Dž?w8pгыh^ڴؐ/̣?{;|O򠓑-Cwm?u:NKU;rjʈGOE²8D907h>o]P]5 [S4ljJe5{IS^*~6 d^>T|Y^MΜV5K Pd?GNEw?X Edox})fh,)Q%Y)T^h*Iї6F }0dR֏7'_S7=xqyk!)CmeWEu].㖌lrNϪddT5uB^|ebzE|+v`D,Z*Coh,:[,F4U{PgH5("Cݐ4^?O=@> e=ZQٔO7^3=!\&yy+czAQޅc1ROFҤDnF&8aj~,M 9Sr\x$" L"c$Wfg֥Ge@,,LFup>u 6- >Wg?ͩj;cR{@(v*őH\Ia4bPY}sbC)_:xnVB1hf yE7ڤϖ;`{zQ.&C= kR@V-i= !#yeޕvnd2l3\{z`s{NyBDRb%3of8$O { .s.I4O+"G~邥̊cC#WH~]yUdJ1.eVvy-PUl' ]ub4R[F")|A L?6bmn}Y㺶ɉʁF\{huNs>?b/t䰫U ΫB2j(Z3w|?8P,*i|T=CV4ν_ЅM9񶺵^7yyҮD5wS+y0w]ՂhDН-\Y#B(L WPIJ!cq砫zS#cCU6!ɶ/ B6^ԞQK =W=P טS+J#bJ9poH*ݑةWmìqSIj{TFdU g)KG g˯x&'J]GJoW*ӉmAߏx 1YOLy/fj, *oP=`d<}QIH/ͪw=qMUB)޷py.a<!@A5F05$ .C p{x ,K53{3y/C-K=T15=fSdGeU@u}rZF@ LQ+q+`u2,̞rC) =`Iu|yv[:Jw(tViD;y7c` &-Vr,mEvIsА9ao1oHI=&[R`ڌ֧#K~LXZ[PmX`ݥpz5ޅMB:*4g-6gzOX06cλv'vWY{owFn=Xʿ?sE}uGl*~H< -kjNi=>dϕm{h{Gv&h,JxC D7V򑽷g%GI%3?GH묚ѭ~)`#5eVw{ZxZ'@| ۊ"mPRNbLR4Q9}fARbæ0ԛ>oq3$hXQ[R,j!bRVD,TGy|NX"OQǖ(k1.Qa&w7C]uDPG9thg2P |oAsoX CF>0JNkLx5 AwR7H1+11JwJmg P80Z|zSeGxcP--=gClg/7Ƈ%DlW ,t>3o$՝>nSf1Ԅ~HԴ DSmDꇖX!i$]<E⨽jF^uDD^gKPJC=ر9M1% A; c )xt+'< ٦aHU6ʌ`$?QPS W{ixO7)hy0FAΛʘpE7ЙE*ӾBcKavrT ӈzY H.$O^>;n,vEL`/!ܕ?{PٚgI7;,;9KmMU2<ɪ  k'>I$R׈40"o$y#|+Mh4ˑd EiP`rQ9NhPp+<x@l3Z['nJ *GGBC6֨]ڈÝYbùY)JQHZBa-Lǭ 9p9+t"/汓!/q9EU[TSb`ҨEN4<º/OT|iRm/7؟ǼzQoY#ZEd-h[NT)05DJs2@q~6Pa{Mݮ0)qW^۔=G-gҢj̰W)9}//gG(Q÷ IR]~u-R{n70쓌$ 1M=FV"Ys^1Yݲ;#n7pK"*J]]jG wKyWƫ-M :{!ŀ4LS4*n̽>>.>uA LQƎyCKdMP3òxq#g@PSO"tmg0&q7wZ.:Wg M#Z«j) 췖aG6 tR .Dˑ̽Yޙތ!*;EӋFYVk+XHy2WVf&'|þ;;}\S,shc9MӇdz76,rŵXnm3GI*-+3wYڦs_{PPLn"2}bqJJhȾUр%J5:h9J* ysʧ 籼(̖:X]Cu.PweL|PD:f?RI킉I\تώP$~~ZzS*" ~a ȵK0a]^qJt}{gṇ+TWQ+I(w!N\";E%u3TT3|N=y;KuҘMH$sܑh&&~񙜓M=$γCo[,\K&WtZ56_q2Ia9*c1~>'U5/yfIm"21r"*da&1-V̊RLHEp퇛K=DI0iE io1XSc7ߣbꐤf؆W_ Mk9iC02]+ +naf1-:˭p*'AiZ:PiDHрAdQH?kXD=\~%}Ae;G4:Xؿ<32RJ\m(^1vz\3uEÑ0l됓ʹwGJT-qڲ_4/>gf՟#{]aMDQ.,OHGֈ1tQ$H?{#7QkPfDDe=V}G' `|ҀM /} MD*}AK)3= 멱\knTЁlt,+IQtEs?rSBFbqMq4Ufi;sײaUߤAq ]4-&GDV VkD Gut|(,No,|Z!lt H_o5/چ#{}PVK0g%FV ^ D?z Xy4rI멜t0AJ졢UqĂ _S &۫ >=m?4EW[-ΚG™|'Q4}h}(<#d)HMBNΓgWk83n \2C10Z]`4,VLZK$ILfk2g>1V=ү:u`CGa&t n1{H]!/!^ǛErJ|ե5 ]2 *dp(3`2"o{jP6#}3lKgH6cauvqd7^2*,2dH W9ֹXTQX5yv&X&vQb3i<[6oa0:3=o|Ò^!;@_qO+"דh@w>Z7BL+q`\eɮjKsfJU7vTA Dl群IU:? jΪU,&cJ XS8mB1b(k*UwQ*x+jJ6/MUy8ioEc)0"qR q/Jp'n{} ĢZcD2 ^"O4!2xЬ%zۆ>bLu4ǛWm&tW-tM,u =̻ew?1ٮ[pM^?@֒`蝬O? wc# ??Z{hecVX`6bXcXgT6ǭ(@"v:cF0m'hIJPt`>zRҘH\^\ݻ ՁMPxeCf+z"‰ńW{ag" EHP"/-;2܉5[S2xnpa<ĥp|C ̴/'c_ DcS90]O l?wv p%Cu\GQZ3 w6 +N~\A"+ݒcˍō2:['zH gm9Ck\jwa84aXXÇ)Ƕvc)|i#n{;5=|!T:`tY ОYzF6-#4d#u;m`KpP$uɞ?giGK;j>WdƓqWyNeDntan*cZs* b[`&ާ)ļu&m8O8$*5.꺧UxH`x wU_QŲIL4:b> 'k5o~sK]50S<`|r.\G.9f޶lS7ԛ[Fנӻ?8̳r(;G2{CZ&W<:6UO%Z~5 ma?2Ԁ;d J](O7 Arb(߾ ܆3|y%{l:SG gN <C(RĐ*&E! :jS'/iwޑ\yZaH)ݮp0Y@䡞P$ .#A+N^RisT+]'Aɸ |¡ܸp-7%Ja< bm{h痥VmqR3pUB~mQ/ Zw@~Z#3IR5+6( R0H|A?*BEk_՜k~cd7o0OR2Oz%_!`̒zN@W:qn\mYAuUomprͱ笝HV\HE eKdHpx'݊ >VL>*= ͚/1_뿬DBZh3NsoޤsxA.ml9ZtEIrIy/"qrl$)NO켗'w꡿l'}+)+Ɲ5!pR`grtcƥ2D(hsgh, SF"%1)HnHG?z\S,&&4 ԮFshIMkRTԹr t .MpUfD]}?ئPiy8ƿ1wx\v';w3BͷRC^6)U[J$se{?Z}rֱ8枌Qxq5Spi1v!#j ~,R!U3>25_C^SAwy>8rwlVٷ٧ݪ%y *%<WC%#ӤVHׇxK6IY9OX}!`«tFouK[~}TL_![`NT^20P c>Z.Oa-4EfٮK*51t905W0'iKz{ `W¾>{`|jVB(3Ș=@TQ:jHwny=L7iPOdk?G~S6GDXL0,7R8)BvĦ& 0kox+n! &ZŴ. 5=UeDZOGםX#bF'< $1 ɡ3,2L) EE8#ףUDd9V]8){#ކ_X)W~Bխ &P.ޮu_ɨ|6tT>2%xClݎo3o.xۨCf8Q&^eY lp[_je=(ueU"rj`/ҔK38Rܨ.h޿WSط$nws}/0'Td;@7S%`\\};cjrhL|[!2(1KZCa+ ʷ%:$mӂG `hdLǻ _b]T B\/XiF+!crDobgeށ|HiqҿXv;<T Jqx^$&\ euMWji.ֈzcJ?!#F{Uo򠔜iQZx8N`E-hJ=58Ր80_Je^ :D`"9R]nZE}IqHB]"e*ct3n" z#r\"#dA*Gur1`DE.4xL^V?q2͸i:@DV4uiH bBu md JI+\E̖$z-h5yXI:$_ Qp"`^ǁ=hi&/fMoXʎEM<Řuܽd ܨ}1^X(HVD x-6sTuz~" *Ċd(HhlaZ^geTݜ[<fy_$Ӣ(a*e+fӁhL%5ؿ8,8QDn*=k {J_|QDk8ԜrF@a26e{3 4Ų1j =SYhW-'Ȋѷ;^R0^:\80e0 >4x3|nHSsfPdpق;`lu}'eeWEY?f8Vsr;Jg~+L6)YP7%'-A,wћ]vl~H O"X,$뛽M.Hw5@`4*zbM,1Z}1<ӆn4_*O=-8$RKa~+>^}ATf҅P$ s*"&P lG*8cSqז4 -Xкg NqJ3P\O ;N~Qu aO*O;Ecr,HIW>*2Fwݱ+"$U-,E‘šU ٨^!r9Ly1j9b4$".AسheI%LjsQR,7YπY02 z{u7d2 ;]iO&4ff} cq R!u+Vu LPbΟT|Չ #}`0LM"@l,^"ޘ-{f]=hW#D"z~N FYjBc@%y+[q1/vk4NaRːfaA~ٌ=[7ltV%7>`N!,e){xw lJ !'s]^hCi? j |knr/gf_! ֖7m! 6%2P5ÈFi?zt3a$[蹒O.X=~4݁!dHy)[ʚ P=𢩍_֧r)yUc䆿%>XI,ȑ'1x) =}c#а"Y?k!ui V}A^Wջ;%‰dEc +ymŎ7?n_tfIԲtЊl0f@CjZ/Si.ɔOqcjg:DUq*6vW[+P3$>e)7G˚2?eIUQX/.#חy u`M_"Vl4Jt0C,EY+)XD x@ Ey eysaLJ=:*0ECv GJ,-/%U|qpQHR[sU/ =#gF:K xC m=|X) stݫ'X7H/,XճY[6bRG=.0W%!ij3;0| :,œXΐYN*Q+@tW\$eHbcί4=[y˿)H phEQ8It .%kb~ÿiQa{ߟ\|z/ @!%ԜTɉg K EjM vYX;M>7mFbT-e/,J~oKXq~1$1i茋m_V/b9VUI| C5u)jJŵKWVW2:V;N0>Ps]  ccs4f L>;S%AZˀaMY;ՙg.u[sⶥE~uދmѐ AV!{R*̈́n&N'“g tMM6}'8+XF X:^˜@$U BxP$6i>b7_w/z6RSFp6t9ت(m" /G5jb;:ڄk8SA=ThokH/=u".fE-M.=ǃff $2/Gl-RVf6C]uzВ*+aaz\õw,7} = ZјQV9TT@$B1j!@5ԴTw%zd!Km6I[&dձҺJ; %}.m'r-u9ބ 1PLzJ=aB̌z3 Su۔'-qLKDm-?ѫ^naSA؉JY]bn!h9O.vY(diWs(,F90K6!w>zbN賶3p7!^rOr`쑵. "ĠrWag;wls>3Q jR/>#ĐԔ;־[poVsgIRA`͂o],WF ~E5(|=hN(>]w'#U;RN峔Y'd,E Jח41eC~%:k L-8Fn"]Mlȉj\XOT8x<]*{J!^&0 1L_jLaYj3Q'?K=yGD_ FmeРByӖ3r4f;f4][)SJ-(&!r=!~30`SzTp4ڂ?h]΁i0 {Wr>b>F2YW>`*hx+ OeM^ffSsR%`7gWʸwjw>b0N~Yז(g`.P7D?ױ2v|%B8EdGDŽ|#Rs駶sb;aK~^hX! 0^vd&)O <i2F"Uv9Vݩ [iu]O%6!T%Y @4 Q6q2gmMa9|\v{ԩl"5$8t|J7Ah% *G*a3?:l 5SM!tޥA*/V,9^/*tCaev[K=_X{8܄R|eliZ4]^_Pl*z%J\9eW9~uIrlqD!7M/O:/0vXGCc&/dg !Аgj`ޤڜjXTJ*tx<`S0PoƒIA9Mi]l>՟|]bw(r;_Sv8ŠQ !"CdB7I~Ӱ[۾(B%(9!A܀H&zN[⮆ydfgI zCpMݫ6-h> sz"2<ŋ_IrRhftr,X<|<*%{_Cm=ē,4i8O:'-S3t?ox(Ow[HNs(تAܪB;Sŕa8:$L~N=GOx(ܚc׮/GAw Ⱦ 3](]v伖MfitȅSw6e~(P6hrM{X2[88:pa٫v.*7Z^fݠK+IgP)0^%Utt Z/='`Q*!poJ{EB+I} s<$(@ւ Lڑ$2oGo/` <i>5$s^ xpwdBǒM]*f5դf )Y\|gUdJlʏ4F8EC~G${dw)=pg+HjbI30qMCOϡ簙-:PU|8P [ˠ,5=ɡYWn$"ߑr\gS*X60A.`r|F=ֆBJ<mˢ/ڌTKlٳf)+H3q#5$1q-T}r чCTZӦ]qkZ|s*σ(BR716#R N֭3Gd%$& KPH)F~;7=H4}I+6 #>M޼o\9b@ͦyDQ=} )ZCR+r Wh[&rk?רG!ImE-y.[9~t"(5l^Aߌh`x>OAhd)&B<%XO/_&Aڋ'N$Mp>,'5 |~P3Jp!BrůAdJw{a-p۸;@B2>jab4YSq'`(Fݲye(}q>'j3ο'=m6S!#6dkl9lIziKanͥ ltm]w FMlV2-(%v$nAB]j)Y`B עưsL*9WDz.p&ܗS?\[WP%`mC0ࢅO$wfYtǷAOPƨ ~Jw4yaNéW¥Iaf HhKtL\v57C=ky‘8SfY!dA΅yuUAZk Ri!ٴ-Y/Jvxfcb:"P>$Ojs濎#$6*k@s)l$:N=7ar0`֝aH!w֟4TAjO =@+A\4Ln >Q47T܈c Ӻ&D' :^h: NSYn>N(w$5h$#2A*{{6M Ç6/Ae̴U%ՁFס^L(z2ңcRar{uB,n5I5hnnׯ ]0V%(|iM'|*  gsg{@iFNSC`*+OIMgHy]}sN .O5^. .%?ʍ, BiIޮ4O4v^x3CZݷ |`^4o)E"'U]xH ;X@ZSJκV1q-3,ӏ8vIH*G"W@6-tO4[%[\~c$6~Ih/F5i{gV_Q4֣AIt$#EԼDLj|~l`=^ Y5M󩱛Y> 1#ݴY{jxHC4SԄ<KļJ,^?=$=bt«e`B Ŧu8jߜ6ݴʲ`)PꜸ$^4N8~Ym.H{w](D*B*=-~&0d䞧t 6Ru7U(YRՓ_@|HאAEnj-{=u*x ޏ|oXi 4ڃA0ڻmȫncbaQn|6 ~Eų̘R ^u{3Rq1vmP8 Fq幰@よ<@)lؾ3!{6arih}|нjDeoK'>$2bϿt^!ϊvşFS`v":D,\9G\$ .=zm"Fa{=]~:|vxqN)ɷ|STҫaWͫ2, V~HIDwv&@sVu`:=f>>f/alG[^HizQᓺLrcu[K3pzKgJd4¸#n^x:J)%= 8UF8[TnB]PYGzSj7ͫR!Bu5@[&H!p^fg^ѿ~2=qԡ yߣQ w ȷ F潕R<Ϋ?8^cm/ uv?&Դ3Mw[9Ne~f@@$g{]X׬ʔrV: m߄jM.> *ae&3잜(4N=d"pjj6\FHӿ:R=kS-L}nd&lGC+ Gw+/5TiQ\yלȪ@ o+G6'nZkvlo; +Ʒao_Zp60lftdC"ǂ WtHU6\aίy-"%{ t"nAi1+7M<:;ھĠs⼿I!B0[rXۀUi k9s$]UE078bz1 Vіs˕|úOnr ZDkVQoT&9 AiF0hY w !{<aRjĆsg{SοrEP/L 7t5{ 64{$BR4-pqCtKuH-eQ=i("F]z3s/l?@Z ;$=EoR,` O,8|%vyׄĴ] kJOѷP/$/ qKEBt֑:)b{0ϐ%ߕOT*.]PP&᜖tL> * S/I5HڞXfUL!!KUzY'nb$M|d W#,/G-/s d,OG%):ew?i4˳y 0CKD_]EPF`=«жdDJW{q_1}%Mnz+75b}bLxÿrJf#̏ wA ߤ#K_ëAkŸ Ɨ5:(|QcuT%V V6IըP1-خt3@'jۄaJe b[.sLJ9E[z1eɍ*Ը,T .u}d?H*tZSpgz\pa?XJy'[& TN|!G_̮`dn_85ư 3\B;}mv߇" Eȩ,6ڈL?+F]1+t` c YRjw2ldQ&R2/Y ? K@snދB")9VxZʑ̝hl:`'Z"4<#Q"Xx#v!_f'=.WNAJZpf[ ri1ޖ=x ܿQ)V[6lD? Ţ?so.UmY D4PeINdl))c\xY ֊]fә%Dqoarf Kc:0$^ǏJM87)/'}TC<??7X==ba JbĝnH֮3{{v^tn:m437xaȳNFV[˖҈;Ӆ :yRF{֭ȕ"gG񮓮UC7w}dnl_䨿 'iaBA1 f a(BEw1Yԅ#UDPzbs(ce~9(s=voloDn }/>mvR@ Enj 2eR*0vf2!{MT'}+f7`ԩdGaWV{ڞ¬"|`?Vcd+h,u[zrҴ~sX)STuyLl۷590Tfgp 0 P[hHf~ҾE.x \ֻ4.E  .ÍW 3r AC5zk9~jd5gXKʙkS奤oIO;_.@EKz^f DW>? {'x 9l)SF^;zF{DU6G=>?q Y!a@-G%6d1T\b~X~Z@}S$jK4(9 {o)}k6EH|IAsd‡CDR%%iX6S}PŷW㯸rTU6F9Pg p3*&;=ė鼦Y@ҾM./jn* bbBlz\<~ѷSW0yva兖q癦}%V9EZ[ch{@ G,7=!@HiŅn5a3Pͺ8r4,rFʶVq_Fe;;9P$j(]بW 22ONjah5A᡼_zQ .{UbCWRoK^ LH&\&GL h>;LGȌ{]=1$;jg+ldA[ *Z$?ϟywzKQ[RmFR%vB5p}b0,DGq`'i H]w J <;txWM.Sע*Xz+OlѯZ׳}47et9iBXcjFD(BaFrF9wrs}P5pW7![앺]V"$H!8§>>0\y=&ǗW><+߆ 2Ϩ4j!`{@)d]rTi/t`r)I^9h*>}a_g_^oxY]׆gmJC.Ÿd>64R[Зސ,NE!뙷-na疋~?qfssʼ"1w:X[z7:NsI[ $ubGGleݪ1SdP5HJ(muu8i:nKxx)q{(XP]"4_S< ^:MV9(\?~ۣ B3sY]eg׻I*9nfqx% 'j<řccs5p#% 6RP8D"үf^U1oXn|JtwNTv,WyQCӣ6#._cް6KTF-"N *A?ʩl$4vvQtu̵(^LdߊlЋCQOʁ)NYu( 畠Q7m)L 8eHkQKsz NX? M .|2KRb7-.E35t,-]9J!Xq;ٙ# 1 e alX5/sJƓ$mު݈42~ܓt; 9Q`雿bO C]4 qiWkD2 .8ȰJZ6S0C#. A ]V.t.\,ÇzPW~V& N%4a֋Egk."oa6c V~\؁|ohID fލn2tS]$m i%d7fBmAGZ}RݤVL۰E!:T:/8w%:1EWͪlEU=sXgȁ<\2a|_' a>EHtl4ˊVVtH]"Ln 1 KuEpD({vWcnms+]Vjbֳ0r`x/ݜ]y uEf?_A!4 1lbd?Fz]\=.tJ'DE_}x۸?QRQh~C|B<1x[媍"Sg=7X̹yE#sQ-3n&z ~/ {g 'ѽA"%"=7QQB|~bJoz:~J $`i2MJ0\ꨧo,xJD[cSX-kiW1ғ 2]O%n4.y*=ܮeXꥪ E5O^~4e%aΣ8EJpݤϊ_5J%x|A"h"P~^Az9l7x59aMߜ_) 1+_wIҐa|s׍`8R۷SR*[׆@k:9GU=Mr~rG`u9մ)#aS\7GT;UM6De ro]^tLxep7\G^)t_Of0xEW=Æ,hswFN2z9 ne/ywAΕ0-:v` D`B% N`426Ԝ9[N~z{Wx9P쵾>"=jt,滦]+kȂi [wRrbm/lY^:(Dg]+W8EP:7gb=-}Iwq#^bc`bOEKRnh*o匲fW\h"wU5)A(a$֌8vؕBO9ţf}0:Qh\G.qs"K $" hM=3h,hȴW;A$9B8O؅ޔ`h?jkw(FtnBCɾiu9- hAPcB6[ i ֢>%Xz80u^]zV'0{*%iY^/\K!k]SFRE]wݫKBzvIsԑI]YxFOwݛJ7f/^5U:0 pHYF Ո.AWO"SAσ7A--B6xu_r>s.d;S#\mW靬/s8UǢd_֩wٲj ʧ[C@\Ưa5GXYD c>B,YpbX$*IX9ˢxh`#s!ȑI:F5BGb{qKd&ֺ<c'ԹH9Nh+Uu;!5ijc >O-B|3mbIK?X@;oJSBPZ$3mqSW7XԭɝtLRdd8(Tekd=ܒH9Pb[Ԑ?/KDԮe"7}.2M_:_zC:uχciryX3W?]O{Fmh*>ڹ&SбSNͰU^ʋhl6듯9kMcلN4d^~WD?N꽃}uG˱/Io(0\ 55(S8{>bT΢j͏K-0Cnӽzi[VQbܹBld>M%v/?zMi\)6Uoԓn&B?O+0F^:씩lMo2L᤿сύgUW k$+&?1~\\dY.'y/M']^F^ =qlmkn;#:rb=TuOTX#>JU׏>arjlh)D򦇝b1Igb/v6C*lo&}XJ/p}yE[ܴ >|kڤE#zQNjjnY@Z-_R'X '<ZEW#"Nv/Yn^8_Z$ּ2 a0{^HfM)Y27xK >7-4vE0(~cIύcqJ P-MQX>%ElXcMAnSCB2IS,P/ ^G׾bV)My!'X5Hl?k%O$GP)E9$L eƯH`hPg |v2AcZ Qp,xSM,ZnsKt8ӭngNJr]jDD!!cc(+ˍ*l,o-j/.F͐=ZpK瓆}MOF % tKf1b " +# <2gneқŨa- k^$RKO[3v⺝ӉA D%0`i*Rȿ؊7F &ʝ Ƶ k+I)h4nͭhv[>hG1f'^ <8>ݦȅ=p6Zhƾ+TO?_]=#`UP/70bg&AHkn5/y<ewoQP拲}(0|d@ %SwC;曪a)OyHd,a3.݁BdÝ0U뇪U{(z8]ǣjua([(ڱ(?ec7΃3[l>S^dtMݲ 4'qBP#VC}A7 ;鎷}Z< gM*RS@L焄?b )#~%4d;$~ m(w~K 7I9q3!g j˫"ð{O?L("{m*8Fn& ?ŘW < H&"@Du0č056Y)wwtu>H`}I3hlRF3&},9sc[ 󱉍Aۥ+"ؖw/dvd0F 5> _Y6"ǗZӮ*?d`xpzmw0|oC10ywɉWQ"t> hO^tǘP Q{bOzibikq̟W X#ý}}l, 2&>TBw }ÕQ[}u1=}?U+|GZ5,tpH!%pVwi ΀wSoⴾmDG;!e5{CGFF"7|ͨNM|eS[ T "0,J`F5#3]ypU dWXS; 3 ϤP[S#;cUeC\U2p*uюE >gнOOy#3噡,(Xf˸_Nyƭr*N -qhv&6P Lfxv kq![Cv!-'kcctm:(T3.YPɭ0C,3v-Kh`MVj 񷍔 ~^fI;)u]rD,+Eod3܁Ǘ:"ȫҒM~Ǯf63T=c](Wf܂ 2;xuCwXO̲Λ6uJ}7}!0.z%/C١Fyc%S2٫MKj k?֝7o1]wkmz)(\wiILv3c'ZIvGg\XTI>l"RV_=tCSXnsP ~OL)+ w@ih"rK4\NsޚFFוgYɍ2d?ۡ>9oua!^ W'3dI\{*#^6 gkƸ?KH)xXu£e'뙂F٠ĎK<5_ //H1)*:]3`%L1wA9+LZBcZK'=r+^֫ǖJCxCy%%m&r3/"-n|_te`2->l΄҂J;2;DN?ޟWRajK\ף6/M>}&ꘄCՖ Iˉ4G|4۫h%Z+Lς! _B:jgM#˺H%]Op: f'E<>R$T U e=޾5B #dc¡zP.ela<L*KjWTT‹/{x{LI U'Y N"-L% IgТ8Շ杁!/}4:Bjah0 _ףi==MWT|uuqm^<%q0J7h.ztl csH f%9^0!]ӈw1SVɵGG?s#\h h U̦>Dg +;,.cx#} e~\J=L@`ևjlQ [ƬZ^sz2RHrky԰E>՘^so`_f -Ekܓ>d0Ҧq!bH@\|,jLx tR;Rd_TZ1i+?!<6і, t)S{5>)uPE 3_@ ~qY"9 dN!q]c2I0UC,^BE0ͱ-.!7K_^ 2l'2d ^kVh%.~ oS#Fvu|h7A?CDacPt3 @iI'J!20耴:έM{)isL>%h/C$7_wRK"݉7(q{w!JKWY봿5`~0QloSOI`ү(~߹Ia]67) o;p\t`;>f#o\NC8e.wb]a áw߱BH} l&Բ1h{AT{ U7nN#Cw0SdUt_\iZt;`~Rv FR7ͩ6êa4ػ;EQzgzÕ$8rzN?} Ԛ[M8FiJb)>(C!>u0z-$yl-I }F K6̿xn>8۪CHɈΘ{Z7(ƹOsCW~qEĈǼ9$0.5޸/,<@ p YO%}}CG"aRX~_a a2~`{U$F+H xMz x(n *yEzN?VWgSEfɅK qOU4C|zbjhب`]|Qi*Ӟ@TN5- X(섦ۃ:Qn(m or*umU%X85ЦxAzG)oEl!g; 0ȅ{I% = Jkݰ"QhcsN#f*C^ɑC~rG"^[AU[+_:e2zQu9YxU#hdʥ DF!no)VKt$#}eG .xmmm ?ͨ`搆6ui͐E&̚KcxFsA<å2>E.ڑO0rA@4! 7 C,::TWs }p ^Rm[Ai-3 Iq-v0?s_:VmFQakIʼn ,Dhc۱ *t+=7y⧠PD;ף^-7lartzќ:&DyTbmEP'H:ov>@>OYfJM*?~m{F oO;CBѕvRy~D=ZVaXVxK=YDw vv v "@Q(џk>(u䢗vdk+(=^D9Jd^LVޢÉ9!h3kNL٢3 tk]tU{O/ WQ]/VeOPorV+bVu̜K\jzLl^?'i [kbލ/yRWE4fƾ`S UI9RGƘQ^9BwvjŁ>،^`Q"Ϗp yd=X:7"PO׀J.ӓ9kVU;-]@ZjВ]Sd)&~*0jOR"ud3cp04rʌMP((8 -tdס͜a$; g´C3Ȇ,/b{q6!/~IB]Q3AWӽiKu{C,T#1c_poviI +ɋ}pqmJ::>;t~d'd螏 |R#߯XjyGEH7ǹ!@ I3/F+gJ>Vmε{g-HC:T <3f0|뢑O + +iTÆ;rQSGw|') jf%<]Ɏp sέSb.aE p=\Άvʱ; 1N t諏E0d4gKnQཝT]_KVoh N@YCsTw.wu ۤzNL=E~']b*l`="K>rC˪? YS&$A9|)RWɗB*( |IU=2KFgi¶X!Jbr+Q~!vlSIn~Xu HcaY $MyGkcbă[ ,: zh.t3\Us]ݻ)_xw6+$\qWtƣ*>(oKulغ@4jb]]TȽTsR 1M#I(rϒv#$&{><>"lL0al]SRnd <%SLGA=z\ʤW;[}gWT;+ z^{5VT{uiTԷPv*l<49`Fq.S-m`p#"Cr \\>%8cqs{[˞5MRI(6wR]9&s NN+4a_I#!`>FȆw=s?3H0rZLhۘͰc{^g.f̆:`@)`s0K:j{ 0TJ0IϩhObEm*rf:pY%glx)(' E$"w@BRY S4@?䇉IN"zX7 &RxKE2%G h8 _\sE Btk)q.>R.Z`#Wl[x!@ďzKo[6CH1A80߯- /`[+ NsXBTN>!`.p$Oռaw8Èd`1EKUox5|Ҋ Jk`WKSԲH*s,Ua]MbhA\1hZw }\%< _`f"E6C:=)v[m5%Zx3/cC Nb$Qٟ^v)e$5/TfHLO3z9a# 87.׆W:7YຼqLf jqIEz0e&UM%BLD]0MVoyZ_آH ޢht ׏R&1lE)@NQM?E݅ǓoU#$ߛo *9[zɋL$2$gjYj8ƾ}dpR=[ Hs͡A"tƚ&mND}( z}[W.Ro.˜FW bk=n)BR ;L:BkQ'~Jgu 8n ?d1?[J<*HXE<~:>xBwJ/3 ^rzpNRoj"ng6.5КӨz2%?%&i8($Y7kLOeo{ QD,ia9ꀌ5Tq_doa,okz;< x+`C3ܛ–e4+VN+Gm\z`E٬]] JQp6'Pʭ|Ds/iM}5Di&#Q?>ИK -Ho' ֡4OfV4 _.9}QJ- -#X8\ιtCz)+Qcuxmn|EPM$een3V&vj(5b1,(P `A٫D%H|V{\7"*RM'օ4PSwmL3zP`^T~-|6?o$؍~hȓeԌz_+f UJl _ZaR. [p NqxMv8yL#z+='Ÿ>C>$jS}iU|I5h.cdF&>JקL؟Z3i r#[:mlrzr1a0E +uyA(˔;A*X[ Wr('-bT̑$UyӋwZ-LH#+OqbygJoˏPB:#Cy3W2 u{HdQxpC`cmץ֝33+u$'Em$o,knC>z'4NfQ判欌n E-t/#h?3%Օxp"Q+~cCB.3tyGb<}&(~t ἕi9jN\b]_ښ *sD/~cRc>H(Z̮cG܇@qWb>tg#d=.:K5w7{>׸| (U`{krsya],Jz!AN%J 5j|O7Qkȧ$`?Z :KrWtF,ORJ5$Vt|p6';9 ^t.EҘ} vZꜛsl(b0\Ğ!Icoe9/XCY{l7=v=^\XDZkfn $Fc0i }N؄SCgU8;TT|&? ^1〩AE,0$[;Yt%]FҔo p!.ߔeHnlpI2&8{V(M9jU~P%㋶b~0ՇƇ>l kSg8>`i[ #J6R$v MOjVyޙ/Kd4BNkIȤ۰kbC$UUÕ˅]'FٮAE;hyYKLL`ȠXRjfl X cCa]䤤Ⱦ$W <fNjPYhPTsQ ^qY\m7>3# EVB7MnocZAОVƙK&h8-w_]UC#2pZ|!޻;n{;clRN5R(aD[I/E[aDg:+ 9F7~9υV~s\LD@0a&y6!3,lt–'F4nםrΕ)CQ=X$1Yfr !n~s7O_6uwwf`#Y"H;|̆,ެr=p|"w e)Rm[aGh(^,+E\ߡx.!ٚ[ "m `=6; Z`+$1V@nSt);+),?F h؛tlNm'-BhJr8FUX7da6ܔY+8gGxjN_K3^;f3b7cT+!O#1hI:9z"E9Ҝ-gJd9G)ư]иDpx >1{*cH ysDVUiRye,!]1s4g-Ә{Oqi]f8O#k<@1t[ĩƤ鲉v檮%y+L\Ȱ=gn.-9n7H4{NhI6k'~+ #Дl6oB,uQ D;ӕ.y:@sz _Dsx9z* ,:q­+5}NOX:d" 287uO @u6-\gIQ\Wt< o[ZF-t$0蠧7cCP*ՅY+,[@ne^:K!,.|< nr ʑx];#f@BeBcDH1o|M#zs'3a扵}[2VOi˗3]Qi#2At29}g|'1RώrFx4Rr+HT&q;xa^Da ya398  ^AG'-tL\2>xi-{@0>_`YFt#.b\jT¤4V#mhVZ#/wTbOAGkdx208@vB+6R+q{ŶVCghN"9`8:Ľ3Y>gji}' G"cTTD oo@F˜ zcPժW[G.m (]RsQ8')@MZLY7Rr-Z`b@x1dG n2^4ֆ1XRbY>!a~GiSQbV}(o2`S6J®y\gړ4C l0ZJR$ŦWr,?;ruX@e9̦8 @6Ǭ;J ޫ\՝XW(Ŵ5ɝYpEyG@;[K9X\vdKzN9-mTkǢ9Ht+r^A̽4%c H eӐA# @OTGEi(Sx&ûK+Of!Q%&1H"`X9W* 5-^TOkq6@1C/Am,&lJ† "H[`19ͺ^Ťj0f\8KTـòR0&+ iP5UJFwp$ShDʏՙ3nMclE53r:k{oXY^vޠUkV xBMd75cXXxN D>/&U/r 4Rja蛹}X)]m m%%\V3 nrػLEik-; ers-euȇB\Nbm~-uA~Y XT^ULh?'5<8 Y=|!P$il,Fc,-593HO~m0{`6sA#Xw,34H=e㠃_a Lѐ*¬Av7~a,͔2sd{BD  OUNfGz~\ԐQYuPδ-g۹V38\Q0G~މ.!|!yS$v(ƌU&=.+OVjgc|dWF N1zX0a! <"[|lWUYSľن*WLۆ(FNY#_p#kgBiJ4`?YUeɗjoqb$+Ye{|0{ng!;h[4׳HGf~(lI{0[:Q" nC,IHUXJ6jݗr\ h2?oȿ~|c}ܡ:!w[o@Qյ1a@p`*  |q~/%${J;< 48@<\&/d':WC< :\+;;޴4^,'9qF)-n}ׅĕؘ;3  Kٻ*n3wZ3۞;kFEϹF ! HYIC8fB([ћ?xrXWzҤ,M?I &\G>CzH]t?f!Nhu*SDŽȔ$W]72ē[BIجmM~ }/X0cYMm@>U}[VS-Ihۺ omRBL}+5JL}[}Z##_b8k=fkam<8Luc3"24%_7ɺ)UʭZqX3CѲ1r'%9DŽ^ נ]Y?rDXMIwe Ae_aIJ\#Wz4u)[PQ&sQ*oRiz׍Xrڪuu~ `.ڇ{Np 7ׅ'CZ)HXnP*<:00h>V=ZPoUyY<56& }d|Qk>&ho^2(6s۹C*YSa2 @ (O4]yнvZUk– |tr }Ugyd<]Oc :gGwk~ [9_z/lauԟF? Y1@qQ[r)/slLg+rhg(B8/飭 iabY] Pͳz Yi}`FAvƪd8`yQ-W}36F![D1faDwek1yS[8z*Ӌc\@J3PAISϷDxEA#R懺/4z}ؾ`x%7m-NGMz^IHd 9=p Du`o94ȇ W8"f 伴I 0vXKTg_\KKNo%OA^+]bk@e y4bW,+xh-ks!3]{,Ϧ{ёN#rPNa&PJUhyY鰯x7kFUm<\njH}ծy%B:r@/RWR_g}o"da{`;Z؁d Bz)B_*kEorlq UĬfu8?eQi!8|'Kg[S},((y+S9a fv *>Zl7GAY:F_JlÉ.krL|b #u̚\q2NIh$q ?$j@+8 "lq LR*U$UB (v`CAuaPVKeA2DVHlN.x j@t^RTB779Jh:>CևIjEd0HAkqI¼AKuK )Œ-74%>_ETlgk()mBQ}u4잒<9Bfws7Kz9>7[t2Ü8VuA3Y.8V|=u.o {Q^zE i__efu|doZB{v#Ck#uLsF@Xھӛ*&U} SvuXǑ?ca-\|WVZlc?z.d= .$iE7uS!6Fhƒ XyHk_S^#Q[C<3xsh6r5Os0~@} SlDKPLdpv%זKI')o*<2+x-+ј3ERqO*mL+ lrze%N:R l̈Ej"_9&ݛ_i`#H>Lp F:ͫ`Zr{;gBSqM\H=FAARU_є-X;86\m Uv()hL/τh:Pj^5Z5Sj:j_hXVɜMLb@sJLUxTنEIM(\/\P8th+^? JH|gAlN2 {^J~֔'q _XZ6 rJEPmD-k@ctgVd2P!O%>/ԍc^Гج[P^ 9a ~,3Aٺfe[d^Aqh;&qgKb@t$׸id$=B5KZ݅>jhWO0Bx m µҏ'H8"޴)y 16, ?pH p6TZTڠe6ŪV#.OvmHb)|h&9:lvCÓ%ݿgٮOEU\l} <*K@zFXNڜRn] >5ݒL:zʴ=g 7>F/+jnw*/ 4Xfl^ܽ5AUd^4w5M9Am72Lld!uwJ B鋇su .d|yoi/ph\II>?cp8xnYOz{V,5W_.ƬyjDDC|rTSFVa57#sZuS H^/NyDp) h[(q)6%ݻLs8=T!Y? |?7\F;,cX{,7e5}'P md J-'Z=0GtP\k|K/\LċSХ^=HZiM,HEz%]2& X4A #*{t6&Mm&s!g J1;Y UZY=4Ze$>r, V7l2&WUz!ʟSGJvA"E7#Onbu.M@(&U闲=\Śb&:l\oBX폌Hf@~"R ͚H/yـş60 ~*my!^P[J?VBغ599?cǩ?\H/ :TM<\v]P)ZG;]4ӗV-GJoĸ[|M->7)#: ԍҖ~/HƁuٞ#?$@ZMbimK 'Ŝ-H0h^&{B!M 9Fe /ފv@{rR]i߱k;D<А2M^T%) @jc#hq^@W<#\!\wLVF># ӶP^004ps ) ]+p?p_ηoohT"=xTeI;X]LWO-;J.Bb26fCqF=)DN( 3uѺa[~=(G NB&4Rb2QA:Ȗ@{嵘maN V[ll?AQTX1\VLy݆uSxӬW'-ƕIXt䪩53{|3Aww~~%:PDՕdŵ9$(-AKse:5 eﲾ?Aܜ /;mNmImH:avRJej'[)08n&t9a EơklP)N ]aӮw^T8Lj(~x6D]C4uudH>BUkv(׹jFSio*G%)TSVa_1_#09xj6MVNr&v"2_e}M%V0ܶ,,S}.V\- ShB0dA|gsBC)b2ev "צ=N?Lٷk13\/:Íen~4fz. Kg8d &TЊN Z4Ht BKzjLh$pدψ`^lNUJwL@oqTyvlh=]Ŭ7 25!;HÃ;Pmг#WtT2wgxP?FZ2mƤ2oɹn)n"H? X~Z v%$<gEnY 2&c r.OvtSA7}K9&G-4m*TR l6Z͊@d1X2Eh;[P܍U !;U65e9(%Tzfz@ټ0 gˑf[t>ѩ=4>#K{L1lCVԐ@VBg)!]~~#9ci\@p`oSX0%J%"efz~i1+%Fm}RJޖuB}T]ֹ nDA |˧d}&J*𵰠4)H%sQLK .]p܊9+b!Hkv6ˠ*F g yУ=`Ղ $[[l<n '{^7}Vo )+r(B6m 0TO(AKH^lԮbV^B0$FANCJv#$2ÖwRd'.'[?7A<uv·!?wȻuio ]y푀Ȼ?gEk+&F(\i!7Tyh'ݿg#mu[6읰P 6.(%=-cf?o5Ҽ*"ڐfmqs-] \dfU%Jsn*W:TsL,VZzdRAȲNfGZLi l7b>l0V[һ`;idSqrSݟJ40PfgXz LJ_R)?o.JLniL8C 0RE U41Nn xŹ_+'t۟O2@IY zUVV|k3MN3ܬ>W%1kEf}_up] hdztLa^Z*s!gJ-W ax4#=ws;%½T$z8E/x毐Dp2?NS2tSݺ H0괐7Ē[^6Uf\,1ff5E ;?/*x֡%̨CR] =(S|mXbuӭ*ꗬ `#HpCx>5Arg+H "\x&αSxX6"a7NDGQIt*Ay{Ӿ=Gn1W?Qj@lU|ºٽRqBSٞo9{dGs%@y\.?Y^pۊCϪ.=ʛappj)H%ȦH8;[p~VuVX >sC~ŋXqm@Y d3{13 CEVtb!BWD}F^BU*^b ?ʀC >]'AvUpʤE(&;L s۽'KT-:Q!W$K(.vǁ?~etc*>DyU Ļ|-Qۣc^H@[k" @9]jЭdQc& C5duvztиjE)7߭/¡=mtYduf}!vHXQA$unb.pG}DSJCd@=H膹 JJ_(qL@1wL}j ''"" !R]CF{5:,P~Ci˽n+"΀\۲=+Ը-bx%ʇ(Iԣ?^A ƗbPjxq]jP&ڟ)pr:ͻ^ [zppդ1bCRYbf;!_xN㏷GF?> x )cR>f]ibL!X]Ma4-@p}SZ83.*tIք0{~?Q * 'j]`EMY\A pּQSk:nxsxgtb:-%"N7oK&WbD ^ eslM @(kj |f,Pcn*BUʈrZS 8XTmz`sRЂ'B`iڿf hw'YZiPÄv-&$!T"ƫٱ0fT`IԴXW* }8BF]i Z@'XmL" {Yd-}9x'S=tGJ 3 mD>WFWb4s'Z Ϲ!0,DsV9hB:IZٮ|b=`-4- mw> V(c -Hd 8/]t"ݒKLZD ?گсw; נ^Ò.*lB@!emBAb6M `$K HOHqfUUf Q3B=q{xnk dXHzTf8ɛK>GMŨA^D'V~dz 䡡:'C?P-&яG]Q%0RS`x_%u'Pg׵V[SƂ/OnTK(`PD/.ozVdD3S,M &]/E1|l +VsmSk>=wP#Oi[=-]"dؘoWeHp=)Dyd$v.QVaς^Hx=_RkJ0o9T /&dyxƇi3ՆI>7+sZuK[{dW,Cz2*Z#?vaZgtZwȿ>ETpNؤ.huޱ*:F+V/*O;1!gD^.bD)sdBDw±".hy/"4ucfa\ȣzr3.w$ bF*溜R6;φ/e` ҂>S.)=LƗx[G741en%QM+&YH;dF&ES$nh+ruA E1qYW.3B`ezܣ_cn[&&VU =5cOד (8Lc'Z+ј.L)lB=}g w_IBBj2ͥ B׿*_~.oc66(=me|*--70[UD2'3;,@k?';&]A{$9&gN\ʹJ"@ sPSpѠ_{-u\c>#F:l.~uN,,n B"weal FAbcWF@%<%SU{#qջx=eA0K2++9FS.@(@+χO?D?]-\obtºƊa\Mbs/MmoIēI I*K&/[R, UpxdLH%%M9-:kPK%F:=fLoO'dϽ5Q#" >hNSY@GLo;9,A!]VeEޘ7ar\e 2#k~]q:&ƴv2]-V JN-;uW}C;)#LFVN}].zfXЗR \(|9|৏hJ9s2շhEI&1N;%GG%?rƛV]^AbP.yX6C?tˎ Po¿fL7r!jr?}M})G,m,3e+D$ѻ{ Yx 3d^C5r4"&!s]1LR/$UZO#3 :2??"Je:1H,}FtNlųE&͝=وA(+,ګE3qB/Ę\ aPZ_vUf:g׿|1߬üMmV):QKпߐpYn+OP 0רR?UC,wl\`&^F0bcqPr/? 2d!j$$R޸SI+n4VD=RyJNKB ___#D}^7;iUY Sfjs:)?1XaaО2 6 uF;ڈ 1!lu22)  Մt2z;[՝QFOjQ6T/x513[ s2Go@'ĭ]{R(WgVlŵ[҆_\ĸ)@Sfh J)~Y-N;Ƶgɫ`Q)B"?ro@ԍ@Cv_"QߨuHє%0 3~z?^~91󭊓R(]-c- c:Yc@jP|{J(5ޓk TmSnU¥Y_k[GQfIUSz}`%Ɉ 2'9ʰH㴗׈uْϼE؞-u~_{~n ~N3]kWpfRĄ'2~k_CQkQ:K'~ &KGEq %{{1`|[ j?IjyTEcO + @!^"/]j,)!*'oRQa tG8a*6ƪC}WxmOWwqOˆPκs"-]]sqg6;A@ liu7>ʼn.@|ŀp;b2Zbk"hNslE(}ߚbet4`>s 17S!!vhZ?dfGzpLtDu;"ũn dwe5kopn` ^GV޽ܓ* е\<,'5 DE2i ƞv>Vt rRp'7"}`{O,MIZqw}(ɞBf@Kr%֣hކۃz\^2~" !+ӕǺWC ε.R},zd&|j 2<42.̮@Y@AD<װq/?GԱaYɊı`*sua^!3#K7KRVŵ[21+$>uwd ҷEX (Vt]06u)9}l0 nSmI~%PWO4a N^9enOnʵn5jPJ+ ސ1Vg^|z}: R5vn|NmfSYrhPǁJO#aAe񒄖Vj' ыʹWMx|BȰCC)%Hcu; nSfb潺7t-0~qjjm2/@ YD߹jl"_Dѥ5#D3nVRy+(Kgq∴Z^;^ Eˁ/LN>&BT*-=G/~]dQi$x6CħLd}m{KC+rPDN.ъxUmڈJ!OjD;o r!ܥHs4`5-~",b' {-Ĵњ aNG!&~ 35^^ZH&?|l 鎈PKu|'y@\5% 5 zbzrOz7H9+}9X;(Аg qQo[˄ 0[ԄcM #R)>9%F <-eQk9U%24'#S@i{eq-x ehK_[_/vaFo%X񧮍&aK@GݞWiavuvV>˸_5^joM|0nvƲ5Raڇ D~Tzs1 !Z䍦i($- ڸe0vygΈbVhg4jn;\t ^#7(°%UIr'rykk2R})ݩקtzg0Syr\A(5 B,`t}>r)VŏH eIaTuN(bO؟c Ov~ϰ߬);Ʀ8"޿- o*9鸹25AZh7;6P캎׀Tڻ4j~PV 4ʰ^tAKcV<n?z;OǠ;&z J*2ֿ2}i⾬@Л" #q?qdN>BOY1p1 nEⵍV@`]w U4 FfD[k L۠CL l._u1W(ilP#|?B$45ƀH+ ݩ4EqH'Py: U͈ԵM}ų# \.uP]@\+P' .(J~ގVR YͰ$:ȵǃ&%J |h)_0H)B0'R\лh'yn`|BN7o^ґGد+s?vC/=ub"{u_`}xѳ/Etogevck R]fʰHKG<0DCTgRJfw2ZfW]P 2Pbwqu> THb Jz2pҺuf]8/n M2{vpL8)V4Wej}E^*<ޝgl0(a]j O[͌_It~cxY#HN}ƞO(?$B226$F/ bdv<bI0~fsH V+*oM<$>(NJ<6 Eޙ̀J{0p}iR[xv_z RӞ ?NĘf]bU$I"]S}$IHb};Ez`G؍ϛ{M^PIXT('w=f<@u&i.J|(/Pm.]ubhTvs;Nw0wQ=\5vJb :}YBRFQg%Q*|9J&¥ $Uc/j#.6 >i <41wr"i,Wh Lۈ\XDDEh#}.da]-4QI5m&Dx1 [IMczOmWgwd|\R}9R~k>&LQ&fc!j.%XI),`o;&,M\{uTd[62tm^763{xbΞOωtb`Z_jGP:!iMՁ"H8VaԵ7mWk"kj_("wYXhk4ȮV'.c+bbonv'ƻYayz9‹XGD E<(n'kWfdX;YGH/.| #B\>6<]yo_B|0(,.!/ 'RYҬyu8bȪ\l ڸRq=!{y=B%4SGD@P˰\5P Y-(CH$5kF,(:$``53o5GɊxH*&X2c S? \LA#C_2nTSħ,vtIOan6'zGAܚAEDt|[t?o5\m|絪N'F9;4^I̴~W|wN_ \+jSKyO.ߡS/6؀Oh4W~RS/ Y G/6zm90w@>iڝèoD oFEc,cTZ~A=~!DM}~ז|s%I;H$wǎ5IJnG6B^ dLUtXlVf-1mn:ДX@ Q|" PP\!F2.;RQL|·M_L# 4ЁC H^ 4 q<,oW5ԉMYJTc!(uWfdH})N*^p0#Y"il_z0h.{Ȏ/[iD(s"T͵C< ̳94ڶ{([حZwayҺkmFtPNx{/lua bq6@a Z'-u:=%i]{+ɧ8S`T&(gY+j UN؝[0S$wvH-{|8#OgP^PU?U)o_ =5w۸gHٟ eWD5(n>Hj\IzKzƒԻOn…1 *NiB42A}*>&Sxܣ7 6D/xveqD7qQGv3N4~sp\ӱl <y Pox7áqWS! BDc! @(`Pgp'jNS].vO9Uߓ~BآeOz6Ld9}a *TEP,F\BpJva-6JA["}뛨n7K F'LT ~*EWN?\I_Kuk² ΋'"@c=^*"Boadv U5Mj7EXfY7`)OD:V֮atE%x-ٞ1/Ӫtw0bc/V|1{1D1Z7Y韉+'/ףr3n I>TEMUh["S)_K2@e_VШ_ ц FnIM4boD_jф~!.$3ɓ 2O_-́wxK:oLL kⲸ56M/PD~̎F^.tvhl|žC^U9Ad6wX\g屛UDyo'>G9ۏBEo~|d 3hR^%i50S#ɟSEڇ%Vn06eP!;򛑣Xf˘JѤ,hkŀ!E]g>}P@ɜ7u{25 `,k8h^,06#c4,; WtA6r}V9BiKWwWe[CYJ2z(&钂}ZX8 ٯ:tc x0{@dQkʣ Ny:E29E,K]Xi:'&SG~xm]O\܊5$1\ֆw 5.6 +2\Ю'nlj{aJ>.$ew#8d@|hr6[k;B/M<-QˉcH3>@6_ $_c-AFBqc}P^f4ް=ȄUx1ܶVg5FI J5ej^~(H]&Հ|Ap܌DthZ2r(W΃Fl2L}.*O/xcL?_DUzTGS.T(w4 `l2%S/&ནhR۟c,YV^lf85⛡kM--=3iqPL"{ (]53xHvW`f%xDjEwRhe 7웏KBaӉ hAaTr1cčR',i*^N4.THfv\x; |RُX0,2h j>e{al ɍI^Bgu?X6Y2ʾf(qTFr?Qz;T<Ƶ.OTBAg;1Q{i(g='w2 {Omhg%7EЖس4xw<ֆ#AG5#>I-tgmTƺ[eȺߧTq5W6*hHٟqP=MUgT3xAUJH: KgߏG %CB5TSs.V6]~7'$VQO"Vz ha>BU_  \IHV.u O׉)q!?3{+t|V߅S9MJ* '7{u#ww<31_FT ,@&[ЍhS$ګc' r#8ѭ? ~u_h:e һ7c W9. pݑ950Z[F>C% lR%*"2p";)k|;%SOA25'o||MݎI$0jȝ: JWQ`BzK"^xo Ȳˣ-&_48f4>Rf1dl-չPCTϲOMU^gBh΅1K:} N4ValM#-F\gl8yIV9FNcW2.H'y;ȑX5*wkS<@hD('4Ӈs{g=nX@W@˭rF)5vC&Gߥ#iMe<e N2K+!\`k1'^ɬmaNYq'n"$Mp+y[k!}.OeMrY2ꓪf^ҾGgTvf1WDG ~@"Q(ZS:U|Lw0i #Iba$徆HA-paOuBFjRɟBK{] ό pÑ= rW: KmGCҫF@[Ђg5UiF\I!Z[b3E+g$|dxcjyn5Idm61`,!En 䙈]ϐUa=[CZHTW6mJ!Qf`Жj̶ǭ^-sS[MUbK*~c|z@76JIΖLĥb.&x}ص :zI 0\1xS!'k|g|C>*g@F[7{xMVi\"Lj4zf7[בLð5GEu6M8{.4[&)dsWNI87 j eĮɕ(03^Dxq#pFb~Ux 睷*z۞03Nǟb093c:?9˛!e<Ɵ&H]cZIαqЧ=e 6\aiJqRڇP2>qN2hB@bc\4v(f.63a^>Fe.¿zPy dW;AF3J]&Y3:aQ.Gj'ǡ!3]HX] R$~>I1qFɶ+ `</ )(>g +TK 1"?riZ3t?fODnPq/^|O/es[ivՏP)Ph:Ք,-l 9q[u&TsI-M-ztUi/0WA&F4/ʨ1[#zNjРod4 RjCN+MĢGG *FK@ě"hBD?*&τ-/ONaTrG&Y)E &!Hn*?dSit2oIw U{vOF9^=~D4'<.w#xMTҔLL0&M^&AH{i|ʜN]Ƿvn:p'tds^FHZrsٶGJ#f9LYG\~ќkwVqnOW$]81L+ K89'6CugHk%LmCFQ-FȺv.uJ qgWR< Dg9<5>L\ԒRɧ>lg7U;̀N(Wi,Fd6&*Uϫ/Izbpc+֗2Q饭+yR@cyHE=SpD@u1Q4.&Aๆ~X*L>7ݓ #;Wdl}(5c@%#r \CIVFyx@H27tHsiˣd1<^!Kȡٸvml_ D.ec$MQ>4bkE;m,iN3!;i(wsMZ`Fy.s79M )㨰> XdV"hGEڇtx9@Ds^?%Q\C(tqyS 6.)bp\1뭑˃Ye/'"V)N+Bi*KI5%X,F1'#)2 n5w}D"e/ ~A3s7QYK}SI'OW R |G6&S-ꎝ]GAp<ʑ'-(l8TǙMFBA4]"j&Hpy\=x>l8* NI;qs&cn`u_oQVѴ~ /#_"c)BSg_70-0]E~~ D iS2 /9ֳ3Nl'܄5HeD;GFp$p;z@y ଇ@_iwF]T/iIHDnȥ'vv 9\si?h^6;*[Nx z,&>5*KSE?Zq/油HQuB1b]TWTQI1=l'y_u0=&ZRݲz$Lp1D !fc(J@0<4~$5{Z?amŚ`S9P 6W`071c3*~[3K Z18 W7DX=aEh?~,@ʒ_fN$Phf!q^ikmθc2C\H\g3:R]r0HO \vf*HOQ& vط?|LÉˬk'FƗ 0/)y>J%K)\z5pJӰv6OΡg+ٿV7uپݩF{3:;z7s7CmyD7ζK%Hdm֒*hH ؑfS݉Bd!2j{&> !/L%PWG?7ϥibCy "{)Uee܉4<t s4`"֙lwcye#lBlLEn(=_0 <y(C   3GL9Nu7u4^π^q$[Gn0!R{m}H8Mx8xXaUWhZY\V&=*,QC+ѭnA3mNZ- #S2^YoBim)b*ҷsI1(נcO^;*א Ab,Hg;T)/-)1p|<ʛfٶ~3Qh5X".5 4l"ANǝLϻ%g-~+bdL|8(ZM:rqC}!1EDx#jE^m`%wF @AUݾC%8u$ol @5"fw`Fd8 ߴA $%-5Jc-GP2z7^7D&״m@`DjR۔lͭ)!n60VuvDwU * EOj6OUn 0r߆?>{UV:&7כqT;wwDH.SfhnBTNw Lҳ5Цh)KکN t˽Uڳ QQ몞"[D_ n܊Z9:eP,g#iz?:1"t w%!պ`w/kL'V,oRziM  %Ė@9P\!#0JQgB9,b@~:XWdarLwQWma NqcH)؀'[Ӓn{VQdԌ<8(9{YRִsW<ɏъb:~gE0Zx VLk z.1&0F\;ˮ3N" ~gv?/!Z Y?iiH!.t.A<ґPx7pPYbH9ݻi9@R܍H&1e0 D ho/A+5puzٴj1ҫ`D@wAw05{zoXgAㅷk:0Zw$ 5%cmQ}tbG+jVݔ=D6ov^okBz6+xIHd= "$Ɋ%;9q)$o kK Sύ.#V'ŻKR~G%RoeO7FPW,g?rs[=A_Sdf"??fϛؙ= )A4t6\z71hi'y`g\UXM |f_T؅-^ŵWcs_: ]|쳪۪TckWΖa L0_f-B}^6oߟ^V$ُ*v$_QJ;fO"d/by.GP%58urviNj8x ڭ0ڎWǫg #?l!N9RG!/3}yݕ i hWL ArMw`dE_z[L؆ЉQڍx.#2i 6(ۑUCW'j)Vt7@=AP9Lz]m{ yMv`TA-HFw7@/D+R('[0I-L7ʊ<0Mk?J}ϐ8lfq s41H'i3O,8x` ,yQg78 ts9 : (д^]ﱬ# _/|}V0G!O샃9.9Vi6kTc7 GÓ}RC1 `(Jዛ0Dt账1ݎu:1 y7JeJbbw6оێ& \?a7 ؏[OyK>,p v BEё #y9_N\'5z`M~_3.9dz1$6~P NjHQ73(3Btrg6m8+ix $`Fℬ|YίYUFt['+6&KGPzӐNrEl .7s^6Yq͠yB[I %z=W~xdqw0f.8QXļ?]x2ePBS1ixXmAR(@%҂kE۽_z7DZ9t_-p OۜtOLM]> &}PW 9Zs|.Fr)A*1bs]> ʅL1`n-y;ǥ<iS3ͷn[cPT/K BSWt۷5x=r?6β#Q ^DvYOp/}j]m-TM'xb:|.i(gl^ja9# +-DYMw;`1bK(> A8a0m%SA_N>}>e*pc͊E1k3pC+e2BBuA*W.,(TX4GZ.!$!w㿀xޥ\H/Go<@ŕϏEHƮC\o ]SeV =,=ҐGlC{͞ ~PVNJA*X]ROAJEuL%aMdՓ̴ZZYr&ͅ#{vMxZk~k Hح>E_|`!,u ,wt EEe֫N./?}-l3քqJsΖ*l_~]dІCߠekXj }P Gw*t@lۮ{>=WP$ Ja&wo:46J ༨ E]1bYtfjˋEdn.yBHv6pLu[zݘ`!I\wakg* Lv`Ӓ^wAii+%H>~$& ]h G>hλ%o8Ik(&4cD=GYH\ hw %r00}`Ԭ<#'GLH9Ho(栢_itTeidYQ˼&̢A,8G;30\曠1{K3ԁ"0mƀ"zc<țn/CJu^u,"yNaO ]ٓTt-ͥK] C4? Km1 6Ģt/#jt˴K7ǿ!)a5xl1 Q:lwZC浱g z@6Q=ZV+f+3 L.q'8pk6 (q_b[d!F#NK_$K!iG*ժ'ym#CI\I`n5`31eCifz\$ ^=u%!7:SS6c743lTA>c{eyx '`DY)zRSNs Q^8{+sAVddWO&uEm3kMWsؓl8El3X~G `Ǧ"hCOFqA;ITN%ڻa]@QwH73篬l_E-T3A#$ 9$]GAIU5UEⵀۻtn5w`Xf-qɘn0j6:~.OsdLAbba+!VFJE-)O͌,jP8.Xa?rTI6*0WB "Ia9"Tm[_RK+P5c8HCD)=Y\HCӞR9&:Kd5Ν;^0M%N E@a`A*KAG%K3{uL0#s\+w۶*#6^8l%VO͈So  ?z)rݪI^-TQt<0Z:ǂz`ի̓:v֩9 ^$pCBGJ Bs މkcLpι~$cJ2S3JAFږ΀.;`GA F(iۺ7h~=J?^qloϚUg8+\^b`ƐGcıH۱'d惷͔6!aD}էԄG E˻׼EVj.Fn<~kA\~v1qT.eQ=H7 I֤1ygy'l>^3K[l<`c^l cߣuc|]$vdeLN5Yh0DM~D-E),UxRk5^fQȇ:lG괅= 5Ёe gj/qA3V S msuy^lehe)H:ooNjeM0E_l)` 8t'#ntUtWˎ=z`J\Ƈ娳 +G (H@jܓd> D5[ΙK_i't}簝HcP, DQ#]Ds3l7UK +]C`%/ۣѩ &hy-0Z:^#Kkx68ɖ}0hLk-):K0g蓅D*rKgaĞJ[XS/3I/w{Iɰ Ggn<}3<pGg_$aG'ܐȲYņq%뢯 2o[J *"GuRB7Y€iGDs׈=o<Yq`6?-ӂ`R#}5pI{ު9zp҂!:C;Ƽ1Y~Qo^x[FWW&^:;: O_l*MYeK\]eu ODb5U)2#?3/tX }f'# b@@:(_.Ł8e.CJ((?FN5j}Uʮ4LNGj pRt&&%)Z[ HM:5hg肗GED\!]PòZٍYv<묥vЍHM3iI!Q>q{d"@Z5oZ?;]UT=5˻-U)+6[[e;FZǺWv:V(-3ci:o7@6ڍ4SnJrp.g#n?G:7>CD oBC0Ћ YElPoڍ}5D4jI^O;}B #7c(Ar?F u)Fd׻B, Cy<(AzȇLBJm+y+ˏ5h 宰+~}p 'DCWprO֚x.x3q_f-0ejtq!O cqZJ2Rav}7_X^C`ױ 􁶚Z۳uGN+IvIT|ZĪgf͠[SyH# jwUH%@lLSdTh[{gz$% Կ^>G#.1Yc/Y 9v8^};Aat{Yf^"a}f6K-0C]I5p*122n=.,-qkaAa#5lVocD -Rr24%|΁%ӏjʲJ"H Yv*ŵZÎ.ĹGq uǚݭStl :>f$q~t=E>K3u`F@DbEWgнvM]aORlT^8,.XQ*PR!}0o#'#򁗌8DxSA0m"ՅELy|ݸAsdZP\~T晉~6[ErvaׯR-˓5Va@ՌUXֻ T[ׂzPݱoOG`A{WVyKOI-("x]h"\/^PSk6 DN:գ:Z(U1;= >qYOT$ y(PeoF`!Y0r˸HJ"ۓ,kh W+3:ݺ 5iQ1pJwÕ'jOMeƒvm߹Trl*Е .̧,[bugԆ>HǙ-%x#,S%l:#z,)7C aow o2E-dVBm<<6F: U`>RՔ7sޣFF}/pNw;UGAk mIgkr\Ψ%o7/8u F;cyGېO17)I'.o焚R%J#L`ϋh521 p[e{?D8p uؠkT 2xFԔAX+kXlK#OFǼ꠱Wf jgAL@B[n}dCӨGG6ƱҫufˈRלg=[OK_a충o7Bb<uBzdN˅g+(P̉m2ʊjbL2 * ڸkMck#ﴐj?$ o+u6/\DAXJ}Vy3Tˈyfn2դ^ge YLv'FHi_jp뤴|T#NO3azpgj+hoMe&T 'mb1n @fc-yU99- 7lMV1)ЌUDv7q"fxBC"i+363e͢f8Haե}^~;|WaBz(`#SyP ʛl_N'+V֚+q 45&la{c= ⣤φ~L39Q A)TeBm`a7&%5G.maiP5!lN͂wZ7ro: >/nx&JTΓMqI&>ہN8I}L.IPpX!?iEUkO_6egw&NoZ\%?iW'שPjEnOgJ-v8;U\U6Nl{_B!Vj~b3199] V7:?cXeoۛ 3,]>9CZQiIȃ.e\=(ͯV]Hrƶ kAvJ~uЪ_\3l9N[єc@q#WcL \ >^C~^Lzdl&|;X4>;ʠq~M 9՝JQ7D>:LoBB?f69tVWfF1&Bfo0z`rHIW:{JbR.N}ô ;_LE, 僞3FSv__1Ş|*N1 6Ul@!"|st[{mL^_]0?b(-9Ї|҃->"tzuo_~Q_X7\PK4Hx6{FXCE"םLiu\?~dH[=1kB|%Au];jH`ԌFk3#v*Q'{ұ%ز{$L2L1Un # ?6), o1c=|rXZ^#>vx0Ѷ5=u7[fA]n%䧩\EjU|)d~c%̿in22)`'`0= GI2?t Sڼ:/_Le&; N^bUǩG G~H%%3Wj6$qe1{pX؃p!w~J)SsJqoX&2qdL,/(w~k8 N*,s\ct-5XUnl552 &bлL I:BZ ]#=LX^*eMoZ2)`T/D=H~ig>+uVJȵRALHK_bxiq ]jOӯ~6}f;>+!"OsoBrfGtt%TT35]@w-W6}@Y-iI ϐb$vWKUW+ B;jȃK 1t(Td 661]x !Pb9'!I1je\z݁sv(9פƔ\pb"7S3IcZ-$0M# xd1Y{355 z@,Ÿci`-^Gu0XÞ$H3 eh>I9^IbYu\bOx뱍;qfߖISDM>俌M } &w/`8[FlkT- vGjx5.fA)}ꉈIi7<];8)3~9e/(CY ͵8Iv"4 RS)0>eUq|Y,t-VA1PalR2sClJN(5 Ҟ!ϧWs;'MQt'TA2#XBA9bN %2XÎ@c'LmxbmcdAf"p1̖늏Pyۃߩ: t!ߔz]?eC]տQ@>}el;J6MЛgI0ᬣIKX~o!}@!P2;=o*\o*jW:<ƐU!"RjiRƯu⮨8]>bȚ6~k$dT"5. 3>n'A(wĈ[pB賅g6}:S`9 ||bN+%#\wNKY鈄aq3og#֎!|%JL)n&s\KwK[IP^|6AFjM>w<$kL1Ϋ6&2bώ&dN,8vebQ*;fV>;)O V[ z1F㩶iM/86[GqFWڦ*b=y7+*T )~j$ۈJ|˭Mzx):'ukS<i~&abC"7f گ"շyR\3RI!HBY?Bg RN6ލO&A5a4[n*Ll^ZNH{J}[g_\V` /8?Bʭc6ˢ@ܳt5t,UJ~<4E97eEG8]<1gxeT$ \XCx` S7_"+IxlCNC~ŅzPخޚFQa:g. +oxB~Rߓc-|.# 75wl:/ؑBpY׎X<anm+$X bpi,{1jY>G=FZz]NɇgO=\Y2 +_쮦EFvL!Zwah*%Haڗf@S<)..m_jҭ؊6XTKGq 9w7[6Œn5b Hk7>-=z{Jmȟl⫞=g!FtRx肝4(mfZ PF?OBUl\;׭6c ^ f:j\CanUWZ0nVh3?dh=TML(SǪ9>cVRL(|L+T+2{׿WV[E2׺!Fua[KU\?׫vYB;qNm)nA,.si&4AP&A5&.%P-A{2ulH89Kt7tvJe*)3| 0$:b ) KrOc  Eyw|@K]B1xFqڐi0$t+@{rx&lxzQ)O9 ;;\,cI ̢o^v_ɉG~'22= iJG]y({O-mre,Q鯫&ѠQ3?~u۽1YQ3&8K9:)` ̯.$YʝGӼv7i nŠV'4FaN'2\{g-a>kȏp dҨM벶/ )zE* UFqx^u>|Q7gtY˳~v_wtXiAQ +,6+f!)/ROd ȭuOэ_VٹI$ef0Z:[%2ϫs&EyZ?!_ Ժ8*&oL"٦׳)3eiGpv^c*ɭ{y(3-JֿݑQ;&؈\uNbHz]Xd(VOE%Eܢ ($j>ЃLyC,T\y?QnKF8 : Cz"~bDqSMίtĚ8Mvf^W gw?An}|5 hC/ ?32u4dj\{4[ MhDTiu'MKa}ʠʎZ `R{|εԣunOCT19D}x(X4ІFO2+QQȠ_0{Ztyfj{98.ba"ρ2WXuc޽[ D>3WR4.C4i(_{Vm}?,b,\1ŔC9epuOS1,L*{(^ @E{-\nZ5b"2) e8n)h9g"654z M&OvS,< r>W73_)Z\bdYmba :ة@ZLRd.XZSP뀈f(o}IWdڒrqoW\u2=.E6/?d0tTKb$_M3|TC|-ik.}=_z6/=QqڹoZ&`+vk כ`R Α!| ^T gz=:na8 7& PǷL6ދJw<~ LGc0v_w+!]p-q5+WZag'U[@Q{:XJn#^CID,;FB GIG?q/t.;D#!ƣT?\` Ev]y͑:#OE~co֬ N#]p?/$L6Z^r 0 ҫx;1&/@~雸bzb9܃P\ p 0瘸EcڏxҴXy+Q?$w CbM`KPb Wiz|?׏ɦ RS׹#yayvp`ړe1!eOk t8#].R| <&blVE;>6wGR=J @:3~@\9󩌂x/Kkz(ҟ1ػg0Hy Lf#D βd&9*ȑٱ9Bmt-rR̻ٸ?9nQ +c[8o} ]աV&@6~dTb*4}ݫ._-tӋm@U'/`M2~!}2v8Bhw2k!.SD&:Zn: hFѽX|,vB=6o`lCbB 'PV 5X&WqևK%)< Qr+=je$Kf\+̦ tVS4 nLYkկ;xF u k#HzUO,HHqٚI,K`2 r8-`2{h5|@֒a]ӥ2/jaGkDZET"JhsH #:>0_m'.OHyҞMgNĵ/GuzFk`[L y=HK=HPTnhjGsGt;V犿Ygg7X"BY%QT,Mpb론ߛ/X@'M#R/$ZsSh{mTL{Ŷo j.؛>ὅGBM䣉Ɣ,H$A~1)` \A.C=LYNȐE"Њ]3 uuJX̯&R@`ebhN!=Nh5eƎX3*4sΛ[iLqKnxc4"&­(.eM"CD@ m Nm$#D9W`RI )NFQ7g-ŸCu~jO4R'uL3 8i {r6{3n 3k~*}4ॲ|_Cݣ4d02ӢMk^38tT2x*kϱd< c_^ʹJ n'!}2‹9烈MwY[s"ʄk`4g|6KVꀆם:0.sjsao{C⸐nW!bgo,aAG$t)6_HJ /*XP-н}(&!y"gkaqޫ5Ɉ[* ܕLafKa_jDeN2WpF(ϗ\Ɇu0E]y@[a!a8J&ok? 6h]T)ۊ]gi+{\NuE wjcSe PhL"~n/E Ġ4*OϨDS6oWYFzoBbTR\w^oCA1!S.d!mϑ @XL! ]lw@^c.PO7pgoT"}S_-蹵KV0恠w5[\ɩ&[Lm5mf@ܲ_|Prujd)8C[1Կ2YIfJ'xe#8 e9؅M)y 7$Z< {Z! znF/k;mƀ N*\;l0 ا'r=<:yr١0?0?n6͚:y$*꓋*"XZ,:o&Ԗx*"̨=7/b# 9¤Y[_~/>$U#)* 2,j\)V{0\ySU P[Țx=;\6ӵN=1n@Hp ~O#M[VlY8t+85[jYiUrtj#gەlN뜿D#\QDtc( Ac7~)JeYKG; ǹM/&0u*Z`sg$p.+ w`㡣pJ_4PG}󚽵MBwHĴނb Q磊\j,y8kBżvnʃ+!a{/ϋ*l{qxcrjz$)Qb|qUC! uo/0(`pICMOIVuH:zؽ8+W9 KeJ5?3sH'j7OcᦵVBQ\;$cyZ,e<'h# ]E 8|x(s%x8;B*ugHr legE;x×M^=*e;Z sak)5螴MF<3od {3Y춗 IOAl{`% w `91,o"Ģq 3^$,MHV({qرm)W' U~# s_y4;fy 9ؐgkC aGʁert`h4rP}w)U> !)މ GX-Iz wd8þFC"`dlۏ܉i>kߠRwE,H. Hv[PѽM e8 oĠj/@C))N4*<d7=`/pWCD sY=|#K.$z1.]vW_ #Kǡ@eyv)K|-Gmd3 J:9AkXzfV+OQi}mn |6l^}c [V}yXӟ-4vaz$%4}>VxE˅V8I, s%$㋽5h@,Xn!D [_~o^&׈/5UY }ՕXE,3$t we3jdcXeG ,[Y`5~: qHCB{a$?ұ2Ú8Q1̳=[}in6çtD6);2F)(cF(aY(`36>k(aX%j}*kS/pR'7!N+صy숽NyGp=t6啎 1"d3*5^z@*/܏~k3\ÅN(MȔ qMěq1 Z3~}6Pe ]8!ҺInFSYs4)ȑ5s?;r=^$+-82Pꕔ}C#93|96t=\3phў`djӬ y,L!5^ λ WCRջ$f:[9^-2v[p~qC6&r9$lȵ?b';&Z |w58\ChprB!&V'*3fT@Ŝ"ʂʎ!s&LW_'x>WvG4Y{m12|&rK yײDQZ~ Dfm#J* s7C>:IpE)9Db#**0(y '0DAS\ĉ+j P4G*/I̽y4i%Dz=b1!xQW!c=uaDjZ\E x/s]M0օ87DC|FUf5n cEx>lĥ&#+(87ҭŔTaF@o/wdC9ܮUBe֋mxRHtMљRCE \ mv#˦P#fZ4pkD]) ga7ӬG ߗ|nח:"@|1!DJs jT/O`eDc}{EZë{v$qNwoF,םCy9hqKzQisƂ21"hh>yjQy\j %vpɅ,5`yI}տ>UHgUf;,XTRZ89WZUiE;hbBqtlD/Q,0FSts؛m{i#پ\ h}G EK,R^_׹ cOJT \nx\E"H^qW[{qCq$#ydj"kvV ` AƠ xm2,5'߄Ejfp^S+@~eCԮ 31T811X  ]$߳kxõv% E%$(\e:9%$AޡY ${t1Qi#% ,~U4kka@FJ#)Dg/F]0r7Y7&h-xʹH-8,Kw hPTbJZRl'EX [ʢ\ߖs MBwF#'AF־j09d!*jj޼F]xdQBLin/u2eu8ʕ==kuM%5- e1i$!BD5e`2:j*G/ݲZ8+wڹq4d-0fawQgI\\_nffeK2:k>/ 0e=[}qc'AC :h .b*QJ M*_vĽvI%佪߫BUBu,}7 `q^-fK4l_<$W(9cS7q%34\hğK%Y>ջkȊ-مuscETOttI5nĔ|ǒ4v, 8$JG3e#_Aee.n, S`<hAhd%GL`0CI`/|H\ESí/ÇKo<{mQQ[ .3 N]":ngV,cY`ŴAKQLje3 Dx4E 0 `=gg1TWCD*޵Ku0W3Ŀo)~- K/8r$WP5_OsȌ`ht&8[6+CkqК  }]zÊ~:/>u&݌#]d{u@Cy)n XYnL:)DΫ =yQ+{20iF]'ˮԏa{B# CEbeM ہv2MXzwMvz[*N!5F};,%DyϷG*4l|<4'n\P9E'mx zwVsF5 5!ˏ$aQt_'o[Y0vq[Op,HOњ3kp\%yʽx,09* TG== V'FF9q%s[KWR~Q'7+px9Aa`E D- #ߡ1c9#|v`3уwbYy8`{~]:,@v'r oL.e(ˇa`iq$\P.N'[)ܛ]Q.ދêW;(X >*i@Frjװah:7_; a~9<=dk8B`-Ci]e})i`U5'ԗd?{\R2"b9lyBjoW[5K1Dyܗ@!s P^51gC3G!0+-9:5,J?=Wܻ.-Sst)g-+2tD›AFXVL_؃yh$$LkLj癔 41 z?͞wcL "))Xiz;{`WO`8Teg@@A!%z۹^GubjIr8,JfO)c  wW Cm.t2>}o, V47^sǝ4ل -klgC 䃖ZZtT0^hho_ 2r^:!ý{oau'NrNruM5cD/O? $Հ`/Q!FKZpߝM?v'6OY]H,g"p9ɥٰȹ{f#}0}=y^!̰CFă4HGkė7Ud;o 8c53]`ˠְ[%ՖN!~?>qjstGQ&Ef,Kp);yC\[K%`lYc^SQKJ% ⲅTnw;WO]}\5Љq"N){[ D 8t1ˤcJw~ǡ !ljkl;rxIj&lf(|rK>uh ǽ|Pd`EB>хʙ{#=(gIV0r.\izt2^LJF*m]|o!1.I:J7M{VwĞK(үN!Ur ?BU *ђ|HXSl*ސ.;p ƻSbr$HnTK皿xi1麘y#~mWCo"Wk.Ob׵˜=2LA ;I0+#䦤g%cY&#k+n0./ "P5ebj6ܽbA^v~Is-oೕl mXW=1mFMtc='$"9o?G> .!M]1twՌF}MN 3oj҂J=[!@.CVгfziDꇥcgK&o ۽B_}yrAb?7<Qo, U9Ȋ~{*JXdy`[hK{֚LZ틌J,*A :X4N\ Bb.!*mT+”n%DN+;ŒkUm\Q12#YP5 Auw>LG nLV PƱ[D L: W\u<6yb"|QWt"m6> /3"߬ԋ_N6Y\1.jDŽY' 8; 4+Sg"Pe'LE&(ZTcy2 VVF=,U=ɼi/sdM{ UPIC$KfN%脱TMjgޕA9 x4j!ϽЦO8%Zk/eZF 0Qapf Y!xh+ 3,mk3{#ew\L[BeUU&<t4 | 3*, ygjj1mR7ZZ$^?XBP6&1_9L'݌ie6rR1Ś-ޥ杳փcuRimon1zK5k&([f2ʖ1?ѷ]8wx# &&>~Mme:F}5`Y)~ F>l-:` E/ժk6VA`{ i$Ƕanz6>y`b#h㻑v>%lN#Pp{JZο5&,oGLJ4иC1%abJc-EX%6v#jo3#mGx"5:s6Y]>KqnL>1OGVAYv.ZV4cM /obાsR^S;`*7m<$Rʰ.'SXQ n{;Ɔ{Pݦss߉K`QngS'PZIYl }TF{Kdc,fVZ#TA(a5Tȧ |^=HMq<>} ]`n] fkz$zeP0}?|25]߭*;cw'$-䣗FR{IyXSȣYSXw=v esZd'aC,ۭMIb٬Rv=v:o5B4RQ@ak5'YG`0QpN%P6^vΑq_~Z6C.A ~ `+ QK* 3^' ^NM;)ZCҩ0+7:kIsTQ:g@:PER{e12Q#ٷ]xSkP ᚦ MԀ2vb_Cً?^\)WЎ|^/8:P۩dfmBr7;jCAҍg$jo-8%QоcG;dɱ6<0=<3d 1T]qhPœ:[.]bm_(饯.ަ_Kl,t~ EfBe<  {' s8G FbkVK1O'խ)wuڼ٘۬[g6.=\o7+!mqlXQ XVrmcw_m|gu z-P^%[NwsH5Ȗ;6r85v/s2<"qw _i%ȑo7g"4&'TSCK4[y[E7#zC64|Mx'ܞ"A){/QG{.u)AإZn_[\WԦMv} ׋j/f ܇P'?M8ر7J($P8 )Z2)ammIMLb,Xx!Pd^{'h}.a%(daODcȻ|õv 9FF式f%LIϛ!oH(ixYǼ1T0FVݙ3)~IŠQ|h݁ӯt弓.[4>E~yF_BbR bӜ#a쒴VP)|z☈wi:;KYE2RlW1# %kBwٌ*J+sWU~ЩC'w 2KE"%O|Ouj{(s;]e&wـclG!Fvx2TEyoҷ,m&R]`:@Gc b)\TC=l9v I 5b9f1"G~/ļV,#wzc:2[ Ȍ$^Pkd-/B)ڈٲ] =9$\0D[PL3ͣD poD!wtjBg! $Hgs, Z>G0GF"Ī.Vu9^r U~IFh%3֗UT*@Ob}lږXzR ȶaD*3<#x> 92yw%ݴn6 @7$m@n?yEsL"\ԖՀ&]B\:C㣴ۮGf?^~ms%Upп00S^u8~q{B-zfuu}- $"kCs湔Ynaɳ+C"*ɹݏG8TPx,+tE&Z> .N)=ojͻGO/Onq%'Z)eݞP1$|E{$^upصLz-(Nc6/o91uqS"/xyֳ9ha+;kp)<b5ƿGJn p}bCl 9mJGL@Sqjc9sL97v4(prSU-PL K_H#.6 J+~̦& Db\HK=;vizQ+€y]V @@>j *{CT6T5RV{|q o7t /HEo%U2Rμh, =mHOȍL .OVDtOl${n)|}Ǥ,W"?2W͟>ca뱕E]Ln>Tc`CuP>U@JϬЭ=TӈH;Czr J0]G&xbrx;ZdOt]w?'VDtV|Sݟ*fQ麶l'L,؀YtQMOAGl~?~PJ@ )~j6}WK<%8 C> Wӕͨ6G(Gf M<8X ms0<&2c<Ȇ6qfۖڧm =yK;A@vzhfS=V8,G7nΞ)nmOq[qldBU|&bR1$b)}$sx"(䇉+[[8 s(AN\RpbWG?G+_4-,zP[@%it`a뼤&t7IgP79pS9G7~=(Upؼq%O3{vjE^Am2f2ח ,[C9WIBJU@ ec;[W$yԋR w v>,a3Rt>Ces@ES 4ЯU1gG`>o6%fL; R[Gyb$G$Dm@$P5"^ 2,(1KۮyLaY@)Gbґ ^\Ik(P) T9nh[`x̴w27p GOMXڏL(V7jw ϻ3ty`dR:\]7w#~PYTyL*sm?5ZӚ2WĦ.`EΌY`E@tʺ]> Kc4聮|s38qO6*\~2 pꊟ {;k'4{c>ZK'1aiYH[pa(qye>6G!GnN*H"D ƫ㖢djfR8Xf8Hp :>A±ݵq\[]2BZ0ouJG8d0a^ yx`zj hqTO JU6z?8V }&dZ 2 YxЦhJ3ьk\\7M`ꑘlB.Jİtv}r.%v9ZH";}kim**o),댟C C)O <ζ~ P(!dG0,1?MM5Iy~Huۭ?2#BVݲp7rY3n}8IY+^2HdP*8i?7@RFyp<!Y2[[NO% Y&?d> E &- ɕSfyV MdOf[UoLgD6#*Gu:)s3` ۃu9ױ~ Ӛ .J Ɗ,@ҵx(γ}hV8S=jh5Xcx{u*p$({78&JDz?HE$qQ,s*4ML沑<ɆJr쭘^OVʫj2!&nwHS@Wͥȁ,`^#4-MnyMΏ>[O3W`5 SGe$}#e&8Sb J_'k,D|7n!:$EtjDZѴZruNwNr.?Dʏ|~_vPJ0!v <i37s 5~م9> ͼEC+LV*** ףs~ɍϗ";M~քDژ1`|5CV℠-~11 AJcsJUb@5R#aznǰ-:h[HusWxcRͩ7^Žx,ו7Yxé~iȯ}I(p83R3"T4FU]}c/Audw|Թ@`ΆرΦ+ϝ-H/fBO^@D]lm|QfT/"SBCd>>HAD39ndSکnat]ݹJ ݟ|=CΖ>lT` 'M|qe?4,OxgnLit"dZD_WMSGba ۃ/KE0T۽;m-,B/"(Y;cS0 ->oX铏|2vޭP*9^,XD5螃i>&qE9?Jޤሦ6yD`~22Vr/Oi7^W\`F%*1n1iIi2CD5Byn\~-WiqDL)YPIh?3=`m']JXt" ;OKE>T*7IV,t;&~ut. Yd~)OPH瀷zp_i p _\u@F"_0-+%6&F>,J"[#5+ҭx&i9+Y%Qa%I<ky mb mXKϚYg :% )bFZ0@6x/.V>"ϫԛf~'<|*h5cI%7"Bڒ: d^ ОrGh2*$OԌfw(C͸>)SIJ0Y?kx^Ers/ط֮?Σ~]O0>BIsuti!Y]0)R4u.ɾ; '\a/˘^uEhW_oE<|E^Aip!}.VevR*̊O: 8 Gx:vqz'PhY5fM?H_WF0@ݾ^-0fݍ0 RCa6m}Q_ޤ; GF;8z@88iƥP!]e"ȼa&Rec , zSw#8TJNu:qN*MdF5ȝbVNmr[6-bmHQ+硛T˘_9J0m%g:0ey +/ XX%IUF?;ފ0ύmM^Mț5h?M2$* *~&KUt= z\>8=uÍQְ|ck>gD4< ua(֌?$"*OS`3UV(B{[,gEΏ3+se+X Ц5d۝JI;BŜ?3_OQW"7 havihEה] 66Ez+dN:m?P( AJ%u1 r>ȓbSY9w7+E|T*>=@yɘfʫؕU@_E1b@9oMq[xs7CT]y!Gj|6NܮS>$ K a (q?m}>j = 0 s pL}RCEȔv|4’lYPgCfX 6#j϶X2,|b^C~6 |1ֳtpټދ-=b"ѤpLUû8:T3x fVM[pi XQwCg ԧ` KuoY{ԍ`$f)c$]Ӣo7q6Sh@Z-;ת:kY 5/Saν eGH4{J1Lsl0Ϸ|\q"t\[J6(Jj7ߍr 4ݗz'e:jC-f b߱f5df2{BA͆=fR{gĦQ[GuyL )X=lWgmxV#]?aϮ(q=-jkx*+01sPӷVi'vhT/eIovUAf*g Ӎ-=xGА,e!#9"، /0vkK dP4 Xvwm*1~ B6-wo&mR=G j?_U"k𨓫-8K@0lu/tQ$ ZFn-+Gqm -E[+)W&%zg+-.38j>٢¡l =oc`gGv,uS9U"0 S^XO<!*qE7g°"cQ6C8&GtmT jF暸ª`TcL,YR+b=g(}]- ɐ#gy;gQ㨤cFY 'yʱg2^F</vjt)=Q_IAw+Mz rMgJα咾&k t"hg0&p!W~КzN1>OT7}nX,,B2{ǹ +1a(vTޢVE;??+Gmi_VD"{,r*EQi=e!PX [xV}4"_i荎Whdݰwt[Q›*B86u'3U'=r j ]r$ͫyzbA끶1ُ͒RaS@[ rGHesG3z%@nDXTPQWO_k"f>n4֠- DIq̋S,)R$8󄙈MʼnFC3NHzRsXl9-e%ySǏYUݘ=83Ϭ Ғ]ɧҋDy/;3"b|~6R9%ʎ\2X}gyߺn"1j 0Ɗ]lbr_fdL@7d9+gTxLf#r$r"C,G%d'(u((T  e&UD @\1CA4PaLMAC-;ۿZR2Y6̜;w>/i!Kr%hwvN@3do^V@ޔ?4k86^? Xk!p,(~{ܼr@(u:vdB{P{X ,WO֧j A'Nl1HҁT>UHYW'NTG1+#2ПGCyo-^[*li,HF7 N/a?T̓@R=߳!"53ŻNHxNG=o◸yA|}", ~9$ B6~OcٴFZ{[y5[Y>Ŗ(ba"j+>קsqwM>3 UjSTx>a 5udhڹ(ŘwHO[O ,uޮ#2% ?4Zh̩hhLεgK n$AAk=_9>b1 k25ݧez'|-+bım+}[V>$Y.ƾ̔+G܄䣕#7uKKs0Huj`*%\#@'wӕgjkQZjZGA)s$ć|C}#8zJn`L*&{p"'{n"{˹HQGMD"`R~wQ굫MSoلN[v:h$i q~:GȠ>#4nZI > '_IIfο MOk~lL߄# ]xź&롾ūƅ{JmܷМ*?iI:+JJ@,R\DԡD4x> ݉`qٝE~D d [Ey\N cF؆#&,!BsL pG=g9ksAۃ[(.2.2-!2͑[<ɥ1FhpO\ki([t}TP(F,ͻ3kO9n. Fؕ9>W`\Q?IL䩇H$h*I憮,UJ"i\ ^TNeDG6%0)u)n|5}S ;{fqXvMy5>1$^^z, P==\E'4e%&L\BL|}:I .tG+|7ɶK7ɶes6ֲnB,8a mkbDeQ\ |Yms5THmZ 7\;ԠerF춶%?n_>9!YUO"U%rUrO]/a&ٮFLDHӐmm)#j>@X+i4Y ]O/QT_Iog 7J5rD%Byę H4n*Q⧑m ϢQHO3СbEPCG(hN;z H|櫵}_뢣KтoH ? HdF$Hnz[l"hW(_J]%~b®\e+R<&# hϱs'?3jpLrc(ԮfyjV1pfQ+ew +uDnT~"{# {4 XNO'_W⟗̴#%]I;}J)]R2Z"4MI\ ><jl6,vZr_x2taAݖU̸%uMir~}/ׁ~lӀ[bGH7u .ي\KzwE!S&7W6H;m5d>}[n-0ZguL֦ gb+ee[nNQB0˜i-j6OѲlL,csFIQV6?;dD5y s!:]TpU6"Ԇ!͆Uyis|4Xx#aH}J>fRxV4[9p5@^DbjYD+bCJ %ҖOmVVhݗ}֔ = d H$%;lrԘIHޢ$t  7<Ĵ'uAj8Zf2y|N@6 [V絖GJRߤ_ތ6stiF%OϏ86*+64ByWv ^ywx942NZ$D?ftI %nd_8T\UPoaG(pLGϡRi8"$wLVjA }7ZO7aG 4{xj1\;e 02YPIo[XOQuYÃ%@ : ~V&w/A5HQc$@jm9|@5>qV}|}#&~Hy^0+K*%W^K!Z:ױZwJxR͘Y. #XM!L8ad7Kz-d^O ԞIq\p%^'P!X*'{= 0^?Œ9 TG0o/DyN_Z'JMHɿ%5,V0M_{ۮY3ay$J~.;CJi`<%؍3_FHC eJ Z`K,r# YWIJ=$wm@K:ޏ&bK\YDu cV)נp.aѥ#p:| ]Gui ͥ8 az5ضA\Smќ 3(`a 8ShͰxO^|՟ەTK|9*Vk0$T] nӔ  ˽-DJQy Т1kbFy)IoLO2QibʔI4 { %jQ2 O 9on"s 1.twYƷZVG?nҹFcyJ@I"I?ī;KAuۿ&=n|:-GX7h^SjcttsᗿW= +kvGTb2HWsI.g04. hy-W 1eτ/ WtA#EkC`wU~wHUc>Oz=إU=<-sԢ z4ܭ@l&CAҰ z &p[z%3Yjcv%mW&r<5lqUW36:hMO"A]} 8T=y59ߑ.$C4 oOqxHfehiݜM%e%ga=Y\x .L-%nKJi TD^NZyACq ByKO8QbV G9$1%f>BQʣl(K'1RdO_Jo5,d *_VC4Ewu8bq(辽js@_r *:S )?\^p3HdOm’GpuZ f- .>¾Z@ Qݹ_5rxﲺ9AO<搫ݟR']̰D:ml&~-d=g[m{˵~(JTv5JK}"R1j9zz_E1TJXHr2a3b=7%H@ f(dJ& #]䯕YhA70F@QN۸R)P+1\ ;1|}[d3OR ݽ N  j6_Z1 P灛=^-vĕaO{#\:G{2qn ??{aPKdZ4|ni1& hPHb-c [Qm2 1?WmH X {é!I[]\O9wđ #T!<_v[}mt꬘7@<ûzb,O_gqr'hA[iev[c waM7 DHԫ@7"c>x.Bvr:b}cq<] z M+|iqC9YIo.J}YO8ˮv¥Cz-2Ȕe@ #+cK=l?b|vNR'%+z«aR]x%ܴscN,,ʈyRP׀ ca4+M9/x}ՀDT!#m@D:w@tzN=l۶'0tCj^#~;Y:2q'IuDG ^*YPڍ_*#T![A%AO7II )k5QL9imҷvMnEՉ'L5'eVtYj$3ñ [Jf) o{1 Ć?%U*Bl@B5U_a^i9;GŘ3H28oG=EMA ^T #pocX.7 C[Ay3ݓ1LmL?ew1ځ fw /DẄ́Oc?n 7`%4s_kؓWKt,FVļ2.`VD::JFZ7;)P;ޫ?_{]ʲx8G>f0V=UwÓ6}uB煎K%@;ͅ p*xE=|hW9EWj_)M@NB\"H'<`gX, V;f'Ʉ@|<^Pn5!_ +&<*m2p01}J2-oO{ n̤ jD$k?vb'eTX hd_ QRċ?8LoO \Lo}tm+:b6Y;ſD}+ۥ?vtlw%My^r⬥aؖG{dMF*:i. ɘ@sЂzl \M3NS(L˄k13CJ K;'o{iS|AY4pa.N%"b;y~HQ y֗6/!a"WvaY\8=Th CXn4z1֩r @(Wx绍 lT`3gn63"1Lޥ&^鿑ö{DVg? {45KV q^;q~_X(_A/ bS+3Rn¢Ͳ4Ċ@x UP2:U`ZtfG!`rz#YLr{jvMPt;NG;1&)VK8 4q ž,`\ko+.Rz^e?!3m.cyf0_iGydlxwl[Z33\;jWc!k7kz癦M#+@8hE*qR̈oSqf#wIw&RA¨5IE:ߙ.p8SxP|> ܌{#r<ɏg5|*-Mm;hCEqFS!B}7 rkog=ggC~j/;MGz|4u&s8vwi#~k;nKn` g\\R6A=w2#TB /xeի>&oI vӳe յ^~Yrl>.I,8PD;5XdE<rD~Y hР+N#ÕD9J %S8N6Tg(16r8lHƐ4 qvGZ?R?w/@C?PabPGHJ^3bJ8=}#ʡ3Wcud"VA* S;Jƚ7X< l ]&,:k5JD~)6oP`Έg 4[Պ!Z M)Z&鍌 Fy]zc5 *d*: M4m;'A~OY0=!yY %:==hvSM8r?qD[}Úr Os]eL@)sңuPxՠ zQ F(t{[jU,m:/#FY Բ[&N&s[]~{ek(yE42 !mWaq:@ΙLsk YN"QlA<rfM9eu>pB<1 x<,ʹyz7Lp2@^-jB7IW|kcAB8A 9h#~(x6ՒM| X=}eDYͅZ)ҥkq=5sG ZGhsosVC{e"D֎yaHr!4aЈ㶵8_ dXi@ox_*I=X;1\dmַ>Ⱥ%g(Aі#n W4 ̃k^Q8 @ dǦ A~ur˕reΨhY%DZٷfxBh-vMcd@RuAZ߄'e݀/K1#yMn/ϡ|ӗ9 ϓJmiONZ`I~G4,2'~9[C+E ЃFIdyTgާH%VcFޑZ^yfV7aj50.r c@ݿ/3ު@h{䳉qٔk~"{gt8CFX8C+_mVZm0 ݁ب;>dt1ggQúp:v#j5([їvqP z>Ci R,ܥW؎u?qz~z`P`b]D rU U'7K Cp2}ȟ:̐E75qi) 5yJ` j-QaC찜:QQc^nE\E]$unt}xrY~Hc=g^"P rQdw#;xs/0Ɖ$m鹕:Zw+F/0g̣ HQv\1gJ_#C5<Վ]8@Z“|ߴzFDXKP콫d\VσY'ƋpGt1P2Vނ}ІY͞[zf5q.=s([VEIFP,o< 9Nv 0׊^zѾFF5 ~kɊeoWؑ}A:k'XkkW)A7xhvFeN'a}&N; Rce>YzDtHa[nݺ&oeT}ml%3vsϤH I` n/\JߙʙҲcCg`[įbj1UV 1Z0|)AXxPt%⭞YֺI7\ύF;hzB6v:tf`T3OCb҃;z+4e]M9YEt cU˨uJ?yѫ͌%'o̶7Cޤbͳ6}ŘP*L~Gx.A,*ɧV5lULa6;9Ie_Ǩ(@t}3p+f4fSF"{_yvtX悿dIrlY!x-g]MѥlY+N ܝh1EJ6wA<a=t*sX;RTbqfA&6^+8^}fzbiT mtܛgc cwԤ2ZF@T-p꺪Nl>bsagi< IN3r G?d,\afag! '+N4O!QBorzB$@6uB< 5T?f0$>sT0#]A  1}؈;ȋMk6}YOw/y HLp , uLkzϒm{-=kb'!`nj<Xȱ[^U.  H`4jJ` e h7AǍ\3\V(XLF=ɪ$ +ԽVBɶ0'[#.Sބi}f#N *cWyB38}͊}~[p^pZˀ,rIRBKD `SakPLܦ'!@y3?$H17k2m&d^%͵J9_`!d@% O{ wp2߮>!ESWhZxݗs#2-㾘eg>:\(R{霿*k&>_*2JU3B^^#x `NMqDEPCNת!ԪTZ0{CKm˯!{R.YUFLƨL%pJ0!6VN8ze[zH~LD>;ɪMthf䃈[$x!A8߳Ye=GzvU#`˨QEC{ wՀjͽ3GŖ _.QOJ.4;wHb]EGXnk+x,dzE?_Ez>? QiUv{)Il(:YRRP;Cu߱&Pui+hG26_X 5ψ]}J 2Y&k,Ȇ\/۹Cեn68+ѕ=#Q^o 97u>~c6_7dv\w HM/9[cg]1<2r1i9Uk(VQ3Z/d)=T3syQ2q7pEN^y:*scb]ҝ`+Q\~ͳ@"ʞA0t/ @)Ӗ^^J fxhA7sǷ. u՛fق8NٯlrEXhMzUʛšpSw&#Ib!/`CO7&D$DZwR3m;W~U~h&ruÖ5x1LHJj 獎KB-= 7hD \c6ϧ+:D+H,mHU#Hy.X82j_3U HبD^9Q5 q~R[ Umc=D'o~ot##'fAFN:֏ }2)G0 1'14؁A?neJ5%no{Z%C +'42bsHt") hDm\9 XgiVE;\Ay $ϫ64 w>zi aXJBLaOhrZ?i"Ul@%û7p5nHA3ǎ#(myܮ*u%i%h RYq 𬿢7"8avWGW-Ki|U;}8&=)g^wFt>(ec5t GWf E0H1s9MԺg;"Viniu,-brL/!.wTu @q;Ԙy*խSag-~LB PC=Oߚ Oy4HZx8+c'Fsj#tJ{Q=gЮvճ 0ķ;1+ajz,4bɒ^- ^Jy߃p*h|6X) ^r ijnE '8?ķ:`Z_qKt("ńGw < X/Łb,upk"kB{{&(}=|“QXa nёagMSk(ĸ4d- (UE(:ܷ2^P^i98`Ż|ԯ/vv8HAlო4/ (]9^xL Q-,={-ƜYҍrt<%yOvV2A->x|8Rj핚)8!Zuh-8Xo;kk|3/`/)xaN"L=EK@11 5=p']b|F+#SH6ipX==񕦶gy7a-sE hXw(=ERJ*U$ySy+%̏9m[ &, @zr+}g<!FcDlǡN͖+{ ezW$]2RO]#gh܌]ػrjSY6.fuct BecA$o0OeFW}pV-v1r+ubv??,gB]mn :7,LaN2R>$!YJ{_nN3Ҁ[`hdt3izh44E.3QP>nj qEhr{[}.|0AEb{$'w`W7/5 eUAܓWĞNk-g\4>AgfIQNH0+9,'Eʘfp ͹jƐZ6d4337X9vЬ3͡/lv`Y F#HFq5-odzs3Fvl酷%-ai9TJ>'bjʌ w\ 67c@ O!wmmw9or/[R_cyoX_I! wMyx>`AZ+=8].t|`8j)0.腸[^y \li[DA9񟇄g2'uvk/۷EӃMO,N?~(vQ/8,FP &㇂Ld(vRr[.|cWH [&c0uÕ86.а\=YXe'*(űJo^E?0RJso=!>z}%wVbMO8g \*EW< S(Vo xbtw㊕\@^m @[K*28.x.2w2X:=^8򰹫C(Om6+ڏQo_WēO3{Rp)"4֐搠VY6MgLW4 @ cLofy4HKvǒ{r{:3Ԛѳ,? lTF'߸&F1ctg~}&}Q2eHR")BwHl jb#7n* <$ @F#Vj8<*5Nن6UqlŒHAҡIA%W(\=r/S̔t%MNk%*jhҪ%=S +@י:+ FXm΀*8rH‘Z$;oN2UtywW\vpTtԢT9{{x~;A Rnx( P0sonGnT !b!b^U4ٰrMmب[DϚuh+e)RxZ r{q vA~1f҄lj-˷Դ`ԬF0 LIO`?̊{oR>P)1a.==6xYbQ=]\:<(Zdzr9BA&)T~xZ[sV6wC#YY]P(NZC2K?ͱE% Tdo!?X݆E9U Bŵ7cuor`p>9夎,Ns(W8(M³dG$'Ae- W[)mKLXyh#e; # M.ߓϋ'wOX\p䴀P] v5{wKX]n]{KьAح4!Af,#k0^/Wf#Oýgu/Tx]Lޒ(L |<&5xQG A HlCיy [C혛 pgl[^vojs(‚poR&Igv,oNw]B^5q.!ٵu7ig(߲o&ӪaM snS &VlOÿ/EUd! ٿCx'5=TF!8\,i UE JoU) `5FzNո900ad6ɟ $((.98c.Q'L.gc2b+/{^'.=̧Qw'4u4;-Zr#tq'"*g3--U _1|/&2^q8A2^aŒz^5vKqd+NVcl=rn=̒)Y8̫EPte8ׅ" `ĸǏ{Ҡr6~>`_۔xt4Eϲma70E e/*'/t^FPuĊTm!:Wnf,W_ZAG6?{5@j'Mpufϰk>1) ebg껑Y_laX4(|W`m\W$Sv3l"W5ho}a.bEyRտ@<4w)i{tiHPtyI3j쉡13BgnLio$&.ISŭkO`D+x?Lku$E% p`c`4I3r$5@,_ 6]`W!Ѷ!j~*%e;\<1 V|$H ѿFo27<TZhzR&P)>7=gw4'aoC M`4*=U=Hk'XIHsQY451[$nl3}&adƭL]=.[agGlʩְs02(Ġ,YND! Ȥ|a]CDF[6f%nX(%&0JGX(8h}fF =FQIZ_O[~ruouQ% 9C'C߿^r־S߳]!ispN8R;Qf[Q;Ku(_wj92FCbd{ʹN^a:D- *30w\<- ?:7?5\)5\D!Ǖ7cXʱE{^YԻXԯ1k<~rMp~%u~0Ilss|aaUF 6á~ XJmMkwq5 ڒ,6F\8[7kb1QDn o?HϙFGSj/Ң8bS,KEeO_@PG>1ewX$\JpI F$ڎ!h/; :Czq̡iC~|dPE8^T,d,"9Ss+"_f!~t!H>Uw,NuW{by7#mw%*Gt$1 !)',57m%SXpOPDd&|q|_A)L pVATϫi2&3 .!6Ѽg6PtPqoֻ:VYu;9S/1Ij:;mUrUN vry;9EH"؃$ 0.[Xc Jß Nﱑ@Ch-)ٰ iTā4v>MњcLE0S 4w rXRvq ±`]95A @*q#e5'dJz?BA'ܿΆN}}rF:Iv8x!DH=7#bK Dhe Y=PYrI/Ru ?|kcT>iHS/zk:dk<v:sOe'oy pWslsdc94/qSʪhؔѓ{/P8'pĂ?G AUYQcx l{ϢHo˲T4;/&Ӎ 3CZN<鰼T@,V 击kO'2z?a}T0|a;V/v-Ei~,-z.oi5#,Tk<R1*Mҏ"TF2Oyʨo&wmE6 -Y#=7+5pR_۳6 D>ͦ\. wM| 2֞rY;EYx W{ ߘq+)>#G>.ijE^yd1zyEj3fa{ M,m })˹aLd= ՑߕJ}bʍ80rq} JSGW3E'«0ZIz^$Q ASn.lB"C݉eW<*reVdSॳE;.Y셞;aMPk= RełJK ݁bC7:v9o]bvű{6QerP)q*̜@kpQu"-/dEVi8TfH`D +)称!<Zb v6Š:bו>xnh='?7`rVCGl&eӯ/@0:ɥ<-"|m=l# c#@\C/d k2)(RRP?l/@mTA5==xr0mH4'`=¡[$Yx ׈,ZЀpY V|[\)4X&TDT=L܈Z(YlY5Yص,D ֧W\5VZA;odVVA'G0ab;%9!%pMu\;jfDZ2ᔃ1g-xvAtUˎ4Q-Bù; k> {D39VK=crQ*X:$|=L_^L-m0}:+5*^#v4=r幁t8ICʧ!ܩy@nN=rH6䋈z4,Pe K8'KD;k:dcA"mJɊ6j"Vn7B ߥi >duvQpC[}cT兎Lɻ7q)&nŬe|(ės!sa7B^0s4C\!\2wë]ZxVSv2T3_̦N؅޷3w_V.Rͮk1X5ϟ-R:_g0pB |^j% frw,9'׿M{miCI*E(Id:86{sVo|18jlTK͘noY_Y:[ZKQIoB{R|0X(fy Jy ^C6d>4WBIq[:leA\!(OtoGAHaosϫ=O?#OIt$jx=$s!^9lE_g<9;nn!R8Ne!1 BqX.ԑN=dEXXhEʺioܡO/WUVOh=DqpXB)+hbK0qYh!J}}WFaYO^me#{qzPE[Q/qCl$5eW=mjOzv s(_cŹDkQCd3ȨaNXFMЫՋʑ$L0gw|Cݫi$( T(?Z+QmZk~@u(fۃ|c:܍z4ܚ1e{`<&4äTZB^c|S/Pu Igp1p)>"R|vŃjT '~Ǜ'ZG(\o./.}BÁ}u<,{dK^8w}< &I'nÃmyI)_.VD44rt >T>{@Fnv粐ε%/݌ yYpEC,#q `YhPb7o9♂7ghvX7cԟniᏰYrvoS`e6aDˮ Q 1@dxKbp?V¶C*Az O#]p(xTud+{bOa`ˋ/it*$`Fa6v{͆Ҍ6/)֤775]3(lp%p/mj`H*+y;!!B`$l['$mW5 } :w2,LjYMݓsغ4h u 3X 2rm`x. Q눚WnQ~LځW<*Slk@mg4e[{ޒC~ qa{/!./qqT%Oe =N>@&ER8zh{-ӱޕohZ!#5Hwl\ p77(dUˮDRR3Aڈ|5*Qo3ocpDHW',;::yĐݮsz%Мyh)RIx[c(Q̹ʖgqz B_6tsCYD\Q԰Qjb,(C呔oO< T.P.E4BrO}ERTu75(Yhb.BIrτGXLn5fS̽r*P 'KGеvBdp쓠:Ks- 濉9%~:Pj `iCdUiD4i@y|.>p٬yu/uW9! &]QɔXn/kpʭP!8:>)vpl媬3E&sT؏n`° 0_4xh3V@1ֿ U!'ͲL r6xgrEAR DuJ= dn3 gxR z](-Tٴw͜>DL*IP7wаxP%%V/rӵUL9r$%DQ*!BGQu|=皓|2++mʖf:RkcI&:Iz'52. M>Up?$}^ >t3d{tdSa>dVŹ^2 ȂPplyQiK;YнuѸ![a΢'BtFZr(n lꇛ*`L NxZbT0v6?UmٗjJF b<0&Z@yXuZp 9ŏ@Ӻ}y ~,nSJ>k_Jq ͧXy0+b#(E"o+lD;a)?'.`A0EleU^vR')@T]Xf܆8nacȃO'<, VUsV\Z[9M[0{=CGP2#{K Xwu- SJsS\#ӎ"4ix,[6Psȇ{Ϛ~ 8X&@&~7lW,҆0^#;+z Xuce88EBʚ05S2B*ڝNE͍[+#+C>3v!|X>Q A<4BS\b~ɪѻ p޻qy@ry?(I!FTɇ*t;Gx ӑdH=nD@$fjT操w)i:f}vR%6jx  `^g)&88Rqrq p48x5OhRh! J?k4L9hT3@r) MhƋɽd7ukR| {ŒLƘQXxj lUV,x F&$!y?!S. K5"_9~(\}o-S֒!KPK%ZCyutapd0H^T1'FONT@+"0@v8RЗJT|zF) :ϕFt$ ϸU`(Qjr`:mҵћӋC 0}DĂ7I/"N#{|%Ku댌EA.g '7K*qfB˥]wa<VOE]o%=*?]r{hTJl+zgtuS9܈]o<.5O@Uϱy@]OAtIoޯKc [Q[k0z+x>AO|JLr\m0w&38KV-CHvMLMh:?.Bå6G1"*t 1`o M\Yz)w Ɏ%Q>Q? &~zlLN<`4>^7bT̵)簆H[!n8gx>5a_EX/RGfҨ]6_bVjDD@W\v;bw} * 2Ì&WE0 &'y̅NgI@;v3d"ȋܽpo^5̿;Yq ^G^)WA;Gq:75֝[*j=UT1[ڳ]fϟ$2vxuynTąc&(8rl$a~k ꇹ{)^95vk@UVLuɓ6Joi]Cq7G ,Λ Mwv:"6ӎ5:Awt .67wbF.-_L~%>@?2*t+dC57IʂR/#ZM-!]sUyJmJoPovg -tUG.w]o!|KtKOKБAZ]p+BdY{a1ރݛVixN;Sb3K+Z*羇v\%P -#:!k >;'./Njh 8}cS:3 8ftB|Š.(m䑂Օ5i`Δr,&G\{.پgQbe7G8%ۈ+ DVro0v6feq_/ݪ< L1(7P?q E kg*dݯ|/L)2$ipx!;i۶VTUpӲUڌefk?0Wi!3)|(ssMQ5ΰGNN%1-VF)n#MZG~Ǽr#oz{1Yii0iiF93d7@8 $"P}[s_ vO1b|/;%DP?O}}`2RČ"fQ{>LhQӴSc>kmS7 *1K$zHj߰@ 1W$Q5F$m" myG ^"~yޟc2**ޡ-G"|:ʜO%0s[&(^\vjGXp$l,!\$1'f$g-X`w =R%=73\T ,Y>G CSy,Q2~}%`CDZSѷO*r ^v,`3](|:vC슒d *}0WT&|(0+ݦS~_!lT\YB@N 6jwM2i/]" -CaJLS8 s,V 5 縮䦎CǵH2fMih:'Xnl_ π@ީtրe ?u؈SA5R;Ch{S Y;l̹&W!^XzopE`J#HGfXcIr)cb;jđ[umC3ͽ3%, Ƞ5V8{s/ƴUWbv㫆_$}w%[n(gB8Bk6"+ D%女ΌW?zr km:84(O]ۤXQS ց2X⼧9% &GS;0`{hH88^>(kl^{w9Z.䋨@w#tYڳˎĿe6ܦ Np=N*üPF(~\n. Ċn)# "-oR$+D?wxoN|Qp EYufKbW.t-=.*:Ij6JA2Fp\ kίj%# UZ?\j?6hpj_s0N)!T1xM _ r%ۿ]\ Wj}x瑜-*OZVmvQ*z&ԴEX&c=˘\?bN؈*Id͢s$́ؾ"_zE p=>/ӺYqEW}Nߢ^AWԯf*;) r1v'HMأ>8@Ujk'1:1l5 #k!J!Ljoc௖%`qQn!O?DubEMAR eӌt~WpYGrNzLTRUIJ48RͿ}-] c}y O}E m0^1)TZnRc2iOQ\kjZ@C3>>x>ٚADQ`b6t /kȢ-RoX~XckUR΋;K2>7]8vrЈiGFsze7j]YƄbܛ"$7wΌQG`cPF ~-οʙҍWbr𙓒7a:L?,v[O͌J鯉^#X܁]SЉM'a2 "e* ĮL@~D T<#b51IkN sxh>4 ɹd?my?F[Ր8RφZSS8|X7b/G2tˤ N%v38L;3*NK /g,"="JXzBqD&dgioK~z3#gOrS`r+{$rDT( شXxto~C:D~I+ZJB8qS^cd-!~t'qØԩ`[']&P1'yz܋2p !-ۦW?jn*bozYoiU#AG-Nkr ,R  t_ +gXmo(Zb>7Yو{P*hcIT.k~j镕AK~ܞE8RHw{u=JƂ't8"O'h\kS3V|ϗňHM7'JRou&ӖJyDky+h, /&r/Ps%mFe̅V|.戂* 0J'े,Cî >Y[T]/!yrcKXCv>aSK&Ȭt (r~՚# vt/l0UtVe\y)`:x?|Fv'A+=Mi:d($B3KxJi8Yj(und*wa!P]MW[gwYl$0J1TMvϥz*uIkhLNL&-WA@bN =6(kuو&B<zq~q kK<:jٓ?O}ȟoT8Yg{ވf3OY7"h ūsUYRlfEFmZrn(Ud",cedjǮgӪmj^/=`֍,_ xqJ/H#`5Jbڊد*V%5Z7ݑ2wYXVIrƁja\EN>6-<_6;єn Bwӈ}FX 8=/ͯ*xf́q?H8o`l7 `;t+ p+MTWD7z}?3.Gl3@~RTT>I's%)e +8276ݚ$; ,ݧ .2׉?k_zm? \$#O-c_-nRD\gѺAN6K<@FtOo? yi7t,F;={8R53L`&Jy„K6 -A.VoixZ;B\MG uՁRjME 9Gz_Ii~eI6Rp #6UJ8aJQF=K{ ww8h4- H0Q2S ݸ"*aM1w)dݿgh'1 dOpT+ DqWдIn.EqE|(7#i;x|z'ἣ @(맚 (ߓ 'yv`qaGˁczrwϒ "un GX[:Vc袹ê𲏸"+mLDv:j0gJ=%fa0#mkQ-<lӡ@>3? Qn\K _w13r^&zbޗ~ 9GЭ=L*vvPɝWM 6Hϓ[;l'rO s  .2S7a ΂q}$6'Xyk"Cxu]8뗚?n&"effКlzf n 1}m $ 7|ۍCrgz0:*&&"IB#kM:~jѥגbDyP JX 뎈{rlg[ N3~?VK{=&ctK[ӸџEΑS!"xaR[70bTH!nS)AT:CO[lC9 68SUw""3˺)m,r*t@*͵Vm$;|B +qi`,qLP1+Fx$2S$}kC.-v[;Q]-D1}SirZ`V^1{ (oe7Mpq:EiV5wMHH2 qB:Ԩ|U7`Z]L 6>>X+~rIŅwE.ht]Ix=82tplOk3! A+^& n1w||A}w*jP֭[nc&%~0Q(a,ա]# jm?)^=1ɴ)\P`}1l&r MM}n!M7ZХ.MAߦ~ {{ Dɯv 8qy~5;R$m7gi˴ePGewBB󐥐lˁ?"Y7Tiw {svIFV?j/b%I^#qu˞渮)24>p۷µB ? 2wƩs^ a.g/d>a0XNxݡN1=ip,u$S4wZ a:UvrՠJ'YuWs[m|0R$$p("T,dgj XLA:>hpNڤJ_,Rf0!!"$pʬWfM:2n7xiux'`Mxg29gbWTV\BU2cxWAxx~y]H)iqM`FDZ |h'ExU2z)0UHbˁD hyMj\tM)oMzV\[6\|hIM 6mC8'WUqDFe?XH^G?dOp[v?z6}* }b |V`J#aЕ9vuHK w b $f7x6!#dyDaM[4\ki ev`/,2QRq[, ^:8R c-ep?8Bi 1K~ uXeA=޸S%eAb NsERylo#idRlcgK$AN7A|C^A.]4TgRCw*G",x)lƻT48hp^>ls~Gv?Ie.lAlca5x_cC"hkPZk[Xz'/cP/: ֧cd WlOH&>%ƨ+JUgsJ_c1"G8_vܳ3.uFs&(m\"chiz\XhT@Gq(: t `(LB(xyp}9 $Aw5KAW ]a|q,/j֮/3g#cvvԏ3XޓzNna=ْB:ETV q\^H [ ۳61d!djTnE(!6-M&Jzd!y(F Kn<鞀;@st_40,=UWmq>uVDP z+\r5squ_d{prW\ ɀ9$NLZyZ[{ 0/`K88ndH[e0 hxJشa%bFx'.+4R-债F |@n44NlE9 O#ZKA>']oD ?3.mъԙnY/E pP/nXڑ$XbVj>j kٻHeѬs']˺U'o 6F!=v~Y:zIptNE}[Pǁ䠤 :a 85K)z͠'nj۝>]ckF,>YΨSv$J,$v9.au!O15*CYwN1H`ѴF?-*W}hɛb+x6DlKXtt"wƧ5Rmel2Yjɢi˲zߎ[33A"vVB2GDdWXhuBiώ " 7X _5#@>b:x`)*5HɤAJ[uWHk՗wYcbs4C{*+VVt뙮MO1Bԣ)wVtgqj2 qWZЦiЩB՝W@p$V$.\q#hn 6[]JOyV&9r{ָw`D@]Ra=5\ؾ>e0N:gR\Z H۰>G ph>Q߱J[eGo9Vh!AH˺'j')EQޤ 2 sɧ+U^^D`${\)^x2Gܜ.IɇJ%IE4g_5@ rA*T8u eŊ;evttvXv\D lsSAQo_{H𤼠F.UvCT3>ԣh&O EYJN?Uo*tjμ}NSF"rqS4φ+Ffr-XxUeU4xү +i攸 ,KY힐]Mk^xy٪{ӵLN@~ӸT?uFAa'$NrhSp|uV65lҮa@ :Uep_Dfj EƎY׃2ˣH1*Vu@?څ&q:”ng |~M zksk(boT;0nPV۶T:ƕ@ܛ3ˮVoZ!G mg/in̬AB^hFSAS:1 T7Gm-<ځ"_ȑज़zw`r΢I56Ԙ2@ t0CF$D1A(.}3݀@ xEqm Cr ^KF%+A䓐{Ln58>$ocUnq$1 Px^|(Ӕ쨱㻷wvҌq 찟Zq 5^#`PQE%;V̰qd*8cA 7& =q($/ЩneAU j=;31λf3zd^C<)/_GXU~Ɏͧ0Mt1'hP0[e4NCU$\\-^eϗ<&@@+ou&'K. ,Rd]*a_T;AU8L$,ԻI;uSwPH9 Ռ̋Ò޹ `8S #}z9fzl)OtKz8=sA~wUjhjH@{]-c7Ê;[_Hg x??3YJhBOm!0(,8J\/Ή;윑R/*ef|{ZE|w~0%C@M&vzA2C- 3T%EV"xa6r E#%mV6ZB1q\%8AAR.J~7CWFj,뙓rX7;wltL$'5G֔r7S7L{uT)FLt"ep)`u7"0eA0B H\kBųtuwZ7ߒP RBmEx422Tf79hrzThtR5PelZeEu+nu9|ԜE-r]rgQmZubvɟ`'/'_?Thwj zd@A8푅S5YykKZ+xj}.״Ȧ"٢i{dTOlVk<Sѻ<"fYZ]ա9s؂Y,ϥO'3;RFEP ,ߨq26M'Cto[a*ʜSЖtz.:ZXSk^(*N_г{Q9sE[_(@MMUotf>-2yjߪ')Gd;Z#TYVpM^_"u;mEEB@7 /%pd ۟CVRÙ09+L X.>%h6}>S YOUMow,)pƏ`njEi@Bs#Sv+ch PPp~XuhfQā#&qgu~UȵdW4„*t tfoN G1я̋ZaAXAAQ%j+TY6OZZ*XDۏ|ܵM F%8z2^3 H moc|^K"P!ÈU&ȀOU_8_,dLMLY/u7.J]oE -pYևb|L`&p]ؖ -K ԰F2Xi M_z܋д'_UJoˁn(RĖoJ&}wXͿt\':$H$5 7~>KϐPr.:9 6@B˓郙}f^3D6/{k}:RYfĢ8cq5UަT6QUWx:b<; Xe 02Y=Q{~B>g_`^C չ3hBz˨$BH@ G2 6e Cּ-+ekZl|z SD[JUC~0V, [{T0bid-C5^R 丯'NX\,+IxOE7un6 `lO0 W{*b&XD13F-ZPn.-&VO#xWYz)ҥ:v9S8 f͠D) >^(d=WvVϛH*@=;mI4Ι^-gLy[bg//3s-t.Y "5X}!qHi>.6ϼZ!D y jTQ 27b7Ɨ^NsT2`6F;ɦ'5(ɮ O/ 6=7m9Cn1/UB-݄kl&eoGClvI-S+y3L2%sxaqUDS!O g_qZxCDnQ1sYik_*!h(Nwt/8*7o3A7@&yttAOWi %,;Î^ j̡~Cl&2n[RރL"XФnt;%)K=vº; Z8(4Bת hJɒXzbW|m0ڦ`+ʃy7r/?ڽ7_w]a_=b.lr6*z&69!hXtU^iNg ^Cn $bA*¾7GP7|#>3LOXC^1}js{k1]?w{ S Ǎd6KLZJ>9,{QnԹJ.rjBFdI -#Wy. xId+hz!G8 mISjtz k06*?+&;We2YETi:N˺!є"vhnB3̜GMfҚ"Ɠ]Hj)ݐuuF37xnȐMޅ#;)wA 5AJnGEz)_ YV09/xd! i]DظNrE4T&JpJ27HG/v = &KZ"2(IN+h(`3HyKm\noH+.Wz}W<GJgcE дg8@Mon` G37Hg `1 aB<2cDbwrF9㖷,"T4lLPem_Z0 Bb,MT,#f<} PZ@v'Hվb1ζΠ攊؆ݖ}Roj{~@ 3>Q{bjR%gtB7$ŤoGH/[^SvEeg?"~Gr0jMh.Zl5-]2@ 8-2b<Z?(^77z<93+)сtMʩ+0!{CgJ@Wt>hzKe_P^t*P<[)R mwx楃~:1WGjwm, #aGujFu\j#*fݐAm"3_i#ϱNNt&f+<<;ߔX^ūk]W!_+UoA?2-h.bw !1iݿ t Ƽy%2n:R`)7w+$;ezrGnw1Pta?NZb=yT ʏ[5(j,Nln]C^CTIpҊZB6MaħeKF#9 ZIo iT&x dgP2nj@h]O{A/fÒ|͊*crm/{KcT͡ZXWjieFғ)l&p'h2 MJŷ9QӤv$J$Nf{H񝎣;eBB˷.gAu( @=PC+nbnU`(2YO1SP9  NnMJ\|IR YcڭXjǬj47.T]HcZ#HS&k85 ` &s*?EjDSDQQXM=y"8־e8- Kq"ovߌC[[WϸoY٤147Wv9J%6cNL)];t S,44]W=5@WeEaI'a(wL3^}=yu~ZΤ_I~a\CֲD l^y5'P^:W9x#76*[HofG*MiGzn ^l9J OԐc2F0Z:]pxbAaqLYA 8qe<R,F{VYL3@ 7ɪhE vI4nhn +Lq@V֊'R7.lF~P4rH|Y?[re\wF Y?&_>zU H8G?{,^7+`k!eurՑD UHɵ [CIQPwס29hF5K#kyyLe{Bc4Y# _tda"sI*T ׊ch8yYinn4g6Oܺ )n) .<^&>n(v@R,W2vY-T{Ƨ>/jˉOA^KvURrKY&P!cξ;tk˝¤%h*'JjRi/\ő})>>i7Ed T.2DW΄ރĄ6 @%}aZa ,A[SK/V՘\Xʚ=(x 61(hQxZD הi [:I#B2R%uıwe (^+N|v!58/`Zh ܗ?(u"2=KRr:X*gt},|Fq]͚g XSXSNz|L$#~ZIZW2$t7AZH7<$_2@S P0{ %ɯԫ;Xۊtь}I; J6C_* |Q0?(/Grϥ\EdvwMa@HL րHbԋ@joV\9F8"иٓ(3齎M-8E۝C3Tqhǡ#ݎ- mYZoTd=I~IS>WJM*,֕2Gy4F=,gR`;| B>6%aoV0aQ)ޡvىvE7+?tCE ~}nAUG- sDnŽHz _TAm;"i%2A+ gT3 K?{MY cPSIcWL˅zp#YPqN_ۗ'ئfS0vqD)xL^nsdmTO(u"J@ *0<0T[YCs43CXw?Zjc2R2`Kc%nM0|Øh|@9 qB+[y^Iv7?Fc{ZT{m&* We\$L:2gW/]+ҚiH[\tS㖽U  h٣v[eY)%S!qZ~N4 qrBz3ےdJ فtB8]/ce#kʤ eU:ew] y ohrث!VYբ\ȳ@}ջXkxϯ$} \*jOwَҾ'q{u/9&ťT-0[Df?A܋Id[Ou;tt !2_!L.[ 9Gg֓r*e5D/#(G$E }6M#%4 驼^T,-JeC7~K! &U8vÆ?+Os%&@YXWSZӰIIAoQ}WD˗H!ÁHjINop\5@ka;iU7=D=lMcͣN &Vk@Ĥ\j8 74,oێd"JlsqR@;1a^ر2, GP^gfo}2zWSG<+WQ)n")(n_JdKe8֖BsR3Z`?JU +a^Qqڻ}*V l6bK ~l?5{Y)uo)NEo o{ o×K2/QZp]UvC4|J]QB`5z: %]K5VO60C4%O @aG0F'yF7_u7Mw# $˒@K!y)Ad'391@dw (ғ/xhI_) Zf16xBYIBEz̚1AJ cosKq\A+^ޑ+@ Q: sHa ގXF c !O"{d!_W5;l:{ $ᆲ͡s$z 8],mMJ&5;W"3rbII5bg!)n4%'º&;d3)(> r\4X AL嬲AF>-D痝GëI?v*bTKyDuZOgʑ*o*K&Ut ,qriʞPl4*yz+AvЩFjxˤޙj:C6  p@uCV'>EhBxS#WG7[]l.} é=["_‡+IuȑNvYJ]?!NeI)a;n8dFDFiAx%κw%ZWѯ6hU̞򘕎{Vfz1K,~>?\uB̐R4ml<&q'o\!T-6Nj1Ω:E rp D1 'qQ@Gݼ@AlAg{R+~b4F#Cs#*u5vඇW9|Q,h$6 Ihc[@˪vBݍu|>zvPPp11㽴VD01m!H*FP\o`tƀ8&;ZAoE x~B`Ț|cah4I18 [W P۬I,j9{+@{ꯊ̗u N}-l rjM3oA@X|!'ƇbNޙ7#`]awAXqm,:vlu%1J4tpAh3 (IF#xߴ][~9ىjrrPQs#ׅ'sYX`W(>^&?nKI7)U:N&NO0?u Y4!7n5[.T|8 +^L;>HnvOy{Jbߝm.=c_?P0hW|ޫwB{uʱ"X%"91] 0)G1nɉ[wc 2wv)l\k{NElUoar Zg$٧/~gGXRnNTɹߖ-+0 ;^s8wy7#Tl.8alxQu}_Hٮi(s:WG|.,ȥdMK(8 D3E3=B;;5?ԡE`Tj(̻@,Qsk\A~-hGR~|ta$e1|`©bP~6fD?^jgXh4'({LS`4cwY>!H^S#QybZ s뒩Q%/wU?ejdf̥4Y/?(dNE`~:u*>4؂?*%JBx}!h]M1C?]*2ݭiMZT.콊ߑDtČ<_ v 8A8ɷ q$.> DW JxXzpihe0 *;'Vd$NLOh[{};`nf2geJL7nAk;hMP)5R%ꉡ \C ;t}%:W|u\pZbRsF93_Tp,F*J)ݖ搟Ć+-WUWm-mxx01_=^zhu ˤFKqM&Y6< GI8 a5P(~'ov>$hs~~jI}Q* &x?.lRt#Im:m D.u՘;!;FX),?s&>O\_\y?\ހkQx{v^$tGY# )1!flSfz=IN%}#+<gU+qz.X_prEɨVK5[CsWvjq˔B>SzJPgzL!$cGKJ":Ɔcŭ_d*k k !Ii-D+oqj3xS0k Ph&%1zm[l/RJڵ\o$TU̞PRn')SR{l0&ƘqN(9s OCv =fZ&}{adx=uNYRg$qϥ8e" `lDŽ\yLmxfBXRt"NejR[;O=oO$E;4CJFdq.PFybp0d)5ozȗpdjx4\}tB2 "e~z!2_>//pE!vu B>eo%nP|{o;"2 sJG;BԸ?qiy1PJ,v1m3Ήɵ|(kusTW*4ub}Vf#66IAm%6pK48հ'QI:g*wnM|_*5v>mKz?jq[GnZ*ԘO@ /1hCkhv=S;082YP2벽^ ? l#.3i`>> ݻ?y2U0))4VA *jM]AL#K?ϼ.>4驈07ݤ?מn ahU?\S.|^+ &$q]:)p~u`72t^t%ٕlghK}SBT `cu/!(tPeV ,n.+%RۗPLоj`SE-4򶆔NhplppqS,xٚ({Sn߁]AQ+x1•zLcy&MZDU}mG.8.Ѱ=c~Hoe%᳠[wxuw~kDϯq\91|waxĥZQ׍G8xn69pUN45(xz/U~G"?~1_m [YZ3Ag=/f۪֝df-zNhtL }s Qޥ\}=%œ; wnGPv P&lshNm[i|NHqv}4QE$qWgWkF)8S-9:,6#Q #Si P1&)\e`Ő{V5v,{WV~?⧴7?p]Qq";AY ʻL귟8yrMw΂ rૉ a]6r\oISL[b]-Z|");_]s/8,J"ն:KE4}ndܼ)l`IL'2T+UjeK %}Of̮ ,ۗ oz*UAJ8}:!!h2 %%ҜfP? co]i^o#]]p1HS7X"?/Iߞ@>wL.v( -5pHN'mZ ;;mv {1u@ru4`o ~b M@1ʉQɿqTS%=ܶQfuX"Jp9XV ~2k5jޗ>i 5j`H2Zv증DJ6ZK)iG\_.u݈-ozsW-|~bcuk* z|;jM;#, vW틴T>r` пD²oU 5^`B9)~Ou*!#p$j:FЊka-u+vk3AɌ:6a "~OSWsVRIuM eaJE bU!Mw ! lQ_ y;|;wEF%I>J> A&`-eܥВ:Vb:[FWx „D#ӫjhmGF~%2_EZ t&{$'ǔ&S1sBҟ -TםMz[VZ4lF!mO( FOq)^PQ--TWUc?Q:_ ,}( _X =y2uOw<*7ךSu*dM[fIrO~/Om{{0@ >Bϧ!As8}NOjKl?&_5z> tѴ@sT\3@xL`{jѨ괩L0 yY#bJ svcg2X"^hI ? T5;>mx"bIn,;K7:A@,/,*%=Pݽq| !#o$WG:9s"/։7B}^s jRzdv}\ 1+e_@G}<,2YAj(H$f3n;hC?0V&)T&9D٨NXkySFάT "?RnJ~?2Ia/pMxjOcޥ~ <8c3G{ bk+(u玺 pN~isq!'}1*Gرt;0L?U^a-~}S"u;Bl;Xd7E-N/]I@Pҏ.>mwE(ul#kaB23F$ζ7oZ.#M0Ou@][CrkEOf/MM- rM^l{Ӝ!ھ;MQK(J#9 J`@`M3 (&'{a%kky}?7*\/-Z 8?%_WيG: E7+iPlRBILY,m0ηlXkԼAЋE#vD fyƂu,Lܩ $s3 I~Լny@IN2b*Xˁ,>C"c4ؿ疘͸2{& Tv- K%!\F2|!Z)rinaux_{$֎ 9R#K?,QVdw#/Ys? t#Ф B)_Q+8b;W݆F+WaK>i~|QX: {`9'~SKj55v|M$4BLeeǕ/W>lX K5g1JʼIҭ&0lyY(ZVB$CRL^l$T2cp"d2|[ڐL W5|\*muda-&gc[oW"a 'WZLX68 k?hE./)&Q:zM>dH vt2.L, i*R8{Qpsx8Eei,1s%4f)OCdZxg^sWH ٰ"I:U"Y{VĀjeD,̞9>d>nHҾ>B X5UkhRK]'§2u :0PֲD~J#}q[wغP!Uhc\,]iV~4F@<@5-ľ <\2u(M]>JA(w R|3/C?b!xo F[rDNLb܉w,RT:Ե#a +塑qZa))ݙ4ⲈW$t /(T4B =`~%%FL o@6UKt"ե./@:6{@P<3SGœh3:H:T2jy}|:PkB1ī,N3V'LMt^PiaDWL+\YI0g|m얯|jЉ@oPT%M+AGޔߪJxi?%>m,G[Nեx]v2w߬;x܌u@vіdu'#Ut8TOW*MWѹ\!{^S !QSǂ*cV}CvwwWmaJR|SwCQ^C[Ixs 0p'?ᰑHw=MjdvLJqX۝#DSAkFX;ȋB{6a3Vwy;H3gG/Ne:QJ\ EA{T W5t'kB HyIrL=vƖ˦  ;7c(}52Fol*9nۘfbi_K,U4FKBa Nu3#P=ɝNk":я6r,#@8_(wIl8B\ F  ( O WŜ[v :@zhM"NtTb8H⳼޸+@h3~O&0L>Iq@+F&3TNc0v:3-Kf&fwu8FֱKU)lLj'#nư?1𵀷F6 U#co䓧 +E[͡%^svi'sn3Kܩ;+ 1 bV1ܒS(10#}VpDWhη\e*MY{-*7"Gc  ou'^#*SS6(9D*: 5ZU9aٓ+EhZBS)v>U"xx oɴ$;z>g Bl)<1 Gm*Ƥ}լ&yݰ'kgO_A" R^a[-ˌŗu4 l]x k.iֽ| oX{s^t &&}}V]i"s?9Gu`yVlcP=c w**^FwLޞ4%P"j7x_7?'(eF~ |h:ØP DXb#!{!yrM^V!Bd-NKxg•oz=:Y)}J<M8xQ; pThHtx[[b/v^7ၓwO }vr1-#n׸"φs]rbQү|KNv\֍̶l=T yT-.z;)5q$a!jI(!6EZoioYVD]}$X'#A\sK<U'#NF9d.Hj~HLOѶ,1 2|rIټ|{JaS[ʳo}KFvyGt6XXSlluRˎ,p(a{ r{I9>zƬ2?N$~68 0w(042x\dt*չǩwN _s*0hHdžDQإ;o/4C=J~U2b/2dDi^;Ylmd W-D(8 !nΤ!Q)ȰMX_{+|#3$/<өFɇźSwrݜ͖C72@PzpI1go|ȕiJ\QBG$:t],rZCxVs6}y95CP Rf%[o,0?6iydQ}=Hv cd=TI}=/ChALfuboFy:ft^: J*j̟uFPt>GVzž߉)ɀԣ2 N?';gQ@#qo~tTEeZ, *^PEjaQZWv Co}gWM8R!Sw ]؟rdo (iASF_1u\\|1Zӧh U)+?=p{VZ6R] )mo'I{VԐ̔k[w}fyKmG䍣 ^ƧCf0TS葺qMBgⱀXC]GKF`>yzH9'HduC~5| A۬ѩ~WKA_RSkJQduNhawA7{ADcҼQ72OUDiULŨ̦#;QGɷMӁ5ՑrSWn63¤w_R)ьR:WtZ_sqMܧ-0_BSb>?\ntܘGqg4A?1V%KPҖɈ fI)/s ѣ/%6*6P^FɄ>0P w߭VCLD"ӶmɵM`i *<-}>QSi>0tA&IkB-?/VRmZ lBk9m `v_Ex+XJ"};iί*=^-/@x΋&o"E_n7 ^B{FuEwRUTW8Y~u|~^@(}<?*ְ2p vzdH|hdu!@kW&+56 NN^ÖpAJKt{#Y| קF?h}\s_w Ҡedg ƈؘa(fj>5Dre4(7u<ݐxq5" DqkHFv|z}ֆ3+cYVaª#Pϕf~Ԉ C{lڈ yd[L@4(LRXXR.&EZF4l'৐ jRȋ|IJSHu{o0xM# ȐUu9S%KBGtb’R)7rBㅩ#VuK˴RL9kؒ"WR@Y ۍcce_YD Gu9v-¦h5xIUk s2.\7vC#0X&Sč0{C;H(Ҍ  {LS HB2fK/.Ӳ&x;e{۵ME_1[6TAypI1Rz|PK C%bth7lY; )GsNtA%54B5ϛ"'m|D8l j|&7<*u+ f[,z:i] Ԟ]fF=גP F akNsw!u>8kdkgwHфsjvZNʭ}׀y~8T5`p,HO"*Fynh~Ԗ8I!6|IRٲ]b{-@!*9Sq,1vỬ9!kxݹYȘOAq I X>0x/8CQE{ym ]#3UGVܤH9+P4DD//m+d /ⵯsrjOQǗܒM=nΥ@8Q ,mo9|6~ccKR Aov Dwڠݜ\ ڽRj0%@8V!yuNw>K<o*X#'2K+/CC*rc o6>b6♰!ry4q%P<9 .,G;S1n.O䬯,NLԑ}hK(D/Ϻ&gfٺ%<׵ћd6h@oZ S=}TR2J&`ԃ7!(UFWuEJc_&`HǒJ0#QP_,ztOYőz$Ԥpd!cn5rUY5Z@' E77F I+|Lj!C-:RPȈ]| `3XN 6 aMTe HՔ^5}"܋),lR>voztQnç(RTG`~nxh,Wd'v#Ut?B*n&+:Zx!O+0Vz9 -Nah =ByYj'_ȫgLB5Wg$"2PcPB; 7L.I'zk*1 >hT;J,{#ِ;p13q"uc`M:0Iڠۥn8)jEs g YEx0^RO=]b6A%Tg4,>:9=[vi7GbdeZk}KxgIڅ#sad="WJu> ˬ0Y 4_<}U`rnx#A;S/!x}/֯W5  h-:)2 yq}Dy7l}4ڵnS|3P\cVmEYڅ.%ډv9:w@[|j'S{IK"zHA;ƃjrb37Md݈x ɩ-;5VTlb% K81|t^}Wmzb*2`ųX"| }`sbhg9*oU,L~i$7 C7Pl-)Xf΃..q͢6 VHgPpgץ H(o531ؑf^UD4\= ~[(C\R\j"݀ɴ5u{58kNn jl CmOnQz, gW,rDH#Y:DHfq/Y`h>dk8#fSټ_7$Dc|e:5nZXHJvY}-͠Pr(yƦ]',ۭ\1~/Bl]Ui$;B/> M~!>L9 +<*p٢;VeUӄ_eMRL"H8f'n {~pۘh)EӥEQ 6si8f 咐I$q?0FWumSN'hgE&Dj!T~/-*FOަ3LyyOoKNo,x–.jInay |g&W15X*+"'\˿%Q`L݉c&ܾd@\d 퇦ƒIZْ0xZt[3u@k(c0QþxZ^(9`Ƥ⿋wu}ٚ4k 聖M(~G Q]ieuxNg{]`y]>Ǐv"JdT$ukSR|C&~j EοUYA{fq oxQ(Ϊ:w_>[H"UV\37 HHU'֧@H'Fk?={i0A˄} hϱ\3k>r,I%ԬO;z.`#t\Sy5_D=f0Q7 #/nL¤8cfiOߞ'` ^䦥w$-/7<4B|W3q]hw<]2b=QD"T4˸zEav(LXO ?QXnQ5 jҔِY?aEZ~N5~~c"e# DB%/;][nþur4;==~]KT|pE|:4P&2O)^0}WuCٽZ<-FU]5YF Y Mh7?{1_P遈Zn-?F:u]&S5NG`1A@T+g 7sӣYO48kQE#8e/B^_uMlKў, tFT^pW$_MV|nKPueӐ*( d}wM,?dV7J|)M:S \jmPWG2 @YHg!x8)!y3$yd$@PUbP3յ6wTZ˱o_ 5z4ʩ/kc)&[|G`c(UTnE,[X|$~lVd;c-fRdA]r rs6"} a>gdb+b; C!.wO@r^b۪;8~6ZwC3H-*j/vP/aVnle-jQ $Lf~~v212ʴp k]ƅ>".;;W ;G(/wlH@~p'w%;5>4k@X9+H:/Z:''2(e3/[>ϔSM$$VW kq7M'vCb%RU 2W-϶BS2$Gg`JJۀy7En (5wZP6@<1[ۏ^2M$5M{) \P19/yݰ,q%Z`/&( 4_!Ч[٥u[0A]5cb Aܜ*/oqҫ{wQbtq}oOI{q@g7tPō]g߄ 3t[zgj<vPM7{ǧo9IX<0gfxySKԐeÑТ\9]iD"k*0 FLF /Ve n tc#a"yrb[R-*;r*b! 뙪jJt8?S)8!1ؽ{yI`v )SP 1J[xqWu @0JH\zŒ@ΞC%$aTΓWPbHq%,ifu=Ӭ;`yyM3ҫݎo1u՗((( U< M~rvBtcQ icΦ`Sae7o:6@6_eMvyP4Ӥ_挥&F Jd}Qn\#[ւw[0 ^-K۲iH|#Io'E`t[Ѫc=~ViX?%=0c}"QV.Ě. r.Ô90q ⤽) f DLA5csUtܗ-pO Og()t?P;LO+^r켕ɾ~'s/hAq5be:̀:A@u3;uu=]]$ȣ;cX|dy'K;q;U<[@u嫁d7jMM{H)!OLu&cH& h:gNKlt*TyrϓlW#w2,VTSnSP:>!kJGʸ'.> a*=ĄC:D3ĉJ̓i%U/=AbEb)/A-1(,K-ߏڡxhNP"Qg4M;z9% CӖhVL<lReJZZ~<# ETVO!+$4t<|w z8y +k ljߛԈ tgc!֜a!lq7+ZHs*y|ROJ$~$ݸ֦<rPżۗr,ʾb2k ZdDژnl% K@nRobWh`q?-S's>ߐeꮢlO0KZj20ZP.hX>aW.Jq $yغeqr|t4RiQx>>Q~80-=pzc۷}ɓ4Lu!9:fqV7:@Pu4,pnL F(<==r@F+TX`t_Xcu8J`?R9 c{+5JxތڹĥLrim\Ueq!#Ʃ\Ydϝe~Y"&@l М3e9jCa!Dm6O#n鮮oʑ&:ZcәR6KF{ԛ$Tp28fMxYBw4{2ȹ %5TjNPCPV ┈{ ~XUr1 so VZmwpᰎx܄ 8℄T-ZPpL$waX>İOi@ty9}Wyvo؂|p`75Fcnq|SHlٵlΘ1yhofWc9G]*݌̏0DXO'ۀ4prY 7^5GY~Jj) iƝJ+ImW{bs"Nlrq@[=>#|KmŬ̩U:K (L_&_*9l!*PĈ] 5рb벯/[ E41QtfFB"msrUvfHF݉r+rs"NDL-֕h͠Z|gCF6~i= ȿ@5!Q:Ϸ!nyمƲxE; 2TZ3}hsȷj Ftږ`{(v*Yc52Vʒ!PoVk؇9Ms`FTF'KS(t#$/y9YTki`&l+[#tc0}R{/]:Z}?JGnj5v9B[px2VZ?q\HCPnE,Y{r$1^ǯsލW Ks*ӊezqꨞ:Ź>ff }l'!G"M&ߺW[12 ڱߠX8vJC-(4Y)u/HvLz5dˬw 뱭TD79: -UMNqͮqE?KQlQOC;m[$%eȷߜ罋h'-N_hs}$DゅuN~R@6O3Iқ1:lsUbqEZg\RXxEiT^Ko7m!?'$ eR~r-XL?ոBQ)tO?VBҊ*c)m?p8 ` WkB'e Y{JItwUYa @ _{'9d~B5Ѱ^5[G 3: ˸S7|y mjU0 ?]l0WX<>&-R#Tagj=AnAolѯUm(Ŕq [zc²ˆw^AUAr d6<CB`5Bz^#*5>BR6vH)?Hm e;t/, yKϣ}-{k4/fALA\6 1>i])򦣼] ӣ3x,Hl+Hs|N|Wg{N)FI6)MuAh?SP {O0~"M0LWE!IL_cэP n8/$ʂ]W\3^U oyIme5 {vIJxdqvwc@3+rpH+3.pFp1C>(#Ѹ͐r_,^6˼4w'5)>h |؄'4 +7?l|.:/Z7K QR]e:MxAXοjnZT󲾺!f%@X;82'pqQ!Т:2 z| y~ئƄ =7 +s 3RD/hD%!s7óv[ì_:)F/uBf])_fg~3_ua- o'3nCe5`%Wu-*Iع7Uto|@sCj PE7A&ZMJˊvK1AkG,{ *{ uÓШ-2ux2i p֡_%LMÒWBDIE:,yPcaUt84vgGH96]WmEoK#r`@7FwLsSۊc3 N j&xl.Rm[!ͯՉFnRzj Gmip K'xV+4 (]EZCNPrw- ?ݎQ'Fd!) / O߷Xmm Q_FaDda㻢$i,9iSJ_:\\IQΜ=~_.??YGl[vU7HOzⳋ,,UP5c;0 .Q&w!VAGC4_f  yɕ6(BɸJwa|tJCBs^3G:=J*(Tfgn_f'v> hoצ{-Xg$\wZWTFQӷfE`16@TX}@s·8/. k},'z}Ѯ .*"^ry'5>ҫSv6;& +&j(0-ijmg,ʄ-|0EI]~ bTpЁθp8!e%7P9`{ ;2.aYz "^ yܝ9t]-}.ͺ A{̏)ϳ|mZxnC%'Cp(٣Z\zU0+QvgJU&p/L 60?C#2s5h}mgE"G`*`uY&DIy /)@${]\ZdbM%:TʌKnƕ /oo@\kOi0Ke)C5>opitiR5>\c4 /26d8[,2Z;L!w-û0փk g3!!/ә$X(9 u*.֝Gxu$Y="}Q*wD)1Ȃ/"kSKAzPWƾ3:9qvG㲐ѹ7&eJj[굲;g;D1f!2瘏;cbVdy[M #?hkI-i*:gB#!\ B+<~ :V ^+]I+F(U&MOrq1vo`֝[C40+00Q+#i&Y@IR T{iz_2Ƿu}}ɕvn& 3Q4aYgm*(kԵY8-hO nq%Q;".g]R$VH ][ĺ?cH_7n$?:k6nH̗#a_mj%JDY^r5eu;E7kv[-N=x{/R#_͗W;3ixSKEC$߀14:n<=2WɊ48 zmᬷd86֣/Ab+(٠[[o0EG0Ӓw0T&+=}/aY_%pFA1tϵgʊBA PHm*Qs$?Bv Kmߠq릀 vu u*:Lܒjex~͸^gÏ[3I贈UїTFmUya~o<䨯ܻQ*ZYӲ_nq=e'c{c摩9l"n}YXgӹ_xQ#;:N8T7gGO {n6rOu  bU}{TyG{|CzKNQ9kڐĒuźX~K?H8܂r?S#QJ6GS 3VT M2" >bϙ/fnB(W7e v`;yA]i)k))[c^W}马r5Mⴣqꦏw+a+Eh+M?(xGsRyUJ{Dm_ | 4뵋:? l·cuА[3txakW e(a ٚ5ynJbGn3 E/R qj,x!=o%PBovpˬ]>5 jU #<ؙMɄITB3$2;&_~F-?0vAE1V 31yPˎՇg+J!eeiS&dKѺL[^XBt `)kj?ubFXTV#ZJ!%<%/ǽJR>ih?;>\ϘՍ-S 10aAa7%z A=UчjoY"1GW O_;üIU<3s+P7MZUPz?^kzP@s׏Fvtei,M玚yLĘD#&Q> zY9K^E%=+0 pr>M]yÔė'42[.mdtm7xԜ_7f2ڥlcvױEؽ45Kdqݎ TTDA9M/|aԞ_(s,>QҧB@JsD08Q| L;i6R"4-97-3mjI3p_B n7*inboddel269-Q;H*H 3V!8B-/;gG8Yե ϲFO/v9(1gOKQ1B cTXΝ#k8ө~Iy'a#7;6&W&`\e]_OfE${w+~Aҁ ] Ya.3*-#Cg8rqxS+A ꃭ+^>@Y^!`>;6xhlY.uQ&1;f%1kR-e~%7 wER`OA\Cgv#(XZm ,26/"$oG{T*8u*eb£מA8҄]׹Aq;ԯUګ`("2Sҧ \&!=}V;(.j<5R#_ŗ^,'<6`WUu8?]5Txz!d7xB8R#ZqPpvݍvt U>;Ո:ONL9i؛Crxw,H N/C+ReW'?7slsFsA ->:kpJE΀YȼB.t& S2Ȼi4o}k?UJlzźm^!,4̟t 4< !0bzaK2ƉԐú0_ńs7F%ߎS *9ނxxRG&t>x8:^#w,AbqT`z|ErBS'&D*4ONz,{?͒H&I)wUA& ?2mV'WnB:N s3C-Pm2j-g9єbnuŴ[:(c{KUP3 =F^|ꛒ{)+j~ǾI퓭,⦞!옹D.%RI]!rT4~[;Q|J2KH"! )kI]ŧ XhyֲkS7E(rdHǑ^8LF;ݨH93CTbeܵ}pi*eXGM /ل fUֺ?A3?(g?\mϑilS.{^mp<_߇4-?UX&iH$EU[5 G;LOŃJ)b*N]兞UN? m_[_q^$.)b텧%֋ofc¸-N ?`߃8Oղw^ڊmz}2HYc.(R>2NtS/[R*v50)Hn&gUWع;K,7ǻUA fk5`8cۖUq2FS@q+x$#3TV/~@߇"7UI㕒M@wIuiLa)rIWX:=:Nw ) ^:V/SF<6jklOT8v , G]ROoBYjH.Yn,P.xPp0Uv\in?Q>>B}N<{W۫V1~ƽ yzn?ezF+m̊ifiަ& 7菀Ij.:6v¿7%~A)Kz^64dONluk܆'p#(^4y $ QUmٝ vNhYGwzHI dS.`]K:eHi*ٴc!Zܫ 2},n]^ro#'(_vɳxA2%U o{> % UdOQug)BONLϔ3u3Z/y:ު #4JP5O-uMrr 3x& 5-P`Ff!\k|B:=03B?v}Fv^jA@5pf0 FyϱRwV  %K4 ذt5?j6 _d"+ Lwj全uu,G"H"nS)+lGr2w<^)-&rz NZ0pZ/Y9V3?Sn x+@W~[X<@8~66_d0; ʟE5D)?68 3;@j.ɪq^H{~t JUCuc)D?BKL((,UO䓡[IY[75Ԕ8Kxj nv"**!*ՄLw'a6@%T3`nQvathyl; N #dNͮEKݛ zp0s/a`6TF>AYIi Q'z Ne$^Ϋ- 0r*^a pvl)}Cɻǐ[afM2ֱ6֠5{/Dgg)U khȝ3_&{mnYu=7#~>5jWLtmrutc<Yh +Hp/6]X1AOq>KooU4'd#g& EnKZB%Q' ҋM'B;H<usȑVQi8c 1K/9$hgM7vˮBbԽ  #kӵ]CasIKUv kn$9O/H4?.>5uq5׆Iӑ!I&\V^M8^2w>&J=>(^)IBmHnWJpxn Ca?Te}p1'[UV>,`MT7zd:fq+<X̢mYոJz-\2c&?E%vdC- 8P9c%[\~9Ulz٩ bd *dsϱK#A0)V̢H]K67CVY9{P"˖!X(_y^SNϏ K r N'ɳWĘ{”8\.'M~A4>p*H_EMˁ: ,'W/$ʣ-#lV*.dU=o`:We'dP>E;ՠs57 /ջǬoj *lx)FؑP%t7pn p K͕QAk!k2}J$TDKyh3T{ǝ9W"4zͨp v~qh\(˦lqH.YUwNLVͰ6li "!Z_HesZ79<̯V|קc̙AotGG|{*Wd$-\, v*KL>mdIqέi={_sLﺐ%"]1z0g :DY5gUb`4 P>y>ǖwlIAKaOM=2Hn䊜ye)$E0hL 䬯TlXE&ŽV"j.$ڬ6 ZPZJgP3JMRwsAY^:iFC H` UJ^+_?y0CYzy"׈H{4F }zsS)'wl%tx'Nc{byc&ZAF1Cf!EUYC--5 WyL^z' k A#HBճ`#(t5l(1>5`yx8.,M.L*cR!ڗ'%\MF݌Do\YjEdX%@}GPYoϯQq)r`,Rd>^Κ9vyƘv=>wRd>x'!+GHz#X=b_|x7zzo;{-,5>ѶjktP}"7%1B""&yUdG՜._דY5*1=^T&jϙegA|=M==l_X5Y,ce**omg[zws88d6p 0﷨Nv}ibah>XY}OL &E0MP@S5zea*0[d>*N_$n'k ˤ'-&Sv9>U? k QaRo@.T| bD| ~E͜*i-2_1r !k:ԑIcN k=59*0?dYөS>Tr!1_p>Qw_Mێw70:v܏=+s0I㠾Q oIךWJBHnMf,™iQTDBQ ӭCǀb9豸::cW&OV_]Zek/.SE3Z6Zf)n&)Vۺt/aJ!kQ55h+Qιl dg/d N_eZ/2_Z9:nufz3+Ͽ[lM9DwDI }DN$Uøo{y{N8b9!F ђhD3,f$ @ձ))IĠ&/L P'!lgɭ䳜`hra.m71;cɦQ09%ԓJc*,wP, + \)hJ 0X'i3&HY~^3~OWUѹ.պA S3I EE)"?\ھ yX4o>.T@9R}"ΕAH9+o;4$1!["=aiODeDD cM.4~ki2c]K5I cMϥurX>fBׯY_f}͕[:[MoevOpIrL6 PZHp3ZcA[/{QzC v,R[lEWAb̊U!7B~$kC^yGO}j5';|yc!?b=O <Sg{N3bX#j^Us0Qo{Ro8[kei\6#;q6~52k5sO0֖;,Bx(Ԝ'p}sN5;U\3kL^G7=n0JF$+]̽ _DSBǡv9d\koe&W7jFe͊c0u!I("j8?06 Hc$]BlAklޒ- W~AI$5YqVJs}(P|+,~[ gVRUd6GI 㓲߈ ʎtϑn=ia}] !^"L}IL/drLf"nST;srY3fE:qp(̵P3S |P?pB QgZ akm'@ V;4\ Q _S( HO7>_$9 `1>3$sYԍ n\QJ7I^=n}F2) W)(}m>w4ϑGS ?ljPӌ}Jѡ-cCBpxhQx5yM8h, OQzVqBxi(1 ZvXwS.VjnŨ(~dڈޯ`eX'smE}EwSuȄ~:$a{q-t%^ reWs04/r7oG)~m KZe.']ƢpL58Abhz;5 y \)9=R> -QNia -FĄ,,YPbl] xIB+d אjmlgUuSta߉9{1s"YgM>:UŃ ;1nIb,Ee+2&i3@Amos@yӿ-%.+ןZNq[քl 9괌(`"T4(;`O1`nI17U]gqC*_@†ӒgY8Ml~ ۃ0YW{lc7ͲiIuiG]@6qnB92]5 "7nkw>+Dv"m a*hJsm#`vR!X7dގ>pݩZSin*mК-m +jxDDy/ {W ,#!IuJUP&^٥\.-53V?Likc -NÖ|>/$80L#ueN!4F,sbZ>5M.ʛ^_b]V fvfs義$OHU'"\( ᐍf$Y!;0ڪ.oܠO˷7qt lҔr_2AOl yAQ`nV3TUwTX>o:1uVFF{ovSP˯r*a~#l4 &j:vWW?=K9DSIE/`KKziw:9fxa'9$i#WN8D؏+`d"MqʉpwhR@,޻?J`A.moxTQ,{hQd:z:w!n( 9,?C.L2n(7;[ :f,CXJXǜf!2C#GEUCsɳQ:2 l1hu $ִ- l18XL.rTQ1R9:74Arw4 Pu'0U /t7gpjb@gހrPA0Sl8 3/1U@3JxP%ax5V ^dhZ ٥{%59"On8rEz^UH`(: Ѕ..,Gc3ۍ4(^bA0ÃV9/b[A'wG9 %G)/)3]ra MYT` [nmׯl s0s^i*j;iG:y=OyuctF!X#n;mͽi4:XI>1zߦ?:OAm ^[ujzBƚ2:4K )1 Bc5J^J<+bYXLް̩ROw#P;DE&0 mZ^Sv# ~"2\4yObz%o:xqJM/H+<5 頛#LIhكײ Iၗ\ =nB(oiSYcV_yOk̓+fW<'Bs[b*Ҋw G&q9@4%W LAĹڃy1h(H 2ZqE1ꛍ!TW d97J˯$]큯#l @g7{:!d9nJc#q0Cd]SVaOBpfGgwwd锵nf1 {)-H O iػ#fhd3A!;A#k6*shVGMp[Z2Tu"mq$e%9hX3E_КG)V׽L$% iub $QDwG]x(*LV*^y7upƛxUu'$Z {&:k1L RN,TѰuw3)Krf RY3UXP~&V_P]xͼ;QccmtHmwv4ӅO:ڟuX6 LK+-+-Y COjoowyEJv/u5#RȋOM&5wiFnq0ltSsm:cdσe!6^c`d5zGdpۺ'or6Fd޷O Wߎ Ï$dH}yr;tZf-z½B>t5A bTU( q&r+_>+R^"u,'3+~2m 'U##SLS >j}oRimAGJ61qU N 2`y`pQKH7N2|tA^YEN^RQtHM, us{zX \R!9soHcWl`Z Jr>|JzF;UWn3@ b &rJЇcpd[UQ,u\zЇ,ҟ 蘋n'5"\qa, $prTñ _7<CMN#N6 #yw*"#ׅ-yżSh}ޡ5S?v)=0uD^̉mDK=Oa=ys LJ7YA}H?n O8慕(eR(7[UMFILUyO q].ʦCKg:'(t؂4 jjR&mXܗyzN; X ':CuA<4\`bAyk/bf$~*- eKbowO ^Ș{x iDƧ­` `v6/m똲@J^7M[dDQHGN1N NY2}nub2-BNi6M"G *7]_!fρ+L-`9|Oz3|m(#rR9C]%xn$ ,+ 4DݵM(NFhӨkzsNyF.9z`k<%mл8?He2AݍHΝIΟSTV P!SV긩ޓ 2ِ\O"'wv$:KQ  k = ܴgCo܋R|[MJyn z(FL99jDpP,V$ZP{CS<~V̰@3NmgzFT;t?nV/i(dv N}{3CNd͕.8BA2[ Դ3=׌$ƣD);ѤSOM:x Rͨ{,azMb5pD_Z>22L!Y)"e=-f!E9R%O~FJ|KOΣ viWiy u.<Sb/H>RRJ AbI2)5 }"%XC.\GH`]ɨދ"n+T?9βZz7`g/*>bIr*>etkd0BN4h};e% rɫө1^W!.*PJ_O;uޡ8ZzHN>K,t@Z$Y@(O7dZ`DJq;Kj$ݰ-pB( aj=P=:>O %%@=+e+kT1l# K /gAo_W/h)ΔWpX#?)wmO/^5T}}ƺf|~݄uT" ^i]糕xXVC)3\乘jV6OB5U;.zI:㖸NJeC:_ #x 7 2*!HRCgbڬ@dN{9o\bzTRV=XR)NgB!]aȂ* 0.ʋs#8J!w>4 Y~ m8!fBeyb{˞bz"-0"ξblCۡ_/a&1CuFN(y.ǀxAq]Yd8#J"0 fc#zf_p!يaDGSUZ%KLM9~$ Uvز}y }XwP`/q@1q==T2^0rv?xԸZTC/NCj<^rD/{]eӯ8Pb,au[PžT40O/H/) Ci!hGp\J_RYѤmcn Ieel8/$yY Gwlj~=KDdo_a;ćgĤCog7KO&d з,VsIIj&`Vtޫ5]@d)bGM=q-TaR ՛u8k3ɣ-fkx]Fy%PL\\s4%'˦DG.j>QGrt0^ B&H 2 nf}OGlz f/Wm~wU|XeVaLĆ-Y/ttjWedޑ_iDL.) gs)wdm)^mֻ*y'QrD1DW$Eh`[0 r{ߒ7?\^O:,/lfu:+J˵ "f62xMK5l! y1t0э Yǃںݰv8~D.ZS:᎖,52zúN! !#˨ #9,o=τ"Kz2&A&p:#cE X ϸ7=[ 8ES 輗@KQ0* a[@cĴE3$܇B:fJ~*L5-bٵDE=>֌A(n@^Kсޣ|QHrE!"཯0rt]Fõ)|36[xىObޅ z'ߣn:{3,7@ÎZ킹@uGK/pΗrʼnWd]#6s/ݡT?|5ܶ ^5R,4q76֕yуqI7(DaTD @y5bmJ.*jLo_]4j#m*x]$H7strfui bjQt` \ԟ lն]bRdp 0 c-o/X<;ZܙNeҾ@ؠs?T}0D.? \\Xwmk7eat_4/S22BU'\U!}PA-WV|k?TYco\>R v)ZAZzٳ1|NE /)F)mU7Lg̏ 5cAR9 `CtI6 7pUjذ;"SEwnʈnfeut, ZπHpSjhJ4לhd>yCC_rÉ˰gVN Tu-o^I1t6˴@& T3DB˕c1xF,hdqYBCn6fsmiwFj#~ć,VB8q0 `w8HYY0D'fy`au..ʉzL,fweY ED+l2NjUdowR]+@+=LϪdغw[fh[ɿІ091| OmHU~_`1y={W/}Lhzy=6j}WpW'x~r˺U_s_. )U v3GrY{4ç/ܑ>@G9@[ٽSJ9T9?vТ4fkMJ>C8øTme[yw?`4yxg$oqn s=rCHAt\H-?{?C_*dh9Yu{UN3!vڃP 5PreQw Zߠ6q{UCXӿjuμC+!W9P#A Ϗr8wgB_17)a^E|{U"۶v ɾXȊGD辤UC*oh RLarrU׹+l灁Imw/SAb`띌TЁ!$nQ @ŚbQv3. i>jP*udafQQԒZzej;\MC˰Ht#^WK<1̿#!JPO.߫E01cbM73S  z8ԩ$>h9'p.&Lրh]C6wX畼N/rX-301jLTzt0aZU9KdνkmR8bNr.-?q*֕YIuFp'~Q&VpySluu(jx]v]ȮyZ;3?\?gB3̙QpnϾ_w}'(ӭFqsԔ b "GDvn"S'{!XgR:~mףS>`;ri.8J5pXe{RCe w.z>og~]3mDK3ƺg[0'70aCMO\H;Eʐ2!Q ZxOvN`c)"bE_*J.Xahq?Rڶ@,x"H0fҷ3wfn3<#gNPC>qj4 ձ@I^_>s5GZWO !=P|wwْkKy&W^9*Y\=k4 us;t|l?hB+>ǒXQL͔&, O*!GQ/=M|q;5OhvU5~o*,(oߛ٬Жu,L8`uN ZQr9^#8Z2o@42+@eD,1j~J}{5+%g% n9z0XlHq3^V/-ޏV$&97h3;Jm uzn)ag|+q*g<tvHn]~4Im E; $R *zFd8rD|]R:2!*g{ `n H\aU21T[c5 C9eP9mb ƣnؿwqrɿisy;q СL c6NWuiMԗ_pG585EH*j,3gG LĢs׎>4qS@ψv,+.\.vJ4ћvLI=cZv(o)Mckк)^NSIHDp?a-o&0lR_şQhDqTb[knTrIf̐pj[F++0 )E"{g iGx־xճ) z=Th5F0eY3&%ϙ?@yt2 lNg,;z;4SbK ;hڠ:띪m{r3z p|^|ۊUp+*STf^w +61.Ap wZxITGȚ VNi4 MQ>V7FxΟ)35ro: JGnGbIqSM[ӓҵJ_ hmZw z4jG0S#TџżeX#*aߢo?5R=NI;n/n":+pm@DL v*ÞMx?뢡A!woCsԦ6~9bV4r EC"Pב )m081"pwF,x㰯Eadn Ɂ&2r[eK"(LP~nYb]+_VǎVpcsI#8 ]6Mc 1s ǨӃh3,1r"(`2eW_\ mIkgV}Kt=tNFV{[²3>JU@ؕcGqv>Ӂ2f; ֓ҩG6|meG' [7d[[ !~jzzvsDw[C'|w%Ϙ*Լo*!ݢ&%u{MDbD 6ЈdmLP$F?iSJmuS%W/ !Qd>0 lU`YEbx>.eٱH!FOWO $6 xZqcY͗8: mt0ꕩ~!>R~}Z+z̥?[JkXCmX_^f`{ej1Z:jS8 bV/9H3:k{@qN#39zJ29o[p?/{B#>WD"'tQ5) ?Q4'(R. yC+Pz*S39΀aY&oA^Q`,XiGj{lguE 5dL'6Ю͑~>2zJKe0 /1oh{ׅ;S(|.qh+ë 6۹ b @VR[B9Rin&/m#XX9Yg:xCQECT2, R6!W ]IOӨ[},hД qyT$iӍyܾ.fP܈2TلSMvA܈f;n@:멂=\tjfA{+D럚 #Ė8&VF(x, O }Ai2wN}[X_xCrD$$˰fc% ߧmv{ ?"ē_ŅIqTPaJ[R_]V1䙾vIWY殸myE &'UK, aCz S\TVL"lS.y*Nw+RexshKA(]c\`MKHؘ]oewg=L.9Rke/3jЈ#J"ݲJa-H{|!3|n l k,l.)SwÜ#6&f{p-Mz0(;Vl5.kbƒ FlPW0d%\\ļ&h"`FFdḻb`w  AQB& SNhpXnK>?.kf^8"Qi+w饣x_1Q1Gufs3׵v09J`mU8PbgT8҅A SX'ᕾ7rJhU+ySHm=tz*X=#b +8;cځ;o죊,@O#M#ͦF PWO< 銎ԾǃL Dɂ3H!\7S ,Wqaqm RlIJR y1j#>}"=;@gmeܪ\8Lœ9m) ?{W⬙fW~j 賮 &Gna,*5 #h8?y$N|L_-)4e0zV# 8-7lŌKG?keιOUj1߸Xq50Ȑl7 ^%XaYjϮ}6mSH7g(}\E)XOC{`Qv?Zd@IiϨku 9Ly%1>:Ex90֧o򦋴qz^(XQ*qP[/Pgq5x/q5ԋٱJі Ϻ)Jo{h  ݡGð.cڞi0ܚ )2UKh#cE'*j ib,9iYiaTʘ߇NtɢD"Bac.I_wFBӑ>/9YP A@Cb%UCvnv0*$I4$:8߬yo=FosWVh?иtt.WQtK{S;u; mB őtnjrJ4Mjm{, oEg8'njg,Cև/e$ $`$#c5Ŭ:9eaִpix:a62NPEcVtjsk$QOf%^=DaAoH;BC&<z {pJhzSHa\{S@KrSlAFa0 ͖U.|kqրT#\v4A8wp"7U$n 9*l+j HUE4M ,}q""G~ݴ4x ml,%]#uGa,X~!Sh0LϯF$,0+`3Ʈ8@DǟFa̕ {fg /)xb7X'e=v\!>j.GSЏ{I&ARhNe1/[MV yb2%STA$#-T;3ԹrX=i(N;9*jOs"–.Mв:*A\&5d^@b`ȉr̕ ˒![5U_&LN狺iiG^3ƀY"Jax2471!Hp;*K9 8+6CLPh(e})& RTٷ\ ҕY>m=F4Y-%c>)pY*=_CP0Qz%\7or?m}G*VKzt+Qfb?u !0h`7Pa2E~c%£]Jf%ci<p"`X$$T:*)rxZOB!^g RЇvƬɯ4O "<&ʻw̟`""75@"C&Yk813h)˰)y<ݼ~k}xJg;b mk_ןֳf݈ *~tw)3˧[R0 sU8t*{`?Yn~`.2@%,,ݠ )$,ğIK7û,N`vDuIy#߆_>E+8qmQם.cQ O0] ׷<FCN#=/Xo]3#3?*}㷼;Rd]H.B * q vѨ6z?1 lDe74B\\KIm DRcg)\x~ +t,)" %gT%tO#?uos%j 5[0(4Aed9Q K%QM:"k$WQU'ř\7$o خeN,S9Z]$҈,[0Ip땆 =v9[b o-ϳZz A6$6O:Ps%ㄏq"8\ bVm5KU5\]3?nTԧ$ԇGe~3aeFT6M;hE}U-'[bEv@bxldmLv -q_bN/y0lo&@+ւq<#sd2`N =Lf>q\1PkW1C{a g ݈=f{y*ev]ܾ3\sX0Px۸`qy__u%',tz XQ c}nfm&|ٰ5U.:m+v'w$6c`cTXsr*)m3t0g͵&S7Ƈowrjqۙ?8w`}.[zoЍ)tT|@_w/keFW\ p SH70}{ȏ.;S޽Lſ* P\sPYbBawNãZk9g9OV`|pOW5pv1l\4@fuS-$tjPtl ܵ6|d f|V1ѿ< q7tOMZu6%.gw[: ſV>wL%211s{r92 [ X=]hU +4T WTz8vr Tŗlby_>Yn_0<^w.跂;zrq,+aQCdSuUlntO_Z'iBBs'TjUE1E@"PY}c3 fyǡl9v(p*`g?5@yD2/C^W+F,7J4" G7Qp(qkSO7uF80PND4+X9yv}[4n:iUR1>2_. ,f'ʵydba)*FP;Cu.jMOj(]T0; 0sԓMGgR3p~'7fhtmRl{c_|6iÖ.¼?uYYRf9|/t3kH[5}I|X 9\٭\c/'B,& ]0  lμ?&ۈPtWÂũؠߊӷZlOaec@+_L8|_v\ 7c 7,y5LXHc_WhWǏ\aubbWh$`3\6= !:2R_{0mĭ8'X:[ u9]F}4,K*i33M VDݞD,;d}^AOߓ]F WE))VRcI-MQ} =HXzttQH61:l^X3Nuty+~轕.u~6pL;.Q-:ɯwPQM*]^!jkPsiJ k?RHha6 F j5+ W): doB|* C`Rg6aP $ +L5`w_zx_QJۯ5ysyuήwۄPա&~;=r4!l# v8dTOy\#iuy1dHKƢ@K(?hVCe}qD#*(Y'%>w_2>ɨ'NLzZ>c}k~ 5CyC&fʯFPªuQ{M%)ft 0'x>GrVs~xI'[^ٕlR5Ď~AyhanC'4xbb.l鬏Z=Ԉ.ح)T]ч?1[;om!!n#(p^' KoCcZ,l9BԒ}Z xWa$r=6O\Ơ+s%Ln=WBV*"?>d+觘$z8 geyHbDx&GL`^V'Ql$a'G:^T,`(ӽ\MQa8sߍ~DRT%8vcOtnnppYi6YS!4&]𦢨 ( JT!y5*'+ZUlَ6b*3@WcSaRcTҍMB*!i_#MmogK@hlu-$Mdש=ɡyjSFWE"s; w%\]Zd+,3I4tA,q X2+IZ P9EСjYhxHPoB:m]S[ÆҨBJzi&.\h75|'JF .Vn 4[ͲHE C:gi>,*6$@\lxNF+o oȃP_:V 'MM$㌠$حc6,]BVO.52sh o^4ӧ][HAw8h 9Q2caz W7]+vܐVŴm>j^7r67kQӓz[~{%ܖ/6B8^!4݆emJn*BM,e#Uj%n"X.Y/a/:3ڪ_iן֢XR V$OVVUm}f8)]+AUXH['GY2 ss渨5x*@'_3IVKC#eZ8#-N6ɇj+>T|pRM+7 #rȹZqJ{kA޷k"dUlc-{Cּ;viSTJ'\m[}kz ?L))aQ/'g+WPZs*- urS+LZv7Vwg4qa4j]P+v;4C}}Ap0d(ccj 4"w,kFǗw8:T'{c1fK(FCJ# (L!yWz^=H21Ek}kT=KfH` inIUTN#5!yU_9$G Uk4\[ny4n8n (H3!)Ym IV[4f PT[T'A')Fj̪cy~YuczTz/({eWϦ /]#pPLz\ /?_ηJ.ozeat^N>X CYtJzPGX(XRHlcU,\j w % ^ RJ=E6%poz]? 7D`a 6MO mj$!+ěU Sb9U-r=SpZB( :ge#􆽌@bq>kޛ)a I|:J$K?P(xP7eLD?{0w챯st¨ s>ldҶ샠0&LvҟF~iǩu~R})קjX#~̏&- 7 Nl cR#+=aق؉._sƤ :?taaSfcll\zDk+;: пP}w@5S0w<058wZOݘY=K0L]sg\^*^p 4rtf.z^ 3&( a_BS pl9BlXeg l,C)v\&IeVKM+hQác:+R 6 >( | +SO-)?<5W/RGz" H|]Ho^C^fY,&k77Eapu((")PӸtqjlHfV(AU}cVB_Z*"0 ~{a N&Xͮ ON / e0u'𺓉c]JR"~f]h?.x3c()k$\nVL+xv4_f!7N4x:4Ԃ9ZYௗ|H=e6/^8qfuAZYhD ^09yW(nb-bl!\&J*[A4`PHC`q@;wHNd2qQ‘*vsԀr W| t77`u3蓀 ϡ#0Oe{XνNo>j-!q4[}TP̎?I}ꖋ77J]oK8{8eNRҢ>}Fgl<ڐZefr[G @y&gp(vr=i5{|㤄ξe;FV-HW^q*٢3*g~7RT0wp? %Vfԛh &F~hP_=6]1jhD"2j'PX\&A~rOA3Ƨ?U-[3-j>V.wyO}B ",o9ѧlQ.b*niY0Nf dF^r2>01/v\HGn^?ؙhұ 7FO׬w6^U[;ZݖJ1e^I`w@h +[e&6j'dʋo}c%8}So *zV.L4bam-8y6'@onmCbnϹ&i1&HYT AΦ5p")bG4$grܓ b y ˨[!95s,ӝfJr}2Ǝ+,m"gKf9_U 4 6S-/5UEzᡈhLUM}%0)_F@ˇq 'ryX>3ṯi:=n(d*X=!k6 "Jc)t:ΗbP@jv@mGzVJuKr*(t+/C5į/lь?$wg~v6fH k@L;B;vf7+A7gW}7ke|;TD|XEɯMȀz]2<Y*7X_#0մx"0Nб9+8z#t-L`&zʞ&Ϋv`F<;#AK3sF)lUufYwo)?/z͑ V9w.LbgoY?pOlSh&ً]Kgߞ.п@H3+ɜz< zG3mMyHZGB-NR!US/H7/4T;fK"wt#[Ç9xAS᮳P옫popCt!fqY( y6&32Qi|#Gum]D=9 䴆JP딑|u6 $PE-6 ܙ+j0'g/Ꮙ腰cfM ޙc~VCM$jhg.Ee@fC pY)"3: 3ܤ=fzHS2b1‡n":r!t!l)iƔ'~/&1eŌwiCwy4T^GY ḫ{A0KuuGR Ґ."C?pV9-,aO1P 6M͘^]bɊ矮4Qq~ll &A4pr)sؐ^S϶UcǾ-$t\xb©Tĩ4OrNʓyz.'#xhO%x"Npߛ85XCg9x\Pp6nJ5@RTM驾* Ii'zҦ$xXH."+<|3bioh 9X](,SEb֍>\CJH0&kiFE}^4㌏iY98`]!* JXo|&X'A0QM{¬b%5dDphʦ{rwkQP Ӊ}} #j/".虎 ' ׅwģo9Ω0!;B5ώ$urdz0f)^%n `5'%6{.l0޸:'L%Sn9&CNpT-pQ_n_]::[ I\߃ARP[Q8;Z9TІe<%є#ߠ4[ەDt*&bIJ> iFH3A J\cJжm `w+KO,wq1Mt?0#z3!MJEVW`ڬObienE1,uUh$ѵ2u滱[tHg!r\Ή:dt4) #RڡO!b)ɩfi* 1O:}fK9h8ż% -mZyﺜz$[R QM;nOE@ЬbxYݡM$,IR|!M4'A`3i*4eFF0MbJRQ?zZ >|Gg15涇Ύ̓c[J\Ju@,4dX-r&@C0XfOr?0JV(hY#֎g`Gֽp~c ;zzvgt͚V3'qB Ϲ[֚}׸ԁ|/.|]40r2{O||܊5^xm#цM"6|cֶ1 ryq5K.@1eeHJ Ma4RL?jͱ6^*qe?8 K#<%OȶTy*oz7&nŻX]`gh$+5|W _t9V{Pf|%ojbĂ$N_ gqCϑU >S=EX*Tlۖ:2}||/bk{%y:] CKo+]:!Hs _뭿P$8^K3c:kn]B'9An.(| 5[dP&]a;T*ap4twpeTDT|F6lFKJ).ÊҵKk?E汀OVlu}S7#V1 +Nh "c*{ cGp ]j~_ӷIGYeD;TM' Ӣx _hQZ+r!O6މio?%:!hgZ>LdƎ֛vfmٹtG@2`v3c23ZI pkLdP#8ih)Vndh  2tNDBN7hn5ێ*7*,MEJ%叝#q8¦ХWi㢏- <B̭i~@R1>)FIjZaڸO:81]`\FzUx`SA uFs:H9R/^[DL)!D{ tz H;jt"QGJ- ;89qh@*b8ގ}W+\QzY#1@0&P/IA7倇kڗR@Y|ϋ WVB7ID嶺.c)Y5 ?*4K+&Hw2PvD 5ΩMFc dM /+lgغ/N_GpI%;)Qv^zN fgy\C%@⚝ZweT"@vvNMsA~sE0VEk^%s+7SO4:ntk/L`סeN!& |i-ۇ3HE Hk] \Z}2][r ||qT$_i!ÿd[lW'E\N S#G^WZϓDwJ>6BO! 8g]-B ~w^ҧ1,2y$KҀ "jrzO0QgbhevlXLż>uc XXB){u?7I录o/wF/FU5Jԏ]Ãe_ !0 z"M :.[Q`@ސN4r^N2UʡK\#l{1uMSc;\B ?\NmKI$]pahۘ M'.+ "J(t,*cBEaû26UI>x/` <.WX]@@g$t ubRdq`B$C{'#10-APќDB -eDx$TC֑c9-$ fk W)M2IeLSzGSWHy4n@0Hפ- hXҍɭi(L*̱;!NKjkªTlEp:Fb殬^Od$旺%+5-—#ْXц_S3o"H;61.7O#"R9QL@#y[ĥ|'LjݑbRIMI</N& ~қؚFT~{6śѺsDu(wӳu$FVd⚱^?sei绅nhP̌*eVm pj@Z$j,8cnB?DrtCnQ[^/n5Pmz&ne|;֩Rz9ӾQ.o(<e[Tf;`` *#'zLE!ǫWb8?fLK#=JGj 0{'AW a~;8َ=-fG0൛Z7BH6ucl;fpIhiKEz8o^ϟ^')S"d)q Oͫ\Ιcj\Ŕ\S˥(ezڐm&[(orVNJ\C}u 9&^Teb`$X)`>fܞQRkFOS.("Z9YȠe_{D6>fOu6*r84|/3}:p#caB(O3ǎnTmʵxr ,Z+H/ӘAqք1w9 \&W ?٦cylГ~\e4$j,e|4/0S,Wv&5_ջ7UKؚu=;}U~>tuGa9$qu"..=B&5tfS=X"}NK.ZDUJd^\!:T'$U=-Dxo]s\1ೳ0d ]8,QHQlS{.l8p8EӿchLN[!ԻVlv}NS:o\7^qf.~fbk(!U fbHLtD_9T@p@:t[C82^"`uM&wv@[* 3z\1yH٪ 54'-z: zo3*{"%p` <* Q5 ˤgMڈ"p8yYY jUqz . [OH{;ApֻWGCR1*y3k&M~4۸6vSⵣǓ̶j|uVQc@2ށI}@Kqyn~B Av4@`lAmt /us.I^-߀ jSЏiQi)wް_˛b-D)X0eWO97t^6%Kʙ!Q!(ـE[-`IDW:=qfϜ4SSO mFf|mY%h,ޯ{e}'v2|/mMM *v0HN:FHfΗUt@FגYqEgi"[{NY8koc^kLS&LʆSY˺^ɝDnJt7͆e^<<PYa5@c q^xv'hQO] AЪCkΓGZY 2|!n y(r%VKCJHJxĕS.` 9hwJo|q&P,I0UBbRTB/H aj`q8:ۖ%$SSYu D0LpbZDyM墡.@(<`ꋬ1aY YRl@NltN<f#*/뭐%Q87Wezr;މa9Uoan3&], 0U@!8y:Zy~;_y=y8L $׳;|xC924w=*xc,J;3i\<A-9g"oA^ q4Í cwаnB7יuE;'I6]ʸ6q;lQ8|xZ+.̖. ~D=L{eIk`xH (EkBDcaиbH8|i,#@$珒oK^y%|*[0 uufФf&"*^xثg] *7T[Zxz շ7 K$*uZ`g?INQ<f,G~HT\$,,-=y={Y8${QHK{qЀi7`kR*Ng/.1-6NZ?`/ΦGbrސ! oU99a{cL?/F:gV^s[SOU]SMxJ|SnE0.Dٚ ]\3bHކ4SgiA;b6*N KHlo9^ z (005;6lLG/{=o6^~Y -Qe)M bo72}I*Y;\ Xp8?kfݴV΋;qrɂ" M36'[F6:'Sc0?:$MW-9x2xHCi[vˬ #EuSxN8NcGںޗB_~(آNnA{m_k|uGyfeȑτw.=&󟳢)^!ݮE/芩؈6|u$ OVq(%N"/-9^cH 9.0a9O. ̷TwޥA*Ù]`P0}gWSƺ+,TO[6LF߫ `[mB.lku\U!'Y޴.mrrrXMOF mwS/ڥ~2z Agg׶~η2=3 dnm;on狀QoῬq5 pz}$}AIqMBbTNX2(4dvMD>Sb"%묜ORB' D`X4S ȿfC|dC~4?k=X{p :MСyojS4jQ]`ͦUj^Cղt0iR1LC},\w[]kCJ3#QCXVįrB&!P*G^.q0)Π$mj  DFe ]=Z5}{csTCd-RR" FA15Z*D`6ghG-k0<@3,_bcF([Stp/!EUk *Ƀ%SZSH^=[bh@ 2˽ǝõl$Y*»ոJ8. ? SA!{븪J:JΙ!Sx*eEO M֚rZQ |i{ :&a2⨤f7݊.qnJ(~_)aq[%ɋQ:juXi95zQ i L7`'&^iLA*+MU\N8]A8ܖN(mJ<>[ A6ttA^ ğ&$g%=xftl4t ې0Qv?eaiR{19Ksea9y?oc.A >C6\p(L$Ķ;9kO3%QpvJ'uBr\ V_V0>O2IZ nc#h:ty_Hˍ6Lu?%[ɠem d7j%Jg (>^crpH^S3Sz?o}mg QTӹX-Sf&oarHVq~%blSo_of'£+ALzPEtQt՞7et~YvMW] GtJԠ#o f ܯmZ07畴w*␌AVvnZPʫ@y QZTE'Ɋ0دժ)N/֛N}[2Fr9+?Q)\a6 >.H+[g9ȖCwx4!R-`VŘoBlDZqbdxۨ&`[\f/ [}:)2`?Ô rQ˒\`[t,vw*ͬxhZ::q+6%CX8OcPZab`FVa2%FC6Y]q~z2!&)#h92q_d!I:b_Uт:X]^VA7CH~l_΢? K EP}ijzk3 RQUBwC豓ˋX(̥䯘 Yi C;{SB](V~'o{X W0e,@8?4Dkj#A˟h'BqV;VsP = vڟ[+-r?HmQ.첧O * ?R F'h?om CĬ0st'F)ṪqF P|rsX_Z/fͮNz 3F,GB\u5%o[*[=%rEs$v2,e퍝L蹿ĊŬ]Nw_Np֢ ݗ(- 'os{r_=;K9!J [{?;Oe[|wE+xEL?,?hh_\_Yv F:MۙCJ}|i a-Ҹƭr⺲Y8ٝ0HI^ B^2NV2esbN5}^9BfթMc ɣapQ[ jXZy w@f jN`߄fLm uaFXT֚ HR3i&7N^зJ,qL2ǒe &i{.!ݯpyZ2鿂Y uQ!zϗʹOH("Bng +*<( NɨU"T|0ȕeh=f  v3#+j? n &=oUOUޣ ,P^glWs3599.xPLQhp_V'YF4|VXi7Z'?1&1nUdCYo[7N7_wI+ݤ"xTYtA>g4 UB|J }+1u -YUU0#D.N I"X0c4jeӖ+:6Yf,>zl܋>p&UOBVGHMޗJ:Z8]9k)! UylجM_OZf\ ޏeF5mh4@6-Ō:Y R$|+#InĆUs_2?p;>Mb)gp2BDUMSDrk4UQ;@;W#?E*$Mt[+12PgP3Դ0S\@Na VTL|\H,F,W3{K]9o&~jm4[kBĽ;@ ;ӛ).gaٖVJ㶈Tվ b=+@Ab;u68vFYe:t@Y:ٞC/bWV3܄0H$5ӧgW@">jdJAj(-9`*{y!_Xh8m wA{#KMYk,VKJS;y6K*%ZZ|0KrB}–`on7VZ-^9B*lE"8%S"y}ۼ-H8ڝ}2:\?Yq ˋ{ˑQw72XxSlwBgHI,ɑMS|~m>2u(A SUB1)<[>UҩG]j$ V(Z_@NZnj7epx<aY`hB0>< u5'!xFN'Lly9<7[]\j[r *XJTi`L]`O\SoH$=e앞*,NZA M3dettTwbD2@/Y`5tYF nw-qNib{Uem} tv)pXcƍ.^U>R~v@ klhXE7պAx+8e9ꗪ-PN$ 'AP۴/ ~) .rCq,Sa}](E# W *CuajrHqp:G'I:-d"/tKG\{_MFƓwhUѲ#'^v y4?zV!}X[) 1KL p| )6! Ing|Mn"nL?C!!ҝ?4z7/\%,b,?V:K]+!E.6-eo+4{#$ v:8?G LX9e^(?(+㷡_~], x^@OMRB= +n5\eԡ* o3n"L*`}r^oKV#ڝA3"?K-d@{w tU8_A*Vd;x?j1]_t;oy ڈ?~:Jf {@~H,;$K\45O'Nil[akYDz<FsV Hir+grTVwnv̟N!]rN1:R| *Fﲘm{'ߤ&[/LR:?J=$V;jV @Ibƶx+;C*41,ywoT󄽣tEw34H9Oâɍ0/ʼnBڹyUi:VDbC!~Z!I,PZ+;ڎߘ .j7Z*56ɄL+#\7 3AE^wGc,[<޴ TaFVTfIFU~~J d Gcƕ. \S c\B7ɫe31(hCJ[!Sp5 G Rv:5j)5 UiC hkG׺Xۮ,nM1~J7̅P%F: |PfY׼Lnou-. MBeFy3?='ɶ:E򕗨T[~V֤P~t*2NQbΣU+3_aP9 o}O@%A҃iMdh.D~TrA{>y}C2uY9!AzZk EלLJpZ9J&DX%#$iX-X`%ԇH9[}M.HQ`RZdt O\Gk܄:J gEŜB"!a'>o[菷ҟ<Ǒ0u})ݽFZe^M"46P{@T @:#fe %_ǡe^"cƀ$j6f,* VHk92>濲:53DH7mKl e/:z m?I+rQ3W{Jf@&> p_SW>;$Ǎ{8FFg5 5Sګzc}"VF_JrS`i-gHI3ne꧀͢- rcyb<+´J'*[!cTQьOCBjwt8,두aخUq?2xܷ) 3qUt,-)m?uwje)K`I2]p%- Qtw}a ]^@*NT*'O)K+ni ^rW5K9gqbCK#Aa׃Ω+[$_l5eX5|Jyp%yW2t,}zdqH@]z0zm,mҮڷ0?V`"?[zElyX ! fi$~eL̫3T0ңIVoޢy"?PҋͰ͡+p";b9#0q/Yӝt%'`tZ_=lzyRc~2#-/<8m%>a@⻭6XTU-CRRFլkչ@1"^obWn]qC:qKuxY3y9IބnI<1$C{#{Uц%}e^)n(ɱWd zY!Haz5{~A ,5:h "1% Xx+@q0}xNWzQOW%H?s#q6nͰ0r^hg]7t2GsX"Zn3lDZd+FlESISR?yR2Z*>ɱM[R) d>Mh9KfE} :4JYlen hil4'}r*$BI؞&} O/ , xC^PK>GR+)r8.6/&'a?j8\_Wl=\ _FUKg==Wj֔H]!(ҎgfYD)`b+ͣWu r; %䋍X>)薨m9Ԝ)j2e/Vڼt ZR'"cC}q;dh~*&,V49pv‘7  1" j#lhϽ֬4-a|o_c#Pf{n =3S8lDظҒp)QNJ _Rv==l@H,pf~tQtSMI.񆮡g@,.J&pRlљ(3=2s-zae'1{.ՋV9Dwy!]25 BS"tnng^!@s8l!ל"Va9ɍ#%vdZ'oD%9A#5t2_ WuğSj7$J:'\6f㓲%T&0 ݚLnr0rUK/wj\-ؽz⢗1q[{z;[>LXI#b6GL+3TWњGPиwLbId:S?!ŌC?ힲ1'g[l:h`F d$ WZn-Y*+ʮj$`!XLx-!_Rv9W $Vb5 2bۓrJU'smzE9䥷tf_](^ĸ_xSu'ӓ^7Bw9uѷ#~( XgeC Cz#9|Tz3&۾k)1*+2Fn6~ B5_:o\?fE>d oX g A1W1 Tϩq}=O@+:ZQoxvrsS:O +PT إ^/+'*ս,֠pZ~3 ~a@Ȕg(ڸ `X%S/C0ڏ fpESuM1gk/JJ7nKsaҼEB0"gXb2"0Kuz9ȟD@snɹزjV x:gdlHwH4\nqSإa7cu30U`JZPZ6 /-HLZ#o~iQEslkž 2=ڀwΩq. 5 N)^1&FD4慢m({Nj3:=ַ;GOh1$%iĊI4GXάl-0X b]N vZ*zz'xmQw  |If/_ԛǿV/F_WٙZ!(=!WЫVIWE8$:K 7?6Բu`_LTwk:w_ ]UtH`u<;+z>`v0!h,Q{Є˜@[w;ځn8t"a=NhΎs7$DذDV@5\9_rUp섨^Cn\8 EE_8ҧYЍ0-M!EOJTH[35ؠ9E1/Y~qd({`Lll~Ra {i:X{;ѓb/GV1gd qBP&ǠR@"։5C  2-KofDLszlw-MkgQF\H'u|φj㩸8&AS1)/$NԬYΏ ~)+;s9EE׊;y@ vadgp_T(jΗ3{ %DM\S&WN  ^oHWO>x0VlRz 6RkQ- 7܆C7&"Zڅ/ D6b#|fO̴5BInAɾLwWa.+nE͂a_@k82H0t|9JkiF]ֵLFs@3IJ6WrK7r鄌w`}jzv--+sZioQ963= ֣f&S#kK?1 (4ǿKJ.TkIp|VPz~Gבpq% I(_'f8IT9S AO%C{i#Ί(L'[qǔ;d/%ɀ8ik%;YiWIV49aܻ^R=Q*n~YTrUS&' SuKyX LΖ ,u0-Z{ҥ!k ՟I{ٔ"A*3;I(%9RȌ<9I]DmG*Km:XV@)[ X}$r+rRP_mk$Q%ӵu?f?净Zs^q5+vGe(eZ°9MN'{M5\apn =J'#JF̎\0?hA bÊ ?p踼{)@n4Fq3mS^50$(=+1ɌLk`v(Z=.U2\Kn2!oB-}ԐR 6cSjܼi߄}CZ I. Yi6DW7Zu <‰Ryɍ K7qw߫|аk.Ǽ^5)֏Ptj/aoH6Wh4PWAvniIjA?t#7re(3{LjϭQ.A~AgXU6kI'Pmdgi4Nb ءa6WkZп2uhcwZ{ĿUu҇~ $ď|im&Nn2jߗ=;}r*&+@^XЙw+IN  w@Ձ^v z9E 'nëH1bUTE҃G(5ҹp zyg*o~:}Rf5lS&.R+[ <[-a(81ޖ-> k-=tZ 8*pH4Χ;e`;Fé"pI,3Ј1TX BزsQ\<^x_K=S .備DKme3¡M0v)IҴ8u:7:qBپԍaG7gkX->}.w%>%?g˲|xQ_?r $b N$pr;Sd.9GD _sø ~ R.~Lf˳y!/{# ;^G6ĮB3X{%D8oqb6 E>6rAx1C0㺙JʅNr{Kphuي28q_Na@֙K ߴ\E 5ڼΏ36}iSy-rM+hw\ڒSVa_ yy)jh|PB<nх/b-Iq 䅯Q~ S]0Tyw&fRb~b\Zv$W"jԉ?hk[O;>.=Sa~3=ե+B镘} %^H܍xpk4![Nx}>2`!h"1Wa{u?y|gV|Ρ :v7~auG3f;Gf߬80Khg͈NiF3Xz=a3yAIgM{m2ԥ3<ݳPSɂ?jr20;AS7@N'GO%Z&n_މxzj{o920g?Nfu7-ݢ̥&_fV=` +xu`S^:Ccm 4RUJտ_ |޳o.h%$KiQ9s62P!̭!:NƏ%dFg_)B4;qI+ً4S |jeq_+IН]̳V;L[s #8,pW4酛 6;t+ dՈFsY|B›e)x(ԉꣁgG_ f)u?3vowx>dw  U%z%YNz8ys0H:Q$o`}#v3wT**zmh ƹ lZvr9X=W_{zM ^VIPZ|jZw{!\<( $!?:[ Q((f*@Y9NUIP:ĻRιN:T9/6my9 [Y$2pu,Y>"-Kw$|rfg28U6[fOO#}m?"ruҖeT^b/cp5ر0l9A@Hr@ZF[[|> $h}ߍpHD ;S)vSeӅodMQHOmҳ)={%ջ" UI$%8+]AFJ&D.FLE8 wn\f)WVUÀ/4bt$3-#z^m@ytŰm)Z־Vy>\JVE9 n q3 gГ-DF)_6urnZ7:jdsK$_\@ir6tptD] R{G;`;*TӈgL5-&w6' cM)Đ}e NȯYC:Nx۪G##fa u.ֿ@9y>9f=Jp!iYaw}SsDRc@R%j^wPu34޼=0 (")v Hhu`۞41CASv\Gs9z v},-640. W8a'7 D 9?@s.קטHeHzάA E2.8i @Ϟ!%f ׊@x+H`1l9"u"6j0[vIQ tbkjt >h91c!Q?-u\\=,"jk~@;Ȇ(f`GcJ%1M it9K O 1X]eM#K2 u))-?`n'NqS5-V5ߕ{{(M1ƶYBmw#DZ{jN`7ًx*ěHlB5"^vw"-\#u^ !VA1 "$4B Gk[XXj hNA{BgoFq^OmLԐ8!olM[HefD0,Y-o&468Ӵs;Bd‰(FyIMr[4'm!,ij:rDέ9BJQ?H9vn/GM Џ$ǘ2')Րp\ɹN3N^]ӑwVM:>O<qā=bz]&$p`*'$&x77\@d%՝HVG3ZY n筨{YX9*L闼RԠ*$kNcFRi2^u[ 9Qȷ$ ekKqP%.ϩ/u)( Пғ9Cv_W"r̖q=I2z  6ϺzzH[NȘ4C8#Oi}i^=_wƽ+£- e%cs[Gêp;>A&qD.Z`S}:hCVŒg`*XPspGH]V j:xnY\9']aSE+|4GT9j!*=2s;i?|N*ݖmbF=:=hZ=TR`~$Nhw-) *0FiԴA/'DKWRld%QA;h z EA:ߒxy=2t7ڶCߍOW#^ G137hu oL+u+aS@˱88iEEB7Ť~c8qȣ$i V2\wq΅wpJG f!yetCTQz^PkV0oNLLtMNd y_c/DH4!*Һ$)Ї\ fH j [.b .Sw4ʴhNY Zpqxr4?)[u{~)a@b'*Bw}^8yQ-8\im'Ē"…wLE8ӲcgOb4jX_E!0%܅Y98+nUic Ư6D$;~6TOeK aX3I 'NGwtZEK{%"J<2ˤ[Nq/bWvq>LM\+@jϊSj"i(GP|Yfz~Y꿍guK`.'(JBKC6%D0T:{3'~[e9 TZ'u`C=.mw{P(]0!͠nE *"QeuSK[pb*hB; ytJ>Zo:'P(Q_Qp|[%:hDhpNa>`o{f m߉H՛ y~nCjiYj5^6颐I'' v= R Zk#R]ey5^}X_3E3) ユyqBtF+DUwoգEh@94/-|bǦ66Nj%˥B5Ckc0__}=tZOv;,ffs-(RəJ5s,0Gu 0[|c \E* 0&(TK򆕷X D_QwEk8>;(gLHXV@~|U- ޺aAPryb DTqevDݏb!8 h+œۂ|ڳǷ2#IƧYˑ2{N Du挞1_[KWRʫ2c;cf]ev g{a9f2@0^z*:; P"۷F9zAvvuG<|:4; 1_]nrVȦ:ʟy-v]tUM5_PNh8KrN~Hۈ`TėA-u-GʉG-u_R j˰~H*cیQ"Yf(A(d%0yME>ۆAy>ΗQgnid5\@TbrxA;Lǯ+ T !_k;Xs) =S{ 銒XXNEqE'*Vޮ_$=p) e/82]"-cPhbzt!N7Fb殾5.,fy*]ʴ쁘;5Hځ8|<W@0^ }@qm ,%Ϊ5Kt*j ?OY&܄GLV;ڧIjEeڝ%L9oz8l?3> 7fX^[,Nfv#i5']!̉*|[F1%U|?}*H^rsr8mG?4o%Do͎I"#0^nO5K"f{K&.aJ:YNnK)B)'= %x]s/Ԋch\kn2ba#]DzaV֓Nc3<4ny+. N(w@jt_Se q~=I!֏VB4YzP ͮn+ GuP>r񫩿8I9T G˞ks+` p sDŽ$X 5.su`*)&ޮ 见L}Kk@q1 9<3S }Յ[҅.?M⃨P\)[1A u&PYǠM^9R5tn<~SИ.*I.綥AxS{q.^B40gګ U2`$uē`EPUP0jf n5 9!r -s6sDE28/x>zosMf)[ .` mBڈtKb]]Edk"4AzĝS/GXV20^s)nU7xr@re&@Gl :MNϪ!'KyE e PA#S[;pJrl/J~9smDھW׫ǙCX[t6>Rw/[F'dQ~yGz$اt3~hwf@$ڑ׊ hJgEpB;.0x򴊘z;(s"˚Tȃ x/ֹ,½Uw(OGa)pkQ52腋 en?_ |4],e#Jw{X&Y%S+hXXN0/ˉT*#& ލ0QKWl2ʹ;⮚u]D/:DQDff,xw%7RBVOSH-5"@eyT(Dj܁h73T0{,׳M.uJ ɷA,Ŀk %UxB;'f*ުn~_dtUd\@Cj͘8n@$U)E.e{k)ǕskXr:6q=/SzyꙒ#sYra>/(lߓKʱ%UV 9dV_l&UȟFJՓlgAL8=#ˍ(BacQ $|,yvE L?jgxp5u~>iLHЊ6i{ zԞ15v+fpϯ!̗ItdcDKS=b#-$,HSJ~+*<_ !)9 s ̇jLPˇ , н,NYv"N;Ɍ%ڕxgfoVp1 N&&a/t*YOD7_'%1l/2;e/`}C;sI8y"q*E/#bXUЬܖD h{%3UOo3yг9N)3H(~"‾/{ 5Jd f_*>NCye?oiб*c(T-x`ˇW Dv=Ae{6 ﮃJȳs` Kɪ(]2cu/]/ܬmuʴ{{eAK4ewW]}!nS+Wt# ٲuRi%ӎCN)Y/A);e^OA $ K2E[$*IHOdu ⯇@tFFT i|^rjAhhr+eLg)0uz49˯izI(,.]SotE5K!줓O/K@3HQH,S '~d!d0m>ޓ26gýڎ7im|Xv2;kA_ÊpeO!w%a~bT-0 T绬NR:|-hݾ:R7|[jUI xh?#dn5J4m)mIQdӢ չ/+{3pB-0j'/øԖ ĶIh cvUI)c!7 =)x7ub:OGsU1**ȯjˮqB}>QAwχy tiQA2j+D_P<T0 cwl\^ޠҘP 4orZyRvwvlr3 V b<#؏rYYkÁsFx61ոd #Rδ.IU#J[$:tJ_ˤSh';Js7~-%Uk$iYrcFMP 4k۝p 뷪+ke+Equc3ec78dW˞>mj뒤"%\>NZ-~'i!hxU߫Fg./g>n4Y;)gY^prsYoXk#28֮{V-@ $y0N Y)܏0͠8c(@NS*6:^"?s4^S ƅ  3T2k/O#{3lȵYw cF p &(LnG;C9kZ̹=:vW8@ݡ4g2)dggg 'VQ8%Vבnb)J_=IT` Auӧ@H5jv$SͲ26cF6UԸͿ> i[ WY؅=t.*yS6xr!MgƂd^qvj&k0){ۍ3EO5m7Gl̾!K ًw@4j+QwiK< sD :5oYtba Uœj> У#7*᝽ H Üٳ]+c"xWH>Ol5G1: *2piSۄ;s2n_&&Pr9Ki $J~˖,()Ze{OK´{J,= R)ǾP-2ڂR'~,ƜGOi+Cr4+I M^| [S@ L%Ml O\ PZ:ti=iZEubrڠe;t&h|_5 1%}[w9J_`A(,0Tʩ$K ^|;뺸X\1XrjRFEa(1K76 9e5xkstC3L*LQ=흢I[aui%Ɔ-2JA_93K4>\ty;SZ%Ʋi8P ̺̎'0k(딒r?&QpKWc2C,#+_ӪlDuU{ _H‹3@o<,s~"9Z$ yFpU%PS4%@/g>b8.J0gyfa5g$0- R|I PlαT/iy:NBn.Zi|LDY^5kXDAE(qgژ_& j#n X,kdyPh )D&梡b#xs4Fְ0׬@M _Ph%w 4V[+F,7Eϱ'35fIM\\,ʟEqmF1i|(N3αtt(Rc2Z-hcJ} IF$Mɖqx[eqyvg ;UO>k$xMicQx^q oT[4Y ҙZ)`|rYϾ0^d<}@X30=0FYQP Mu\~ndK'Q0ypd;ҋr:,/ k3>ZcVI7uJK3S&z?'n"/]"6;˜8;9Ytレ~N(Y̎/GL,Z_, }<iViD4ܫו:XwC^P&ovO[X 橂ӢD~:)OEɡ[C(T$zƣZ p(H5P9$z _6wpX#-ٖbDl:P`xy}Lnݞ^ ߘQw* (ٍ rO,ܡ4#)N|>G[XLv*V"OŊdH3vrQ)s\3Q{|Z: Gz*ҲMm\/7څam_IGsewzR₮]vb|R:`ouV{xYm-@̹so&Nz8FM㵋 -2A%xJּ¹2XjM \rڡ^yى+gU>X&g[ݕ\2s*ĉc\(to̘;V4U?Z7 8rkCz ;x rC3++CxH/#:,*5BG^8%p 2ofU^=BS[ nsl[}ilVR`G9}^E**&J+9όtR PiZJ{!o6gלaF@TW膳PO: c2 LIEKXeӳIV.B꿆$3WN\2(noMsa^BSZxڧge'1TY7- {R|>uU"wO`/i0߈`xtlM_%ޏU1C"_ >}n/QihIJF~ǗuDi S~[eJ2( BW-阓 Jt,5&.GȆ^TP ^Ґo2=z*!_6Iƕ?^!< }Y'EƉ1% Oە,PjI-.@U&`<ɔ{I|(w"7Χ3*,By{,K<- \"ѭ.O|b֤{ qĜPjzkC[ f.de$ TQ凉pr)U$. ħ=ФI:e>xe\-1&C:q Ջ3 w%Ti6+:Bs뉍zˣ(?,n+nzDQIzJDApThW[+f.sI'SkE' CjZ|nY~x&m&O x{RD2=WOP ]&t>ru-Cr i u=PNu*vĖL6Qٞ@bৠ࿃`<8/OoOqmY()f}:t~8` EM7Lqܴ[ms!RjcAMpC-':3'V[&'W#āZBxoyT͇Lg+uI$;RۗE"tCQ82X*\R3?`Un\cL853ǥn?Atٳ\ oɶn"Tt ܟ6"}U!NR-MX`i,/T-r&F#a~_^@ާioGpF # aK! RUG4b]#7]acԌi #_IU0*Q=i0D3sv-XixpW#N+ l7UemG{< Tk4.`ls!)2\S#MWCmέǰ6Lwr1>HXSן[j2Z}Oߕ WY"j })VSOgӗ z (Nw_" 1 |썚  p| 9wM~"&!ÝYWI;ys$dg|;(az4+ݕòX<8`^M0; KqޏThg$4<2 )k\H@ '.|\gqܠGpb#Pnv"8aK͓(hKY[Gr =IT$fY ggv|T>7 7}xjh\@Wb@-}6S{$aSĀ,;̍س ݖ=F#fh. WamCl~Tu\-9R@#:w}YsuL>D! "Рy)X9%BjjI@J0?,{ޥX~U8>q߂iW,ق+} GG z( %]OV!S^W 4"Q9x4FQRa-i=|ė0#lF[M̤ez7W Wc{b\oD(}6R>yO,(KS3P TakrUQo+7}vu%PU_h!QS(<]K2q9޷ CᨉT5/}Net՛~gM`Τ_ħbǜV߭1U.CG4RP7g3Vo8 %ٳ_*>xs-5r(d<2fQYI2wK,bst֕ :,-݃!C+JtfHPd33 G D8Y_vB뻚 X6-vfd~"Wz&9 X-_tE% p͵[y}M?v gqQbꂱ:v[Q3O6Κ,DM͜:o*ZyV MJLhg{* Įe& :B$6Wv\nUĸfa+@:eK6ϔ8`&)>aP|窪@4ACSXxGJXS!Y^ʤ J^y*r 2{YoC[cjmK ~GܗY׍.Vunآc7m'w[|w~HM7u!>[U[xQOA(xd۞G &ۼ2bhNh% R ,qӍOgӬ'Zz4)C9{SW}r@dH\;:uS r_@y^PϜxĽ`rsr8nH@Swv' 6CYκ 4qs$gUr"x' #j[ pXW$QcAn7b8B/DM^}w "b< _cEaZ(#FG;QMw9C؍+ĿBg( 7msDHsG1^h700Mp"#i$ˋ֡B)J̓Ij]hxh$Px|"n6.}GHyjsEBԇm4Z8\F zHRg=tayq "mn_HT2)^GK TJ*2~ժKSv~AVu~qŹD;4.0UTL;fd3K,[; ("}B͆:c*&a@jmaGΕKzR,q֙Ѽ*m'ˈuAo ՗ ԡ ybsxx(<oa~0I:Kl [2`qTF]xrOL7}5]ݭ)FW.#˔ع^3J?k[% h[*"pGKY0o8`bVܖ3}bO.zl!yi _y,Ȝ $(9QZM" 9,WP(b W^ҨλuJ#d}tntmzJa#'C38R*~Y5cu""Vɣp[:28X|߇۬nEgoMڑ@.SjW!%s+է係ɸMp7?-IaQ"%Ek#nࣚ=jpJqh'Zdf"*}%I9RԏSؔ'6f$;htR3B읩LS"#2fA!geEe\P2&=/7: rfeTyݿ|Wݲr$I%r5: qL# VSwڀ[Ast 8P eFlY㡨Ծld%=Mj?i=X.J`9\$s۽GLŸfLM%-rqf}bPIGtK_cWesv|Yj"zjpLjX![52ĐwbHa h*:FF9tlb~VBk*qS>_vbigg|tDqWM4@aPWuB\Zr~=s JO#~~g*55)#3NmHۦb.#9^Iˤ(J"²9Y܉KavEfL0rl7% &T3_i(ZڪPQ\u.GLb` Vrs6yFUR4 rsS ~kVtX\i9ۙӦ $6*J_NT[w } MQT=픝Yὑ`&n[G&B*٠Hm̷c I@Xݰ8H,}O˟.etXR* MEC`7UIp%c%7Fҏ#$yٓS'0 PtÌ)^ʹrYG\i}wa7b$K$h_*j*<{&ۥ xx&Z&cZM *[c(.('1G1 >l )ep,c瑭= &#I@~ ʁytJNnjpN8 X(ij+l`rTvj y舰4X@ ]xO4ۑѡ_9ub )/qKSQzmy_v4w3wߌ/aU0j&GL;b3[K_'^kdxCueXrb萔SL~uAgt6aP2 ct]_xef\;'x^]?TAۜ>~)VL|_{$czu8Orm>ңtЮ-:>rmJ\wGkWfw`Tm]9[=m$p=\R&}BW}rV"p{k(ʹ :pEI:w]fAwspn5V/\ߴ'hjҲX'YB RZUBLYcց+ p~IG^ˉ6).$3hA/̴^KqvS0=হɣsV^OFU.9u^^=drN *_|qZf^izU,M& M6 zJ y#̒>&( G(@TqNDn8B*sqodLpsY_$fkbԻ9t,?=ө@ n&t%R}fI=bkO+"HLhPKnmŲ~b+Z֯Y)!~ee:'A^]n@ƧسHofIyo?M Nm]졠0Uʏ8Õy.41~)&I(7D4ۥ`/I308g`Zõx?+! fçr O]7`X{Hd8 ףfZ^a i]$K;[]({Xvz[a;򐳭G. 'l魎s0M8vz-Xdy,(jdjJ6O°ԕ%0r|qN.]@4*EvL7lloy"}ԕ21]LVqYniJX6 ~|!@ RIWzbԞPPojd n㝺t=VDbt[-Yז(pX6Y^̷V@sǾ%`+ sGMs1RLdBQs}ο'@H̦G5~%9HTGsp){k/Q)&;;F %hfy҂tamŇ{#7p'ZhgQ|$d,ݤT줕f7ݫq3Z&qOck P1Ș[~UD93:>) Pc w`=ƌٰ 6scvxh^6HG ghSŗzBMreew4$D7ɒAotHz>gRNݤ. Jcs6mh +l}h¬ Ujxǚz"VdL Czz@27[.ۋ\b-16Jj'uwVBoKa^(<y -ًVNg9  [%T,X2ԟ"zʳ=]a٪8$#@ f1Inf/HeFY)u2B-fkbF5rʷQnؓǘ~pLx@zݛy"D<a~z=8ݭXC㈶ -(ghükc"*]KI$?4ʆkJ@"oU_ ȑ !Ar[y-dZTNFqT8?k04٧^X*6 !?*" f,\uG*+/Q)h4嬝cPr\_#w KEɀ̊jam5:iRՄs97/=Q&1t7}y qt0@-6|ׂOp@)wnhI[Ms,7؍1y[-RNjVQ<5*8RU_~\Irբ`:r{Y?ot<3"9}`ra?ͲS^&Tӄ乣@7+gm@ r"}7=Dq6ϛ)ZW*"f >XH!;húZs= ǵ\P?,Lg [s;bu@i?{nj__i/Ɉ82* R”v!cYirZRta{GK^Vp611иd= m<` N2!%B xw=%\դxؠ: {FjUʐ='2+ 98,X=[^ M]sSЪiIAO74Όֳ;Now sL*Q8FS_o=hXçdA= 駁/&`$^6!"n@7q?JeWck~7uF;2Nͦ3 j\*Ow(L] 5,4 }4\ʤTb"u$"пj͒2߽SwWt|+{8$R 71_JKu8捡>s-i1̋SK͈܈Z/LW6 hוg:-tL@6j=:pƑyEwTk A#vn# mtq$ 0$)"b*@/܈ī '9ɝ *Jb"˱|p\ޤbjGxI QA@_fbK (Tvn`PTx,]"Ο)s9U:}on_-iae$1Л5WIpQpp'%HIgNwcCFIED3#ͨV\\\{<]iy,|04pSY>f(Ʊ}]xqٗ2 7k C~JNK9R屖[}a6VOE&4ij8qm|)[ ^o=hqRD$b av"]ŪƉ/fFczvbрM{yXjG+T@޷?dd#ը7O?w݃t[ѷXžnffo A'{gVY݂B2=-K;lu _اU *^U*Xٳ&!y9 e_kU~}*$F S$/im Lu)+)a}4z|[5ylYl< |?WkX/+[g^,qӖ sd*pY3I_ ֚4=nĢ…c 8'<7Pkfi1c-!KaH_Ai8@NtAݩtX]GlIWxm //y} Hê1W Z[q3jPlfNߜ /~@pԧaWdMQQQ|kIn3IĹ亨h,BӢF"5RlZd^ˌO*vӺ!PVj;&Ӝr37:Q'яQY O\zdUSEϫhuHl벢K[QFrҏ!}vw]pd tq/eqA] 2ftRRfג.s&(>8q8\dJp[x25~G XVLk{}軕7;g͑̚{'YjK`wH3~n8+q|4೦ hORmyYӪwU8|0+VeUu -6fd`9ma]ڟѓ3d5XS y"HO6"lc6 ֪GO9Mch2 1,_]DE}CX H#R9c끑<_H>|Ȧ% !{K5tj֚Hx ~})de濍x4 3u:b&߂ $uio*G̋pYYh5k @/G&Zw2.\抶* !hAg |Eۗnk([w)Yx3LQw8|R-Nv`Ƨ$Ts["8x?TMz閡 !"XRev4g%ejJ I ^ nzlHe)h eE-7\QxތpCedlBD s*(0 Pő ^!c /doc|agi$QIVz~9V&bۚ7)sPHr>8ʥ>k?H/ 3-T!ܯ.L@c(P zJNy>DVL jPo7rR 8f5V,,Hܯho@y47Q\a݃1re]tM%v0#8b[@6,ߙ=F;Ts=o (^܅4;-j@M8~ a3Pj/ǓMp̷FSm8 a c՝]fYwNa s}M36B`^^_S$ 3Pyn9d[KL XVȩivѧ'\P=ʮvggAUo g*Bf^T_~D񤜚#8Z h aܤ(i؈#ll7gV%ϔ&RFjl9 +ъ8*Et$GKr~Aރ~H'gIӀ_v4{:rXH7dh'0RensL;d/~yd`1=܂>մbem#]#Iĭ@xڀͩGE\'J2@ŀ3]OrE o3:e39׷Dq] ,TULe_=^f8< bz_zJY36nv Bި8~P{B7kx.-j[G E5mFٗC߱n S՗λ|$A:Nj.^ږrC|JtjH(qPGw{\x-ٟΐQn{-=5x+l20ƐCE:=53veVkŕlh 0-' Չ#m*,`ID7}_`͔q]압$u"gj| pwL"'}*{(l,`|8V ȍ:3|zYsZ^ĽCvbr3l͈jmRD4Z8)1O䮹$R@qHݦ0DW +d g{]%q##m<X pӜ?}<ݏq%Ph$b>l:cbVIjuCd jk͔h^ :b&+l.cWٳ:`GI9gfy6Шo^J7R ?iixy'JRaѝ%``\KKwi?r3li.4mpdo#; AQ8WFxi*g%űajaCLjAC377ݴ>k]1E F-e@ RP↿?}I [MWoe _H8OA>ʭ ׅb5[4&Ӣq9:E`s;ÆHеu/%.ѝ=Iyǰ Ռ{sbb!Q[QX\wC{?42w*bRݮ2Ax==+X]+Ůxٔ$R|̺(ƃ'] `Ɓh1Suy50Hb!YN`"LI@kVIýٶ+pԁofb*>v.Aӥt͗1uvj&,%0`]#F]<e)O]2|UJS/(LJ{WǥAuSWhVrnb"Orcp+KU,ӴJ&cjCc%a~CK^Q]H8o8fQZmy֖_@|F%xɨ\eE"+{5ՊOhUOcQ q"q y2f]V/zSYir`c k+s'of& Z,= {J-sz6Ъ SOg6kh!I+),օӱ,ƿRbCug*X^cHh+<oxD$mFW\iCuzXWLMyFugЍ",$H^5 { 57At=H} ZAw/857%*kP`óTk!2 ~I|@NQc1Jp1PХ1 `+]-!4*`CfU$!%CyPړS<ZĚb}h^2~xm \_v!|,To0sjx  I;) TsB oc/_GH";L x#O8gKMMP]X'b7 .s7aFF=/"A`@bMT(.a~n6P1}%]WeKmv#YEY#zUf#Nl_!r>]Vǎo΁m*Aa.gsWqx:ҼL~g37Ieì MΗCµYڨmD^bf$fn2 9 8_&t?|HagottcSD}!ǽJS'R_4͘#.&ۖIkNn|qjZ:73 7˜p2 䨴D:Pfut|KU  tw}<aPN%օAzskWXCz*]%7QVS8 =8mV4VE;QWqh+LV}3~-~MZr*xp ɹi^azúRLvLIh2cbUͿS0-?IcI%ݱ6My~!$fUp3 _#d'} 6`G4hܽ<46*we7,5yۜ3:op PU n#QRב4B6{⫛tZH^:> x JJh"8htSRذ D0֮9guv}wbGNSQER1 Q\l $f<'1 ְY^ZBH~ޝC |uRw0 F 1 j$͎_f -SzCyQCKO;(1fv2?SWn"9051->ZI(%ob68pX7yrJlSa&|,rg $roB Ѣ[侠g8xal&wS;ٸ̏^X24ArCꣻFR,æ ]?ޟ+X'&IŊnD6TxuԼC6bur T9e#m|hy)9ԽÀt$=t]ڂ˭Q/IkDqo6̋)v&$_[6BU#`96GOz#@ 91Sh兕q{Fb8g@c!m|ݱ HS@Wݭ`n*0wjqS"_unΈ6~ kL\qF~&riL8"* #Jo5GeDɰl ^1<*pk8-h@bV78>~Ϙ1?ƹ,0h-LT=QjxWijϙG eNV*wnE rm\GPx dGkRwaWn' /tJY1 m }{;&+td*ʑ+EMKإޑ|ud;2uU9js#7,.L;yv5rReuRwb7fh,!D^Z#H۰Gp5mm9(Ԫ[ D<䡷o  XH]tq}1:F ٴ 0袍\/)3KL-'+UUxgHu-ˈrDiLpoֽ7_8as$-x2)RqGK8ʗÐ$ AIHuW'FX#@{}PZojooS!I \m¾Ѱ"e4,l%O1)p sHN݊nC(-zض1uv?Z)׊G*q2!q?Μ ^lݹ,"2& @%0a#!:T|Պ`*e@VCi`NT1i= c""ݫOb{͘Fcx"ܞV`[ 5s ` t]z֬uJ,>@2soPVe0  9%Ƭ6N&2@zzh7F0PIIhӾ uއ,jv25yqWHdeC@EQ:[ZjM54JtzImgRaP"xICīuT:F#!|bY%=ס=MS`'+ɢ$ѥ\kb,֔_gyx(3ڼ`W5CXwwYR Rيb$G*)F#aQ2wvaPۡu>I:OhB/T%ٟz{gns UVL+( gV:4jmi?M^/|2hDZ>ڢ݊*|0 |L<>@9}*q= ﺐwQvKǞƤu{@$ y dDSP2<CAͱ6ͺ .4Ezrz4.0%:3 0(v#M5ֳPes#FxwDEK0uAHBҎ:LJ Z`8[ ߲9nYAbS+ dTA ր}$o\Q&UWD\qPi#g;!w1ӛaF҅MH#oa.ǧ3{F%Wl!X".c7ߡ4)Zń + f ,:MsPR|D+~I##@ɖMeOd'l<8~G/,Fodсޟ;2YX~ Lkc%]~B9I<2LsWkו@GvGTw]?9 싧ÍEM`!qO>'V[h Ϭcʼn-YuH Bܵ C6=L"U}ZFG{ݳ1&8C""jg '|Z餇-mA&UpVC]=WZFL;-,Gဗ]jtTB%8pF\ֲUɺ=:E-ݖh'ͅ$ Q(#p\z22i@c -_N]" ʗ)8L8)sJ؀P/Ao)oEfͭJ.a:l.=[N"s0?:#P$ڿtr1 +b*Dwkwm |\a? 18,\N ʃj*i@bC_Ye}HuhG[9XX|A=kcO9Bzsο2Nok:p$|(V :웂V۪[BD tM_LtKXqB!=͘Z &w :?zjoYG?CblHM+f%94hJ_4˴M%;q#ّEYҹv兰;|3qv#[N+] _-Zs6fa =_M>2-q ])Itu]v8q2ɇֿ2 ǡ-e&*ڱ~(jt&gP}F?z/pV$NxH%O^_\MGkOb\W=u.rP Ց5&//KDZEUjzhq!?c.)SP'1c)j5%NsőT 6j#%+m%+^׻@@ 2YGt,P9|!ïFNfONÎMx@ ^I2OJqqW^/)4sL!޼s:hfפ2WE쾸M;?Ap C!6`7~<>++ ;qEptmׁY5M!h5N\%LL'fmwN)X'h\LFZqV9֩TC#ny}y?g P[W :叓GD y F jͼA)nq'OGaye @B_G JW*܈B i7r7<|D)|+*CMƪ6"Lԑ<;7m7O%b_0jaLVaVo8{]%' X͇#a)$>iPR:qT Ou+*ө jc/e-ݒh//qgęh#tb{_ TTY)uE,4n$v1pU}=EI)|fDQG:3EhaxD,׽n(D_}FV 6/,7:8Tȫ"(sO 5lh '!ˤ_X: ݳ;%L2«snǏz'́Y~KybnEί->inϜb4:n'#SuO ߔq$#<}~b?$I[N`gbnMv \+dX㊀BVL*} %X4PD0t{<X䰩x"tqtNZ!FZZkmLnmǦefTF#-/O+uᨋ b|A a"d!-U,K?~_g@y6-XfUt)B8>pHlUt r|ﻺi[;\tg!d5&S\&.m%tVӁ>Lh.?ˡN7W[^P@]$[!$5oG*Z"y&%DJ-%Glq8 epY;ɼ'E\{欎Pso8=B$*tsػWgfl RɶŔe% |Yp0su#}:y5Ie Ϫ&|v;頃v]ν ݞR7X7ys^&"Wh-wEy;${)TqM #l%ß5(ҹ7W⾴r62{nL{ZXn_)w&I(kd-SWbl{ H.>Ew.'aƒ:ON08 =:F09NJ9pѺڿ R9Dl=w9ZI'aHMr'Ya[o,j S4̀p:fd1n/(/Aąn WҺ@'U2`†槭?12 wn[ F[b L rDs|ChXW\ jH2zZr29@x; 'HDEn-q_t=+[> 7M>D>f*#Rc2֫cnʼOw9׍!,/56%w*NC^M >]4dUrjy}MB ,Hy-lb'k cL(X/ZpkȪM Շ#؛a!xRj)+8#78TV!R 0E8}ȨHdct8H_H ={Ҍ5[鲾^8ŋJHn`cA]uYeٮ`˝UQ\¡ْ(.WfwC^D]8L,ŭ R6p9e=j|טKCv:fH=nXaGǪG ({|И"ѱW.m%~xRףjhsE("3%-?uTҒ8R> i_3] L6|8>u:;)e1cO|gѲFN"/ǣ•70 HT;KX74bԑ<37*i~>⣢fIEZ^ו) b`2 MS&,5AuT/c2 AL- 7 $E)r> ɸ3Ow@gJ|)*ی`˙{CL__i7 q\^uZp4E1\Dz. >B_lκz3M]'?#lMW@+I߱*ƙthlHnN0poζc "KC #T׍?Yy i6 ™DO07YqNd52\Zv򖷖:cHebLBV Dqd?G줂!gT}+BrxZ+[x ߧkfɽǡ}F=?S":vZF&̺&N`x1CM#=Ǜ3(|8Zc.e9ܮ12uf|<@L/UQWQG9FƂ*C 6 SLw:KבhosOJ!W937?K2\dNmh7}dݦ(T딣BNEj(HND\7; b/҃"3o,lyt*94ڮ '1S"88ݍWɅH'h-j:ؕk4 dpnE $>2<_&*mWy9[BqS?pK61Eǭ8S8>Q}v^_Ծ/)y9V)-k\2iGt\*"3#=~-8X{5{fzwE]}+=olKjee /{'z ͜C)+x6w[` --Nxcޏy "F+GoKJj[kb2 OO^9sik]?YI^L(dJkhh9佛Kё X2ۨzvOq;)4Xl3nR! '[)eӦT7 .fAe}t31sJg _n61P6M?]ˇm4g^lCK` 9 |sѫop+G18ۚ7z픔B|Pdo4T=4+s2JnP Qong MFoy_z5^>A ڕtDa OXsL54m\E.Kqgմr vj‘pD1-X(4Ќ.*/ƚXΡɾ"q+~Ed]k{I{S}\X.EFܻ b( [%Iꚲ]QA,ݥ5^CܭӯZ]&")`&f`hz #:| Z&UQvҿ*zsyj3zH2t{_&zng+|x2$V!t;Iw0teoB}wuQXvkqpq^`qVMhhLPv$=Mr/ISYftx:-ȟnIʺ N{@sI~XX we[vT{Y>l䣙]R(irye# O7PzʧkuA+a:Ow EC1ƪZV]T ]-ubItޚ$ & j qꐚ9nSOlIНyhg5H/au{R'!+CtiCp\Z[Rwcn}cbMtuX^͹@}mRuwmAz]cu0ШJeS}$ԩ| ٛ[nƈZz2*Rpp`~[t*69/YA55NkQuڰ;wldk;[ȄqLвh}6/pM0ؠgz46B cEȪc^me31Ž6 ~`#c "b"JYR(ip!GlA9}nI*u缬! # }kN5Lb,H#TG ~$w/fS`3 (9z=,Yg&GNµ )8'g4Ֆ`f |R U}+/ɞ;&{c dYy$?ڷ .#|@M8*"Nu8Wwjƣ83GEDUFCŖhHR? 1U@ϓ`ĬCH_?0+5&; 3c$x.u0>T-Qd'.vU.p,SEsh6w`O>т) je_uGUPOa͖cc[%r_|ޒE>SaB4[i[A"ӆ5֤IgجM [S$ӞON-Yw9qnÉ]2ebr:.> =c U3_q=;QRP?1sٝפD})T;ȘVB &_%[K}6U5ry6{Є{ \g>As_oՂ#-z6)t) ZyS x&պ'/8 )$IE6.Q`uMb% V窫h=.!߿бsNX7j ַWt0Q$"un! ^z5Ls*+yI,z,v}k@wfՆ`W94MD4̢Fd~5Ąҵ]^~А[77MZ!bǚN^VMIlT]Ƹ< nǣ&9u uZa.7'd;2ĵJأz n1S O?GVNχ9Z0q\kS9@h^B>Ȉ0,{b讍׎B}ƴ!wI7o։[LL(\ԅ ?Ǝ$|zm#vfkIUGH0_fQ*CT%[{GܾJ(s@f=lVPi_P˵@9!3YPmL焐-1Yds1\QB-sToje뀫ph>9{ Yc#OqnULZ Wk4va,{|&VUJwT\Gg aլEA wlVC-q cLО @#׊}:3D堢nGE$d0/?yU1[5уEyQ[IXD:ne,v{5ѼxM}Oq{ \܌Ǭ^PpQlg-w'BNk&Oa c?AKzQWA`T<{N.@RU|Ƥ`pr֟kʎ/rc2_A~k;pÍ8t;J M8^ B^$~&-I^bM,l $SkT[d {yYڊ(\χ ozd3<9;݁47[ F7h>h/Mm`ƣ 6Y',hEI؉BSĜ?eFʼntC x7 ZO,D\jsCI!n8o_g|VboXxGcG\ԑ9aK06ǖ[`wTIw=q4AZ%>=iC B[MIۿqX2X Nb-N/M&x^nM^3b"*mCxژľF"GUxSCVD-;4*x%*B=,[˨ [ %ڲ f3s#KԆmSm'b4Uve }5[G7Wi:RJ'bWUkIBE:-gQ&\ۓ%T_BFF sP+ %m!]rU}<]i!#Nh&1"'|!ɋW@Εt٤C,BO2ciy).REǑUWԋ+|YBFΣܳߍ]N'yR*1Y2/FONWGn(w?.v:S[NQwHo5R7Vš lH vXҮvbXd_dfRFk~CfB)@dKtG1(3$Y s *}|x~VٱꜮvtyoT nd'lklYQ&N^^E=nHЧityU֬JnQmb6 r_jg:f cz6iMi/ڍlF(b2A&-xtS^.өnUN[̢N ۵\$P]iI+0IJta<w=mCT~iH5h?-?kMƮ[20uVՌ=p/vN PG(9/X 'c*V/)v]n{r]pXMWD8}݉nܹ kH4a!Eji "z5/}]ՠ,@V%~FIP󈛪5|b @**gl_+m\,nVŢfgU"6iEg7$5(#  rp:vL`> 'Ww0}=rKWu^tEI'% \'PFL*h4XxdcjJ-25J UT Hjd^R  V29Je>8FZ *}58e_ML%!k "GNUm1,q-q" !VN0Ao.*WC]CoYOxۄ<`h~ոK%Bjs7 R"B^B@ϣ 5"t:?tV F=^' Sr -:%nw!,yyvU~ ^tzQj](g7o)h#}R? $:?{BP67,x~2DKX6d\vfmCNEMWw)S/<+2Tbf ]Q^/nGg6t[r@+=VPR3!cvi `kixævfֵvT;Gط\-]X>? "9^&$MF[rkqѥn^]PjjTUmnOb}CMG8Qy"w\u!C: \RUj^ltCyAPNe!0)x Wx ,"3(}RKO=BlRϚ] i& dΒnT$!HSzɥ>T˅ >o"=R?zkmOaRnTяJ `}@V;|-Zm$^*Um rCΔmLE| 3NprYj8`{QCVQ4Gt"5Ѡc$#9eW#A6/1JKX_~_FGa+xouEJ &!a]7m^s:jΜO2ṶSOݏ1]D6R&| NrK R@ta$H EjQcY^duIkWr1ګiI>]fZA D-F] |Cp oD6|b`pD;6W%ѱ Φ @ຓ_#?]mLh៧68螄2J¶'