summaryrefslogtreecommitdiffstats
path: root/fs/jbd2/commit.c
blob: a2ed72f7ceee78f529d9fbebb6a89b02cbd86f15 (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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
/*
 * linux/fs/jbd2/commit.c
 *
 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
 *
 * Copyright 1998 Red Hat corp --- All Rights Reserved
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * Journal commit routines for the generic filesystem journaling code;
 * part of the ext2fs journaling system.
 */

#include <linux/time.h>
#include <linux/fs.h>
#include <linux/jbd2.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/pagemap.h>
#include <linux/jiffies.h>
#include <linux/crc32.h>

/*
 * Default IO end handler for temporary BJ_IO buffer_heads.
 */
static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
{
	BUFFER_TRACE(bh, "");
	if (uptodate)
		set_buffer_uptodate(bh);
	else
		clear_buffer_uptodate(bh);
	unlock_buffer(bh);
}

/*
 * When an ext3-ordered file is truncated, it is possible that many pages are
 * not sucessfully freed, because they are attached to a committing transaction.
 * After the transaction commits, these pages are left on the LRU, with no
 * ->mapping, and with attached buffers.  These pages are trivially reclaimable
 * by the VM, but their apparent absence upsets the VM accounting, and it makes
 * the numbers in /proc/meminfo look odd.
 *
 * So here, we have a buffer which has just come off the forget list.  Look to
 * see if we can strip all buffers from the backing page.
 *
 * Called under lock_journal(), and possibly under journal_datalist_lock.  The
 * caller provided us with a ref against the buffer, and we drop that here.
 */
static void release_buffer_page(struct buffer_head *bh)
{
	struct page *page;

	if (buffer_dirty(bh))
		goto nope;
	if (atomic_read(&bh->b_count) != 1)
		goto nope;
	page = bh->b_page;
	if (!page)
		goto nope;
	if (page->mapping)
		goto nope;

	/* OK, it's a truncated page */
	if (TestSetPageLocked(page))
		goto nope;

	page_cache_get(page);
	__brelse(bh);
	try_to_free_buffers(page);
	unlock_page(page);
	page_cache_release(page);
	return;

nope:
	__brelse(bh);
}

/*
 * Try to acquire jbd_lock_bh_state() against the buffer, when j_list_lock is
 * held.  For ranking reasons we must trylock.  If we lose, schedule away and
 * return 0.  j_list_lock is dropped in this case.
 */
static int inverted_lock(journal_t *journal, struct buffer_head *bh)
{
	if (!jbd_trylock_bh_state(bh)) {
		spin_unlock(&journal->j_list_lock);
		schedule();
		return 0;
	}
	return 1;
}

/*
 * Done it all: now submit the commit record.  We should have
 * cleaned up our previous buffers by now, so if we are in abort
 * mode we can now just skip the rest of the journal write
 * entirely.
 *
 * Returns 1 if the journal needs to be aborted or 0 on success
 */
static int journal_submit_commit_record(journal_t *journal,
					transaction_t *commit_transaction,
					struct buffer_head **cbh,
					__u32 crc32_sum)
{
	struct journal_head *descriptor;
	struct commit_header *tmp;
	struct buffer_head *bh;
	int ret;
	int barrier_done = 0;

	if (is_journal_aborted(journal))
		return 0;

	descriptor = jbd2_journal_get_descriptor_buffer(journal);
	if (!descriptor)
		return 1;

	bh = jh2bh(descriptor);

	tmp = (struct commit_header *)bh->b_data;
	tmp->h_magic = cpu_to_be32(JBD2_MAGIC_NUMBER);
	tmp->h_blocktype = cpu_to_be32(JBD2_COMMIT_BLOCK);
	tmp->h_sequence = cpu_to_be32(commit_transaction->t_tid);

	if (JBD2_HAS_COMPAT_FEATURE(journal,
				    JBD2_FEATURE_COMPAT_CHECKSUM)) {
		tmp->h_chksum_type 	= JBD2_CRC32_CHKSUM;
		tmp->h_chksum_size 	= JBD2_CRC32_CHKSUM_SIZE;
		tmp->h_chksum[0] 	= cpu_to_be32(crc32_sum);
	}

	JBUFFER_TRACE(descriptor, "submit commit block");
	lock_buffer(bh);
	get_bh(bh);
	set_buffer_dirty(bh);
	set_buffer_uptodate(bh);
	bh->b_end_io = journal_end_buffer_io_sync;

	if (journal->j_flags & JBD2_BARRIER &&
		!JBD2_HAS_INCOMPAT_FEATURE(journal,
					 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
		set_buffer_ordered(bh);
		barrier_done = 1;
	}
	ret = submit_bh(WRITE, bh);
	if (barrier_done)
		clear_buffer_ordered(bh);

	/* is it possible for another commit to fail at roughly
	 * the same time as this one?  If so, we don't want to
	 * trust the barrier flag in the super, but instead want
	 * to remember if we sent a barrier request
	 */
	if (ret == -EOPNOTSUPP && barrier_done) {
		char b[BDEVNAME_SIZE];

		printk(KERN_WARNING
			"JBD: barrier-based sync failed on %s - "
			"disabling barriers\n",
			bdevname(journal->j_dev, b));
		spin_lock(&journal->j_state_lock);
		journal->j_flags &= ~JBD2_BARRIER;
		spin_unlock(&journal->j_state_lock);

		/* And try again, without the barrier */
		lock_buffer(bh);
		set_buffer_uptodate(bh);
		set_buffer_dirty(bh);
		ret = submit_bh(WRITE, bh);
	}
	*cbh = bh;
	return ret;
}

/*
 * This function along with journal_submit_commit_record
 * allows to write the commit record asynchronously.
 */
static int journal_wait_on_commit_record(struct buffer_head *bh)
{
	int ret = 0;

	clear_buffer_dirty(bh);
	wait_on_buffer(bh);

	if (unlikely(!buffer_uptodate(bh)))
		ret = -EIO;
	put_bh(bh);            /* One for getblk() */
	jbd2_journal_put_journal_head(bh2jh(bh));

	return ret;
}

/*
 * Wait for all submitted IO to complete.
 */
static int journal_wait_on_locked_list(journal_t *journal,
				       transaction_t *commit_transaction)
{
	int ret = 0;
	struct journal_head *jh;

	while (commit_transaction->t_locked_list) {
		struct buffer_head *bh;

		jh = commit_transaction->t_locked_list->b_tprev;
		bh = jh2bh(jh);
		get_bh(bh);
		if (buffer_locked(bh)) {
			spin_unlock(&journal->j_list_lock);
			wait_on_buffer(bh);
			if (unlikely(!buffer_uptodate(bh)))
				ret = -EIO;
			spin_lock(&journal->j_list_lock);
		}
		if (!inverted_lock(journal, bh)) {
			put_bh(bh);
			spin_lock(&journal->j_list_lock);
			continue;
		}
		if (buffer_jbd(bh) && jh->b_jlist == BJ_Locked) {
			__jbd2_journal_unfile_buffer(jh);
			jbd_unlock_bh_state(bh);
			jbd2_journal_remove_journal_head(bh);
			put_bh(bh);
		} else {
			jbd_unlock_bh_state(bh);
		}
		put_bh(bh);
		cond_resched_lock(&journal->j_list_lock);
	}
	return ret;
  }

static void journal_do_submit_data(struct buffer_head **wbuf, int bufs)
{
	int i;

	for (i = 0; i < bufs; i++) {
		wbuf[i]->b_end_io = end_buffer_write_sync;
		/* We use-up our safety reference in submit_bh() */
		submit_bh(WRITE, wbuf[i]);
	}
}

/*
 *  Submit all the data buffers to disk
 */
static void journal_submit_data_buffers(journal_t *journal,
				transaction_t *commit_transaction)
{
	struct journal_head *jh;
	struct buffer_head *bh;
	int locked;
	int bufs = 0;
	struct buffer_head **wbuf = journal->j_wbuf;

	/*
	 * Whenever we unlock the journal and sleep, things can get added
	 * onto ->t_sync_datalist, so we have to keep looping back to
	 * write_out_data until we *know* that the list is empty.
	 *
	 * Cleanup any flushed data buffers from the data list.  Even in
	 * abort mode, we want to flush this out as soon as possible.
	 */
write_out_data:
	cond_resched();
	spin_lock(&journal->j_list_lock);

	while (commit_transaction->t_sync_datalist) {
		jh = commit_transaction->t_sync_datalist;
		bh = jh2bh(jh);
		locked = 0;

		/* Get reference just to make sure buffer does not disappear
		 * when we are forced to drop various locks */
		get_bh(bh);
		/* If the buffer is dirty, we need to submit IO and hence
		 * we need the buffer lock. We try to lock the buffer without
		 * blocking. If we fail, we need to drop j_list_lock and do
		 * blocking lock_buffer().
		 */
		if (buffer_dirty(bh)) {
			if (test_set_buffer_locked(bh)) {
				BUFFER_TRACE(bh, "needs blocking lock");
				spin_unlock(&journal->j_list_lock);
				/* Write out all data to prevent deadlocks */
				journal_do_submit_data(wbuf, bufs);
				bufs = 0;
				lock_buffer(bh);
				spin_lock(&journal->j_list_lock);
			}
			locked = 1;
		}
		/* We have to get bh_state lock. Again out of order, sigh. */
		if (!inverted_lock(journal, bh)) {
			jbd_lock_bh_state(bh);
			spin_lock(&journal->j_list_lock);
		}
		/* Someone already cleaned up the buffer? */
		if (!buffer_jbd(bh)
			|| jh->b_transaction != commit_transaction
			|| jh->b_jlist != BJ_SyncData) {
			jbd_unlock_bh_state(bh);
			if (locked)
				unlock_buffer(bh);
			BUFFER_TRACE(bh, "already cleaned up");
			put_bh(bh);
			continue;
		}
		if (locked && test_clear_buffer_dirty(bh)) {
			BUFFER_TRACE(bh, "needs writeout, adding to array");
			wbuf[bufs++] = bh;
			__jbd2_journal_file_buffer(jh, commit_transaction,
						BJ_Locked);
			jbd_unlock_bh_state(bh);
			if (bufs == journal->j_wbufsize) {
				spin_unlock(&journal->j_list_lock);
				journal_do_submit_data(wbuf, bufs);
				bufs = 0;
				goto write_out_data;
			}
		} else if (!locked && buffer_locked(bh)) {
			__jbd2_journal_file_buffer(jh, commit_transaction,
						BJ_Locked);
			jbd_unlock_bh_state(bh);
			put_bh(bh);
		} else {
			BUFFER_TRACE(bh, "writeout complete: unfile");
			__jbd2_journal_unfile_buffer(jh);
			jbd_unlock_bh_state(bh);
			if (locked)
				unlock_buffer(bh);
			jbd2_journal_remove_journal_head(bh);
			/* Once for our safety reference, once for
			 * jbd2_journal_remove_journal_head() */
			put_bh(bh);
			put_bh(bh);
		}

		if (need_resched() || spin_needbreak(&journal->j_list_lock)) {
			spin_unlock(&journal->j_list_lock);
			goto write_out_data;
		}
	}
	spin_unlock(&journal->j_list_lock);
	journal_do_submit_data(wbuf, bufs);
}

static __u32 jbd2_checksum_data(__u32 crc32_sum, struct buffer_head *bh)
{
	struct page *page = bh->b_page;
	char *addr;
	__u32 checksum;

	addr = kmap_atomic(page, KM_USER0);
	checksum = crc32_be(crc32_sum,
		(void *)(addr + offset_in_page(bh->b_data)), bh->b_size);
	kunmap_atomic(addr, KM_USER0);

	return checksum;
}

static void write_tag_block(int tag_bytes, journal_block_tag_t *tag,
				   unsigned long long block)
{
	tag->t_blocknr = cpu_to_be32(block & (u32)~0);
	if (tag_bytes > JBD2_TAG_SIZE32)
		tag->t_blocknr_high = cpu_to_be32((block >> 31) >> 1);
}

/*
 * jbd2_journal_commit_transaction
 *
 * The primary function for committing a transaction to the log.  This
 * function is called by the journal thread to begin a complete commit.
 */
void jbd2_journal_commit_transaction(journal_t *journal)
{
	struct transaction_stats_s stats;
	transaction_t *commit_transaction;
	struct journal_head *jh, *new_jh, *descriptor;
	struct buffer_head **wbuf = journal->j_wbuf;
	int bufs;
	int flags;
	int err;
	unsigned long long blocknr;
	char *tagp = NULL;
	journal_header_t *header;
	journal_block_tag_t *tag = NULL;
	int space_left = 0;
	int first_tag = 0;
	int tag_flag;
	int i;
	int tag_bytes = journal_tag_bytes(journal);
	struct buffer_head *cbh = NULL; /* For transactional checksums */
	__u32 crc32_sum = ~0;

	/*
	 * First job: lock down the current transaction and wait for
	 * all outstanding updates to complete.
	 */

#ifdef COMMIT_STATS
	spin_lock(&journal->j_list_lock);
	summarise_journal_usage(journal);
	spin_unlock(&journal->j_list_lock);
#endif

	/* Do we need to erase the effects of a prior jbd2_journal_flush? */
	if (journal->j_flags & JBD2_FLUSHED) {
		jbd_debug(3, "super block updated\n");
		jbd2_journal_update_superblock(journal, 1);
	} else {
		jbd_debug(3, "superblock not updated\n");
	}

	J_ASSERT(journal->j_running_transaction != NULL);
	J_ASSERT(journal->j_committing_transaction == NULL);

	commit_transaction = journal->j_running_transaction;
	J_ASSERT(commit_transaction->t_state == T_RUNNING);

	jbd_debug(1, "JBD: starting commit of transaction %d\n",
			commit_transaction->t_tid);

	spin_lock(&journal->j_state_lock);
	commit_transaction->t_state = T_LOCKED;

	stats.u.run.rs_wait = commit_transaction->t_max_wait;
	stats.u.run.rs_locked = jiffies;
	stats.u.run.rs_running = jbd2_time_diff(commit_transaction->t_start,
						stats.u.run.rs_locked);

	spin_lock(&commit_transaction->t_handle_lock);
	while (commit_transaction->t_updates) {
		DEFINE_WAIT(wait);

		prepare_to_wait(&journal->j_wait_updates, &wait,
					TASK_UNINTERRUPTIBLE);
		if (commit_transaction->t_updates) {
			spin_unlock(&commit_transaction->t_handle_lock);
			spin_unlock(&journal->j_state_lock);
			schedule();
			spin_lock(&journal->j_state_lock);
			spin_lock(&commit_transaction->t_handle_lock);
		}
		finish_wait(&journal->j_wait_updates, &wait);
	}
	spin_unlock(&commit_transaction->t_handle_lock);

	J_ASSERT (commit_transaction->t_outstanding_credits <=
			journal->j_max_transaction_buffers);

	/*
	 * First thing we are allowed to do is to discard any remaining
	 * BJ_Reserved buffers.  Note, it is _not_ permissible to assume
	 * that there are no such buffers: if a large filesystem
	 * operation like a truncate needs to split itself over multiple
	 * transactions, then it may try to do a jbd2_journal_restart() while
	 * there are still BJ_Reserved buffers outstanding.  These must
	 * be released cleanly from the current transaction.
	 *
	 * In this case, the filesystem must still reserve write access
	 * again before modifying the buffer in the new transaction, but
	 * we do not require it to remember exactly which old buffers it
	 * has reserved.  This is consistent with the existing behaviour
	 * that multiple jbd2_journal_get_write_access() calls to the same
	 * buffer are perfectly permissable.
	 */
	while (commit_transaction->t_reserved_list) {
		jh = commit_transaction->t_reserved_list;
		JBUFFER_TRACE(jh, "reserved, unused: refile");
		/*
		 * A jbd2_journal_get_undo_access()+jbd2_journal_release_buffer() may
		 * leave undo-committed data.
		 */
		if (jh->b_committed_data) {
			struct buffer_head *bh = jh2bh(jh);

			jbd_lock_bh_state(bh);
			jbd2_free(jh->b_committed_data, bh->b_size);
			jh->b_committed_data = NULL;
			jbd_unlock_bh_state(bh);
		}
		jbd2_journal_refile_buffer(journal, jh);
	}

	/*
	 * Now try to drop any written-back buffers from the journal's
	 * checkpoint lists.  We do this *before* commit because it potentially
	 * frees some memory
	 */
	spin_lock(&journal->j_list_lock);
	__jbd2_journal_clean_checkpoint_list(journal);
	spin_unlock(&journal->j_list_lock);

	jbd_debug (3, "JBD: commit phase 1\n");

	/*
	 * Switch to a new revoke table.
	 */
	jbd2_journal_switch_revoke_table(journal);

	stats.u.run.rs_flushing = jiffies;
	stats.u.run.rs_locked = jbd2_time_diff(stats.u.run.rs_locked,
					       stats.u.run.rs_flushing);

	commit_transaction->t_state = T_FLUSH;
	journal->j_committing_transaction = commit_transaction;
	journal->j_running_transaction = NULL;
	commit_transaction->t_log_start = journal->j_head;
	wake_up(&journal->j_wait_transaction_locked);
	spin_unlock(&journal->j_state_lock);

	jbd_debug (3, "JBD: commit phase 2\n");

	/*
	 * Now start flushing things to disk, in the order they appear
	 * on the transaction lists.  Data blocks go first.
	 */
	err = 0;
	journal_submit_data_buffers(journal, commit_transaction);

	/*
	 * Wait for all previously submitted IO to complete if commit
	 * record is to be written synchronously.
	 */
	spin_lock(&journal->j_list_lock);
	if (!JBD2_HAS_INCOMPAT_FEATURE(journal,
		JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT))
		err = journal_wait_on_locked_list(journal,
						commit_transaction);

	spin_unlock(&journal->j_list_lock);

	if (err)
		jbd2_journal_abort(journal, err);

	jbd2_journal_write_revoke_records(journal, commit_transaction);

	jbd_debug(3, "JBD: commit phase 2\n");

	/*
	 * If we found any dirty or locked buffers, then we should have
	 * looped back up to the write_out_data label.  If there weren't
	 * any then journal_clean_data_list should have wiped the list
	 * clean by now, so check that it is in fact empty.
	 */
	J_ASSERT (commit_transaction->t_sync_datalist == NULL);

	jbd_debug (3, "JBD: commit phase 3\n");

	/*
	 * Way to go: we have now written out all of the data for a
	 * transaction!  Now comes the tricky part: we need to write out
	 * metadata.  Loop over the transaction's entire buffer list:
	 */
	spin_lock(&journal->j_state_lock);
	commit_transaction->t_state = T_COMMIT;
	spin_unlock(&journal->j_state_lock);

	stats.u.run.rs_logging = jiffies;
	stats.u.run.rs_flushing = jbd2_time_diff(stats.u.run.rs_flushing,
						 stats.u.run.rs_logging);
	stats.u.run.rs_blocks = commit_transaction->t_outstanding_credits;
	stats.u.run.rs_blocks_logged = 0;

	J_ASSERT(commit_transaction->t_nr_buffers <=
		 commit_transaction->t_outstanding_credits);

	descriptor = NULL;
	bufs = 0;
	while (commit_transaction->t_buffers) {

		/* Find the next buffer to be journaled... */

		jh = commit_transaction->t_buffers;

		/* If we're in abort mode, we just un-journal the buffer and
		   release it for background writing. */

		if (is_journal_aborted(journal)) {
			JBUFFER_TRACE(jh, "journal is aborting: refile");
			jbd2_journal_refile_buffer(journal, jh);
			/* If that was the last one, we need to clean up
			 * any descriptor buffers which may have been
			 * already allocated, even if we are now
			 * aborting. */
			if (!commit_transaction->t_buffers)
				goto start_journal_io;
			continue;
		}

		/* Make sure we have a descriptor block in which to
		   record the metadata buffer. */

		if (!descriptor) {
			struct buffer_head *bh;

			J_ASSERT (bufs == 0);

			jbd_debug(4, "JBD: get descriptor\n");

			descriptor = jbd2_journal_get_descriptor_buffer(journal);
			if (!descriptor) {
				jbd2_journal_abort(journal, -EIO);
				continue;
			}

			bh = jh2bh(descriptor);
			jbd_debug(4, "JBD: got buffer %llu (%p)\n",
				(unsigned long long)bh->b_blocknr, bh->b_data);
			header = (journal_header_t *)&bh->b_data[0];
			header->h_magic     = cpu_to_be32(JBD2_MAGIC_NUMBER);
			header->h_blocktype = cpu_to_be32(JBD2_DESCRIPTOR_BLOCK);
			header->h_sequence  = cpu_to_be32(commit_transaction->t_tid);

			tagp = &bh->b_data[sizeof(journal_header_t)];
			space_left = bh->b_size - sizeof(journal_header_t);
			first_tag = 1;
			set_buffer_jwrite(bh);
			set_buffer_dirty(bh);
			wbuf[bufs++] = bh;

			/* Record it so that we can wait for IO
                           completion later */
			BUFFER_TRACE(bh, "ph3: file as descriptor");
			jbd2_journal_file_buffer(descriptor, commit_transaction,
					BJ_LogCtl);
		}

		/* Where is the buffer to be written? */

		err = jbd2_journal_next_log_block(journal, &blocknr);
		/* If the block mapping failed, just abandon the buffer
		   and repeat this loop: we'll fall into the
		   refile-on-abort condition above. */
		if (err) {
			jbd2_journal_abort(journal, err);
			continue;
		}

		/*
		 * start_this_handle() uses t_outstanding_credits to determine
		 * the free space in the log, but this counter is changed
		 * by jbd2_journal_next_log_block() also.
		 */
		commit_transaction->t_outstanding_credits--;

		/* Bump b_count to prevent truncate from stumbling over
                   the shadowed buffer!  @@@ This can go if we ever get
                   rid of the BJ_IO/BJ_Shadow pairing of buffers. */
		atomic_inc(&jh2bh(jh)->b_count);

		/* Make a temporary IO buffer with which to write it out
                   (this will requeue both the metadata buffer and the
                   temporary IO buffer). new_bh goes on BJ_IO*/

		set_bit(BH_JWrite, &jh2bh(jh)->b_state);
		/*
		 * akpm: jbd2_journal_write_metadata_buffer() sets
		 * new_bh->b_transaction to commit_transaction.
		 * We need to clean this up before we release new_bh
		 * (which is of type BJ_IO)
		 */
		JBUFFER_TRACE(jh, "ph3: write metadata");
		flags = jbd2_journal_write_metadata_buffer(commit_transaction,
						      jh, &new_jh, blocknr);
		set_bit(BH_JWrite, &jh2bh(new_jh)->b_state);
		wbuf[bufs++] = jh2bh(new_jh);

		/* Record the new block's tag in the current descriptor
                   buffer */

		tag_flag = 0;
		if (flags & 1)
			tag_flag |= JBD2_FLAG_ESCAPE;
		if (!first_tag)
			tag_flag |= JBD2_FLAG_SAME_UUID;

		tag = (journal_block_tag_t *) tagp;
		write_tag_block(tag_bytes, tag, jh2bh(jh)->b_blocknr);
		tag->t_flags = cpu_to_be32(tag_flag);
		tagp += tag_bytes;
		space_left -= tag_bytes;

		if (first_tag) {
			memcpy (tagp, journal->j_uuid, 16);
			tagp += 16;
			space_left -= 16;
			first_tag = 0;
		}

		/* If there's no more to do, or if the descriptor is full,
		   let the IO rip! */

		if (bufs == journal->j_wbufsize ||
		    commit_transaction->t_buffers == NULL ||
		    space_left < tag_bytes + 16) {

			jbd_debug(4, "JBD: Submit %d IOs\n", bufs);

			/* Write an end-of-descriptor marker before
                           submitting the IOs.  "tag" still points to
                           the last tag we set up. */

			tag->t_flags |= cpu_to_be32(JBD2_FLAG_LAST_TAG);

start_journal_io:
			for (i = 0; i < bufs; i++) {
				struct buffer_head *bh = wbuf[i];
				/*
				 * Compute checksum.
				 */
				if (JBD2_HAS_COMPAT_FEATURE(journal,
					JBD2_FEATURE_COMPAT_CHECKSUM)) {
					crc32_sum =
					    jbd2_checksum_data(crc32_sum, bh);
				}

				lock_buffer(bh);
				clear_buffer_dirty(bh);
				set_buffer_uptodate(bh);
				bh->b_end_io = journal_end_buffer_io_sync;
				submit_bh(WRITE, bh);
			}
			cond_resched();
			stats.u.run.rs_blocks_logged += bufs;

			/* Force a new descriptor to be generated next
                           time round the loop. */
			descriptor = NULL;
			bufs = 0;
		}
	}

	/* Done it all: now write the commit record asynchronously. */

	if (JBD2_HAS_INCOMPAT_FEATURE(journal,
		JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
		err = journal_submit_commit_record(journal, commit_transaction,
						 &cbh, crc32_sum);
		if (err)
			__jbd2_journal_abort_hard(journal);

		spin_lock(&journal->j_list_lock);
		err = journal_wait_on_locked_list(journal,
						commit_transaction);
		spin_unlock(&journal->j_list_lock);
		if (err)
			__jbd2_journal_abort_hard(journal);
	}

	/* Lo and behold: we have just managed to send a transaction to
           the log.  Before we can commit it, wait for the IO so far to
           complete.  Control buffers being written are on the
           transaction's t_log_list queue, and metadata buffers are on
           the t_iobuf_list queue.

	   Wait for the buffers in reverse order.  That way we are
	   less likely to be woken up until all IOs have completed, and
	   so we incur less scheduling load.
	*/

	jbd_debug(3, "JBD: commit phase 4\n");

	/*
	 * akpm: these are BJ_IO, and j_list_lock is not needed.
	 * See __journal_try_to_free_buffer.
	 */
wait_for_iobuf:
	while (commit_transaction->t_iobuf_list != NULL) {
		struct buffer_head *bh;

		jh = commit_transaction->t_iobuf_list->b_tprev;
		bh = jh2bh(jh);
		if (buffer_locked(bh)) {
			wait_on_buffer(bh);
			goto wait_for_iobuf;
		}
		if (cond_resched())
			goto wait_for_iobuf;

		if (unlikely(!buffer_uptodate(bh)))
			err = -EIO;

		clear_buffer_jwrite(bh);

		JBUFFER_TRACE(jh, "ph4: unfile after journal write");
		jbd2_journal_unfile_buffer(journal, jh);

		/*
		 * ->t_iobuf_list should contain only dummy buffer_heads
		 * which were created by jbd2_journal_write_metadata_buffer().
		 */
		BUFFER_TRACE(bh, "dumping temporary bh");
		jbd2_journal_put_journal_head(jh);
		__brelse(bh);
		J_ASSERT_BH(bh, atomic_read(&bh->b_count) == 0);
		free_buffer_head(bh);

		/* We also have to unlock and free the corresponding
                   shadowed buffer */
		jh = commit_transaction->t_shadow_list->b_tprev;
		bh = jh2bh(jh);
		clear_bit(BH_JWrite, &bh->b_state);
		J_ASSERT_BH(bh, buffer_jbddirty(bh));

		/* The metadata is now released for reuse, but we need
                   to remember it against this transaction so that when
                   we finally commit, we can do any checkpointing
                   required. */
		JBUFFER_TRACE(jh, "file as BJ_Forget");
		jbd2_journal_file_buffer(jh, commit_transaction, BJ_Forget);
		/* Wake up any transactions which were waiting for this
		   IO to complete */
		wake_up_bit(&bh->b_state, BH_Unshadow);
		JBUFFER_TRACE(jh, "brelse shadowed buffer");
		__brelse(bh);
	}

	J_ASSERT (commit_transaction->t_shadow_list == NULL);

	jbd_debug(3, "JBD: commit phase 5\n");

	/* Here we wait for the revoke record and descriptor record buffers */
 wait_for_ctlbuf:
	while (commit_transaction->t_log_list != NULL) {
		struct buffer_head *bh;

		jh = commit_transaction->t_log_list->b_tprev;
		bh = jh2bh(jh);
		if (buffer_locked(bh)) {
			wait_on_buffer(bh);
			goto wait_for_ctlbuf;
		}
		if (cond_resched())
			goto wait_for_ctlbuf;

		if (unlikely(!buffer_uptodate(bh)))
			err = -EIO;

		BUFFER_TRACE(bh, "ph5: control buffer writeout done: unfile");
		clear_buffer_jwrite(bh);
		jbd2_journal_unfile_buffer(journal, jh);
		jbd2_journal_put_journal_head(jh);
		__brelse(bh);		/* One for getblk */
		/* AKPM: bforget here */
	}

	jbd_debug(3, "JBD: commit phase 6\n");

	if (!JBD2_HAS_INCOMPAT_FEATURE(journal,
		JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
		err = journal_submit_commit_record(journal, commit_transaction,
						&cbh, crc32_sum);
		if (err)
			__jbd2_journal_abort_hard(journal);
	}
	if (!err && !is_journal_aborted(journal))
		err = journal_wait_on_commit_record(cbh);

	if (err)
		jbd2_journal_abort(journal, err);

	/* End of a transaction!  Finally, we can do checkpoint
           processing: any buffers committed as a result of this
           transaction can be removed from any checkpoint list it was on
           before. */

	jbd_debug(3, "JBD: commit phase 7\n");

	J_ASSERT(commit_transaction->t_sync_datalist == NULL);
	J_ASSERT(commit_transaction->t_buffers == NULL);
	J_ASSERT(commit_transaction->t_checkpoint_list == NULL);
	J_ASSERT(commit_transaction->t_iobuf_list == NULL);
	J_ASSERT(commit_transaction->t_shadow_list == NULL);
	J_ASSERT(commit_transaction->t_log_list == NULL);

restart_loop:
	/*
	 * As there are other places (journal_unmap_buffer()) adding buffers
	 * to this list we have to be careful and hold the j_list_lock.
	 */
	spin_lock(&journal->j_list_lock);
	while (commit_transaction->t_forget) {
		transaction_t *cp_transaction;
		struct buffer_head *bh;

		jh = commit_transaction->t_forget;
		spin_unlock(&journal->j_list_lock);
		bh = jh2bh(jh);
		jbd_lock_bh_state(bh);
		J_ASSERT_JH(jh,	jh->b_transaction == commit_transaction ||
			jh->b_transaction == journal->j_running_transaction);

		/*
		 * If there is undo-protected committed data against
		 * this buffer, then we can remove it now.  If it is a
		 * buffer needing such protection, the old frozen_data
		 * field now points to a committed version of the
		 * buffer, so rotate that field to the new committed
		 * data.
		 *
		 * Otherwise, we can just throw away the frozen data now.
		 */
		if (jh->b_committed_data) {
			jbd2_free(jh->b_committed_data, bh->b_size);
			jh->b_committed_data = NULL;
			if (jh->b_frozen_data) {
				jh->b_committed_data = jh->b_frozen_data;
				jh->b_frozen_data = NULL;
			}
		} else if (jh->b_frozen_data) {
			jbd2_free(jh->b_frozen_data, bh->b_size);
			jh->b_frozen_data = NULL;
		}

		spin_lock(&journal->j_list_lock);
		cp_transaction = jh->b_cp_transaction;
		if (cp_transaction) {
			JBUFFER_TRACE(jh, "remove from old cp transaction");
			cp_transaction->t_chp_stats.cs_dropped++;
			__jbd2_journal_remove_checkpoint(jh);
		}

		/* Only re-checkpoint the buffer_head if it is marked
		 * dirty.  If the buffer was added to the BJ_Forget list
		 * by jbd2_journal_forget, it may no longer be dirty and
		 * there's no point in keeping a checkpoint record for
		 * it. */

		/* A buffer which has been freed while still being
		 * journaled by a previous transaction may end up still
		 * being dirty here, but we want to avoid writing back
		 * that buffer in the future now that the last use has
		 * been committed.  That's not only a performance gain,
		 * it also stops aliasing problems if the buffer is left
		 * behind for writeback and gets reallocated for another
		 * use in a different page. */
		if (buffer_freed(bh)) {
			clear_buffer_freed(bh);
			clear_buffer_jbddirty(bh);
		}

		if (buffer_jbddirty(bh)) {
			JBUFFER_TRACE(jh, "add to new checkpointing trans");
			__jbd2_journal_insert_checkpoint(jh, commit_transaction);
			JBUFFER_TRACE(jh, "refile for checkpoint writeback");
			__jbd2_journal_refile_buffer(jh);
			jbd_unlock_bh_state(bh);
		} else {
			J_ASSERT_BH(bh, !buffer_dirty(bh));
			/* The buffer on BJ_Forget list and not jbddirty means
			 * it has been freed by this transaction and hence it
			 * could not have been reallocated until this
			 * transaction has committed. *BUT* it could be
			 * reallocated once we have written all the data to
			 * disk and before we process the buffer on BJ_Forget
			 * list. */
			JBUFFER_TRACE(jh, "refile or unfile freed buffer");
			__jbd2_journal_refile_buffer(jh);
			if (!jh->b_transaction) {
				jbd_unlock_bh_state(bh);
				 /* needs a brelse */
				jbd2_journal_remove_journal_head(bh);
				release_buffer_page(bh);
			} else
				jbd_unlock_bh_state(bh);
		}
		cond_resched_lock(&journal->j_list_lock);
	}
	spin_unlock(&journal->j_list_lock);
	/*
	 * This is a bit sleazy.  We use j_list_lock to protect transition
	 * of a transaction into T_FINISHED state and calling
	 * __jbd2_journal_drop_transaction(). Otherwise we could race with
	 * other checkpointing code processing the transaction...
	 */
	spin_lock(&journal->j_state_lock);
	spin_lock(&journal->j_list_lock);
	/*
	 * Now recheck if some buffers did not get attached to the transaction
	 * while the lock was dropped...
	 */
	if (commit_transaction->t_forget) {
		spin_unlock(&journal->j_list_lock);
		spin_unlock(&journal->j_state_lock);
		goto restart_loop;
	}

	/* Done with this transaction! */

	jbd_debug(3, "JBD: commit phase 8\n");

	J_ASSERT(commit_transaction->t_state == T_COMMIT);

	commit_transaction->t_start = jiffies;
	stats.u.run.rs_logging = jbd2_time_diff(stats.u.run.rs_logging,
						commit_transaction->t_start);

	/*
	 * File the transaction for history
	 */
	stats.ts_type = JBD2_STATS_RUN;
	stats.ts_tid = commit_transaction->t_tid;
	stats.u.run.rs_handle_count = commit_transaction->t_handle_count;
	spin_lock(&journal->j_history_lock);
	memcpy(journal->j_history + journal->j_history_cur, &stats,
			sizeof(stats));
	if (++journal->j_history_cur == journal->j_history_max)
		journal->j_history_cur = 0;

	/*
	 * Calculate overall stats
	 */
	journal->j_stats.ts_tid++;
	journal->j_stats.u.run.rs_wait += stats.u.run.rs_wait;
	journal->j_stats.u.run.rs_running += stats.u.run.rs_running;
	journal->j_stats.u.run.rs_locked += stats.u.run.rs_locked;
	journal->j_stats.u.run.rs_flushing += stats.u.run.rs_flushing;
	journal->j_stats.u.run.rs_logging += stats.u.run.rs_logging;
	journal->j_stats.u.run.rs_handle_count += stats.u.run.rs_handle_count;
	journal->j_stats.u.run.rs_blocks += stats.u.run.rs_blocks;
	journal->j_stats.u.run.rs_blocks_logged += stats.u.run.rs_blocks_logged;
	spin_unlock(&journal->j_history_lock);

	commit_transaction->t_state = T_FINISHED;
	J_ASSERT(commit_transaction == journal->j_committing_transaction);
	journal->j_commit_sequence = commit_transaction->t_tid;
	journal->j_committing_transaction = NULL;
	spin_unlock(&journal->j_state_lock);

	if (commit_transaction->t_checkpoint_list == NULL &&
	    commit_transaction->t_checkpoint_io_list == NULL) {
		__jbd2_journal_drop_transaction(journal, commit_transaction);
	} else {
		if (journal->j_checkpoint_transactions == NULL) {
			journal->j_checkpoint_transactions = commit_transaction;
			commit_transaction->t_cpnext = commit_transaction;
			commit_transaction->t_cpprev = commit_transaction;
		} else {
			commit_transaction->t_cpnext =
				journal->j_checkpoint_transactions;
			commit_transaction->t_cpprev =
				commit_transaction->t_cpnext->t_cpprev;
			commit_transaction->t_cpnext->t_cpprev =
				commit_transaction;
			commit_transaction->t_cpprev->t_cpnext =
				commit_transaction;
		}
	}
	spin_unlock(&journal->j_list_lock);

	jbd_debug(1, "JBD: commit %d complete, head %d\n",
		  journal->j_commit_sequence, journal->j_tail_sequence);

	wake_up(&journal->j_wait_done_commit);
}
5c(-[掼3z `<҂يqK3j bb{[^)ZnICCYn<2AճP$T֡ b?C,ݖJ?AD7NHEDrDH )=ldMezܞ7_;Uz L!;xˍe⩷AS{!eyxPU_͙ +Bgӛ͗ᦁO:̅M`k\,Z_#qIht#~"Zbіs!;$&D)js=%:`YM$7-z.${>{*(]~GIȁaTaaɆ8Y¯-P'q9&Xf@}BȂOXr¥aYR1czht9?B[jUG `aytkGl<"mbb]3k]/~Αim!0!yPG,uc65bQD&\2akABh;>1596P)U1 ȹ~oNhYY`F'\#E 2sabYLmR&RXUxyG&-Ⱦjo ^Uߩ=.<Pảv f( ݕAtq8I| Mjel̯.~Dѵ4z6-@mj`Qo x8 9,Rw wU/ Gi<'H5?#wWjKHs(S`d" %:͸3̨_m7ι!MD(@ ,n)%kokr2dAlF<1koJtxܶs1K,A]La;-Q F]A鬾nAO7f >v y]*GFBɭX4]6q"}p[ $$+%lg$PEyڨ{Je+B[hÙ/&9PU ԏ: :Ca 1Kh ,-~mcvR{$?#o/ݺubNy>gwReA+c'5 |$ۄU\2RN6!ʀ(x.%8d4E!wbѭhi *-#2p ඹk'3GI|uɴ}._0{{6^‘pt,w2'`c kT,+dn+\=-F 齜]k8v̌rmI]( 0W=F8(akWSXNglg5YY ܻ=J אrag.NA8M*~Mگ~ Y"๥aŒ"%ľ]:{ I-_Qʢ!J/5ܫ>;Z&ZI"y?}{t!M6!F7aq`w v Y&#adhΔ+A))ȸ+j*ڝi% >b\& ˯t={!>):!46RҜU܆/g.zf(vvہP3+EOiG+ pU~^&nĄ f͖K!؇^Ie*-0noQn ^V!Bdu5׺l7*ሣ1"QEkxJR#J,z ĚB. c;pJ)ۘ#-`c}; o:.2r)CH/m|Ǣ(ax$_c%QQ<\?Z>8Ui1u*=ÉfQ- o!giUtÁ]yw_n2;]Na3ZT3ަ鞒2]OU/{1:"  hAUOEvxL%h[G`r+aZKaM2_UWu-\3"xQ eݔK_g76mJ=<|u}\ÝdH2YvGFW 4aDԲ5qP m%k -9ysrGsFx/6;~=6WeKQ?*|Щn?g8O)ۥ$d1[d7l* AV nRkΫ$w>}\Xc9]LGO b%7Fr˿)` جsw5DD>ېnb.Mxo!'L7d- PK`fh=Lүsz}UuӤD~Ӊ~w2=Б<,D|̹19tCQ0|dߣa!];L)'PDkF.%F59x٭#7P_]:Z,C!k_|lrYT/G$T5Zr ==ꦄֲ:S&0=8cӼV\P kpNi]OZxRB<_"L ]}\IJpU;,H9  7v) GR&ՍfdmLCȤ"n78b4^$dLIv sk lW.hVQ6/5{9;Bwo{B^ Ed+oNU sBI2=>H="Z[.jA?06$T8ߪ+rWBiɾ{f[;]޷ 57$CMӦdMz"XꯛL3M魶StF-GYJ2(%\}Zڿj*n ܊uGYܵdciru_f&~)E II#% VۀTD)\oҬ+  ,5\NS Tm5cз~|ξh0KOxӗ$maQ)m_FCX3Zy7܌)އjp# ZPR=fa&#a\yk]!oQq7)G4?  @|36xkR}=-FlfɈvۓҢ]K\r(̡S#1 س%Ic`>8^p}9mJ:U|rcph$4qj1# ²ʓ 0[7AQV?$,>>vctuxܖk۳~zay; idכc'`ǖ`ŏ(,s@:^~~ ]MRAb>&{S.{~Q'8Lۨw["#JۢΔ(//j[ݩx.Yo)Dz#vgg` הU5}Ӥx|mSZ8&QKP*SXۮ\w]J:d"zU%͙d>uηȌ^^?#oH4Ncʾ i ZLK3;`/\i*<93g D*g<)mi*S&4rKwǁ t yr`&O۟G򝱔BD 1.v[LJyjb^kuIjLNé}FU"ς^4 @|x n#sE| 벐 OB/lQ͉p*T%]?SyzrgP׵9ЭޔyT!Pw)7"&!;" 5=GPjmʎC] B"acb6S+Q09C$=ǮTiPO!PڀLXeUp 3o#_lɵqBsjS>yIRIі-cd!jSΨdIۉ Q.w̬E|^ XHs`b8Ɣ[BBrkA{e]r$N6ǯyo:%֚B8B@eս_5+w*C!0`krK J)_?&6}%l] W˸VR+F2i}ąA6TSkxg[7'l1@Z&`2;.?-;: h註0wv:Nm9m0ձbwY6i<+ږxOJyS|bt ih.A%[Em, f ~Ӏѕ P.-fE2TѺėUS 'WDȴ{w>N\LЀ;|2%t%M[@c2frr-\|jzU ^}f||UEQif5Th4X^q;?`ªDӢ[1ĩvn(h h39 ']"3W>G ra[o}JMGI^ B^ʒjglzP,/rcA8N*;!]l@_ߜzv*覴}d\uE$9)B=_VZj $C=h :=NW&N"!,{BYGQmsG# O"s^ń<8%u'=wN@9 *x '5HL %ǀAr_H:A8Wp<ܗe>z d߆hg `x_ꜙݣ:Aps> /l9 %C_X{_$l?B9`P -/R£Q˘o+WJuPbl5Y#1 VEI"eŦ&Y]8ٿ Xoz4}W":ffk)cC&C[W5&uYJԄ2ʯ"BԬTzs.*%Yh>Q!nf]YWeIy7YG)y`tHFu~u<0Uצ\u:`^&KG%,7r&wg5̊N ^QgldlD@x$iZn *‡]LUGbv* (@9ZON3w_Z 'f/ZX=uqhɱ&xiS(?9#HAAdXug"~jBѲ}s˶`~{IzsyU-_K#dG7C?k+%i7BŭCJs $I<#T8 bY "5x(~x ̡/4ha|G~x`˗ 1FՀf!ڂWo*eYӽq.yb ׮=6;B4ITutK&/'07s$m#h(/a xZ ar>r/0W cmaOT;j-OBWoqgAX˜5O-c~/|K_[9 b1UWaLؕeTu‹}ld\@]ubvpr)ugWVS\4zCQnO\%KҶ~sLp@5"IR28A W WODj}:umk7Qۃex&L7O[* IAQ&Y\Q<l܅Nݓ^A<TlOk6¸J {"˚(h|:ץ'Ӡ7ύ6jcudu37I ڝ'Q΄pF `_|ئIrNҹQ.ĒM$scN3;[^'$cNMԘ)$ixF[̌QJ 9۽ciGn'^㎼6 WC<g+L)6H-V0Yc̄dE

s;F^7p(Xxy’^^Sr2ZN ? 6M;G(+dlhGΔVNׄe P[}B H\ s|?ѿ-ݕX^~fqE@h[[~t&4/w>q̕Y$=y 0Vy2l9l5{%ԗ /Tޫ㧿86ݲ0kyrNQPZj;+3Ƴ,T];}R*b i5 @ȲG 344t.gܯN҂|5evmte `Lkd\d Ro(㮪QWcu$)( JXN8"y7ȣԥ쮞s-D"M 5QzNp= PTfE(ð!HىWVgq05IVdͅB@:z`r4[bg>_/2=9R4 WtrI{ 4CU̘tl_=uW3k޼w_ԓ4Q@v@dis_^aa3wˡV^5M8e'֎C k]jO{F~DDL`2Nlk.n0=$ A_;- NT`rJ:v({h%7؊Uo34U!pTB5 =Zs_pkZJقQiYcnx$0L4ur[ TETcB%Ά3rb}Y d5,t,A#|ݐGީO=#P ɔK'1KfTi kE"8vXVPekg3 >e?GAɀ "tZA65P0( hBV$QTWm_ d㖏rw9.+ Sn^KLL iDS@]eq01rY|$O|VhO=4\o-Ǜe+T5W oQ>cםE8,g||{;=zG'X@[w>L?H7;Rdcz޽qfAio$[ՄM GD!"? 7PvA5gr6"+LmR1ue|㉵YjW_K< 8ė|v],t9XB%s<27ӛhhJ=C_2n|HveiKbXUÿ Z[s|,#׾+^u4DT}ٹ@b6 hl^Qg2?'OiTYZB9W %vXZd׺ zzVx1 f^A}ɬș㇂5s:+ͮ$SlC_E&q˩E80HHוVG\> C8 :yz~xx)%6i`٥zKmѶ_e/0(:i߈&s3*ƐM;͌8 b(G4'‥&b#.pE3SV(ˌ.`;;H|2u08rt,ol4A2IoŞ؁x0Cg:`mHm* _/JhVm~ΓT" ]Au}5g#rpގwC #L1{?5&١ 5cae@ڕؘwo%F9h$o d}vͽnqyih^ϗ%dtz=% gnjaɬv&+ ZrA+ F}-s?: b}ԟ%_S\h殺6T7ḰS4_%^[N:A^}\FV}fV] 8on`KKI,8U9f:pen| _]r&y>Q*onǢnHMn?iKImwIߦ6Sn)y||X7z[XTaW 3Fʝ4?ƍD5\?rctć?փۮ! P*?2,_ANr>"+Je Xr._^֊7+FpUqtZ, '%TgSS%̘.;̢C#T~^ʽfS HB/._UV`7[(J(=vAi}%ɎQ`eSn!P>2׺';yR8Xa`OMa`2[Gj(gMn0ZU>OU8LGG} ' ''6'! 4P i=4MGr&b#WIX-FDٙJa,xq*_v* p'N^Yܣ \MyFHݾ`j2k꿌vCy p0+6:זHa+kv vJ/D>vrK q2%umT4! G,\=oJz*VP(x}2?/+]e|Ie~\j:8&}.rCxΓfJ6Ba hة`HZ+M?gREV<P 4x1֋3* &3衛Oʘ(dnE른70fYK @/{ |J!MZ[ÉLt࠶to5XzU=j;dTL1H=7Ooa hX1rk|'4 $D&x5~l Z2 VVZ۠5h7vȑ3#N4њJRh@@*$kؔ?frrdn;Os8P\UVdSGwbsy.U? l15RB8}5 F/)tbƦ[I⚩Rֲ#04F˒)B f#pYPueQƕo2v`G;zB!o0b JU|nC YĎqU@t #GlKF5f(\ݥ^aYd,eR3nt- $p_"GIhR0 /!P $8د U }F,@V2L%@1FksN9 Wu!?;#D(”;l[d%+_>n?{?K=GN-69G:e{+ƥ]0ôy.ruhj7ybQW&76g12Lo&%{<;NwM2D\; '}jVSgfbZ@T\VO;W\$/f؈f^FJCU26( `&:@1 t2[?XD?RoygFO~ٱ'{pd —0ZciTjݝ`vX4SmJ쮩"jA ǒIv_Rcoi.ۏ )+4F`R¹o v[<[退;bS @VƑ86 m|_v4d]vت w!cIY8Ɔtiq\:x.vDvә>s9NN3Jq OѪg7~lyE1h9B4qr Pp9mɦ21H%FkiuX7BGP an ]'/"f0.&| 9Nj 󏛩h7/S8|Uc]5圉(A\$mh$0b7tIGT5F򠆲E;U=~a+٘Gl2``0$sΛ 39b%j4ɑ+`~㯫Uk;Vs A PlnnAhN[iя]EuUGn?d(ڷ4K߫҅>XĂ*(%[_Bzwd)LInB8̜G96'JgSZ@ c-`Z ]'JWQ <޾uK !*h@鳹1!>Ql":t D :)/=PYUY6門ٓkB?t^ȍ/ً =>S4'XMk%3bBl$KѻV- EźAJm7>,u;S,PUM-Ll&{ՊdsRFo+E (jɥBl<. @,zԩQҴb0f5ή=glJ4!ѤyŷSC˱Fk,O,J~4stքy|'眵F,U|2dmWuDg tIV K$46boؖ8*NҎnC f@iybƵ~,=),>f k7X&P8wj66Xٸ6ssSB[ysVrtw~=UQ{Œcٳ //VKh0CwdrJC_47/5_cX>ބZ$4Y$] Q+0TH'BWq^$BV92s7 n x5}DG`6CջUŠp&bj Sev".`/{Z(KuE>2ɿ"{nOCU݇N쪸?/ۏTfM v+_7.FJԁ꧘OpQ}ǕUZ"`[d%VcHc0N@U#OQ [Cə#\\Ϫw; "f?W[Ԟ_&M":ͣhswF~F{{ ? bHa1J28&݈`gb2Su&> ItnCA9?J>bR.B1m\~Tj|Ȑ<(8בR7?Wvy\WnLi4ʼ _JoRĽtkH0G ?LJ3p*":|#Lo ߶OLZ4hyB"LtݸmqRW#v yv4k+Nު;4ғ6}(dcHވOL)xF%N`?s.>0'*ldl!6Du"4%^*&Z-jj/.U:2X#.w M/A*.k]A&֬.9"g 1A{xLRN<2EޭFyۚσpXB 6ը2Ta'TYUpC t8~#2nnɐ>:KS.Q,_jO.g/'ǣ(ښJ)Bdu%B X2KD@N'R[5=ƬX"CŃw}A$ n]Vgqߨ48!ayFQe/H0fKl#)ya`짗@/Tl~r*D'&wVHrbդ<:jX+ѐnI@ WmfLnم,d=r&Qx2vw* FR4lũ}_˫ZO Jێ,c`k'_ P۞ 7O 4ž'a2Zڌ l[ۈ27ֺR 0>Gwm;O{-vnp֭!@Dt64B'q.>klMU>zM5fhQaܔe<׊ҀGw*={6Nue(YT0G hoqZ-zF vxvmُ }.a+iMOb;Gr:}MH;Wb,aY .ӏq=~xhQr<Ԁ+G5p\=.'LL,dC0EIwkLqu(χ!7o HToD~<@3ˣ⍨DR[tyZN_#4RL,]ɀ Damn yɨMz8ȶc+5 nda*_j#ߕBIKm:\v: N: ]?(E9otE+X0F05DwEh=LyZ_yn"DinNmhg j5Zvy ]A_-!xJ {%#0. v=|ߌ'auFT݈vK;<-k"[ݵb{Ck/Z?jgCRřIn9Q١\*v-K}8V;>{,1f3MָKߚ66ǖ r!a}> V.?J\yQj B]՞NmY3FͲWgߙ9%j'Z? X/934- ` aq;.bd%v,=Pۺpa3/DmЁ[)OV3ɞrzbhU~Xn4+sփX- ‹sR=V/1C rOѭ &*,d㫣@9`b$֞á׎NvcGgKSNf=2k sb*.ُTuIC{*݌ rI6>JpΫSe"Gdk;>X1- S@_MUC< cy^,ՖpԷ| MͥFcZѝV74eo|E3ওAv؝-:o$t?޽tBqXDyR")fC+ P! 5f|Kf)+[ Fh4JrJKɂ9#T C?7_qzXs׊qZSro]\]1Ũ'M(/6EZ@ʍRՉ'dTi[o8vQբ]mmTlFk`Lr_~WzQyic+GrTz0C.x-y%m+vs0ӴC"cdg"uۨDjEr M{ypBW86(= A^&.t91Nl?(r^9kRK(z}uaβW\G6`́(:j>/|q  3F'#ne@N5̃O9J](k)&bB\j}/sy x>04wUOLN-M}Dg/9OFDS8B~v`0f֗H*3Nga"nTP[zZjᴳWpۯA0X'gS4ݑ8dk[i~!G'V(deBNYrp j#--̤J}tJ^^U?+]2й&)z CG{&w/P0N}_ݖ"dv<^(Qb #8JT{hg4&VLx'i5ݱN@!%۶X|]Rsuid[Pҿ-PƎB~-65aN4 h*Xǂut[Y$ AwBU)n*>__VJp;^{ۨY0"Qʊ A> 9 Jz{nPicRJؔl3[, n@CSG;#6S\bx /Sf/:];Ǣgx-`GN+=j(َ RK_ 5 ;U0&ۍUi×T} țfTφ4YJK`ׇ =[ۊeaah!i3<Xc"$Jj,Ҽd2yް>4ox~,Pf pk9{kIz+#Q.m ;9'; y s^ #_Q "gߪPWh7mT,fZ#1/bZ=D?_d;-M#DezV;)ۊ9 c6 Œ[{7`}AI] ?n7sSA;69q-n{ha$wD} /t2?UT èV#EZjd8 խTwbϷh+!П Eͣ8kU[2'^Bp и0Cb4篆X*Ђ`G@{ogpbp+qM颞<[sDo@*zk攁Mcyø>"߯4(g(Γb2^u3O^aE)pbER1onC2hËk6~HeW+'eF_ug1k78#Γ%Qݡ=OE. :x(R̡݊J&w zGS IU^.WKݣ$xZ'b7䯈:8m+357//(EP~5w[&2H4mQN_ \]{o40ܨmk01_ø/..O5n~){2i=EMJWj\QL/1 h11q"sf9dM{uEm{wl5 ǫ9_&*J?Dw*]V38˫q#pR;#ARJāFCR?<&yat]Ʃ|#QAE|s-$ײJ$G3@$ko$Wp]ȆREl:GHk[ᔡd;J kCaP0,!#½E~H?K!+a6@ҍ#Q_#jSvom_ E-kwc'C gYҡ>bc crvLZ5X43"w4/Z԰ց.6:)ɁWlQ#jC2*uBH᳗g_+ Ns?YV~he4㭐$u{!G5>Oyx^*O `熂x b⊿ViiUܛYM9] )p }Kx+oqO]E!~`BvzYJbU6k7-yu=w5&/ .j g%c^7le^'/8]Cgؽe骥`IVDf"Gbeegk\(5jX|?e\ 6+6Hp/*2LN& 5ǍAym{gzjŗup"cgIIUKjY_ٲVzmMH$)Y@t-w&:SM[җ3{Z? :$Oإ*  =T"^_F@VQpZסԭ`;ĀACy:#o' +%^[YI+gU#iܫбA0Z],qObIVoRo@ Ci͇Fk/$k2e!@4u Su|´1p!SC)E8,vfG9lGmx"!=LB*d hbQVG2ЙB4?xe78%g 'e}Bul̕ú'!*10G1̸ a߫ǭYaӼVvfD/n j:B  Y P* ,O>xN\WOQC:\%+1ImdpsQ%µ2 =43cdҀ0VFpW[2 qe$MxEPF8J.OkOpTY^9ϰ+LHEoޛsnEN56M|ޫK F@uG Fe)q_}7.=ܞ)`7*a'ejET?jRL͉/N`Z \ >W/p9ߪ^X?[^ҽ dX2lӟJ*{,kFS,j[ճOG̴YWCL$SžOmrҴ~/pJ{&ZA?7ifLFN!fjUn6E$TD L?׻C[ar@=q=wT9J)z -uf/zNbT6* C?pU8؋-v3ѶNzM6ʽO&F-"A(^RMy-X!rqA Bh4d71i8jqڣ f۽&G A _[S0>=g Ns .u}uES[eBqMP5 K*ĝ ~`~:ө԰-OdE˞W"gb#Rc*꯰N6ߘwQp;c2r=WVy}4Y#`b]XݾCLcsX٥_FfP +TjYW^3ad)k˹XҀNv~:ӉHf1k`WFN$A98Ī4o6O]Rl(*t {Y&ppцq$*~m Dn*B2Zgflw!{Io`C(Z]znbY> YׯM[v$Ip:y=])1ݏj$Hl.fxڱ2#C>,)= OMgǵ7^R4ߙ:czy=XG09);f_Wt}a?K31zN? I}TM%`ǔq ЅhثN>ʔ`ltYcAƞ W#,i8Į:glnSy^ 3b]/Y*:~Xr8 ÇiTcq%R.#2 OeF\Vthɐ&IdO1{WuoT|$n.ZmuYjPӻ#vA0pS*fwud@NTŚHؖ1n˅#1q)<Jm]]v>3`gaF14(tȉؖ5l>7zp컟ny '^{w;-rxšS {,ghoK~6wW&qCX ٥3du[#䰔b T9&l&>3nQ`'aKFʄ$^_G* nude!X yxJb=o=5=큺`bm_8FD}2Vxcis Qwr\P83k 2j}֝3xAXJ aⓈPJ %R^2)"7 DKWyU[۲?UP'H.97IdpCyg7ڭRagLSN;{:'L՞UycaG]e+65yų}ɠqЦ:"F|  5qFc^W!/m۪3S*62ib*KCɀz9j퐸tumygևjL=n}d VQd*Eiptػ`jH;yiD^ld}<^GнE52Vy5k &;IfifF#|\w{8,Txm"9B#w Dx{MbL-ĽbenGx 1J!3'h'HB5> 0,P 틘pPw{lWs#x% 1mV W74aR }/m9lw˽d#>:=tp1voyO(Ns 5:o־XY ٓe %OiGL㥷;U:fKIB..#?GcUmIe8 YЩ+ՖeAw2L,ʍ-g+Ù跏cv4g#ý&X,H{%tԅb@*olh$21M9qXW!wO`#./Io$ȝmL\whWM8W_ro̐iK+fIy^SG )kd+Gͮ0>RGtR#YԊ*c s8&f/ELD~ h 7.숔89 ].x%W PXժr9{ ~t%WGwxn`uȻL4ya'.=ZIr{?OaqZYhtϏ݈e6C?5ENRtR!1ks-83=yM| S vKIG#@ wSl&FǞk" kV?m/ X1&x$Q3cy3` ),4xs0BNJnqڤrez:;\;K:aM|*f6V?X='] 1K-z,{M3Uw~jAϣLPx7wҀU([/hj 7f!eyW>-o2D"F{r% =x!mzâ>`ߢVX-2V-}hEӻ}T%gKLwq_ iiM8WNYb , %0{f;GWVP/FO̒m.G 8&C*?<ZcuY=DMr9$=Q3I_'k>0ػd=`Yt8ͭ@/auP4Nu.Y3P\.)y wڱ6-H = )Tw &]eR{*JΣnHNMeR< 2?`My'-"o[* @+e E*M,.\cUR 1AM₊Y S@l.(G \$;e+L/4&V,1R.$؏#W(d@v7֎ԇ"SkmeG M/YØ TͥЛvH\cyGTpK[ǽ 2!p8%p9/A;ТUE5M^g^vQTݒ,@ +1[$qA|d?5^}ԮӻFS»˞*~ϵ(J}>> ):\㼍/IQ?)w,j׸E(SsUNJu9$e3qԺEQ*\ "V+_a}2ׂ/1VM?JN}K+?".xa9 7kw F?pg%~n]zG^B҄iJ-߶  7qM*V~lwi~Wc[y^p?d۹_cO_/Bte2 }!jJeX TLlTrT -pnQzgb*,ioFnWQ(?B5]9MOmܡZz.?OU\ϠWdzd6wtJ!#?9#+6-=JକK|%{sjtj13h&Ra2&a7a755f@uLgRV.(ʯ|୲̋VϯLCb~>kE?P =vf)5"]u\a:*5yZ79G\|JZKs`ׅdBQ3 oAoWAoƣ@g Gh Q'HE,XTѠF}*ϒfr*(RZ) LK Sh 1> \?LP/fd+o ˔^[ҡhB~Lmk&0$ݳϕ5ʑI4b "w hɺ M_ۮQHI Z,??(j/ -Q>5]vz!*] FHО%iUզNkngi9bcy6ۡke1|y*@և(:V\0$+4%K)%̰nZv:C3MEm9>\z4"lQ Y\l0t轌fM^O3ܪQqz~p#$lW0W@Ң9tXg$~M}#`ՙ,cHh8]]-nOׅҏ < m1iX:VXmRQċ"b !hfr TTg ~4m@,7wdF7hDn(렅D Θq\(_CEknĀэջ">Ͼқ΋V!:xhFd΀JzuaTA1_֯&gl`EERd 4/Ji)-_ UyաgdVh7IݙF/v k.ǽFcOEp SwT (jX>Ð܌P“}}|[ݬ ?[:m~mPA=+0P%V Xeey<YSMnOB3Δh]wJ+Yp-QWv4O  ,gS%xV[ɁY+yai!_,:מљK\% : V њ+:ݍt!`Ef#M9lQ:̼/l|g4fdM XMS֬A%ͣΡ{.hD?ѳ ̵E^ү9~q찠狫.M 9GS M*XG8uWvW'?z/5rS <={"U&t{|nL՝$ФЋar#ᵖbHzioF? M ]6bh+p +-$_q/sPHuOZ] gl!KYJl\ vlut$+^/NMB?%yb(+ϘDQ?gD8n PJd%PD/<Ἴ&/qQ R&Nts˶>4jPMJhxƵBNA<Id˟BI" ~p\tTD6|P6\'繍(7aieb^'ϟ i׸UEO˯lI2"t *)GBZ0+Leb$M^nV2FY{A;d5<JgVH"!S 4ȼy@ÂOif"(al%{.a܏UEJB> ]O_Ia:Yt)pXj*.dyU%B *O4a1$ȭzPMMnςiv߫;cUqn;#g;6wŽ/-x a7ަ8:k%KO?)Jڎ'W[?iǃk߹"1<lc۵|tC y%YZ+(wt;p>ѿ$b:,.2rwClH]d)JS<*7V/%sŌ\sHf7G5箆8JvP9U]eE)%7jX(Uog ?/ӪR"#ۂ-U52..H 4rN:6dz񮹼k~֛OS2`+3l/ze3ʳ~' $-:e[kQNÝP`B3KߤBzHs4ӥVN՗b~ߞ F>G.e;6\%<lߜi B~@n# {:ބQ,+:9j~!~ HPO}\["rׂ̼}7Ÿ.z1>T;p&\!;fbt Y ~Iƛkȼ"*}4mp=mԗ(0vvdTѧ8'%dq%0$ kCt6hw(^c )2weHҋ(7NYh`*`M ~oB`KCdutf ׍xkRG,Wa+P H_d(~FuA008o&w>K6d<%4Jm?d۞*5޲ _60X/? ]m,V >]1ޱf 68t! |ۅrV];Ҫ!퓺seF8VyPm &p~0@8te tPݧXEO&R?m ŭ_ Nm31쩛|¿8Z|*ḛ2ȱ@`Cڝ%V}XQ8޾o˳,ŧږ79Ѻ@ԨJn(C4l/&{I %b\@,%@7>dEo>džeT0yXeMvEidAd?7jROEXj^8rd5>K nFj[oqLcytbއ~=2tilg0$nTbŽCS8 x7h}D_K)UUo|MN]{KvH ?Tc1(,(Y7;tHf-]݋OBGjcLǧ]1zd:Cpq #H F,禐 'QYF>:H&/.f\(RN.ڃ'5tE[BV\{:^ah>e ߶Ϋ/ mp+rtVLsm]-Qܴh7ΨOO߿yҨ̿&}*7^Au6U!GjigkVcFO h9MofʌJ]EAiW9<1WO:KY刹$PBpSWH#wH 0Lw؄Tvau9[αcvs4fkPQۇ,F& AJc"%"W'Z76dc DPI~|—8z\Gdu@OڷCzWtPEac2e G{?玹:SF'c!y %mŋ* 2u+@N{r t_U*bj'PR{O7@ƥa1$΄FSHHM2GkNBvSxU6>À8qp(s "4+0L0(&%&ɚsO6?0[kB%M (j̩bצwp$ :1$fD$ >q̮(w"9!mP ,0%0ah5#gLQgqp2 ئ@}=oW?MJQ^70E?Jp̋xC?0T%kP,?fLb~fx(J6/:TD/ ;|P. bV {_Ƈh!ܤ`S} ]䛣 bE'SʛbM/79˓qk1a&=,v?}fhh16|_D&p*,B9·->X?,/9ZU>~>WrL$zo6u-'C'9hB|B *ya3ʓT sUɃ ^|b~h}u,\9vxyJõ׳ Y.Y\]'GВ.5'sio%3җ##lCyU*_~DH 9@.ŝ⬄eE=Nqs)}nS&T~9e`Ä.`+t9u%!>U:Əў vdSQr䠮aKXFUgMQC, T߮) K jԜSzűv9 pYuXmİje@DC\ay65K,}hs` 0fP=FS]B;Xk*AxT Ѐ\CM<"z^ΓPMkiCU҉+WL~`"g&!x BO߅ u <wV\],F1uDi*E )FS|ضJy  onyC= F:sOVq|7_n@9#d ?`]~?5tWAyHA%}e|¤JfcvcaڹV*uZUke=[%1iS|`ss_ɪۮSHu82C8Oo틕n58 !uKd Uty¿/'Z²Eos@ Lkl#灹/`~LģɠJ;,6h2-b\f3>vҤ6~^i(1L4&lr"kq rDNejUhQAQu_T:\>Ia!rU9UyLݔpʁ[ue_V[<'Gr~ s(4@])zjdInH!LdxEUC)tRPUkhuyHfv].Wκ\uƸ3O9<~cX)!37e7~kk+޾#WX\'^ Kg>L )޸[dKxzwK>D ;ᲳX7 -kq=36[꓋6Mbj6׭%s ѣq y5fh1?\]k$.AWsGjtOҩ9֕Qݙ5Q RM@ W^*O "H<41S30,SlBlY,*LHx\|ZV&\]h7̍7:9k%4ͿwRp%$?(}sShGRzcs8z;6d&Re@)0?]kGuI,!!Ju.BzX><rOA7:< Hx.VB~}\V"] qMr g}d5cj?Ug<+ 3˗SNbTDs9jLC&Dxl6W| QTdT0!nW|38NAr@+Ku[+GrSVQ;`p]Iqњ4rZ1ԓ` Y 8 f@s{-4Yd!|i>UkzQd~\C4?P.[AJٔhF?:: tܥ8d8yR ?Zл;%q7̥oP)W+*ZXZkN@ΉUT7 YOP=Vbk`O. DzѶ{eScߪ5/K/5zsF0t?h&W2d=9׊A9' T" zVG{rhRfO.ߧbB@IYSϞB`'@qzed2'L1^^a $D N߽SooHylTÚBrL;64 ul2)2O Ԫ^_o?۷>^>R. S}V$FS/HOp Ѡ|^D $y-}жc6f3On,9}R. Z|N9[.|;8 )++'xς !|^ǪWҩ,<9SK. TtIzORT- &238X"ݾNz$x Q'J$ȮZ:**JWj~C[5&U殪"Kh&*fݤ!1aA\5ܕP15]@RH JsCսfw ;s^Li0Z /K"ק,N.rybbAZ .ME߈!8.q~4.E&'e=ד&1at7|05T2"9%:G} Ji6)r@ __Dt\sھ?ȽBF ͙ˌ`%>0& [kWz?v{#+Eomv?dB¶].zQ/,F.d48H<8^ēw 4ӓݚYtSb,kchԯՍ{٠Y凅y+ '_mdXRtFmzJ~ƬMS/7}?}lR0 9IzY&Ow0!xK{IF-XʉS S=09"T\uHZs׾7 +|R t]yZFZ.>nNƯ$OBs%"=Ow1]FS'ªn>Ө>iC |& w4BEذ >rʷݻ$Y+hJӍ10ޜe)Y:cwPO8+&Z#~+~((Ku;l:DGў() ϭrCx]DnSN1SqKhllabwszW-$9_bۖa2pZW;Tu6]XOP(~h?tϲ@gxyWC,v2L>iHiaa#\Pj*y,r JzB7 ə&N ]lMIg" :#˄ǒT c;*|S`r% ")n)3=B-j4_Lgj]_>K/'[YOo+UW6DNvcwcc^B$&C+kMn˂FRIqa$uBWr<&' ZKpW0I 6&?s-VZZ/a?ܯg*B{2j!nb/+'rm[{~q" Px+p[R;BcOuXE< bsP`"giK?f {8'YMFgr炆ZZ!5t "tE1X]LuBy;K-̻ݴ&[: AԹ H>V<{]56ZWO~Wr;/ Q96iƠ®ˡNnaf+qu XbxM[,nbpd:nEjt(];@Xpe h|84%j(#"oVԄc/tb߶ (. iua݊p򎏰ͮ%{_V9iӸ8<04 %ʹFz=/>9ɷȬU, Y'f+d"[?D⚣O/[f:P{`˅dig+Tڑǐ1J]F%xdP˟ ©ZƘ%j-(zw k"H'񥦉WEjy} 2DN iLKFs2`kVǡ۟Os7XEbm_Rض&݊N]`E4O;̟ŹASl/mfaѿFMRWRz&z#ICbZSÉo^Z90g92>R2;Yk?2ly]49Q5eyإmpa6\Sr PAJQgU=ȲP1׬}E 5}wpe ~Bt\^4\+̪:{&!ޭRO2JjXCho*pt)~gQ !OiO+mѤkE-A)DְWVmZIn"a>{T59AKVq y0%M;B Р>}j7ey}g:᜾_fw G9v^;ȣU }6c4QisuL;Β2mS鿊9Y@떒UJ-%0GmV*5J_#ge$d/ Or|*<#+T(16iL4| UW(z1'˱ î+J.FĉufZ)+C=ӍC(Yȁܙyֱ%CVp왧 Ͷ@P+̇OEP=:Q0iT'H|< 5oQz"mzDg\~‰V5O6f+ܨgvsŚS6Q)6Qpepg & sbW13X+*/ԅҧDǭ)Dv$%.Y/ Xfv)8syNCSWL>T2iC u'hb3"d7SgE3cUH5yjx4eE>R<|.]iafy;op9Iz|fP -1,r9z=ef=fpQ8b!U,M 0J|c)%EEt ˤk^;O d]=2iM:8F ! k!|(,,*¤w,@oV%1^Oou6Ӻĕbll2@ttS #^8-i<*:{ KKCh!SRͶɛp@ *R}⩶cA՜݂\og683W+yb:hBkS(Vᥴ\58~I8#Kd6r%u:QMJ̉Ţ(qy:r q81ӍR:fK?k.Xd1I? JDӋ`\8*X~ s`Wg Kj>4l;x봱 G9}=R5 j,yl-۴9EN?SNQHczHk#X$N,.QО?{ؐrM+L O7r_ɃN "p5S8 0hR8^Ct-Ŧ&{Lߕ4fR#1 /Vzc,~0ZkFǼݰ'?\ /s#׹-m }G B0&݄5l[A1KLYذL)[ =Nʒ@Ĭ{o魲 /~~|S M6e+˹,ӂmfz∸%X@܃NHSNpK!v4l(B#35ݙA*cGp٩ r\^#h<קS}Gsc}‫kR,P}?sGS+<{,ShWϽ.81ݨc.%ze'kЪU: ЀE)bf'+.YhqzT1<҃h(R'_b#,(|ɔa,=0~0Ib1 (<52[5%zTGgUpDv埭 RYNGMA㩀_i5_tc-["NH5 DŽקX],zcLmMI%8jizz'pBEJ>o3oRx5"4,?Y.2z.bw+EuYolҽKs>Fj.9<9zRR9Li4o ߲ڙbABEWVYs;ppDTfnyOan@H-44L߮DѴ Y zkZT _0,CbYRȝł!F8$N+Z.:"y V]9mLQ̤=`͝]v#7& r//۬R90 RJf~_P,o`oxUad;VVu8.ؼyvc#qDo:Pv'l pZ\<;dy]XsMWѻ] k_}G63n|2|Zͯ:$JTFN2Wx?Fa:kU0n@,^Hzr!E(#uBs5Gݟ6[E\q|!M:?ɸ^& Č2UƼG&ƍ֧6a9Vr<.xOYwXMz.&:9ɸEWO㦸12 ɭL EW*+em4%S~α_/+lT~9E-6ȾƋfg֖(NsiH D~T5gݕbHptQ;GϵXi6" )G٩ \PLڈ-&|f}e$2 0B `kI|TJWw Q7WZ>#Ho?orWU֑h ]Bh>:~]_b.BnLblz@Jw2-.0FkieD˟F]LykNS 9 -yHfNrݷDԡ.HFJ!9/d Ԭ-$qkCxhk|dl_+4EځH&`\+YL6PUSt@(7PVa/L懮"٫њbDeg!SNGQ#"}ћ)r IuSXMO  gEc۲GLhk[4&\.nTD ,7*Ey_(3^Z*KWF&$ifwLZ=NAa{7g\=AǓX|^)PTYr| yx+e{v*e|Szlm K220 AU#Qt\7 mpb $7Đ6m}[KJ,Eb&DD1ՒZq3t:9B} y$y:K>nSgiv 2dH4R2mcٜNjhQ fp3ņA1)B^` ykEޟ,w/imha1va ٿrQ*,",>Qwv\D/|E|`4M#+*ZT7FNW~X -e``rbpA")NPۗ'v%|kqz%L$`<+v+Ǧ>hkhN66x fAEH:ؒ!dKE>"c ne U.,#NJT83G!iؤK\na%Sd *Mo!緝tiN%{$˶ m]tUc-Ob_ͧkjKf̂$ft$b-m''tꜵgXݱ"=lb<$4:>2PM };*>5]uXK ?aSD=f"Ѕxv >G>;ac5zSS[ddgGJ(b"sj,E.5|}-|t(SK+!_88%gŇȩcb0}A?S 6b88}")Ur2Ftܜyzw ;IA3:Qu"1vIt]Gt1sHbgĂ'o@}-uG_JmX>9UD=o}Am]/ZTSc_~~ܡANܓZϡ13)8D<qaQ FUٿE72HE-d?#-&y*ОGB :_Y!Ԙ 9D?%HA'4b `0CI=p!!<v<޹'edŴa ~H2J Hk^ׇl~ Ȗˌ{VP;pA0dVL _d%s΁p5)zR6(w׾$*t+R5Z]Cr0+'7cP/X*kyI\q4Ax)߬R^ iW"ӌKcjBj5N['d6ֹ=u8Ca~]B(/7J€pA]4ќѺU#mVc; ;% .pյozuxR$V2*#.QV1^[IP/o'.hyI8T:r71D xL'ՑTg% Nk#9iN~e,ę= 6@~U@eV WM9Q7/`tSYxj[&UPY iSwc'Z|6.fu /KCbTkwF8Yxp!lgvVִ jm,{S榺˳7!2W&zb* c,,&~)jEqW"0w[](X~TS{%]3v00|q␡Z^oEC; ($8EA+=婡0I6hQN`')Ө_INܢiE~*wK-rD&#~R{ccx#}"@i'D_;f~R5D+0 Qq**[)zK؇VG蘔iwv#酼Mps9ŏ~C:Jo[!T˽Qb +AmbDvBI1;%;+fuJY҄qk!] bxKS834)#aY50~Ȟ # Ԇ`lt n㈶jsQKu|^6| y5ᤶWď@[:˘^dJ=><#.ţיȅ:NDfrv9?1;b3؅:.I [/'UW De6S0;|m8oh0gg|'TY4~<>"EPWnJ6`A8=.[T b}ӈ(@(]r0Dwz_@'% fϫ,w?_S(sj156ײߞ*h]]fzk5nY uVU q)_Mk/G?{76'䊀4lo[!KIT_7>KhXOwaZs0D סզrt\pðW` j' ӗ\=qMJFFQ29Vxb; i6T͞eiZHG_"˸)Ė^O݁^ (M?.ڤ2:)A'$OLo5wq&7h&9[Lꂔ3)3v;Ȣܡ΢ϝFy yuI`ȿQ(fx.KZ$>Z#EqiffXm<|IEz`Įs(a7)()z/K+3Eȴ/ƒ} @^qg01&L"fy% WΏDֱ܇2bZ0iG=q XzV}8uD80ѻ Mnя XbW 4YY{1I=q3sD(mˬ0:gX/< e5Ln&^~n䮺Xue bI俸6H2gz0W a {;,j ⬫SmxQCFY"WL%F$'(6cxЁ@J K38תaXf#eR߇[.TD W)S @JVt֛C0Ru(x_3o1Slt6ñz`Q%"J <۪޳J!=Ie4MjK$2c [{S&-K,F<9,v=PW)olK.L/\&s`0NG>rd)O’IÎ<r~([ը \#m<雇ZxxnghOz8 %q7O V5{S6EQENfT 2}C ja5)nOf}kPβ̼S}/*W'dJ_OMПBbZ\RcbLt&};S%.k*BF<,oY5B7tFڴ>*:Q:pCKt2PP(ugΦ$ ӷnc xC|ySu* !esb}U U $;ӿHU*KH" }Lk٦-DG{@~7 ~DV09 zBFM| jz& W.Y~ٌv\mږ_9wY YW0Dޮ:%pݪI|A6/#.2qf@}&Ӕ.dD]F'aNI΀t\> + zwO'W熸+q{g˜W¡qtĬ"=f%Obuj6< 3 k k-Cō n`1 }5Hː;j=EV馟9LKom1Ѱs1ſut`xriSWwڀw@#A؈s$ lqxm`}Xϓry#kF=؅YvC0PIc`s7{?&ELC7ܑݻD_uOVB :߾#QZ"gKϒWrGra"*..c >%& F[l-Y Df"۝e[;xPz:,d19G"u6nGV~Kks|pPW^{f=f*<oDܳy} +q>A?Km]vs3 HDP-TsHv6 ݦ9F{F Yː&Vh=rO ] pIE ]etSa%4F64kѮ/V'[K?x~5u?Eh@w;l /cwM6Slځ]HGK2#Ӗb+F SA/~a9b|\y0Sp0Dz.4g\񔗽ā9gk"qVj8&F= %} 8KCw},7IcQQ2$_O*=}~'l)"Vl@1U sM5;[6RڰJEd+ (7z*/n-2;'&Tm;u,~!8ñк!!M\PVN/ڄQP] N8?N`ф"Lm bISzqÎQ7Nʄq`KM'E) tธXL|4/ v#M߿W&QoR{г3A5c 'b}ӃJ>24EVJ--1K5!Zs ;I{3'FDqP+O~*0̒ ˓WJstY w IuA)tHM+hs{dR[5}U`gl ?˴c8e܄XvMj+bG>Pݪ<Yg]țb Ю^%̣{-%)p_9?˓#hLH&PMRr"H7f0 D\}es,9N_ŵ|HQTԂ(3,O sq+ ø-Pmm: }p$BkGJ&Coy(q>ɧ ^Xʠ>ZL<y"KJ@HfAf3:}"R'.3Mu)' ͲRUJ5t(~*S`N4E*tԾ Nt}xN-+,fb - &p~\x^Pg)GzJp>^'ˢ/B% WrO;QT'KZ kvT|}[?.*< M*L%d]=4Ֆ9\β1}VxLLG]ܸ+{GJ3Ql,CzJWAx!:F1w1BVB"U[dZ&kkމ&oZx_fi 54#Q(mF)8&G(qM14הV2jsICE`WEs2uHФwá.Cx=bR>s8-(KcLABc8 Є̧7[J]M@rCWɰυj2k!n+fl(I*IIݗ 9/puqk{́Q 5us ֧/-2u{.a;ݼq;l z])Yq1-4džH5 't*+1m& ٽ22ij*n6Őci)g;/QȠP7) X@ O;%PկGs"D'⁙[iM "Y}ymÕv4!02=/ fYciM53:ᆛ?[&>~*oLޭ!&)o栙DŒT2jF/MбXt:!RGDl|2~ۺH2E'0Є#؁wO]zj˞U%{lVb\O;UN\eDP8ME/']l/`/}S~WwTrjv S pЀOv-uhұ\(.M\ j`UBgYf[.A>㼲nU+ %vAsVh?LZd}6Lۺ<րip ^ h ۀy?$RY#j T.iS?MBnl$I;-P-F S]^(&2 A(ºIqF=N W[@Ѳn@~bEjz+haUԳmϞj :OX'܄1 ȊnZQjn/_G% y}\?_2O*k=9ae9IzœfչEJy`'S*(V&ԙ?M Էѕ 0z"eﲩ2Eiʹ&62,&⡵Hᖺoτ$z\TH/< ۤ) _Ve-[EWyUJ)Od~B\odv?:D ʙ-4T"ˍu{ZN@m 4U2+E[Vz"Ww*c&%[>ndxn`K ]H+O0/7PlZ0wՊ/~45boVݰ̉:mr6a #Upt%)+ DRR|YYyr´ͷ:+"ʢ3u\NXE[bceԘ~hp:NYHa[g@ŤƭC` wcFoN&u*`D'Yq+Χ܀m@m_kίVB>3߿&'pˀ5bgx&`!2m/tT A쾭(@/硍a=aIw~iqGRup.a:Œ21o/Pf7qb =\)'`g1zDwa}v޼B+S3_QsxvMm/N$dr܆Jp3\;J8 yvcUpʿ<+VJU^إ 9 ypMNLeQqD3vIG+Zz6z =hLa_udd/ GeQX5O [iᏑK0皉Тo Z MFS%M9,O]rWIl| f|(s8;:I8zjKѲ<χ8hK姶{->y2B5JWEaT!4Uȃ6⟧8ZMQ +#G- G|"Y h`~K=3\|1Ca:uIL3zPf؝>,ffIp->+J"Xn9/<Ȃ0BɞCĪXkv9o-uq1|p/+\m_v?h!r{:A*Mk\j$NN%mJK~ϐ m)(+ilC!%[qM 亶54 ޗ0i4x _BʝbʮOZHxo4ŧ8x-qmUUd4n4$ueS#<)o|#}R/_I[w犦Y57\2 O޾ P~7>Xʬ:Y^vmx M*7;8d&>Co񅊕Is(a֌qC^j! ʘ+)R%W_=bT7=)h h. yi~Ѡڍ$ٰVŐ;1QY=2jAVLF/2l-hQ2!@R>JǢΚP4Pd7m9rw>{h]MGL[!gx){ 82vX4"\&?_8{ph =kE"=#qN Mci=:2u 6NVwyOwj@Qe4 <5 g)?T *|ʗ- fv:MmI)(J֍j1#Z\n`@*Pg C~W<{Z_Pt ƙ#^e3;[g_$kho=`MMwm|}j@%wϥG|K '!Q ztyϷ3a6ʴ{Ue^M  ߯]S+ȫ4^ 5&wJq^>h=HnJOR)A¢qB/ عzWY=DDҵ4ٔu3 ]Dck.8 y'-c+~ۚ" X$BT(%hSNz/0ZF/7T6ǹI3 +./y!HvbB?{,n#h~FI<%)e'ܯi,Jp{$߶}&ks,.ОF0C%3{ԹvI>)b8(˻UʋDKǿs&G@ Pb6'8-&m~ & O;AtN՞w\4|Dե`Xs!}L I 6jgD$X<}>GesUjZ(\A'౫I1 ^~> oCo}ӄ\yfxXx| vEO M9{m" Ip27J_y z;8*rYxwAutFn:y3p=v5*9+IFuv5!} GF#;7A{3 #TzT->֒ѡ-\8$1K-%R9XaY/lõ І룚IPn%S4Wgj, JDOS3{ g.nm_'yݑWhB | V'?lvL]0֐?B=ZSȃ6~`#ei[gR[ߐ+ (eTRh4Ρ5OQ5AuXaFrnWXm'd3RQ6ˎuO2B ,O&B fXz*V7} "ȷ{HԽM,;w2FOޥY̸3y⃵,k}@ADI=\ W7{Zɠߔ{#Q2a$F +DoS2Eo\ J'6El`ξ 21URG O%cᲘ& 4jWzzΫj!q"Ҥ? 8+7XsހO dV#i9i 'ZSr>%voNȥY`hSo[4OA%"t¨Сd1];Mjt7* 睞6qEʴuN9Oȿd%ScF[R踙;SKӂύRպ~l4t קdtQMu0 jȃ!k~d[a+E)#:ɼQ< @罜i 3A@#nMOY H@XL3 u[gtK`՚-߻}Z]pG9 #Elg5be]yvdÎ` &_?f٪άcrjLl }wp0ߡ'ԞgWYz2R&Wvܡ*ΞG2@y?̜硋;O*wq˟NmE3]% ż "_p4uf,Xovnٶǿ¨^!Gθθ@m~;$؍#.Ť{cKI;C MfwS^iA&DZ| C,H^^AT3ЛvZwO. +y\x] `~WGgh^ \y6ۏuxw?ai?,93B2=5w>-O Hc!"Yzt-w π tֽlq e#@ -} jtaPF5ΡjoW?4DU``ZoV{*vQ?˶,Dc;(w~8qY;DAqo2:\MsL0>KP)2>rL*R`s(ob? If:Q\o']I:H6slEw )2P{/0w1n9.{Xנ"1 ۛ`R /"i%!ڔSgzk6,:o\˹`⮳)BCy2j'RL (#c^SɪHߎǃZgzs[4 \!fe<rT>SUJhDfLdY0Ϯm!RO[@Seu+YѿWIHєS-seQqs0T_Pp|SJ1; TLyU}~&)!14}q9 O]8|hƐ9"h ďEO?nWU4\Nh˜~Xܓg9l\ D2`rlvnH4qRp~D/5uvK jPqLXWn`9 FNJ~Jx{T$Rk@C2-W903dM}`.Pqy)F7?dǷ"]V%1@7ے/" .)7Iaq6s7cQm_p9R[O?'?M]W&cPrv'q1".t 6R*6}[6`'Gx\GuS ]eW(a|Uߗw} EMR_ JXKYkiWE4 g'?''`kk >yNvƯ>V}{j>~w792>2fGh'8,_tz,!"ǬC ǒ`j+4~g9."$+vn EJ- ];)4T/(T;#;?>gW_$¢jj5G0j# KsQ2PV@fSC *l|D]M. P+tItc 3/>@xW6ԌEA 0O;fmΝqA?)H~̊?Fb\28RJ;Tv9(]*d2mE>BhWnܵ8ZVпhJ!> X&FRɝV%*yO6 ֍VGRCowG'aGWkF1[%<>/6'ro/YO`eCGukrLq )"+㗦yi{mB `ù{,l,\SL((~<3`(,t(<6 Cq"ǏZ7W7&VէȲij>iɛbŧYV}(/>o7Ӓmdž,f_vI Q ZGb-TCU6=#!TU GL -[]Z@ު\Q#рFm1`[MƟ~8X: : ^[AZ=s/OVr| zu7ID<z Xc["j,YIZ`k6_OVSzRE}jClc Dpzh!ӂuw3A}e9m>w?M/9Jન0EƽvnPIk h= pmfS V-L)R_z/8\lxWݥ=%\dI8w:dh~k”yFUa0Q-jL$`IeRt${ $>F'TH k#(JӣwjMjF_e `;0Z螚 _ժ~vA_ZM߯cV?y70`!6U}tZ+=\-tEwl=:I9%DNH̩Ju@#|%+-4pJ=c kukR\n i:IDϙsݖr$ܒjy)sD+I`CI*;Pc*pQ({QevCXA@sUȭᕔ?[LЂw\BLh" ,}5j$/4E   @ P9'O^!U2JBÈ6(ʋO|?" :>9t4Elhdp# g"ۂ/3N,RZ> }qղQa ;EZ])<Sc4 =^ F_9J Gd%MM`Gnnca O _q؃V`,lbVOv:;9[4yTvy s|+ F]mZx Ӫ#;#D'^1i}|~%ċ&\Qm &|H`DY 0bpUJ- ֽȗ}lZrw☄Dx wE(LyZZU||3Puh#XɇavOk083!Vr:?yPUjqmҌGѣ>$۷9|f$L23_z\wrr'3Z"lMᇌ{zx"Cz>x3)\>dƲ`>{ßfbMLld`[Q'xdJli3J9]"o95!~jċo WCu0HsnFzq}8rK8c`[8`=^Sjn:zMԩv~4_"+h:9-lm4o)/ct,bbthG5ÝI1NNg6RjK\KfMA"2 G/ƻM`&&ꨒ$i?*|fy J=i Cn&& q$yi;M): mTNOEJiT|-R:d3j&LN}~ ҉p`Zpr;vaqU8ƐUrMS*j.n:M lCJJ,{3 b׋ SJ̮e:pɋUf2oa5֙C_pϰd|V6C\M`It .teφ ,҃;Yw{Y[Ks|q hVp-q;zZvxñuos-ܩE4qv" `",Mp 8Cvz :4&]:m3 'EV] USǗ_Φx#" J:RZ1ؠ0a*Ή i˅H̞4(3s t84.lX;D`0FXY3,dP H>`}T4A[GѧY] V *X`E"V22S?\Ebkˑqf:+6p+AhNi Oke:XW4EV$H]Z8F+$s̭ FR*tU b1_\5;V@B\Gsk-JdvD\uJ1qi'IZxvFEA{OSDVemG󊏉;bKיl5 ]eBҢukĽvGm•|q%&`5hƙ.j|J8zPͣamcQ@x@F^)4P񁹬@8l0k DDgOWT ]Hgj F4GFU'\SBFҒ똏ӗp…#'Z°1OFWGl'7z'"U*:g^p3 氠&qsp\aa IΊeAkW{hX &A&'$b3G)ro~MrB1e%d+K?$6K@fi?mT'pIa8 ^yAtG@ϣP ʔIv\J18&PĽ_Mxu_arϴ~эC+A][?½a!b{-@D*WHKΓ鐹tI%ih>l Կ&xД؝%8itf),v{QqBeKz7HAhFoT((s6MQX?Yf% TIc23;!H3~&p#GjC܂lB k7&%Ykz̙kVΞ̦Cgw&85̛Gf L] G#mH<5KV^+R~b,YoĎVhiӲԾw}oL|=Fv;;?5u@t.q_33N5BF 8u5ׂa k <*&:Qͅz ("9@.*˨] k]$b0v^EeF@ި,壯`^rL . t><WJ&3ȘkK( OWOU M3G|6 Ћx ǺG]`j,J#]_V7'aF|r|b*Pm!Lj`JPFX?u8dܡ[]:#@t }%Af(Ý;ŚH?jTgQZb"L] vv*ݖo0}!{o#cXmcjL9%7Ru"~0^XjҒۙ B;4pȒfO+ ߒT> ½m`.~~h=LkW{D,)x0aUo7p-mGs28@FH[i-פ""HBmަogIX˩!*~4 ,7" PV|p73_>D=&9G $CKYN4vG4j쫉SOa gzalwg\wNd n1i(Q=tߋap/5CW|AAiV%kt OxX)o363JE||Yq*?-yrs;I6Iիؐx0NصEG34hS.i>@H {E>gh"o.й90MphCZ6,a*$0#1l$Nځ=B_8 ;|n-oKRRvX2ܸ0fуO~@=s֦dώ q}XrYcyܘGIP љVbS >./Wa-4n^О<(^!AVaWN`k z ҽq`a=Ŷm0  )t磘x}$dmSw_~ҩ9Rܲo]7*+\ 6RPrmnCC_Oi7c mu9zvrFV*$l7\LLܹYU"1eH^IH,з, #w+!oo,/+Ssq#Ef^:tc4x7_CP*9<> o맩mijw<50paLlQo#a:/\4 aeFã QHk[{ʜAG;`Qs`nT0=fNnK\ẖr Tcc- l{Dk3ZP7a$tZ 7>U&E^n={*!2C)?Wq O\ 3.b)u~% ,9UCt|uÓuKH ]) >X&IⳔɂKs >Q-Jnr}ĺuo*X Lu@T{,GtD KǸ-2)fI5Λ|>^ C)}Fw܁ũڂq-2af0`b7 {>~8s堔\  5~R=Q)u5M#7HkMRA]HR푑HplvQGpX(^u:x.0{lmG(n4ggVPD#PRxfL#'YҕPg Bi2) !\am `<~!Z>尽TOȟlg)l(C#4iwL:ռ.d8*4MGD OŎ ,K]i{3q! 'vQ4,2Rv\0(+LGwlqw(,MϘVܝۍGƼ^0a2KJu{SAæ;תd`b{43sG6Fpa@<г:FݒIj ^N ;(b߄`h7 Y3x/~C W w?"ؽxU99nDKx<*m~ 'JTSm8U]cP)rQlyȁeK&hm_\{,:݁t#ndr>X͇J4|~5DNIml}s3D@3YIsS6zZOs#>S}c\|\4;fƗe{8!ZfE,}C. 4@غ9ĒC &^m9 FsVdM@Bq2(m 懤Ex P@ MZA9DBoku޲R Qg;+LJsdj%V:8g\1{O|NGexUY?a3ȌQP_p Zuhwzћ{֫Gy9c~r_AVU oOEu#zIFO4HG',&w0S{% FmhL,+zCt1܈(ePS-7'fSR#O+F:Q!<(@^@o_ xךcjV9Dޏ'ę '{rhbjɜr}bsygXIW^$aJњLI<5@o7nu,/Q|xC;`'{0Ș@KׯSH,uP5o5Ei}%wR"/U h-`k-/ bs+ܗ搣wcSIA7oh76pzs`~\ٌ+bJbrƳ@RmHJ zwvU-(M<7Cra/:Ҭ5`}tK !Zs?Dy ۘcJσs U70H뗏2zB^(^Ĭa~PMz ^N}IwR@uqpdFvw|:~ .bz21@0k ]:'ed͍}m~?#(^"Z0) x۾ /vJpR?"j^0qdď>Yl +UҖ*bf"A~!D'|q(eO^YT&ƚ@ܛ~@z(Gh!vaVGC _1)[أ}Y #T|ӉB-Mik.9`;xRnڼ!ZE:<) 發NnvD--VqUwM~FΓ  Ǽ|g6es%3VU+:yJEBIB .(MSsqakȄCzN^=$c+Ddgm4<+ﬠXG-݅$Jpx]Zǫ?3kA{-IX'h͕骋;[ x1|J1s?xz[tʑfaio򭌡 /WpM"ޤML2H~#?JgTõ\&օeI?GYMjnp/gW%cRp\0H0%;i"GA|">ՙ }<m}I}wO [ LˊVw+5?'FX4/3"TE6_Uks,UQϞ{Thped%kSf +g14eEda6 :jB[^VS%ÜAUf] 9?v9ٽ}@TxMV";,Buz1%mSLDqV  ar37NCư(̢y}(N"X&or5IgE =1RAxqLG4[b#t@w {Wa^5?쮎M_OJ[Rx2dgУNr=@A`n,Q4Q%QNn/!з"]!Y,_5ۡ^qF{&u bȣg?t\Yϯ3?QfC$ I(!5RcFx-,9pK| 3~F0DBȡܬ;p2X =Jř(3>ꪳ u3LR?^溫6w.Uw]a\𜟐/ KR5cj*EJ*)o:ixwJ#4 .#BX5EtFB#;o H4hYq9[7g 7ma7[j'+sdZhz?bɻKz %<' fhΪ 6LlI#c>v:M.:8tY>RpkL$TIAf,SA);6nF2hZ*@_kL?TȂp, ]}3ӃkHȍ qO'b%nB*Yl=ΌGq/ܸ\9oO#Na z֜.-a|9B9>r!CؾF$_oϊ}U{JMA**IG!;ٙᖯ Ճٌҕc~WPXu Ez&ci~_70b{{vjZ-uF?ݽLA=ɚ뾗2i:2_Ƈh2q6>TOD?3 p^ߦ@9][&2)>SJG9lg?=@jR%$I/^ЂwޙK gb\VO/#Ļ/fF Ѝ-OKdJ:gEt$cMp: 7,` ~ވ2MָLo:0zVh}!X%y30-Ȧ:R&'&*aM$m``Od|ǦF Bk綀ȵvMEJWV([u/Y*y R }#"Tn9AdT6[5˶*|cDQ72|H{~ei?@OP"1KȴrAykb3W* I6W_h_'Cggjhd\-;-ޝZ/I~~%%]7sMlħE39`LqK#W@s92LD$pY'hiz$5 aOija;wljcW~dMUpP #܂ 85;+.r^?[okpm;2n_[R[F_>KƹpN< 1얂,K|DY6Gq췧י`6YLp^Ar%hϿ<&V⥼g҇Jր$R"[ٟ`Fjpk9q-Yu1kFb.DVwG%=~p6GN焔D0r!|,*b?9cv>N?k6ziOu?D&0}a RrdLK~ʕ8)Zp^ ;ROȕP=0֩)$kdz nG#vAuc&?Kh7]voy,IP HVՕ:zt-rko eaE^uB%2)ﷄD$"6zA[a:DdEV0.FmN$mmTӬc~t0XSn'$W5ZfwM />Tִf=3訉芘$Xr7n U!53| rf Djg- =NO2dr,+ni;&:9'f#&4|6roX-%E_Ľ̖a%v<Ⱥq0aYU'J"zV Cu՝$O*jlu xbqOl=ZwRqng]ΖRL(0P # m"2UZe&W@FgbWgo/}M|zb;ZLFR8/ _|(wHbj3NB؎g8Z(>E,"*(&. $e1&3َaT2(W^7M3nScq'z"n,0G6ݕYe<[{"zRg @nST~yG syܠN E]Fs [xODwom%,K9ҸD +6pEtqt75e^<'`ß:n !*ǿA4|zZR. Ҙ $Zz|,-y_o :|z*Y$ iX)؅eˠ5:ϸ36Af?,[F\/r\o.Hټ6MͱfH)EuGӰpNk38FS /jV$geW$UnkZ4:^I~;&3lR$o\pϷPnvs#-@qսYv !cᘖ vl,)DZ|w򙆄QHL>}]akzfb>r\mD8f7"&jTF"bY-Ȼ^/ݷ2Dw }B~܁xbGjMyv5އ&QT?k>5+{f:' :U uվ&:&sBGts, `w< "+835T7S݉" nrBnSn5(M{ˢ?gU44] m}ߞ8h2F'Y@u-DdRֲ}-O¹ ԃt;i..B1Pcؑ|l o%8:ĉL/39J]rۀI.rbҷ?\hcOiirQP",,uN͘ǣĜ0hEq SVfM+Qp %ix.6=@(Bxd}[BPҶeQ~^iq0㘪Wm0xo9;)#0wA@;I%.vn zQ%DIԆMb:9j mtJ cζi.].XxK͑j~m3 Z?[ B{/punFv #CІ?Ƚit^wFrT )c mQzp z0vؽ4>'u  m 6GA|ƂՐ0a b?A O((aг@wg@S]ȶcnIS$MbHCH}kPԩoDuP- 5<8r޺a!ΤÉ* `^o6W~Z)n3A#s;hqu6aNGEW?P k}%&bK̥`_},QLYr<ؔxQ؁& lB#+SEs#]mu:#ޢcJ2v"NU~D% Pm? a Y ;.$3+ !qOɽ pv4zu1Ko Cx# cFyNe W:s>ZAsmtj-\D q(t +__q۲d ;pt!4s%|>`4L#06Klu)* ; }:Ux'`$UVd*YlS$IE^*qyDV4aɠau>=xlDg>Oͦ$+9E-C/s*^Rf7&D7p[K(\ vI]ݏ_zҸIR0Y;p(UlLrG_T:c G_ rY-c[Hڈ,x i:g-RmvY@R#VjzgfT(T/vG̺06lAM}o[[j %h{ &4(opPQt4gn;i?4bV(I8ZdF';L^xR:PW:ObKS96h9&JzDX[ªPGw!tF p|\sAe:7WC?ydulο9eG$u5ɗEEv₲KD?^fc|ʠOFK*L&M8.#H|#uy s-# .]gPεq%wЧZg`h&VPCnN;#\ 2b؎UxVx<]Wj)@X74 D"IhDBz'wiCY)Q3,?% eĺy*F]  TWAM(^%>iP" $NG׹ՓqVTFpWZmI7R#¸8AUd*,EX4_yn9 ]xPA{. g Vy9TC&TocJ8 ˈ7u=DWL}d衴; 2l)2B:? i=2i!.Ίvz4z @)zr"ֱ_Rrtn/YAZ7j2sw,E80N6$%fQÆb8X%Xc^3>mO`iD RX8x:m~&}GЍ4 h>sZpŶ.pӼ2 "7$4/hiv>JCvaM;OQJYPȀ$DLsP0Y+ wlDTr;-0+ Q/E`7}$м}r:e$ ef4X "LVNs pad 1k\U !>GGn{-ZTx=H#atnN\Z!G#Jtϝюq!L#$ʂ cmϞ`c?q}"@tIY,`jU4|K签I2 =IhޱA zOLaMS:0)+V3F:5\:ƈ(sທ! ,H/?׷LgQ5GMX,ȮH%-m|coh {_c益fs ~QfWE%nEdֶ9 D.T񅄅Z&u3Xkt8>Y*8w##j^U*8WzzX9y*+}˩".'dmmzKb+Ru@mս(J\Γq^IͨM#DU#E6yz@cn]MR_bJ*,W xU;|*%MkLVN[qxs_=)PrΙ|vd0KiúfU4O/g m pq乤geeinʙ8Q Kw*{ڡ_NXJA,pB۔ѳ&FHA*JLdb9_g lhr ͳ˼hidU_&y Ng"ImI{FbyZ!;k{\̺~A58lg,쨭ĝ,K;쑩mL{̦4x$i="z~jyu=Hi|&jژ+m8d: IE đA֫z>/1i7A[$& [u A6b~7Rd@1UvuEg}%3cL"N mq˥,L6;%pVl&dYɝ–}R1+lfdD|Fj׊EmxT\K;dwwk[k8| VԤ _r*=Gvt {XOJ@ۺc"PǽƎ7ĉcOlG&U=y>5pRIs 9Ogn(cc٩.iC'ޕ֚V,9k#΄I_YzOMHqL[ ȣ\ o4fK~Hh!GǓv>q8&nչe=wδRM14 y!gj@E!CZ1եf;|8T{ ~ԣUrSӕҝ6>_OoJ]}VO1ן2tȩN GX&Fߺ9)<1$K` ;(X^c^-9@5Y:^k,Kt`f D|w՘q.ov{W2z#%Kԋ R''WPq¯>"k <[R)=\bRt<L&Ag_.n(*-殟\u%uJXZgzKįIt> 6h\z"Ԫ8Yn+s E5?>''_aZX2b.}=gl$^ܮdV0'Ј,H|L$lo1mkTgo{xXRw8.XWwK-qg^!#ov5e۲3.z;uL3)ܕh5R젖}דڧ֧:m\,.RR&H@bz`WzV2$K4N0lS!8ʧ. M9Dq)V hBaUs5Y Ѫvљ ֱ{PxwzSuXBFƛ8[2G!8 HD换;>>"'ѓX< ZsR Z)&IyL+;U 3_^2=[tsH7$Ӡ^8pxl nGgä 9oȿ~J{H 3#hɸiMAfP*vwoy̥lxu?I J~L4 ł= | `~ #?=suMyIO:45gC`k+TC%cntVھF]raRdM*SIVWSɅih1@eUd"+ek0 @pm@R/83x%N>Y31^>0U`E%bva(J;}*FYxWW82R7yW? qrzZ9ވb}mM" W!PiMiH5)w;2 nG"m04t*O:`q`8L~QXS3̦ɣ-]dB)w{d FuFiI/ ؠד}ݐ3Z۾H }VHZ-ᕅL@.=}$yģFݻe}3*5v狖UgNIt*h& H.e-GGAՀ \$4bOҌiV,{R{`kǃdAx&|YenZ{R=hh>'dA}*}Zk T- 3Kՙ.'+owvW͓M9Ťa5pH O!G'u{uե ʄ4myNgj-5SU}Hҙ֗҃-4>NpF \.s&:Pb3iKs61x@;w|szڤ]} bV!UDP('cHFRdqd-D j.jm\VZo!w#W;SCJe+4P66K@.^,51OvGO:p!`2pR6"ի|A J$gQDn&#3؃/+,/5$=*6m}#,܌͆ N{։\aUQQJHG6]K9C c 47;SHP|(\sv&![6K|UǕlxՂn=V]Yb_ڞϕ}َ_NPTΓпel JRjNm~Iy,b}gAv1X[i{@kLHd7?6z%vy9^3:̉*e ut I2 N ^l͛cN" l/zL5G $6P$2p-N~Q@-#=`]:+*jzBq:d@*SWl@ lzyCkڰ w>.V:]茵vaƚ]eLg Qv=#ϙ :t?:Ʊ+\jfA]gyɫvWS-GJ_aO%Y9~tmS;)#ZoBV?/W-ZByj TJlDv'E-ԑSg3j!W`umKvty){2ť2uKtB]-#(ipgҔQkP(OSYVp!5\q5P0] c:JR }L m1חmڑxߊϳ%ɝrA3Nf>;Sng rs}&K53>I+2KƭG%/m^5ﲻDY9+U8!r/Q`*y 3utkkwa,>[=cg% Cۯҳ_5vBg{_z!bЅ9Aсݣo};/! ȅe>&d95+q(;‹56TI%9^B!]D9{؇FGLY0zue龟Obnf4/y..C&@dϑ6Rv̝k3޺?3"&CY!1(x^Ț.vvbY˳w=O;d#vR이@uuqGdVK2bOau"5dhU= 6d\Y&sE&4c#~:d-+0!pTrwTV<)VXy0͓F&$̾[;_&ăFrɫIR]Y>4@r=mT aݯJ`SrWdv⁷hqRЊ 5@ۂh5Cu PUi"F\[/1T_ӟzv f\[vhh&_fnzޑ;-⮢w1o_kfqcvtAIc:y.|RF^߬Y. yao%붼 J=Aڏ#. мo0tQ T0D,dO4elwIǑ3}2 Oc&9ŽbPhNUmLWAx$^*A*zԐ~G }Ӫ ej.fJFޜ=`+2zt#V`^Vpoi;1H6J7ڧ"zALurfBL貢?+V]אPl$އa@uݽV( ƨn^/;;4J[3b`qޜ쭧]|H AT}' h9Ȋ+lY& 7 f6.st[VWz=]:hi7:߇J{Y{S8L_rVe@3ﻎ,uHBfY̧ˊYR-dz}\7(?S=zr}-hLzp6ٌw_ƃу 74{m]*2` Q_T;||ea'_Hrڎh|϶!&x1Bm䜙 <4Hc̛qBD0Hi>p1=aiR DM,3(MMU^mx̙W@6#&kiTq"d wA >zCɰJA@^0}mk0`GM)?+1y*@eg-C' 4rVL?؃Y jyd^c&Rz3AC(ZT&\8\?W^~L44Fgh̟xTmv7DDɠA=,\ځ% RV}Քvzqp$Q4[>(:V=U-u MwomqQqM&. r߅Ws̗n+/IzefB26P-(ie 89!H6, O$Cʓ֦]mЕ,a ?- (.!r~TF.RsSi]_1phPhB8BGc)'3hm;&Epw~Mɿy.Lr:ȱ S"+x$,E0_J-U y#ṽgV=`&r {*cWM6]9}6c`rVGqA(}HiK&A>{ͬ"`+|R_p!Gu}:__7i^+)+ `3@LXWO%#o.CIث" լ2^Qf()|lJ5F ?h:CPG;5nO/fn֕cc|[Wv !W}/x \ M]Hf$)iXD51N70x^`zjH_~lvj.:m$?-L(@q,jPo)0AՅ˴ZY|ѹ%Q PTBIfgf(cE^_g֓= I3- '獫4N?ٟD3krNc}mlp8$CEh"Ll=/7A Ay:~=V]ҒQ2͆PO/}~Ҹ!<:}OAklDC){в 4!SUSULx\#l'ܿF١V#4H-G$7@Ѝ<׀HxVW^`$oxFơ$xdi)g~ F)‰O[gޮ^!81iaZTKFg'|LSUM|_=RL8"ezԌ0.yM %X_mP䴵|-橗 jd\$4L+$yi!7%ǖ=<uqIg(Е|YCheJ  A ²m]:sžߖbPY/l\-}\B'R(៶BDŽ0IW ea#Qq-3QYk }h=4O=Ӧ?SSp Dq0(gm:D:#7^O,ʹb὿{xHNAS]}K:YB]dtH)zn^'YP HjT,`z 8Dqa{ 0ҿHG]-m@U}&E!ì exӐc%9?^QZqP%|@WSsیt(E*S^_;E7uEa@>ۧھ߹<G)ٱ(0N}Q dj;x;-jrig,R͈)~ x^kFmMlΐgBKdO}5A132˓Ctn5_C N< 9TqWakV+g].Q@%U@?58Sƶ /k\hEISE1;FVx\*0.b}ӨT_Kl"+Y1t%QaЃ~BB5[\!DjH1ހ!?MQH|LLݖ6R9./02;YY7AFMév}Z#ŹXHF]͸!"%萿F QU|!Dćp5녦yGjV'i{S0#>f- OOcA<}Sx.UDDUGz7 >(x.KU܌W FtAA|-aqp&$yr`@97J:Gl1M*a4(5o:gׇ Soti|Xچzr[kթ-ƃ{W9ȯNo;5 *zcq\&<93^ 8Û[{B6τ<$@11T%W !Y!8?/;V^|<ی\X%ּGȢdLAϺzI-{hV]SQsmSz{;ZyѓR*S'oI, ܜ9"MLQ!yaV}_=^$*M -v_c,Bi~Nmt:Xcux-:-IyҼ2?0H۾W2^(؃(fr1cge SNx)/uG |+VɹwSlt9KHH&`ϐOԜ4G+@T Jj] B(a5'KLވ~X LA؛ EmҰ?ε̧KJdׄU/58ё;2Xg3 Ƴ:2hU BОI'T4Ax])QwEQ;0ە Tv!{R #{g3,}p1hzvBVwǸ:(Ԙ]Jm,[%?\vjC:Tb9f5|*Al0l22A0Pk_Y^^$+`;"wdVU">:IBԱ[:7r.@ұ{3޳Lx;|Y=uYwSZ،хMlok'r⵸UuT|f70\Ԟذݚabt!5uvT,zW%#Ϲ@HJ{9x'`+H.N8Wڳ݊L>pqB vJTF8nswJ6s_wvb4o֎;bڊ^ Mў X s΋]VdQYPu aI\V4RgS(E(\#'Ck}槶BBiX~-wp`5¿L3pwA1/z^)ٹEF`C 5L%I3(C]s< K)%AtSRMEO6I)][UI -yr~Ԗo0fZM5:@|6rVn;ה`vH'1'RZҿO'u$=|\L\ ZS{q.,**l_ܷM7fbP2]y*`95cC͋}L;%%?sPn/Uq\ȃ \p"]˭#vimD(y &7#'+[7HCbh? ?0i4:L9uD_NoZ*LlKuOSPXP/v1Jͤv)Mexf41Cnqx2ЦYa`[hb {dcQ%gW!3'1]6'TkMq˺V8 by47ОQzwC35\n6VСJ [[Z][rI1@D@' Ϻ؆f ـK8#`= Œl1f4ycˆѤRrr'{}5!EL) `)t|EH*ٿ:6wYHbyܐ|+:SFzRzxGr|U7kQ &[b}ybޒI~DH kBG 3(`ǂ<|K^Фlk{j>t []pv{NJSPhvMJ~nx,? q=26nr6 nc5:p :ztw1 Bj%xyGhMRzꭉ3&f z+Q! P +'c[݅ݺeZ⡧E:\Y5mܪ͠pƞQmiHrX}4AJWp 9lwi`+ak|gwKLe-67{zFG""Bٽ[NWʘ{x$2w:}Xˑ6@8B) h96P-Ig/t S'hYڇ1~dzc DRj~FMV{FWIFtsOc<؄ cU󘱚]zڊ\]& Tw2i a]铠e:x誡NKyrT# Lƞ/! ع/_.3,MpkN\2`q%/jl j-(검^V-uT/+VNQ@1$$%J'X\T:K.7]e҄E?;I}$rr8n# $iK9VC"14nZ1]hnKђF(=JB:+cYEصU+ $+ L}ԉxgǑ2~7@!5*!L!UH4|"W A= $tYf/ie(4 {pʇ{C ܿT#wOk訇vA_|kibg ;sI|q 5hz$N{AUBltRxsEvHrC_<]g8zd]Np)D9ʯi\._p+hdK07쐨8-}M ŊQ ¶;9QJњ6:hq~&<{-{Cf{X!g++*"KROc3]^OZqLb@8"Ϝ|W!:Lwb|mbk,lCߑ*W+pc8J\0[J/Ր0>"_1twSվ9 E)r[kj2݊\alemt vaJcf 5[NbXY+;|:zz۪]@a2W7zFM^f{{BAAAD̢[nc/ӿL66,T+&&~Ǜun^rs[)g ({78};[+&sr&?g[ I֞:-T51Wd80KB8B `6M00B _2:u/~TKR-LggQ1K)JԂz.ƅf[7tZ/c`\-hc_\0ँFcGZ)#f؅;>nl[:j.KDzXiG10.l #. c &{p-;pZU05b}5yѩ!ޫGc-Й%f (ݜS/,M{7.08A7|j5wH6Y6x4KW0XN0Ι-%K8\۫z˦?QUA'm&"V7 E2AZ  t_TWNOnv&n5*!7tf %yB\sIS /efW4&N=M L`x;~B!Noj0_`h O Dnޓ&Uq-1*pu8Ú`jxbA(V(uC ] e