<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/net/core/rtnetlink.c, branch v2.6.29-rc2</title>
<subtitle>Clone of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/'/>
<entry>
<title>netdev: introduce dev_get_stats()</title>
<updated>2008-11-20T05:40:23+00:00</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2008-11-20T05:40:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=eeda3fd64f75bcbfaa70ce946513abaf3f23b8e0'/>
<id>eeda3fd64f75bcbfaa70ce946513abaf3f23b8e0</id>
<content type='text'>
In order for the network device ops get_stats call to be immutable, the handling
of the default internal network device stats block has to be changed. Add a new
helper function which replaces the old use of internal_get_stats.

Note: change return code to make it clear that the caller should not
go changing the returned statistics.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order for the network device ops get_stats call to be immutable, the handling
of the default internal network device stats block has to be changed. Add a new
helper function which replaces the old use of internal_get_stats.

Note: change return code to make it clear that the caller should not
go changing the returned statistics.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>netdev: network device operations infrastructure</title>
<updated>2008-11-20T05:32:24+00:00</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2008-11-20T05:32:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=d314774cf2cd5dfeb39a00d37deee65d4c627927'/>
<id>d314774cf2cd5dfeb39a00d37deee65d4c627927</id>
<content type='text'>
This patch changes the network device internal API to move adminstrative
operations out of the network device structure and into a separate structure.

This patch involves some hackery to maintain compatablity between the
new and old model, so all 300+ drivers don't have to be changed at once.
For drivers that aren't converted yet, the netdevice_ops virt function list
still resides in the net_device structure. For old protocols, the new
net_device_ops are copied out to the old net_device pointers.

After the transistion is completed the nag message can be changed to
an WARN_ON, and the compatiablity code can be made configurable.

Some function pointers aren't moved:
* destructor can't be in net_device_ops because
  it may need to be referenced after the module is unloaded.
* neighbor setup is manipulated in a couple of places that need special
  consideration
* hard_start_xmit is in the fast path for transmit.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch changes the network device internal API to move adminstrative
operations out of the network device structure and into a separate structure.

This patch involves some hackery to maintain compatablity between the
new and old model, so all 300+ drivers don't have to be changed at once.
For drivers that aren't converted yet, the netdevice_ops virt function list
still resides in the net_device structure. For old protocols, the new
net_device_ops are copied out to the old net_device pointers.

After the transistion is completed the nag message can be changed to
an WARN_ON, and the compatiablity code can be made configurable.

Some function pointers aren't moved:
* destructor can't be in net_device_ops because
  it may need to be referenced after the module is unloaded.
* neighbor setup is manipulated in a couple of places that need special
  consideration
* hard_start_xmit is in the fast path for transmit.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>rtnetlink: propagate error from dev_change_flags in do_setlink()</title>
<updated>2008-11-17T07:20:31+00:00</updated>
<author>
<name>Johannes Berg</name>
<email>johannes@sipsolutions.net</email>
</author>
<published>2008-11-17T07:20:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=5f9021cfdc3524a4c5e3d7ae2d049eb7adcd6776'/>
<id>5f9021cfdc3524a4c5e3d7ae2d049eb7adcd6776</id>
<content type='text'>
Unlike ifconfig, iproute doesn't report an error when setting
an interface up fails:

(example: put wireless network mac80211 interface into repeater mode
with iwconfig but do not set a peer MAC address, it should fail with
-ENOLINK)

without patch:
# ip link set wlan0 up ; echo $?
0
# 

with patch:
# ip link set wlan0 up ; echo $?
RTNETLINK answers: Link has been severed
2
# 

Propagate the return value from dev_change_flags() to fix this.

Signed-off-by: Patrick McHardy &lt;kaber@trash.net&gt;
Tested-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unlike ifconfig, iproute doesn't report an error when setting
an interface up fails:

(example: put wireless network mac80211 interface into repeater mode
with iwconfig but do not set a peer MAC address, it should fail with
-ENOLINK)

without patch:
# ip link set wlan0 up ; echo $?
0
# 

with patch:
# ip link set wlan0 up ; echo $?
RTNETLINK answers: Link has been severed
2
# 

Propagate the return value from dev_change_flags() to fix this.

Signed-off-by: Patrick McHardy &lt;kaber@trash.net&gt;
Tested-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>net: Remove CONFIG_KMOD from net/ (towards removing CONFIG_KMOD entirely)</title>
<updated>2008-10-16T22:24:51+00:00</updated>
<author>
<name>Johannes Berg</name>
<email>johannes@sipsolutions.net</email>
</author>
<published>2008-10-16T22:24:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=95a5afca4a8d2e1cb77e1d4bc6ff9f718dc32f7a'/>
<id>95a5afca4a8d2e1cb77e1d4bc6ff9f718dc32f7a</id>
<content type='text'>
Some code here depends on CONFIG_KMOD to not try to load
protocol modules or similar, replace by CONFIG_MODULES
where more than just request_module depends on CONFIG_KMOD
and and also use try_then_request_module in ebtables.

Signed-off-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: Rusty Russell &lt;rusty@rustcorp.com.au&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some code here depends on CONFIG_KMOD to not try to load
protocol modules or similar, replace by CONFIG_MODULES
where more than just request_module depends on CONFIG_KMOD
and and also use try_then_request_module in ebtables.

Signed-off-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;
Signed-off-by: Rusty Russell &lt;rusty@rustcorp.com.au&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6</title>
<updated>2008-10-08T21:56:41+00:00</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2008-10-08T21:56:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=4dd565134ece7e5d528d4c5288879310c54419e9'/>
<id>4dd565134ece7e5d528d4c5288879310c54419e9</id>
<content type='text'>
Conflicts:

	drivers/net/e1000e/ich8lan.c
	drivers/net/e1000e/netdev.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:

	drivers/net/e1000e/ich8lan.c
	drivers/net/e1000e/netdev.c
</pre>
</div>
</content>
</entry>
<entry>
<title>net: Fix netdev_run_todo dead-lock</title>
<updated>2008-10-07T22:50:03+00:00</updated>
<author>
<name>Herbert Xu</name>
<email>herbert@gondor.apana.org.au</email>
</author>
<published>2008-10-07T22:50:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=58ec3b4db9eb5a28e3aec5f407a54e28f7039c19'/>
<id>58ec3b4db9eb5a28e3aec5f407a54e28f7039c19</id>
<content type='text'>
Benjamin Thery tracked down a bug that explains many instances
of the error

unregister_netdevice: waiting for %s to become free. Usage count = %d

It turns out that netdev_run_todo can dead-lock with itself if
a second instance of it is run in a thread that will then free
a reference to the device waited on by the first instance.

The problem is really quite silly.  We were trying to create
parallelism where none was required.  As netdev_run_todo always
follows a RTNL section, and that todo tasks can only be added
with the RTNL held, by definition you should only need to wait
for the very ones that you've added and be done with it.

There is no need for a second mutex or spinlock.

This is exactly what the following patch does.

Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Benjamin Thery tracked down a bug that explains many instances
of the error

unregister_netdevice: waiting for %s to become free. Usage count = %d

It turns out that netdev_run_todo can dead-lock with itself if
a second instance of it is run in a thread that will then free
a reference to the device waited on by the first instance.

The problem is really quite silly.  We were trying to create
parallelism where none was required.  As netdev_run_todo always
follows a RTNL section, and that todo tasks can only be added
with the RTNL held, by definition you should only need to wait
for the very ones that you've added and be done with it.

There is no need for a second mutex or spinlock.

This is exactly what the following patch does.

Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>net: network device name ifalias support</title>
<updated>2008-09-23T04:28:11+00:00</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2008-09-23T04:28:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=0b815a1a6d43ab498674b8430c8c35ab08487a16'/>
<id>0b815a1a6d43ab498674b8430c8c35ab08487a16</id>
<content type='text'>
This patch add support for keeping an additional character alias
associated with an network interface. This is useful for maintaining
the SNMP ifAlias value which is a user defined value. Routers use this
to hold information like which circuit or line it is connected to. It
is just an arbitrary text label on the network device.

There are two exposed interfaces with this patch, the value can be
read/written either via netlink or sysfs.

