summaryrefslogtreecommitdiff
path: root/src/regex/regexec.c
blob: f7aef506ff27d5414b0acbd406fa5a5b2e41f384 (plain) (blame)
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
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
/*
  regexec.c - TRE POSIX compatible matching functions (and more).

  Copyright (c) 2001-2006 Ville Laurikari <vl@iki.fi>.

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

*/

#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
#include <limits.h>

#include <regex.h>

#include "tre.h"

#include <assert.h>

static void
tre_fill_pmatch(size_t nmatch, regmatch_t pmatch[], int cflags,
		const tre_tnfa_t *tnfa, int *tags, int match_eo);

/***********************************************************************
 from tre-match-utils.h
***********************************************************************/

#define GET_NEXT_WCHAR() do {                                                 \
    prev_c = next_c; pos += pos_add_next;                                     \
    if ((pos_add_next = mbtowc(&next_c, str_byte, MB_LEN_MAX)) <= 0) {        \
        if (pos_add_next < 0) return REG_NOMATCH;                             \
        else pos_add_next++;                                                  \
    }                                                                         \
    str_byte += pos_add_next;                                                 \
  } while (0)

#define CHECK_ASSERTIONS(assertions)					      \
  (((assertions & ASSERT_AT_BOL)					      \
    && (pos > 0 || reg_notbol)						      \
    && (prev_c != L'\n' || !reg_newline))				      \
   || ((assertions & ASSERT_AT_EOL)					      \
       && (next_c != L'\0' || reg_noteol)				      \
       && (next_c != L'\n' || !reg_newline)))

/* Returns 1 if `t1' wins `t2', 0 otherwise. */
static int
tre_tag_order(int num_tags, tre_tag_direction_t *tag_directions,
	      int *t1, int *t2)
{
  int i;
  for (i = 0; i < num_tags; i++)
    {
      if (tag_directions[i] == TRE_TAG_MINIMIZE)
	{
	  if (t1[i] < t2[i])
	    return 1;
	  if (t1[i] > t2[i])
	    return 0;
	}
      else
	{
	  if (t1[i] > t2[i])
	    return 1;
	  if (t1[i] < t2[i])
	    return 0;
	}
    }
  /*  assert(0);*/
  return 0;
}

static int
tre_neg_char_classes_match(tre_ctype_t *classes, tre_cint_t wc, int icase)
{
  DPRINT(("neg_char_classes_test: %p, %d, %d\n", classes, wc, icase));
  while (*classes != (tre_ctype_t)0)
    if ((!icase && tre_isctype(wc, *classes))
	|| (icase && (tre_isctype(tre_toupper(wc), *classes)
		      || tre_isctype(tre_tolower(wc), *classes))))
      return 1; /* Match. */
    else
      classes++;
  return 0; /* No match. */
}


/***********************************************************************
 from tre-match-parallel.c
***********************************************************************/

/*
  This algorithm searches for matches basically by reading characters
  in the searched string one by one, starting at the beginning.	 All
  matching paths in the TNFA are traversed in parallel.	 When two or
  more paths reach the same state, exactly one is chosen according to
  tag ordering rules; if returning submatches is not required it does
  not matter which path is chosen.

  The worst case time required for finding the leftmost and longest
  match, or determining that there is no match, is always linearly
  dependent on the length of the text being searched.

  This algorithm cannot handle TNFAs with back referencing nodes.
  See `tre-match-backtrack.c'.
*/


typedef struct {
  tre_tnfa_transition_t *state;
  int *tags;
} tre_tnfa_reach_t;

typedef struct {
  int pos;
  int **tags;
} tre_reach_pos_t;


#ifdef TRE_DEBUG
static void
tre_print_reach(const tre_tnfa_t *tnfa, tre_tnfa_reach_t *reach, int num_tags)
{
  int i;

  while (reach->state != NULL)
    {
      DPRINT((" %p", (void *)reach->state));
      if (num_tags > 0)
	{
	  DPRINT(("/"));
	  for (i = 0; i < num_tags; i++)
	    {
	      DPRINT(("%d:%d", i, reach->tags[i]));
	      if (i < (num_tags-1))
		DPRINT((","));
	    }
	}
      reach++;
    }
  DPRINT(("\n"));

}
#endif /* TRE_DEBUG */

static reg_errcode_t
tre_tnfa_run_parallel(const tre_tnfa_t *tnfa, const void *string, int len,
		      int *match_tags, int eflags, int *match_end_ofs)
{
  /* State variables required by GET_NEXT_WCHAR. */
  tre_char_t prev_c = 0, next_c = 0;
  const char *str_byte = string;
  int pos = -1;
  int pos_add_next = 1;
#ifdef TRE_MBSTATE
  mbstate_t mbstate;
#endif /* TRE_MBSTATE */
  int reg_notbol = eflags & REG_NOTBOL;
  int reg_noteol = eflags & REG_NOTEOL;
  int reg_newline = tnfa->cflags & REG_NEWLINE;

  char *buf;
  tre_tnfa_transition_t *trans_i;
  tre_tnfa_reach_t *reach, *reach_next, *reach_i, *reach_next_i;
  tre_reach_pos_t *reach_pos;
  int *tag_i;
  int num_tags, i;

  int match_eo = -1;	   /* end offset of match (-1 if no match found yet) */
  int new_match = 0;
  int *tmp_tags = NULL;
  int *tmp_iptr;

#ifdef TRE_MBSTATE
  memset(&mbstate, '\0', sizeof(mbstate));
#endif /* TRE_MBSTATE */

  if (!match_tags)
    num_tags = 0;
  else
    num_tags = tnfa->num_tags;

  /* Allocate memory for temporary data required for matching.	This needs to
     be done for every matching operation to be thread safe.  This allocates
     everything in a single large block from the stack frame using alloca()
     or with malloc() if alloca is unavailable. */
  {
    int tbytes, rbytes, pbytes, xbytes, total_bytes;
    char *tmp_buf;
    /* Compute the length of the block we need. */
    tbytes = sizeof(*tmp_tags) * num_tags;
    rbytes = sizeof(*reach_next) * (tnfa->num_states + 1);
    pbytes = sizeof(*reach_pos) * tnfa->num_states;
    xbytes = sizeof(int) * num_tags;
    total_bytes =
      (sizeof(long) - 1) * 4 /* for alignment paddings */
      + (rbytes + xbytes * tnfa->num_states) * 2 + tbytes + pbytes;

    /* Allocate the memory. */
#ifdef TRE_USE_ALLOCA
    buf = alloca(total_bytes);
#else /* !TRE_USE_ALLOCA */
    buf = xmalloc(total_bytes);
#endif /* !TRE_USE_ALLOCA */
    if (buf == NULL)
      return REG_ESPACE;
    memset(buf, 0, total_bytes);

    /* Get the various pointers within tmp_buf (properly aligned). */
    tmp_tags = (void *)buf;
    tmp_buf = buf + tbytes;
    tmp_buf += ALIGN(tmp_buf, long);
    reach_next = (void *)tmp_buf;
    tmp_buf += rbytes;
    tmp_buf += ALIGN(tmp_buf, long);
    reach = (void *)tmp_buf;
    tmp_buf += rbytes;
    tmp_buf += ALIGN(tmp_buf, long);
    reach_pos = (void *)tmp_buf;
    tmp_buf += pbytes;
    tmp_buf += ALIGN(tmp_buf, long);
    for (i = 0; i < tnfa->num_states; i++)
      {
	reach[i].tags = (void *)tmp_buf;
	tmp_buf += xbytes;
	reach_next[i].tags = (void *)tmp_buf;
	tmp_buf += xbytes;
      }
  }

  for (i = 0; i < tnfa->num_states; i++)
    reach_pos[i].pos = -1;

  GET_NEXT_WCHAR();
  pos = 0;

  DPRINT(("length: %d\n", len));
  DPRINT(("pos:chr/code | states and tags\n"));
  DPRINT(("-------------+------------------------------------------------\n"));

  reach_next_i = reach_next;
  while (1)
    {
      /* If no match found yet, add the initial states to `reach_next'. */
      if (match_eo < 0)
	{
	  DPRINT((" init >"));
	  trans_i = tnfa->initial;
	  while (trans_i->state != NULL)
	    {
	      if (reach_pos[trans_i->state_id].pos < pos)
		{
		  if (trans_i->assertions
		      && CHECK_ASSERTIONS(trans_i->assertions))
		    {
		      DPRINT(("assertion failed\n"));
		      trans_i++;
		      continue;
		    }

		  DPRINT((" %p", (void *)trans_i->state));
		  reach_next_i->state = trans_i->state;
		  for (i = 0; i < num_tags; i++)
		    reach_next_i->tags[i] = -1;
		  tag_i = trans_i->tags;
		  if (tag_i)
		    while (*tag_i >= 0)
		      {
			if (*tag_i < num_tags)
			  reach_next_i->tags[*tag_i] = pos;
			tag_i++;
		      }
		  if (reach_next_i->state == tnfa->final)
		    {
		      DPRINT(("	 found empty match\n"));
		      match_eo = pos;
		      new_match = 1;
		      for (i = 0; i < num_tags; i++)
			match_tags[i] = reach_next_i->tags[i];
		    }
		  reach_pos[trans_i->state_id].pos = pos;
		  reach_pos[trans_i->state_id].tags = &reach_next_i->tags;
		  reach_next_i++;
		}
	      trans_i++;
	    }
	  DPRINT(("\n"));
	  reach_next_i->state = NULL;
	}
      else
	{
	  if (num_tags == 0 || reach_next_i == reach_next)
	    /* We have found a match. */
	    break;
	}

      /* Check for end of string. */
      if (!next_c) break;

      GET_NEXT_WCHAR();

#ifdef TRE_DEBUG
      DPRINT(("%3d:%2lc/%05d |", pos - 1, (tre_cint_t)prev_c, (int)prev_c));
      tre_print_reach(tnfa, reach_next, num_tags);
      DPRINT(("%3d:%2lc/%05d |", pos, (tre_cint_t)next_c, (int)next_c));
      tre_print_reach(tnfa, reach_next, num_tags);
#endif /* TRE_DEBUG */

      /* Swap `reach' and `reach_next'. */
      reach_i = reach;
      reach = reach_next;
      reach_next = reach_i;

      /* For each state in `reach' see if there is a transition leaving with
	 the current input symbol to a state not yet in `reach_next', and
	 add the destination states to `reach_next'. */
      reach_next_i = reach_next;
      for (reach_i = reach; reach_i->state; reach_i++)
	{
	  for (trans_i = reach_i->state; trans_i->state; trans_i++)
	    {
	      /* Does this transition match the input symbol? */
	      if (trans_i->code_min <= prev_c &&
		  trans_i->code_max >= prev_c)
		{
		  if (trans_i->assertions
		      && (CHECK_ASSERTIONS(trans_i->assertions)
			  /* Handle character class transitions. */
			  || ((trans_i->assertions & ASSERT_CHAR_CLASS)
			      && !(tnfa->cflags & REG_ICASE)
			      && !tre_isctype((tre_cint_t)prev_c,
					      trans_i->u.class))
			  || ((trans_i->assertions & ASSERT_CHAR_CLASS)
			      && (tnfa->cflags & REG_ICASE)
			      && (!tre_isctype(tre_tolower((tre_cint_t)prev_c),
					       trans_i->u.class)
				  && !tre_isctype(tre_toupper((tre_cint_t)prev_c),
						  trans_i->u.class)))
			  || ((trans_i->assertions & ASSERT_CHAR_CLASS_NEG)
			      && tre_neg_char_classes_match(trans_i->neg_classes,
							    (tre_cint_t)prev_c,
							    tnfa->cflags & REG_ICASE))))
		    {
		      DPRINT(("assertion failed\n"));
		      continue;
		    }

		  /* Compute the tags after this transition. */
		  for (i = 0; i < num_tags; i++)
		    tmp_tags[i] = reach_i->tags[i];
		  tag_i = trans_i->tags;
		  if (tag_i != NULL)
		    while (*tag_i >= 0)
		      {
			if (*tag_i < num_tags)
			  tmp_tags[*tag_i] = pos;
			tag_i++;
		      }

		  if (reach_pos[trans_i->state_id].pos < pos)
		    {
		      /* Found an unvisited node. */
		      reach_next_i->state = trans_i->state;
		      tmp_iptr = reach_next_i->tags;
		      reach_next_i->tags = tmp_tags;
		      tmp_tags = tmp_iptr;
		      reach_pos[trans_i->state_id].pos = pos;
		      reach_pos[trans_i->state_id].tags = &reach_next_i->tags;

		      if (reach_next_i->state == tnfa->final
			  && (match_eo == -1
			      || (num_tags > 0
				  && reach_next_i->tags[0] <= match_tags[0])))
			{
			  DPRINT(("  found match %p\n", trans_i->state));
			  match_eo = pos;
			  new_match = 1;
			  for (i = 0; i < num_tags; i++)
			    match_tags[i] = reach_next_i->tags[i];
			}
		      reach_next_i++;

		    }
		  else
		    {
		      assert(reach_pos[trans_i->state_id].pos == pos);
		      /* Another path has also reached this state.  We choose
			 the winner by examining the tag values for both
			 paths. */
		      if (tre_tag_order(num_tags, tnfa->tag_directions,
					tmp_tags,
					*reach_pos[trans_i->state_id].tags))
			{
			  /* The new path wins. */
			  tmp_iptr = *reach_pos[trans_i->state_id].tags;
			  *reach_pos[trans_i->state_id].tags = tmp_tags;
			  if (trans_i->state == tnfa->final)
			    {
			      DPRINT(("	 found better match\n"));
			      match_eo = pos;
			      new_match = 1;
			      for (i = 0; i < num_tags; i++)
				match_tags[i] = tmp_tags[i];
			    }
			  tmp_tags = tmp_iptr;
			}
		    }
		}
	    }
	}
      reach_next_i->state = NULL;
    }

  DPRINT(("match end offset = %d\n", match_eo));

#ifndef TRE_USE_ALLOCA
  if (buf)
    xfree(buf);
#endif /* !TRE_USE_ALLOCA */

  *match_end_ofs = match_eo;
  return match_eo >= 0 ? REG_OK : REG_NOMATCH;
}


