aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/diff/engine.php
blob: 982149457de66a4bb1b6b42865f691851614954d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
<?php
/**
*
* @package diff
* @version $Id$
* @copyright (c) 2006 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Code from pear.php.net, Text_Diff-1.1.0 package
* http://pear.php.net/package/Text_Diff/ (native engine)
*
* Modified by phpBB Group to meet our coding standards
* and being able to integrate into phpBB
*
* Class used internally by Text_Diff to actually compute the diffs. This
* class is implemented using native PHP code.
*
* The algorithm used here is mostly lifted from the perl module
* Algorithm::Diff (version 1.06) by Ned Konz, which is available at:
* http://www.perl.com/CPAN/authors/id/N/NE/NEDKONZ/Algorithm-Diff-1.06.zip
*
* More ideas are taken from: http://www.ics.uci.edu/~eppstein/161/960229.html
*
* Some ideas (and a bit of code) are taken from analyze.c, of GNU
* diffutils-2.7, which can be found at:
* ftp://gnudist.gnu.org/pub/gnu/diffutils/diffutils-2.7.tar.gz
*
* Some ideas (subdivision by NCHUNKS > 2, and some optimizations) are from
* Geoffrey T. Dairiki <dairiki@dairiki.org>. The original PHP version of this
* code was written by him, and is used/adapted with his permission.
*
* Copyright 2004-2008 The Horde Project (http://www.horde.org/)
*
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
* @package diff
*
* @access private
*/
class diff_engine
{
	/**
	* If set to true we trim all lines before we compare them. This ensures that sole space/tab changes do not trigger diffs.
	*/
	var $skip_whitespace_changes = true;

	function diff(&$from_lines, &$to_lines, $preserve_cr = true)
	{
		// Remove empty lines...
		// If preserve_cr is true, we basically only change \r\n and bare \r to \n to get the same carriage returns for both files
		// If it is false, we try to only use \n once per line and ommit all empty lines to be able to get a proper data diff

		if (is_array($from_lines))
		{
			$from_lines = implode("\n", $from_lines);
		}

		if (is_array($to_lines))
		{
			$to_lines = implode("\n", $to_lines);
		}

		if ($preserve_cr)
		{
			$from_lines = explode("\n", str_replace("\r", "\n", str_replace("\r\n", "\n", $from_lines)));
			$to_lines = explode("\n", str_replace("\r", "\n", str_replace("\r\n", "\n", $to_lines)));
		}
		else
		{
			$from_lines = explode("\n", preg_replace('#[\n\r]+#', "\n", $from_lines));
			$to_lines = explode("\n", preg_replace('#[\n\r]+#', "\n", $to_lines));
		}

		$n_from = sizeof($from_lines);
		$n_to = sizeof($to_lines);

		$this->xchanged = $this->ychanged = $this->xv = $this->yv = $this->xind = $this->yind = array();
		unset($this->seq, $this->in_seq, $this->lcs);

		// Skip leading common lines.
		for ($skip = 0; $skip < $n_from && $skip < $n_to; $skip++)
		{
			if (trim($from_lines[$skip]) !== trim($to_lines[$skip]))
			{
				break;
			}
			$this->xchanged[$skip] = $this->ychanged[$skip] = false;
		}

		// Skip trailing common lines.
		$xi = $n_from;
		$yi = $n_to;

		for ($endskip = 0; --$xi > $skip && --$yi > $skip; $endskip++)
		{
			if (trim($from_lines[$xi]) !== trim($to_lines[$yi]))
			{
				break;
			}
			$this->xchanged[$xi] = $this->ychanged[$yi] = false;
		}

		// Ignore lines which do not exist in both files.
		for ($xi = $skip; $xi < $n_from - $endskip; $xi++)
		{
			if ($this->skip_whitespace_changes) $xhash[trim($from_lines[$xi])] = 1; else $xhash[$from_lines[$xi]] = 1;
		}

		for ($yi = $skip; $yi < $n_to - $endskip; $yi++)
		{
			$line = ($this->skip_whitespace_changes) ? trim($to_lines[$yi]) : $to_lines[$yi];

			if (($this->ychanged[$yi] = empty($xhash[$line])))
			{
				continue;
			}
			$yhash[$line] = 1;
			$this->yv[] = $line;
			$this->yind[] = $yi;
		}

		for ($xi = $skip; $xi < $n_from - $endskip; $xi++)
		{
			$line = ($this->skip_whitespace_changes) ? trim($from_lines[$xi]) : $from_lines[$xi];

			if (($this->xchanged[$xi] = empty($yhash[$line])))
			{
				continue;
			}
			$this->xv[] = $line;
			$this->xind[] = $xi;
		}

		// Find the LCS.
		$this->_compareseq(0, sizeof($this->xv), 0, sizeof($this->yv));

		// Merge edits when possible.
		if ($this->skip_whitespace_changes)
		{
			$from_lines_clean = array_map('trim', $from_lines);
			$to_lines_clean = array_map('trim', $to_lines);

			$this->_shift_boundaries($from_lines_clean, $this->xchanged, $this->ychanged);
			$this->_shift_boundaries($to_lines_clean, $this->ychanged, $this->xchanged);

			unset($from_lines_clean, $to_lines_clean);
		}
		else
		{
			$this->_shift_boundaries($from_lines, $this->xchanged, $this->ychanged);
			$this->_shift_boundaries($to_lines, $this->ychanged, $this->xchanged);
		}

		// Compute the edit operations.
		$edits = array();
		$xi = $yi = 0;

		while ($xi < $n_from || $yi < $n_to)
		{
			// Skip matching "snake".
			$copy = array();

			while ($xi < $n_from && $yi < $n_to && !$this->xchanged[$xi] && !$this->ychanged[$yi])
			{
				$copy[] = $from_lines[$xi++];
				$yi++;
			}

			if ($copy)
			{
				$edits[] = new diff_op_copy($copy);
			}

			// Find deletes & adds.
			$delete = array();
			while ($xi < $n_from && $this->xchanged[$xi])
			{
				$delete[] = $from_lines[$xi++];
			}

			$add = array();
			while ($yi < $n_to && $this->ychanged[$yi])
			{
				$add[] = $to_lines[$yi++];
			}

			if ($delete && $add)
			{
				$edits[] = new diff_op_change($delete, $add);
			}
			else if ($delete)
			{
				$edits[] = new diff_op_delete($delete);
			}
			else if ($add)
			{
				$edits[] = new diff_op_add($add);
			}
		}

		return $edits;
	}

	/**
	* Divides the Largest Common Subsequence (LCS) of the sequences (XOFF,
	* XLIM) and (YOFF, YLIM) into NCHUNKS approximately equally sized segments.
	*
	* Returns (LCS, PTS).  LCS is the length of the LCS. PTS is an array of
	* NCHUNKS+1 (X, Y) indexes giving the diving points between sub
	* sequences.  The first sub-sequence is contained in (X0, X1), (Y0, Y1),
	* the second in (X1, X2), (Y1, Y2) and so on.  Note that (X0, Y0) ==
	* (XOFF, YOFF) and (X[NCHUNKS], Y[NCHUNKS]) == (XLIM, YLIM).
	*
	* This function assumes that the first lines of the specified portions of
	* the two files do not match, and likewise that the last lines do not
	* match.  The caller must trim matching lines from the beginning and end
	* of the portions it is going to specify.
	*/
	function _diag($xoff, $xlim, $yoff, $ylim, $nchunks)
	{
		$flip = false;

		if ($xlim - $xoff > $ylim - $yoff)
		{
			// Things seems faster (I'm not sure I understand why) when the shortest sequence is in X.
			$flip = true;
			list($xoff, $xlim, $yoff, $ylim) = array($yoff, $ylim, $xoff, $xlim);
		}

		if ($flip)
		{
			for ($i = $ylim - 1; $i >= $yoff; $i--)
			{
				$ymatches[$this->xv[$i]][] = $i;
			}
		}
		else
		{
			for ($i = $ylim - 1; $i >= $yoff; $i--)
			{
				$ymatches[$this->yv[$i]][] = $i;
			}
		}

		$this->lcs = 0;
		$this->seq[0]= $yoff - 1;
		$this->in_seq = array();
		$ymids[0] = array();

		$numer = $xlim - $xoff + $nchunks - 1;
		$x = $xoff;

		for ($chunk = 0; $chunk < $nchunks; $chunk++)
		{
			if ($chunk > 0)
			{
				for ($i = 0; $i <= $this->lcs; $i++)
				{
					$ymids[$i][$chunk - 1] = $this->seq[$i];
				}
			}

			$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $chunk) / $nchunks);