This could be maintained just by the snmp daemon, but it is more
generally useful for other management tools, and the kernel is good
place to act as an agreed upon interface to store it.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch add support for keeping an additional character alias
associated with an network interface. This is useful for maintaining
the SNMP ifAlias value which is a user defined value. Routers use this
to hold information like which circuit or line it is connected to. It
is just an arbitrary text label on the network device.

There are two exposed interfaces with this patch, the value can be
read/written either via netlink or sysfs.

This could be maintained just by the snmp daemon, but it is more
generally useful for other management tools, and the kernel is good
place to act as an agreed upon interface to store it.

Signed-off-by: Stephen Hemminger &lt;shemminger@vyatta.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>netdev: Allocate multiple queues for TX.</title>
<updated>2008-07-18T02:21:00+00:00</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2008-07-17T07:34:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=e8a0464cc950972824e2e128028ae3db666ec1ed'/>
<id>e8a0464cc950972824e2e128028ae3db666ec1ed</id>
<content type='text'>
alloc_netdev_mq() now allocates an array of netdev_queue
structures for TX, based upon the queue_count argument.

Furthermore, all accesses to the TX queues are now vectored
through the netdev_get_tx_queue() and netdev_for_each_tx_queue()
interfaces.  This makes it easy to grep the tree for all
things that want to get to a TX queue of a net device.

Problem spots which are not really multiqueue aware yet, and
only work with one queue, can easily be spotted by grepping
for all netdev_get_tx_queue() calls that pass in a zero index.

Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
alloc_netdev_mq() now allocates an array of netdev_queue
structures for TX, based upon the queue_count argument.

Furthermore, all accesses to the TX queues are now vectored
through the netdev_get_tx_queue() and netdev_for_each_tx_queue()
interfaces.  This makes it easy to grep the tree for all
things that want to get to a TX queue of a net device.

Problem spots which are not really multiqueue aware yet, and
only work with one queue, can easily be spotted by grepping
for all netdev_get_tx_queue() calls that pass in a zero index.

Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>netdev: Move rest of qdisc state into struct netdev_queue</title>
<updated>2008-07-09T00:42:10+00:00</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2008-07-09T00:42:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=b0e1e6462df3c5944010b3328a546d8fe5d932cd'/>
<id>b0e1e6462df3c5944010b3328a546d8fe5d932cd</id>
<content type='text'>
Now qdisc, qdisc_sleeping, and qdisc_list also live there.

Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now qdisc, qdisc_sleeping, and qdisc_list also live there.

Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6</title>
<updated>2008-06-10T09:22:26+00:00</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2008-06-10T09:22:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/linux.git/commit/?id=65b53e4cc90e59936733b3b95b9451d2ca47528d'/>
<id>65b53e4cc90e59936733b3b95b9451d2ca47528d</id>
<content type='text'>
Conflicts:

	drivers/net/tg3.c
	drivers/net/wireless/rt2x00/rt2x00dev.c
	net/mac80211/ieee80211_i.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:

	drivers/net/tg3.c
	drivers/net/wireless/rt2x00/rt2x00dev.c
	net/mac80211/ieee80211_i.h