/***********************************************************************
 from tre-match-backtrack.c
***********************************************************************/

/*
  This matcher is for regexps that use back referencing.  Regexp matching
  with back referencing is an NP-complete problem on the number of back
  references.  The easiest way to match them is to use a backtracking
  routine which basically goes through all possible paths in the TNFA
  and chooses the one which results in the best (leftmost and longest)
  match.  This can be spectacularly expensive and may run out of stack
  space, but there really is no better known generic algorithm.	 Quoting
  Henry Spencer from comp.compilers:
  <URL: http://compilers.iecc.com/comparch/article/93-03-102>

    POSIX.2 REs require longest match, which is really exciting to
    implement since the obsolete ("basic") variant also includes
    \<digit>.  I haven't found a better way of tackling this than doing
    a preliminary match using a DFA (or simulation) on a modified RE
    that just replicates subREs for \<digit>, and then doing a
    backtracking match to determine whether the subRE matches were
    right.  This can be rather slow, but I console myself with the
    thought that people who use \<digit> deserve very slow execution.
    (Pun unintentional but very appropriate.)

*/

typedef struct {
  int pos;
  const char *str_byte;
  tre_tnfa_transition_t *state;
  int state_id;
  int next_c;
  int *tags;
#ifdef TRE_MBSTATE
  mbstate_t mbstate;
#endif /* TRE_MBSTATE */
} tre_backtrack_item_t;

typedef struct tre_backtrack_struct {
  tre_backtrack_item_t item;
  struct tre_backtrack_struct *prev;
  struct tre_backtrack_struct *next;
} *tre_backtrack_t;

#ifdef TRE_MBSTATE
#define BT_STACK_MBSTATE_IN  stack->item.mbstate = (mbstate)
#define BT_STACK_MBSTATE_OUT (mbstate) = stack->item.mbstate
#else /* !TRE_MBSTATE */
#define BT_STACK_MBSTATE_IN
#define BT_STACK_MBSTATE_OUT
#endif /* !TRE_MBSTATE */


#ifdef TRE_USE_ALLOCA
#define tre_bt_mem_new		  tre_mem_newa
#define tre_bt_mem_alloc	  tre_mem_alloca
#define tre_bt_mem_destroy(obj)	  do { } while (0)
#else /* !TRE_USE_ALLOCA */
#define tre_bt_mem_new		  tre_mem_new
#define tre_bt_mem_alloc	  tre_mem_alloc
#define tre_bt_mem_destroy	  tre_mem_destroy
#endif /* !TRE_USE_ALLOCA */


#define BT_STACK_PUSH(_pos, _str_byte, _str_wide, _state, _state_id, _next_c, _tags, _mbstate) \
  do									      \
    {									      \
      int i;								      \
      if (!stack->next)							      \
	{								      \
	  tre_backtrack_t s;						      \
	  s = tre_bt_mem_alloc(mem, sizeof(*s));			      \
	  if (!s)							      \
	    {								      \
	      tre_bt_mem_destroy(mem);					      \
	      if (tags)							      \
		xfree(tags);						      \
	      if (pmatch)						      \
		xfree(pmatch);						      \
	      if (states_seen)						      \
		xfree(states_seen);					      \
	      return REG_ESPACE;					      \
	    }								      \
	  s->prev = stack;						      \
	  s->next = NULL;						      \
	  s->item.tags = tre_bt_mem_alloc(mem,				      \
					  sizeof(*tags) * tnfa->num_tags);    \
	  if (!s->item.tags)						      \
	    {								      \
	      tre_bt_mem_destroy(mem);					      \
	      if (tags)							      \
		xfree(tags);						      \
	      if (pmatch)						      \
		xfree(pmatch);						      \
	      if (states_seen)						      \
		xfree(states_seen);					      \
	      return REG_ESPACE;					      \
	    }								      \
	  stack->next = s;						      \
	  stack = s;							      \
	}								      \
      else								      \
	stack = stack->next;						      \
      stack->item.pos = (_pos);						      \
      stack->item.str_byte = (_str_byte);				      \
      stack->item.state = (_state);					      \
      stack->item.state_id = (_state_id);				      \
      stack->item.next_c = (_next_c);					      \
      for (i = 0; i < tnfa->num_tags; i++)				      \
	stack->item.tags[i] = (_tags)[i];				      \
      BT_STACK_MBSTATE_IN;						      \
    }									      \
  while (0)

#define BT_STACK_POP()							      \
  do									      \
    {									      \
      int i;								      \
      assert(stack->prev);						      \
      pos = stack->item.pos;						      \
      str_byte = stack->item.str_byte;					      \
      state = stack->item.state;					      \
      next_c = stack->item.next_c;					      \
      for (i = 0; i < tnfa->num_tags; i++)				      \
	tags[i] = stack->item.tags[i];					      \
      BT_STACK_MBSTATE_OUT;						      \
      stack = stack->prev;						      \
    }									      \
  while (0)

#undef MIN
#define MIN(a, b) ((a) <= (b) ? (a) : (b))

static reg_errcode_t
tre_tnfa_run_backtrack(const tre_tnfa_t *tnfa, const void *string,
		       int len, int *match_tags,
		       int eflags, int *match_end_ofs)
{
  /* State variables required by GET_NEXT_WCHAR. */
  tre_char_t prev_c = 0, next_c = 0;
  const char *str_byte = string;
  int pos = 0;
  int pos_add_next = 1;
#ifdef TRE_MBSTATE
  mbstate_t mbstate;
#endif /* TRE_MBSTATE */
  int reg_notbol = eflags & REG_NOTBOL;
  int reg_noteol = eflags & REG_NOTEOL;
  int reg_newline = tnfa->cflags & REG_NEWLINE;

  /* These are used to remember the necessary values of the above
     variables to return to the position where the current search
     started from. */
  int next_c_start;
  const char *str_byte_start;
  int pos_start = -1;
#ifdef TRE_MBSTATE
  mbstate_t mbstate_start;
#endif /* TRE_MBSTATE */

  /* Compilation flags for this regexp. */
  int cflags = tnfa->cflags;

  /* End offset of best match so far, or -1 if no match found yet. */
  int match_eo = -1;
  /* Tag arrays. */
  int *next_tags, *tags = NULL;
  /* Current TNFA state. */
  tre_tnfa_transition_t *state;
  int *states_seen = NULL;

  /* Memory allocator to for allocating the backtracking stack. */
  tre_mem_t mem = tre_bt_mem_new();

  /* The backtracking stack. */
  tre_backtrack_t stack;

  tre_tnfa_transition_t *trans_i;
  regmatch_t *pmatch = NULL;
  int ret;

#ifdef TRE_MBSTATE
  memset(&mbstate, '\0', sizeof(mbstate));
#endif /* TRE_MBSTATE */

  if (!mem)
    return REG_ESPACE;
  stack = tre_bt_mem_alloc(mem, sizeof(*stack));
  if (!stack)
    {
      ret = REG_ESPACE;
      goto error_exit;
    }
  stack->prev = NULL;
  stack->next = NULL;

#ifdef TRE_USE_ALLOCA
  tags = alloca(sizeof(*tags) * tnfa->num_tags);
  pmatch = alloca(sizeof(*pmatch) * tnfa->num_submatches);
  states_seen = alloca(sizeof(*states_seen) * tnfa->num_states);
#else /* !TRE_USE_ALLOCA */
  tags = xmalloc(sizeof(*tags) * tnfa->num_tags);
  if (!tags)
    {
      ret = REG_ESPACE;
      goto error_exit;
    }
  pmatch = xmalloc(sizeof(*pmatch) * tnfa->num_submatches);
  if (!pmatch)
    {
      ret = REG_ESPACE;
      goto error_exit;
    }
  states_seen = xmalloc(sizeof(*states_seen) * tnfa->num_states);
  if (!states_seen)
    {
      ret = REG_ESPACE;
      goto error_exit;
    }
#endif /* !TRE_USE_ALLOCA */

 retry:
  {
    int i;
    for (i = 0; i < tnfa->num_tags; i++)
      {
	tags[i] = -1;
	if (match_tags)
	  match_tags[i] = -1;
      }
    for (i = 0; i < tnfa->num_states; i++)
      states_seen[i] = 0;
  }

  state = NULL;
  pos = pos_start;
  GET_NEXT_WCHAR();
  pos_start = pos;
  next_c_start = next_c;
  str_byte_start = str_byte;
#ifdef TRE_MBSTATE
  mbstate_start = mbstate;
#endif /* TRE_MBSTATE */

  /* Handle initial states. */
  next_tags = NULL;
  for (trans_i = tnfa->initial; trans_i->state; trans_i++)
    {
      DPRINT(("> init %p, prev_c %lc\n", trans_i->state, (tre_cint_t)prev_c));
      if (trans_i->assertions && CHECK_ASSERTIONS(trans_i->assertions))
	{
	  DPRINT(("assert failed\n"));
	  continue;
	}
      if (state == NULL)
	{
	  /* Start from this state. */
	  state = trans_i->state;
	  next_tags = trans_i->tags;
	}
      else
	{
	  /* Backtrack to this state. */
	  DPRINT(("saving state %d for backtracking\n", trans_i->state_id));
	  BT_STACK_PUSH(pos, str_byte, str_wide, trans_i->state,
			trans_i->state_id, next_c, tags, mbstate);
	  {
	    int *tmp = trans_i->tags;
	    if (tmp)
	      while (*tmp >= 0)
		stack->item.tags[*tmp++] = pos;
	  }
	}
    }

  if (next_tags)
    for (; *next_tags >= 0; next_tags++)
      tags[*next_tags] = pos;


  DPRINT(("entering match loop, pos %d, str_byte %p\n", pos, str_byte));
  DPRINT(("pos:chr/code | state and tags\n"));
  DPRINT(("-------------+------------------------------------------------\n"));

  if (state == NULL)
    goto backtrack;

  while (1)
    {
      tre_tnfa_transition_t *trans_i, *next_state;
      int empty_br_match;

      DPRINT(("start loop\n"));
      if (state == tnfa->final)
	{
	  DPRINT(("  match found, %d %d\n", match_eo, pos));
	  if (match_eo < pos
	      || (match_eo == pos
		  && match_tags
		  && tre_tag_order(tnfa->num_tags, tnfa->tag_directions,
				   tags, match_tags)))
	    {
	      int i;
	      /* This match wins the previous match. */
	      DPRINT(("	 win previous\n"));
	      match_eo = pos;
	      if (match_tags)
		for (i = 0; i < tnfa->num_tags; i++)
		  match_tags[i] = tags[i];
	    }
	  /* Our TNFAs never have transitions leaving from the final state,
	     so we jump right to backtracking. */
	  goto backtrack;
	}

#ifdef TRE_DEBUG
      DPRINT(("%3d:%2lc/%05d | %p ", pos, (tre_cint_t)next_c, (int)next_c,
	      state));
      {
	int i;
	for (i = 0; i < tnfa->num_tags; i++)
	  DPRINT(("%d%s", tags[i], i < tnfa->num_tags - 1 ? ", " : ""));
	DPRINT(("\n"));
      }
#endif /* TRE_DEBUG */

      /* Go to the next character in the input string. */
      empty_br_match = 0;
      trans_i = state;
      if (trans_i->state && trans_i->assertions & ASSERT_BACKREF)
	{
	  /* This is a back reference state.  All transitions leaving from
	     this state have the same back reference "assertion".  Instead
	     of reading the next character, we match the back reference. */
	  int so, eo, bt = trans_i->u.backref;
	  int bt_len;
	  int result;

	  DPRINT(("  should match back reference %d\n", bt));
	  /* Get the substring we need to match against.  Remember to
	     turn off REG_NOSUB temporarily. */
	  tre_fill_pmatch(bt + 1, pmatch, tnfa->cflags & !REG_NOSUB,
			  tnfa, tags, pos);
	  so = pmatch[bt].rm_so;
	  eo = pmatch[bt].rm_eo;
	  bt_len = eo - so;

	  if (len < 0)
	    {
	      result = strncmp((char*)string + so, str_byte - 1, bt_len);
	    }
	  else if (len - pos < bt_len)
	    result = 1;
	  else
	    result = memcmp((char*)string + so, str_byte - 1, bt_len);

	  /* We can ignore multibyte characters here because the backref
	     string is already aligned at character boundaries. */
	  if (result == 0)
	    {
	      /* Back reference matched.  Check for infinite loop. */
	      if (bt_len == 0)
		empty_br_match = 1;
	      if (empty_br_match && states_seen[trans_i->state_id])
		{
		  DPRINT(("  avoid loop\n"));
		  goto backtrack;
		}

	      states_seen[trans_i->state_id] = empty_br_match;

	      /* Advance in input string and resync `prev_c', `next_c'
		 and pos. */
	      DPRINT(("	 back reference matched\n"));
	      str_byte += bt_len - 1;
	      pos += bt_len - 1;
	      GET_NEXT_WCHAR();
	      DPRINT(("	 pos now %d\n", pos));
	    }
	  else
	    {
	      DPRINT(("	 back reference did not match\n"));
	      goto backtrack;
	    }
	}
      else
	{
	  /* Check for end of string. */
	  if (len < 0)
	    {
	      if (next_c == L'\0')
		goto backtrack;
	    }
	  else
	    {
	      if (pos >= len)
		goto backtrack;
	    }

	  /* Read the next character. */
	  GET_NEXT_WCHAR();
	}

      next_state = NULL;
      for (trans_i = state; trans_i->state; trans_i++)
	{
	  DPRINT(("  transition %d-%d (%c-%c) %d to %d\n",
		  trans_i->code_min, trans_i->code_max,
		  trans_i->code_min, trans_i->code_max,
		  trans_i->assertions, trans_i->state_id));
	  if (trans_i->code_min <= prev_c && trans_i->code_max >= prev_c)
	    {
	      if (trans_i->assertions
		  && (CHECK_ASSERTIONS(trans_i->assertions)
		      /* Handle character class transitions. */
		      || ((trans_i->assertions & ASSERT_CHAR_CLASS)
			  && !(cflags & REG_ICASE)
			  && !tre_isctype((tre_cint_t)prev_c, trans_i->u.class))
		      || ((trans_i->assertions & ASSERT_CHAR_CLASS)
			  && (cflags & REG_ICASE)
			  && (!tre_isctype(tre_tolower((tre_cint_t)prev_c),
					   trans_i->u.class)
			      && !tre_isctype(tre_toupper((tre_cint_t)prev_c),
					      trans_i->u.class)))
		      || ((trans_i->assertions & ASSERT_CHAR_CLASS_NEG)
			  && tre_neg_char_classes_match(trans_i->neg_classes,
							(tre_cint_t)prev_c,
							cflags & REG_ICASE))))
		{
		  DPRINT(("  assertion failed\n"));
		  continue;
		}

	      if (next_state == NULL)
		{
		  /* First matching transition. */
		  DPRINT(("  Next state is %d\n", trans_i->state_id));
		  next_state = trans_i->state;
		  next_tags = trans_i->tags;
		}
	      else
		{
		  /* Second mathing transition.	 We may need to backtrack here
		     to take this transition instead of the first one, so we
		     push this transition in the backtracking stack so we can
		     jump back here if needed. */
		  DPRINT(("  saving state %d for backtracking\n",
			  trans_i->state_id));
		  BT_STACK_PUSH(pos, str_byte, str_wide, trans_i->state,
				trans_i->state_id, next_c, tags, mbstate);
		  {
		    int *tmp;
		    for (tmp = trans_i->tags; tmp && *tmp >= 0; tmp++)
		      stack->item.tags[*tmp] = pos;
		  }
#if 0 /* XXX - it's important not to look at all transitions here to keep
	 the stack small! */
		  break;
#endif
		}
	    }
	}

      if (next_state != NULL)
	{
	  /* Matching transitions were found.  Take the first one. */
	  state = next_state;

	  /* Update the tag values. */
	  if (next_tags)
	    while (*next_tags >= 0)
	      tags[*next_tags++] = pos;
	}
      else
	{
	backtrack:
	  /* A matching transition was not found.  Try to backtrack. */
	  if (stack->prev)
	    {
	      DPRINT(("	 backtracking\n"));
	      if (stack->item.state->assertions & ASSERT_BACKREF)
		{
		  DPRINT(("  states_seen[%d] = 0\n",
			  stack->item.state_id));
		  states_seen[stack->item.state_id] = 0;
		}

	      BT_STACK_POP();
	    }
	  else if (match_eo < 0)
	    {
	      /* Try starting from a later position in the input string. */
	      /* Check for end of string. */
	      if (len < 0)
		{
		  if (next_c == L'\0')
		    {
		      DPRINT(("end of string.\n"));
		      break;
		    }
		}
	      else
		{
		  if (pos >= len)
		    {
		      DPRINT(("end of string.\n"));
		      break;
		    }
		}
	      DPRINT(("restarting from next start position\n"));
	      next_c = next_c_start;
#ifdef TRE_MBSTATE
	      mbstate = mbstate_start;
#endif /* TRE_MBSTATE */
	      str_byte = str_byte_start;
	      goto retry;
	    }
	  else
	    {
	      DPRINT(("finished\n"));
	      break;
	    }
	}
    }

  ret = match_eo >= 0 ? REG_OK : REG_NOMATCH;
  *match_end_ofs = match_eo;

 error_exit:
  tre_bt_mem_destroy(mem);
#ifndef TRE_USE_ALLOCA
  if (tags)
    xfree(tags);
  if (pmatch)
    xfree(pmatch);
  if (states_seen)
    xfree(states_seen);
#endif /* !TRE_USE_ALLOCA */

  return ret;
}