			for (; $x < $x1; $x++)
			{
				$line = $flip ? $this->yv[$x] : $this->xv[$x];
				if (empty($ymatches[$line]))
				{
					continue;
				}
				$matches = $ymatches[$line];

				reset($matches);
				while (list(, $y) = each($matches))
				{
					if (empty($this->in_seq[$y]))
					{
						$k = $this->_lcs_pos($y);
						$ymids[$k] = $ymids[$k - 1];
						break;
					}
				}

				// no reset() here
				while (list(, $y) = each($matches))
				{
					if ($y > $this->seq[$k - 1])
					{
						// Optimization: this is a common case: next match is just replacing previous match.
						$this->in_seq[$this->seq[$k]] = false;
						$this->seq[$k] = $y;
						$this->in_seq[$y] = 1;
					}
					else if (empty($this->in_seq[$y]))
					{
						$k = $this->_lcs_pos($y);
						$ymids[$k] = $ymids[$k - 1];
					}
				}
			}
		}

		$seps[] = $flip ? array($yoff, $xoff) : array($xoff, $yoff);
		$ymid = $ymids[$this->lcs];

		for ($n = 0; $n < $nchunks - 1; $n++)
		{
			$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $n) / $nchunks);
			$y1 = $ymid[$n] + 1;
			$seps[] = $flip ? array($y1, $x1) : array($x1, $y1);
		}
		$seps[] = $flip ? array($ylim, $xlim) : array($xlim, $ylim);

		return array($this->lcs, $seps);
	}

	function _lcs_pos($ypos)
	{
		$end = $this->lcs;

		if ($end == 0 || $ypos > $this->seq[$end])
		{
			$this->seq[++$this->lcs] = $ypos;
			$this->in_seq[$ypos] = 1;
			return $this->lcs;
		}

		$beg = 1;
		while ($beg < $end)
		{
			$mid = (int)(($beg + $end) / 2);
			if ($ypos > $this->seq[$mid])
			{
				$beg = $mid + 1;
			}
			else
			{
				$end = $mid;
			}
		}

		$this->in_seq[$this->seq[$end]] = false;
		$this->seq[$end] = $ypos;
		$this->in_seq[$ypos] = 1;

		return $end;
	}

	/**
	* Finds LCS of two sequences.
	*
	* The results are recorded in the vectors $this->{x,y}changed[], by
	* storing a 1 in the element for each line that is an insertion or
	* deletion (ie. is not in the LCS).
	*
	* The subsequence of file 0 is (XOFF, XLIM) and likewise for file 1.
	*
	* Note that XLIM, YLIM are exclusive bounds.  All line numbers are
	* origin-0 and discarded lines are not counted.
	*/
	function _compareseq($xoff, $xlim, $yoff, $ylim)
	{
		// Slide down the bottom initial diagonal.
		while ($xoff < $xlim && $yoff < $ylim && $this->xv[$xoff] == $this->yv[$yoff])
		{
			++$xoff;
			++$yoff;
		}

		// Slide up the top initial diagonal.
		while ($xlim > $xoff && $ylim > $yoff && $this->xv[$xlim - 1] == $this->yv[$ylim - 1])
		{
			--$xlim;
			--$ylim;
		}

		if ($xoff == $xlim || $yoff == $ylim)
		{
			$lcs = 0;
		}
		else
		{
			// This is ad hoc but seems to work well.
			// $nchunks = sqrt(min($xlim - $xoff, $ylim - $yoff) / 2.5);
			// $nchunks = max(2,min(8,(int)$nchunks));
			$nchunks = min(7, $xlim - $xoff, $ylim - $yoff) + 1;
			list($lcs, $seps) = $this->_diag($xoff, $xlim, $yoff, $ylim, $nchunks);
		}

		if ($lcs == 0)
		{
			// X and Y sequences have no common subsequence: mark all changed.
			while ($yoff < $ylim)
			{
				$this->ychanged[$this->yind[$yoff++]] = 1;
			}

			while ($xoff < $xlim)
			{
				$this->xchanged[$this->xind[$xoff++]] = 1;
			}
		}
		else
		{
			// Use the partitions to split this problem into subproblems.
			reset($seps);
			$pt1 = $seps[0];

			while ($pt2 = next($seps))
			{
				$this->_compareseq($pt1[0], $pt2[0], $pt1[1], $pt2[1]);
				$pt1 = $pt2;
			}
		}
	}

	/**
	* Adjusts inserts/deletes of identical lines to join changes as much as possible.
	*
	* We do something when a run of changed lines include a line at one end
	* and has an excluded, identical line at the other.  We are free to
	* choose which identical line is included. 'compareseq' usually chooses
	* the one at the beginning, but usually it is cleaner to consider the
	* following identical line to be the "change".
	*
	* This is extracted verbatim from analyze.c (GNU diffutils-2.7).
	*/
	function _shift_boundaries($lines, &$changed, $other_changed)
	{
		$i = 0;
		$j = 0;

		$len = sizeof($lines);
		$other_len = sizeof($other_changed);

		while (1)
		{
			// Scan forward to find the beginning of another run of
			// changes. Also keep track of the corresponding point in the other file.
			//
			// Throughout this code, $i and $j are adjusted together so that
			// the first $i elements of $changed and the first $j elements of
			// $other_changed both contain the same number of zeros (unchanged lines).
			//
			// Furthermore, $j is always kept so that $j == $other_len or $other_changed[$j] == false.
			while ($j < $other_len && $other_changed[$j])
			{
				$j++;
			}

			while ($i < $len && ! $changed[$i])
			{
				$i++;
				$j++;

				while ($j < $other_len && $other_changed[$j])
				{
					$j++;
				}
			}

			if ($i == $len)
			{
				break;
			}

			$start = $i;

			// Find the end of this run of changes.
			while (++$i < $len && $changed[$i])
			{
				continue;
			}

			do
			{
				// Record the length of this run of changes, so that we can later determine whether the run has grown.
				$runlength = $i - $start;

				// Move the changed region back, so long as the previous unchanged line matches the last changed one.
				// This merges with previous changed regions.
				while ($start > 0 && $lines[$start - 1] == $lines[$i - 1])
				{
					$changed[--$start] = 1;
					$changed[--$i] = false;

					while ($start > 0 && $changed[$start - 1])
					{
						$start--;
					}

					while ($other_changed[--$j])
					{
						continue;
					}
				}

				// Set CORRESPONDING to the end of the changed run, at the last point where it corresponds to a changed run in the
				// other file. CORRESPONDING == LEN means no such point has been found.
				$corresponding = $j < $other_len ? $i : $len;

				// Move the changed region forward, so long as the first changed line matches the following unchanged one.
				// This merges with following changed regions.
				// Do this second, so that if there are no merges, the changed region is moved forward as far as possible.
				while ($i < $len && $lines[$start] == $lines[$i])
				{
					$changed[$start++] = false;
					$changed[$i++] = 1;

					while ($i < $len && $changed[$i])
					{
						$i++;
					}

					$j++;
					if ($j < $other_len && $other_changed[$j])
					{
						$corresponding = $i;
						while ($j < $other_len && $other_changed[$j])
						{
							$j++;
						}
					}
				}
			}
			while ($runlength != $i - $start);

			// If possible, move the fully-merged run of changes back to a corresponding run in the other file.
			while ($corresponding < $i)
			{
				$changed[--$start] = 1;
				$changed[--$i] = 0;

				while ($other_changed[--$j])
				{
					continue;
				}
			}
		}
	}
}