</pre>
</div>
</content>
</entry>
</feed>
	"T&*Q@``JGh*IPS2A$pMI@кH "$OIN*N dBPU14HAE$(ӔVib (J$*Y%&6Wd_7`xR
,*XYX*>ݜv\Ҋ$#.tR̲Tp w/] EBxR4dH!:q &|#[]GTcN)C`|)2 r<2=,"g I(6㐅HPPXvd;1.S959tF$aT*mƊd5B!&C\:()ʆ|QiE!DgbЮ2`Ւ1//k?ma_2]*"?מZCNc~fu{ai6u(;"H*~sqYfqC<bSY6z|zӻn7v]a$\ʑT~oEdYRxa1{֦4bk<ʚP4,fig~Ǉ-/E??u}C5goq̿îvZ;_mp?%5sS1 jAy7Ɵza㺼Ż	f|~yVH'}}ЪgTO2>QC*B!|/25t}{{~:hse\¾\:OtS?P?VƌR{0O|^_h1#+%HU&_u8LT{aIkП^yOw|7e}F%Z/BX?Ǔ=^9vdNآq%x3bI;6"S˳[!0pNo݊jpHj	7Z^o:K&]Ky)īDtUwk..%|(BYATB1gx;^:g7OkR ٞN]Ȩ@JPSFofT%M,NMrpA%i'KyCjNCLk!;xܟ?~92T/bDlGn;geϏw&ʹusHm1sˆIۮ>*)n9C#}:_yWg".w&"`o!ۅ5mͰX?3;$<*jIׅePOЂpW
]h2#U@`$~+%_&CwÛz%;߶[~Cc׿{xaf{Q9t(3ȡ˾/S;(- y*(sX*9߻A&vV#mVQqG^`@ P~|;\9sg՟)5ɿT;x_vW苘繶|H_﬜fyMR!T 9fu"L/w>XnL!
_O\D+aA?s)"SWm0xD:~=)|wjHTkZq(R졫yh~_W_)=IBGx` ^YGLфz]^>{ +?T>2SmxԼ[fqRemJÜl$*1y¨N"t/ꛪW<PW߯v#Dm8pƞۣ&d魕~# !1at0#H,P}J&$pD)7ƕ8A6|}k(p)oi<G1vKQ/Ke}2q/s~Í/f݈kTA𫩱9g?\/oVe2w^&z5mHF~Kz˂O>~~@>߂E6n#~<ӳNKPMT"`{ٌ[޴g5$%J" @ (HPK|-\gvCD\a`62}ݠ4qfDoǝ5d&]6rkg.?ӏl873r=\	gf(D\xtxܣ1J<cNUԡjo`EU@(ed*]]&ަ AѠ>_>rWtj~1%Hd+KL
w>~!STy}Ј1$  V`F4vrWϷG9O&	O!k]>7sz4X:Byz]aBYZ&`? FW5klYSJ3<8G980<[:./ô6D˚aADMޕ*7yf׸i0]˼]p_wצ!Y0GFwGh6N:,pw=굊Uu>XoK:35-Y秌M (R}?ۼZB	CǮzӇiqw-_7ȃw|3^o}[jQlҞϚ)-Ã͔O"F mc}Ee8ma>ɖ?,<ufӓ3;b10_p3jWݏAƠƼ}/X%Af)i֠YGwY'w	n?QwbJjX}%㛌Fgw$vR<Y47`j#w;klmSl^a[oQ'4ׅYctqͿ=|~f]:yt}OJv7OW	ٲ'YCv̺U޶a#Gφ"|&jOQ[;>ފ%ͶuϤ[i=ߝw-u7wi/[wWix~MY5q-[[wGPu7:pvd~X߳ÇOOD(s'+t<ozӚ<Lv_ϝ{x	Fێ}5vv􇛝xhL6s'S`?8)m٤(Oc+ ۈ.}5~CGvKnrЃ9yـD=;s{8sA)mYz%yk<.lu?|8Gj:owxak|iemz|rg{:thVtmZR9߿(=Lr{ݯ-q:5lΙǤM~$K-2LyI }{ٷJyFϠi$z?/H|9Ċr菒yv]e׶ڥ~[QWvw'li+\پCis헶}p79/aXAGx1Bgw$z.mˌu!n#wct˧k/^~>wĭ?E.Dgϗ7l<T`Ja
FP}6`"D|!&D!SCXow*Pw3_DD`K^=Jgе4$JH-Huekn7`@7j'ڴ4:,PVo;W^P?]  Q[Jc֖!=ͥ{`#zUl=?cLw9s菴Y}ͬx*"ludaV-5d 2DS~j s_laf!j*skO%adɵ[:
6e]LX!krUPdJ
=ߢZnZ?J~HppD 1Қ0;`,W!Q>Ƚr%)@	ѲIExӱsO6v
)C63T!$m\W@\
}j>:0]x+4e
<\N2<>ba<SzDEڮ场/47&G>Z~߻<"/5,AΙ;V.jnԊzs	J9A#|Fso/axǇ 3,ʸZJb3:c:<!]z5޵E?>g^aQHYPRU^dS|Ƿ!_*}^Rjbüxx׏,DjtzgfYvѽ$xLRAFK:w%t2Yǘ_y=w0~$:/߬/W~_"	JG|᭜J#;!zz-=UmPD|1e8>Wݬy?D5?fy kOjRK8m_XUܚ ?b1x	IV[Jʫ.0I%lf#flFX/`Xcq+ͤaΫ
\e+ܠ>+r4Tl/U H31̫_QHD0ȉQh.O SWhUdЎZ1P&A':J.cm&d4}}@L2(s9X3s]e߻P\*^I{Sh,9Ю zB?WlsZ~E}1 U(.s}-mb Yͯ}7yrG?NNaӈ`
Iܚ<^t<V;c
+fnKn8mQb'Li}Z}Ged؉#G<{+5ںC
Co#^R>w%Sn٦87K (yh_*'Gv¥J[5ʌ҄Uծd7B~[?R.`.Gs^.rvvިm.U^Fv;˲͗jj((D>5ṷ8F:=v<@`9s^Ίs$O0#9p]RϨ%s/fByklZ0_ĭgfZUO}.RdQ_9zh$	4=mQ}ĉx/XvbH zhem1M;U%q˪mx.7뒁уb- <,nյZLuFw;7쾹C!Ww<""g+(Tp-dz,7]ҏ PSKt^tzxꐰxaIӻ19QFJ<|9(|@c0%4zn2l7iug	yΚw޿MN-hUZq_\}WSiyߧ|뽤yw!Tsۿ}Upfɿ>[/j%o|G51^C ?f@H)Y^shFc>6(:BWBH[,+W)vܭ{9ͮWCɜ0HKs=a, Fi}zaN,Fzo	'd0jv_~V(>ے#?<\gg`11||5Ga9y'`vx?yiPt3W4`)~wW#}|L<0ԯ-!q	(j\_dKH}/θˊC㲾󷷭D[)vG:E5qq
7wW0+(__2y@ڲZ'_?а-9KOEVv{Hjoq٧x3NnJL3q,<QRڡv>8?}$L)_ŇضrPO}Z77|F{cr}k~2Ď׎bwwa	8z=)UobXU^C#놅E]IutEԓ#ݷVcy_ϤO\g3L]Y?s2_v~oOQ  /	Mg8Q>j{wHG[9gΞf:#n~wc4Z<}Q Y7Տ8ku޺:G}RƔbGhA+xdKOeJ*O毈Å$}>OÇʃ/o#1cݶ;wRP#]#09)[to|8P @ufSI;9lzD~Sߙ KU[fvQO/8#¡v(t.[6/5kY.M2srQZJI1
;\K0YȋnQ?lr{_>jF˖9ᛈ1|w3|n'pk-BPka#ăǞ7&?9S.o(	w>Z>']\oG<ƣF0NͲJ/NN.q͇<toi.??WE3ɕ3	@Mz30|$^R$FV
\`U4?;7[@UǓbu
]=Qh5A!	BA`ozV.o+)lG[pJN 5rHmՓqbP>&NpR "!1ҳhc=E5an'Q~\J6fx<rQ]7umGȈL&?FR͞ES[	^9p4~.;F4?EOg1Ac˽!N?FuFVVTmgfhu~I]+QJlmHV"+JbSEƵPI5LUE,bUHE#k޼fpF-%$A=.V&3
Z/O׎y8:26<pǲUf?mǕ:d9k͔a=.w3qsHq'	  35ED4ƌA"EQDVN9)ц`y&ќX]UU(FPr!֩Cr۔dW.Z L2wrRXD9.	>_/&RJ}Mr>\=0p"u!y+Jf^Hc#ȻC÷u5"w @̎c -0ܖpltɼ]s)4A\ÓۃNϣ #H,ӥk}xϗ_>Hj
{zqDqsXфӪCL@4Q1{y|?[^E5{NM1~^~Yal)z EnYbpizֺfC;-0й7_;L(sז>C-o8SG%JCewn?^#wS2L)	Pfm Orl)2hDO 	="D[]^_)5i"® ձ
RkB8_৘Wom,'nk/XW	Dt%#qv-f"D*wJw8<}DFsD_RX[YS0e{x]LNR벶BtJ:=
	ft(g|WT̈.ss=bʏwopK#Ed4k4?#r|bk^a\lt3cF,#&UQ!E-VjJR>!. ^F,FrȠ~H lB Ӓ(:nfCpQ9 ۷x=E&$Ses@:	R9(.z&.A8DR7s8ɫ[|G֯.fu*CPEd&|[amg۫yc)PVZ=üm'ueìJqxJ8\+QeHd(*j}R|;Ȑ6_wTE"ʄO\_@̸|);}5	x@!  $H㓣A7irWxuxvCjfs	A"<vE1o/ͨ^À<]\c(19+"4}hLH`U%]5B_?6)kHD8
05E1ɞ93۾I>p9nkz:f=o>hi0yCqP~)/뺊#|w_TutY߈{ު<ӝϖ[0.-iuT61AՎyܳpG?v0lXVAV_̰z+-px!Om!*%y _[SÄb8^ÒfEZjȦ<Grd % iIPHU@*	f_nWAXlo2bS|Sg;|k:2ڽrT7V/ձ! o>^]6/<>pyBP"8nDձ 	2*<9eD9&]p8tl9,OYKc5rgM(V_f{oUI2#~rq v!&76q@|<"AGJwN0}xc!ې)u{~"_N'_q`Wg0> Ї.<xƓ9[blM8kb* l$W\ȧ<=)`n=6p]{Cv)eS\i8`!xX۫F2߰FLgxze?_|R_vi׋]ݹE?IյC8,$;C(#VL^򟔿-wuF'#,b[%e)pgcc C1"]4:*حqϱ鶗CnڙMZF8lL*k_AgG|qd~\ڝce .#Sʋ2'D R.J%`𷐧{;rXBp
	պk;w}TuA־bjЯ[є+sY`MyWjDѕ,_L[вWՆ#p+lJ罻s@Yv%,p:u?=YapyqÜJ[}2|QLMgEPFܼnLW8q=acgUrîmgnl7z	)9DeͿ7@Gqjv/6_QJs9;2>7u])Ɗc?}z(mj%s87/ȴd`|4U#Y @_&Pg$̛B0AoEBϒjxI	E<XUBU7Jc
3u!8YJ2	|sIc8MQ;ؕURۦwFV]օDB)k'Q ISb;e7CJgǬbEO&{NFU,B4q3IedȠUDEY*lS,HQty=ib(ETY{FzJ;7Zi
`p#Y2Ps='6TusG|k&`$/V|J$xbUʆdqIMjD4 2!>p8*@ǶV2mqt߱ƁW/{REΎ5GE&9\<r\^t~cz-QO3}Q$SЍ+[fS0={d(~jzM#ְJ =
Lmx20K
~C.GF
ʨG n>W(z
CQ> Gt?XlccNu0A' \Q=6X0 "wS@7gFtr
l%`O}B+l}seWP7y:~d!6bxtFc?Wg=#Sa	=b,X:o`F1ci_M}v-UTEGT04)_tym=͉ $i*8kdT.Sf>Q3.>C|CPqBEY/)7<i2tƯ{0Pre+)Ҕz
t~̸*(οvϺ__2MI)br~Iۿcڜw07/y\58l#3?$"r$gr?a.ϒky
'n{%Y1GHP=/v[𿻿lc>8,F6-гm:6(/DVU>zG1u >[pd[@dyD"3)R"Š+XU=@4.IFp F8Tc:45C@;.FK~G2sNO8qWO_>y/yk0w,:Ýb[fۼTrpq<q#|p+"_kؘrIwsg8u3ZB5}	/f1}F^&^ܳ%ÇT`q|QqZ@"7UqHcS$@NFDBWAda;}d12ZMS%N_RusNGek	B)@`wBvHt6>>48PX(\swa瞱{y˴ArXG1L{̩BT79+o9/Gw#Ix9;cV0ː;/*b?TH\75N}l,W(.EzeYÂsYPF`q8+"HS1t3n郇>_
_O`&oy6vpX	W3R'.ه(8F78þYH_?q˺:TwlH;q.Sߔ/Xݣ'8Z^pfhSYހrYYR\j'*9g5VKYf#'NP޸aR]충G4hv
F\p\c
qjs3
ȓh#)A,N9YUl휶Cqˇ}s\UiwD!ܪ]A0iemu?dj˻;TnGdqL>]5{.ck22<dܺf)/wC#tvag)<-ևŀǗ
y35VE{:R-Lgls4>/>1"cZP~#vCH9=zp"]|,(af{zB]P?򩒫C9yl%YP' Xb ne/4ur-vm f1We|x߮eEc+|^ը&1U(4Sr{ SF۪.3M(ক.aMBc =^1Y8i\ \\
Q%[v6(~4y汜	s;Z\7ty9.zF4ݣ[K<d:MkZ9,\OW̛H=kF%pn""+$Ēz%!1dZʭRNK֡{2-65X(CGkD,2sQMx~(;C,Ө]>ak2`UwO\g{X1B&N:;pe^Kq~dFʍc#Oz֧VI`1z0:^ptah`=qB]ܠ@a%,2nvʈM&ThDq^!1tRsgH&TEBgF9C똵2^i !/r(m2$]C
S8^Vc2e ) ibJWPKy9,4g"/5eWy c
f-9rג--H~d{ㆎ"s.ώџ@kQha߲gY98exXBKGQ#<Xˁ</O"P5/=ĜH[F<qL^C4 c5K7ʉj<N-9Y#f&t@ƝOɌÞ8-o^^57u+g8!Eɕ\Z.2H(?_EcmJ6Vǻ&A2lo :N:=ڸ}inHˮJ$w7R c`\'`?%3ÿ;q}wVr}VqLH(C|.˾uQgX݇P1kgֽ#g]=TZG?WẗI9wG43sLYvtT}KA.C_+l(o.K"Rxr~q{STs9,u2p^ȥoc`ֳQ4]='D?o|NսЊD!ɏvy/К[hӻ*KYYr{G+8lοӪIKeuYDAXFS}WZ8|!=nafT:~puctNU8\)}bVsR/ԓ4@#з52g-3sA<}ksSH)RK0`Y1F%+Z%` cUi% ;hf 9ٷD \xP6]!HI-dI/#Z.u4>ڦ2Ӆ+'GRƋm$2 żtGҖ2,I)stLDЩaӱ_#Xw}9Py]=W.KdF,	XZIMhE``( wTXt,fxXH0r84\O>q!c AUetyX.ijX!b-Nr)^;J|Ƒ;kڄB̾|Wd"YaOja"z~͹6w]=;Y@wuN(ȹ2V/s¨$كNx,e*G#vDhT.Npϓ4;~}&S#moܾ\\:
Ү3ó]&	s@BC71%K#EQ}gg %] 0{e\n.St5Aûa0Jѫi]*Wdv0zۣ\-˩厔qO5a_ߖf%jC+:!Lu+{]3O(XC$Z
yʝOc~le}q.JGL%Ԥ5(^C)*-rNSZü4S.QrXPy H$tz_	?7-o[9GN,mqxo{/d1i颸ҩEJx.PwHc1"Xu契R2>|]N$'^997G@2Q8X"R8tcQ^jErw4y}\!KQ:yn\{?O\eM1 xi_cqvw301sC+YYۭt톙4s>O IY<CKbBh^;ejlu:WJP=j?#Kk*6PI8v&xRhys7w%E~~[
V+?ypX609yLA
3z
~WvK{;ݓ02wg;yi̊Wc.8+:^yUWM2q`.Ѧao|$g]Xm쳸&B0^ksA!Kr%[#&щέ&Moeҕ#gg
qѪQSRv,C7':m53Gt+u7n+&&tν"0,̣b0,")IQw15ʌéݝkAbz8['hװ'Ճt9s^dpw2+3&vElWNYDTi' K/UDLwxa4е8(R/7LDf)1ykIys"ȿTaiF<Ӻ8!Ӊ>`(>8">2=^p(/|Ј?H"9V| u2T>I?!8anÅv#?/(%5Y(,`Fj}K9!j*/cH'|8	kՌQ>m^WI+jV	%N0ig"wVS}8xS}OSЏ:G	/A"G^2%W/0LC÷KLRaQV="PL #Ϗ#c[-J]ct<ЭLORY}JE	\I 3pGeYd䛰x~;ZwoxODA@q}|_8nn#1Oڞy=˱B
"%][m#ʂ&	VOQ{OEzTxxMs咵ܷ{O0Zz=ӧ6/jzA~̈́d_)KhO\]Ze+W>r*6lvw]o8JaXb26')z"QyJpTpsFN"`{7Fy&ÖS^\HNNL
iGM$wy7n7vM/2.pd;&Ms~lXI25훺q/@y,8Mb]ܹGVMΉISGyĽ.u{Xr8Yk?ży!1pyX[R{ ISJNoH
(z4p3)қ;Ǿ5eaX}YEYXa6P]n_B~ON!̈W0/Ê	~3B[:Tf;g1\ڒIuk8EhfkIC/Vqn6{*yĽ5OAGpǑW)l:i/'0I0sv2qo1A1E~q3Z֔{!kaoWٌ`gRenG}sl~q̺/;ُ9_GK7~^ zCfcW[7CWF|\vpp{WѺS?HvAC0\)Rc㊯x_c8"ۂ4yqzkNYd.^T}?Z C'GgFz)v[<a)Y/3t"S?+xS?BB@Ե'Hf>7nIbyO54JO(W?VyG3p,坺]f{Os ERO%͟{W,=ຯ2ڕar{Dł><bvBaÊ|}}@R"??[$L|`ٙМr- Ps>VAz"ƾ|i۩T[ r߭votMC9x:_0-pŤ~9U2*EBY;[	54kJ*Bbʽ,4`zN2b77B-C%EO47yʚ°?E܎{wZ?؀y2@`@7/_Xg#EK2'K20PH"_JN
GLq"O@thb,%qKI`>D0hD2wmsʐĂAbA)~A"PʿCA#A!ebLa͆+5+۾KbxcLyl}F}у'C%p,(m*w@sX=`
tPP@)vnA`gJ16g);+kOL%dd.Um	0\5WZaz6^w׶Pev1/#;w8Of<}{RN TNWT&[4A;6apH,/jtCْsK.s^z]KB/E/Ϙ\tT13SrI?4`Mrg^y9,:2F^#.@}\c_uF9S#^?4|vӓ4W5dctOT@#vGW?;ہL t!fݹXRJ"~&˿SGޖf\K}/~EhuPZ
 E W@crGH5As}y;d5V4`:au}I";N1]oU
)_ 醐y#dKޢx*8	gu?$3#*pPDmgN58sDИGy?rr*ZM#X+m.^Ί؛O4"ch ]_#N΢I2RڙwU
q8{y.$8G!.WnPgr,]3iNDE<l@?_}Z(:t2D8|G-55Nnwr0&f:"ȢF#H[ hZ`*eMR`bc(a0e_1XWʠfג(?$ce~ꮪ*\G>@J(I
 S(UpÃɼ3|-fY5B1s߉}/[_1^kGt;PH})ȎP'( 3ь1uǪIX\/Q^a/}&vsus1;CV꽫CڗO3aph8m0ׇn޹ŅԷQ<= qsnŶ0|Rb>iz~ތ~Nl=d+v.:xɱ}>` )T\G5{V$-J1_o?kIL4Z*}VU!~-57^ppYj{=}֐-Fpj:s Gy?)¦l<MEfs|&&yۦH+Ưrf),KKHaI.G41IH+<닢>cy0|!OFj`whh/PvĻwVwC&:(.L]tzdpgm+#7[<!>xt4~DMH~5Ǩ#f(k#`Q!C7zAʔ"%-[G;!G;Jkls7#?=P*f:/*fxg -朡-ԞTahn}_Op~K蹴0Wo"hyϋNU-ڗ]sH8S&_+l9- 	W]n`KXհ!Ơү൸Rxs˕C9oj.~\| D:m7 C#^ڛqp<Uϵj`"}ώ ac9eF[4<+.D	`l6
AT$9q9tMLpef=Dk^fDIv㈗h@ǟkJ{ٓLjL# QzXN+^>=eh'{6􃔢'`!?_>	ƒriB
@<Ht]BB{6RTJ4q]"NйD/[m7FIc1xXpfiID[`0 $(@%C.뼺ƑD=
F{ofU!5g-B_%e̡Hc+	R>;ZT^yȣ	fT8ILSY[yr~;Fp|:bGE/װ&\:nKà<@ɸ(s'K ZNz4ty`.3&)ukφ>ʴP%{:Hd;OWFPɉͰ
"F-Lo M Heei҈'rxY!_qR;9t$P0O0]zd.{v(nS5X'VhOhPykǑ#ll~K|1{L>14]n|sv[v,jO1 9O
:Iko70
G^FGC/g8	D8cpeͥV%A !f_#!āz){ĝ%bBLd9iˇ! :DgHۈT8^P)%BćZQc4g?6q@`k}MI?30َ?8<y)F~v\uH+KeuK&=YW<zqp9PdD
s=x"	
xm\M|n9"6pW=F\(B DC(ۏzlG!}iV 0(HK͚D̺pLb0Jf9Ư/\["<pGs#Lu[xv/W>9$Ag)UfUTREْ"nU~{%}vv*̎la-dXvC 3?|,:K"2.۷WY$!a5o.|$ubʖxgs;Hr6P*EfCv`%lXW$JVY֪=\GUQg{Dos)7k[Tg=.bu,)Ng>/.GL"??ǜ&@/3'a}ϥ{3o@ҌWŪ=u>e~ߤxBɸnx͝铜g40'#&r9Ht(j#|i݅'LYrms<7{NZ,\kXHBb<ً<*ޟzMkp&%*Qn_y#4"~jIeg|Q||!m5/Iv1ͽ;k`i!qN">XB4D7xQSL|[ޢAl:LV"֎p":#B}{+s_Ej%mAt';FUdr+y^׏u,"DxAx?ZszY@Ԗx9,P=?FުU|Ks=3H5Zt2.34ce߷B\8LW.DN]ZAD%|[B!?	2]MZISWx5[G,d/h@YB
)Y=T#WKߎ%9\ Qyq#sI
`09Gsėuw~-c:e(c)J`̭1x\%`\5Z?t¯|;%~[dUX@Z2s.ynʝkvh\PY$#8yb3T8<8CSjZ?==#2'd}X25֯;5|{]G j7U׶?2}W=$9|iOysW^>ΒVWCjvlxZXcgVQu3~M\_ZG\UƢMp pOt>FM6`F!Fh%^rAP{X-DTKVM
ՄYpڞ|#]c!TDlr͈Xϻ`r8ܯЌHg79a_&$nOLjD"
=N[s6zznrsYn#Ст߷fJMY8yӖ,3RYfp(aŚ{%:rտWnu೭˸gۺʧ;.~[=Y)aQ!yNP\oRbSI7?iis|Pٓ'qz!|. +<ju9+#lh+,o=:GmԸ%V3s's
%ɶ>>GwmmVn3fDET9Y߄E4XvN]\.#o'#y";-,#:r {xҴuisf^A)6cǜKi+ȷ>}(8jhRᛲټ&.qݓ[Y\1UȬJCyzqͅ?C*O}Y9~$_
䌤y:gH)KQv~>BSN;ze~;Ke~鈾+縠L$`E49˵zʺ5|>9G!g{qz}.!h+(E4Q6xqÆ8U0ZUusc,
q`nLDpėI:j	 鋿+ˏ#gDȩ[X 0)d9V基ރ<lY0`&]N!r%Pz/+$)-V{-ݰG1^hg{X;˾!Jsu*w-BG'B雉]귧Ԯx+MوcYs 郛]+rPĖBT8gnsWa+L'o7:"Z)RsbOSRN-zL_Mpx"Dz/0Z?[/2gU](n&ZӃL$Πϟ?7PZWp3;4O0_߿vXւN	0^\/HrXge'hqEcQikPү؇^vͭR|E쏕QnⵌӁ'9Lک;#ա1F 8JHP8Hg-wBrZf<{'x<~Q/Ul*-o_BhK)Eaow;@ˠ~+#gfx2qTdRӣ1NƢF	z{#ip$f4][Κ_^֜ZnQ
9Di]$f&ŉ'|vϝЄ
@ķZ
>(/Sy9l6gTՒ$US@pe*ڹM; 65ݵDR<5;کߟoz@"=3 Z6}yJ(a-	 H&Ы5:^S9:-"NVE!|ЀpEյoGҨ:U-őNxk3Ǒ^ԷWkl%vᮺI4CL!{kY;a!F],gNmT:g0^|LokJlrCfbя.l$r!
mriTjg]tgAUQGl3'L`7<>%]mV
).y'=R~fO'-!ɽ 	vGf꾳ʬwZVLe#^͠
ٌ/M3?z+
ZL#_6n_K2ʗy0_)ȉy%ON86_k_uGffYrJ^"*{|1 	2\w4;OQó$k{=1P'c6n X(W᪐3p %n_mg{}m	<ܣTD8DZ^5߬ߐ_dy:^i=8[??)iS~0z$N.W<.ʾ
l>7OO?F~&Y㾏va#Hĝ
>Z##'*lBs0Q3_|fS__-Q8˾q22z]  טN99NɨhqGl,{a];grW@2Vs3p&H{4|N#x]c8ȑ3.M}̂Tg\@'?
Q5(i%{Ƅ󚸓qU7n8AO\<.S%b5"W*w֮goxzs̛UIS'YFm\8e/h&,2{Vw}q!(_^̶Jf	%Tbi$^j5Qe͘b!/K+*6?ɟ.^<.z>緞60P 9g;/S+f0rL]hgSX?,d;q b aCH[˝l|FpkɄK^KϽ^@g_kUy>4Os>ۤxtT:ΝBR#@Af0!mEjT&CDkWyPgX7E{?"#ٍxÏBܪL \wő$B:=Ґg)o.駢*Fj4͜*U,CL\XX9B?o~Y/[~#n[Nc:SYԣF̂.x"YYc{*[|z+[(cezPDů4:[3v>G#Ϧ0r8	RxyCljQ.swV鈾77ڣ^h3\_pPF{쎷;ڮn#-VeT5,O1PC>:2]	gp13nն0c>Vڜ;2+UQP GlM:#,Ɠ4gU(?)soDzs3yP#{]	@g~w\x|!(1X$NaѢ(Z`V'E6σ*DW㿚a"O./(-x 7İ!(۸`KMloOrJ&t+)pqj:Or]>'z "boEV;s~3}aOoQ{k^odz+&EC*<a2*<V|#1u'g{C$P9Qw,wJ76viIY%7lr~'2(X>Yh?>5قßC-.giMΨ)#_8O1FPgPkM/{6`̀~1|P$]? ȾYQB3u}P!PVZ5W+#8EM'UDzq+*4)17\m,!AUCg&~DYHT݆P/E^0Җ8!qf`nxXW-(eFRߜGL	iH_baqǺAMW<s.X٦+Q+l>mǊ.*>^}	}9fq&};3g]]LeQ-_0NCˇMvyt4Jr<n#Ѕ~C!̬@wrBas
<d%FQ8fJ>3X$8GT%H*;}z
T%00ln!y{%	)Db8##vc3M$pQI@n ?{VeJQ!Ġt	q"sL1v$iȏ[o^cTZL6j%C;/:Cm8YxX*yRg@#6n]m291Pn s\ñ_(c ),_q$鋑5`e{4~Ykw.g4(|dBt2bG(uG=պqZn˅f~)_+ƐD(S,݋k(7>nͺ!T<yVWY?L=:EG*񥁄@EB1R`>"A)=V5N.;À2@2HF'8-E5Zrқ`
D}m,;ޝ?eZb>+qlMHJ@;2:XaOGX{wDWFujm"q.TxHe&X}0`j7%VT`,b"w	h1xQUԶ:`-LfLeDb.KPEUtaZ9Acb-[b!i= ?Is*K{95!t~Ho3ԗn LJޮG;~sîIY	9'slp>ɹ-gP+#2$o~Ӽ,v_xD_7Z/[K6Nx&_]N; ,yiAZeAiER[+(9gv3sw9>ԯ=EH2_ёݖ29G;'7]9Ըi(F;__d'R~\ޕDx^FE{pRy::a$P@f=il%1_ŐҍhB=tun,1/\sF}"(/M{ET1eJbq27e9;}@A2fvK/4Evl>tP?&<OMwH?^ޱw׿AӦ$i&;0S&wܨ+b-Hca9WUg~qe	R9ךv:y=|3a,*ʮ+neHB`sb+)c~n&L'Tg _xp`K}3F
ߛ\2)5|>#(915\LQ\;7A8; &b!,]wtߎF qSd2dzTS|cb*.eWb;8gN0-|Y>ǘqC
x%(AM(9}]ίu?skߩ.lqIO>M4 aN&e!<_Mz=6Q"8u@齣-j-1&ҷX#Ξ~;a3ՙӊ/uk±兢'~߶0aHeG"S͊cA+>FȤZGQU-78Yc-OU85,J9,FJyL^kD9$rg%=V_Wj&ϯbDAdSDEbX ş>ޫFWvwсXoꊘǼ|pz33?~]D}닣BUnK:tގ)Q:pibtgIUg]fs^
7FJ?d<vB͑v1=+y:!F{'B- +R7(
`4PsW`=o1O/?]%?`d0(%"&,wć,=1Zsxr2 /V?϶:4yYn["cЉ4kjdBnm]J]5rͭhO</OsSܗU*Ӭ8Oy>4?ݜXd	:_n`eahn[;U͝]^%햯ґiS[u^.KCwzδ=דFa}&\@zj Y!Ys[gVK@(8fEߘ&X"uaa}نoIqt}\cƟw97^S<[Z	|[.ep4SOPvdFWkeʪ-|o$-;\Fyn#0ݤQpKbPV5:y.2@6Q;{8%jU 	'<{xaӶ_'h@wMu7HZYlp2Tp!pb0򺼳|
@
;kEXo}~
?%bx$$٭ԙ\E VgF=~7|RUY}Eqzٜ(׾k##W0HsGqW .[!:>m>d|FG6U@]rfs0m/=~xj-6s*N>Ց@,1u;-)lXM|pl#)6>8Y=޵wF5p0ߓcKY>,i+~ a)/Q?giR^$+J.bW-`8I2[,
&j78R:wd1=ΞO?דN1{n-]R%b2I#_*!Ȣ=UUcmG|gJ3ZZNX(`vY$d`L@>DNs{9	
yYKxȃ5DuXox̮YHzng1LXvgUx{E4pz̭8WV5[$ѝ)CӋxԊ$b|W]l$\w{Qn7@9qǕpE%
>[-P.qN$qHTN7efXCF9~zr9Ώ;+`rMo6+'bCg:lǰߴ'ǚ.b×[`c(DD赦1jh1&]ﯶPt#-攃&GW!?'4ǟXkڠk/Gf!	Q!{)>.]o/m*$otq"#"8BlBD=3_;g|wy8x2_6˿|u^e@W?";FHt'&hFP
՝80Fُtt6~-+9Wkο6hiE84\A?
|(#*M8(;GP%L+j"j+>ʨw/םWKbs>gG8s9^c>n|O/w[XS0)yxubč^#$XCThXYZ͎HpE=Dcx]Ȳ{ى8O/ݜ		&1%tv3zA&<94uįۻp䋷qȧIptڮrSÊg6(gs,a˽FD9x]۷H8\sC]rZo&|FN(-М&b?|g>^Ps1Q!qER3.#4.yXf<=$̎n8OZ<	}=QOcꐹf'eVڇBʚU@HG^)ٽ aБ/?jNМ'-o	 ${cH-Oܼ3BrN.gxSs86sזvj}`(+
:k>:n#W3;$Gv
fe;Zq!R%H"GlkӒR*d:*cLbph_e!`hkZ
RUTUZF*NzfQ]#b˫ޮrX-VQBsDޑWQp'p#*II~ <\J'Z`!cA6(<4pArkބY&[gou2̚0V#ԡ\^Ip]"H2i8C_y;%yeI>n]aWzhTTܮ,
Lg'7)n[4AS>l*9tPŎ/k 'ţG`D;I_Ѹ(AMp>0eyݟeD~B8+܁P9üT0~\UN=Me#geo3x0Eh`oG&ZL׬V&)gǽY1[
FͫG-L:yeL56rQm	\bvI //x+"ځAB^5n!ź278 LOVTwt?ʿ6ʝB@}-;Bplk2afP|hgUGRcjV,λ+	؟c}AC)D%J1rNgIPGbd[Qn9`f|A" rpx"j_%%aR%RHgQGyyo0Jg&.ik~]YUIk.]E":M
&v\݄$slK\mg$g'8T25޼<%G?!~h\8KG郸w _,/P/Aa~<hbm"TTQ"wHD+S<t꺩S) {y|^G(.\,V(ڄCԴA޵iܢ,2]&[U^NlS,za՚\I{}hb, 
7yr9>α2=05zȭ_'SK-x<R	l0AtFu3w,8>Rnr9IHK^c'S9I[+?Ca¾%dR9qRSr7Php$jU$q_x{"L58-Hn[\Ek5DC qSl:	^gD}Ƕ`+MM\:9.72Aɸ<œ"pfBF$dF/[
`$,&Og9Z<k{15'YȐ}9!i̳0)<Dvepk83Mœ./c6Ķ9Z/s#Za8<\'^kQG3VC
(]>>?ێ)D>W}؅*w[}pՄzGJ9#GQLWuQsZsRQz.7,(Da^\z80!j<;'!g,$'<Te-0kQEtI,L
h* xʓĪ]J2p:' h*
Rgx
 $$80_\K#DJ2Wr_>&eǴ;HZuQ\fW22ŬE\ 7]p0]o}Qm/\&辂siݥ}ÊDn-1=Er9WuHiK]0#utr5z1cey"ͨ/
FJBߢF/}0s|co;J<.%Kqr5ѧ.KtAcY`r/cܕ;
gq) DAsZg/Ŗd4er'k ʷdZ~3ex<UUTW+z':D9"E@
	Gay]<`)$)J6"lU@^Kb`mv@ۡvM@hU?XȼI&G0t$h}ހNOW!R@::]刌}OJ*df%G@_YAu({^QGn]\vA.3H9Y+C[NA
(36X+wqomԼ҈!eZeK:(\.Zv޶M`0c\2DpT9~+N_,_&2o47<mX:0 Ь8t;\9^3c<HlUSMΦ5u%ӌGsƱ;x5xYlJpȰQF"l儞\P8?O[IISs}5޿#Y}`/ǻЩ{O7.B V-]N倲6E:hٕṾ/a9x.FrVuq؄UG*%T`SShB6FC೒]H$(ItLE3!?o 
f1=Ǭ~V/k4^F@Q
:$}1x#F6~,*F!g?iwМc?tBS5^>?9xeNA/9/В>R"PWN5{ܼ5
_5|ϛJ5pTy*^qP@_1N^q/JD|oi[eLCJyBbb.֐>Xa.2"O1炻#)>Q#7ڪ T_n{/{ vkR}0 q!GӶs$,Rx#Ǆ3#ilӈtp-"HbC^ּ	I5_͘=9_NI9WoGvSuJqX01j6zCOL׫=)On!˘]ؠLJˈSJ$&7p>yHRڳ%ýdSl|w9;g|]d7N7¤:
2>M?q5zA`m;sәwߧD=s"Rswq@7\b\3y	(Jaf]bD#g\,XLn"ƿl?@f4/et#5Cs_,}MN2bUd_KJ_y?<?6R`e܇=e0P5$c(3Z0qȎ<,煒51εljGi&,(qFWd	7?.R+Sיwso"sW4=kΰ~+ZB?WYh8zz:_F@${3o92UU jlP&ieՏMP)FMTD<ŕe;;3õjX_	-@d1ziL?CY:9BHpJ,V@|<Sf1] eulP*k7
jFAJ
3əhBeTkqTE<cژL	
$z{,5STxjO㯍I5POI#*]ʖ8Ncj>_'F9$JT"z
G	.	`^-w&@v{,+X3@T]S$
s* !,pPg?19"QT˜/ӌOmC #wǣ}x`ޔ"C`
i-ɱmt}HrB$1>O1Hxۗu%n^[kuv$ev]K䂸wBq31'לp`DxU#>◐!CX\c3k%?&qv=zawyge99czσkQٷm	ѾU9|R'3FPo/f^迲)w~-7S⍾Yqq>',[m#3y[No83~7:=:HHy>d^JW6Df8Qk#FV?\awP.U=n,U8b>gWW_t!e邍-.QOV)}PN	0N*3A(}3x:]2ٿJYk
UҗTM$kPG)y7_56K:am^Ld+s5g_r Fds z煅O}~X񹮈ٞ(!qxMRPx;[osEZ
VF=tΖMNkcjn$k%nP즮g{Ř@b$j(,*4KxeēЫȾ,©˚NNoVdjDGe!|(zGA_"RoFE^L+X9*KN,#홉W'*B_vr3s-h#{_688&7xXy޶e'oP?zt8&F+Ti̧^ .˚"Q2TZT%:=)ߝ8#c=0deI%wq ~|^pZ
]Ά'lt&PV+ ^^a\볟=A{g#T;[]	Zna{&*WxG|GcԠr:Ktœ|T
8xe"{}487((Э<jv}=0 Nw0Ȝɽ>WK䏱eHFk{i=L8;?G_}9Ψ1&mk/1>xR*L\#$c"mrWv>Y4UfWb6R#9~\NNG+'fK]Oy>kmYCJ
tf({ui7VNA]֖{Qs
fVx(f$+Rp9vZmbĨby
Tq 7^U'^NШNuX|XC?j̸n'* eKtDYݴ	Q!gU}KCF0Byjv>_q+aII2 Ot7{~YQ`܎p.Ǽ_iZ$#˒Dy(F_ºE zZ;j|ŝ-ueĈktaox_~Σ3,T8g780Uen;;:Q5G5=pR¡-ll69Б;tCfe{(5CmF2~kFCdCPϑZ@[G뛉.]ҝA	J{Y{np(U`RR&بc-3\Vyq-+Ӱ˫SF?nq\on2k=8
(iK~	qy/S\0}balBs%TTDTnu3Qoigݹn1{tck	֫:'I{NH/#>be[`/YD$MR|d4#ET]!Τ\Z1GKյ+~3˕6.E&1.9#HE_@$͆63w2<.AVkl]/w.6Qp@gľGP#F<R}b`qfhivs!R 5i f[MO-%A Ѷad8??FTw_p萫._~9$ܖC\ᨳ!lDAb".`BJzx=P^qDuƔ]JإkqJIi~:ݹs]B롑uAJN|e˖g pLH7Eq.Pq nY4k}.9	lc{^pD޴cю٦dj9m4* WǞ_7no{Gs&X3,do]LCزҗg[?뽡S3ϺS /ś?/
]ReQ0 j ]pGܼ}c{t(ed}],W" +`8[($d.x)ػF'D܂%kki﫫
	Do>P3:x#\.kr+?,9r;B<3Fs>K}jfI\eYH$IQMKll3=&CDfk׎xFIt93QxM,i G7s݈i登smjeWҍ4$/\KAˍc(ćrSg[lo?⽏h3&}Vdӎdm_Nt7f+yi5*Y^83>]GsO|=w~&+AQAIs)SJk縷~Xtß)~kss3==T=@TqG僯͟<^EWfQi5<.H\q73ζCnsF{GEcCnJEJ:W]u`\Ǩ`EaV oPS^!QXY>KCrt`vz?[m@B6?%H2Gk`]]PPaB^9.pKZEc?UZ`T6^8+n3VLZ)+ȁұsÜ<ܼd4@j}H#Dd쪓LCq!H=럗+?WOWA6(47v'\yMHnSĈJ˧8&̈g6^SX"OǉxOH
|SBI,js5$,t_T9~Q$^"@H Ѽkbˍ˄eA@9SPV)J]UHYpYla$'F#;tI8<< ˖[
$j?A'WqD\*E|XD%hAj.gClCrK|oE$~T7O=}{𜇜s;NOXlUL%Y_M&Wr,iIꂆ#0)+ }w>ݿĹ3,*]Σo|!淚4)Ab`qʟ᥃<Zu0hTI|=/.ᛏ>?>x>|e7"K	'ã
\X3913Q}8eqar	KYr˫[,gogj1}Khy@p\	^%LJD-?d]3߈w98|3vn:`(_ܡޭK!C}>go#ܶ1(8kuw-x<12K]g!NՎ5`߯8!vʶ-㯟z=FGx/b\܏Υ8R_UȰq_t>ppҬ<b/qwTDG~j_&T.̃]RH>y@+ϟѶ4vQ2MIÇ8f'ￚ*)8*HnfMb:ǯ94C͔9n
.36ThzR(2pt("/u$tof%	n|xW
ƧgRg!|tç> CQorVEmkkXI`>kqNrfem6Q}sP+e ]kD:P_V{7ij3R."zÞJ8T<DI.|@\.1mXsq]S7Ң1+!/e
DHͮNIi֪J"{!!Y?]]}mVl*tIxZ9oAewdv(`D˻Dxĵ~H+oT	;#б vqXjtLu6s;vP1z!0QC *I]W%'0ZM^JKi}aJ^-%=]as5^0#ŌwEd8OwgX"?p&Ijw̈,d
_ן@8ב򿊫ٙ]PBkn G3wU*<['UާW4uLDB&v#|hLh6ߔf7<M҄nYOjFJ9s/g=y1>-pN~%vH}8uZIcNhׇ3"2\o(3#X"!1<&}]¬pFKr}~vErA3ϥn%h7W#4x쬓i䓬$SuDqu2fS'[}o)/&xēKNh5S"u*QhģPHNļG3qek7:ZRsck/Bܨ}j7I`z-hZ)<DH*qٯo'Rh\tٍT0*P
i+ P#8٢˿
?r<'y2E,]|y	du/"0pmңGhr:=[Xj;}OŔ?8]
os.Iщ~t0h,@
}))R-F#(?x0y}RWKF$l.1!rJ*.#z$44)= :	ŴQIp_s[]s4?ϙ'㚚.I?8qrZǪ٧X9YpF9<BgS鈩|.i+!unx]sFr{k^<ZF17r#s={xn3ι֡sɫ4*ρ^'yN10!c1kgum뿔wXL\)|iDRݡ3վ._c_&PPs56p.+)V8+kx ʀ!@$*7x3	*(@Kl#1vJ5J0t탡2H%&^4Mz}T)#,\!Xڂ
H0\X#mA V s77LU(>w똙n\`܇B8tVц39I׭HrT:n/rdb׫s@0IER	[Ҳt},\Ѻڮp<-6W>yp(ÃC~jJt7E0͠f`ye&v̉6_,YԮe;ᢇhpcF6Ʌ	}Z^.~ gO84sg]DAnV;_P|0(:<A$w;CK!#sZծmCm5b*\5	=f9>`'<0/g#:]dkь*E/xȾ*<]HHj?HOg2@ҫwC:|^/lЕ<gZ\}]XGCbEۇi7|Cl<9^E-qXtNz6SS_?..lʉs2'CWH},[/p^Ws	sSAq[R'Jx/y ܖ$At!2a==G,)(Sry;'9R/czR\Ɗʛ^?~/wCsҿq;=^1G
bY	930¶X$	s|a~pu03ͽBv|_	P=Is٘b|˃:dzi[*}QtSeRR,;@#S륊uX1wMsa{ca=51c$]_[b@:;08͕fd__&F:2C$gcԔe-ЃAq0l^&RE"7QA#g7Bp(8{~>\s1([~,=p
5Hڮ-SqFO'9_a꩘$w+D>(!F P)cQ4եu:+Gqee>DgtRB^FT.n%c^JOV5MΫ&z)3-ڼ0)*|,!лBdmQVѕ*J>|ЪM_'=>/kދFcm,gу$?C l5gAԪge6smN?}I-m_9_bg2T7z(r|"ޱd@ 0(QNNQCbl	N?BMjĲv=iH{j.pδi=,#iCZLd03~>zsl_q"5,>HE&EmAlI[q$pnt(ΌCMf3uqQ@CPbLNpU܀C0u̾ǈ c d?($J=`s.Q&Y-ףiK҅h1P#{XJ; ]'82S).?\|hm\C-^
$|x)Rxֽ@Cs]$ >9i\rsV}P!`D'g>71õSߕt|E|A<}p0#YJKӆD/O+~]g u
߅}˩[mkn0q|:zVͅi˄t eGBV q9/RqS#*$6חgx6͵T0
v(G08J+wCm59·+
rvw>v&#cj$su.i^޵kƭk:zާ ߋv>|u;3BC^ޫ3H@֫*jf|(9syggs7]oߔڙԡBnyC=?q_bs[h.^8N߿5B!#@G)D|-W2!]<1>P }0+.҅#+s&8"x⯞WC뱮޴3)Iw&>U#zd5Ϳĺ %4;LHW!ȥaHC5+ν=}k'rdA!N>I녒Ilz"	C0]"j,eJ_Qzp.|v$mc&zw֠|KݤgnË2xq"t9V/ugvϴL7bU(toap7w0-c2WstWci-G=2\V/ބOxu/}X}n']5	sCsL[pO\Ʒ3ZӉ|tMSeHCd*6c'~68<H|خ*nyZky 34o[Ąy7qkr*7r$C&C^^c'ԗ81KD"cfh%@HJ_,cًIRk#m	Bf#"ZT.妦gSQ_#7~>VuCˊ=^\qV@"9,CD	xxнK>.#+8_'"wN7⍻xs/<\ׄQxWQY79h7DYX]ao#cIAlIf\;?\mN3c7z#Djww]T ˥8/1<"O»RYa$N⻎]ox.Cq8}\;d:<Cb\'bs>yOzߘMA?*nfwt`襇syXzr&maqG^o_%h/Z+$m~9Fʓ	Rj+ZwqwuUV@Z?f|xj;#ejfL,-Y30b9yw<.@Y <WKxM=)Dɗ
_{K>1gC]zӽiN=nOnK/'u#q߿4u,:]<V*a1|WçK@!sP%JĒ0$u⋋og:/1x5Ύ5ֹ5n,Gf!W";M=o+eN'Y5ǏnsuO<yQ͟3O˔'Xuw*0.8w(qE?'QG5c2Wu:f7
|?2R#j9MrepӶ'=oGĦy`;g:WRee'Lʽiבvo<clšge$Ct~`IyPuʸ˰eEknMjYɕȊܗ1SUî*:VbDn9uG߱׌5`CbV?.|+|=%qxsv<o4ĸڔk3;Y#w	0buf8\+ۆrK7Uው^bbJ P9ČLuq3g8oΟ:TY֜j.8xsqKqXSh."wKʓ\Ψ(`1@ZqXPӠl/7/
D7yx}c!?R#H\=xs.6|L>oPX08$@m||^,VVo5dCY?@vP:g7|.i|ʧHFVNX"筧&_Rp@ 4בО|<EEwg8<̞"RczzuN<.!L#l\ľqp.-RLww.qqyd{5wRp '\t5i@'k8Ď|sQ@59#
45Wf7HNx_f8=^V0y1yj&®n"~y'qX@abKTE7E	 [\G|j6l{Ⱦer6p
1.R&
GGlFs+ytRG#맣;Gt|`Wc{rKcj/xsW4/cEe[-]{s6:ѓ5w;չ=ap脍XJFY1VvoxFz޺FںwK̥kYdC2'.mV6-b~ʷwүi|ׂ<yN6G3V=U7yG˝8ԣa@^g`X;+qOYz qɧ<B{Ipc.3	τÉ ;9g|4y.j	z5[9䢾o]b?918YUg3jqI8"@fAߛyp"!hf cև=~g`K|EErk( 	-qh7l[)6;zn/C@px7TK׵ď#~ϳ\4UsO?	#wNKSKE<J͸. ~CN:2X/eqqcB/Wݫ'D9O{):btk4#x
NzRS?# q\y=p	tD`5\-^5լEɓg,_9>}bY׊"a!Oc;u>_ʭa?j8O=aՓ:y:grS((ƿ0pܙtǽ@!\
jU'd@YV-%Ps?PUNb_#+*0;H`W 0i$
v
Ju{D;)q#R&?~
sc|{1(H'IU-j$bV9J9R&	47$dIz*\ARXv$)h\cBZ	~"May.SI6۠cr]ck>sr "ImO8mJk",HoOЖ\}T8D@%	XRezoY5NL_@"asTh F
ajXֺ|~j^pEy?}Ξ+0VQ+2Dmog;Fz3KXqb|ǘr* Dt\HZP?F>-t\rc>r_<_VsM	vjj
1gs-i`0׺W gbEgXgCG8`bUF9>3v
9pATn3r}(n*7aѐ;cu>P]; f
5@7}j`ZԪWPP2͏~<fGy{yIk /]J$Hz_3oXԼ]|]C9(F6BDQ^BuzO5ě"(hRQ?JyqB^]z9<z8ɻ7H;V0-"<Dzy\ n(/\8GQQ?]!'G:\$E.-(>ܪl|zxđy	9J~1U;S5("?GsCaBtW8sǾbJ:pd{	tK0eWf{vu,At[qWZyt.5en|Ϩ%Wōˇ5I.8%CZ+8zΞjiR:96 JC(,0.U73¿w㱬HniZ1w탣ip5tr.`ouvgވŀV]xE7̓t-+<*!ubIg#OZ5b<Gw(\˷qW~qt .rT:pE:dT
'MHzctGKlun7l90dN3aN̒Ɨ'.̠!30lsW_8FͱDǣ)-Gի_[j]<wʼ2U,U0ʧjhLKf}\f&3@`~ [{u(& #&(mElb±[zq2L75o&7#š+usfaDw<pb^C{aHӐH:*,W8)f\uaj좙Y{Oh9BN[K}f`o _ֻBw{a=śa^YØ9~ʉvD;[߱]MA]Va>"Ob^,^YOOxK3)[:z{fՅʀ0n	g׫Frޠ~.VCfpk茠V*r1vZJ@Iu95Y&%q}f^ZEW:\b&Yx7>,7~8!b{c?+6ɫ␞8QzBfn՘҉]4!F8=ȥr8?ُEƾ!s3\#<]u 0EW #Bk4}Q dSyH&HzSgB2bM!HzM0Pw=
^2>6VN#EB~oXdYQd/hSa?]ނn7E#4wbf+ԗhy^&2x5Hz̮1 Ф8B>Y$XM4XH}$2CKeciq6{_}O}d5	ޯ}02X%jCDwwfE|s2jcd^bz.2hE8I}Usl5N9t6̽j^[&M9N0T@HD
H0$O~rLxXӕIg%&e;b||rQ_gJԼݖU:cEԱ=o<L%*um:,eX9{-Gpp9q{@Ϭ;u.偩"Ob%_
 =@*t2-$:atCxdy_.qzeTFp %'RVᕙE؍S<g(;zZ3&fq>x"oJ86<f^7\6}j8#άڢ@kyu#;*85w:`GjÛa9Kڸ߰@DdGX?jCu59EAyL~+`>wy -%rY.vB^7sFyN])D&mŖ&+0%7oCyʍ1hZ.ǔC[&}dRH-yOzW$C9io∏zJWdiBV#%F:㷊]C0oUγ  DdhE{D=uwu'(ѯ/nvF37~&\ (
lkosw "&Y$S.o>Kd%ZfyIoc ƬmAz~BXT5$O/NNaM/6,}S>~
 {
t'nq,x]?"g7S.\ƾjmUGxWg~=-FK˸5C&2uM*N1Ǝ!>j<B M8ɬEpq}AXMVu$,J!~0_rqd@W+2k:9Pd|H5c5\gja :(Z AY&I/NF"IZ*^{z43H?sRzHS\;7=N`s̅ٝfd.
ֆVuZݳrftld474ya3+²c[,9W21UHh3]WzY+LեUr F#Zy0%۲<|j5\\: Y!{u򟤦X+gl[߸!sxP:/'S~Rz-\!!% 3JC?/J!~exnPZ0c$ZVI0r{.=?ܓ_~8g'
c31SSߦJXo<!YXY|N?rs $mA,H1ߥ|(g_^NςK"dy.U=|0a'dy}yD`G-8x tJ!ƣ.[*BqoSo)iԹ6b
WE>|W˹8 Jg<W+jˌwg:D{Z߾i0XpAfXAɣ2UӪBQY+jG`Ћj]9C`GfhdevNoTS46d u˚c
0u[#<rpDWtx5S׈%i2=u員rh0uK+VkX<CΠsEisֽ~v^ϙX7f/_d	+~Ye
RO%$d\goc_ϕ<I'<1^Ȋ=u-ZgO/ǹ|xsa_T^(lt/.RUT,NGӌFJ#X;};8Կi_\)ՔC+fdŠO7}.DA)8wBlԅhmX\Ck|c۞ؼY_+Eы-z5P7M.S&408{sƴ	r&T0Gޣ@"M[UR?CE},}[H	I+s\${w4-TRRf7O5<"pP