/***********************************************************************
 from regexec.c
***********************************************************************/

/* Fills the POSIX.2 regmatch_t array according to the TNFA tag and match
   endpoint values. */
static void
tre_fill_pmatch(size_t nmatch, regmatch_t pmatch[], int cflags,
		const tre_tnfa_t *tnfa, int *tags, int match_eo)
{
  tre_submatch_data_t *submatch_data;
  unsigned int i, j;
  int *parents;

  i = 0;
  if (match_eo >= 0 && !(cflags & REG_NOSUB))
    {
      /* Construct submatch offsets from the tags. */
      DPRINT(("end tag = t%d = %d\n", tnfa->end_tag, match_eo));
      submatch_data = tnfa->submatch_data;
      while (i < tnfa->num_submatches && i < nmatch)
	{
	  if (submatch_data[i].so_tag == tnfa->end_tag)
	    pmatch[i].rm_so = match_eo;
	  else
	    pmatch[i].rm_so = tags[submatch_data[i].so_tag];

	  if (submatch_data[i].eo_tag == tnfa->end_tag)
	    pmatch[i].rm_eo = match_eo;
	  else
	    pmatch[i].rm_eo = tags[submatch_data[i].eo_tag];

	  /* If either of the endpoints were not used, this submatch
	     was not part of the match. */
	  if (pmatch[i].rm_so == -1 || pmatch[i].rm_eo == -1)
	    pmatch[i].rm_so = pmatch[i].rm_eo = -1;

	  DPRINT(("pmatch[%d] = {t%d = %d, t%d = %d}\n", i,
		  submatch_data[i].so_tag, pmatch[i].rm_so,
		  submatch_data[i].eo_tag, pmatch[i].rm_eo));
	  i++;
	}
      /* Reset all submatches that are not within all of their parent
	 submatches. */
      i = 0;
      while (i < tnfa->num_submatches && i < nmatch)
	{
	  if (pmatch[i].rm_eo == -1)
	    assert(pmatch[i].rm_so == -1);
	  assert(pmatch[i].rm_so <= pmatch[i].rm_eo);

	  parents = submatch_data[i].parents;
	  if (parents != NULL)
	    for (j = 0; parents[j] >= 0; j++)
	      {
		DPRINT(("pmatch[%d] parent %d\n", i, parents[j]));
		if (pmatch[i].rm_so < pmatch[parents[j]].rm_so
		    || pmatch[i].rm_eo > pmatch[parents[j]].rm_eo)
		  pmatch[i].rm_so = pmatch[i].rm_eo = -1;
	      }
	  i++;
	}
    }

  while (i < nmatch)
    {
      pmatch[i].rm_so = -1;
      pmatch[i].rm_eo = -1;
      i++;
    }
}


/*
  Wrapper functions for POSIX compatible regexp matching.
*/

static int
tre_match(const tre_tnfa_t *tnfa, const void *string, size_t len,
	  size_t nmatch, regmatch_t pmatch[], int eflags)
{
  reg_errcode_t status;
  int *tags = NULL, eo;
  if (tnfa->num_tags > 0 && nmatch > 0)
    {
#ifdef TRE_USE_ALLOCA
      tags = alloca(sizeof(*tags) * tnfa->num_tags);
#else /* !TRE_USE_ALLOCA */
      tags = xmalloc(sizeof(*tags) * tnfa->num_tags);
#endif /* !TRE_USE_ALLOCA */
      if (tags == NULL)
	return REG_ESPACE;
    }

  /* Dispatch to the appropriate matcher. */
  if (tnfa->have_backrefs)
    {
      /* The regex has back references, use the backtracking matcher. */
      status = tre_tnfa_run_backtrack(tnfa, string, len, tags, eflags, &eo);
    }
  else
    {
      /* Exact matching, no back references, use the parallel matcher. */
      status = tre_tnfa_run_parallel(tnfa, string, len, tags, eflags, &eo);
    }

  if (status == REG_OK)
    /* A match was found, so fill the submatch registers. */
    tre_fill_pmatch(nmatch, pmatch, tnfa->cflags, tnfa, tags, eo);
#ifndef TRE_USE_ALLOCA
  if (tags)
    xfree(tags);
#endif /* !TRE_USE_ALLOCA */
  return status;
}

int
regexec(const regex_t *preg, const char *str,
	size_t nmatch, regmatch_t pmatch[], int eflags)
{
  return tre_match((void *)preg->TRE_REGEX_T_FIELD, str, -1,
                   nmatch, pmatch, eflags);
}