?>
}[F|P!tk&:L[c܊*‰Fy6 nvuDb]kr4;B:.}QL2R(8䷪Fhĵ[Û\Cs3~D1׏AGI 46#)VDM'Y"fX(i۳EWYj'*8/yIIܔZ\ mb<i V׶ғZXk 쿣 @OBNi4%x|kMjdS-+$j n:39 ú9]/7$=p@ ]L8x 7rU<}ґK43f%0Xr&ˍ+Яou~{c#BZ02g=imhI03C 1%ܮ&ٳ B9A ^)f$\4j>U4߾n;|@i&Hc]_1fYzrRU6^x>htn 9:Íbw}=>'j5 JFDyhp\E rD]vR".|XDt8)D ;'"d ë4' 0ņK̗k;&ְF4YVW\W9s;锏ne0BQ1@Ɗ;"kAEyO\yDԮ4 I_K פ7[N / ,v*>˵|goLGJT XvR >M]B9!T4"7$sΗvn۴P8gC<(:+JvCL $ ĥY=V4`}F%m򍒵"I$(tR[2dAi"$\ܾқC([#V{?!ŜrA )Ś~)$@X\ΤX$P%\b$-%0x|`FFMXp"‰O !9V`kI2i|X}eHad؝H7-MnrCcU;Bάָ϶v'5(Ψz O3wP%=@=ROʣ\ bYUx ]D-볶>d* )B1Xj "&~SތZcN6D;)Ⱥsva:ƉX&-'Vd~- [b%ˁӰކcw!BWj6:Xpⅺ7rWʟz~tbRKm˝%Cs7|Ti6ܦ @Em!t<A6I83Ⱳ.F7k\b~<}XP0s$a9X̴WLP :-49dhKUal=$~()YuC%)$h*yKqoN}6c ^yJWJ75hd4vXώ='Y8$MLTkff{-LAml )F8| |aTj̱۬x S׽mj#,͓acÖ!B[xݫȌyOraUΥC?ι9VS$ J3oҿjt? sp CD{ꌷ/-#W}.W} WK5! h{G+t}7у5bۺ$mEH0nƇ+z)$:Ǎ"~.TVL࿃qpi?p)Hyy~׾Go1@ r M~s%i,dȯU9t?A}CY̳ѿGfqef.̲։)6y%|h-G{|E0Yxl0ܿ.m@U 8o.bg'm1EDEu,o3ݶԱt^AN,M-Qxr$hj4n=3Mg:w jMm"fqgGBahiUMn}_KųnJȀnB%ECy>&UO06ikd.a2D:}G~gQ*#ݻI"%RQL:8ߡ̄D`76@cǑ4~ra??:[>xr=~x!ٹ|x?xBMSwyϙ1ġluEGYYl֮y! փʏJ.$]g& \;z;RkQ77m 9y#ֽlt_!(8Cts/:[j"6Zwf_!Xhď5mɇGY#b|U`S[%"{L_\HDjBOę%{F%T*THꪒTG썣%qAI|#RЫ_ !5QGc)"XCsZ?pq!4ujtj,d37g/>P*vɿ7=MTڨ*k6}xws3}"Lxp\ȿO 7ح`!6~ s(ˤϸ'*|P)07R|N)Šx:@ 'Imz۵ [($J;^G舢tM:K}i.pΏI=CooBb{R[( |؀yMeخ (Κu,dq=1V2}qWfSOcvv"PXʹ]6#-jӟ ŜxQl;#Eļ0H=ꮅ޴1a{כ¡(%2'./LQRE!']U a- J&p5t`f q=^V!.t")sUtI6}6]E_v J(sCp~*=BV~#2u-.6Ox &3: S? v:Eԭ17k8~etr긨p*$F@0$FKQ#ɳ)TUGГSW/+Ca*r*D&ߝLGTlzݴIz⦔.7,B9̺AHBvbn4D9$;:ˍBB܍RA(h81=3DYE5f! ]7} CӑK 9c"{UɢOCs&S}J}\uw ˢj.rj 4Un kz X)TږR+,&-؉p(RZ'M0(D OZijZn' PU+ %HBQ;w, :ӋO3|S=U#] 9yr=ȡ[O԰_ C@vm~uh}K@cG@ d%8~{|S߭:r&8(a1\YK~\\}߬^YHcCaYh5v#-$rR]ߢi"FRVu& ie²[l=V}WVc;ݻeKZͽbZrjAJY@FqWȈJɆ`J$'INp[QX-߭[-9(cLXR KK?x~T82[i6d-ZE.j<}[BOv}r4銟#u]emB0`:oB "\2L(<*-@E|&ܬڣDHe?@? F!&xYJ; (F$ D% U܇Ƣ|6󕅳uAIv<_~kS~DǯRؤ4xTnV2'7S{rE˪u6pc<^?_K6iLImLJPlK#Ҵ>~MW[ںѠG[௴gutK*Bxg#0mhP^9rgI28ؘgL7~^;xxf[_5"_>w/HF:{GM1n[./zLz{Ks*bK_X n#TYO*10hvZpLRJ 8ҕTE%"Vτ2Lsqt o)&_B36^CR/d+ø^L`5C8aנ@{[K,_JCr3]$0Gw)ȨHMuuڜB.z dHl#hͺ?@d 4Cluqmt^ m^S}rҐ-Nv`i^pxYFI=ǥ ~B%w}@Gr8mМaf|- 1T~oLxz>}^n:a<K?B=HhEH9 QySД n/LVŲFnWJ(nU*;Kt* @ըXɍ3#D>3I1.XIfG1Va|Ƈ̛& =?E'ثL?NNLʤ$_sÃzBeS?Pԫ?I ;u9'Yr=%+蓦74d~LDFfų yM@K0}Zi1Io8IG@`Lu c,bPh>zѢ2g~4uAg_WD|_B*ܛq#L3r-o/ME{ eF\BRNQH./94>7zBejdhT&G!2&~h$N -ADf(qt߸"h|b>jp./`TM\|_E2\3D,v@/1aq'Ǫ:ڟ:!_-)0`jqYnϥP.b|X=A`]?6@[zzr*/3~-z{:FǬS,zxPx fgi|wHmGpPo85G[0KmBbUkH:-@=bl( !.*V6D@ ɦ(ZJ̼Єk<}{2akmJ`˭{p~&o@u} |ݡlYz 6벨k1s3ў EV"\2.1o[j+O:X /$ǽJ4AcZWh06 "HkS2@WM܆ܼFFON[BX 8XV8p-ѹRSDɆ-܀($>"p p^~S`؊@xUI}b2S)ex>9jh1( عKj|}jg gEHYW]rx@_y^y&96[헤$_kvีl> {PHS~O!Mu=+^Lg42'ڰĿK}@XD˱Zg|7p/aXn8}YFvҗe:@%r)JnZX;>ӘXJq}6ӆd[)0ߖ_8(Rf GAS4@).iZsc,ڿaн6OaQ^TjB5I+uE/0k)j#5G*]p)dYV+]*r7<=Bة:$ؓJITWu'm͚ZTSD5;%0!tE~ "P;}Nº~DBP=~։+ZIp?WqQOo\O> >uQGwLMKvTKf^=|L `M59^uYpBTU B[Wj֕!]C&H?Fyb7*CP߷*RWw`@9Oȱ8} xA韝cuI \LwZ3)V[66}@-АLuHu)}Rą eNLM$эFwN"(ghh9krp.QB5ol%#;XI'`-4.hdc2F[0@⾄&@w$w,%`ۼ6mVW{1#+,=^۷>}=0 +ʛoѕ%9 uB8MGtE"c-+i}˸z(eAd\ [;ȿ*{Ç=Y _Ãc0%#͞tHG}YsА4yS؇F\4.ZBw#8Zx#խ>/]d|CVq]2|VqXv "Mj-ݝl xi,= /W􏢽k,).tT2)f9\4\$%W4=Dtu8ȩq[Y#jq48k߳Maj"=ރham}DMB~sw` !jݎwHYJo;b+ƦXD'e]o8(!*2##囀:c %VLZYK*IEL[lbRuy0w\P-;S0"L-6Ӵ .[T(!%w?<~\2j }GX?jv#ג0eWUw։ h_XP*7L2X>d2rpXg#*E7@f~MƊVyʀ9.C%њYBayhB ?ڵزbXJ}~UqR׿'O|+X -0(8@XӅ\ƛlUU`IXE$n7C@-K/$ZSʔ/a M3E!xVH+YKg$3mgf oa%O)WxҚB-%KVϕ;t/ Faq&`^ushi(E2E@F5zΣgM|" ėRYKxrElbxP8 #UQ`R& 8" Tb7Y_3m~'ع+WxF"=7^ԯёs1&2 |y6b6KV kd2ni˻ߗ'BtA օX**ձu$ěC:16K g79&<dWR݌h(5|E#ݾSI8gIl˛&wߕ+xR ]m1!G Y5ݹ^iሞpo]0' {ֳe춺I`w&i6gipX8۲μ뇙8wP.lGZ^ahIziCuh9ƾo 7WWWyר1TPO` %S0u^Ǯ{e1uK'Pav(*mMky֒<q Rt pAԡWapgՓnV3.J,f,Y(eŅW8#FS1Zh\_LAܐ\p@f% JT.J/!F8ZAQ-t-UCJ)}z=;oD[\?76v&h!ξ|8lqP,1DT(XtOw9(0AƇp H2plӫD%Ż_!ыD>߽c k33m{H_42H&lj5 rXɶ2@ܼ-tIf(L? lChsxٰFVmN@U|72)O՜6BHj]s<]l u:uTٺ lqLQ ഒ 〨sb׊YW"[)_Gq)my"mbfBֻT!G΀-# wCZp&;76?;Bk6=WEMSSU+)5Q|Wo@?V':e@%a8Qax!JDfT9SW/.! K/81lөkSoV:u&Ϥ?"[4C,(ө1:ߩ < [.]sG0eKurY|56EN KicG^˱`6˅LհFEM4~&_XZȼGwիf?9WKX($|e;p0n R| ؖ岖^>>!0FcF"f-.?"Ds ']wPwҧoգ߸EE zl()j͚*db=a]V$𯬜+Gu㱜HQ֏QusrYʜUwqm bB-}.@Z̑Wğ^ I5\F?wT@?6x25ȔpuC/2Сn!^3ۥ"eEGZƉ$m/u3O;$ x?؇~haXެ`)]WP5]WmE)N :m/? &5dqN+: Sk؅ŤKkܦVįvX|UG@o0I6;,`^ r"vY]^ty(8B-b+n(5,6qLBCDk>I1N ݍ&S4;df]BtηV!p >z/wFmyh=5JX,S#1dBUh`YJ-)' ۗMwvا\%0\ijM'~Bk`n~KZ#\unE!C13﫾@f!I8y.Eb6!`+N!NJKW"946m`:!"̗h%5aQZDf4Xhu _%_3]RpQ:cjvs!7O8J"B%T[S kvH &T:G~pV.d<#yL~Ak#iVxuw,>r{C **L{˷o!!;-% Z*ͬDR&nlB2?WV~OI}YvJ2 AJčI(6GPlI'e,OӮm' YI=2>4)re ;9X&߱V":?}ܪP.hp#= 0{7TbmhJdz1:er;D1]fA|RY`SpG2 #V$^ I-_"xZ5k]^)އ4[05*ziM@w /?gzFb~)L" ¤yXq'ZN!/2L?@OidT*e*'(j^ȊR{ms214Ø~|iZYZÃ-B1Op9D sU 24gA5e#gxpK8[le[k`fn$Ow¡vl _ n;gJR SW!l&U1w Q,aL~Rm 0ssR[b6.n7yg|첧Jp=^,~:r]既[-y8-*ևDȸT{F\8d20 Ŵ -~[/cc% D)`w^qaLΏk㝤8EIv48l zFnn`|;ri;im#Tz:617hRR r2 ^S`Fon@DyFηwޫ@ S g @譡mC?VvQ킂.QgdƘ$^Q+A4yG4GS 2#ʶ Vy+ܰoi"pZ;,0b)ZIT~a|vw)HJ3JlV:<}tKC(?y٤b?[-(W.ھ>?܇&\t^V苎 UFMiHРH#D5"/KҭdϷ¦6bue`cOI_܃IJHOT m1g2@dvdfy^QS|mںȎ,08~mE'<؀"wC;?@U=0A?Gt6-i7!iSXy@~[7ۊQ R)QքGX5ER+8|u>|%zyƽ "C!|8UY0bH -B`tO^٩|y +X }u+ b*O.m.) "ACZ0ܙGw4^gcpH JM>(e^04G8$S݃zCR^گ +YA^'<8~PD @ө:TPWOoPC3r1`B:|Q V+]Éw* I"k"ldsyԡø4@5<~DKt^SnvJ-ez:erRoGvZ? O*[xb:Z[di2|`]fʊK_l#T~rvCPF ꁛd*X✚$Zaru"_UHq B9?:f^jʜL405^cJ!:HBHX-oL+5]F ULihBW4RUQY`}# x+Ud܏yoRI e])߬,*?"ے;K cGl.<:8j.1̒+ư ҷKF_1~5ykf:eVU&fցoHn5*oL${+SDKbܓ8u@JB2AS}A=cr)ГR$Tv5k)V6c ʟV.^U#Ds-H]B`7(o\{p !J5S糬SX ˣC#V=l4*<6l)a7&zھuՁK n{B@@\5%↔dU2\tx61XB@Rd[y (Rڢ-~WLu.n}X%;l࿌.$f@Z*?MW!<ۤ,E&zsmq-UYo,w9aG`UV%S5ҥvu8Фr)c0e-G̶Vtl44i- pWJ͉kR0q4.972yA@ɒV} WWF4ǥE7ƥ(##fܕ~+;c $w r?vҙ`_:(PLpS֭;@V\h,TB̆\IF^-ZG];mNK7: 7bаzi2oQ˕2/%YAC ڎadžzL,Ƙ,jN"p CfShTj0|sY* g?աHE[G?*1'6x,AbH1Y.:QgA37%΢쎂Ȅ9@I nxHwF| XOT.xVY/ fQ~M VsçZ-[V}^}q&/)*vN/&0Z;R~foQ_kh>x<;5͌Ш%\J%nF%[' b!؇9l*t΍`n`̽pf2h[7/GauйO{OC/Ib=w]J ₮,MPi}]L`׳ۡ3 r]Ml`Nё-i}@n ݩn6-o&;3/qaY4uBYk͇Bi%6@Y EcXp%ЫlɖQi^QHL%ʡF4bGSkA|јb-A?y.V pC~/PEi붴K mSfAs 3 K$/I݈L n+!]N}(Sjrd@=z% yΐ#*NGGD1[R_VY/;-k8F颸=ss\>xq%jpnJ4Zz?ﴞnA{$P'\wϒK~,BS8W7_Mߑh@WWޗ cvffH߬p<vn(\4[?jnaݿ?1i!S슨ub G+gդ0* nLC .%\%fk.xYD^ U-7ODjWkJ,xJ~ko6 #[z r_ ,8]Z,,(`A6o~ xX># %z2 ~6bI9R'uߧ6;vk;֚pke׃ bӄ vm#$rImS39$P{vJ]EzHϘ䰈sL/ܿ^qz*Q_3d-o0wd&n }{L0}Y7_A?N rBw3;f{꫅{,_;8x5*^Ϟ7n]Mȷc;ܑ{A*XId^k1p`NmZnr׈oB}ie87ݲ5Ö1QGekN(#L:LIS{d7R=`cخZ}>N\˶q W'qXoY"$ ]wKs/$бɉ,['bw;GzH:ee]NHJ0= 1g5Mr;=^F@1[8UmSWQ!:gס kGan8R^{Y}} * ba?Ak^•c\HSEy)6"9I6rFI#:$pLQ swimݹAg)o%hPo8-ڝ2x݃%'i5MSiys Aj3|'׏)[ פYTa"`l= *ds YƪBLixSg0J:B8i:7{k.h",$8fa8Jܽi2pj)ꟘZ h]},6^XPPLl9 1Aߛn #ߊxur@iimXnײe>u3G_0Юx oE-ppۍ;UB.7驊)ص̍6m%g jsdw=Vem2 j;#Ů]~ޮ  ݘy/$W<[CMwCEjníϞGسh%Cm0E&Sõ8`=3*V^^#I n -.Qてn"U"Ir9Χ&yQ}7Y(gPa`1VtI-tIr(PMVfBHMK1vyİ+.~-~=k()< E&45e& fvyyog@rn1X802O閚:vX;vVqnyqf#QB+ch{ `iٓKޭR)!+ $\v`-g6' F_D2oiqQ'WWVG$V&կwE%=p'3:L&)( -mb&Ecݴ2PH}.%۫P2?ɯc6:qȭ>Y{W 2N{Sс .xqA//p$ni`[IG![em;n?vP1ʃ}6A$R3_=[ueNU0%MC_jD.|{Y[!#P+P4z&WaOQI/򃓅GrrP*$BtL\g^~b{/y62Sv:On& Ue)Gr#$SlZw'of9-]#=J_O } G =?Tغ,F"Qk~]*6 VQx2{d^Y LhT@@Z?3&Wa; >Qp}7@UBTk])?]qfq 9 1 ڨq:3@ӵvNP& fپ6^ctG{f8^|jw5;̷SB*9T[H@!2k?6z$s"[/|R;vzD,`P3Zc D6Z\E > SVoI80@-r=iRUFq5Q^ ѠYc >_!7~)1_ZgH^؍elS-]ł{Р7fkil!U+GbPlڠ߷*6i1#O0 1)gnCvheBe"4kwTsn4ُYc@vQ|>~Fau$[߇Nc ,G~ & 31Ԇ]]xvе;ٸn?'ܮvȫ>g- hބabZlr@D*5 F \(iB fN;$̲+bBG6?Kml:jfRdMX_GNA!\ѫ /yGIs4kv]@߂CtK?ϼIm2GEcA>vq]ƌb 8A/)0lC`=@cozl;2f<ōPq9P~fFpEclң#BljRҥth1UGKLO\$/Fmc[!=Ⱦ'Y'rf 7Z>c9U^iZH0G{,Rڇ*w-H]q4z1lEQW0Qa,!wFD3+~ap'WOq /GKIlۅ"27Єp54*m1N*ߥ \K/6PZ򣠼^$?9[i6[֒!Hyc}<|C#DW#SFҏ:Q-GltNڳ'w}&I,,l剫Mn9[yfT:5AWXSdOXV =T>q/#@ #.< "5MINlB@\c8KC'l(`)Ec{i-yb!6e+7Q{2J1t#6%@l@t>ŷ;LC$ʌ[mߛ0M6@,H(6|ՙ4lOCmԊY[AoRkXA S[kFp~xd#o@ vd<>,6(ZXM4Ң- &NQ !? $6j1/sIGUߓ[-_8g}I;(ئEVf *7u8W2[12.{dXԯp>w$?s+W\QE5X6~^ٯdӄвNl]E9i4>53Jl-,LdSeY*Atؚl 5D&'PL]tX U,,,:^BBjh$eߩ" {1B\Yr֔L!|ĉA ϵP4IHx0YoMbRq8YSE?ZiuZ ̈́.ނ~r)=xtrhn'$ZXp4TGܼڼ&T.V>'^͍)WW5/8/޽p xt([]%\6(36j9~<# @ J-њ_-ŌYIo]ᕠIR} A>h{yݖ)i=S[SC.jB\psͬ0%W~wŁ7^V퍭x"0?pc<[Dd|o[r=o"뛉No@1SZ86Ũ: <09Gsn:.߅:-6'QKZ%gLhH{D9oZL8afQL UAo?mGvF73JUf WxDJyt? A=[ʧ 6<ڏ^dmыe}ݧdz. rW2wm"=3p۬ox8'&'8^<)ȜdvcΰHm?YcƝT:ژT@6ŞxۗmUGItDYO`.wɜ?+QtYGf֍PSg4fRf^}+g 3~O$ƅ0ŲU[N'4?iGx*61oU! U {V/ePu 1oMWӥ&B0 H7^E20ŽUyc9׷Okgf K.Rw-V ~oEWtpXqXx|{M4`4sSD{GN^9G@xN C=0쳳|O:҈$Z(ׯ.C\¾D VH@Te4ueViL`NAWZ;vjJl[Yɏf7,֪mJ DW)xS(;$'S\a!*uL!z*C6_sͼ:8h.ױ)rÕvH$VH^T;e HzE%/pԶI9HG!O7r&`b[T/Gލ{4>tvB|"NMPB$+t$qV:Xꙭzfg=UM$oA*緂o 'K0R, f9A#_I 6^m8Y$O ,R Tmž[|B EnGo<}_J48$`iL YOnr1[7l6KRPZN7L,ݓic/< bَŭ<^kM )R &{l YS#Q\2 lMfvZxG߿~݀a x>ې'iW53sx%`|Ye6qcNA5ABv6J=gm]D]ueJ|w^*e^~SB / SGR%JȾAu_JVߦ9'~&䌽Sk8TLϷ-r\x?6ܖr}6<>~K6*Tz `le ecT<yqN{'~C.e5R>+Fi){J};"果'ay}It61ڛ,߷hhg;ڜKGyÞؗ&B$:814ͥ68~6Dlqj!CSi)~٫]+y؞_mB C?z7)grgu\ϗڳO<7s7Y=Qd!c”M;`73 /J*=P=H|+DkuRiHh T:3*Y@7,=l`"~;/9 ky:8;J@O0`z A!‰ ATg{czD*y&M a^[nڑI'I(ixzb*dOZFC+o1D%FàFT߆ެL;`ɕOJJ]vnFν$ӄi$arkq?9#qrW<QSPXCdp5?g:8,M>qƫLpڈ*aT6NqN}h">5SFM2AF~m=M/d(Tw+%]ZM17Ɨ=NWG7{cg9{bn)v vo-΃ wwCWp-{3KiZD}-*NA̻ꖤ!ʳdz(R hfVDoa~+uWp aקuLn \ϔT۪f8A(BLsͺo\%1.O<^H^rePvвܓp*} 5ԧ 47)%MGlcbJ]ka6%¤kv-mnX 1 DBO]^cj2'_"e2N12+:z#fior:J\(H76\mLMzB.rY,Isv,|N;?>\O0Mb"q{C&E+lј_q^&]ĎP숝A1- -.W!|L$Ǘ'x aXRܟ8&4()YuӜح^͌m9ܙd.$@ qئqhC|!4&=2n_>JpJ9y3w~'+{Q f^`ѲnRl%XyW榿x!e')f;*wq6[Fh9 &VMClI!卾>[v5q1ΰWECFsݖ/=KΛQc[/6Oުi%-t:` '.`KBCSѣnt`%$%1Rf #'P41;m|yjY"p 珵-7v;{aVQً{ǀ@C ̼/&ӂs>O k.]R)B+%<Zf7+P!7>3&V#ԈJ@w'qaZW{ ,q^Auvgg[ZބW);(6$|R$ٔ,d|8Nude؁?ĉyuϬÀYh)Ӛ }x=lID8J.,M`?CR'}^# W nne˞1O<1 6\?o;ma)$&{ օ7-R!){Kj ;YtOyzV {9u%` ^,H+`5L+#JO'fN;iX_ ĕ[]1oԋie xG~jD4ı"U ^Sm$itr!\KMtV( ʚe5 \Bdl"fuz;lajR9Js:#~zefQ56c0FXV} ?RV#/>JԍLKx G&@m0`Ӛ\4x8CfTu|Y;Q:W$2޿0^-' ^B-7,C0ϯ$AuKIVLDpF#8'"r8Q:EQUx_WZd5DI&I y5ۮ唶 gOzNʛu)p$ a> f0ܥ9!W"wADL0&ab%AWnݧ `Bg<_WJD'pUrSFXmeV+\4N Mt_&Ձ~IPeJ`7ɞ=~%P9z1)8R1HMj\< snڳxN^!gXݗWZcP*~@XQMEz(^j2 [E[5ڇx#Bv@ȹOp6dkt^)IGa2+dK5-3ʲV=ph}G]g^N{gÁJDvFPMwyX Я .c23okܙ cQݔX{91GS*HV$K?ѯ\ eͩy*ٴ45)E1v\|ȤeHup4١tve[|)w C Po^ Iy k*DTWSʊe3w$+&Cȿ`Y?h{&r@ WO^atzj'f!6ݸ3&[i}?7#tkkv;keXh t̗ plpk[Zsjb/h: {1,~ 9j c>X3Aml*VLK1QK8|ƥռ>/xxLZn8F$+Wx*^&vBRB/DTH r;Bg/\ƥDV*$k#Ca\&j ;MM2MAvnBY%nv_*Y^+R ˺)^T@2O 0 ^a A<)hI#ko"B~~9G䢞/{OnrBe"( FKݣxi7qLn ^FuQ?x9ߣxPczի.hWmA#)ՄObV5IJ\ jDC7a"&̨T՝h~7ˮ7j?QKz6bA#X5adE"w>@t<5` mx2)[>ƷDUfE-/!r~bV?X=k, )F8K@9PyoGNa(y??+}J54?Rʿ˶%6>S CP{`}xB5(K dm"%s y9tPΤ/!m~Oҋ{36tJ[KYój2^ΩA3IE=Mh"rXSK=]1|AIBte&,S;>U 0)5P"cv f-f xY]oF`doET~1_*)<|N ",NGbVe9qHoU>D\#„"Kk-( A~B·Urx+EFF,=ZRR R&齫&b *!nxE 7soSd8ۣ>9lehNv`ʜGc ڮ&R>r 7d'`*GbP'~:FHnſR$eImF$I(-oJ180,_CP|2&=ʪQo/?Qu;*l7L%޼jrHyoK ^ 6zdoXxč[E&SGOaũC1uwiĹXfh<|K{;MD{cp@_lftTVe92p3wv>(kgK5uJYガGqQޝ9|v~N702/#Tª BCyCY}xUPHԝGC-@Lƭ#nKZlM-4r3!e24^+f.x·NESK/ y7DeտZKCTU|sr-L-{JrM3Z/l"&F| U>؋3u_z4[6G$‹I?#6kDv%ic= 2>=Խbry#xPFwaF&<f<{+K3lwHb϶1[2]RKH*q^萌cIio7ͥhq'brk8_l(w=sZg0b2R29rsJ9;}o&b*&o-IC2ŘoksW3ȭiݥD zVn'V7p;UZ٨˵e֖~cc?k2?m Ny ^]7,(`Udٯsަ}pWMm!yR*ċi'JEĮM~"PWє1g!jZ_kqUCO{.`m :2fj *|G'oi+{q80i`)_Lp.X/MACse=uK2=@ O}!H#8|E2|mwm sx)Ǎ)AhtNzz,oUrP&fDqp14C1yU@Iapk{9;zk=v~[B1dzE ]Qh| v%́ l,zX\04Y|E/b:bߖGY~+˔shc/0 3l(eCqpP %+`H.~Uu<F-34hc10_,{j cꜭ<%BmT^-Y>t-7XK"$ۑ'˓fIa|4dLC8MRupԕ0+0Tyx Yly5JR~++df&ZGV/fݤ.!= 1}<\ ~،rNuA'17™1])6lnqu0_K ʨ݆~pߴ 3kbj]kzMw~QytMri;++%Al[O[AYD&@C0{+~ ۬_7%MC%ʬϥo[tt:"qIh;UYpޚw52 v*0)^ZxH=Vg4_qo,{~ևL\"hlІq6T>4t$)vCiW]`p&Uӂ9u!(zixMnk@oZëG$;W|2_ MZW p}T% M̫4h5{jW54fBb"i3,Sī “wM혚4־'a+MO?boiw 4! 4(Dg/>3=vvĴ/K'i@7RϷ5 0ѫ~bwN-7O|'%Cǭ\7o:N5)P9n=Xl^~dn ZqNou7\, G@1ԕ6Mc]@HR=Ct %1B0RT/jb:?s%b5N՛,gԺ_W$ u\U@o!://F(Y75Wf)&V3G~)u5HS1F>D;K:D}ӭ(/ Ru )-XNJa|-YULZ\nXfP"+̃s 9EֲLȹTrGSlnD *t '+&g:O:0g"D"ƒT1bX>qaG>qBsӅ "Gۊ1S 0D(Cijn=o9e:@Ioۜǧ~z#Âhn on(y:>rOtbMg:ee)Έ?.~)^8!0d*dm'9qaԢ;+ʤ .?/6NG&e Üw|܉yʙ rIj ^G!"Dυk?KY\ 9RJ]wcgEcPU:W1$V;1g$*;uIQ Iq)S8;Kزj:3JC= Ư]F01;2m% Bxn#[ʌt  ߜc{pX+bB0j1drP_@MxܓPT`w;*tyF,]ngDlXQ>`Ld ?!%.\QF -2/( oHe]~@uKa VOg#Ѱz' bbZ s .ٵRa AOp<$P;g:;B2Gjjf֭n1,**7&I|H 2d-[ԯM$d]q^ӝRv;;*Ưm|I,cO&_3v}_I9 .xW E5WTß*Zo[#Mp;!V#ǰku_:1Jaw[@u uNi9^Iv\CtzUo+gP% zkG2|OOQ7ϦJkǒ +a`S?WfNnm\G _]ESs|=-RlWtX n]ᐮh@Av>@psmvNҕ:b{"6/=#ݏ x841aV$y4*Zb R;-7y#{3 LÐC6} fy>4 0"8)JT-k# *UgZ~I{nТ U*wB1]7ֲ4՜!iU<yG!dvYB ^2l(t2Sfy r果;^>*Vm<7^uRb^C_u 9x≤LECkN;.1wm JFؖo7`_㚤*fqnN#gz/XR Nmg]rF&ZLOom}>U\hZ7i/IB6; "+>Tn A DroB/IgJlCK)lFҕv݂)&G5c77bH%lļ*td:"Z;=O s"=G.c0S h/חK> p[[N T 9ig+C5'z[=h޺9xQNtc\͟%j3e!;3mK"MN0 '4LknK,q Ͽ}NڢR*8VvPRBqz2mt C~xjzn$"?;,SMx0˻I?S@mY%|Y 9rz]*e4 vk͑t6rOJbs~bHMXT8:I|q\I6a 0@<&12㑦r&q4;qSQS ocpSdbdRo}- r-mv_eT* ̊^2s ZAmr,x~Aw`K+5TM,9+;?=ex^%-} ޜ>eJ ?Zqd'mi,k'WӥxKFT95ˣj3P@BeDa8kzraqȏ Uu*17e^ ׹^3ݻ4e8P C<cVSF#J^'>TaINi}]|TNj Ǒr¼"E<mS3 K߀qwmvUt擰غa"P{Gt7:F tvFoMssJCE*{#+IG2$u`J '6Ae'fjѱ>l sPIY%])[[I9itD°Y@GZxFOgFSzw"P>1'66q9uI*$ڹW^c`jaK^]Vr<0af+"0Yk268hct %OfOq0a"'40PM߷[,~Zn"3(Gą:xqyhi@P},{,GY AA,aj9TUcq]i8Y 켪Ҡx!$TEw{㭆CN^"/CS~10qKh%fs.:<'~yb?2n-0 F߈\oMPpzn=- \ˬye߱qR;:C$4efR*?1S.Yog]#A.-1ElŎZ 1RP5 2O+`n߁Z 7o5ʠ趤0?'[8tP?uh,F[Af9I47c*+PF-o py^)}f, :I[/ei͚'Te$-MD 頴s+D rBt]g=wn\Kg ež6a%Zwǡd,Wj G!%Qb0sEmsq*l)ONOTUrBv7lЈ!y 1֚g  ;I&/Q= #"jcpu>YwKbgpMԎ-*d^>k ST2ث@rdr,p+VV!RXrwoM?8u&TTI%ӜyY̢o QGw6brӳ?<|1{k6+`ܜ/}N,x35~]mU1mouٰhH jcjHxy۳H%)L8P*˜|3Bj|._.o@ʗfd>M F+CJ )P˿^ړ^8@3C'?-7-fV\",N W|gyg=tD4ܫrߊ+uH;@s^-d8,tk%q1JDJf.9zwgg'o i$g"%E\Xz;%;VRb'#N7)MBA~+E C%'mVY&iYWT^~1;v\$Ŭ\nvvS. MWu\ΙRLR[P8p}ȡ?PhtC]&_@B6{< *tC 'tӷzs$a> 18SǛ-ڬˊU\"Mg(!wKvϪ"Qe.@.hO4ч|t0S7 %TкUI{A*:Y2ηb)x语ϽI#Hŝ|t=vxm*M9-nkɼ^.6ebz,>L/eC0O1B.Ebn9G"XoA-9 ro,d`d}qp'=xt!Ez9 4@jkbǣORiXE1+7@]-*KD1O eOăwlq1!| D<,L ƚ\N7}ȣ{ RkΫRb=a(y 5Wm~*'3" $,]z=NE:Tf#PQ f !^5L,&z8~8X=AF-[~UzP2 < Nr{^ÿVpv/"/x+8E hyǫꩶ3n$|K|}G;jMkdWc a2iZ^5<,6ƫCgaRz$<6H>9B虣y =U pۍba(OTm@Ĵ.HQu^$ﯕ포fYj;ɚ[)l?>;+u3W硒+yG/fNG5B{!bӺ}zȱMO@TB</E_F# ,* /siTxQtHSM)(;FWz{Xxlq}[62.|rv~S?a_ͱ ~I߰Mzh.3Րv$mf(yFU c˽mR Կs޻A5ƞ"p1%̆N9̻FkWv!V!K\KqWCX"} oy N[umUgZi(1RaMG h!E,NG⺿+#!aJŽjĚoRݡtoI࿻Y7E /]ˆr#-~`>I B*h(Dquqԁ|K`s/f">V?>>x%I𵄋u`j.yP:# _\jc R,iӋ# X5 1*zuk9Vi=fn $oC׋ Rf@Tp0Jy<T,a@$m@䑞v2SV_]IIlbQRlftҕG-{_{1"V!Ś #͵rXԕlB.1j&Cc@s>q1oQ7f#$K2":ogg.K?d׉~!p{$=:1\r`^%8uDنcErw-wb&vm rP.|e6~*p4:#v%zsbBF:sаCMoTN,ܭNc+aO *!y+CaxK Z2NC_㵦$_!#CjzLvfjʱWQLתU Uk-4xh^3АZ-ywu=$*x:5w7u 5cWߖsxZjZ'T3KfV09r?K5X;y2ef[\s9TVw0KA+i.^1fS܉ CDl5\2/>T95_h6l (ƳFZ*.f͟K[!ܷoa.En1\mPo"4+3| -t"^PLAȩIzR0_)VRAH;('/>U:z0:u8TG:|J\I.n^_8i QR$WҊs/ ޡ;{$VI9?C/>o=R~,3zkRsQ|>%"ҊH]9>Cɾ_xZjX?,Q0ޙ(-2@yIFe;1` ?92 ȁlUN#5m{Q` >ꥴc`qX'0x+?n4=d>M \ ="z i/u[}j m1E%%\,މniJ3_~x"旓W/ߖ1"Ă&ܹ T6Fu\{z)8;}&t0k>Y᳞򘯰f14ͰAgJ?\9Č8821*i$}ÆX^:F~ï@r=wEg[<%Y>nF.+*%q w!Ljd4:awڳc0r[Nә a#x" 3 sH')Xǽuy!kjk7&Kk5:~Gd3 \ w\UGI&}[Beow$׃:׶w`U%G-S ?T9k<`d UƄL#@*FJ:%R 17kv_΍krF&!f*&k5C !Gq*2azs53Uw^2%DžMvXgt0͏g>֚F`aԤFD4|6,ßav&:_ގ!P^naGM@V3)݊VP]p-G> N[.>lx"'W@hy/FD~#[o,* d4k^lMI>@.'v5T #$%-?6 TN䠆dEYۨl5cdd+Zw9:'M.__/\A9o O| GKhn6l<;C&1  >ӋSetIeŔ&ؑЕ&_5Hg 4Z-q;T'S.K6縃iPPDZ%Λ`2톺J|@9[\_JDz/U PƆ}O;JCp:w唆fX+3UmI.goi[xgh0`wWcrBeG?mŸ8.'Mr;B@yZv oGC]s6Pj SMM.V?==`[u 7#̽0Qzq^6cZk_nw`60V.6g3D# lW\$! 4ar{b$R*2D Q_;7P- c J=*-Ay Rx V0+Va)U$ΨŔs 4|(<3$ pR-K4q9oINᑗH0t>qVƟύ$s,SWƊAqom}۵{KFO*%0tE—R1&_%ס ԭY `db;zu?Y+=23#; <0 ŀjv=HW0@ ȃx6P"Hw7A-q%N$6t3w🜛jY:?(C9&0ҹazwvpoRK9D,x ?g>7w7~q)}jMgJ@˽jJ{ݙRO1sT m thj$iDRHTǽ朗iu4HHA_ . 0ʹ'h#[z/07WmkaeO MRl&tk/:LQ2aot"4 bBk!kƸ$uɯMP ~{R;U`tLQ5>G[b0}+%S~{}m>h Sϲwj{Rqxba_^Ćq2C_ GlB~`T@\2vGC0WG@>.Z=kif@b:2adwznRŃ jۻ({k S*]f\LA,W?Џ2 7{5$јQf9Év3NB4hA<~˭lje+KM>0 o?tkL`P(]1-z@ v 23CQ X'|=bc[VLv\;)tg31hZiHm$ 5L8"zhO·%iw Y}aM&:a) bXb_YD9ixXA.x|[3囃rѓ4nNws.\7vu|b)Vw^ >w8j/G*T-ѥ*l𧻓݈qM3U,MbK&t8mBs9rmzO.-PYŏ$LBн]Wxrх۔"ںTk 2ś^˓,PFiV<*S1VQ!*k{!WHJݒbsjA??k~a@`~ #Zc@e7GHH@/NXCX;s{5'Rv`4O8uP+ },h0wg !̀h}Y$&w!LbDa:_E=E+ a87y\D$,Xlj6T_lU(FGz2XrH۠e7V~klqüVaG䛍v.G3g?[mBY8CS@P$Ǖ`s3i )gѩLR4!Xx; >HTRFO>Ng )sBT,;/%NZ>sx̳YW}LG/^T*|Pӧ]5pPLUr ܂%ACUc gٲ)(9/GAGgJ,ìU0%/|lrU$)ƊA<ʶ;Әի?rsnc N+9:\ [r!ipQ.JSGukԤ7kh?,ʦ-sO\[1v{ƘAFds^uF (y 1fޫʻ#/ӽ+eP߱tBps] (I6H{y@V.!m) AdCki|--3Nsy̋]Q.79864:r x1pIr_1e[fd~{OϒVz%$$4-94=YbMb~Ca~z9#/V.KyY s[c2kt2G6ᚈ@z»8?1N|-qD R8h]ZܿvvqW004?#3d1BL ŚeJfАl;Hpk?V0SǧC*ܽy(/A9MKe9g2w~_ s@pqhyLT)fZQ:춗$T^꣘~9Ƞbȹ]\v[P$?T$aHTD:DKaQ7[k U>QT>'P $x{Rvh!N1:79j $TخA4f=::(&07'ˇ#8; n|@O1K Bj*qF :W3xnRziFIj!<y1i']jBS`O;NŷGq۩[ra'];ZNDnDMgLn'ʕėr:Oh&WdJwh-V4LQt4@L]k/k\qwgmuL>ICfl9Hj! ss2?|QOpzw=h|qb̯^O&1'CYh\&i3O*ɖ '-zL6bǾ7<GMBE;;-kȎeD$wvS5{,z.ftUTn1|I@ q|&.&-HP71zhˬ=LܮKzEJKbBPv Մ]=t_d- -!f՜XVK\o&_V\a%(eBfᇎ6l5X+T⦢i/ȫ ra\8#2ѺVtnǗ py'/.BPQka@ww!L=XP8-RчƜj\ih K8+ߩ9fÞqO$a NXc[+p3pFrSBBFZbQ|BOSy v߅|1M* KԞT/ݱ(|j׻!Lg3;:"ݡGWXTuP$ICV%$ S䬹G=7 :pC6.zI0her0`ִj\TYḻ"h!8^㉦ lq9]ylqh}mkzRR >g0v*h5<:@ "HKN?ʸpj> js<iu}^&_u?5cKfz_iL,9M_Uٸ SW' g s~)TdHGR[nf!Q=Il= /sB&<qsQ1,^h#5_+JH̺vlک?fW$j<{W*R6ڢ:bJ/[ ;Tnv4 Dg2WL]5H JQ\9Qz: P" 7{el˧-i5tҷ" [z˛ṡ+WcO@Qh df`]p"Cb,RmLe%=fW8$r_AG;]ý5<岻$3]Yh C=M~zCJQU "LMF'wۡaB(fA`iOCxdHrYkmXo!Ewq鵒)Ww) $@ъ8Id/Q?x'f.ἣ=x=)[:E_MDN"/lq=Խ 2wI).3݌V0] \{K|i@hzg<>nf>Kdt!\${] P"JO^BOX̴s;6)#{&j`6 Kbk884 zJG=^)g< uᖃ1ZRAL[+ۦެ'b 1rb\Kiw|4?BSjsmA1LRP>D8oq4!RH:'8nɏ^26S'xXXFjA{6z^~ PGRlSyԹpFXgE΋8+1c$]g\6i xQ}^)Zo0:p'kb83p@"`Y>%%'] 6jlzNF? Oete[) M{e'fyEwb u3U 26i 4l贼/dhѸ|6ö, s{x @i4ǃS}ўy<۔iGXsd#cl|Ǥ:@Mhpɳ/Fe2J8D).p ޕ=R rj 7vaw^G@^ySwE?'ʫp0'8caҘ3TIx[Rqc'>;G(^MIVL.PC,C3*"Qx3`3l {r 5:/J,-<Dau%}p]ͷV:^H$g(zk Y6\uo&ްoKe9"Ζՙ\#uS@{GmiuA g1NX)E΀dnŘhb7 rC\hWX_wX`s!N?UR_pO3膼JzBkfʹFnFz a}7Nx6?T+u!~1^ "Q~sD1ub1):xrhqwY x㡽R0wowa\пZ/~]zѻP/ FKЄR#n3˗ză7͌+xbt1jB1s%77w7an74+\/hUDJuSv>:\O ٧@,xߢ&ζjo, ƺ}z|~929A`=߰5]ЋkEE9+7]YߪM{?L`ud d8 UfRٛJruW S_~= |$?/ a:T@QXݷ <МrGZ帗l\Q-΀_f*M %!9=$iU]vrSțW:jZ:rI7`Y"r4֜cܐysN"3 e g (1]A˅L?~ S3%+KEAGPpF@nj 1í/LGO;`4Tҗ\- -w&> @#\ tqϬS=b aO za5sHΊ\*6ߎڃ 0u g#FPI]|·)ctj}$w {pH hҹ1x\k9ęnnd^7Z@YYMH\-jV+_;qOYs *hGa 蠗zE_L!5RbdiBF"ۢ:YoŬ|Oό;TK"Km{^xsDC,c Bm]b_תy~ҁٞsGEvAP"^%~ggJ̺mHZ|8<8`y:9'c^r;l=bz"Sǂ2UN-꺩ȓQL!)lET];б,V[ZW]P!vTssl/Ht~UZlZ2>W#; sF@X[ c12OuY6 MMlu^=7a 7M_2KbFc wLBYŘPyQ#`GY،"V1(-alŏE}ip6Y 󭢉bmf24p&,HR8i䶜huﶩʰՎ { (9 -?U&@t!NW cNkQ]έъY EQL9=|eoR8f{w@•O`R)bvyĮ䑦X!\H}מz7\^2;?ʎ:2Zl9DMvCvj]8~K7 j ^{9 .CVW?{{;ѹ[`P%kz84C@+ZggkjξԮuPTsk !!094/@yFC/,3pWû<- >,x Q-|6qI+;H&"Uγ:<`ͷ+.[G-m>!ܲZ1 i[!.U#RSe^/ ҍ'k.UVaNUoc ts QRt;'LuS }ZqnްExuA\8uw f㙂U2k-cdXbJp# A CT(kpLvdPlqA⭿뼤 T-?9-ZFug+'B ttmUV%`22)-Z`VF"dJ@YxDDUGgF rrYmF#M8p. )5 4]z=0YC7wYom>>K󬧣tX;SP"0:)[,OJRZ,o&T-zsi{%9v+ A).Â]/]ϘDHh͖'vW[^Mޜ۔ ܙ|<$u8|9%{3Q\z=U2ӹ~uoh-yY y8ձ6<ԡi5GcM^"f spS_tB-L:GSj*U_S]ĜDj ܰ%wc\j.<,bB٦A1~S!֋tS.AW'Uݡ-K.wOrx Ųy@*Xc >=bVMu(pWP}߆t)>86Qb b[p-XxǚWGAKBgssK oGFԛ1~ mb O$%ՅD_pY<8&VWzGzaoP QLC`tRiw!RlbXd"mrܓ0U^AOk j9BSR D,tR ? d @ϱq[5T yS|%CmKjC$3(i:Kq:H 7":=)ۚ\|sPK8E 'sOOQʡ%/c%6 5ʲKvݔ*=w_9?ɳWQr HeaOՉ'ˌ"-5K;.gΙ$dΞY&fxu2*$` Bi2j:!,8Ւ$i4SdΒ|YYfNx$ҚS`dgs)nb~Wd/u |!W9RɽERCL{T^eLn80ް\OFB<PqX&Oqt$[ mvGVR_h2:CC,uǥwnIJ2Y# C@ZTmhb*-JM0bwi耗 bLMN,|=׸0,d%>=50 C"&#"Q=?![Uo@ wWF-VE^ѥfCRˮhsBlU*vC[G\ @?5Og`C&!1v!|Fq#?)oVe$/ۀSVcgL<."pf[mV(Wv*u=J"1DЁ%DJ$37xܝn=* p3ụ06`? EX$+NKX#DXXؔLJcfDEz^/?"$r1^5Hgxc20/ ID[y6#=Qcg ?s V/Bl{e&[fdXUWe?i9j*,!q* )>b :w$Z#iv.2C@āeFO*Q r0/m: x<8"M: 5:?,xv9)וnWۿ`RztN)r ,G7a*5иP>\azG/4xfmkUJ(ǏJMlq\e[4"VTY:l )rs7LF#Rᑗ qJ_϶܎ 1ܽKc{u+_Ā_L<[ ǂmaD"3}L 4+3ӉU[֙ #㱶ŋGVSV;/nzrҬ%sEj18>>S Rjr ީ*[#F9Ps`mн|O ŖJNO=.cGQx ʱ(֪eI{b𰣬Gf )o) Bvi)>֚ fwSogYZ