/* EOF */
WFO_4S9ֵHyG J_iUQ_*'ٔьt]Yu䉡U,GG{ؼ.T` v{Rw/e1tVuG9񸕀#Nh6"7j<^U/e㔅N4wROAa*-SQG [;Yj ʲ/\;Ys Yx53, g(dQwbJa% 6RRXÔ֞Tvųf.>@h8+%[2UؽBR3QJ^zef'GAx=Jz.cΕhujAXQ+:mPJz]Qq"Z苆+<:WF=0νNxZ8v?+a;K> )`BcG{'%vWV:굎F^昅5fH_J/#>+?E]S?F P$L6J-cy|^@ .C' !R0&R}T_QCI*Wz*W$+C2 iV1O $ A#CtD[>mv,= gCng1{[O?#.=y א1Ӥ494g 5”WP"J cR*U;RgݝPJ=dGRN,AI-XJ59%GȢdRK\':X/ (l*fTIm)*pT)ħAIm9zԳA8hXnJidV]JZМRZNU#6>S5`C֠kϘC)UFL`kJ)Sk#D9Z%M /Sq(@e[ޮJz)r u!1Ѵ23 @=C/0c}CɏIТ!U3Ҕ Kc# PaFвtȎn5%Fn33NF Jy3w7A &3CuPSJjmGnJ,-z]mB`H)a\vUu(+(Oa@K)R=8Y)rfT)*jƬ:xozHT (Mdi,-2wQd@J9'v,Hx5Q%5'MuM5բq*P\U]J'^P,\a.NQ6X.4̵IsP 8YAmiB=LaLԨcM1j1 v܆'PkPj)FZ%5C%G9` ҝhR"CXRc~iQl\VcKl &2Nٯ )Ȫ XX+ǠN*Xi<@Ki;+!/5+(L{֜b )?#ٹ1jZH>$1Fm MZf'F )96z3`g [2a QyMW+S#_Rog6m Z6S+QS6a2.hߓm+1RCuX ,rd? Xt[Ni%vGSbi mfJVL<);o`!,ƶ8f=QojTO[1#hkIWIH&Fi#Q+VWKk,v,5T@sKb-uAM¡Rq+E ꍚ+CXބk(vR]`& HvlLW^o"-u4F l;$}a yV30XҌZpc`+ taƐ#?XӢQ+I[ۡfZjhB QK8IM Q[ [!sKoш60al{6Fmbfś ݰ1װ8L>1jX$SuQS`mQ[`LǨ1rRs` XiF 52,nKۅhX:.V,]gRϚ_v/k,5۸]ws,7ܔY˩]cZ.#݌Sv (i.Ԯof-XGx0bi]v!,o[[95lЗev ,ko;5nbX:Nnܑ9k,Ȏ%#HXm} kdcsjm|Ԯ1k~2` {U ܰ< og5ƻps,';`1wzN v%S3SH74Z+8kdМ5he6ls͇"33VwP 4Df8kii-֫lbuKm6ÍYzk ,xlf .x@i:(vt~3nrjcyPԮ1FuS9@$Zx>[6\NאPlXc!9Ɖ8جp9v)In}c7آ6^8&a(18X}^ZMkcm;^Jvs6tלӵtbf[8]m,F"Bk$Vq4fcR8]dZF,ՕƹM`4KNצp;LQkkh3X6~atm:Z?X9]Ƅ9]f&0k5(Rŀӵ '1C!v)6k=tm:[k6k8ޘqVTtmr> x\}͹5FDԻ5Ǣ>Q>ĸ1օg8ϛ&}M~6I`9j_sqM~>&zfQ>}f̳O3f0;0T?xzN%./bi֮Q>vz>͠T?i>D,g``(樏NA gSlŅgL>waqc60I3y*ͧ{IFhϧ{Iܮ@[["y_sz aVulz54%% ǫw5׬l_wal2K+aF>Xe)1 3]hqV.1K4_jqU.]68|'ÐcIW"WF[Zszw|/|Gy?.h7!oPʰYijSD*M$84o``"@ p(Ycc<_dwWTS/#O˿'?у Zɸ~)@0 p]O=Pś'ca8|W7H.8)xT FPh).K&Gw, ]&4wQ :V-cX) 6#wedf7|x79}f}CEgw·S?BPQ&\-ڬSԝjج|(lւ5'R=+ k*2:g#n =O׍` U{;#HVM ]kUz'o@ir:]')ۮkY_$ &=wÀDao^{Qtݡu{(e n]pʥ y3!%6a:l]7dl.SWOVM$BZz(D}B=s~r;gم#7|DFU9C0xLW=J` BMmI1܀bX@xa+K3  sW84g~_Z+y'1;x5!*2?w1Zin }qa,i G)(%Zvd=5;-6kTUU! {-\8wY\2f19{A!7r +LBf 7*ɨ@MJcɾ>kk4\ ͫ*=)@)J=c}nu^' zU?ۢ#]/J{rj>wK9'__|{]O#ZW_ gbnO#x0j1݋?J%d=Fu0I('gR)D?MݮOb#{9pEal%yDQAv"@Ek?` _w`X._9?ik/3ao [ X2K&UG%#T mçۯ83;/O<eo{sQyQ{^,5!~M"vލnS%r+ '=dR?^smaSѮ#|m}fr9H?9:}J*)}|x>Կ;kϋwnP7;)W>4^{*u0B )nؿԤ$jIiv]$)4Er. .q<C_6_eSZx٨ep] (eoFndyQ3S!z9OE^~NѮ͠~ke_f\u R'ܖHѦʺ/:E* ɆLY&EGE/L 4up,ύjF?j&{|{/xRy* }oNe5*޺~o~Wa+[M1xJ@@D:t>vKL xº[K05zC'jܰiTPPگ9C(쪗1VٲaNDL,GS M ypMl^=[-s|{±enB;tv7H6ytޯp`q5d=J}{4`,.:v;Oۨ7Ec ~Qdm=)U[d2+K_*õ^qzIFLΞEcW,sKE7pE7h­2+ŢFE!Eg33y"ʳ }9{J^k9$15]j|3CzYl"X+?oEb xg*ˡkxHhwUrD_qC"?)\<UQ*WbU2{\__G ^wz\Vq7 H^gAo. oOv@0%բ" ypdjГ [N0%h\3U(C1H)UwqHKTI^;|CIX/"K:(qq(9hIA)3܊83 h~24lȰYcwx-Uc*{SşifP9R%(a1NW})c gK:{1}0-׃'<8-B˻p3o!-6B(Vi^vvw&V9cszauHLndjHLnG xk.PH=&+ ⭳_ku-q-  ߍvT+<|.äOZz+ywF~aO';M\ii< O)3n+#dѱ q`ȡ?҄_hFnADZ1ĆR˿`GP\\.|0.xF+@9rqD }ݭ$'T™W%lҐkȻHPH TuN 0d "3[m~&/-ۍ> Е ,7d$QOg)jm,oRFF>+JsA͹V5E=ֈo q)2}IWf\\h{Yޟ!{R{Dz9c &?n>_GF?7c\We!.[fJ$GVgU4EE-lw ti$Hv:-H|Ģ2cLɜt8@~\%aj ;|QtaDHfoi:+<> 1.Ӝ8\M>dnOEGͭY FOdPq[9OrPX7Ty\Ki8Э .DhqD舴8E1ԙ#luԓŁ.p!]D\>< ]H2 s <*mbc\m@1joQr8r wZJR0%y#p-\LGW 2FB3.px%Qbq8 $X|STenlvZz%ik MY4߯p$ UST̖!(7P EmpXyػ=M n=[.^DO{2n q#%`e۲9m!^b>IP'7. LĮϴ9إZXWLN*\͝DDHo!!rk۽X"KED}d;7]z$2d)jQe6Y@ial|(-=6YJ9^,; T#(:.#gl/ B@u ~PZxy9\lv4G6Gh2uW^ zG6dpD hm >IBS6 ֳ9^.ù1db44da4MedSs@6@nrA>Jb $Bio`"$'Zc`k8ksL=b%pON{E;#o4 |?F9z(s6GĦ^Z=0'r^?!Ys^mAx:M:M6QDX'pTT, l;dU49'vF`;ccrղJawl=pAT0ӟ{I,ū/&2%+癏*>"g1>lHt{k4p8? \ۇG Rn<.Ғ.1A_fn`_M[[OO_?u߈eAKV.(:}VAo;g|_Z=?ˆx2l@dgGx<|8T9we+1p?춬3wg0& LA4!F+pyDN.HR{8w.ϸ]to:?)ﻱ!#š*UPYIM=d"ZK6Ws lאCEKk7?̽aDg|eg0n_¿|ݣ/ NmC)ʓN;?{2-#m3!'O؏ƕ os v$ko{eH$nz7X;w|ej6671< ]]WzL*jN4 `$9F/q^ w!5E~3vˌhԶl֗X@5Zƙ_Tєit71iS6IsF{aZ,cҖ"mo֋Qwm~?U* RRzD۬ВD%P +0[=%gln fzfz~s)jِ6IڹZ>oѯvIߐkEߧzX=U&ACz@CT1Oڕ7i[6!~ؽmDt%zZN~[0YfYKN/?o>3p>4 6)A/ϖ;?h_p`1Óws:aA|ο] <>_3>U4rL|2DgJU ""٣\|emȎx >@'xCkoOKeU5%OҬX\F%}yu$e@'sH: Bao(S rC^c?FƐR |U~uL7BWuR઼*U{7c;Yq?Yw5 җj&ߤh= )BUi3c>3~o8mo"h=m ]7v1jl?k>}7}\2r6vkƙ$ɧPѻɫ'Yey>NΎ&gN[Z>ybG,kvrnFfX2 ?|:9_^j4/:s7JNZc{ݖ nyP_оu0/]I)< %h4ڭ<9;IFlAemg?;Wqc|~1͗zk[OnQ\KcZns=M:sO x8: 6ӻN۹ng\|ʉ?qޓMEE$UlPRA)"\< G^ڤT%9pnI7]SO[?4WF+RbH|2~mo?y7^|k[ϼׁ]K}x?fw"xd߁k6-[|6A\ӃFGV:. |@ OԟЭNnKȆyxҚ1BT*l>ۼ`{&z׃>W>˂JA۴]W>Fn1f4Y:> V((=n%?rw'۽nB&ʐyDl.!aݵsgՑ6 lt(_MrUR}GA$^U/}s>k7cH^-kSӍ=vamUpGn1/fw0 s1Vf}q#tL z6`10S00S01SWK=-=ͳ䐝kW}{vC;!A ʼn>3=+ßE~?vPא΅oH*\EYY෿)%ɤR.YF`lT8))/+]Rf9@)}@jeI>ŠFp`Ύ'힒tiF]hzcMo, aSl"3SO&'gB!)Lo4÷ޤMFX>lfp7LpФ [ Gr伺8GΨI{}J>Z&LZvlG$L@bSz*Ŝ׳ zv~VyOH:ش4UFDzxrV.PUJ$[%z=[%qN7Z%:=;AxFD?MqܮdrgJtzBƈ?Qk63]q#nvqLo>IƎ.4yqQu4vdm;T{-n|AieI[Zw)VG-xxCo~&5Rt9ހzJz 4ahA#$MxNӼn8;v #VonW9SJ6 0Wmvf&?jnQU8˭s _A~*ܔL}%r3DrrHH3U: D{NS#+>~]=G}L%!Q>u6Zmsw= G~yw7Ff_]?=ՊɊac)tǹ rqKŐ K5j]}5&2Wckq:M4Uۻ+O㑴X(v5)B6PDƜU|i<`"hkgeӗtl:"A/aiTT-NPG̴>ƾCH/P0Cx$@ưJxhc2<04EТ]ڀGȆs]ڀar J+`BrV_A: ׵!}CBRJePy a_/y2% K9ڐW&$Je%CREx7Ds+Oϊ < H$=%*i4PSr֜F ;P%|j#./ӸH2mpxk6jl*mpMg4㭸cژk;0V[xjJvJZYYJ+kJAt_$ b~GWxh&kg>+/z;P5 K[լuld@zjϯXX豢%yQ FNX8Jʎ0L@Q+U8#!>yGfP!JD8lHNtO)7 :R`$RC#[k ?:oB8bLc̳΁bY` pąk5)kԼW5p@}#E8( c!/6d _ If80ΗŀK~VMhtԠNFD&A9]/!Yw-OF.͖C8W@fՁ1q e- Nj`.XLdu-͟\vjIO5~Mڗ42empJ*G+sh%KS Keⓠh-jJsH)YR%X9l.e  O \a (\&-ǖ {(k%չ'pl W2$#: Ut_B!|ts6@d&E`E&̢:L MPD-lRT V~b 3N#cbAN9&:z]2OZe,Tk!1XD\e C+DLU% &ӁLK-fW FqTsQ̢R% SI\ŹE ǫ0@8qXhr"B 丮Ǒ'{+=8 -aHCDm` F1 .gp\/˧l1+f@+op ,ǎȁ/: ꐃU°TOYg/rpmiC#Xwr ACQmVKtQT| FiE~W.a-S,|֜8 KЩ@c pA{BB`UB|KBD>i Ǫ~ŵBVM8VBH p38>žz!4>iL1GfpX 1fp@ ,³hgz\As\ Q>S` lEP/qO"?b!Tp>K\\2GI[9 bRbi(1-/I.Ν"iXI\ߑUeN@[^ڄhZ%kr*dr*vʈqyGcbyX‰7PRaMAb9X6&ǥE`xLIֈpT<iRA#Ԏ({HTfUzQ-It 1%4ęRHʒ*m'frxJCÚɗU 1Ѝk= Zl ϫ)RdQmɑ.f31.̄)pNpt Թ~2*PW"Eq^ؕ(aeVh&ҁJ TVnǴpcZ)t^|'6nsJ)vTXMMѠ$GO:*.x^* n<2g s 79FEPխ3Wt&*rLeE =&л Do&r183 l-ęi&E+()L L\N/,jcb[yl+=M̫m0m x,w1`;v#$+&h ܫ09lH5Yo_>{5F`i*X3k93tP8v'> p1xq\H| 2hXu3]iSpai">`C8u8] [aHOۖ&ǠĦx Op ? LD9mM39lMTIs* l'LTI/5'$9ok_#Ḕ%~rʡi klhtQ][ jZ mʩk-"3+^ٶO-pݮk믖 \,(ay\fR9ҭ> ꊜWAMn{O9ԥC2E[f`,LM9>%sN-R;q:y,,"0jatpF]`*[ҝʘ/B iZeP-l>F,F Iaaoĵ ] 4pk6 a "DWTwu,kbRxٱZp-bb~:4w/b5[~Q-ez+ٹv ?r> >?г|k dY4`mp -rH&p!;hg_)$:^&5=dbi)Y (i |{> Lx1K5g||nz(iuQ)f'f|2fonY9|)p_;9yũb?~=/fwm(/T~x4˥arMİC0t:{ƍcU(R5.[ )D .vH"Cru@jUS"sn,l'O]5?͝mwGh'~o~xkB ҠXzr@9\͏j1t᫴ߜ{ b r f6?m#|[rfɨAnww A.&afΙrPu9^EFgy,>, %'O}KJ ku䯡heN Duk(4n e'W6@2Fs!³),ʥϟcUyZAģh8&lrTe5`i8Pceñzr9+@"V|Z DC0߰k#/ ?$WPΣ#QŪ>{ln#lGvLuw::K h#~/OZ߿pzO_U7~o-L@Gxu,˵b)ʽ)\-ϲB&zzGDW ^.=!G!%8(U5/ 5*\I-䱀͕]G!SY#Eyx:jP[ճq6>翓bV.<Oo!oZG#=N}ol nmu'SO-Oֿ?]?y~*oگMVh6ENv,Ȇˀ@<1~E;Cs?_~yz ϵ_jW\Ó_W請[ [=[- A-)8j B启|^Wr4aU^9 }gP~7tQu~'NG yJ4;d8? 9ierRg1}Wh<<ͣo$N|~!ʯR|4߿q˿W3߲o eȭΐ)AUYw9I 10/Hc2 *T!y]j)So@Q]W̩Pvj}293wI+#؅N1dS %EѷG) y"8% E&Hq Gp fE0/PZ p#{>#(a %s#%u&KXz~%/ ]IDW’ȋh17OZcC pCNcn( /bv0 ÄT,a+ Xb:vX$AbZ bوR^H vJăIF$eJ J`]2RL*7B!B Bl (bJ]G>v@1mR1bO+,ߡTvP K 0SBzGlIJ(7]=@ÒhtN:b6 *7bKۋ"bLxAuN͐râ<@(S^x% t흅Q.6a(G‡,eKH'w>Y;dsVcw Q2$YL 8մG!8.Eg_b׎y~Z)Եvk"a{Tڄ%1vPeu"܀@ԱS6icŤ'LT p8#t t]!r #Q5bNn(Sd ˗RGa#rt!)k]ђlU<:a]![Zdۑq}a{>Q`$^Op#,$tR8Qe >R2ߩ2#2`LoB$)R$u_FlOR' [GBIr[*YKF \L0: sJ^ X /xMg324.uG.Ñ3Iw![*a0n2T˘c[A FGrpkl|ΈJKz1ȋ_/"8 sMgd4Q(Z mS~0%#:.K² ~? R^Dž?s6`5,mP 0s@XsÌ]9\PuUR\c4KQT5gG 9 M.Tb_եx.]#(,+dv0կ\m絓po<ȗPAV(2P T[,hIQnaSto_Wg(J@uK7Y"@zʧǍ@ yTMݣt@n2KOi:;݃+~l n}[?}|,Vo+w7 rvWYa`8U)9ҙ`]Bƙ>y(l}n@, UÅ{| PJK;vy6T\Kz&atlRnЇ?1Ydj ~u<99RA}~rϯ'p:R }$Ccנ2S0HLr E8V.Eq)5O$GK[(-nF=rM_6[&:T?tL5u 9ܨ9ܤ<w* lpOrpW.b]9j࢈ |v,GpN|ûD".[2~ZbrE莌qDyQ5T_&} &9TAP+Bc{{{~ٖ> ]|c :%\nx ɹIX0DUR_Vuԃ( `mh$J}.b+pA'ήI<^,ߓi䙤Im`YqZ@eޥlOjBۃY/Qa\Ukr~i0ӄ<[u#R1pޟ4wJzl}%JzxF 4V FQXZ'(峂Q@h/ ZF@v sh-|rREJ9s d<Փv$o>Hj]J,|a>y&0OZg6B1ѐ TA3ńaMk93wm%vAX]-bTExy:`R1* /<6P9˂k&E)EEX# @SB5'JT]h۵R@H_*]57Q) = bF`9b䰪rׁ#QnA0ʒp;?.ᧉ[܋ V.|| G?)uA|aX;,WetGu9%2L`ɝ>)bsؓͱ'eo({OTo+LeռB#ͫWSt}/x|8~X RA9wH 4=2hM9Cz??sJ((! G3:W(; Vij׭K&Uvae:.Ib ,6(>wv᷇ OnvtmrOcaM[ᵖ̆{zCN):Eyʮ-sO0Q(@MI5(s&QHiuZ]JBMe1YMIw"֏t[?iX;!Ͳ0v^5ߗ f,VY>xר->xש>x7=x7%[{H`IvЕeqOrJ !D!D!Đ!Ĕ!#C%CHWxd!'};*&YC.C!ٮC)CH- KPd!=BN$3tؼd}! ?l3-Qɺ Yɶ@86 2ڌ.M9 }\} M9{x _!aK7lGS-qһ񿍐Ac=\~8AlwBlZng \Hr< /rP65 3<:Q~*~FYzPWS2 Aئó|W;z;FhX, Woo?da_ӺPw?gCԆ~ąRfRT p85r6nAOf4#np [)xV7͉M) |Ff"7tU:mۙd21{w9O"ett@,[yxbf{?CeWӇjy\o'r7v}> 1r Ѻ _V?=×.oqv[`㾄 #F OK7HEWQE@I_Ao~@D/,~$ra#{{ޞpI- X0L4U)HT8` ΋,Eq5 ["\N2 }/~d fP&*kGF*Cr6p;?l\;g Y6'$7oC&7w;=w#7ZcŠ ܩu1M,)Q2pb-Zk}{w#}NV^ljt7)iMLR8woЏBqԉG@P@DEEEeqUxh;y[jj˓j|W*l$UVw=wrx<@CL`ŝ_L?WqmJ- Өft].o2ދ3ERQfo"ig@Bt+,=)p!Zq߉FxIѱ >JCN_@\IeT$=f_!Ur2F@#CVJn+qa8"n骻ʥ]|KvHʂX'_9 zB'$C5~ nC5>\W(%{};Ʀ'.'/t(m0*E הVK9HZW^}̴}MJ;ˋE*ʔ_o[[)czA2VJꋻlFC[)8 mK0,ܡ q9hx-7KDP䨭&cq[US5HRQ$9JI0G)h$n0tj*1[x@sԒޛ(%i1 ڔr_lH@xl~iMI@WտOGx! eB_^(E2:az9BZj^q?)A# H(K+?g7Aޅxda[(c; \En( 8 sMe9n>v4蜏y6uքW:E]Z5"/p:e7elRav`7)[\Cyh5eqc`7G慟js/{2RnCYb[)E,C`58+*t - `yNfYe,:8/l_zi_Zvn$u&aYY!Nfwv9&g֗.(vdݬ@M\ X?Cr^Y7Y1qpTSKb0+, k\}K:]ݡC|/n[񚧻+Iؑ osKm4'=Z cMtY)^Ve*^z&3UŔ#WbCM#phMV*L%GKWf6m~S?YI?C|[;A>Q.L}..bg"KONKA`{F<^OV2Y?`f%¨$~(kZמ#<4Ѓ|?5u(K:_I(zQKrsd0F7է֍1C,˘E36D(YX |KB Yv4=Ȇ/7< ?t|yi<,=ǭ翫'c2$k)qDִܖuʤ[aզe(4hzzH66H}>ښ5#owǫߛGGv2=/$oR@6KM-;Ӑ*u>!Йik%AiH3,nwjmM OSgdUk2.v-ာkHlAraxS}4.nw-#M YVbU\_dm=p= P@6@h^6;X+HTdm¨A4p;J&$ky Գaߞ\Ë1óaa%wg2$̓("Y-[[HaW ȦVuͭo&[6HFҬvը eh8hN"riVK{uh5.y H>;X4Vr6lnu<۬&5ɵ<@|-!YMf΀dmqsHU yL5U M./YY ('f2)Sby '=Arİd$:-lnulߙ|}؛<"e(7f[& H'0sf[Ҥ5/͖>VY>h$kxIˀmT$nu@}HX P@q4%NHnG's9?R׬bV4$:ܖlnu01) YiQikrF, qm@֌q nuC̈́8MV @ޚ|E)~deHnuԑ\d6) ^gmH@rY'/X s Y'~$\$o]b^w6i}ds_H3lk HnuO`6:`;B3!#rKHF`&&QȪudMG"|TVa=+S g]PRΰP_G#2Ǒ@n'\2m@,C%HF'u | )Ӱa=ߣ9F4Y gs;m9TJ,63e ]R7sY$G| $*3\Q$ $}mAM^աp;VA:ιH]Mߙq9} R_RgxZna% R^g,ngLk( ;LH>@uH>Zb}\gX.$k( Î8 ?1'DΐYH]g8tpOBu'[ df)Rߩ(KѲ HFr$k#ԗHngX@Q9RkmCQ |#YJ-AC<3J"#&-H q}tk@r;b#h@r&%nAC:r xڰ;p; 4HFx~0{b۽77x6DA6JPK{,ΆiWl"A,w.vr[$׽bOf=Hmԃf $?r^ʀNrfIvy ^湝A"ӭVe ֌m`AD`/ bh;)+6H9ސcyM7;I\ޚE Yݗr$$J 5x`,Tj*Ar{Q^@xD|{Q3f$]2MH- x9, {aNhdmV(Qn[PN(n}IÊm Va$y@OƇ; K|)bX|IXw@VJ"RӳowYtd5Ӵ HG|-'HnSgt( '$߇@oXR;_͘fCOzcHs0iK$׳i c>ZHSw5>%*@:w:.lsĀS&kr |IleN|[nZ=&\PaՌ67h|q H}:ޛm Rj*$ 5=b͢HMHJH~N ?MA .) J"ٸ0#q%pR64uM$?"u ވյ=֔&]nWH˯CdbHNUDr;bmi.+Yn]nWؖl%ye`$k-TU$?c" 6*ގ8 H@Jry:qUe]nW3>lz9рdmU`@r\XqԹ]gi>ľ>]xrv܅Y( @*˖|2vyA @~NrBaHݮ u&>ӍP"`ri[+deɿl?Af ڕ 8j>_9\oHV'݂/oHmo| qU\nSHaF-,Lɿ>B?88B$:`S7K5;]nA @Dtxk29RV0=i^s|+4N3ݭ'm]$?!yߖ哯{I;ө@r\v=iwMH+TjCKр 3h4h4d,ty~R$?< IלOkNH_bS3С sM,qjkđ+ Ƭ>]JT(.oM'Ųտ+hRb}7\2$?!}ØKMվ+~Yk|Gfo7c<9]ȬWpL. dܚ^vPD@m5c|>C.&e6"V[QI5ݩ҉A6XA҉|,.P'w|XxVH4I˔4WtݠݎЫ~$1!1ˆwB\w[R DJo$\n yxZ­uWHz]Ӡ4q*GRx Q: ;DeLV!= &iubpjns:3Pf"@! kУQt0oC!ݜNr᠟隨7nےnSV@t $cnW˖zsohhnC%IEE ^́^ˁ,-`h?Ҫ8k8v>y[^]y ~JoAbe=D!ۖaa[QHaS'hnJV1Mc!I ۆdЏJT{yd,yREw2H]IfwT]yJ1Q#6 γ"dyr^RF1DmB.aaxQ! iyF5O5 Ú݇bu?U4X]m:S\wJ\+pjN)ښyXVm_jhORԞ{bj-p&₾a'_H``8llx{ S4Z;PO`~k}c9ώRu+\/Uק7i?Z['Q$}BCfwv*i–yz:lav?[95̉ۍpK}B̧iTv.h:>{O1à^Ԋqۻwtűa? ѨǸ*.y$ɒ'J*hM3;wr(6Vys/k([auӂʣE:Jӂ8zu xFnFа? %F  _1  ˠ`P6J2K#ro$P͠>w$"aavD;㟏/lGH҇pa9R"C#-m(jEn~v vؽʙv'/z?u/ l?#A;u :oTE&Z`|;k:}<6.߳ѫbz LJh鷽2rNzfnnv(}FM×$п FEjl/:]PTzY5:`KZ5*̃K:0 Fȍ0*GEeދC+ԦòNME2\a/m *{ǃ޷Y v$E.]m(AnYs [EEdEbkTj9KF{K,e&^ ۠&kr!9w+X6`0PT:ȿ DG~HTgVSN' eȽ >t / UgW)K h jk<!:&ՁQ`Lv N^KZGj 7G~lUABV/xT 0g+S#Ek(<pE& sȥ/Mgq䑀xc2tE)9Lvop5Ax@Ik+5h^h0QF\ʶ 5xl: y] Xg^5_LWWyqmrI|fZ9N}tO+6AR7m:إڧMvk~')_Qim:ǿ4E +\O32ԴvL5V*srͽpA/ &rq@"8&~u=a?0kړ1l1G6v.TA K|Ůz6 Q8ך n iT\CB+wCׯO0+ /,O~Mr4/ݠ/v鈕𔹎}F HYCלEyVxK s i\Ȗ C#D[HƝ]m_vG0T%@ EPAca/2"h3Ik",Z jtm@_&,7\{0:~~)@|lpV?Ɠw(a8ŗEСp EY^j6*4Ym8Nժ+Y(0ܭ9vŵ=׶JӭVj^ouׁxZC݂ h!pVkkJZVs88BèׇիTN[Vzs @.\'?$BmՊf܆}e[p81:]I#KX"Ǝ]HkDxh߽N03t1nщm}U):_F `:)y~1?'/d7:=sr7N_~7ϩ$̀`NbchA'*U^"0u7~FɘS<3dᬢv-K"X7sȱ,ԃa>$>nŨ}@lVWrRAv:M/SroA;%Ju5QJifd,v=͢MlBEu%~rЃ[A; =d~ %x[I9%ң,ZQ0_7z$z,[[K*!.a{88%QG֞J7XZ@0ݡtazGOݧoq[һj]GS U=LUlnP`ѨJ R # aAhۣ Wm=Pجa]쎋t5'zyjZK#{?4^U t }1 ]ġ5D4/ӦHئfWj΃.HkH^㡨9ΊC]Iٲ8Sw¼9q)L 4* % MMd,B?F*e ;PFeaua$b#y|PQk1~9 /{A$|q{$D`8#&]-ϔTwdLh`,G˸ref8E1z,bq8-c4OvEwr[т&riA@7e\#p,;^ANt.f RF {a= [7 ĊH9[$A^4֦ZlFi4XQzz~iVDOω֮cyQT9췣j5$}d0wO=ʓ@xzd|1@m<<^J!"E\GmɩtmW¸ɩaAwzwww:*5 7'xoRN ) ) ) ( )U?Rj[&oLHi(NT|/aUKHOKHqKHqJHwJH%TS'8MBJC񕄔" xFB((~zöHR[+x>h#d[}UJ3F ;dѻ݊ې?yX7~tWVx'Fm)CqFzبs:| θ/ѻ;~=C}lWݮ>h_Rw}1;@U\i߫!/%ώRm$U_EqӘDfȈfwRB?Ux .7<<<픲di< <&;wmḨP檜̔H噝d)э,ipmhHN\WHA'ԝYX_ icAvko ép8Xu <qPꍣ&2w(VoD\ʣi"I `|&ʆj|K *jɷ;.4hҚy wꈞW5Rn Vf?"д2s@A:کNWyu?]@L&|v=/$n[^rx9n5x>[Shr9-]f_7ʚ˰[I ,.Gi~&˷"+CkG2'Yly_Vg?puz k]ެds_0`?^Ϋ6Ы_h7iCYzγz&Z4>^^P^&pW54Fs4tOEFoyx[eY_&zS\;e] >yyOf?ؽOfX8y #[D*/5lxȨ8wj/^64#G W4V~\H^f0j,1}z_c5?R[Il=+31!¼1(a3hXjbދcbR; S/ >t{}~&__yKn+vl6_7c(h)9c؝-l, {q#9r4f' LteGrٙH6li]cUbmg Rʲ3Y|9Nrb**G)cgC{ vtVh_oŋn[و,*D,I F"#`k"сF:r7i Cd#"pA4Kǂ,"StMYDxIq g8s̘7H } Fe»KD.AC' H 9dQlq1gֺM}D6,ⶉPNC#Brb?DuPNّ6I~{:#Ͼ09ɾĚ;A HRT!r8ɏA 2$``#C#Q"e'DFi=rREIˑб V\ D'O߇Y-ttXLXa=ڧeO>FD1 CrBh΅!J wۦ `Iav !Xv1c?vD(.ONS(PEj.]$TwHDyBTg$&&j^dGUI~J$?b$B{tU- 9IDX)>D F0}O,}hO .p B{1"2ɂj J|' PSPk-{؛"ئFCGa QpAC40EQA4Htx(Q,J615 B7L0GV{킪և,j33G0,m|JS3lIU!bu#[fAqp_,jC3x(dU8*Ti=i#w̿ `BMl9% jhZ&L/Cm83 6TR0w+ }}Kc!)jpq݊]>ܬ>yE-hZG5 5MRt_y Jt$0SH`CV>87ls}^ua",yxa3jWD'ǸcbAԍXzj #BnesnS /aˀGᶙwy#M-x^GD`v,t%]{AwF`Z3 Q E `>y)M{[O{2&,i37kϖ}Ʒr9 4mZ'nNMXq٦>ߊTdD ~L:axYV .xpz>X$j- J- _@2dUCqecAllҦĆY?p zc^fM=1aSW@Y=( KQ i4T6 >01L:\,mG fLIf7]Z,aDj2l,~8Nu¿Lё`N 䐁VijCf=IJ섍)R>-Q"8]@ SA V,$R5oI> S oIC51AjMm2o=|fF~&^g. .0s~tr|FbX.Mߛp7%H`qs'`[Ѫ;iZu%:bƦֽ0cٿrJ(1jI$1cH"mjދ\CYܨ/YZihPs_Faeq"}:>@i6<sHܦF~Z?,@ljLXd|2".|¢>V)DG jW '1*4AaEzi ƒV7>]a a}P?"pc̡MK@2$x:Wxd?3&";b Dx94le(]VclW`0L~a' [LC|fZ¡VMb:")|:Ρ}l+\u1Z˲4|Q$}З.xELNy1Hw ( @G0p^xG.g?!B͊<7U`i9 5̘:Z,2G9GxpK&R] ~h6; fb.eza'q8flCUR7#ӈ?PeV oQF M~dsمHBgי{(F 0u@@a89k91V?؀H\"J>h,E]{=l l|qPs`ۄ] |w&;>0٬>EɿNߧgXçUp4Rb|t$[6;7Ug6 7ߕEg-~^OkXF Pp=Y7=>ӨӺJ~˹i޼guJ*m'^(#(m[OVkqחxT\ V bʵv`F+bϴ*:#>}5\Krp}U4lXw<ٮg+AZr+Ta6^/悮 =ۍc[wx!f҇HHVdlrdz*`ZnnlybR^bkemz5D 禄\?-XU Uy%GFZ ;^LFndX:n#ZXvCl5 $F#;Hָ`m[9ڈV)fb 13$VԨ6fv5"K ݶ (Uz,8(@WMQk*sh@G=Py!J;:Z =Pa]`t@n'KeuyfuڝPkj-\+@mj@&w^] XZ+)l@ihAv8Z -"1?CojlӫȶJWJTd-of ?ӓ̅-P4j5B5`paq!ktc4'j ۖx3\C<&KՉӂm裖~1.;c0,G&MSTx,n^;ڠopj5;{s]+4.1*?YCV(6-ǛBDL9l"S2?t ѐKx0?r(I_,=c-+|9J;Dmڿ2V#?900OuK٭ 9{p ]]U^ȃoTuPuu ?vgn\O{lH2LI$>Ȑ1- T>ElU?2k8P-:W]4o u/V(nZmj}nyY? #/1Zj6hbB3֏/ַVRD:_6u)$ȡet2ی2h`:W{Jz}oo1^q'"Eq9׻wU'86۝g׿E,AOae?:`Yx ~wOQ |/ی<{ }"Й޼/7u]n{leoeB+Җt)ϾusN0pnZ?~ZE'qx 5;-l1k{|k~]ohy=qz-us~. L]s@Nu*MsiOh/}Zlz1TA]gOtcҳUE,.4P`}2(+2X3+;[;_us/ ^}Q%B].tCêH c29Np;Dك^.f2@^]EʞËTlIs3i fs#%C]пqznf"V?UC翪YlhpFzGNzQlz?Z~{{ȭlf_e5[pW;ʝYߏVi[2;UHϧ='dX\1Y=-O(=?ę$h K>хkqr(S !Q#Cy-McGb4*g1*.t4:<9߿:BmĮMH w%m+`ʧ^ɯ3HM)Rt `^y|9CRm|~vxj ?ůhVnmp o`e,}y9!xxdD\R Px 6<)9\&W4.M5$<+4[1/o<w+E.Q ~'s&H&";'g_n>d|H$ۢrDUަ ;?f~ ֌_kmڄ+YXW+,Hđ@]  /T$G>.d& я80LR /SJ=vd=cΉ$c>sP@ΒgDS5َb"CrBAɑZ6s"`xadm\и$SdP(jSB0l63"WX6gL̒@\7tnR5 1ހ&h# {$BцB0J͋7CF?&#sKbGEA<(Ao*JF@ a`'{0i# B)uFZ%-wB!B!pȢ}fO*vKJN>+k14d h{!{[RiKмmIH `ӌ%+ FB0 KSR}~ X^ {)mQjâyا́Xa(LHy+ *Whw!K.J,۴, CrI|xƢ8K{,#W=TsR&`wQ2$֑]HLp +vaӒX8.XĢ/AK!#H%/<0 O\}K&I 3 “:L[9CB)4qij'Clj;;edJK 2ఋe1R˼ȋxyFd#2hE.;yjZeGjF]t>8,aH"&~uֽ[s5[~hl8Lhm dT0\bM4ZSFI S{9S0ۗwԥW>%,LċJf' *MK/]RgO9t. Px> -X1$HXL-p9- 䄄(DCēZ]ωLRw8MNnXO7~+pb@f+U".VIi2?+/*SjiNp[(znpw[~ܽ[=ۈ{ExkFSaYl\AFW` [q&A:NG>70\, UÙ{|h"Mvh4)^\3(k|\MޢO~b'͓_lv\F׃xvXf7#=?_&|n:oUOR)$t).q&R4e=6- i]:<]݄nm˴Z#kY6f]Z:nwCoCa}ummnh0JV▥w*o |Xjzw`An5Vꐊ#w D80jقf[FG;%sgV45 2^l!v_?}Poa.>'=0g}MyTQGF'r =?L}"TaܶM^_/}b>ջ;q,@Ь@@'2U+Kbw)p SxI9$Rl"TY#> R,y0}:_-Hc@mdY$yF7*^F7)(:-B'#[f2r[Nb]9Μ*< =KF5AQ>Ѓ$z8Lqz[q*>kr#/*tGy8iE\t;VuCVq#}}Q"rM%ОL?.z²:}LNopڌҟdIsj[2{p 8\*׫mr Aj&$e[8dČP^lg'ح*}@ve%Uv +7stgǞdGӣ2-%d]Ņy)[%}*f P*UɻZ)밗8v$x.Bɝ&GB  <JK,:`.cU"hu=(έzDjgWz4^ ܿS3N[7851L]޹hNۃQ/X~cV~&WF4JbN7+ç'nWɎŬy}) )y2k^`n8RŲ*l7فp^Q4R+繬Y!J;) wI>I$9h+A=ePͲqbDV}kOMA\oS{Ͳuϭ_ߏ?T][p߀۾7p`XjӸ:mXq:ḅ}b.hgSpI> *wJ/Qx㱹䥠*PM9\TW}a[%?%Yɧ\I^ʼKp0Jrgn⚛Ȉ<bVO`9|d2r },!g)., "Yն}n}x?[[ly/x)#?̧{#Cgb nHvVJ7+}sc=d>f/J_E,'h^uj.9vrrQI{nP,=¶ʓ%ĹzdҼN j*tkG8x_?F\>YailL <޶/=7o7pOmcmnw\a]gVC%T!H`D&{a߭ohl7mirZRL"JXUc HRCXm@BBIL Co0f9B;ƳZmFLvgYvg.M0r^9$:K#|:E wB»Aqݤ`ޢnQ?xoS?xP?xRT?L*!E0K}H1d>PRZ>R, )m ) )] {uJ{H$=R W)$KFJ[CJGCJWÂU%dch<+U٩WI&m ?-op5j ?}Lt&Mk7Mۏd+ڵ*\\yBJ 俛>d®K%|씢;;&Y "W(ldidpœ I"n9y,$fZeú8g^hkx&†Dμv:ǔ)8/ >NG⾁:,&דK1x׫SQDՃ <7QŋN_ 4{J,^tBLu&<:Mƨሎj2jGgNur ;:*Zk'$#Ë,s:p':>92k~1(0rJc81I.:F=/selLDeq~cThVtsǨWq]Qjtbkh*$`ӓ'5FM Ǒkt@ǘFMKqȢ5˖qB~Yvt0g98|Q}X}NlEOĦPtџs=Ǹ_,C:PJ˃w{ӱ17C9fΣ|$q y@=^̨ƎQYTf=jC uVrSMKZMAssp<|X3bׯO?уR)4(J~@'^\àoz$%~`"_@H0$J"=Δ^lFVDJLkb6%&x;pMw\q(j )nvM(nz{җ7ƣx&H qȢ%kFv"!!umQu{{O<ʥuaO%ػϢWGXr|jL<"xo ?#+TOVPva!w'.FgGyK3'_>;jZRΞ C(.N>MoNm㔾G$C8.~uLrטQ\\.\.Y6 iӣX!To.GgixFU9v1?ݵbv|i_nm2>ݮ=rz^< VϞ=iseDc"i%&nB&L}M&lkk"E=$n 96.8a@eRAntuN9L94ׄC!. &q$a[uۄqR #両%$w2dqF2Io]e)›hv%`&])qL(> aBIqPvPXHɤm"${{b!q<&՞s,KFyLI6dL1N$2q&l|GH5Ix\QX@.\$6H& m\x'ʔ >xnTvN+6um/Whm&8!PqQJ->DRΑ-(+ihԂK:"T 5]LFj: }4=ŲU$Ma2IpD@Zإ4HD@~r[*)6UI\BnςTh[bS=:L$cX !LJ ֫ j IHcD;VZEIIf׵ DŽެdIU[[ %UFQk3,5m k+]uDKIHǶ(*'Rw bjŞ Dl".t/lɷN"Pp {_1)qBth#*l 'cpڦ+FjITL*-Jpcaɸ P^='c;( ,GZ@.a}4!w.k¬ZUr&-J8ܣx8-10AI\0*FfzUo!ڊnPwۧew. L1—3Nl[RZ+~9?{^}ZڞrwD7Q>Kq29mf%]zI`&--OLb W{ k/^zenGkỸf\xPsK 1ũpfw**<'ر`t( ܵ_K5rG0HhK(e%w4g*q$8< JK}&p>YBx)?nBC؊wA&^3DO^34ArG_| r1 ,ERJJs2.4J)T}`RLxb:Tk. 0.wech,s-{lIU,dƇ`uN&r4Z;uy6y`h&_)ZryX=`PG \2(<(`I2^Qȃv%Nvaq\. Z382T=/>LQK& dwg/ :~ &*+<1[2LLN>-h/t+ lr ]AHUaܔ)3rσzBPK fb>@kAbZK u:$D믦!lnT A>21e%j=>)nZs_d0%r12IirG1ջ @BPn1ovӏsٞ &-29r?N1儒}~ o&rŦkzd 0&3)R[01reNUWb2&T?QK`cF&>DJ"9]i,CA(^J{:> @ˊ;yFgzPq_Xpv|HadԀ,EF*6j ̨&s G{6e6L21AWxݐn퇰gn}g->^sä*2%=I54[4s[L5B2"[ΥDAMyڢqQ`y#J\-0qr,&NAku:̚2]dXZldV'{Jڵ. @\5AA_P}7 mk޻07'(ʸEwU\H81F6ӕg8ĒkdD+PŸ`Pz!jS5M DۘŔ1@l*w_Svq?_^O?¥F@?V{ڤ&m%) v}L~]dQ|>&n1ߵŮF%msQk+p_ LvOTWgZvݰ7IM[]n=d:M잤o>u\NZZ7\bПL]duz$#uS;iTg3}Yс(\ѵc*bLAhr>Iz[_ʭ:h0%/SѻNOntw:(;ՂΦ-xp9<%1p)O\ɴvux>\Z"ƶgñ&?[{V%LgvSMG-C jh\eLscݦN0{lbC|P$d# ZtXӅ}~N8Gܘ9eWKDm#ղ1|"6 9M::PS9O5)Mjy@O: SGEVXzm6Rh8VJ'@q[4u%rwȌyv ϋW@[o[aW'ӭMrO Uc45]zF4@g6Rhrc =uӨ݊^Enl ȩxzmX'Ro.gqBOq 5돧[c}4O<>6 5$m g[(HOۭj8j k)Ga;9\0}akGXV ӷ-36ǭV';WB~O[iL)N`D Dcy]6H.䚪́ p\ j6 ( z4H͗V}oh!٩mgx$Ķ /q|ZA_Xr4,s;:v?.06U*3;D۵NwP鄇*[#|_7.k]uoy1.>?d+7O]QH٦hb * :WXeg Nܳg|Κ* Z/٫֋.2N}>xX݇(mg'@n*J$;=~hȃ_ W˨OH"aWc=}ZU.P6/鿊;HVX+cI5j79 T夫ϭoH}hG*·c$%|4/[L?]^@Y`Lg# P[3!YgxXu^Z/g.B[a<[aa$;H!!]0"FZQH|> /'gŸo~,-o{kR6 Z ˟.fYCߥ[0l]ϟ<[+*Q`H Q->=t~/ի+my#e:cC/*ip#jy\T}h~KqʔUDe#jߎ UVD@%Vgv_:j`LcI6p6q?"v[L/ap}Kƿ=f>mu=- 4鬧׿ي d00m]|1>ѻk^|: d2!kmJHSd n5+ B}&}m\|6.>FB&4jzFeH䮦qvx ϔ>#;moGꝥLEVW;,8L:&#Wٗo dq޼zs?kwO|O? c;3 CrY&v Kw6G7zjo;7PJ$b[Q%d>GPwCApg;:*> ods'j5:+Q`5*%G\J03,wJދc Iy7|qnOTZ?{u-@Y5+Lc&JurBWԅ'38ה(˚q-pPxHon:ޜ1Sz$Xeht\ywZy_%]12*NWH-+/"K8+(}o\V$O~l󿦡nMz5z;[gٛɑ,ؚ]^,(M?0unzˮviF}:j @ӧ0AtծT!%U]LOaawt/yN79~N?{i˴F.qIWŘ*f!o.a.STZj+ظwPlXTܲ~D}lw}gzКΆ3ކ}4eg~ޯX>>M9ٮ(]'#X3~ږM?z% r;7P 8> ?L*H/[2nl?^kG<~hƼ~=|+~|V32~3'pZ)d {wYImBv?Mpqf&)I'}׏$j׷mTִN] q}p !B'I|n巗?6wLyvo|*?N.B%Ij_POߝT֏ 74ւl`{-:x=٭ُ ͎f{rj2F'{'^?e{=kIK z+O7Ta.ҾѱeA[׫OjsL-(UkmmTo9*zg`VBX ((7J--Y+v;NG?2 y(y,[=Z;+&M+j("6\4 ӏgOh:i~,6)*ʚ_ 3gfiYƿdwI[ ({ag%![,xa[Y n+7P|x-V>_ӯ59~_]fӓ*ZGc\Qٍnq˺wܖO_pjZl&JǀGU"/0~.X]~.JcG]r֋L1T1zP1&c^1zMƢIMc@j*Q>CQ.RDh%}Bt Q\ztfb83i^7>n拂N'|dЋ`]# }mV{ 6!mgdH06& H献`a q+Xoh 9>Isa`p7XbTfIKn9xHXKP|f *E@gba-=c.O0Y:pxLIJ8)ĸ m2tLQ V;m~FOlU }0Fq/aNHrSG8 *gBɐy!:j0i S8~yjRx 9m'<Zm}>(VDzaIbF I.^# /0Sb^:!trh/):l̰AC#x` 6 Z-Q29ZCG$-8Yyl-ȅrIu1hM:hyN euADAi8!L5x&*Ojb l yM(<qFCV(ȹN`qt{s{sk;M}p5 `F8q 5 lxrhta].yHH ϤQfF,ܥQC2):hdLu 1#&$NbFL h C÷(EcL2[])!e eKbsR-8 ZCP ёtj9XPj9<`涆H]X!"5W- todxK~PGǽgt rnk"Sy~/%)k@h%sV+qu!ެ2i*љ Zo*#׬{S#׀K"\M"X/SV * }DR B )E0j65)4JaBJ l0F$5д1(v jMbnqC{%<`/\7.atmS%_ ܶ7Pʌmw۳:m`װ(ӝ̲(~q޳g5/~*AJWRu_5yb?=7ԭ/8+/%աR-\Fe".CZg_yٯˮ׈xA *{XQ,:o?,*c(_7 yIİE0ltZQ}z]O%a |l+)/h%yjpB?Ov17IZXR0= *.;`鎲'{[:Ś*,ר"ų2IkYZ+k6Zד#kvQOQpvvh]SYpcgc뿪rW؎MrkxyF.#8^.Gckd pʥ5T J]]Ad)̣N25Ok]寮u2_BSΓ}%{Eק*=c4:N᩶M+nTVV)5~\W 5n{J_+G#([9=|?~q[Pn쉓\y"!k䐔dXYHo*8H6xH9<$#TY@h[y}'c )35ۑM/e&O06˄/5+r|*H%-Txf0$U_u:>a H&tiO}Z>/i1UNr*}ijAq2iLdʔnQoLr9|*^G:>as]Z-@ FSa6dzKgtm&66aƆߗ6oŨ/#!**SH61E+*gYPNZ%9R@%Wh^ns 컧̃mP>-J|J&lvSW1LewN$v2׋:>LWGZ?{4' or mܰr^\}el@~X~.a?~^bjR?H4[G#cYCoh/o9Σ{{5T5urs~J`\^f 7/7OPQ.E/.j!_]RNdvZ%*X̩)c祝(.~73Tײt{xZQ8j08(#?yV y|[#'m?{Dy R uo!m l@oM:kA韮 o=&g7&<ۗ :(KD<(9"%Y$;:~ /~o6Oms;} }^PQ0ڟiH3%MСlU}D%#7h%hJ.ƄQq~KvV)^i'Zx R2Jyb5zWz4QHp]?R[ح8ߥ͞Z;8+A}yX?ӣO+fmw{Z?tlL~I6푡Xe}C 4 כk/Gڷf*=oKST+G@6hXz֑FtD$JiϚp2Z;5Q[TQxFbӤLAfl "Z!/VA\Q%㴓mDk9Ч0Z-5iX޿Jl[_p04i`hVz8:Xm49/~K =d,uayX݉X p4LIoLmLO+J4iq:4i8!-#Gu7=ZG`˜"JM#+&i\Neȣ1!0@qи4tp%K& sφ_^X]϶pc u}g}!:7˃~wziG_g?gp : =A ݮ:gQ,Za0e3S$x gS rj 8h Z>rO 'ZƯ:jp%R Ê̱^9JD ;@DyZD Q xN'_ѫKRa>ZNbDH0'*d ;dGd" * {- `OmR%Lg]Ӊl5L"T  em̢ BMhK t2f;bbA|"DdΡ[ `O1R.Coǂ4oKh!e\UU\H;̐/Kjɾ/tL'($~CTEGMPLCq$xP]9sz#HRv`bό>pSí* Ot2<cvӘx&\ Up5 h5@5`U.Yx='q;EդNf2OS-e7<&vNZ[9GB儁hrFm.o*PC py*l%#7=ẜ}G"K&K.\P+Dr3s@J3$CQ)8 IΉ+84VTJT[7HIVJtzlIĊ*E8Iܺ@^5ѱ Jsr!1]m!1H1M iU\RdaA)x\MyK*^-$'t_ÒOx4G5%@wf{"W<r%W\7GhHN 5{TKG؆ӱ )dž~,3a4|2V$[I{IÓxٰW4vkmZ:{/n 8:a nة3q'\q'mEazV|Ht Sxמe)OnB+m>znvaKammF(0;,4i.3c5 ʢ͍2}I@\ئBg$IPz{C0 ߹(c '(QA9F%,)k/r}_݆o5=P v A˟As\R$)`?bSԒ7~w}s߂^X{>-6C՜z~{KW*?9f~r[ ȂC 7'g"uЌ>ݢgm_^?~ߪpح3(LdeTj%i>;}w;H{zssXO gyʮ/E]ݯXb? >9`~6/ и>~ƛCFOߍ[?~9)p'ÈKv2|9Y{=^x$=I~Zy_@IbYs~`0߰|V?}Z e^'7@)-I v7A?gR-|X鲱#c7-VU} 8R M.ovBxXeKɧzZ,Xg9hp'˘jqjew_ZI8[Q 3sXcK]xs).[hzmeb}\fˇU͔J~50L ~VT~ ؛;ޜ }?0OKGť,(Z 2mFc^ґI~+<{}l,@M`nM"  [1rHRڜ! MiئfK;9\˜%Rc?΂15 {5%:"MFX=wA`1f0az6&<a$ծԍdDjRJ(¨R)myRbryYb~9fT<w*(MR Ԥ)S20t%gl1sݣI%:w"F)|ӣz )+&(C\OJt֗uPM*QvϘrqeppȌ֭a?i nm;D>$haVqIɯ`*u3[ά@Ғ}eil$ٙTvESeH_Uu|mm2ݙl,C@~ d7G,r~Nc;%rsy]+&hv%?Ndž7_\̮nD! o:KtZa/.D w]Q5k}R8#)4Q-j\dw_NE}@cܵZsPF%|=a"ΰZ\g:/\n?rt/Vfp!̓p"Qɩtz &ʗW_g|! E& Py--!j*b2E'~I*%/?W4TWU$v9rU?Tru*8J(_>zE|L_T]UX(MK$(0xI|THK}{LL/qա>гc5z[(E_?JG+=)W7ڛ95B%6<9޳t rkrKez/BQq̗CGtڔc L 6Q+>!p'>I)Nܘ}샇ќ vP}C6?]ȿ6G=>G6G\x>GQQMepDc.?S[N!6G~iqNַ|f`zDS1ч/׫18$ZpDc (͏Co G i?C<%2,#23Q}dyes}ͳK;}_8X B z[gM>"<}'Xo-cۅ㰏b9v 9+\<_#x@oQ}lJC9~dwM.7p>`h&}ܹ|9בt@ QPI:G;asrҢ4ޫWupfǙ*?MYa Z>7.OCS;n}ı=$,ޱ$MBwN=<'h³sdy:h>avx;sN(+1q>]/qF(ϴ^ффD픈0wn3dgzh_Ac<8=pt4A5eA:!Ge,ioyz#([3'Gӄ P&(*Yl'Ku0BoJ#7=uYe1eUi@AٺR}D@!c*9{j}GAٺ-̈+7UAٺę #([lKP VYP%c ַ<=Gee6FbS~EidsU7Ŧ<*2lap Ҝd+Ʋ)?N ?5p}a6c8SlyMc<hS~=3q@ۘM6#8Ϸ GW?o]k_~}OF0L⎌ _Rr"zvSE74p8HMy7{76݀ $gK:o66 n[ jalʻq5'#G4pȼMB GZE9:YmʻNw*G7]3!mS-cQޭpդ>UbS歐;̔K$tG}S3ҕ=g4Z}FvD6 ސ+rM8F7 :R-Ǧl/>)Wzc)@wyMx^ūWA Paʫæ;~B>C&t]}l0s&1(x~eQ.| fZ2-(5Ak RT< 1u^>zIZFg̚G}F*.cSPr FD ],e+J))D0Lp%h",((- RSB6bE2x*H7X,vG(SBApbDTfh1~ӺnR@m](SI< I%)뤔d@%IQj6RlQ'm}DfI %"cĻVFcܶRRN*%tJfnr)ec0**B&̐P@F0֑H; e[ HqtG{!iyNP~ m@з4ǡ|>lwƧ4~fWl7 s)%PNUF˵jblCh1B1U՚0̎2vz}iC I$8dDCH^9l}ٵ܌ᾂž r\a@{p "͚u]ɤ`KĜt(_jw(]AːF P 2'pa01g+Y;fؤPc<R_cIr(Қ[\Pz>֡+u\igDQ?aFOyuC̎%7buڃ4{Ǝ4;phSi7Edȵm7xhC '.aHrK=fq(?ȋh3s(s(˜s_0f>1>7OC̬s( ؆8CcbWkbKy5tZR i06V2X0IKk̴C!37[PFlMdGy^15!\Li;GZQK !]wbĥtXn 3'X ?(jk|.(2r rBZ%]EEmݢ͘)(L ox ¾Yep6:- n7 4 UFiʛ_hԼb~!)zhժ98t1@(Љ߷QхF9_V6+XG2a&=>tPw=/J}:f-ǯ](3 za3轜%Ǜ=~a-]7J+"NRj&fҾJ ~ަp, q 7σVh; ]ݬ>m6ַ,G+gkwmm'&jo58uuZm:i-ǵb5(w?VyMwbrk.vvQ+9?wՎ w{qyBxb4ڮID?Jubӵ~G&bW7 FK_W*_;AMjU:z?TtҧSnwG7?t~;eƽM,_O/cozf;U}i3g۱sU[y'ϖ LkЌggv9IDWͬgoH'YXboTz9u^.LzS$$ ݀dy5 Qɝ˪Nrj)HrUK$W=VE$-r:A2#l&+I&GܭUfv5ZeVBz0J?l tAۡ.iG8&p5~GkG/15A;(\8A;2\uq/DhC]vuVsV.!UJcjAz5ę JNϭ*ްNvt⥒]Rd=-ua2y@P&;k#: nNGM܎֞8hF,]4YtҢW z㊀g5iEf|1]̧Y.m9z%NӮW; 7)٭,BϧJ#YD[y޼].qvIkoGjT~=fwbt{ƽI7ܞr/J9<7~W(DT~8RzK 6^Ϛ"+am#+ѰV]^wϦXځCӃ]ǫ[Oרf5M__^?_b7E৩Rn_FJq ZwinS>Pwg 8V4lݼ[N雴S5'P-Tp#$1MAo7֮D<尾=Qj-FLX~$Z_o0U ~omu]t3Wif&$[ubj[,}oVY0^oSL1qD+SdS&zK((F_:߸b5k2"+w~8}r>:HauS7-& 0 t ^ӟc?+po|3/| }XPГ`u^eW`U-̬w8^U''ַɿ'2{cf̠/4wӫ 9Vb~7֋&h$Zzdtͧb~聫K]2UWWs2!ʬ`D忩m`UGˏZe9[,Mico1V#MwzyˌNW'>Ot6y<wXԃ5]|8և?oC,l3Q7Y=c;Pi6,]\8[Qyy[mOŽXfcJV+6wbIE%#V owt4cZ2w%t:/O׌9+3XdAvoyW2.f:W~|Ryb9}7*lfq6_*/.?z' Rߟ&9u4_~8Fz-<_.³"¶Z@ua_2r/e}o$o gM7{o ~A}k=A 6C^_\<65kmE(/'E4xUS4H ݶN S'"L׉D] u*5!Uء΁绨螬= '?%ƘB~84A(TC{Na7<,tV(TIrX6艗Qm$r-l^%1| K0FAlPmCϧjc\Cɵ2#w4=I>K:ۆ&$BMyIE Tq8DTC:Pm)uC{{P4 @چ{=i8Q.`8EӥqTV>GPx~N|wyH%AAnJyf=3p,T#$A)PcȽCŸ PL;E͐zxU,q(<2yV6=N|Lҗ)'jȓ6"-\XkaS+{4-<9?ZҤqm PĆ%FtD[ӘYPro=+Rº#ڰqFo(S$/;(YO}@}hxDvpa: e,m Ѡ|i@:(/|BK]W%TT, (0K&h6вT e` xj]n:Ihe_ҤiRuyfq,AP&,GzۀiGl #?zGbeE!+Mpۈ}CEHQ*U*̮^0Ie>=PtXPFn:qD1H> E .PDJe0AfA1N0)F&\@14"SE^b3l\@8jT>^T>,dadc#ˉh_V#XK pEl44&sw6Il4cHj4: a`$xG0Xp(9^@Ol{_I;h'LA bZJپv;LlxKZ岴%͌5UƈKlQ_,ym>E(flLӃU`{,y'}CL0 4 Ϳ5×ZL>TuuQ:L׽[NXsIMCjj|XD[b; 5#RH~KT6HeL2-j% /yH:Γ|ZSrCi6}k)M܁ NbZ}ep4*aCzƝN/rLy`')N͌IӍǂnUͳntxC23vhWO7hW F>m3ۨp2ȩZBL46:mVaɌ dYOV[KPωZA쯣Ji 2y\rl(тLԢTb۪ gNQݨ>uV2?JNJ:yBc&YfT0Z>GmR["#iezMH٨Ʀsߤ{,MG˘˜4JMim6NTux(Do; 8hJTsIe:Xh UK\c\><(W2|:I>RI1pacu)ېv:C6lGmD|օMx`_լ/1"ۙ iH|?#^F&-(*D+3R߰g _:Æu5~*3O8Lˑ;Qp)*FoXHP&7U 8IL]\J3g4^@1sb ' E}pp_ÊO,/id\;Ɏ̏,Ͳ |ƿjXWl_}IB9Pu`cXVh%2B-gZ"W^K̥ <-%iK GIܻWY}PqҌ]IJaTo_˾JCL*S%mTrFɵЕrkLQa9ɶb6YC[I)z &*lcbF 1?vB>Eʲ0va{J2N?7paC_W6' kuYvq"<$xo]MæڼCSr`lP-xo 1_egK1xY]\6@-ΚY9h9n'{HRJEwq=]f,xq9?Fa Hjz/e^H8+RZ@]-[^ݬxbO-X~޲]ͯnW˽8͗m=bW;_> #F'ApJ*w FIz|/Zu#*)Qy"٤9c}~~0?6ܖh]g_8/]P/NWIVŻ+xͮ WLd]buQJ- 0า;U4jAqO[٧ٛ܃?"*q{}m+Ǿ8YNל9P/=5^WM=/WBI XjC~^] tSU5 R^_8P𨼿rX%:&XFyyWywWnnk[f;J_WOL4>+f?)Pe-p_N9Ṵ̋K q5жV<gUJ {yq-*1'Jf95drT⢃w᜶t@6~!V!6$D$;"+IȱluwK46Ҡ Ъ\˜'R]+4`9[!;V8Πao'P. W (mH^bIzfŘaP8cXir&IL9?hp:̄(5Erπc_"q"S<@P1Sxlؤ/GT4II%JSހFd`8Q$P̘`֤8Jt2Ü&(פEq$hRj}Y&( 8ZF˲uYvwV+F ͤ۰46Doyek?M(`(v_xz'讍!aV+G0q. qÉob mױK $;$ޜ #|Hid?ǔ0 onG'7Y%{RSu,g|X*I$Ţ)JZ"rۚ~ &nR DGWë#<NYn5FkX7Xsմ>/GğQfˏfHA4H=}esoq,<"O3LW@_e-H*W'I_@~%` H ]Sw~~EäRN&Y49̧:eW>qgv~!-{.u0_E)*R7uǯg%}3yhNF&DF gL-rslnlH4Mʋw;X!cU(DŽJܖcETy >j(~6}?aZϟ^Oq:kz"W)1Z{#E.-Ź/`&c4qi%l~M\J 6.e3؃"lÜ4qwfﴉ${ݞ}S`kXGFsqG5}"6QDc X{\f}Qaqb]Ї~>Ul},8,ذ^[>10snJ>#P{o#kDvr_=@S>bx8G%Ww#_cɸs:,xs+FfHa_.:h_xA}Do/yCod`p'V~;[ǬrmCа>B@W[ƶ cלs|b5:1+.#&C}[#rl9>ܵG=]G 2Nqb&>bԺH=?$y`zªG)dx)Aqg{\p<ޱ7g۫|SK47]̃ƸC}j mVgNPOk>~ C.Óc*c :G]{ڍ^@}&az0))cx X!Sdyl@߈=S Ɓ9},xyJd5=6ѤN3Vv?UdU,;z8{q8~Û[o,Ќk?g`ތ]3A}^<8W ?\tYΗqp8~H\c}KSOhs/sy8GJn9=tIS<=ŋ'5/=: Gi\#4DWG ?WRͪQ_Gĥj$l~x?Dy[MZ6?v|Ot wjS8OgsEJ +Wu~pOq7ϯ6|"A'@~qyqRFϓ IU/sCm ~@6Qd| g%P$D8p^gyYlE(7>"o .F=lu.t7ĒR%ΞO$mR' ,!U8ܧpқ1RhM$ Zry^C"ϋu+y 'cP5+\6ayḷQ.YV\oדz"y&)acEWF yE';/0"Sk=%Á>t-!G* @y6Bv18Yk:l~n{ {v*bw2E9pY6Vyk_c!UKbuXlCmWyVvC{̃d[")CKdA\o7!-gQj܃!5y0q&m,b6~yqQ.P4o/x3~C}[3E-nlfzr ]ZU(u=%4IKii|7܃C>-{ȧe=X5zȧbxȧOWC>-dX>]0efA޳l?xpO˕#ȯl,A{ȧ i2v;\ecL,˗tAbп*h 6+u@! v8v2,N/A*$b=o 1|;+qٞMMS򷼈>طG8{>;c&=oEV/iG[G,u'?{kn_ɷ -c''˒/:)NÑaSJ@nQX/unrHLگ.ʞdO"O&pojE]4ȟᢹ*Ŝ-X1{K aZ}A.$M)?3#jweN8 @5PNIApA78ŮCBW(VQ "#%2l>%-I ::a@Ԫԓ.ɡy>%dqZ>sO/n}= *up&wò3 +Cy(E-ZU0Ԉϲ$+yTWEs S_@VߌngƝE:6LΦǝU6%wFv{ϱ?5Pg1*YnNw)`<9ӕӛ>٨G}1 y[Dlp;S8WB^>BMIΕrď&܈w6yǨX1j\;&~؟Tx'*w+7]'JnWFJ:Rݦwٻ٘«sw =3G̣aoHyt=fd0xtb04?f /JLU]N4a{zb=;;eA"I,g.hFIUKOZ WtA\ղeUdlUM4Re" f39Lj4U;ә_ng: +]-㶙`ޱPBH:FBH86tFnP8 k&\TyL0v/zvTzt^NqjcpvUt'3u*/-@ظSWtkqU% *nF{lz5h;*6ʦO`ʻ[y߫墉?ʛxrkoZ4kې..jӹ|38 kgAڟ؇e/fRI'$5hVIs"#2Pg҃yV]Rci_L&u ]?1@vuG+i7צO;_I\Ko֔\oTf> RBb"O hPJ1a9?^wӿvOY{;kʥϦٴ@ESh7|)4In3闁Y5H'4or,C:gOF}#PqLm:BWt0g3f="gJ>]&x07vY.9I9"?r<^$rޑ)aH颔9S< ļeF]UZAD1чyN0Folן0cZӱ6~a2}Sa^h`x_ ޘ)XJ ?PIo'J>0Z-:`Y dG@^pw+jE ȀzoVsAYW.$ޟw%oC1R?w;v'W<ubM]e_}\һ`=ܪx9D&/G !+=ra6y0GP-e%pK.!n^b!JTpT8:u汞z9rڕ(-sa_9֨;jpb۫~%(:H%L~}[?|?\?vwU*OG-Y 042т۝?>XvH\-˗%Y~̜whkX8)o9evȴԝ2b)v[ᛳVScty9˕z Յrf'}#O;( ΜQXr]ߵhQ)V 2seNoƓmio_t🩿㵿o1.3{_%}l&O}x5 H>_;ZU=;C'Ak5fvw/&?}|4R;g&xv|؄/a707:zcff8:/f xh؟GM =Ugk`-k{Q qoGMAE.TY@JkA;£ ym}1]SB_^hGkG~p^Sk>@Bޢ%:͟Z7utwȎi},rwԚU#*A23},}6zA؁W4b0X8wtZˁ,u R*;q_;>=φC >:%:S_6NJ UM[u'iJ ױ:t~r3@Ma}ZE萅Id$ђzꡯcKS{!I26=Vvտ=T+4T2S0j#-T(BH.4Rn,u PGl{6r)P흼]([,Dʏ[(+P_ z@JJK$^B=Go3=图lTKJuF!C2TUPK+㉪A_"d B&7si=zYńuVrf-Gh3+ N:P _Uo-}v aPNE^[=4c!2;Y-UXY>ٰo3_S4.=Todd*&.d蕝\_Iov0k&ֱ]'%Q;ěc~s\[<8%KFegٳ폑gtfNB|3\3tn JjV8ZR3zQPƖ$[vwsEb 浿BlQfa>^/l#0 cc¸+ۛїq74fn:jy)Śq,gQRX> u7'W{f .c7350av_}A\A~Ki*N+*6OZj{t?(޾2snhkWg>+?׏߲M_S'ǧo{''f߾;?9v*PK۪%;([" ?1myiwZNߡ )aEzؐS I1В-z~]3!fT8}˓q(++/oo|V[7,Γ>Mzp(n;9|yb6:1tPjWowZ]it_]ep0x x 2v.fdO%tutuhwuhwYhƼ}!I@Uuң / 5c4 +Z#T}1v7^~?Yju<ՆoN^5ʋ?I J=@MC9#}n VV^2&"(Q\C´i}!n@ j3Yk&Q,:ɓI , VޒΜ]F7 /TuŪ3.c6^١';Dgg>RVZSΗxw\ZDA ۜ,/7',X!BoI"Dh?=(ZSY! ǿ4)53?^ۚG.T,dե i7x5QSM 9e PQ-ELTZqnbL m9DAZx9s2sf^mo^k{٧Cv*B2XӣAmw/qiD>]~ pD-Qv7!|wz(^Ba~o 2|X3ں^a kŕHXHd b«XY/Geģ!1#{ "|nz1kWXU$^֔Ԛ7J@Tω5ea=:āxOB+jM+kSn#TkGc$j5cv٢։s$4:?ch5 dMG01^i4 (Ґ`UTE$rgZ2_mnV7k-Uhu<~gvۙa{>@N\_\J ׉\*LUEaӊaAŰ˒!1U.bDiT`ELY|,iU:q*mfxc)Б6jf&|CY8+,!@ɕ)DIаuip4]OJ0.ɷ A-4%#.-ozhSJ<&N+]K`tRڹs8~,U U~. ЋQG7\COan" 6mz\YjjBE`[A$C]6/N{m:.rw'Ő83>m%BM25 G*" Jt JI B )T,Ux;{܂m r!T3о|BF]yշMBL= I1E, >U[87Ic?Eh'Z0i}Lmw LJ*4-wS~þ*!?GPisƑ !2Β3v"YZɢB<>p!e,@u9Ð