message
stringlengths
2
65.1k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
0
108k
cluster
float64
14
14
__index_level_0__
int64
0
217k
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they have to choose kayaks. There are 2·n people in the group (including Vadim), and they have exactly n - 1 tandem kayaks (each of which, obviously, can carry two people) and 2 single kayaks. i-th person's weight is wi, and weight is an important matter in kayaking — if the difference between the weights of two people that sit in the same tandem kayak is too large, then it can crash. And, of course, people want to distribute their seats in kayaks in order to minimize the chances that kayaks will crash. Formally, the instability of a single kayak is always 0, and the instability of a tandem kayak is the absolute difference between weights of the people that are in this kayak. Instability of the whole journey is the total instability of all kayaks. Help the party to determine minimum possible total instability! Input The first line contains one number n (2 ≤ n ≤ 50). The second line contains 2·n integer numbers w1, w2, ..., w2n, where wi is weight of person i (1 ≤ wi ≤ 1000). Output Print minimum possible total instability. Examples Input 2 1 2 3 4 Output 1 Input 4 1 3 4 6 3 4 100 200 Output 5 Submitted Solution: ``` n = int(input()) arr = [int(el) for el in input().split()] arr.sort() d_rez = [] m = 99999999 l = len(arr) for i in range(0, l - 1): for j in range(i + 1, l): a = arr.pop(i) b = arr.pop(j - 1) size = l - 2 diff = [] s = 0 for h in range(0,size,2): s = s + arr[h+1]-arr[h] if s < m: m = s d_rez = arr arr.append(a) arr.append(b) arr.sort() print(m) ```
instruction
0
53,597
14
107,194
Yes
output
1
53,597
14
107,195
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they have to choose kayaks. There are 2·n people in the group (including Vadim), and they have exactly n - 1 tandem kayaks (each of which, obviously, can carry two people) and 2 single kayaks. i-th person's weight is wi, and weight is an important matter in kayaking — if the difference between the weights of two people that sit in the same tandem kayak is too large, then it can crash. And, of course, people want to distribute their seats in kayaks in order to minimize the chances that kayaks will crash. Formally, the instability of a single kayak is always 0, and the instability of a tandem kayak is the absolute difference between weights of the people that are in this kayak. Instability of the whole journey is the total instability of all kayaks. Help the party to determine minimum possible total instability! Input The first line contains one number n (2 ≤ n ≤ 50). The second line contains 2·n integer numbers w1, w2, ..., w2n, where wi is weight of person i (1 ≤ wi ≤ 1000). Output Print minimum possible total instability. Examples Input 2 1 2 3 4 Output 1 Input 4 1 3 4 6 3 4 100 200 Output 5 Submitted Solution: ``` def bubble(list_1): for i in range(len(list_1)-1): for j in range(len(list_1)-1-i): if list_1[j]>list_1[j+1]: list_1[j],list_1[j+1]=list_1[j+1],list_1[j] return list_1 n=int(input()) nw=input() w=nw.split(" ") s=0 for i in range(len(w)): w[i]=int(w[i]) w=bubble(w) print(w) for m in range(n-1): dis=1001 dis2=None dis3=None for i in range(len(w)): w[i]=int(w[i]) for i in range(len(w)): for j in range(len(w)): if i!=j: if max(w[i],w[j]) - min(w[i],w[j])<dis: dis2=w[i] dis3=w[j] dis=max(w[i],w[j]) - min(w[i],w[j]) s+=dis w.remove(dis2),w.remove(dis3) print(s) ```
instruction
0
53,600
14
107,200
No
output
1
53,600
14
107,201
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they have to choose kayaks. There are 2·n people in the group (including Vadim), and they have exactly n - 1 tandem kayaks (each of which, obviously, can carry two people) and 2 single kayaks. i-th person's weight is wi, and weight is an important matter in kayaking — if the difference between the weights of two people that sit in the same tandem kayak is too large, then it can crash. And, of course, people want to distribute their seats in kayaks in order to minimize the chances that kayaks will crash. Formally, the instability of a single kayak is always 0, and the instability of a tandem kayak is the absolute difference between weights of the people that are in this kayak. Instability of the whole journey is the total instability of all kayaks. Help the party to determine minimum possible total instability! Input The first line contains one number n (2 ≤ n ≤ 50). The second line contains 2·n integer numbers w1, w2, ..., w2n, where wi is weight of person i (1 ≤ wi ≤ 1000). Output Print minimum possible total instability. Examples Input 2 1 2 3 4 Output 1 Input 4 1 3 4 6 3 4 100 200 Output 5 Submitted Solution: ``` n = int(input()) ws = list(map(int, input().split())) ws.sort(reverse=True) ans = 0 for i in range(2, 2 * n, 2): ans += ws[i] - ws[i + 1] print(ans) ```
instruction
0
53,602
14
107,204
No
output
1
53,602
14
107,205
Provide a correct Python 3 solution for this coding contest problem. Problem There are N villages. Each village is numbered from 1 to N. Due to the recent merger boom, several villages have been merged. Two or more merged villages will become one new city, and villages that are not merged with any village will remain villages. You will be given multiple pieces of information that two villages will be in the same city after the merger. Depending on the combination of the information, three or more villages can become one city. Given information about villages that will be in the same city after the merger, output the absolute value of the difference between the number of cities and the number of villages after the merger. Constraints * 1 ≤ N ≤ 1,000 * 0 ≤ M ≤ 100 * 1 ≤ ai ≤ N * 1 ≤ bi ≤ N Input The input is given in the following format. N M a1 b1 a2 b2 ... ai bi ... aM bM The first line gives the number N of villages and the number M of information about the merger, separated by blanks. From the second line to the M + 1 line, two integers ai and bi representing information about the merger are given, separated by blanks. Each information indicates that the ai and bi villages will be the same city after the merger. However, no input is given that satisfies ai = bi. Output Output the absolute value of the difference between the number of villages and the number of cities on one line. Examples Input 3 1 1 2 Output 0 Input 4 2 1 4 2 3 Output 2 Input 5 0 Output 5 Input 3 3 1 2 2 3 3 1 Output 1 Input 3 2 1 2 2 3 Output 1 Input 5 4 1 2 2 3 3 4 4 5 Output 1 Input 10 5 3 4 1 2 9 6 2 6 2 9 Output 2
instruction
0
53,870
14
107,740
"Correct Solution: ``` # AOJ 1576: Community Integration # Python3 2018.7.13 bal4u # UNION-FIND library class UnionSet: def __init__(self, nmax): self.size = [1]*nmax self.id = [i for i in range(nmax+1)] def root(self, i): while i != self.id[i]: self.id[i] = self.id[self.id[i]] i = self.id[i] return i def connected(self, p, q): return self.root(p) == self.root(q) def unite(self, p, q): i, j = self.root(p), self.root(q) if i == j: return if self.size[i] < self.size[j]: self.id[i] = j self.size[j] += self.size[i] else: self.id[j] = i self.size[i] += self.size[j] # UNION-FIND library N, M = map(int, input().split()) u = UnionSet(N+1) f = [0]*(N+1) for i in range(M): a, b = map(int, input().split()) u.unite(a, b) for i in range(1, N+1): f[u.root(i)] += 1 a = b = 0 for i in range(1, N+1): if f[i] == 1: a += 1 elif f[i] > 1: b += 1 print(abs(a-b)) ```
output
1
53,870
14
107,741
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. It's Christmas time! PolandBall and his friends will be giving themselves gifts. There are n Balls overall. Each Ball has someone for whom he should bring a present according to some permutation p, pi ≠ i for all i. Unfortunately, Balls are quite clumsy. We know earlier that exactly k of them will forget to bring their gift. A Ball number i will get his present if the following two constraints will hold: 1. Ball number i will bring the present he should give. 2. Ball x such that px = i will bring his present. What is minimum and maximum possible number of kids who will not get their present if exactly k Balls will forget theirs? Input The first line of input contains two integers n and k (2 ≤ n ≤ 106, 0 ≤ k ≤ n), representing the number of Balls and the number of Balls who will forget to bring their presents. The second line contains the permutation p of integers from 1 to n, where pi is the index of Ball who should get a gift from the i-th Ball. For all i, pi ≠ i holds. Output You should output two values — minimum and maximum possible number of Balls who will not get their presents, in that order. Examples Input 5 2 3 4 1 5 2 Output 2 4 Input 10 1 2 3 4 5 6 7 8 9 10 1 Output 2 2 Note In the first sample, if the third and the first balls will forget to bring their presents, they will be th only balls not getting a present. Thus the minimum answer is 2. However, if the first ans the second balls will forget to bring their presents, then only the fifth ball will get a present. So, the maximum answer is 4. Submitted Solution: ``` n,k = map(int, input().split()) trg = {} for i, pi in enumerate(map(int, input().split())): trg[i] = pi - 1 visited = set() def find_cycle(u): v = u l = 0 while True: l += 1 visited.add(v) v = trg[v] if v == u: break return l cycles = [] for i in range(n): if i not in visited: cycles.append(find_cycle(i)) cycles.sort() knapsack = [False] * (k+1) knapsack[0] = True for l in cycles: for i in range(len(knapsack)): if knapsack[i] and i+l <= k: knapsack[i+l] = True if knapsack[k]: minlost = k else: minlost = k+1 evenlen = sum( l-l%2 for l in cycles ) evenused = min(evenlen, k) maxlost = evenused*2 + (k-evenused) print(minlost, maxlost) ```
instruction
0
54,462
14
108,924
No
output
1
54,462
14
108,925
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. It's Christmas time! PolandBall and his friends will be giving themselves gifts. There are n Balls overall. Each Ball has someone for whom he should bring a present according to some permutation p, pi ≠ i for all i. Unfortunately, Balls are quite clumsy. We know earlier that exactly k of them will forget to bring their gift. A Ball number i will get his present if the following two constraints will hold: 1. Ball number i will bring the present he should give. 2. Ball x such that px = i will bring his present. What is minimum and maximum possible number of kids who will not get their present if exactly k Balls will forget theirs? Input The first line of input contains two integers n and k (2 ≤ n ≤ 106, 0 ≤ k ≤ n), representing the number of Balls and the number of Balls who will forget to bring their presents. The second line contains the permutation p of integers from 1 to n, where pi is the index of Ball who should get a gift from the i-th Ball. For all i, pi ≠ i holds. Output You should output two values — minimum and maximum possible number of Balls who will not get their presents, in that order. Examples Input 5 2 3 4 1 5 2 Output 2 4 Input 10 1 2 3 4 5 6 7 8 9 10 1 Output 2 2 Note In the first sample, if the third and the first balls will forget to bring their presents, they will be th only balls not getting a present. Thus the minimum answer is 2. However, if the first ans the second balls will forget to bring their presents, then only the fifth ball will get a present. So, the maximum answer is 4. Submitted Solution: ``` n,k = map(int, input().split()) trg = {} for i, pi in enumerate(map(int, input().split())): trg[i] = pi - 1 visited = set() def find_cycle(u): v = u l = 0 while True: l += 1 visited.add(v) v = trg[v] if v == u: break return l cycles = [] for i in range(n): if i not in visited: cycles.append(find_cycle(i)) cycles.sort() knapsack = [False] * (k+1) knapsack[0] = True for l in cycles: for i in range(len(knapsack)): if knapsack[i] and i+l <= k: knapsack[i+l] = True if knapsack[k]: minlost = k else: minlost = k+1 evenlen = sum( l//2 for l in cycles ) evenused = min(evenlen, k) maxlost = evenused*2 + (k-evenused) print(minlost, maxlost) ```
instruction
0
54,463
14
108,926
No
output
1
54,463
14
108,927
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. It's Christmas time! PolandBall and his friends will be giving themselves gifts. There are n Balls overall. Each Ball has someone for whom he should bring a present according to some permutation p, pi ≠ i for all i. Unfortunately, Balls are quite clumsy. We know earlier that exactly k of them will forget to bring their gift. A Ball number i will get his present if the following two constraints will hold: 1. Ball number i will bring the present he should give. 2. Ball x such that px = i will bring his present. What is minimum and maximum possible number of kids who will not get their present if exactly k Balls will forget theirs? Input The first line of input contains two integers n and k (2 ≤ n ≤ 106, 0 ≤ k ≤ n), representing the number of Balls and the number of Balls who will forget to bring their presents. The second line contains the permutation p of integers from 1 to n, where pi is the index of Ball who should get a gift from the i-th Ball. For all i, pi ≠ i holds. Output You should output two values — minimum and maximum possible number of Balls who will not get their presents, in that order. Examples Input 5 2 3 4 1 5 2 Output 2 4 Input 10 1 2 3 4 5 6 7 8 9 10 1 Output 2 2 Note In the first sample, if the third and the first balls will forget to bring their presents, they will be th only balls not getting a present. Thus the minimum answer is 2. However, if the first ans the second balls will forget to bring their presents, then only the fifth ball will get a present. So, the maximum answer is 4. Submitted Solution: ``` n , _m = map(int, input().split()) p = list(map(int, input().split())) #print(n,m) #print(p) a=[] b=[0] * n #print(b) for i in range(n): #print("-->",i) if(b[i] == 0): num = 0 j = i; while(b[j] == 0): b[j] = 1 num += 1 j = p[j] - 1 a.append(num) a.sort() #print(a) mi, mx = 0, 0 le = len(a) m = _m for i in range(le): if(m == 0): break if(m >= a[i]): mi += a[i] m -= a[i] else: mi += m + 1 m = 0 odd = 0 m = _m for i in range(le): if(m == 0): break if(a[i] & 1): odd += 1 a[i] -= 1 if(m >= (a[i] >> 1)): m -= (a[i] >> 1) mx += a[i] else: mx += m * 2 m = 0 mx += min(odd, m) print(mi, mx) ```
instruction
0
54,464
14
108,928
No
output
1
54,464
14
108,929
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. It's Christmas time! PolandBall and his friends will be giving themselves gifts. There are n Balls overall. Each Ball has someone for whom he should bring a present according to some permutation p, pi ≠ i for all i. Unfortunately, Balls are quite clumsy. We know earlier that exactly k of them will forget to bring their gift. A Ball number i will get his present if the following two constraints will hold: 1. Ball number i will bring the present he should give. 2. Ball x such that px = i will bring his present. What is minimum and maximum possible number of kids who will not get their present if exactly k Balls will forget theirs? Input The first line of input contains two integers n and k (2 ≤ n ≤ 106, 0 ≤ k ≤ n), representing the number of Balls and the number of Balls who will forget to bring their presents. The second line contains the permutation p of integers from 1 to n, where pi is the index of Ball who should get a gift from the i-th Ball. For all i, pi ≠ i holds. Output You should output two values — minimum and maximum possible number of Balls who will not get their presents, in that order. Examples Input 5 2 3 4 1 5 2 Output 2 4 Input 10 1 2 3 4 5 6 7 8 9 10 1 Output 2 2 Note In the first sample, if the third and the first balls will forget to bring their presents, they will be th only balls not getting a present. Thus the minimum answer is 2. However, if the first ans the second balls will forget to bring their presents, then only the fifth ball will get a present. So, the maximum answer is 4. Submitted Solution: ``` T = input() t = T.split() n = int(t[0]) k = int(t[1]) A = input() a = A.split() if 2*k < n: ma = 2*k else: ma = n count = 0 for j in range(n): if str(int(j+1))==a[int(a[j])-1]: count = count+1 if count==0: mi = 2*k elif count < k: mi = (k-count)*2 + count else: mi = k print(str(mi)+" "+str(ma)) ```
instruction
0
54,465
14
108,930
No
output
1
54,465
14
108,931
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,502
14
109,004
Tags: graphs Correct Solution: ``` def is_love(l): s=set(l) if len(s) < 3: print("NO") else: possible=False for i in range(len(l)): a=l[i] b=l[a-1] c=l[b-1] if a!=b and b!=c and c!=a and l[c-1] == a: print("YES") possible=True break if not possible: print("NO") n=int(input()) l=[int(x) for x in str(input()).split(" ")] is_love(l) ```
output
1
54,502
14
109,005
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,503
14
109,006
Tags: graphs Correct Solution: ``` n = int(input()) f = list(map(int, input().split())) ans = False for i in f: ans = ans or (f[f[f[i-1]-1]-1] == i) print("YES" if ans else "NO") ```
output
1
54,503
14
109,007
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,504
14
109,008
Tags: graphs Correct Solution: ``` n=int(input()) li=list(map(int,input().split())) flag=0 for i in range(n): if(li[li[li[i]-1]-1]==i+1): print("YES") flag=1 break if(flag!=1): print("NO") ```
output
1
54,504
14
109,009
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,505
14
109,010
Tags: graphs Correct Solution: ``` input() p=[int(x)-1 for x in input().split()] for i in p: if p[p[p[i]]]==i:exit(print("YES")) print("NO") # My code says who am i # I want to burn and born at this way # In my eye there is not any things Except love ... ```
output
1
54,505
14
109,011
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,506
14
109,012
Tags: graphs Correct Solution: ``` import sys,math input=sys.stdin.readline L=lambda : list(map(int,input().split())) M=lambda : map(int,input().split()) n=int(input()) l=L() l=[0]+l d=0 for i in range(1,n+1): if(l[l[l[l[i]]]]==l[i]): print("YES") d=1 break if(d==0): print("NO") ```
output
1
54,506
14
109,013
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,507
14
109,014
Tags: graphs Correct Solution: ``` n = int(input()) a = 0 array = list(map(int, input().split())) for i in range(n): if array[array[i]-1] != i + 1: if array[array[array[i]-1]-1] == i+1: a = 1 if a == 1: print("yes") else: print("no") ```
output
1
54,507
14
109,015
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,508
14
109,016
Tags: graphs Correct Solution: ``` n = int(input()) a = [0] + list(map(int, input().split())) for i in range(1, n + 1): if a[a[a[i]]] == i: print("yes") quit(); print("no") ```
output
1
54,508
14
109,017
Provide tags and a correct Python 3 solution for this coding contest problem. As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, numbered from 1 to n, and the plane with number i likes the plane with number fi, where 1 ≤ fi ≤ n and fi ≠ i. We call a love triangle a situation in which plane A likes plane B, plane B likes plane C and plane C likes plane A. Find out if there is any love triangle on Earth. Input The first line contains a single integer n (2 ≤ n ≤ 5000) — the number of planes. The second line contains n integers f1, f2, ..., fn (1 ≤ fi ≤ n, fi ≠ i), meaning that the i-th plane likes the fi-th. Output Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case. Examples Input 5 2 4 5 1 3 Output YES Input 5 5 5 5 5 1 Output NO Note In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
instruction
0
54,509
14
109,018
Tags: graphs Correct Solution: ``` n = int(input()) a = list(map(lambda x: int(x) - 1, input().split())) print('YES' if [i for i in range(n) if a[a[a[i]]] == i] else 'NO') ```
output
1
54,509
14
109,019
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,013
14
110,026
Tags: combinatorics, dp, math Correct Solution: ``` import sys f = sys.stdin def line(): return f.readline().strip().split() def powers(limit): size = limit+1 p = [1]*size for n in range(1,size): p[n] = (2*p[n-1]) % M return p def binomials(limit): size = limit+1 bc = [[0 for k in range(size)] for n in range(size)] for n in range(size): bc[n][0]=1 for n in range(1,size): for k in range(1,n+1): bc[n][k] = bc[n-1][k-1] + bc[n-1][k] bc[n][k] %= M return bc def solve(): # dp = [[0 for _ in range(N)] for _ in range(N)] # dp[0][0]=1 # # for i in range(1,N): # for k in range(1,i): # for j in range(1,i): # dp[i][j] += BC[j+1][i-k] * dp[k-1][j-1-(i-k-1)] * POW[i-k-1] # dp[i][j] %= M # dp[i][i] = POW[i] size = N+1 dp = [[0 for _ in range(size)] for _ in range(size)] dp[1][0]=1 for i in range(2,size): for k in range(1,i): for j in range(1,k): dp[i][j] += BC[i-j][k-j] * dp[k-1][j-1] * POW[i-k-1] dp[i][j] %= M dp[i][0] = POW[i-1] res=0 for j in range(0,N-1): res = (res + dp[N][j]) % M return str(res) T = 1 for test in range(1,T+1): N,M = map(int,line()) BC = binomials(N) POW = powers(N) print(solve()) f.close() ```
output
1
55,013
14
110,027
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,014
14
110,028
Tags: combinatorics, dp, math Correct Solution: ``` p1, g1, ig1 = 104857601, 3, 34952534 p2, g2, ig2 = 111149057, 3, 37049686 p3, g3, ig3 = 113246209, 7, 16178030 z1 = 439957480532171226961446 z2 = 879898597692195524486915 z3 = 8496366309945115353 ppp = p1 * p2 * p3 W1 = [pow(g1, (p1 - 1) >> i, p1) for i in range(22)] W2 = [pow(g2, (p2 - 1) >> i, p2) for i in range(22)] W3 = [pow(g3, (p3 - 1) >> i, p3) for i in range(22)] iW1 = [pow(ig1, (p1 - 1) >> i, p1) for i in range(22)] iW2 = [pow(ig2, (p2 - 1) >> i, p2) for i in range(22)] iW3 = [pow(ig3, (p3 - 1) >> i, p3) for i in range(22)] def fft1(k, f): for l in range(k, 0, -1): d = 1 << l - 1 U = [1] for i in range(d): U.append(U[-1] * W1[l] % p1) for i in range(1 << k - l): for j in range(d): s = i * 2 * d + j f[s], f[s+d] = (f[s] + f[s+d]) % p1, U[j] * (f[s] - f[s+d]) % p1 def fft2(k, f): for l in range(k, 0, -1): d = 1 << l - 1 U = [1] for i in range(d): U.append(U[-1] * W2[l] % p2) for i in range(1 << k - l): for j in range(d): s = i * 2 * d + j f[s], f[s+d] = (f[s] + f[s+d]) % p2, U[j] * (f[s] - f[s+d]) % p2 def fft3(k, f): for l in range(k, 0, -1): d = 1 << l - 1 U = [1] for i in range(d): U.append(U[-1] * W3[l] % p3) for i in range(1 << k - l): for j in range(d): s = i * 2 * d + j f[s], f[s+d] = (f[s] + f[s+d]) % p3, U[j] * (f[s] - f[s+d]) % p3 def ifft1(k, f): for l in range(1, k + 1): d = 1 << l - 1 for i in range(1 << k - l): u = 1 for j in range(i * 2 * d, (i * 2 + 1) * d): f[j+d] *= u f[j], f[j+d] = (f[j] + f[j+d]) % p1, (f[j] - f[j+d]) % p1 u = u * iW1[l] % p1 def ifft2(k, f): for l in range(1, k + 1): d = 1 << l - 1 for i in range(1 << k - l): u = 1 for j in range(i * 2 * d, (i * 2 + 1) * d): f[j+d] *= u f[j], f[j+d] = (f[j] + f[j+d]) % p2, (f[j] - f[j+d]) % p2 u = u * iW2[l] % p2 def ifft3(k, f): for l in range(1, k + 1): d = 1 << l - 1 for i in range(1 << k - l): u = 1 for j in range(i * 2 * d, (i * 2 + 1) * d): f[j+d] *= u f[j], f[j+d] = (f[j] + f[j+d]) % p3, (f[j] - f[j+d]) % p3 u = u * iW3[l] % p3 def convolve(a, b): n0 = len(a) + len(b) - 1 if len(a) < 50 or len(b) < 50: ret = [0] * n0 if len(a) > len(b): a, b = b, a for i, aa in enumerate(a): for j, bb in enumerate(b): ret[i+j] = (ret[i+j] + aa * bb) % P return ret k = (n0).bit_length() n = 1 << k a = a + [0] * (n - len(a)) b = b + [0] * (n - len(b)) a1 = [x % p1 for x in a] a2 = [x % p2 for x in a] a3 = [x % p3 for x in a] b1 = [x % p1 for x in b] b2 = [x % p2 for x in b] b3 = [x % p3 for x in b] fft1(k, a1), fft1(k, b1) fft2(k, a2), fft2(k, b2) fft3(k, a3), fft3(k, b3) for i in range(n): a1[i] = a1[i] * b1[i] % p1 for i in range(n): a2[i] = a2[i] * b2[i] % p2 for i in range(n): a3[i] = a3[i] * b3[i] % p3 ifft1(k, a1) ifft2(k, a2) ifft3(k, a3) invn1 = pow(n, p1 - 2, p1) invn2 = pow(n, p2 - 2, p2) invn3 = pow(n, p3 - 2, p3) for i in range(n0): a1[i] = a1[i] * invn1 % p1 for i in range(n0): a2[i] = a2[i] * invn2 % p2 for i in range(n0): a3[i] = a3[i] * invn3 % p3 return [(x1 * z1 + x2 * z2 + x3 * z3) % ppp % P for x1, x2, x3 in zip(a1[:n0], a2[:n0], a3[:n0])] def chk(L): return [fa[i] * x % P for i, x in enumerate(L)] def chkinv(L): return [fainv[i] * x % P for i, x in enumerate(L)] N, P = map(int, input().split()) nn = 1001 # !!!!!!!!!!! fa = [1] * (nn+1) fainv = [1] * (nn+1) for i in range(nn): fa[i+1] = fa[i] * (i+1) % P fainv[-1] = pow(fa[-1], P-2, P) for i in range(nn)[::-1]: fainv[i] = fainv[i+1] * (i+1) % P X = [[] for _ in range(444)] Y = [[] for _ in range(444)] X[0] = [1] X[1] = [0, 1] X[2] = [0, 1, 1] X[3] = [0, 0, 4, 1] Y[0] = [1] Y[1] = [1, 0] Y[2] = [0, 2, 0] Y[3] = [0, 1, 4, 0] for i in range(4, 404): X[i] = [0] * i + [1] Y[i] = [0] * (i + 1) for j in range(1, i): k = i - j X[i][j] = (X[i-1][j-1] * (2 * k + 1) + X[i-2][j-1] * k) % P Y[i][j] = (Y[i-1][j-1] * (2 * k) + Y[i-2][j-1] * (k-1)) % P X = [chkinv(a) for a in X] Y = [chkinv(a) for a in Y] ANS = [0] * (N + 1) for i in range(N): t = convolve(X[i], X[N-1-i]) for j, a in enumerate(t): ANS[j] = (ANS[j] + a) % P # print(ANS) ans = 0 for i, a in enumerate(ANS): ans = (ans + a * fa[i]) % P print(ans) ```
output
1
55,014
14
110,029
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,015
14
110,030
Tags: combinatorics, dp, math Correct Solution: ``` z='"""6"k"="3,"iG"17G"6m?"C@f"2<6z"ki1,"1Y[{s"dnF)N"1j.&{o"aZ>k}1"173exa+"atUi,},"1canZ35z"b*-!Ps6l"1z<F!WJlC"fQrp~1])H"1}8l0AiPTl"nXgm#Z5lD,"3i(T`qx~]Ds"E+Ogt0CrjAN"5>bFGHj(<llo">9?a93{7]We1"c40^D[.LMx?g+"1?yzBa$^7a2IJ,"rJI9D,^7>i4#:z"4L*D}`_BGPQ0eIl"*CQ>kP?.na$|N4C"b}!{h+@cU,fxA@0H"2a![HA75nY?9[w&El"y/et$Wyb:P3jr!s`,"6D5VDU$WtQ6F[.6eRs"1jxWA>3qs4]hE.-PIiN"lnI97o`|oPInA^TkDio"4glf,Tlyyp!!O?D.fH>1";lb8nG!HpqZ5rG([PQ$+"fQ~[53_G2]Md9R[IqDQ=,"3mztX~mgru42V#[_Ok*%5z"!!gEao:8e;NS5&7nt+pG[l"dNSQ$8.+eOve@^wQz)C?71C"2}aW[$UQ8{o>;HO:CUL{WT%H"YZ.H_%.$MTa>0qJN_$WG9(il"d/6|-zG:?E%6AZ[;l6[|,l[<,"3i08:l*E&N6{#MVQpyXVn_?b4s")Hvl~<=/q_3&;v.6NlPkRsyv0N"gy6jfJAgKi?4Qv/t4LaJYg#b^fo"3||<|#+iu]K2yd|Y9q|5`Bj8?<R1"}r:L.!$$&Rlx4n);wYF[>[*>2ql+"mx)_YQ,m+lHk+3os1Cn:qRTg9tKk,"5!VG@Hr)9~MkSm]b*MhyhJ7dv>Wtqz"1GPE8*^H)aMHcW|L%:<-!5J2I*)]Ztl"y{;u8a-8T1%4G9mGC;G]gkD|&M&xZ}C"9p=)Phj9ECW0k6dJ!9.;8Cy3{??]21DH"2JIR$@^rIL]vlvytwUO#1Utg.HkGybq{l"!9p0.2ya$u6QY<z?{2x5b7c4l=u%[]2),"hg&(SNLHhpwp<^TI9&D_oOH6K*8(h]5jKs"4/I&oE+#/Gbfces.Zl{.#bd1IMK5JOb90.N"1xQ[)`FKK=3R-a-OUr<CVh%SWdG{S{M-)Pco"z<:P[}w|EL5MC/{a9fUjb{}4quf^gD_s>cr1"aF7U{69hdat<G51a>6o~SGit/!p:{b?[@>l*+"37&rY9T&EZ#?GD`6!:Ms+]iw[*PSj;)9KR{aR,"]@euwJo;aci?uVT)UN%6k6:^fGNAFg(-GQtZLz"pysU7?49&4C3;8$C--6M8IwKCFO-,ypCndTEy(l"7+06x!4:](0=g&H.g_}8kWvi%OCjDXQ<s^+JfJ`C"2B2NH|.@(S5kArlB@~*(B4Rz$PBUniwT|AWL,%9dH")Xs!.wps45_DdGs8`u@8&eGHn))^HXc_Ucq,KP,%l"l*;_}kYWmZD{[5oe#7d}v#_L[lmWHOr/o?i.wAz:X,"6}m`;8No_F>CU,1,MdA*{u|MQc=b{X_^biGnkk0Q(|s"2o28oM0NPJPa9oFTs+!e4KYMq9(GW57|Jy7uUvitr`TN"(P4ZoF6[u&Ra^UXFIzuN2R)UjXww%!wunu6+/3(j!a9o"mAr9}L,&2-urF8z:_(Y*I{y+|zCb9#vL#]ptd$}.LLu11"7K9T-*odvBY:Cx|:3-3NPbVaO;>g-pkWwihvP0&+~K|Dq+"2Nzo0)B|OD9N4&5{k./GRFdC0]H=K^S3:jrf%I$>c*elA`,">i@Dq4i~JXnoN2pxviOF,$0^>w_?smIT<c^!*rU^)Y$:+)z"rAhl#.WKuaNtd],0u/wMce!1%*naMg$nF92R2Qg[0~gCRSel"9QrsD%T|QCSrDyWTt;wZwv#7N-:h]3H&M5`?HL),`Zl:jjN]C"3yT3`5vlYm:]3#jnfc,A}2B,|wsIU69<CO68e.^$ZZpA,Ep==H"1i#8b1WC$T^qdcuibSuMGvB9nl$uu!|pj.i=*Ir<<..Bsu,sjHl"DKfFj,2c+y^.2[VjI^-,R,|GS%_Z?5PMB=<}DJ@|mP}*&=C/sO,"exT.[}d/dTQ%Iw-lw%q0}iev:^Sw]()&*Irj<.Dg1X>{qcFS!%Ds"5pltI$,IQbD+vP9z+Ht..X66@s>9~Yqeh/?cUvfghGtBMNEK_wfBN"1{6I?NcC7}udT5q8vpy;LD0ZM|YK$m[h;D);dk`xQ1WNKHrJRWzQ6o"&X^W0Z=rZoImxDd_C$MFn&>CwE~:4rt$W}lJBD/;&sf0+!HqP+mD&1"pha4Q|UvmeY/*0QLy5hxd(`N>AX/#=1Cfg[Pq0/^Hn><,LCK=G1a=/+"9ThsB]$y1?F+W(rsUCY{f79s{o#)J}k8<z.oQIdae.I}h#;X#!.t)ys,"3#Ic6vC7c1#dNpAU.B-_3rY1$-:bBoVF%[f[lt(YW51*n%#L3hTG[,U}z"1D#Uwr4*k$~kok_BL%gY`:L_WrDRA}oIg0vhn-6Q+sR_r)g=A?>@-&1sQl"PkK<x~5&Ezg~xUCJ.1bp(br3dN;<3_^baFwk2=AeS/D?ZY71jIEd`HK.?C"knv9uC7+}}nAMK{[WLgl@@(5MqVr;%yHaj5F*ZFuGG#k+^yMM>>sAS^SsQH"87yEM*aXwM{ZTJem+!)<)=]%[d-I(&7<Pv5B#hx:I(`ni7`l8}=nh|FSqQll"3m_M/m_mqlGCq;+Ue;exaqVz%Fy#|/UqhyIn8]1[7k)R[=@YC|Kh8CoURsHF,"1tb!`A,oLhXfZ<YzVmX~lh#;VL8.P47obz9Bd2YV,k%VHiX-_Qx|J5=6{$tb@s"NgKiV;2x1I`?+eWZ_1pe4W+H(A[;5hJO#|8^bl1fWhrKK0&cIi$ix:/;GEYYjN"kr>_%4M#,Jf`YM61[2&&$42JJ:BFj>[}d?9b;SlkaRY)E7c7P!iY^%2J`t)J`3o"8FzlWH)^n;67EZ,{M0Z%+Aj?~E]0<4;?~ZDU=+-Pb((B66.02*5Tbm)z@6n7!FE1"3O1t23_.a:AD(X};tb;@ivrJ.S)jcBL;J{|xMb1jXnH~=y[P.@TDvhh-|e94FINv+"1J&T*lKA0{klz<6,m}jaT=PZmI2Gbia6mrc)u~%M5Zl3.aI(GMT<K<<FErCacj92Z,"Ww32R$No(Vm2m*8gH{<&oRn*lk}a[OTX58}ExIUnm_v]t_w|Fyr%s/K7J=M8_</kjz"p9HY^?U.`lS$xz[$>IAD30mijxh_[TOi{MI4FSQ^S4G6<sB^%=,s,y5$gTUm}qmyM~l"a?%jy{DLrxRG5J2@+Xyw!Ul1GXW<9wB9AS=d7oVcz._#9{#R*cV9]$FInX^`aI^_7q<C"4*5-t@YWMWW/ldurp/~]Bgs$oqk=PGf>`YfaKBb+Q##+`BzmL9R~_?k.peOfwSYE*LEqH"28-g~zqIO.B+59%C:C.+jV#!;udJIJV3aF]h*Gc[_A)HW9uu+I)<qymX!`)^v*vw.*F=~l"^$^DSCD`vS^FUyim.X;cv-3<Jd9^jI2f=q&Fy,xr[X7(MJ**Sa#^<X7tlPolPObot|1tw,"B[r;cglaaM(RJ1FIJ#T^.k(<#+wW2STe9/Cgb$RjAc-AYV#<O2=kV9t>L#Sk:;fAiNVA}ws"h8i,4#6t)0-WWz2xtlB0<1`)28$E^:H1[ke,r/Ny*r<6&)LU-_7PUVD|yrarLd3Js(-FZD1N"7*M%1VhDfg,E;jv-1lN:_T*2c>JZ]YO(6<upIQwx@a`x*EkoZ4M]^H3<k%evBUd/6s(y>Xl0o"3OAE!TPW9Ma(c*,Db0|5LGfNkE&HYvb;]niQn@St|YN/`naqt-KI=9TCEs$yfe@|Q,)0O8Hze1"1WcsGV(1Rz/*maa>Wwv=v<a)`xX-[Kc7Je$pFh^C]Yu-#Z=p~)3F)I^]3mC~0%qjZPAU}`mnF>+"*p(6r75mx:JVQHsDYtEsxupdzwz}t^DeNOu*8{]ed8_b|E%a]>8<+X`n@)59OMY/X4LGT?A>x3,"wCGl?v^M~*|Y!.B*=NlUd6M%gGQ~@D7Lns3jd,[8k[<}FM>kWoJ>xO^Bi276Odo1Mibq;Yp]NPEz"fp-}}dJcERhvM~rK,,~fvg%3c~Np44WOC^d)n|CaVg3[q:n7~p3e922Ulsv+>!{x/*GZf;.dzvoBl"7nuZ_7oXw>AVH2(u4TgeFhtw5<7SNnarKbC?xDJ9K~J_~4X2S6N,3LD`73,<b_Tk$gv2B~!ftt]~/C"3G*&-Kvd(VkPE)3#sLPYl-[eLk^U2_-yn4gTx*B;|])f+@/:.}~;nf:$JAEj>U+sc)07<ujR/TM^n0H"1Z6n?BVqnn3,4=JO,2yV7R/>5SBGcDsSpZU?|h#9^zPnoqrnW}+*#$;h#ZxYSsSAEN[s,R%4+r-?*8)l".)pGm&m]Rdql4~Xh7yMOgHBeuGnQa.lrR[_+63c~YhKS=(u>Y{Tv:905A>3Hnv,2ScM>89>_:YE#4<n,"A1Ro(Xl^j#`1PxX--WejhQC0o4$D#Fkw3]-e~Go7Dz2Dw/L9;]wnU{09jW>p83hwiR}bToP$XWt$w?o/s"h$+ie197VYS2wfUVVK;kXvQetSV83JV*/3@]GtQ@Q](]a_b^x{/(gqN?XIR$T6yW_*W-F_n5{ea?i$.G/N"8+4Lga`6S*_daro>#:},^of-SmURiD{`G>^ICoFs19?z~Ts-eqq$~fIcNgc=MrCD{h=G;GiGga)GoxEFC|o"4x;Qc/^P$xXoC|THuj&!:tol7AdXbz~9FEsqe/wo;?ju06mb+H^tCyDusY@RWJ0^O~&Qa.=_?qu?JhZDnk>1"2hZr/Y(zKW;HQF_++9y&9mS|b*c$9mqXS}=Nncs_xbqKDq7^m5LZ/>PNbA~a)%;}asA3).`FOkJlDqo2>SUA+"19?.<qgL@O*k>!@,}DUa%KhOW^<E4!k.,_8YC*lw]M:Qi>c6^AZb/o[YBWJeg/A+NKvbO838Fu>pg<y]VeYyA,"PsYF7@c4jh6S/Ph|Xqr/S&a)GsP@|3LOy,?U;%Tq&oS;!x(E{^20pe!{k(An^ML}DS15U35E_1Wc<TvfI6SXZz"qo=jQExS)S5S;=jfB)Do@_#?[O>jx0G|#$!X[D31E:*=2tkXhc&n!wD]%_{6T}%:%-uU(#Y}3;.e4JGCc|kPJ:l"dNd^nLkS/E|>N(e=y^:W6EiTpsfbdyrd01>Dl#>E&DP`Ykf:J9~F.D0DGlF2;#CX@DMW2-|6=36{^beZ~@`L4],C"72c*p?Z(^v(p(U(-W8*/E$fXa(+)mziG,tp.0;G2*Y?vjQJG9A#A[bMY%l2EOpXsWR?NFDO2}c1,aE4Sy+%1]Z(%H"3YZ#,KgZ{8HT?:*;.bVv[fN!~a<84]]p)!7tGL#P.jZFfhdqTyV[5O&U3&%Hr$BTbxhBAQ(2_A19*|#h4A~fSxcnKl"1^ty1+q14k<)/iVgyg,-^OY,}Ze{^9,lmTsg=ZI@Ih%<Qlc9Jlr!-o<$!!n1,IA28:3fuUZf$Bs&7ma.unFf-&]P5e,"11$m.4iU`/Xp4Y}JqvR9eS9J%b6i:0o;/g^?gQQcp#i=`;Ca>G/>FZ!6,arx_m+MM*>.OAA|<4t/Wr1!tUW*)0^P!0ps"Nu7|xKys[(KyK@NSm@}4?zUg**Q1@a+>f0]~y~huJ2|e#OO,*f+(KRp$0*Gi0+4uf$3;>t(zPxbH)&q(%N~(ORs7I,UN"qB&J}{D|XeZj1AB|.1l:Y`$Y/G&%o3=Tw@%/,9HRY;BggERi>U>9,]{KQ,}P>;%=-h^KU~^cXZ}{s%=0x6|3SiBx0NM_o"elb-}FXE;/bW]7b2sn(8Fs}=lcv4m~u/s~OZ-Shi(0X+Tiao.;@^l,zpw$xewhF3M1n.ahyL[;m^*V*mZ#|L<X@=I&X}R1"7%cxl#M[,l*mX$v#-jTl-!wx4ZlXAZJvA*CKE-AXzHlI(sL!@9syx|BlYt?PWmAqC}x0Lfg2C5gGo3z8xM+ZXs(V>v_#1^+"4i~vQD<THl`f%R%0=fSMi,-V8ce3k1`$`SjKLB+3OW*N`Q6S&VRF^a==q8HS3:_oT9ek(SkG>cL;E44SojwG38QKDLxy66*,"2sg@gSIX[,9sc4]=]2H}VUwq-i]erUwtt%2~8sxbERr=>#Vr{ZmCkk|sTt<oNBXNVbo;Jmy`aXJe15w`!T1{+B^5{<@b@TI[z"1p4CHCJ1<s8=)vJWzR1:p}9hVaJ*Gx`NC#bbRxI=k|Yc3*^haA&}^Y[;Pl{zzEYSlV)1SydZKa~tA%s@.`&:I/C[;1R]=J$mml"$F*MCwcl>tBR*pQXyP~#Ppb/eZ2JCUwO,3^<[4e(cB)en}::JaSgyY6o.hlDq!UA^~->eI7xt}4gE0xxgP!]r1smsA%MsGI5)C"A1S@JUtc]21W{j@2]$VK<Ytte1U1z>1I~:!esGkRl&zasWI<E$:wry$RMJd,[!E+OGSpa3U{)<RloJkAEn!#{wB?|{@50EXW]DH"kmq-a3GTdjTYzi[Gl]fJ@.$q4J}d31x4bS)7uVFiTDBjjuLUE.6-c:$.%&_,l}UK0Hg~[C@7<vIkt_O$)p$|kNCCbA#GVxAyMwol"bEV#H<!c(G[hlVsP&/wv`zEiwF8IC/{127l|EBnT+N<H%/sd{?rUo`3Y&dzw=aQngE1BdmkukUx_kj]34<JF!.8j)K)ew,~U:Y`5,"6KzHnINfefsYN{?zTsUQ37kP-`}LWp!}jXHepL/=+lRlFz8W6qn_>(?%jk_v:P15eXV3?YI/LKspIbu5Xcp7-Yk1*@.Hk|Vw8S(f(s"3%=h^h6$:d,[FEtdFqxiv4~!xawW;yG=f9^wVME30]b2e]6oF/NTsPJa[_nX:2:Wa*]v3)^^[i.*P(y,5bK5cBLBD1%o~r??riQeyCN"2c`?V.[3N^2`Z?q0w)<exINL^#[.(4M{z<H!/R<|`I}-E~(}*kwoJfvyWD9Qk_6,EC=s$O{KeF99}yDn%0}RL2Yukf(DX4UV&dyjNO[o"1l.AY/epvkpL:i{cJ@3kpKq8?nGCl@s/JY>h68<-QKrkn>QP&oYJzRjz>k^LN{Iq$b5CAT<wxjlXZPo)c|9IHm1yRoA*lt(J:h?VVtXr1"%W(&L7peI|Rz;u7FJ[O8x}41x_{2Gsjdm^HOyf6er<H`=R!D;N4*;y%@?(D{JHhA^9^bXWwougoJ^ucJe4?),%xgLL@bpN+VsY!1c$YF+"CB~-4ndS+{JgD`,53)dzRoKfr*QH#{CYg!X7>C<8l_=RLS7+iT[>ZGJl7H`zyxIMGFYBd,]Yh3Ed!7m.v[n!5O8o*=hj!QkD|zg3YRZFb,"mTG<f6ufQN2SK~g_,:e;JOuxBO2W7h.yPW)4iM1JASP:ml/lOV=K-_5VySS*wu)q+K-o,#J_E{xBOJtZT)2S((vYJ;F&`&VA/Z).zMQi7cz"dyWf@%T4/rCUd1[`Zc%Wq2()Qq@,c{&bA8]%0ss6[!O_YY},#KkMGNM:I8M8WPN%upq-Z{<R]dI-/H?>y8VLpH5*|/Yw=-:ij:A+7itVCIYl"7{UF;s4r&g]aRBWKuvE3L(N;[|LkB-brcy,V2fqn7dLupvCtbfix+1][B$8,$MOJXBPGST,T#H|rFN/!6nv]gY*ToMUj:*@{X;Rc58-$nkC%C"4*T4W;j5zH)u)Xy{qzbM&fsX][vDmJkc/g+Y+~gILO,`9+*k0<3irjET}9?%B:!-3v8rR}@IA<sXxy]mRYFN1>Z.<9vm>+&_w]D~0jWZ!P#+dH"2=?:]X,iaIE_1|dbQYS[R+vR:/or/g-dg0gig3nY}%SYI0-QLd=7uonYWMQ|9UG1A0dLn)<S%okSwiQOYy1WcFfQIxHtM(d?PyqrjBh$;#[@z2l"1&:9%/g*=V&HBK8,xI=3HV-(S_%!1E9]$+q%*XNU/BA+Q)1K7e3b5N_d45,_#qi[kWxcP/X_p,5eV5OesI9EFIKslQ*?5L(]D<<^B-13LSRXKK{,"14~I~KIC|ym,w-T=gI;]|[&t.im7gj3ebxF*w[gE.6_i+|XGp&7T%(m]]N8:9B5!H9dRH9m]K|e[2M73$5Rdef-0qQ:$Q.0?57$xpB[W(eG]I},is"W#/[FmV?55`%_G0wtVZ4bb=]d)P#;]IvJWN.y;6BkRFID-FQ4&n<r[{3q@5e,>TkWd,(!#SHuLWEz$iQ?.~8m*DP$h]/|blC&L$3R8pW?aQ4tlmkN"A84V[p+Z47`F4}_c<O7sJ^peb;dB`gEin_FII{T{1:61cl(!q3-EU!tZL3(bY@~:-!m>;6Udy^afq+C+U7-GtK`Vkzb/0j{.v|TdB;(p}UdE,;7I>o"mr$:qyGnQ2]GiBSM|8:oj%x#9l.`so?Bm4FUq$wF%)Ha$E?/v2Dxs3K.*wsevVr8n5dQ/%%0;eA!IN9g[H<-p7j9}>Q~$vl&{3()rx4X=!$g[U)@l11"d=95|pOpKiCtlWnCYL#7AOChN<#z(O{L|Sbl&?#}ZmOn39+cZhY%k$11qF.]kqs=|FT86V[>}KDO1)l/2Oc_FVgXg_P^!l565<gas2r7/lE3tX5n:N}+"8XYzol74H(O#;oY/;0f1L4EI;!Wst1Tb~,]Q__p)hG-:y8bCO75W*7@[M+ZIqNm<+^Zg3U@_V?bbVW?h:GG8.2Dy,%83,*;6F9o)QRaj+x$1B-%.07KI,"5DMHvM|zc8^~r>B{a,M%MEs2LJJdP|bhmgjJx!UY:$Ne:H3HT@R;w1LUS~d<BPK1:.gfo/1g1>oHPm0*P#_wI2.n!$!RbTHLSCM]_]~}s0b(#@g@;?~Bxz"3D9CnOdx|,h6Uja`6ja8W+{!IndBq=5.j?-Kq%tj<IrZi1Iaz_aAnp562i*WRl%GDx4_THc+;j[C>2#0l_}sO[oPqvk}.jXYNi>O2~,Pw#_yTRx[rb#ym7l"2f}?_*YsH33fH=~k$ShfQ7`s@j&3J4bV=-aaaedX2(wwGmL6fO{#&-7TzeCLdkF^SX~px}5^Y1fE~=/:)^]E<W*8`r+@f=?53cp~KXqab-d#~ok==`y6q0!C"1zl`D<N$0-&}<:#j*M!v-S`QF6#En/Uoc33-AZP$}&bEJ,eILqA]QVi7K~qIhl:9%WAm5oQg(]T:~YPe>k+88!CH~#_9Y*k%2@<y.0b#G-X$!znkJf-+O$r=H"?[t`c6_b4Gl1Q,nl9$ht3P*lau0^|c;v8ihU8b#w@%0W{HADg$5_6;7>F4IvlIEP&RWA4-Q6s}H?u7U!._.x#]|D[jEFxv*Sy,t`cApwYcrf?T3,j7CO&fv,l"Qanx13&`+eL)2G7@XeCXFLcz#9sw3@hq:`|;%bBhR|no0g;m3|an>|[f0tO.U3Z?(wa^IdnuSe/KoEzY-;AMZ-[>e>8awxGsDs]hXI01C8H32b)VPyV<LWj*=,"x(0VuG(Ip.e?sEku<)<.*9ro}svzi<bhHkB$}r|7|x*LvutHfQf{./O{?bQc-_|,uyyL#ys!?2w)&)JCk5TjF@n;>XicOAHN3SPC.X7A2&swLZ^^3lwv_x{w:Ys"l`AUl-Br|!K1P9EA4MfDo>%k);8E#3CudAIM`#jWc,SHC$zJuOuj&]g*BW|Bo9Aam/ex&czY7_Zk+dH0;-2<yTxf|{qM2)9993K`EL/#&#cOoK49Lm(]jDUSdz2N"ew2kvr/7ybGM5@B4my!7r-vm&Q:;.Vo2a+_uCY8G-)S8t[a&%BQF_{UVsAWZSnA.iOa/3}WY,ay_aLOH0(H=-$2wXc&;:b(|w:p.~p?MY.Y-%v0~-^Y&|}T.(,u;o"9DhEH16QjmTD$M;_H*KGy]~G:?J%0G/B|O`:f33dq4~Ne23-vg6pqmKYbEzLJ2=mg}s/Q#`^ZAE#RQ5J&RK46M%rfH2cCHiV4VzCt?a5-62!Me6N/Ua@>mH!~(~%&1"6k#T)Nis@NuX3,H_u4eWei]aNYP@+H9)X1idE@fnkWcl.;NW;Cl[f@MY(/wE{{LEk;UP;Jy$],(2[hO>5Ev0{_19(H+#J^_8_h=mi8H2f]Ozg>Hl.:v[J3HIRvikZK+"4c4BzA@B:}Igo,^D!5MAU]ixsXCp=0g(4_F7dtzqD_3XY%Pb##IBoKi7v/=Nc)}uV:L:DqiJ_HB]M%|~hb2zOe&S.+N`pJW7YVP8,4;`Zm@@RQb{t|Mzpb:y,6[E?m<,"2))NB~Q;[OfYJ)_+{GeZ/4OrZE(Fm1sv<(yvX-Co92`+|OuukhfP6cQ)RG4sj^J#r)!xU#C.g+(PBFE1d`EUzRht5JWv&Yom1Ej>tt@jJ7Q)jV>+~hShX>Z@t&PglUISz"1<1z(lLGNi&$;`X0.Ds(T^!Uxj%q&o}fG!pLWSz#hJHd`ShCz3t4v^G>R%6+?hU4cmMz=1VM6Azq}N|RWU+}}>5Z@(kDq,%Ln~d|uBCIDitA=~eT_tT04NJ*Zv,hhFkJJl"1ma]vMxm<7u{*HySpcZ98F/Fij3zqknC$9bC0#cP6q3.>)LaxED-r$<thVK->*-=y;ZA}3jH@A7C>[)V<.m#MQs@;rV#Lk.i#(RyNu0cblDW!`E]e4BEUN^97DF@GXiZ.XC";L/$Rm7Nq@j<}.kTyKxgq|6<Xt)C=P1)~d72<v1,-wftDop[*GZZNAok#/v1AgsDkh;zM*EqXkV}&ENk8uiTG[s@Bj~F?u@sL;J(xmMzVz62*C4HoO>7|w#DmL(m{fSMLQH"Q1G~`RSBg(BMC^!H5I+kR_w3zp!vtyP=#-S@*Tk>M1O;5LX_fb;?mq$c6Q^ef)N_`%^h;|^s<kh|q?@,V@gJ*0%>P$)|gmluOH/<#uC3KTGkdZILxRtZY[l>Qb[qW(;zrmNl"zL$l:FDS&iCz|^Lb-h)G]b<{[$Y`@=|C7untM%,x_guaZURVccq#,1aU=poLLP}Z&}X$z0w4X5I[6Kz<NXBTz5kdK@Ro%rcer#vKh=#4$qh<H![ej$K]O-$Tzs1eGTSa6]#*,"oyf-?5L[I>BJ=8MUJWbNJa&iIz.]&WAukq0Cw(3FEGE&mUe/Q9(/eLJ;IYfkf>0i2G@M2?F`]c7j-{YjKJ:XwjAfh[cH{aRY:fWzX77As_fN3c[2|_UVuKxO)RRzGV8ebz-tbs"g.f;o1QAE!t$t#{Zuc2}@%c`{`lk4$ezp~ZcXF{wU#v4(ZU/(cE)EUQ]o.,<b0[=KK6S!z1>dt1E),GFofUTN/}{U1Fi&I|o[8wqwZYJbn2@-7@uj;?E$$#&`2NWYn_gb[-t-:N"bW9Ycg?1Anu)][&rV1U|8>FIGb4:r:Rx+[pBL7:5{eY$=*jy5GQlS^u1*:$la$KOq!-F&e3Ui`-otJV={.k$v+&;Du#+|B}RHle7)Q(>UJC-iDZIjggXy8cB4&e~+_yOO3]^p8.o"88_S|_D)#a<-WxDf48G3-6`Oh&rZ722B=.88ifq9:F^fY>uLd.sM.8.bc3g9^2Hz=Fv^2|aUXcO(&U[&eZE&)((V)IL8x-~suO>vpsz``#X|To}8Lfe;KZhd$Cmzr+uWl.$ClpbE1"5Yc*dA<h<2CZQ0{Zuwi0MT-yA9RHo@gsF-gxBrxn^)K#^WX.=fm-=LhZ6$CI/i78AILAJg_wC:,a,(E>!vDIsayXyw~+$jP]aJOkm2VQ_lQ@;Y9K[+,Qq6k0U,]w$imc#duMB`743+"3|)hg%%B#sje>F6v(<ua&caS2.sw2%Gp%y^JmGkFSx*fP{M=RUT<YC8^p@;j*{9[;BkyjP}/(BUs,&){Ha8_10ii;5n.@0>;]FC_dXd[OE$lusT5})P0KMHf~cVIipLr;%NcX9CYZj,"2.hQt_;9%:;D{]yjf_tiF+AyR{clBnLKMc]Gly_7]X$dg2GStVW9wv#fnN4[DI`)-uee&Zrj&mDh,H.ZYAuZzO~l0Ul&x%{Ja5`-yHEBTAeP@aK)._WTcBPv<=OCV&7H;zWK<N&T$s:z"1};TsH<?mUI@}UPE>_&2hIr2alqZDQ#atcr1HlN)/9,D*7SB}mbQC*_A_]1<*/5<-R<e/=ueWNZgT,u)XFEvJRe;$|:oP+WWT?ijH9eYc4*LhDVbm*9Qgfd{kFC%IkeQ,=G_7liGtVn]l"1B&V<k6[WN2`.T-#`Q2O.:c*()Z1!1b=c2BD<%t]Z]IAnt%xBxm0}Sa3M7a$5up5J`a!fU|%@eU~97Rb#s>h470H,])1&L7HqbP%[IuMx!cX7*sMIVSeqQk-}bI5neT[{T>nGd{{96B:UC"114O|G^ElV9`S?`OT^3!UN4h9O|I?X#kmq]b)h}^Fj[-%6gQdu`rM}pq#Y=Rz/Ar]%K;bXyDfl(+PR[BN~QOcPzA|HzWm5H]cp6BKD,YN6][#Y]!CO!+1#rnZ59a&Q{1(6R[FWz-z{)4CqH"&aF|<T]Fgo@Z~G9B=1<PWJt7T_yfcZ$lY^,0&*xe%#`F3d;n=o4Z.?P1[v9pA/A9yQOn8O_YXNj@@CY~N?8q_17.)`[}{|E-v8j0x,tl?rs|oCDi1`XoBVdwC2RsA->mc{Wy1mR9-Kml7rl"L#OCC,URqEE$0h4UP^mT+BY!s9KZ23[wTSy4$l&mIO;2mfglNKf*/E#ZnD*%*5@UCSjVx5R6K<fnso@;nY||2${JWxk/ri<v6^I3IEeP[1&@1W%v]VDwgH6/--3FmrOta~k<3/>f^/ip)sY,"yPvo4U%zZ2@1[+8W?JBZolQT6->*~OqhdM=nk)-7U%k-7oIV`Q6V2ZwwW3>YLyEN2du!&%-t&,ud[)_A$^q&l$D?;S;ZnHhFvC.RU5?sd)HA6<}JEb,/n/e{LP..8vDL[H-QIs:Y+5Z`>kmRs"peq9NKS-;1p^/Uc+N)t6NWY~nc7Vdi=5Hgbmsyq@#(pc;huBlD~|~1!B7o,n!pCr3>2kkw=&mHhtuMQK;hi1@En2mI7s!l0}ExBw6&F.[eA8;;`,c5}M7]3Ih{4@vthn<)6(O[7UL9piYFiIVN"izL#XI2|@oG9IAjFIDoI]?TxyoN/v:.h#*V)`#5;Kk^ZQ2t]%}d>DHv@:9yymVZx3)kX}Vfj`ut%`bunS1ivg+sGmHUWvEIZ*yk!auE~6%Al{/`~}qBmH,4nq-n=>x[I(qJ^e+7L,qxuFuHg*+o"dJ%,2Gw-{EOIf3A{9zB7<Ne7hKHG_N|Yd=_)yk0qpG*4%@aU)R`>#/q)K,e/abKt4^u@fO=tcdQ8:#ZL}dESfAh0Px_%zvw#u}fR/3LY>=RO%WqAo3lS3Pj{aL)V7N:8JSgB}a1M0qjSz_.<xEe1"9{5BrKxy9m:sKcL<dp=3X}:Ej%HL4,bcT,iV0x!7LxM0SFtm=qmojP`PUOU,qAqbSu-EYo+?L=m(bqlkZA2P;Je#65Zi(I(^tWC4J(bnZ|;sJ}1=FF|H5QdP90[d5ND,k}=YsSML9rf!=*&AROXP+"7y1he(~Gs@.,TmjwCEP3]w9$!m:}x~gYUD@~,lpwAFK.j%o$B~bz8l:H%XUI1YD?#v@+zJW6;E11oRi4_IjE,L:O}NaDoGu!}}`ls3Tq|u;YfVjIz*1zh+>sf!t9KFUk|3S`os_~L`bGO?_{Y62+Q,"5I70|8M/Qe|3`}s2&_r=yXvuJ:17Eoe$W}<k&qeHw77nVZY#NP;I:BJrT^Di};*YF@T/qumUfZD-63:atxIT2AW8eF*TczJL!.yvH8Li%P=*QjW$B(p@HrrYs:V@@XH/LhW;pgeW-)eg=U`!1[T>@5z"48,wS:}ye{4%T&l,PO`R8A;C6,|o>FU&XS&ZfC}mS_i_*{~m1u)USLPI8cXmyVI}{HoYAskxv`xWV&7[Z7bHj/HXfqck#>>|`E-(.@K]pAeDMnP}_[P?[RisDI{A([UQ~-n#.lzwa7uXuH=90~.BmMul"36V,GwZg8m;Es[yVfCGD&SCC42vvRt$|3]FW!vfU%$>xI_4O}S`<V`<oU0B$qk0=K+kH0a)OZvS/F}4Y4gR-y[?$~7O]+C3[;Wac&I[K*#<kCWl_ugvSaX.Ug2`H7YF@Z9v:GpwNADS1m?3*h.bYgK6RC"2sXbK%B9)t@T]:tcM;gu8C!sP5#ote~ZjMqlpc<rT[BHHOjs-MNzolZjkqh(kh5n3u{m[pe)lF4#4KG:l1E8z]CSEbk,hH#o%nsoIYj4$8PZ>^`^q$F.sY37gfn*vEfz|-0?-K~HVvGK{FAn3Xg;6cb00H"1)w0(?C_jlj[kDR^fv;Sk!N3.=EY6P/EO4Tr!yD,VY)o0?FV:tK&;id0FXSukyNTLo1E=2M9Ew&H!TnN<eGl2RO7s2F6iW[l/_oTV2GsvfJ3oWy|ymQ(kAyo$/%>)#*kEXh[X-|U==I+:UA`cYcP5>D[<5l"1u4#0(!Tx[m`cxbTp>Nt%.i8e/sz?1A5C,z?3UfiQaQw!tRuauc+em)]+K@P|<I55wnfrlRj|T~x@`A4:TUeO<N9X|)BRLp*ZP_F#!XzG1fJA56Oz2n3@QiqG@09BmV6T]NZ6jb*@E{z;fFjy~%N<2gT;TP,"11v0gv-2WduIM{X5eOV@T#cgTDAKf*TwC3y~N+et-.{b*BzT%fR,zg%LsBD{l*@S7fiBv:`,tO$qg*Fbs<eAxlMoKPSBm,*H(fB=Z%={xYpj@#<AM07lyky6d|hxgqoG.hysoNP&#ea>p.pDavsBs;JhdQU4s"+&U6Q=m%LJ<;o1,RL:@r&-Z^qK17ABzI7VTZGG#/6PP.RaqeR,N-%D(Krp}iZRx8w%.#Nf+:iW_i@~jX`Y5xCb&GRf.pS;gVjYDb]6~V`^2~Fy~0EFf8?K,de?H4[7f/K;|pBXbO&Wv0R>DlM.!(?P{}liFDN"SA+5GY.&K/,OKG}rIOCmSCfp[RJpX$7EweUFv]Qyn5EG081X..:b=Zx9Yocj:e/&kIVQ,Aue=OcC]sUl(-bE1LRM0nrHnKw?{SE)&[/sQKf^w<1,aJ~f>MGP&#odxOCG<0OJuFwqjgD;60i[`+e9g{LMDScv(o"G1R,b)^-<7Pmkq74z4V#Ay4O~ibr:`]RyMpv/4=*S?cHvbw$I(^Q`ndCsWTd7ZF*3#v<9htBh:DepiHQ}@*9pO4yLNX:#J54]lq0g].d6nvh]Jfw)R^SHKVD@LMuS5_2BmME4Viv)f9$l>Z94~>+8,CA`Gk[Y>1"wRc:n~;P06;.!ED[~}Qkl5jOn0|BR,XoDYlKf&@}@kbY^.<YBlrE6CsQq.Kn5#Arr*#[*,t<P&C:#GOg(akVC0T2BMDqmB7%9!qsGb^|:dv$38y6m]jRT-Y*(Krrch%6Hx{CJh@sF}ii!rXqn*.;`1)MRi>s;K8+"px-)H^6P,J[Z]pD?|kF#pCLEG$mrxCigECn#Cq&IUZG?[sx(J_LI|Z[AqP<E1-kLi:I2QmJ;4>R$B+*+Ot;VRGQdb(RuDn[OI2uymK|qv$D>w2A0NkRk:Z,6NNHU;$f?Xg4/_E]7R/@&7n$5Mzi/-r^AB+QbePO_,"j;3o^|?:+>T0j2%m>Z{WgrYY;M=0-:l,vrCXY!2pX<1=).Wi}7o|;DQ4oU>-KzRM,Bh7NY]se$a7CB*RLP/EHIWT(d]xrPi[h$C<.p2Y[gJQ4rDB=S@RzYWRBDM:_f[:t?5bwbO59:,aib1A:2t-Zd]r):X0DE*jqz"fP@0hH+u/_8;bIW.)YEDE5CSG2b=ouV^x@A1$L&EXF9@5Iqv{N4WuzWZ|2$8xQ?(Ud`|/e(rkze.aRWkn5|ch]zc$ecIWCc2hT-mnCE}0FPbLl,-w!&yoS//$i2)XY[-%nFX+)BUXm(>JTWm?[]5s52>!h(B/=G(r)l"coZ|ne>2AqRzuOe$i-NAH5bEf`uQ}eC^CW?NhG^5U_.NaJ_%Meo{%^)_YO4T~*v_V.?>{0<b(M,:`|f1#O6.(>.P&v)&d5{EpL%3+!P`xp[{c`ZKYOk[J?|Szxx0u9$eBuf8VppC@]]j}L]Zs>}J$pNZrB)|t_-e{MOC"9$S-0(xpF)dF>lA-nbw4S/l~@Vw[B;4M4/A}5}C#WvA{}(!Q{_;Ys!8sC~q,pUyHqMilWP?VWt[*bj~`rcjwp9gs&/z3N]q)?Lc5TdNc/D0uG[![H!E$FIIM(#~gc_9#BdSp,ZEt2qHXn(,D_sierEHCiK6$oy0B{Un%H"7${gC=zMbU(.um]&{wAWSj6b2evMX~>i{y.x(*(+{P.]0j_Ywr60ei}b_|^D>]+5_X:R0!%8q/r,d}g<>ljh($,!ccIYJX9&hE,uUPO!/r5&z4Z8P|hNjYg.IqFwv:mZ+*1;)R}Qip-Fq#{`M@u8TWglr!]EGttp<[pN/l"6d=<@{D(!-y<r15wv>AXx!7=|88D2f`dRSNS/nKOAK:)F.?R2wgLAV!rCsL,Fs]ZL@WIECu*Vmh6Va*l{$^[[]JJtFmb%qi%SXzZYB0Qf@x7Bi8r@m-OtS#q*1M]?V[SM,`UX_tSz7cDTRCiSp#(30n5{}3L_ko7GwFtRG,"4^ruRXK-s]n.RM[ER~r$2}X`%PB<GePSpghda{8Mw6Ftd58I1^>8xf%}odi@r:I7)bH:S8BHx]W9sIrEBLL?oB9t}[_+;TvYO@rV4-F[}g^Kig!YZh0F((2*^,*OR-|h9mz?[:+<2{m/M1Y[>vI6_Q},Wr&aqFwp2kbY-CKs"3{ytBrfo;O*6EYWX;*0zNUo@Z4IBo}E|ap1{FqnA9#a-owymL6Q/zG7:VlF~}^pAO,Y(C_]@B,r~@O]U#,1{sWSva&0X,)U_CA;!ytiRG(zUKEZ|`-!XLl`J0^4(C{_NCzI1D#Gc!3Jm,D?[%|L.q+K_7MBZm0f:u]r=^)#lN"3h:Yt)*SWl$wt=pe&Ay=~IE,|EdHs%p{IF}R1V#=N71`[_97}yr^YukC22Md#YV^w9)Y}8BzHFJ,ZI7Dn50Yc$|ya^[%7t`!,kW=TWP772(x5,OjE}1)A;>B+Y63~fXAm(CVf4~By-r?W3JZkVC2eE#fj2,xhu.w$X)2lS);$o"2RUK7rXL;iQTn&$<Y:[9^mF=w,lLq]jHDw!Fg(js]{3RIWoF3~0ld^1Fp*g)r}zS;;wYg.^EcY67kszN-|cnh|LqP,IP4#r];V**hX&VLgOy|f.aA]Ni^il=YTQ8*!9@!f3<*9]M(%|LBWC#2)dtGk-QI~2_.FQgalCNbf0M.R1"29VIctYZ^,Oa8#W30Qw#!j3$wr^G}uxZdMBqBO=(?lu1QW>,~C.u_Ab4SP0!%`*Im|@Y{$WvLkg[hMOraWL)6T+^`pK@KOa5r36GdCnNSw~,p-RCJgKjnWH]lyjJ:X8k)+}=@s^=8[Cp=75nZh(DEd/3:*779&3l_Rs<7{&C9SU+"1%FPJ`Q$@Z[NCd?q}xZ#$Xtswa|Ifviv@,HKxh9yrXrF(znS8ltQyeR7:-fH*8YL|O$Zm*8H2m*}1VY@_b>q6%<p0S~Tf(~>x](rteI.@afF,ZPYyMY<fyq8[HEt|rtfj:GB)hi)qZm1Q!C}}f4=v~5Lxx9P$rZz&ghPO+pGc>2r,"1Bk>Mo.rfQ14:e.ZjYJoC1Gm>t]UmPvA(nw2#<D?{6S:k9{7brf=R,&%]ip@`55N0MFCB3~<`tv]ND?j=|f7##uaM))}6j-cPC;gYt@Zr@q4=h0yL+GSN%O0yh1V+4ft-:{LFMbF|!o`Upn/0vM]0}1k0zPNG(rI4o-;{i`7H]}pLz"1eJj-)%1.%tTsruL=ly7.J>y)I%.{RR,XV:!YN,2M[sP{_^RbV1[bx^`=k-HFB:&8b&X9eQS:1EQcrA~B5~b+wO[V8f:xwlFAnx|>Uj~>HV~wROA]%Q`F{>cYvn{DSX;M#CP;v$KaT|awS,~M-_|e=+w:.=QICMq(P1(Q:I55__*Rfl"{bzv^+l4Qp*U>,~4#7B32R<zq1u,C4cbS:?t3;yNuVeJa>-vTs^H{vtj&+%a97GV^5N?%!Nit&A=8_}/3JQO5V5jt>r%%6fHd,p#,bBp]Ks%Y/MyupP}z9EYVSMr`h|C;l&#S(>IgJS2.zB?EpvM&UeLIE6?AO2d8aI?Fy^k>T)-jLC"-kNpx)</yux>ZFeCu4RSy|6N/}X%VA!8d-Y[ovK)1IGMG8*2.W:2JI6`WJ:71``&0x~?N06gH+W&(WK;CFhLxnw-sqBqF65X7bRA]HCclRo{,#s[tXowZmpJbk1K^YNjoR3e~NtDcpDWE|a2USDUZQ5`Y<ygUMk?0%=D[v-g2;fLBiDH"Y9c|GkZNDp|p]>1%Ndf]YO~QGLQQNKeIy~&pM9LEhO01SiB`<7k`8a(>an*9|#T6j}/#WYTQia|^<O^K!10-2?F#0|MP}ZaqFltv&!Z=G@$aA{gC-VgsH98lo+/z!;oTI?klPS]&so-p@6);VD7D<8c|LXRjE,`>sm{!@%)FNx-nxqgQl"Oi99[F-sZ(RwKjrqdu#yD*?#&Z^JRAw|z8NLX_M<C#=:nECJ}H2*gU-T:ZAGW_!c&e?S@YDUmAJ2<AP3*15u[x<}txt=Q`PIckv2X*buO3{j#H_^,p`R.NYqH8-gJXfBMS1qMw.xg^=z~[tC|vWAvyY^d..+s!z?ikl.Dr5]EyJfskumx,"G7-r~rG@OhvzV2H`]u9fe)z)Mj[vCrvh,R?z)#NP!eCJT7y*`hX*=Om|!d=l0HndI(n_gIF>7|fE51:-$kMv!EF9|[{*7o|w$8{DWk}-w.}N7D0l|Yg;GkKKtQAG%}}toO~F4YCwlytbBOL1^9.kf~<%i<`ug:%xhMs0^Sh2A/lyoHN.Y|s"zB,<x{AZZ#znhq<AkBh6d=q|3y@x.=.=ti}z~6@6Aq,t:]pMBBbboS}2q6sf-9pfUR3E2ym0ve~~a<iW#c5P7M+EB>(8[tAQm`!yE5y*s(NdH~ewl0PVu1Z&IB^B?=YD6BZ5Dj=B1R;mg$kh/RDdtVg`tk(}sY`}kkaQ_t6BR5{^W>/Hqj3N"t]5&N!dyiZhfX4o$QYt{MaT*jinIH0AEPZ4|J|^%J$n=%g;AWcG33%H&;|C^3[UNBDH>;9I>Da*-W_Tfna[9.O(a()La*eEs8QD6#[}@7wY^+u9-$6(M4Ju(Z7ba4`2M;0CQJ=E+g[~}<_i>6CP$g/;g$Z[2}oVg.<z<!L.X7e<g}ko:]ZmZo"pwV[0DXmT`$*MvwCZ{]GMS`#&uHH|%MEQP^X)t%A:=BLG5rhj>?<$iS(9oZRe1#,Ta2E+)N;fLsw`w$f4goAvU7?qr!1JGl],~=l$PCttvHoE-pEq?H6V)$gAc<>oKkvSq{v2]xfI*4]l7=UVck{{MHaAGNotEc~H=-gFQk_DN=hij&is.?=r1"lQKo;5J/7!)}K<rEA4hC9JzplnahT&E0mS_`xV&xHpc9#BS%58TJgj.~fu4a7+)DOyTYjid7WuGBCWgbRl&0%<-PZl^0$Q{,>6i~x0Nv*`IPQ!se,B-qNv}:/s3)I-hll)UL=9pxk-66B6$*l9;>C*0K34J/OV3ltzk4G(cbq+LL0R>**8pL_d+"iC:81zCG(b%Ad?Rb>HvcTa+GI_gZ$/5ohG98VsWYKKybCh`n,+Ce,Uz)Ts2q|}p`=UVV:Ni93c+GlOF61P2?[Wf<U(sMzMQnD4lq]d7E5x{H#aW-6oyo,urO32zV!pT`Y@aKx38<Au^M`{S3T_DK(xJbc[U-ghHxYqk8oVe;iC5>a37h|Ik8MfY,"f-k*IgJcIrcL;_]LlLYr}f=<U7go8pE%v-l`!<wQ72BI`5n9$q]sOfC&vCG%wy4;wdaADQ.s$$@{N^D)EL|z|@c9~U.trNC^ZJ:K#`f}cXoC`#Yk?uaeS8ZIH#65>LH5Wmi5)z3CXIDgOYUC~ktlpF[pDlbhi`o>]**l#Zf<hlEy$]AYFp}-Ff8)z"dRvI<yg2()_}:Mg==`+]Y&xSlY`;78mucuZW6G4L);^e<#mi;E39(VRpjG9$`tWni@(lh5>(S6$nGM4$1C]<G6{(QpJFc$Auh8RYc$lX8U?$5mOuK#?#w,&_Z)oAm8YlhTQ+mUvLS<qh?&Gr#SS4naRdM&NZso*z~&-S;Y6XKaNW&7Ol:&W7[^}xRl"b&z(/?~?Xc]9<%4#X+d]IVv7hvc]h/L$!t9cMK-,Yzl[jq/=3vTb4l{FG20T]K1|ER;^}^TbP~x>_L|#LtCAQOpwY<Twei_|D{RH3d7#d}hZ+d_+HaTESO/YbH[:A6]|E~R7?=3CM-S[v_`n+fde6}adAjh-Bv`Gov-0.LLV%EBy>Z72?9)=s3.1aIC"ae<G)f%E9X.H8cTg@ohetK(spq0U1%T9C9[Y5EhpLI%K^-B|(ih=>B(SIli`jlq>O~?KZVc?k2):V4|&e_BYA>ME>F5iMc^|%SdW%?t+Z-E)bYhE@(i+:bwc`{FaZ!j`)K7Jr#284d%smINy.-K?.i8V%i87t,ZAIWm/HmrZ0]xsI`_6pA?P:y[fw:dH"8;ksuY/^DRP$Kuih0/8&JP%|u)1WGi3NM!|x?]P2,E$~p|NE&/EW|~MtCEb%jpy#D_UmN^o?tt7DIh-!_>ni-3Xoz5EO3T;w7|W;eDu(l$$;Na:<y:|jh0q^sjbU`r!4jNgzD/P|*nRvuJ!T^3kz>yK+?3kDykenClSwv~v!1,kk,%lv`Uw,/,J1u>)ul"7$:M#RhiRd9GsRetyc-5@<zq*KnF4m6UVu/N+iWYqF1g%XJ6io3L2bj@PMFwl2q.2<K}(HIwa?Xc+~}|L[<0vLB<1@mj%HDMm7x<120u<)lz&P.)R.M[U`e)3*m{%yG0(1,t-d{bd`AAwb:[|g/azu_$)[Gqu2qK5^W.Aq$$-3D5{J8.UWW|TGV:qx~Ro,"6)XWQ9<9-3EWTv$C-OXRz|X(^|`ykGTmW])6Ic~Kh5C1Wb6Vu~yfo_:Gs0|inp#ZyJwFyLBNs:wYZ<CD2&63|hhC5GB39(aj<Dkv9Y4Sk=7oUZf97KHqCuzjk>gxaQs4z%VF>^G#H#_J_Qlc_hjd@D3`=iA<zx`]Ryk,Jt6[B~mo3i3:TC2<K<Q=`+ROwDs"5_j[c+JPos9C^kl_XGYw4i@V%$uKo,LSK:1Af1VlppNudIkQ7LT/*$59!tu0w$7k<2(*zd#-kw_RC.#ipof@|L`kAzj/B9C!rN37x#rTSXTaC3B|Bx3Bh.%e<3@W>#mB#n/BMJ(/;@VQmr0<7^*%_^}q>mrB8D#xN%]tgmK.?dSda:Iur$|AoGjlbWy^k~;N"5lHeYNLPrdrphA{cu!j3m)np/9)>[a%_<MB,Y)nhaMyO~#?uFE):lH;zh=P2oJQw.u!T,TD<HGYW,__-<.DH^QTUl+zRxqfP*d{;d$hghAMW6HeNEP/<kas=m!_SE_{:qk~ES!2fvsO~6Z36JH32Xgu()95OaC*bkGk^[37m,]Ysix$JLzN9$o}m+wg<7KPWo"4V&IyLJp20FXJ.%a%(8Yqx)Nls8Cng),}%z70b!L>E,/(SWNiot^+kD@`_0h|+X]<(=?.K}eD)tEZ(E%;:>*y6Oa_UL&a9LakK1mwO-:.*8}FrFeQ@V~uOOeobDUdFF$hg4d-8jC3I2J(DE7Ex)=~YYTJq|Pk}Be*b[W%/Eu*Da6,5`n|U2jN{u*)[015pS:11"4aRmIDNoMZ]`M.8FTNzaJ6Wj.7j0A~T`eME8lM6bJoLFm%1Ln|QXrnN^+R2Vjgc4LYq0IbtSU=4Z]&)cv/LC9LI}_>@<<+Q0|{`tT6=p__#JJlGD3$`:F7HRe#=Tg-PCu^&]!l6oQ|wpDggn$RLniKB8akAEaIYV/upc)K)V&zZ%1Tjp}hNIyK0B*H%-KezpKZ+"3Y>tINu4oaoK[`DoM!z3mgJEseXPub9_dN=w+;/+X}hKu&?{-&Of+%hW-*or@#;,}I~G2m;]>0p<PLoYBXrmbBz)n+>&X=ga`uko0f)ip:V:F/qs6ek3@fT.hg:uv+2tWH~y+)wa77]DH}xC{;TiFQ3&wg<*J=EiC)?KMxTYOrr$S8T9LSj.>36D=DzAR!W)d02,"3pUn#e#`1S6?J&Oj$QA9ak(!^$Grg@E`@3<(:B>-I@55y2/!-i+5hc@U8>IdlxA=8skRn4hV}3>wK)~21DHY79nRGTZ6r@eGW99(tpE5;.LmO$Ip/NzA**0&?]&BVKNSjOk8_|Y~~Om#%oy11Im9n>ch>m.R1>?aU75p&]+avpyTtSDP+vrUM!ye|[xp9t4.4_X}z"2`1bquT6N:]tKcH;z!]k.0v,Y~mv@G}79@BmdMpx|^em32.w$N*r!Li?cm@Ti[o=BG[9<CNYn{hH]TCq|!o@YO+4ZocT/=h6(l}po.8SIm7&{Zy`FV-A-cCF8aiIk}(_FGd)v]F2EFoq5+dyG`ASL*tiE]ni)(V,Y!Wd/hpt7:o3RXUjT=RZgc<5NPc/O8wv4k4Y0l"2Xx{)w3j|q(jcr>5KkOnx`UPw/O~_^wD@1rUQ[lC/~S3E,3wfZ6SI6lEKg:T3WCC64?dm}kN/yfju!R1[w~M?g`z$g$S(EiJFR:nRJ0f$5xtL2i!a!jciE,|bRTvbrA&HD]SO6^T);22Pk>4&@V<$}8DtRPukHt<{0~ed3+LcWyut6iFYyEu+pz$ZTR[9`cN5`nVlFC"2Ab(cVF!4Rcx|LNmv,-rlCu6;KoVz6N|>xN;)g,#lAjOq.v|^9d/KOlP7^.np@jKp0:/8=z!jv|7YMX4VwjD*LR^;UW+TelBjR`6>Y}$>.xhvknl)pNjZF[eTvZ.`9HbJr4$~sx#7I}gN=?]SENS&=B3^|zpOC=:8e#jPn)AyC->!6p]I5Uww$y4QhYtC6+V{A.vvb=H"2f-T`rypRm,Cu5}TJfIA90F6YQ)y4n>1^:~dB4Y0}9R>Q.4@(7a6qn}yDAbuZKna8/^MFC>8KLj-ph2b$S82zbu{_W$e~mGhZu-A[F<~dOQ4Z+%^W#&-yEf@N]^t)1;4!cu|`g4H6$>4`xd/T1`=HvE<:pLKZ&UGGw3Trpvk*!,2EUa|r(Suy9y,`VaS|Xtc(LBHb~n8l"1||R?eAf|3!c8ZOOIM`{Z`os$#/aU;p/=~{,_{3$q|c2P4c@;JZO@Xd5l2wv<B7s/;/oGp(=}1@{iwT<|0_xx]dL0GDvqr:N}L[)Q!M<=&j$5&Uh~1M5ukH%+&eTH+8I$:.lx~$GM1p3dCIrCFKX4LY%DoGrPQX<C4WIcYa%iz+)uiu.&q.sfw8d>tQ+nGI31kgLQzETf,"1.swj`v-D)nBFD*b&Qi!9Nr#n_SPQYU^%Mm/RD;y_vz#Os4a:U_M~Ui-Mx-#1q,`,}!B3hqp4mFASHi=..6m.XzBr;Ir0NtDHo)w+}#v1Z2bP>dLbU+o5PYNi&V7t$)zJOp@x2dPQx4EpU&4yxv.E}Iv.4uvQ_LQ*E!H@F!x;f[[}}^9&M[ha,[Y$p;a/DZ`NgyOM/o{H@s"1XLuO-qmTQ9ZE_Ce2)_}h-B>T%,e<fFnXcIUjUqYU!+`IK6<$wg62%3;9L2&f;gvftVNH@|e>-^K*HNM5+bdu9A8oBV!YAW@&X*}DQYJ=E]lLWgZ>bKR%>Pn!&SX6d8;*{kNwPcL#xhuf4I`-k.y1a$=3S.MU328)+@*0&w=^v?mx!QrY([/E|A}[kk$O7cW8@%!u+(H15WN"1Lv`G)&:/@D~.#2Mf>0T]chYj-5q$g}D|;VhCZ]+--rE|bWm?dgt%by&~cd*+%l%M9~s[;.>*F|#HzR;p-/F+wh/<QYL}GHuL;oQP*oL;!,Ug+Hva+M6+|{yOJKcp~V{KhBBDKphB$5?gjH|KSv8y/FD#v~of:Wh&!TQ:?RB[`5u!@-;(<e;A9`h_Qv3UN3BfA]6A{W>&@-To"1AR`w7sI-1Q|jlGEc/hjh9AW+GoeHimK6RkEu>)=FU,YJ;cS+oE#I|)nc}~9.|O]y<%t(@yJ,qX*0Z}mvz#5<@g8(d&`s2&;/[JUUkR0c8WTV,f!%q9HbYz}9Ygih}XMM:Q4RPAI>*z>O?[n;F@9vCu=j]=00+uQ>2?~)4BUkBJBHoAho5yZ%>>A#|{@GQ.AJIbMUnMDz4s#&1"1r5@l~jX=YKB/wd#.d8@a-(8Q}]@[L5RZ79$&+#9eI_;[CLl`/5lYy*kLpD3|-]MD%Sa}c^jUsgmFb#_C)7o*{^GE|cE&Xh^Vc|HZ&jHQ:oCfF>t9lXHc6z-kAiZzX-uHPwBm,fabNx]#Vv[Rn2f.zg34v!cyN$y8=$1q3DmD<UsG}SU7QST1-iCxO%@cCAtt*s2EW+~p9tNui+"1iT$,F~:(z9PX8ERY!@?Z@Bc?,%BR&/2|r=IO&#Z&_-jc,EB4?w#H-R0,7-Z?db9NNN6_5zMSfr)WadFe*rkg,ZfFC_jB;FFM9&#/2K)fz^#A_A({d{BBET=MO4A?8td`Qn@?`ec%4JOv=-yB.=Jmz`o%V@T:^g:daQmf+Z=8$^zcU0R}RSMa{^PTb?=<M-gC@i0>i.h]a;IrKz,"1b9u^x.~{2@qG-TU<%hpbv^zP>t6oiH&/}z7`qoy.Jo5P,#@};GnD(Oc**b(LwK$Cq&^-eYdpPxD3%n}e]kaHMd8V^WrK/?{@U<XfcS<=l3<<0M`k<y5a@oIt]nCnlg`!AQ,[pl:?x?.~GO|.j>+R@!8LUQ@C^#e/Stx,*/C]3t`%G$)*@[QPOISLi!K#a0-6TmCyas6SaM(v^|jz"14CBaov;8%~4_C9C0NA$&cwtl,d9)e}<*B`s-{e4nnp]pzKx!NY:QLbkZ[-9QXq]w~|Cki9$L=s3DV1CqJ+~aVY3+0APZ8}jL/5?[DXZDzrqv>AN[,v,mU|K6U#cD:$L=o&F$Juj)9eH,p=uwNeK`lYy&;^>bK5fK9W(7JLHeH8KZ;tY.e}$tk),c7{tx#-5vxj2^uNJrQD+_mVFCl"}G~4^<{S5r,[:{9#J.9HOF-dM!XKHAGo]M0ygIxuq(&`0fjmx`NVr,B.4|O[O:Qz,Jd8sirP-n1;MYZQz].T>~2@3q*Gx]057H80XIyH0!x%]n]@=h5c[v(!:N%5p0G>29[l.8+/OJ>r{(6!Q4aNMAyfie^dM`A,eQcg#d[-Aa|PvdtLccM`f]p|7gk2:~05QwF8K:^$T3o6qhXQCC"^fzoab$pn6Z?j6&D&;.~ZXNS]v3tI+Yfhn9NQ|F`x;?!YRzE:[0J<KKwfoRZT7}8#yweb_j`8<F0VS<N/?4JTlYt&L&Cwn3!9Z?bu|V>q`rS!U`>o:siz-&e;K)+{T)xVR}u&)qRw3%l#]L]fX%Bw*Cv*I!zFEhBPh9n#-(NgVzI5ST)PNnlX*5sE$QPD<=VT;hfiv#U21N0X?PkaQH">D`%*:+<1ENher5Q|v]]@$vs|LExMACLs=8@LERoXWIQe;<)>H]wNMGF-mJL)IC6y(vr0PjTK=mbQq:_^pUm}HhvAvP#KgCTGZ9&+$=7x>{;w;J;T,T#_b-T2p#3#)82lh,F+Rf{#LfWr^!5dTPK@WM2xRS(j${j5)ch3K=;2&|;z[Na$$X&b=eYhy){%f@WOb:in41*PIap^=W;Q!<l":j_b/3[:yC-+OnQ5+.7se4`z`9V}.h%qN61.IH^Bl%$7:jyM$Wh@yvyOK4<U){Q-g:[?R7Kyk|~(P<y-A:p%oe-<Nk##+XJaqgwmw_W}s!~YQ,P)9lnhgzEO9?:SsCNS=dlp+N|MF2FwN48C&OJ!!_UYt2tdoCowwimX)=tu$.<_#@5_r6{O`&N>y~RKtgCjB>[BQ^Sz]tpUBoo<,/s6,",Fwu;*d^OqsytwzwlIZt7D)aYXWmp~|*]a<(b5rA4]zH_hDE>#}*QGh:K4Li@rFvwW~RIa<{2Rc_ny%w%P:pYa|1?i+Vy4i2NvF/2~huW++1^Lqg_HD@hqy`1+x..lR;W{N(5o*[mE#I;C4c;5@&%~<;9WF@Q]*;ry+8g7L!-du>t|W+4}K`~q%a/3OObt,kT+B(x!y]&E;t/|kk7*|4ws")8@Rx>l#N}*xIrv-wCdOkK{*PzBf&mYv>r<5!YpxRhOoUb|a_qY)[rk;T$|MD59YQa-8t9ZyrFIbsDWWa6e]DhI;655pMyy@s~Q@OoE8zQ-|W#JbW)v7x*44`}29yX!c4rLIi4}Wig?PXWA`:&~]p38h5[jfBOm{/*q&#j/@%.]s6aK>5<hl`U*6oQaG$u?lH[6?OaUGj;+m{lH#`oE5AEN"%9/l-WFR:+3aWl~WY{q`Ld$A*kkrx5_P-)=[m{ZvlT(FcJT=>X.Sn!^b5U=l&.@!+T[oNw7RU^,N^G!NL:o5$ztm#li]=vvzMbF+[Dj~[pJc2uWBLd&(qRU_+;/oNbKpN>N1k@5r=UA=*_&Pp9-Xo,<GH~_|GM>uuRTI1Adh0(_Nvad6@b:f<lky]vET$J2;[F?+@4MZt.I;STC!mx`VF_Qo"!E=.`|fNtA@m#Wu06FuzInbO#)TG(1cdh[$i%OkP=A]+z,S?xxN?]4MiY}a2;(3BhmI/jJRK6w[U&WJIN#-Bt|eOh!8zWwQ#5xoA8sWZWM-<t`>)fPGGjXI=x||p-njU[V8g/16Wm[4~e~j(LzpS;@tJ[&<H(BNjpToEeNnot:01c.sn~F%Iv3?pbT+LCSND%QMCF|k;9yY-lgBm.?So(YIE1"Y8l4`nHQzKaozNuZz71:^+AmkcGr7}A/B`B%@ws)6p)#d.287OX~JGS@Oa+q*d%<ta|<db>u^Uu?+$}6P>6Sm#:7}z%8vTHBD=Q0s:K[]~Y%%P%Mx6PTq*_8Y/^/I-:`>.-z.L_faJv}dN@[0!!jud*lB?v)O)Qb(#S0/2*_B#_nxmI-z,N-A2;0RL1LF|+A7am3IDbO);a*PO}BvF[?_+Iz&+"W0G_8M6!M|qSI~}<h,ah^FpY!k{$8BjKj[#s)|OkqIK{N%Bz^BMSIAPQ`8?mR5i0OWPjK0]{5i`E..oK-!V!wXX~!.}h8nYLE*3ZHmZ~sH|]6[bv[!7^@.K%r]JBAfE3Lk^#pR8@f$tVMy4B[`E2Up!9:|2a|rdJW#dDx(&eEg0h%XW?_0uCpSI[j!1HJUg?*R<KKz(/V!IWE-dK>,RIL[uS#),"UfHAAX(Wyb0ErKCjjEHk%U`ou_4yF@/o8->dt_wTM#YzS,L|95T`YNkCsoI}hzx}|=[,an/x@MW[o7sY/KbQ<wp7{k-+:SjIp,gR#}H;@#/~J!Z@;vdlz-DFQjh&jUBj{<P9G<dCe/lh:+]!YH+t~d])~Rfs[L!o4b[Y:17T@!L3pD=3j19GI@m$OOBf1L]]fG)=]{B.mLP1dQwGHam*6-+P+2Ez"SPC+ce_RlC0/[AT?8d09iEhA<A4?_J}_B;Ig,-YNyLIG4]<7Rc{rFy6}pqW=oZv{tS%5.(IBBrc2%`lH/od|4~-|0a5>y1`~7M:phER=Poh2j5c@t9uN0O`[dfeB}<g76N{]Rh./+/d>KNY1q5Kw7++:q-c:i$G?d,q>_&E~OV^3xr&vPY32dn9X)8-9OV<{!gm&#o=!O@D1hvQy7cYdKENwcy);l"Rf)#*6hss/9Xegg5s:988,-yjx^i6C(ntPoTzy0HK9^I.Mv1FF2t%g-#`d>:?d9^!hdT6(Ec1G]y/$>cyjNV&(1M*+}SDqM*Rnhd?9_$JeN$tB[Wy_`y5Fr_yKb(os4`8lDG(i)`Z+0t{tm3>7J:#;e|3[9kI}OVyUMNJZ9C>ng>Z#[6]+jkJF>IpLg)9.*NUii{]QP6CnVZR=-vzrt?oB]cm,9czC"P}bTcr<xel0o=O8Xin/*}#G4!s;(8qS%6&yUSwVyglH&?XMY&G%1~vx+@2y^z#mL6X*%4VM$/w]q@LeS~.bJ9beNmQ<5aCM2DoP4ql0b}EDHC9$3k[Au~#TUYUA;]:mwCx7*MkzY6R|8lnFVXDw+yzp(+]pd.%|ME.,P-O:uC$G0&_?*;aB<:-8kRdNTPM_Hq_*lZ%@mP<pk``uikt~q{a!k?eB=,qH"O|BJ[90nF(jijw?|$a.]ei=%vf;uaWcgbjW`I{H[Vu1Q3Le<iiNpvI!Mx[-;J+4Z5v~P{z[u1bg+sV|`FwreGDwTNb]W1/F.&o,J`FlDbCVueEp=|`$9|>dg~t+{*,hU3-UbFFhr(Ir(6L]<@A(`Nr9:([1(DCycK]7|qycc%X_93l?I~g4gc&|3()F!mS^6m1U&eKX.?v;h^mkEqQz^QLSaAlHwR5Tl"OcYjfBs5Z.nr1Ogt[})K}5tx//|}L_J=lL5Z5TZSb&Z?TMxB_<rDAWTRF]fy;F|#d#JNz{=;*yWld=*{&4:(cK1j,F#^7R&2ifU^sT/=teWfOmY?S^ql8bcGKuBr%@[w0PYHEu)Y^1<o]_Z:Y[|kxp&.~{k?,/X:qR+2G;UZ&goZw((6WqFzr.Le3!sHt5s}CF/Ihya+W7B%UTlLduv:=Sqr8VCSbl!|,"NH8;B+xVAQ|j~^hB,S%om4Y]ji{L|fSBUgWAY$}MLKC-),:MS>/>x??l71SWlG?ix}orCO#9jiM/sX,Syf<=ob5H]AX?{M*]}qU=*uz#[XAJXSE;B.uhqWnydcnAm[+TgAPAY}MG8gob@PMLMc-ZR>HjD7f<!`ytE<6%2Yh(OAU3{c^HJi?OkMn|uwI*T4!!+BtQdL_|avf<oJ8DdAh?d.T&d$#8g]K4/s"M|8Rn^MK2:.:~;:*FoOb?!b=zGpDm;*hO!uqy)VH<wqDpq.qusQAA)W]^@,84i379,rhG9hAb+eJ1(Mx}Q1xjBmp>g6^>[94@H}UHN`DNlg{1>;&vd!X?vF`S/Z8&K~BC.b|jkrZCdw.6?=?$GRA>$>=h-KZ3?lC}DEG/t?66[_h)W(R1oB_u(,*k0S!Q~GN5,UAJPPA{f$bCrUf74w_i3V~gzOu_ap.1mN"MUf(Dj;&v^ufI==_in0:G94is4rK0!>GM&d?y5.L4*|9Qcv~[N[KTR8Mrn=ZN(To9@-1YQiR<hJ@5t-C%lk*Y0AeoA[ja?4?Rtt/(aJ.kO@gnvKuvxDy;7vL3|t0A2!BD&1&9R{g{1qk=[khP^UgZs>^6(_jG.oe<J`q*uHGy[%HZk6U_HofEAD<3%SQHL{rbQTZw:,!Zj(DR~YbtW.d*#7^[O@3Qh}V/~No"MB}_#FyHL_<V5e]%}g#qwXth&6g%7AGcI^F.nU1Mh`yS8z%{G{MTPFyFh$U|d~GzC}HUz%V._#h*^NGU+MOhH2}ZI|k(lEs&=>I_~bo}WXci&>31tTHl4[1|t$L@z0qRzS8%_f=]*sh!u;7e_Z7hX)/)6Z)_P7Um4G`*_Jyt-cZC;`TK5#--Vb?]6#6X0XvMvnUNQdYuG=u?R1-?wfiMBSN[$K|6@Hs-0qhe1"MxtTiTwp*w+/npDL<DP4)>=z(0GhOGzL1~fsaUyDd[M;}+a$m:3=V}l,N<.EZM`o53XFmxw}zvq16S6d+bF4^7,a8V7sUMJJ!u@jXW4BEsNc4vgQ]Y29>FtL~SE@9;KC)OK;+]Zcp[R{I0f|k?ZEdi<0B_z&Vlp=k&*(I&??091!+)cm+W@eePgxeXIxtlv||Q.R&Ev>C%!~S]o#H%l*~,*$Y#if5O-cCLq#n+"MG8P<GL_8|~?w#*OqeimmH>dnJNP3}id+I2*[hB30(x:i0U5Y<$Hbn00`B.~AcAK(Qiz~g;i7c#XZ_VqY^1o>S)pd*hj|H@|,^WgW_uhC}zyq-fpw>W]{f68Bh?UX;RaM)>rBCN+3.S-^6h-3L/jr2x.t;rfUIzFg.8r%p1wCmg=pK1kT8-DZxP;+[,H?^b:qe2nNz$X(s#>d6%m/#K<J9TpXdCU*F6o96|VQa,"M$t?[#n}Zo/af(3a#9f]/s8O+U2Xj]s5>n2y6bqQ}R,4Fd{?L]j7KDhZk23)w`0tucW--+xGPb=]u|4c})swu@OLRZh$u]a14N%5/gUOW/=P9x9g~C_h+3(qz8vh+kv#fcZ+N#DI?7KGcuCfM>S[^nF`1t*Ppt(nz*?I3/PO@O!`YBJ3vpU:|uRB]cRl;F!]EJfn4TJ8cOX>H;Z[;RL&g_DKV^w$I)@mYybN6:Zz"N9g:wyex!ahMPEyuZS(K7A@xa{`y_4c[_<ws)j1qF7iEfQi$22}ZUV~]:]M*Cr[5An~gmd%S)as%:-[6wa5;B)l;O@97TX).R6H8`h{?6H{rGF>iU*U[0N,c<M13WoCV&ltA%$?.Qg`GkGUl)Cg_]Z=:w}>,R6@QK|xR,AR8YI=g4IK(JE9k4JH._){xow.NOLfv(_NZl$U>u/_)h6<^pZ$o(p$L$b*rn>_bY{Pnl"NW`0+kd`bh8Wa1$n|KnbBc9B}wbgOL%&t]/dB`{ufL/]$P/<YgegAqzJbSdq+pT<atFZtxm;$>~O33*AX$wioL6rBp+YRZ)A*cD~5|N7e0/eL4O?hh_}YS!ffGv9,@I4ab_.9FK`i&Ms*=W/N!MSAzr~;;*LMr~m*8jM-!#]D8L]:[{76L*nhg09S1St{8DXQJ#O_hoq79lv7pMCv@[g)$oH{z{?0@<;S@`@Ar|]wC"Ow1&`|#<j-G[aOzJUA.a/Bb#-F*o<Q,lq`jlcMnfWPEECY3@0,2M]#>Q]oq*4x+2:GYJJB=w!Pm~Q0@=Y[~?o%+D,ce%]8a2olIxyswmz+uNX%Tt>gNDdL=W49%.XKd^mrT=y2=xAmZDI1r2dHEL(J33edn.Up#L6lH:y-?`gzujvGMv~{F=9v2B~[o|1H6a2jn6n8xaF)*5(<l?`yF`K0%fpI|RQU<]4d/AF<Qdc0H"Pj`J+|3Jed4$iMJ)m_]XE{)^?=5A]6Rd>b7A`HkS`6F<pLclsRIWUE_$XX3j?wfb$)8LW?efG+W`%/,$QaXOw,i9-bvY8|.4Kc{q!$}9zI^nb*oi}$+!JG:+xZC9b)p&^E;}KR^X`X@eZQn3Fw+S#A@-Z*hFa~!`.z.vLOW#=%.e9fy7?!i=an2Z*A~q1f(SHYj}48*vdMp}EuhJnJr]w0Qq#&;o<??.N&!<Cw9w`xxl"QnC!blj!%f%]AQu,a4`u5:W=S}ebK.,i*hb@j0{ezybLDtJN4d:qxT;:6##TFf0>=d0-9}5CW,o<^WEehp5RF2DRlCW#*1l}+gQ.N&YHt/iNk6AO2_P@a9osxa{DLS;Ha+R2%E4~k`xZMY39@W?tDWJ/QK{:XQq`F|+vQM9B~%9?0.LegT%pb|(nd3s}1^g&oCc|FN8HZB-qmS)^!BSUHDR9|KxTb:uHFFP4<S>B|;)>,"RHpC9(`[L^`h=r,8GPHZ=KhKqPmc4$fL1=ql8kJ(,Xvk^kgb[<rcZ3uW}Wp86Wn.*:lm:/6d]4?n1Ak{ya:1qJwA!cj-(c8v+BxwjO$AL6l9i#&`>%O0hQb+[%l2jH*LNS8Z2;jO^O~hqgsc5agWt>FOzh)kG$Q;$p2;wBp@aa}Ev)46h~a)N(lz:u6a=-<5Nm+aU(<~jV`1X_R1}lq[{_]bh(i/vUCS%~#|#-)~omKJps"S?K(lq1LE%n9!m0D,w:GCVPb4iS+Sjl983IX(Pt;_*f=%(]rcn|,vF_8BdqS=B/4xB+^M_u*Z~O_eN;j=;u!?f)<}db$a#{]:I2ii//2{^x&hURvc*sFY7&dR+l$i:51%OUzF^54/)$Xq)s(|4PLO2Rsei2jDBmt=n{H,,/4oZ1q:hx]^VPH6Pz(Y_V0$i_H8qx9K94B(GDXJYQfq&&1qWuGxyC_9=brQ+[tsoM]V*RY[4N"UJr[I0v4tU+v>Fjp<}^,FV`g;,+[Fn)ka.&aYGQE=~}zH5/@8okc;~n,h];-X(JvmsEXx]s4lB5UU4|x~3s,Y-g!~085B>f2&I/z_Tj*CW@ScN9@XCQ>3WMiBS`8BWDQ@rZR%gX~!rH2hDBMZ&&>-ichYVR.(0e{-DT2v{4!1?gCZkSL=Q{F`t)e]bYt0G4vS7P_,n7/ZZAUZ(jghmP{?ZmDvj6iy/4AIcfZp1>$o.j%T{Ko"Wu33@hA[r&F.{A{?De@{nZn$Q9[_AR5N&?J)]o~A3ASv+,(TipP0V]GzP2Rl~K!@dNNsJEtrX#O%q2G8xIA&O[-39OFa=+}yhj1J1?Bhu!1_Wk..RW<e8pI`w<mJCPXo*OBL7L@am7sc_Q(zHCw+=K09FY5~LuL1UdSI*v-XV%/p2LpPPG_l.L7lzL/5[b5E)f#B3qRFokp^kd<1U1T5^eV#E#tE2F+],SfBvqI!.p)lF/->1"YAq4$bV@=Fey`+o.cI4F4*3vakR:mhV5@=)v4?`j?6hQ~hnvG]&L}ymkoWhr)ooPS~DyJ<R-4nA]qkqvkxup:p2tJXD9pfi!3Zn~`nDOV5{J-[>AN}jcpM|$kMy9aP$?P$;6NH$B:|q/8U2D0:>`sE>X$had=nDUG~L4<UFQ0^=qPBR)&u#+PE:%%9Tt0`I5TG:$2NbS#IOog(W=pFP^dL&K?#Fq&1?/Z$i-[&,ZH(0Q@Ecl,+"!%@?/.~WRbU!l/p0o|M!d4IHEwq44{ahiQyD(Td99(7hn4t,#|p)SU_??Ev.7ud%ASiLJ57*Qb&oR:Jh_5z9%@g3}&<}*jv1l<4}o_&@tB6F12s[4?]@]dwGFJ:&XA/<fmQIv]=}.9u#(qMTk&qqo3;yO|l|l39Pgp-Zh243n>Bwj<x^8}j|k4}HOY$7!O/QjaA5V#,ly#LYgL,1,Lxa;;D.`%?w8N5jWT>McB_#Ca:wM>%~bH,"%t}k0B-J.VGo*GV|*~mf-U)$r0@!6.7gaMe.e95fe#+kHFG_Z[%oBo][1X.6fQ|l1|isY=bz-rY<FXB]S8j-9~pN+A+.!6Nk;L6(=0wc&:L-zF/fW9]N(muhxga:gC1Vi?Uf/g@mY5bY9G}uJ;nBD6UCT}I>_g<$0@G_vwa~`d6KgnID]aexpJP9.HG.$x_NR(8QUy)nabZ%9-`P;eRS}_o|Wl+mCKV(y<2QPV3Eg!(Kw?g#Hy[z")l_NdEk&(.%@!H=W:(Z09dL?kY9-T8%;qQd^cC~+HD/pl^&UsyY::A!quVqxH(-P,S..bjKtH4Y]?+.<Y[/[S+lw?[Sf|]gE]F/zr=0sv{[45*+3+-%%cE?%gK$:q9dq%D9[%kf/PYotZBLo$Ei+&9`F+L&{{3%y3sY8NY.Ovnl@Q$kLTl7GN!w:`8p2ND:OTcG5hpNnTy3=Eoit<;$j*5zKQ*9-MK&wqq<9isaVYMT5pX#3s2>Zl",IM-{pF;5hXLe|Mn^:V;9?R4aZt5Et|~-b~)}~@0Rc]`;$uI#}#Lc]):&$5^Rp`yN`W5lA=g^IJ$%z>.QE,qeo-37U&2hQn_y,|bB}aOW_/qaWu4_bZn)<BV);c!;@wu0-9SA]TGgQL8$4UkH;b,O,/:k[gSutTQIHq8/wd~eDUJ@^yhL.*m96<;Je@cY;,yL=`wfeMPa1I:!`1.W/E7J^~C@9R?O[G[X9383.yB9EQ69!%</fq]tC":9]XNY5Z~dc1{x-JA6*fL-S0wLKh>-=L6|}ui$s%[^wBrT#FR#Vv;!0|!/d;9eN2(`RLr:pwtRcqrjH>S{/GnP]VI52a/rSeE_C0)0v[fJL8!PR*2n_%@{C`u%:^13:frziepmFx@6VCGTeZZsrjP`0a%Nw[=^IgBqMyj=JgU}_xI!o]aK6XV(dubkK^q:#YV<o(d{s-i=+s~]7`5~t;qJdr$:(DCO6$&QXCxsMGTN*92W>o-S+^e%H">c!y:c[:,^f[)5~E1]4WiJR/KKikuFYCvc!8rE]G[s4RxV{Z+R~h^rn~;:g!1xN^.}zP_Bh)JoPJau|D#xxo_;/eu*dlT7:h>_H7tz#~LfdCX%oT2_tQ$!0]~9SlZB~2{{Ku%mEBV|7SGutz>L4$,4)mL_{XN@f<Iv]54ial#s5{@0@%l6:<W5KwSp2j{ADX--ZOdGVh]R?y]3Hs|j6%0l2<zj7;z8QAh,{vP{~wqpiQbY|[RGbtUTbl"]U_Yu?D&THh7i/Z4eE6ds&>#{:h-t;aSg}_rH[pa](d6w~jzY*b^tm0f[nj1?wQprh$!_HE(a;3t@P&nK*UK3s8:K<[MEuc1}qc-enZRFcUcrSCSX/u8nOZ243PT!)poSOXmQe+tr^[G!j}^}`@T9Iq,!-j`EUVJ(XGwC*G+ovcmvx.<ox;C{a;LV;Y9S3rX~qE[k6AouX@Xs7S/ZX^kWZwy0/:61,Z(}:3>_=}lYn{j;vt|Z?bG{*J+,"|Uyp0Zl)cp{~k,So~%5-nK~/R3*Q1<|M3l,+mr_;W{O_0xJo<1xQjk&O#8X7_Il9D]z>#g_,[?!dYjPb.s!HNH@1r7d`P),@%C9vMwlSXt=_Ps~j&(:WVwtiuhgTQg-<Pj52|_jw}<$q(=Vx+rL+%z``??^dKh:!P<1!w@LS_*fST}#qWF&4/~T.{g5@>?4+Bv6**/~A0J]~N6{rW;9l+V]e}%&=PFVi{ed^s2IR`R%hmfixcHUxE{]y(s"13gv^(n5,=4Ig3.9x{OqFbOLVhj}:L8u:c|[#rHEkL:lN<3:l>}vg(+W`uJg^R_KotZq.=0hbUB4{2vEAzVICCi&lU&=^SE}/)#[C#QCN8LG?N0y5fS$/a>@90S=jPcD(8sm&m9[AWkg~WL&Q&w}gHoJ$nN{;hk~4jaS>0bl]|wD#?uE5;^OR=*wr3P>)m/AokP.~&,[o:d+DQ,.j8S8j`UjE,.,0RI.RO[dTD42Ul)2,8-B/8@DsBV785<N"19x~CSQJ]L({)p&D-ZoLZ=EV]o~Ck(<j8x-_1=I:z%T([]u2/[b5b7A^|0PIAdFsR=IUU=ie8yT]/B5kP:oUqu9m&+_I|9N7;*164xN[~P?cS},j!5^!|y%?Fiw=hTlCV8.L@=/%5F~`9O51J~H$u]neppKiIspVMJ1W@={_LDDHV:]F+_J-u$!^zfP*6nDRh0s_z-JU/wf2)gvAT8,.#^x-%uW)l*gtj|hLX-27CM2TsMjt>gxgUI@Y|F;Ho"1gptsTr2Ol,>3}vn.y#p3IZ_&4lcHR6Q:<JURKYA1@YV|>f7l//5B$A)$XGN&m:K1h;ZzshsXf])SZ91N,FXkIs6J;xh13:7}pfVe#*gDwkL,cyutr6-5t1gWQ.7IvBNQ[X{s6u%H]<)_vj7./J?ae^v<{9J{l%x!A6gq]hq+nRvcnCTtCTg.FYuoP)9+>ESw(eGKg(.4r+[@>~b^kLc)RWA.U7q}_s|oyr<}B5uT/=>fJB2?xTF{0:ql([tR1"1n}yEnfFfdJ49:8c1BKT$&;ft7/J`@%,f4kg?r}=S!>|H}e-C3x9M{o)dba$ydLUQV(kLS^AqRF/^z%0$kS;YRV)V6bd{58=r+g_`6CA/3g}Bv<7k>v~k,8E;rMvB]CnnC<[<-ueTQA6JM$zvz0Tl0A[tSsK2>&}m>eXoRxN}|7JBOAu9_#[rt[R~B9DxF|@feNW3q`{(EUZZ%o:x7[ppG?S>)JPc]1jKc!w~FH6=V8>.gjpS1q$00`!}hLh2s+"1wRzRZ+iRMkKFT..N_uu-Ik~z*eq?B!t#Xhh:@ZOElKS._.`Xj2?PA9jXS|T&O*1]=Q8jn{6aad,cxh>Y-G2bA!6m2Khn{**&fJ[*:!f6-SUmVXjLi@&r@mn^q:6pTvQ=E1G)fT|sOQh,hO~4p?sKLK8,F@^N;%Vdt.H(^}[F-Sp2TCQ}quS+R)?5`Y++PWar{S=ie]8>&4fI.h[ou[^5V4A|![6X8Xt<6hL2&t;k}cTPhg~R9]8L#W=bnmPow;,"1Gi{!k#*Q]+bEk!0P6JpVz[WMY^N=G>]Zh=t6SG_EB}*L_k_mWU&{A/nU3wU(uSeyFi)p^QUCH5DJoBd8#@dk]N;+X:28yqsi6iG<I;WvCI`hpC(raGy1RiHoVm<*cy<hJx=C:]9:mQw!BtCiHlwSu<yF`7#EB2Gi9<|$C(t%o=s`*ACq9mj,(<$%@wMiOnam1BUI-B33ogw>v%`>x&IzWFXnSb[L2jgM|j%f@q!J^qKpa~-_#v$_%fUjh/V7S!cz"1Q}r1dn*7L3t*Q;x.GHarNGI~YXp?Dv2Y.hZaN!>ZcNMK635e/-EwvQZE]]Hvl=ZiMuf-owUER-I+@C{(Y2dN+x,/xarh:2.ql4k3%!;x)At*)3:0Ms1to5sz~x0$Zs=vWvO+C1PGhHRi]`ocpG*8~.sH-hpL6,oZ3x-&.0244Y/!})b4nkR.<5Ns7O`4>=>5IwIe)OS%o$c$][yw&4x9?SS3rKy`.|K<Ekxu/V1tX^<Y1X*/ICRq+#7Wp5LZgm#8l"1%5F1P:8!mEi_R(kj65V,~_}MK}fJrKMxA8g~gqd!2*eyVnj2aa-Vo@Kdxx:L|w^XQJ85k[>)K+45+u&s,0N|H[ynttV*2@NCSAh_l6F_@M6AD&:;V3d`L&E7JCRcn}FD8src#Jktsn7&`]gF&*Ez#ox+6eM1yTH64VQwx[VuzJT*kzGU#u+8G@3h30]<*mkPxG&#c(lJ!#=la6bdNF8drmnSXd)lre8@^OY#d$6jhwH{OXc/;Sm{_>WVj;rRl>6cqC"1=UXuin4%&s&nY${/;Voxk/s:GmY~)GFVbfv@P`GjEB]zU_;uTi$]WItXFXP.?VUW60(x6HW*;[QV)w_S!AGw?Ipr`tgJs4YS68{9xQ+C+2_JhV(Jz1JUGu#}wfcv*d6g|F7(6}y0kmO2cWdEBY+K%6cY}%X&W1j1.OlsU?`:l[SS3Yiq}/GSrzE>O)E@i[R14KouWxLlMuVB#X5qqXWA44)_oQaS+|I/y^ySP)TjsX8V1IiZW?L|8|SL>0}+xW=6>DH"22>X?y`FP6az<=.<B;D=~Bhh`72.52^N$Keu<x@P^5VG~d:PWP]V|j}rMmg3bao&Rj?:8n60VjxN/pZyRVlDk`_b9eBz;;db8<z:;:iZtzbQ[@+N0+ZUd!^;7]qw5+-tnu`;jWtr51c<E]hdcP)[6Q{r/*T$4)(Pol8S%Lb;CwR^WS#;PS4QKEg-{cA%h:H0uPiKykhEimC(}IC{=A^1eexzZdc9r|t.2S?UtQS)b8-gkc+5E2gn~4HhNTy6F(/=KN+?l"2k5h2oLm~|iXy~fzb0iI:wN/$OpRLpEgVkeWSiwdyTA1rR.k3soDftm?5ld*c{,($P![@>J5a>|MF*Zd~hhMqLE<g6fV=Dgf[q2?~SSG2[e4_^W(5D+)0K;%;&{V9L*b`t`3+gx@`^4$?7]/3H)GGD2[!A6M%zHq6l%F2i$yLi$n7ec/Ld$s*v/zh>Y39TD#_([c9;}i^:2Iz]Nx?B|)&geV!*qw4Rlm%E:4F>EiosA?$YuKedDSe41yj/@;;h8h.(b^Z,"2DEC>@TjpRL(D@qw^TG3:q+q<T7hn1H;-_d>hRBAD{AZK#1#En5[`.+9?ytSaK]*/1_/G=<6unp*D{=TO?$aWRVV@_g*E>_5YPC~m!b,`ghmW|IWUq>0mFRKR&H0pP[OQ>/Bmamu{Y&mH/&(4z:Ia~l[uaW13M%Rk]ylQqcl-1Vl;q-KDt3.)RG-$h@OR}3(|>Q&DjC+yTOwM^!/.*=-[.Qp%{_fi@`P+$&Y&s4^5QsiY5j$^~BjIIjx8|BS_RD-2n{X$is"2ZwWrb>Y20ccpkP]wPDMv;F=p&{P!(H$[5M?3<Bzne})x6]4k~wZwu*!5mLw`](7>f#$5L9}-?p#hqrM-q(dQ$~lS,^Of#jjtznS;4%c*u=^NRm}So@bJ5Q01iSt[z?w*3iAfb7E#Ju}H{~q[(vR{`qb`a>.yh:shDDy=v[cQjx`tnvdvFcktPDF~kA^P6@C3H32+!x%{#6K,V0<I}.&#QJ!&DQ.(LcF>jt8]Zlt`/h`0xzb57d~:|-gN`eACWpUk:RSIJXN"2`f?gm|Ss*<,,3S*EB`_Fk{Ovy:[:eO9JmmpFwB*=,km:gG?[uL9bV(lT@@Fhq:MJt*fw1Nzf27aG~jdbr//[M~w2sa.X1|`x_T^ch]DaC_sT68H}vHW3px<L@XnR}%)QRWpS#F<S&:HuAZo4{b}|?4{FKlz-m6o9,Ai6^Gp-!U5)_98]a#:+mAm`M_%xvit>zIh}3>VAzA0:opw(lEmbUA[Od9vH;g8&&l(Lv$EWouFa?V<69PD)V=&)AWuhjng=q.SQ}VEo"3nt<e/:DG^/1^T_!6PBPvrW+vOy0<!E!!1U5@kEBz^y)#%)=nPwm@1}158}vy+s@DSEnv5BW_:Q{0q$zx?uC3#(v(e!~{YIs97U0Lq-V{g6>G{;k@9/>).*edJzTG,ZgRbny@8b0p_ExS~W|O8HiN?aQ]bGjWg7?+j(/$5+oPwXsV?G#w0^ruNn`|fv+iLUe(KID_^tpkuXh20PgxrMlH,yM%D&5A<~ov:T__v%+HG}:d)*>Rvb]#kH_lS@Em7WW.rDZ@Jf*r1"3Tt[pHHr[CIL0r>*=)]vMl&XG-gR?G@,<Y:n&Bw`?Frk3tKip)0cvB5%HuP6FML9O)DuJQ}g7tPDkc6$6}r7Cz{gaeh*U^yR57WT;R75kcw,XXgC)d1mAj[v$6>|Rh=vNLf&Bq&aL^L!?2od|L[hzmEPkGl|I+ddu(-kR,UnM.VsO*b[KB_JXd&8onS%EVCt;fag^Wzm3-iuPUb$Qbb=^X}o+ZAqu_}CP_lsKje[l1e52}?V=]AxUL5wo%kO/T1#9#`prK:V4;+"40+qOxO,OSIn}!a9@nzmwe5^)#[4Q&p@5]@LyWoWEX=NXAdJw,ClDR4U<]*BS/L*G^^(J,8XRt1Hp14O6WZW0,(f?wmpYRytSCk)}E%RZq>|3{0`25FFV[0,DKx[hI:FVO&xWAYNIgkZ.]i42bQ9*)DPr7_fcl</o;hzPmxo%VL(ltPXDj!.L|,/?:5Tu9cbrd-nxvQ8ofnGVdV2-0`+8*eC=b>cmBX&66KDYG]1ntpZi5|!ObynpKjRE4Gwh}oFu*Kfh($a5pi,"4GwRq~Nuv;3JYo29vy18)NQwYI{V#^QZ3>$N[@W%#7=fbe5u`*nq~fX|Z52At}(31H,Tw+B(htO|]TL$mt97q4J?3$;x1]g4(yz:,tpqj;,]G$t>^6rSCE=/jHT]O{KahDIbjrai]tFp(.Xaytb4zy0$RI8,nL*V]0_[#oTN-7SXK=vta|FSLa(24Rxr^_g:.)Uiz]mtP+DRW>Nhk.E`*aBdx3;<;b==$yQpyQ0.KfMU?%?s9lY@(:*|,5/Tcse.,PypFnlOv6&xz"4}[DT{9%OW::$rN}FRq(YG2DA,lUw]qF@#=rr0U]l4,V;j1&n9jf$+z8~lV!(^eO/A61w/:Y74`I&wRS)0Wx)EuV>_+H_3%y8Z0V+pfN-i3B=5mvQ8v5JEJAK;bU:S[%b|1wB{VD4^{RP/C^`AvwD+@em#SFCG!>Yl9W&O:@utWJ:N*PR>|]bI*?@+@hJ{s/f`mr;y2~?Ew,}$.tit}81]Kg6l930rIQs[VtorN@y>k7c8yeDa/=T<|(W-O$_%;&jBp:{##`u7p1Kl"5RyXV-j$-E}9{fLeyK;F7PG3w-Aa3J9N]z;%|*RPd|b*;ryy%6zRpqgp+kDoHpkPW2$e1SUf$ZjjeBLI-5K_]qhts>#T]PLXz,HRt|h*VY!+.GIO,n^F+pGQ_xEj7ZE4^4g#8~U^1hb?%Kszx;?4Li=d|#K##<MC[3;`2u43AYa6FY8W/Q6KC9aJ])&P1Gt4d<8BLFVy!:A6L}=V|i9n8lr`m+`J~v5DfFUclk#>[0&IOGDR_CKoc=nk38l5#UvStk^dUH%53k2rQnC"6o](i$W+%2sC5~XX9:U&%t~%5aoc_M29Y;,Be1u,;ZGiLHqeJhg$ss!K0_:@[F<Rat6t,xw=@LIgA+WuCNNnac.OGfq{LYrvD<J5jlhC:!ew!CHY_~um<<,rPy}g!^N1b&Xs;6]F&MAKpD{a3$S%T}ua^{O%u/VuGu6Qz(3(f,)pm{m<1s/k46VUidHAq>>UAI2rp=uN)3:&P>BaNgB2Fc.1ukl.t66]%f;,f.4!1a1qo}NeKLysqW,ey*f.koU*12oGQlzQ3H2$GodH"75=?t%obmiQV;b`:$psv^B.3ldy>U;W92SQ{*,5=y>lsaiGlMFAUbRQ07SdM=$wF0O&KmGIMDtvO@Uk-rq%5lKp7npzX_P(OVbH7K`GK4[8as[Q3w<1ZX=.z.&i4oJ~4%kHLj3vHsBkX)r@s3A2s6yjHhrwLf#H-2fn>9;.Lb}gWcb+/y#VVL;CHBN7;SP?tf(pPlHpSYQ1-vSdM5@fcsx*-@Q9Kd]KN%>~kc9|o&`t:PxzGW`HtOzr4-[otG.I,7v)tset}b,?U|Y?Wl"7|.WD,/~#4C<]4sp)2&QRdA3zA,UCtjK~lu&IzvJ,A+2ICu`?&AY91o<Q=bk47:n_5UvHIu)LteRnFuQ)2QSI^DX.JuE#mYJE5:D0o5-}&#eZ#Xj.O1R&k@%IcMB%XWC+$f2wp)wD#.X+^Kr@JW`*@,e]K($0$gP!D]NOcLdyd!,r,*W[v|hrbYIm|ZqPB,8utd-rTwk26?P5|O<yJj&T8=kk}yX&W*sM#Qi9Zu8?~&PM%M$fT*5f$bgb7RW}>Q+|g=5VD*NGR9t)}73Q,"92Vv0g[:WMt^}<]OC3#yj7>:#2?@Zjwua366STiUM<8W-X1#)S+/N~{@^@5l9N0leEPMy(I&pwQtG1e.3U4rpFhqq(hCU6;.Hh]NeAB_hvq1q=6;y?j<samvrXql^8#hi4VeN_dhrV%O7k6N)|34|PMKnI*d0=Z]x6cJ+u^)KKqAB&8qdBjh(~@.bV]CAb-ydk-eQ:eYjM&6YmyGM~+`gNcD:x3)Kpko[:T&CiBw?]Sng?2(&X&m?3xES^d`GlxJWn;:[z/5M&Sx=5.YGYs"amPB#{#y_@dNK/*:q~SpH|sUKx7D!we=q2+rv++[QrzZLX6MwtclcSZ>&Y>d](OKme@<:,:t9^hGHo?2hYxKA2,6oEj](=zw5@q=(^h|ZF;r6^ZH*>)XxP0b1Ml{SuhzA^/zAk9#Qry3/q~f:Pve-jnu}4Kl<|-&y5&#$tF^`occA5sikG$^pwCmbA^wL=qpI{5-11-6YN)}b,1;zW-]0hlIAh%<5llK_SJ)_1bx[[qBMjZMy4ABfK)U|f6!wy0rLuw^K(S?(vf*1%ScrjFN"bYo@9W+BtajKhL6/-Fq45VJ!y|zd.[a](g%S?)vIYe~*5Yhr&2_q`:yi3H=[0?!4}M,clJOJSJZm>?34+RzGU1.zF]l)u+.U`:%H=$tr`(.Fw,<xPZ0!i8nM:L9BkM1Hq?@l^ayWOQiT]-gLAwe&wZ=V)i[yg?#m25N.vgY<lE,5KvpS>Bd1?2Nk-vVA4vpvg.lk##L([zn)m16hFMoiYig4ryzGB!rjgw}m*^(eYe2y.FYNGa22/RZ[h.D?.<Lwyn@_mM2,Z;zUK5N_</uBo"dr^o8.*]EgQ2_$aF[F5B79tgetVwW!gmX?o9/7F-VtN5zgSf~!549A5BAT#IoKRTm68}];!?I~Sb=lp1ULQOHO{5c;L?]3is;~w`zG5o8&[}gz5tgS+8s{)avjLGS=Wg^5rAHF@g|SPwe{,i2y}1g]yB*+zG)t#BRj}]r)l-z3SvgWv0n>*-u4vYz92*{u)S9#u@B^TT6%~Fiz.E$q{JO)_9%nJzIq]rGDDrpL63B*!iac}2~o(my+Du}{{5s2tnxI_U52@<#^S=#$/y?voa11"fks6@9vm>7-f.:eLQ*Xe}.Yb[Ee9*Hh;cyMlF4&b7{>uy4aowAaKXn{1o,F*|cJEj*bp[yJ]v>`32N~N1sN_UI6WIGZur:[%pyIVoTG^*syD?-7iA{*3L3s-Z{4hUGML{^Yo<BS(w!Wh|&FpY2r6l:HP?|D2OJn^#6XL|N-XP5|sHu;5$*okP[d:g]r4sb;ZcTxd9^)e/xR.+pYs&wwM@r=v^M8pN(>ps3vPL[VubXs![|7IX[d0?,mN=Wi&fbtkGfx]8MbK{,MMvsmOwrOVtx+"hF`Sse~2lA+#i&?c(>(Vv=qk/bL~hx1D`0iGU1]r@znA~bEp,FRh.J~D8f+SyQt%Vfny#_AWE&J|o/fnJ~%LTiEQ>]Xb^DC./uB$Wp?Wrg1`a=mndd4{wv)(~%X=IO81N#(:Yfp{,O]2Eex;I[g^:Ggo~aJ)U3LN^6(G[|{%}w%w.z&<4G][c@Wz^8vL,~.-8R.k0:cQ]`t[5daW?#?|cD9fLhBQZ,qxv4=H4p4J;F6NdP4<{V#j.%>faqBVh|HWQIRQuu(#cUbh?_hoe5GV`>P,"k7q9St*%W(,ym8V.(,XBB~3$0B.MRMv:h1,zMa%Dhcm}2]z{$]xMmH,R0Z`M_tLlm=*rBh9kZ{@o@5xdh0(yP/wZ6s;|v{+h5og>$e)qy;{1yhTXbspU]5Fd8aIV)$^-ltT8l9&iYNZ+b4n2}F;?F^kdN1CCTG$mM)?L6Uw8$CCQ^bbK+vAmXw..XEJL!nzt@1r/cvw]e<a?}A/$5:V--nbq$.9Q7/s-WNBR<E.g8sgq2~cMfsPZOgpJF4HY&0Pv]Z^cAH$W505$@ixxAPmR%LLSz"nd;v;m(8|C(Dr$=g(y]Gm#Ws=.KwFt[v4<~wy^};;K:!Uo5@|=ZR:{H;CyNNg_<&[G~>;~2BHjZ(e|f$8vr$1pe[e>z6@uUyAA7qO)ZVB*|$F^GWyMZldO!o&czv/n7&P`v7fCAgQD_nxfY34R+}~h7PRK;{M4Obb4.KYqCH@1hz&5U0kSHQ:I(o6g523sxRqpa#c+,02;H]=1VgL&796E9)}4q!@ZIW0l#}fHuJz:tko!@*)[>~[}m<w!{:Y:uolwRjd!L*OBC)]!/awa7B?H*;^l"q*F{J*F-2-R,@xSte*&%X?GYBuK9#V%?+srl?29Fx]gU8z_b[xUC2ud&w;hwC`ox,&g<oL(LBMM@o4b7W-yrXbf:P{&_W`;K.X%jFpVu_95e{WStO(bJS8Q),CoCwg%t1UMxC[NENoMh@sx|XDVnP0#0QO*vyh&,P+pBgEH2H76c@:_Ce&q<ewAfg~n_8.<`:nhX)J>h*G#De&ks7bBQ3wVhWjDD;zu[0CDOKJW)z!hW|./JnLfJj3jQh@:c`tz{xN#g@%gIpt1u4[,^wMk;~mx1lkC"v1U)UWgYryD30wk9`mKr;7[4yIq+vf|-,15)Y#0.G:s-W|Zr6tM_Ui+YS$!F6cC7{]7y#[Q?`#w]he)@nOYw`%!156T~1jDlo,p;/7F?62+8Ndr9Guub[o#zrLZV*ZfKjklTaRdPfM$h=W+(^,T[yEQBV!o-lRi<V3p;b[_0}dWHPN-q<?Slup0wmaArp*/F(NN/5I:rc@~V5/;W~j9PE[w_]v{4!!%eZ=.dXn?;E21V}TS7FuD:C.yV5gVPk7{TNc+^S3%QDMy&q/8o*|&#xY-r{u=H"A3+7A&s!?MFd|GbIBd%;CslGJ:MDXBNp`+kwt#3jhI!ocyo^PFR#HerN{v6i9<m{RUCWeIJx-A:#&Z-!BV7kkHG4K>]tPZ}^^rbRf5|jMvaj[Zqn<{yyw_eNIB,)Ag=Xx_V>>2Y2?JVxg<0/%$~[$11*^HR<k>xOi,U[ZL0#96>#LXamXK.Dpwi$q/%.t`VomkC/}L^hZV{wI`CtQ,U(3VCm1u+jiV^h<1IW@r:%)@y2L7Jz`XRVY_mUrV!(utX>M%4XAdr[lvV>)xF>j[os0C8|O^^Al"F})%})S^v4Y;l!S/Ofjv@6@Z$5618Yo1uU3o%mV[$BZmd]S/?bK?aMU+a^yi$@Z)O.g9Ble%t^(U;s-B1zx9U_+s)V&tlQiy46jNY./9%(><->zsG5REA+dbj+3@c%^J5hi6Pw+UF63Kudd7Ez/DGHu7|{LN_)%t=TU.|,W=.F=oug~*Vl^5!!!=QqBVJ*g;@m>W9/iL*AtNoCZ1&_1=AmkD*h<E{HA-Zx7;cz=Flr^=3Cyu%GiyS53,HZl}X%&)m|!))t/nP;%,i,A]}riQ~=7PqA&:H,"N3zd{,ibXbFzl0TaIsY@wU;{}AJUQ[u+8BGmyCjk7-l%5}uUq(Q!sg$;dzQ~6bLpq-qx=3Z*iKs3FgTb|gn>z85S6g*.z/LN4$Q)Y_9O^v}JyK`c=mel+*3NgPgXQ`R=kz&P>FDfb[[;~!2aL)iCnd>gg5wvM,VM(wzl:Gn%k{`h:k`9]u33_-I#4rRFH)eba4]Rj|II`,1L^P*X*]3x=8AuQn?//Dz~c~p%~6x*LkAAtvi]kxY`M$bM$BbIXF<*y(iKg4C[~!k3JPFf/t@m|a|TKG)>Zbs"VC8Gj9b~7**(<W*eu-?X>m6}M+FyaGYn[7hZ6?d7+dw&|LQ..I6=9v]Wf58Bd}hjgn`Yt]xJ#QrI{`t9EgYjbJQ72s7?mC0BBH?2j@vzj|IMbL5;9EhH?4d/`Nn(;BBMw7Q74W}h5+/F-b2_%*:/Zh;TX6cq,UFKsVoZ6N*W|L!yUc&::K5A_V`;$jm#4A@YsEzs`)&`1ZKc1P0X@789{SBWauyex.C.pWlu1v}CXJxN|VH6n[I9hg{+.C%B=BPMLle6v`k#92j87%J1BF+eGZW~:Wj-`inN"(A)]?Fa-dU)3]$amV#.}&S1DyKycwvt}2P]EPe{aYA((o.=A]AAEr}7]1jbgXCW{,pD;QKwU@Q[KO/dz7.t&.Gi{]#:qIUp`BCai]CYN:iJI,(pnu<z`N6~*NNJN+H+9)haT6Go}|Z,WM<TYKK}=>:hQUBP9BA~FM=cgk+E+%#*7CPhg9ls1$aS[e]ZYBBo*T+v+DLz3RX#z+~.Y),C9Tigm&@D8B#>2y8bBog7$]eH<!E^1@[NP!^kI}ABim>1v%R?C.UXi+K^?Y;Wed%/L=1<u>yq+iQ`yo">t(*J{h^Y4d?-3#or.=viqT_V{F9!((YZOE>OEMM#!u[:u:,7n_7TRi?:IL5d$}7$Vd.6K4mijY34Q>tG3-DbKXam3WrKKTwlMS]0K5[O!?PqbDCS*d-HTvmcd$zfMJ5zil3W]o[K,ik1#WbQ#[]zB{,X.Fd|DE5o^[EzcbIa)BZA^I+W}6PGsKI5QTu/Vyf03[dJIzv*(52w{T0A][c0T!=pen|IUj_6^dHzmbpg@!gx`)X~7*hq.uf{XmrEe6jv]5trZTg1|rHT}V}>b^j0:F8?>|dQ]/x&1"12Sg@R:5DaWNsa0J}Hc@m[%oa{m_^,AJUK&)60R*euYD}=04DPS)7]~pmg/hxf@x|!/ecz[W;%jJmebMB+nk;NRUN$f2SpGQu$=nT<i?ceaR[g|VQOW)KnTENsQyq<$za.rZ)fyGK+,8h2m8rwY_>U5T,Hfwi:U+Q<KrKG)Vu;lV3}mDE:^m,3Y.v9{voK@ScZg[+gW|KQ+Sp>sgIAyn^#lQ:JmC$#Js*%v{TWr>^Lla+&!lr_M~(K&Ar8vRS3g@cxF?ucjt`xDHpH-+1?-O>5j_gi8D}1a|x:@+"1j$Qw3?bU*TX-,A3!z$4<1&_>{!)(y)nsPJ|PBKoiTZNYiC_H:|9{nG%IRfH%[9scJyEK-|QXfk=sl5YlBf#f^0IX({GR%bXac>k4#LR4j;:CgUwPV}emZHs,o>B$%.[/$:y2v[7k{Aw4bimJ<w,L^C*9}YJ]~d[NR=|:SR?A~r~=(VD&o#^WG$#.S~@y<f8GG:=DvL6Xpc-G!@.IIe`M8EXGL8Cg3EAVc6j-3=na^d[.dGrUJ.4qdvcU*aQpVna9$]]~;tGlFO}&Y3RdOL)t>isBNCGaLGU5Od^,"1Ep*],eub|]>mgk/8|HCf%]y/496n;0-gfn,NZi50RS/SEE:(To?XMVt%!i{#m15$Pwn_<Z43J-+8K9-A~jH3L@|;tW=AZld1X0AF#5WU^#)O.!#0(2v-B4e)r(;r*Cc0_ZK%.p(U)9?qyjaZ@/%[VJG:ZriHns2qDh|CxAF**&7YL-rJf)G;:7DxjUFdUFlhbxle:0e[jUD^}1VBFk3^;6Hj78z!$qbFFNYv(rC=5,W.%[A*+MS|K86G5)/tH0;Un3%8ps`wi)qG=jKeQ&nouiGRI~F=y#E26Q5:z"1%6Hz9L05FL6Y=8}H/pt6YX+Jx|Yu~?ex@u$|E.M/9qfl~5d5gH=@rk4=-{Nl#/Rl<;:1S19KDlMjI)ohMQP}*R1?[/{6Mt`zjZR-5t0`a*`:BJ$B:j=mr+``he~s]``0_JzkGb*NXj,95}24uP=8CMjdZYA7,O0:sj#,3K:RtjU+t.n;h,7=_D4jY9X5O6a1ODCFK;7f5{s[Sjj,~;q[*Uhk{}}iei8V<@^!<I!RP={ydbU}nKk`!32]|PP>x,]nYoZG}Hj[Q?;s`fSVfW-f%ADgWmWSkms$YLzgvl"240Au~yMzN9=CxS8yutb<G!ms0#;z)p_b[>DxKX-5k$JaG6@mz`(1qB2oF$Th!Cd-KCcKyqKPqPZzK2uw}t,<qe;Qg|WVn|g{PFR]fg<reerzeQS{eY8$9xOf^#&I%,xHTe@:0G@~T7T]9p@/9Z*]w;ePnWWtEnJ)3u%DD-H?4Q;=dlGO&o4i3;u(S4|ett6fPk<)L^[bM;Ydc=M3iD~YlD:fpwSSt(!?fXD9L/_P$m.$*hd(5>WcTh>D<3*8eCE],oJ}K#mNUyro)&=^2G<=GL-c>-R,=;i0X@%jahC"2Eld<f<QZmc48*r]`HsS1Vl=,]}arO}:SwM!%At3_]I;F9$62zBk?$,KX^:4dE4g<::9HEyC+U#wd.%,>ufgo,vz}!T>|S}9BlE=Q[vw&1J4zx$Qm}665*ve97oqdT-h!p|;-DHl-3`AD:IBba?.%K.[#UaHvz^z3Z4PW12XRc!UJ>LC)b{Ri=pQz.)3rn=)|9^?jAUPcsuqw&&;IUA66lb}1nW6jxxtzpC)CWX!WF/Djv^fe#5.3pqK<$y1>G-C)K@g/uHu<DQP}M&c1urX}nBUEdU*Z;-`Rk]g$D8QH"2^gjC6*5|_0^cM0F/>erWN|d0;;b8:6-o[/5McB*U11Dsn/nwY4K,KPIYmz7F$z]?E}9/9xDGz;W7(tEFJ7~r/Ne#%n($_]|?|heWu.^?!uA-,uU-^;bKRS5e6<Et@QCgCO9scn!c*)Y}`!nAQ:S-=Tc$woUQF2)ar:jROBa>xF1MjOGNU%]^a?E_[M!8%7mz1,H&af?;k)]7U5X64Axw[(.AH8cM5!m2_tsEZEb:}{UJj6s#[}n^.`OLHHl:N+A9K[/Sa716z4$7^p_P|ljx}qC*.PJqxBNjPlq|[p[el"3KTei8,wEeK1lA],|b)l3ly1o91@,YcLdFA{]hN*Mh;:,((1Qo-Tc;N=Z6uN.BG(tob1Q`6`_w#Ph%aB.-.%SJ/@>;AwWiROM+*#tsG`I(5lMoBI5[#486of~`bP>;:#aF(vrDNPsMAUJ.?<Atd.naYoG[PM*qYE]^!`eg4(oyiV}4w8v`eNDbTM[JpG/yWB-|]upg_t8;;s3iyRtD9M(iTJJt#zEp-bT1>zL>0I!o<blzjl//OtfN>nCU6BkZ_AK~S{?tdNt43Iz&>CHpTtN=p57(6+.F+HY8KndA*lry,"4k$LnxyJT2by2Xgv<_HHMZ,8pZf.dv<p7$<Y](^O2R+3`(PMK26a.o[Yte<0Ab~Q%E3;Pz+Tx2z@dU8KSCMg:gQXPT.@][N6Jtet=fP!fl2P{Ws9Z)~W{n8(9E9GRv};`cJh)EfNi_GPd`RRnl;eq4i8L$q}?|l4K#sX?e!sr>]NJ5P_Tn(0`gLa89sLd5&0dsCr7>Wj>]3fX#4,<g~kd,>a[zfVKiqUTCVE_dd[#QFp]2:hm5I.-^.xFyx{~<OnlbPj?{D0N7s%^(74P_w?e5r~&$P&>%&jn0EZ!},(ksRs"59j*<?HeU0K6&O@Kcf36qG`_8TyI~7fV|GrktPe@]Fu[0*asiaW^;${V^/sK1h&HSA#ASlKc.?x/b.J`LlAjE5h@Ftx0mFJ7.oVMMGT,*zUA6G9eRKJ$q9kn%gcQ6!Y`3cpz:cXB+Bgfmha_[$~fEsD<mg%}NnBb<^?YbUFWnp7DZAIR0&<y}-E^gH&%uAHa-oGf-XraLmm3m0G;c,ewa?c/.aG>sE?`=&&L[4)oV*cnRu|E[SII^CA&hAP>^|`+l!N>g3^LK%QQuZX,z#&5k^nviS?*/@-SZ<HE+sZk;=G5N"6fM]qQJoG,Qq^/CtS4ajI>+8YRM%v@V{^jAW;IiWY+ocM%Nf2QP2I0V.&~;]s15.bFAyYtZqsZtG9z?V=RybSuh!wN0=f~,*;:<rWult_T={=_6lU.d,.if^4RVz.*#jO4xJ[4C{|#~|Nd4ph0Sw]Fs<bK9dO#p::,agviF{&-CiURkLD)|n627F$5A%yCnM/E/3HV~_)E3?j9v>2.CaCZ|EcZ4:z|{OcB)dte1|>DcT<XPSV:,kG#r?$uA4?*f4zZDlWHhS=MEDQ9{Qr7a`j1C1Rd676iRWwdH2iaHs(d[Hvo"7H^O|d]KfwBiZJ`5*39kLH8{a.Fkj/*|>1:uj0Pt|/qH;Pl-~ybSypvj:zvX@r[VBWzFo>1w]($X:A8Pq#>37-k%Z#ALudft)]0h@xj(je<O2?mCXB2{DFQK=w53LE-4(/`sl^WTVSuzm]eJfvq`hrj_9yn4XZ]T%[un8=zBs}PQ_mHL[oiW~w3Rc8*=/t76C=J&*[HB|UOC37F&Jg^Qe:8cmco-rOFkgj{55oyq<MbJTbLJsKU0ZPn<W:+|O>[j=Ll&}~O!iCi+KX-KRQ-qyqmi^j$[fqSR6h>H;@KD;h=GNE1"98&q0+Qc]oNi<&/#)qIb64`ZO5_)ZI-AVpl7hVRiJ`J%7o?xHY?l8:OHLy>-98*=3Q*rR(&hFP}8y`I!cyRY=D>AaFN/e&o3J^hx[~vbDH]W6KpfkjZapCZP5VK6VV2qa7l+D<(Jm*maODQ(7SPEV0O*C1wN9kq,6xnJ-hL<;2u!<hfkEARfo3]^uPP%0Rx=6-yOIyWk7gb1;m1rRBq(-xW@fUO04DTgX9:Y]&XHLVZ{g6g,~E-:{!)?Wmk/,!.+9d}PZ.Qf6PR^KL?s{YRI)R>:Zv2v{GP)(d1&o&0.]4MF2RC+"b7VZiS~^:<dL{9s7J38Qc4|$P*Vx/9B3?Q$yPIr9Y~/ifyfa(j)7[M)}OhIT{K.EW[ByHaPQvAh3Fpz!]dw1ZO*&^j@@~(Cnl/U@ZC@3mnD{[0$y?/L<^+9|vI&:#,6clh,=`dG%uRa[=yh1PC-/{[3mt~&Ap7_qfFd(7i-DFp.;-{uU-X}c#K+#[m%f{J,-47QPlfkODcw-Q1]oYka]g8EXxV=Dl;2CR?#@GW,,}pd^f9KNUg({{YBP,Q|^hB.]8C/2KF3jU@nE^<D3wO3r:j2(9eXN(,5NT/pZ8Ugx!%kj`Eaq,"dN6Luxb~{+&bjc8v3H$sxSUjd`ix9iqnhcUzS1{hqut.p2rJ;[zk8^WXf7>KdexuCPI,6J]Kgh)7P|B[t+z;4B#q;@,Mfg%vA2UmIeF)Z5F!9a%V5+U8PSYj+,}LzW%rnu.V:eh)z=Kh8@:[_I{7<Sl=[(tn$p1r1=BB3,eR.2zYQwL+|4AT|L[RCsqjppu#}cts?j#K[mQ%#Qi(R2zYTb>=NjWgW>gj4<;;w&6mo(isjP{U!#=*zfJPfR*Z,q:K11TjZJX;I%H0)l0,dgx5)L]?Wy2H$0<DiofaL<Q}l/Nb[<<w5z"gQYxiW9A:;n9DR*)}Gq;YkH~!q;ZdbJ#umw+*HBS*JP^:$n|/l#Nk@TO0p:NgSeu^Q&J#4=h=5+:9E|Xz`2`kS&}pdaBU|}>jw|6n$pfLSr9oabbE,;tK#8lebJM,HI5tIi#kid*(^9/QB1n^=oyS^ph*LW2S+O68g=&&&}?scISdovTnHeRb5Wk/IwrbyY}[pBhS#&^-0?8:*Sm+cSP#c=jADovDqMo`dVv$?OT>5Cbxg3YObo$$(^@PU=OhSC[:*ZcP_tT4O?@&2$,dtw@cNefUI6C~38&Ma+UlNCC077TWv0-1*l"kv/~GMc0I:P.,~`15sHR-q1/VK}kL6CN:k6tWiaVnRqg}vuRc_J^*&l6(1:&TViQw3:{}oAP3H2g,N]?q?6v3^PK@WC2=2dITRO;^0lF9?J@,E7J@!,k3:[gZ[P,{61oi.U%^=}Zo>QzF3pY]$buqVHr!!7-bRE9PpM{|uB7&eM3D?(z[4tT7FS/X%t7O(qu]^j&FyON+KZUD+m*|3E5<(uv2~<:W>_tE+2q#6KILMuiQQ^)~dH+Cvp}!*Mp:`[88?CTQh*EfZ4+d>s8w0Vx6HblV{GOc?FKQ&?DX_6/7S=`7x~2[jeC"p3MHAU`~?#[QETsxR<>Cgk^v&(2&Q2E&h)7dVv)R8)/Rmr8OLacg{=@I5?Dqb][l3R;+zB@*+RW,I/D/}sylSyznyrEi}nJ=n8#hOqJXdE$|S%-SBahJJRF:H.B2<8#e]ybrWWVP3(SKHSK5tcZh@M5D)^)I6/ba5xaNye=u)G,j[T)8N%Z[6W3@HcxB[@B|A|SOzVZzpa5r.BBpRn|7A0,h/bd;eb?P{G1.E%9YmnzNpXLlrzgz;~/F_)%h{<jzgjE/}|XY3ew8x}G#I0HM+e,j.{bWbL4t]*PR8kjMII5KCwz;3(MqH"u?trlp-|xPi@n>}tu*l}CZc/%k(ecn(rD{@63F]4gsG1C&,GNTN/G^zT$4kG7ozv,Q!#!fB<t]@3c4.Kfj@zHT^[VjCCRQWP<Suf{VNlG1V.JQTA#:{v;xnAJBSME=^sVgOa`nBgF[U3p!~USI@esA/QBP#lI.6ci;8&jR4ye!0Mb~e[;5Bt*A<Dx-+E3ZBdTOfy_&ZYIU^ML$F!(j8{3*)zUI?a997z`V[!R/=^jM3AClRI5?X_on.`)4p%0sjh7qcjz$qU~&`@@,3q`cG@Ub2o<MfO44C77dGEpO1sBSY5}eP$IDY.]l"CgOSy*92S^|-*g.5^lya;t%p(M.M6R9#hEk5s&p&,WVn1l>^jC<pFV$UR24}k|-zEst?^EH,m>!E}*qcq+ZBvdG_aZkj@?_gE%gXt~@)`*u+6g^{~.TW#97240rJF{z&e3:F%W2a{lil%Dg5{scrTG2?lj7`S#Ln51|/GnJ2-HNhMU(nf-n11P~Xl<h|nQ$^!5Wd&}QYoTa]lrZ%|HI/?**<YDR{/]_CaY0oNx>NpfF;GERcgaULr;@44lgAW@h_0T~gV@%`1*I#ObPPU[XYqM1o|YB0]jtyEY8xfPxm]Uq2j73v)I:$Fp,"Lt7uD)#_xkOfBuBC2f@%A)`u)?9bhFOm2m^7&:/zV5z8aI]?Oy)nT-d1(VvLi(?W=Y#jewPSW8A5V5MW_/1J3d[7Gb.@/YH6vW=fFPLo_#3tP5sYBFK[xIvfAOj@/swzP{-IVJgsfsToR_7sO7m_}C|vO&RSuWk8Z`8_S[H8LzbL*.sI}33-vxRG|9$wP|AH.F+GRQ6q#:2;+)<,B,1Pxo3g7~/d.PMA<Mk+T-6D>>Hn9RdbTU*?qL:)_vClDr1!#Ts>J&XhK&Z(j%wEAYg/mK3Z#MKdHzs2iVvZIVkTcFHQ}{:UZiExWA4s"W,w#WB)#APXFjWCcV~_}4Xu[gM6}Fe0&4R*0bPc5!UGA.PZkJoah,7C9RChp4V+1R0MCKwtZ|s}3/)If9Vnli/0iX{dGr>;my.0U.y]3xsxiar=LAk5c7%QCV-A-{rwxq(7+<{0C=f9B[OCD5s{K2ppV;oEg?!zlVuA1A+VW>J~dqLJ-6jXsrU4&|!Z8MX1h}K)||;e,m`pZ_nbX?<XyW:v%_:>2=,y4MIc|NXgn*v%bKAe>GcEmJ]FSuT6_(IKX=wXPBDqgf0h!9}mf{^H8s4jrIexFk[e~6SzVd:ivGS_jK[CaD4TfWG~=N".iml~g=$=|ja>5}Sw#WELcdyur.Y;{)%xvz_gpU-fJN,&s_&qIf,NCAc%!Y_4AXhsU8_Zrs?Gk]*D%voDkBKfv%t;,y/b%q=&ch;Vt_.!{j|ETTtt?$L=szcUhk*~P2nSPRtmLVQWkrJiWQY,g-E6P2=7i99qdfSh#2RNJ9~v5=^9>nh6^xY+t?GzA`VM3E%)1(m%+}85(E(onc!Y3v!/3*aV(+Zv(_mn<xFt&ACbCHm}(b-6QJl2w;PWO4UXtJyXzkunKo%iWXy6bh(;,_a/VW-g<EST#2UI2sCeIGWBBcmP;BqTrzvMuB]so"10xQKlJSU6~/ZAl_S]cBV#g3{tuZdCfzQ2!0*iAA5jG;eLO{L%~!-,68kGDu|QN|&8|)[G@DwlDGR,8~9<8ui97,npCY/@$YL>t7$lT3Sif9Qq/l-Zv_@)<%^v5O0eURFSQ4cS5EBv:Ay&D,$z<YX}2a3{vN8zGs[Voxnb<re<YAYQ}(BZ7&wxL;uF#dJ_0c)0vsU|+sUwKZMTVGXN^C=~&^H;Ul,Vf-v>XO%_sEbtHM0;0j3h7_*gYG,Z|x^<#0x$N)z0>}WnC0Zpiuq>*cNV|,,n1M5sAn6Dr>3iuflD]tU=/iMI6H{F>-<Ve1"1ns>T,!QQ-my*OibMZ6Ofipkm/HE:me!@KVZa?@bskZI),(aIRbh7Ddm&Me#eW>-t/gQtaMz!zfzo5^yOZ/;PT&g+xG>_Bi7gT@Nq}%^lRyne<Z@;%t~oI>.{Cd*eh@iiugV>=Q7:frpQZzfFwoY/1+jkIZ9%!?2]d<lyafnVCri+s=i6IK0R1;^hJhNS<;ug&M*p,VL#y.l7xu1~&seV{qQ9ACTBhuhRw?}{M=RV+^m]ew+wEK&PWwSx<C^(*f(v-RaxBM6Cux!ODnuzDrd[q}<0`!,TW&~B^ia<*tL_7cQ8eGG}>V4*EQ}G+Q`+"1QxE!9%!x33D&b~=y$)13~:,iz7%a;A,IC8lX}kE=j#[lNe7LYLT90ps*<J^jZWNx|kQ9?@Qw}rkBdTvsn7OySVZW*U?n)q!u@[>m@Z:P;H_id.[w&&[<V4GIY+70<NhIe$>Is%VCd$GAp`v>S3BDcG;8)Wx)|?tW@-`m(^c+qu|V$hWk2hir87>WCyl!S)e#.k=SBhLHvR@5}[ZxOvM)|py5Uki7,cG)P8Mwv*8i3yZu&eW,i@Ex0&2lj/]^42{e_3GuUHz/;A2U;!5c^Rz+6F8p{ox)6MA[|9>-gDUxz7ab}p6o^>PLqZIILj)X,"1}kz9/wMNwB4?%H;y*7H`21>Yf:!I8~I),he${-6*4=$|][Ej9w&*]WnXt%dE&-ZCp1N8KCyMUIr`OTEA;HpDT;d!n;BW;rH,U7Haxg#$r-J>TjN;k&_P*O8?)A]@$TxE^F4f[10{YjQ~oNT+:u#VaK#)txLN1PirXd9w4IW:T<@>tX<;KzvWX#^)#a|11YqsxV#?f((JEEoT$Kf_NDrB9O&L%Vg)CF>Kq({$XL#IQZgQa5a[{Y:zmK?7_n6j^@cib7Ml-UuJ%%[L+rT=e?rr?D!?>*}$t)wEV6((y8<]gBi`~~2o=nG2d,NKjb}zqz"2J82>pJ7E~%m_aK#@vh!,@BayCE[Zng^:.|wDZ@B^IM6ZDcpFCqE,Q!!OOlo=}Cm-3yxSF@/5@%w=@S]!E2o(3mGaWNNF/YKPo.=4B{i*,vZUJR8D@mo,`>]G06*adkV&v>4}./_qSgb9!Ws<hIcf/L?UVr9d_s[e!tg%grYO@s:mQs%D?&bbcRs[;y}022e/6^!*%zAC9Ro?y)eP2OIH}ElZl-D@!!<+&B@7)a%VN&:Ehy_L(nA*S.Mnyk@;[b0j)>v:b)oZ>y#/tylm=j%$H!M>eK;^acZ^Q=SRrW;$}piE>|E5gn#BXYH41-CWxgl"3d.#~O>B{vjaf_H[/s!c]0@ggnP!>$muNO*x*6x2X?;?-u[:!X[10&GVumQ$$49~*GM+&Na_z%r&hGK{N&,kNCtZfiOH-:A}JToO{ZLt<E>Rd]jrgxkLljOp~i:-jIsJ+TW*eV)H*nSm^%a[AI;?(grg@o8qz6T!NN|RTA=;d|QeDLXgvpv!!l?;ywosQks;6XMdSsMo0g?}KTi>~<2z2<>J;[8514{v4o~#VqMa7G3dk$eK72BKx~=8wtzf={M~fr]mc-_We5mi|9(&FzZ6|mUle{E.9;UuPr+VC;gub:[n>iv9C_gqj}T%1zF$x9MbC"3~7(|-V<vDiJ~%VKah5DkJ*F+E*v4xDQ=YHH!oE+sDyG=AT2Vj7$l{|@*XI^R(v&F=sBrO9?$k#z3MiRl)cJ*5XziK$;?sZh;LGk}2oeL0)dxaLZIk`D%h/F%ns-eV@n]Ym*S]cqXd228Wft>:Og^)6M-%tvwI.S!<UNL`N:U]w:)15qK[gIb7rTTn%3Q}lFf4*Obf-?*o{YEu{&[RW-Gg@JMwvx/8!*#;P}((>S~X{]D,iWyt_ylJ7uIn%Z#q`B.YCRAS/hQoe{2k[uzB/}pY)/d~cx~JAo7}*,ycZ[7h]?mNRj$}4_|mHIwba2}K*X0H"55%r{2GYAK8.4eNG%-c.22T}l.uhYT#@OW`EaWT2V<qx6-MHU5rC.t=Pf/AGGGLG[?nMV>mVmB[!h~z`M)9lE;1Fq6tTk+,s94HH60X&C/q.+%EM1n!5y3R[OM%4<~N}R#kf9kQ,QM000~;a#8oEK]1sa]Wv9>(*gs2^@(H_WUJ2^53v~^0C7Mc>QZQfeYc+ntxY=7qP.%RgDz<g!D!Hah|.Df(q*z`>}3-RBU09~=qp>@D+|WN7ED;/#rKy?DZy0{tw2>2NGe>-AqAvHPt)f$UM0TfN-1td`yu0,]uQB`Lg=5.Yw|sJ0R4x,h!APAy2XZl"6D{#k]ZG8qr$!P#+_rdoHs}uq&Gr?=PaM4FVYkPsg,PAyuM#D=k1qwp-o_>pv?HNXL,$!j){z-Q,dHOG!is1_4_edB36U0+b@!9A1sjc4ww:J9=?H|pF2UNV~{]<0C90j}!gLZXSgLOz55SqHc$G1HADP1ow42En:lln{]?m_Mjq/v!Jd|kbkDD[<BMP&ff&95|wZI*IPXapQDq<yJp[cKJrKfGi.UlL4Q]P>36Ea;5Kq;BEKP)va-j#]e^#r@QN<|Cv^9#e]^7thEaa(`2?yrQw[ZdW/&=@5ldi?wk&Inlg]Ize&*GHb=U-EeVy&O%Dqqg,"8i}=om>*_{Ymz4Q4W#6;o.xz5trlg&q]?eSQPN/.8dzArmNaJDyHw.:N~&ta,Y{08WCI&!;_z/Ie[R|A|#2R/gnb%r$ZwtvHtd$;u0G{2D6$e=,Z``uSJfRatGfCpBR/.l*w)(/5D$=nwsh]AaAJTm@vs@]3hvfl4qOZ>Q$7k!`{5~aTb|fgM1{@ySW:CxoKe^)r#Dl)tNu:~?o&Xf=l*8|q#&5^457)zwXZE.]UivfffijjoS.NX*:rJ3J>)we/;tu34muH3H/noGfGf??*n;Ys+@II];!hbG3b+Yu5Y*QdSTHzYZ|o+qY7q]0P@GIA`5]Ks"aIGu7t:2-h>r&&xmP*1B0&lZ[bb8NTi]kie^nGo?yi4C{&+~#^vjUtH1ZrGjU:DxYmyyOnMmm781N303x8=?T_1nr@#TLxhY:LN1RPG?%>y6Kj9zfk.zfK(T%,ZraqXU]-MLgM/kKY~OOd4/Q@^K;OR/pj%0i`q,keq,X%t~g+bAO1>G3D&YSs9;T<pYcH1^7d!FW0w(vrq@V:C%WS@&^~e(;O5~,]|W%$+<iD{]VrNMj)gwKEKVF3[rJu>Kp[|@@$#7=`7k)9)r.5?VStW5xMl:{/iQY44kT!)d1Rr-YZC[OMcEt`*#K/W>$A$]<(@F^$i.YN"dDzbMB%Kw4<:.E!FbQJ/:t[wb21DV8*[Kcj`QRSv/Zt]:+@AG4:|`d;*69v#a>(Al}X:x1:#ej_^+$Bu]jN]-%!SDJkUQu@&GqI?8r%B{NKZ^p{IM:.R1=9!;Jle27yKt9HYkM6F66R74^KIB!&i7cxcI?AM&%FHjCq2EiND/^)^M~mRpWdtEcZdXt:SC9o75Kd+%MS}mJoAyE*}gip~k{t#}H(ol@Ae46Z?Tm2Ji{]X)(B[_5sMtpNmhf>NaRV@=0nwMlQu*R;2(;=BBKsY_>A=7hyp4O+Ox)GZ#A*ll3enPExT&9E{2x+|EYJbd}6[ztI(opo"hma%<0*uWP^exCZ+h@xAj/;CR=XI&uslQ5AQg}!`IR8](2BEC}!Yv4zxuk+iq)odpZ#4tfbz8K3;scuE@l_+CglPc/K_p5lrLyDvh&4^u&h/rn]|G9Rdpg*,tl?=J[)$l/;0r8C0zZi0769lbjn~gDh~dzy84bJ>Ii$jf_a-@F+e6j^%;S~OGosNe2;p)NC<l%mLG+-8kgfFdQJh8Q@8:6*C2rh!szw2z:;HC0_$gyG8d4Ohjk-WJt)4pHD3sq-8T/tWYk|2o+/2fRs.ngErT8Ne?Pk__lx+_(vpZs$8Y=0Fas`i=w_OP9VMiK*]w?M1JF;xTU>1"mg:lRA7LqHV,J;^s?Sn-+L>$|x[&slUf.mU?E=iJ^^G{qKgR|?NvlH]Oq1ay9^f6[#G=nHQ0TVul3D}}X}{AJF}=[^LDJsZi!FPR5{Z>YMDIW;2vfOA0lj2eZ{LTS<:d5vm]NEE@P^NLfkLS#dFVRC.#yt[bhnHE@$RpyyX1{L[*/CaPbg*R4zIjXu[R+J|wP>Lh080.H+DD5Sp%z#,sX.eHIhsLZC2&TEm5q#qwv&PxZE0_s1U0RC+p_(`+%cu.8rAY}XK=Jz)(3LN6b?+2`K=ll;hS]6imN7e+H`S9|X>e2g6`HJ_adkB;IDm_%~M!!K9ZS,/H+"sTx>:PqXTJ!%MZNDB.5x4HQ}DqK8Wr?WuZA4:?C4~bFtA9vgHx&cDI}tXngCaa+A!#?iRRw4~.)r,[U]EDB-)YU0VG;UG,wk;xG2VYmtJI,.a*~ltJ9k|)(w/vC77&-Oi]K4AY{`NWhWyN%ab-V)(xXW+-#L$huE0CDqxaCw@ezX9m6D!-1Zg;)_`:wbu~.M$i:eP-/N_dz?A$P(Y?LNp-^R[kGbd5),;+Ah&|;W55rjvKXSDt%w$`Fgot@Wpm.lkb7(y~lWi|@3#}A=L-XD&H1~S[Bn+:H0EOS{+_yf+qt1qs7+5Ru:q0%Qila-,=!Rp-,B]VH71,"A|;SIOzT^|jQ#nUW7XF>:sS`S=0t14:md.O9-l#Q+{L{{*ZQYms[qyF>+jLYs-#9v;(9`X+rB*R4WJ*Rgg}X{3DIM};^V/DVT,O87c/][fXMfxsNEBG:O8hql5_!q*2gp*r-y`{GEj)vyJ$#`h?MG;SF];6MAz+L[O.KLFN`V$=p{tHE4V,J*d(SG/uz^}^r|Mu?:)P(P9%TAvO2E/SNp^Mapsu8H${<NNR}8k-a9Wp9B1Gh1Df-)I:)&(T1+s?#_i;I5$%qu%!aMIoz49K]be$YfZa7~p:sgz>[]EmxPilN)5xl-rq`A~/N-S{=Rrx-)4m@U@PSfLz"L@`hf^?aPT<:DD$FB[ds/7fb9Qp$=yP2W2QMR}R~VK;rDmWM![{Egmh9;51#&-X$f8c&viHiG^!;RI%Jewwt<z{2.#DfM~s[.V&O@f|ed-A8};0<%K%.yQRNipv4^j0N;_^7G=Ca;)$-P)|#cxhU%0bc9)uR1,;5zX}7UGqQKqkl&Tzsn4!k$&#H30<!Li&-9Wb2>iJ(S>w#pjKqBGc:jj8yeezwVnpP)p8%`XMMjo8C#d9dm%;wAWoVre`,BT]-1.yuP:X%i#LEX@S:Gv~&q*|D6iyv3J~fDR1Upt(mqZ$4o]xsoD{EGa}AbL<p0jNzaK,nj^0]SjSl"!hRnrToN+LLh.#/2:{pAqfOF1>VVCo8efvNMMt|1O8ewJn}6K;{7eB5i*MPU7*&@)%T-Q,eK4Z1p7J&OL,_!<>-W><Ef+EK(Ya8{:gD`t`C4rIj*6C)DxOF/>>%Zm}:R+vNJ`{<<aN]8nTk%VfU9<B^4K;(Xa+YdZ)!rb%OR(.p.=gytU3%FR>v.Jur#sl&K47J`BVIW^+)@RxO*978!Rvi(r6i@`UKTTsj;rUj<e2c72s[e#+v:h+xr0E{ALgOY2dAg:%O,9%uG(E0)`H%RL>[j$^+8`j*;f;;x<)&G%AT1&wHQTB7k>&IbU^LFafy##(>oTHh)>:68C"?^|I6TLML(`Hqc$dxe/(1E`I0yABL@584_kM`Ge3CA:rL/,o?X*8=!7^;YeW327uohoqbOXZ|x@g{evTVeI=Pv=D9`v81tXrX)B05?j?w&8Z(&^-n0|irxtw7xY`_v?gZZid]tIN|5-e;#.*%FYr7VXmSyk-Yi+LV&w(psM.iJda&z[;wRC3&FvTB2yzO>D,/RK}V&r$z;DlIu})B/&*Z!=Musj/}taS!s)obI~;l=!tsS,lCSs>B1LArh9}reM8$Rwpi4uARC|ei5T4b_uJERuI63=J<!vKNqm{,N$6ToQpuCtgW}LLwC}iF>_/-1Hr&dLO2hd$XBxE%H"1eO]4uM$D$Bf:P6ve){arH/~Fob?~$<u(0{R}7V$FwLz:Tm%TLOd%isQ1!=u(H.7IYJfv|)gAmRn>uMLP^m:i)oky&6${wcjbk1jcHZ|l}g$J>ZF/bF&Z1o}y>rfpeL&=EvaR)W;R{tlfX:WOZ/eo~o]3=<`nJq|v=2LU#5(jkC[v8zHdp2/04Ex<sN.9Pb9*W,*dlsa4_PaJ%=@0fOT)BXK#Rk#6>Tn4(e{@w1L/b|@zV`?t{VqIahxj$zSwhnp@I5M|t&>:%ebHxK;N?6B^Vi.o}#@n0)A&V1[y+SfF1AfnU)_W&~~!A^mGiu:9s49A{RzIn_3)r[&sDDl"1K}{ZhG)~|b`Y?h|s#c@^dw(1+zrm$x5[cGX+~4o|7O]?+;bt<2(4!dKLuS{:n$*05!.#?<`}yg}r!^Nc|N)pp!|h8#gQgtJu(CBv<Q_l2wjq>=STQ$|2w#EMrkA$B$mE*103]r%Q{^zG)fp/?q[$>jgSa9V7)v&/[UXm1,xgqLkv;A!n*?70T&GG|x!dqE)S|U9Tb)O6N5P]D&$Tq$A.!mUB9h}?zTL/EyT#v=z8lM_*a|l+jG}BdW.5hUE%ZBPRULNV;.,YcY~bi]n04eh%iQ3-`!LHH3<2c]yZPytU{1b7::y(XF{B<B]M,+eXKK1G5mabe1yvfdzB9.7,"1},Nw}+ya:pB{LL-C{Q-[!Ivdq=0`liphgHBg$Ep/ljbB[CTccX~[DE|]`?0o$*T9Z,`9.mE>0Zy6Hp&,F,6}BYP4;n^^8LTGg&UE,#VdH*RKz9RH,Zye$R^WSL3i@3[W2J!.fm!Nm$.7;4~Bj_:Cp}ZiwDn=Mg9Tg1J!RN9sv_p=`p=b.Pq*>T~`EU$R9I1T98o*r:,T5X?$w>fl5l(Z_4te0rVGipyFdhJSvkc8=o/zi}Y(Hi|IiQy1^3$ps<X]P[K}{_zr7HoFWtCfM!)uXUoG)DsQ}grL=TD29EDh5L$58yRE0D48IFD;-e(~Y5eCzh;aVFytj;2UEC>|s"2TzA|cm0!7/YAlge>Mhkg:BaBY*Zq;p~M:UI+<Hqm)@,ov~RlH[1*0V(7r6{Ok0<g;%([eolcszn?gZt$fR,+m_zKS[%7^DQM`h?-VA%oidM9^9G)xK&jnAfgm?tut_8q(Y=aTlfW$ea85a!;zyde%K.eU[e=yZc%W?lKT?Q5f#b5b6Z7i2w{E(m@:P*[Y%k#-l|%|xeMIt!|j]%[[Hauh@mx.P7e1G@]!HSB%%jMyLqeFGm%v<{d3?[kPVGXm&F1c?ZS4Zfp#ZafSUnc8=wdZbDEH/`RUyaCQjEo=`+Xt.9tIuT<S-s%82CEbdQ[B1zuSW&N]FC`EuDzrZI@GN"3DBGp@Ovx$w!-RN+jow/M(m}>an9LGkLMqjfS&#|c+w(!w;wk9tofc[Xk5,ZT=T/z9xc{y&_%SH+<651*T`/SMC1gr_5#/K,HXweT7]Tt3!4]I?ew<MM.7@r$EU$Js0KQ2|HX!w`6S[YYq?H<}A_r[S2I+2(OiLj1;?;s4//S;R]LFRK^]XvGz~Gs,digZ._tVH334Y69KAH3/%ekt^#,Goujdi[ai`*$bML}%%Rj@no96pg~b~`~p))*2{R}p3/8p*<=ftM4}PyW!5e5Nq_%}_3COr09|&*N.US5h6V#^)<nSNJ,#y:z1_sr!*{QmJ/vk]Hv=,qVfWdH{kHJMmo"4M5VyE5kHOs*U/;.KfUS4ub<:2E.~QjWn7Y4:U>uqj)HZ]$sJ`jRfBze}rFC~&K~xYq^>}|J>0F.T&XJTDC:^0HhsB0ay.l>sp6^Z:wbxpHy>AP&.aRXk}}|-fLb!;W/LXE(i*8?k]$K+[p__4I|(ZgFoZ5]$.O{{h7LJvnGj#WOXGbGU:2;1S%4{;{Cwy.)HsY9!!LTFO-OEn2gq<p/NAgN+]zOs:&#3D.y`8Aop,$Kyb$s--<Va3<)~@Y!v^nV5Ptal3+75)plp]2ZH:_T+I8i=D}2x^pQcl,{QU@J+v^aS{(-3rN6v+}2W1TRTWSgVv^FzDY|;5Zyq#jIiyMR1"5}$CXhyq3A1HQ;92!S)Hr?1$*/`^NO~<)}VkrihrAz%mzB{5PGWkP64,M<?_,=9bpm/py>I2ZW]LC}M>2NA.Z}L!r]G#NHgu1[{^+=u9vw?N{Y33yN8N?;3>UlZDF&1l3@9cM:+MbwpV|F#rlg$6$AS%X(RydVcYX_+%V`Q&MMV5&FsKet|UkMd$=b0+U+^#0(C>/uiPH5M#K+*g*UX_zBsU`H8dF<f)7vGLZw88W5w~{8)m2WYh5}vwl]Ny9SQa,Nj6y7yI+,]@uv454_[e5ze2_iGM93(w5j-N$nlU]@ri=u6*Zes3JJ>oKr7.>e@5A3M^~@C,XX^+Zz_dFLmr0+"7^XG-/1}E%=NeZXb<z9_o/X(]r?fCto{ir|1,zq3]jOyXIH*K{x*L*d^vAzO!GF*8b?b_IKpCr1~m:a:w]l}-P$/5RLCaq-t+4p`mpn>%!f=D}jy5W`5=Nd^e!%F*H|;d;396Haw)lB}69IXX3X+(z)>5DJEP[p=LrY)~YGo6]+.1:9ByH<mRMF(S$8T~k[Qit&d}dW5>fIwJ8=VX;Ow)v-p.p!`Z#hde&=Fjn86CbU.bUd(`#F[~b0NVPT1N;6dUSQH+.V;}Ip#@j1<J,GG>!wR9$PUInn4`b4cZBR1Kg{3/4LC2^Lww|7tVDp_}koP}x<v!Mlak<(Ov_[.vC-.7y,"aMh|ZD7E?sO|8;3)wXWRn*d]fR9a+cI}UUzeL>AUmpjh~+ZHM,r`f%u[H~&aKHtBH3+)kRCLrOj@1Pk@hOs!io9vL5o]nX-&=FWkpm5|&QM[3UsTK~)9@u?[8`h<{*HXc$.31`PFCYnxNm%/^~h(XMUGM2YN|(1iD7f60A0/eTs*x(6+#kC+,-d`-`K*]#v9&$}$E?yT(i^`c.!YJ9<wppz[8}H*F5I~Mo#r5K!VCd@Vju/.x,#DCBu_@({lGT;i=L1yVs:lDky.LZR^XO$$aRE#22Pb,tDFZtPEDP}(Bb<+/JCV|vPu6EzOL6}Ro@EC]FL66z3v?#NIb>%L|p7Ds#)z"e182;gj`&6+`iM{eQT[}93P[O%GhVz~^j0,uc8dPP<ia_BG~FVtB&ZFUM|1HdL&>&p7}]`%?Ay5Bt+2niE784Ze`QP5x`B3=2F-O^Y)Q:g5Ci[Sf8HP>`q/#*qWrS`%y6)yc_JG(O,FrKCooMNM91F.m0F;7/hOwO:.VDPe=lu%tRWZyEW*.A(:juN1B<hJr{X.^T}TFQT}t6p%4/wPJiY4.s4=!uoznTbA-.-#-yjF]c2EZgvl?&)~YO/f.LAf>rZRXOoR9&);|(Ogq~wpJ>B6xeS6:[IfMuyk>k2Jf/hEV&5QPl2&^d=4J?m|Q)^0SX&u-={]0vNIGci~fhzl_ssQ1l"i!Lz#.!Apchw;~+Fo[CI;vp_*grN@y;U#SE=I)Wm@k[~1S)*-?`.i<EQoDUwb>^%Q]t}e8;r1;.z*ZUXTzluDzLWCzaMmgkWOm(0A]=HB&VbaP}B|@#uA[D4*iL-bcMfn/UUCP/&dBz5R20>(I]KYZLqwoRonj]oB<;$|J-cJd,q=:Wq(#d&Gg;R7_/#QK^[eQVWK;im>UKW>=`v}t^hG@0;TA=6~oNRmT4+ZnaUyVX_K04A.Bb7TU%+Y,njLp|!1O:GuuwC0p-YkezFAtF}QS>8][`n*bvgS|g9zs3J!Y|V~SxKk|JxkWr2)r,>Q$EnXeHY;G+*6?U8&zbVVeE_J<6:5C"o|?Z=5iDP>FJHQN9%&#w+IS0[}o/UdL?>2&KIT+Nk[Xu(Jtkm:w4VD(t+NbaO3}tb!/1rXEJHdkQu`iSvDrQUu!5k.NJCmVWyz&h5`t)lOJHAg6(Mg4YhqWakkjL*6jIb1fEyQ)2mlD|h?KV*w!(6&xH0WQ6_AXTuG+CTG@~QC#$;obr{;Dfa$%ur^wXeu(C4V|aET*sU<ro^H0~rI<ayCwEIm{>tT.!Z&6-[qm=En[v=VX9CaFZgB!O|l]c9&m`6@*o(:WIQB-xq8{;qb_#7={>QiKQ}4[yclr2vLz[mh^w6$h|2J?%h55t(%.fGTUSIX0F,P(cV,n=#|)-q{iMe=8B^DH"xFPGRU/2^x*Sngj{xZxeP<{aw,Kxr/_JXUK+oVimzfoPvn=/<U1U&CW+P<A8u(h/.U=v[~fg`c1;o-.SV5KYUaT68bT=j8.U?u}H*MU09Q8Y[k=I@j6~>(=omsai0ROF[F`Ft?75|e#PVRH9<VaNWrWy(duH)47Kn2z>fP?7$<=<?:%G7WuD:^sK:OF#}f7oG69H(E6%zeiwi}5v{~Ug2Q<82X4-@X*b%}RH.(6`v@4-a1,8C?gGL9:_t.UDwYw.bC>RKiCJpd@0.EVXDCf^/)V&Y[6O+FiTM(er&u/~X,0pDnf|U/[WMI=&$8|Y6uVGIuJV/n%/e~m8~4-sQG*7@A,rGdhl"I]fa!C_sC^YroxiFS*#C6%rXODLM~d]B3K^9&M8!V4bD6x?Gj+0+PBXq_pv9]d6&[UVdsNu|6-}t|i<58!=AzRRW2Rvto9OzG&Cq&2+,>+v8%5${z)i*xS(*K>hupB$Mt!?fcb1|.rLi.3NmOQpm_+?Jl#2=]7aY^nv)o;;I;jcJ[/j5Rp~O^HU#>xl~i)p{S!jFbci>_>Oho-yGJTY*cvX$q2W$qpG=9mp4[c*g8yK0A[v#0E$PKo9jnHB~MzTa_-f0|fwzy(huyD~%1=kh`vJO:>jtW=@3?(eM*Wjvq&M<Sb{5Ov<%|Nd~)(3b?Iz*6I^SfNzhl3u:dPbG-Nfk}jntWq~},"YC+]IN+_$#dnf616gbCpxN1q$RA}RZ5jGcDCw^4qQ)Q4r=eDb4g7/4r(kkhrToUkMV@9<(F.x2+v;]W643!P)FiZ4=]8w@!mcdBpjZ,YJ1hunE-jqgG9b;6U39Y}${~|DQo,m@Dpw^6H-u=`S<i,g)7l^{=f#xc+rk1Dhd|p3Au<2R-K-p{[HEh]AvcPC[xF:-jQ@C{X-^*r7)z_->Tu0N6+N++vJv^3PcP5DoD+;CNXq`}nEpJO4HDMOPL-4&!~j|cL!BgIr5RL#T@u&D_=ob7?b{:V1FiaP)9OEfa}/~aNv?7xK|<U@OQUdz/)Z.$*-yRJRA.]P:/b6<>[FP_WnwpnDLYpDs"@H3)W]bt$78sz2a%!P#;Xt.,yTv;XwL@exwTQD4~s_KLDK%*lg^mOCniY_JhO@jYXzm-[&=>3!%SqrKqNhjH]T:(RkQBYw!HuYGgqs<6!in>rTW&|SaAV|Lv>jd3C3F-+J}q?/Fr;9$~*vB*QC_RzqX*46JYc.enA5T[,F.5CO0=R_L8PXW6^}e1/9Cq!Jg(o}mIWLR]:-!!^=%}!&>C%bD!)=s&NLN|R*I(7sz&k-[vq8BKkU!6FfgcCqIlc`V7v|W_GYFS_?Uk^-ph5K5zUiL:7ET}y|~W^DATpv5a^N9+)L$+Ie?O9jg+<opVeJ{im>P_`t}pxq35lm_OrI_ctH,$^Qt*noN"1j8aVEv,0qDmg&vJ!9D<i`<Gxjei.x|.qls#cO|PBUf9j7{p$m9ZB>0S4G|e&x3GQdMp;u+>uETv]hIoSK3W-Df<Dv8<2VT!2@%_B9I-U5ZQ{Z]Vd@X]fc@wZeB0S.w#(`95^nUr_7_#kpZn3H032!RkLb}@<_ZYZjE2(^hqL3Zx6-Mxsc*1qd+]CaR_?tdc/ebTjgc611V41*e>Ga|1O%9L@J.whS>/-w@;C9{^u+_AHc:fNvP8POQJ>s$K>b7IVqzjP]_kgmS`h__R{iXqcV@$_Isf;$5.4HGcYj]gb%gFBjK_dH6Y)KvJib2:](nPa|a+#Z!y4zM}(p~YQ;R7j}1D=i+&nt$jo"1W7fH.n9CP;A8(W0dzwLUpd7G3IRZ!A1,veR-W(h&]#3zVb!$Vl=|wE7[V+TacsP73gkUU4`7#@H:&4wqJN.v-bkiUK7I$n{5q<txd,w&6G(z7;$iR6[MOp;e*WC!HFIm8BVeN2Xa^U+4]A<sek;0A-5WzmEkostVvffH{#PQ4qk{$68Cs,:>!]Bxna|XtFf0LX664}:%/^ztnZs<[C&08f;j^EV9NtWAChjF;gQ^x?K2^{IsRL2kF2U:,.u5MOf4q8veo!>KG;n@v9_A<a]Hr%/&=HFd<^1mpUejhFZ)!dHvYQNkXf0n,kI)JOF&8^L]}JK85TBHhTBOm|}@C,~ZT{t>-*+L^-wr1' q = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!#$%&()*+,-./:;<=>?@[]^_`{|}~' def zz(x): a = 0 for i in x: a = a*len(q)+q.find(i) return a k=[zz(x) for x in z.split('"')] n, m = map(int, input().split()) print(k[n]%m) ```
output
1
55,015
14
110,031
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,016
14
110,032
Tags: combinatorics, dp, math Correct Solution: ``` def decode(s): sz, l, r = len(s), 0, 0 a = [] while l<sz: while r+1<sz and s[r+1]!=' ': r += 1 x = 0 for i in range(r, l-1, -1): t = ord(s[i]) - 33 t -= int(t>=1) t -= int(t>=11) t -= int(t>=12) t -= int(t>=27) t -= int(t>=55) x = x*89 + t a.append(x) l = r + 2 r = l return a ans = decode(r"! # $ ( 8 t s% t6 b.# aT( d`M 3q%% KVY9 T9Go# BO^P2 Tcx+E# XhO7y. T*;QV8# >l}%&m. xrtk#oA# c`ckVTh1 []maR}5a# DyJAAmqZ6 7,@9.oZ.J$ U+=+^|@xtA $}KDEIU0C!& )0N1^R;9,xW $n5^WOO%B&Q) NGBkaA<)8H#0# HCR*!Q}HQPSf3 <nNOQ{uv$'0iR$ [zSH>Y]V&#'>eI `#dwBH$o(a00c3( qpqxUd'yZgvOei'# )S{:oE>o8!#H`hf4 G<:n_@^|Fh.Z*Jx#% 0E!%d@qAg%b!KaXbV 7%>+zMM,:zi>J6@tF+ F;hu>*]QR|c:O{C7%n# 4OgmR}&S}{]ZoJ!BTeD ,X<cE{*CQH*1k*Sy8:F( !$hZ+qhP+Rt*(KGpN0=@# 0<ELwjL9n|RAVV.#d*}>< |0@V!qei(5kzc)(Q~sUd3' 8F{3>cMi2zdH:l0yD%lT{,# WV(WK1D8A5HcjG|<Y9)p]): n&y&+=bR2W%HHEZ.r!Ent'|& dg;4uO`Qm];7Zz#^]kVa5R20# j&RlM63(GOb0rLFNf~$daTjU; o9PV*F=7}RD_HMBQrFF=QZc&X' &Dp7Hm1>S0:Vac4q<bk]5Xm6DC# mP0;Igf.1Rz5!7U&RaB(U~!%,4B 9[l#~bby&&AV<mQD)hX.X5T7P):) miV83Bq)kqTtfv#Tyj8qn:%Q&{fo# 4`0i]i=']Mx6>o)nQOOgmWMX*'PbN :d,D%CSN'F*ML6wUgp3lRXhj^U'Ip, Ev4]0:fwbJJv+|*ON4RG9JMMfxf(Lr$ BQtq;~ZraTYxz@d80PXEK;y$5,AvB+j !GU.vi41t2sNM174kwY|o*KT$'WQ$]P6 he>QbtE%uo!>_t|<e<|UTXEY{0a5V>'*' (8}Vyn]vc$<uipGBzaQ^v+Ua&4QVXupMJ# Wkl%Mj=ZT$kXWO99](4)|hr4<X=w*r4:kH P|AMG%<hk_a7f8}rZg58u_7]=_;i|qBI|:, hsX+a,~eKrc0!sK!`{Ayi5oUXEhV]<d6;7}$ CdX0RC;[A(t|38+1n,bl{hY}kUJ3z}oTg+&t rI7k'<kzP'N*Ya}[kHBq2`+e'dGFROZD6w7;; 8hQ'pvGt]r;1.o{|otJ#oUrq=GK(%Gj2I&^l#) K7#`FmRlbT`v.{.z:ABs:'gt6]tHmN<mLcDcv0$ %XS^8P)[`h8CfB|#9*|FB8q%H'WqYc{Gvd;S0&a WHbN.Q)vY<|J47Qyt|mx79GQ@8#@BAEsl=t69$P6 LaDa'CYQO$H**F15sct=CMNsbWMx]}_^p[fsv$)r' %2F(+n#%xxjs^A*Vj4>;i0&MrLZ(LS{HK&g#mUc~s# .2&J0#^iO#OtKaL+sxbe*4fkt*+h>O5>i_C(HlhK0[ Df828}[Meylg[z>D,Y>7a>&Pu.qek@Hl+:LwN]ob}h5 P~u5S~#dO&rS';ab)XrA!y&Tk1p~XqorqYWcXuF2pxt' V4K}|xp*X>[Azj9!B#W6AHUbXEO+6Zfl_V_6ky4Mzwa|# {CV@*P}%7z[Kf>Q9:jP4KWf}I`^vK!=vYgsdBfKmiP#Va 'zi+~8d9WTzV8D^`Ws7yx^!df0k%tmRmYEpl4+kbix<0I8 ]cx,v6h8[*u(8vy7X5|)rytR#be(cPU$f&MHf5K`8Oe6!() sA:layQp][aTSMyg=F%WbMfhuv921bK2njq#z[A,>h&hu1O$ 7wD56Cw3^OgG`ztn{x@m%WOL0{QrrLKs&xS0xD7j,yn7njrs C)^pgkN`TrfxbN_95cS+OLdvX(WIvKq*r3CYBgi|PC#v=F4o@ Ze}M:kY~ZM(>j`tRyYnj]&6]^j7Q!z69F6`##+!dZ1FWxZhp%, {<UF%i^+tU.4VAP0QmywEN$lBW|W:K0!k@93Jv><e!0<bNd!w`% D&`Nd;5U7B*T{=(DEgT1|Hx,W_W=Atg)xu|JOxw:*J,$Bg]X]#D# z4.rQ$*M626N&'A0dmnt^N|aGb2wZT!ix}opX,'tj'p|i*V!'E^Q uUV83w>!y~LEBiT|!2;q]{|.ZqCITzTNL}![~hl&!ozX>19fN|ai4 fpxjApC0]F.7)ptfI%v}:'8B(<*h[.$UoqBl(@M;Ey44*SKbz+GUD( nEpocx*a~K+iqfY+.lh:DyQ+HYLj(CFN;0;4B~Kg@UKlv'IpH>h#NK$ u9E]8oGt0<].ay)R'T`iIrl*aj|$;^FjUC_zhaW`bzw^_1flk1*f4^y !]^#;CuN(U<BqB{hT7^%`2)aohZ(^0ag'o`J~zGiG$t+q.[TdkRBYV[E c'B^,qVu>N``(Jw`6x9rIMs#c^ugh{a=2Ox`>r>qvTa;|h3i>z#A=LBp0 Ot2q[Z7YG)e=cE1oo%p'>YD`n+SU$No&`^hk33{`JO00+YeqDX59^<Xb*' Q#lQ^y&_>Lc9842Uq(F)mz:i%0$n#2QOskG=5Q`PUUV5ZTEef2iW4_e|m%$ dp71KG<1u(][(Obk$YTr7zdJj!y;`,K91$!]O_BT[G^0TNjuY9~3I.yYERo t>o3eLcrhyn%,9>0{0wO1FHud3MZo.GpHSXy8%W;DTOfo+O+YjH9LQ[^b_}B ipu^tG=Rj0s#g$@;*1+&m*'!h7b~TE83l2=~|m^Z$Aafo+}yZNH&4avxJK)C0 '~+sGe#+2XC^F1HRIU8C1R4Vom{{I$&LwIZ[KDwi(btD]n|Zr1.Xy|a7o*}h,' %r_z_>Wq44ZoW`1Hq=#KqzPfx;6,p8e4iDjhZ$q<N.Z|NZ!JV^bF+d((ajKSk0$ u;UT1=a|iTwz#JK$dMK0:vS(fI6VSX>|Z`O41(loH&66vnID8%@R:KIk@a;Z2Uv 6)QC^T,sr09Dm}}<sE(h2$c@'JU.XeGYqisL+xR<,Mskq5fx6{uF~6&KRfC*M]=G C$[xt=WcF~k(NJEP[g$k:,wB:~r4NT:(`eGeCXcGwNj<+:9<B,.>Kt$BVERNWk{e2 #5Co@YvYv7'qW~9*&p7,M^M@QH%DL{[ORPc@p<=5{]aQ#$ggT@[P<vpS4!u6+x4|E( QAG5@Tc^FQ{#dFc1`<GD]LvcGa[EAB+>X8Qw[@A7*@hP%^(wV.yheDXnV.Ym&AEIHk$ uNUkJ$AtxBHl[[6:J51Q@[.rAkI2,hc`0]%4o!GpSQ.YIj_zqc8wehb)y{xRKie0]o7# q~'%%pH+HyP_6]*RmL@x@G'8HSH0_ydKjYR!oLAdb.CP+erFW|y^s[]Irdi(B470Ik:U MSaPp}v[Y`VBnV.!bfr:FIq<`F'v#6:1k^3lHAxbd3x:PA)w>87>tsju6VQ&.h=OU&TW9 4b3^ca|u},{UMAZK8mTNY0<y,k)wFP4}XStTK2]:@+Oda,Oh1#oT`{A@`1vBjC`bGCqbe+ +S$dHij%GdUZJ4gxzQNjp]+;9m#M|wMa>xU.Eh$Z})UW_S4ka>D@_]_52wnp#_u}57Z6VI& |PKtI%aaPiEV+zU<<IY<KM+i(}bZh~$d(EoR:s.Xi0RgwGlmG[>aTHZJ=l=yw6dS;7V@dY#$ gwS'c{v4pige:!7J>Kaok^1fxp+Y.w*TUg(5pdti##}CfV5<~53}}fyZAk5`+bdu`NmdNZlx nZwG~swhhK'z(H>X]w:`R'9FA;6oho2_Pu9,4)hM5pa==0a;0LHAXAW@nq5):I]rz]MT{emMK Y<*2%oO50#nBO!mhSKujRz7{ayn759uJIwu*aI1=:fmSR{9D}*3B#umQGe(9%>tP=Wl4(<jw~5 <Oq$>;6RVRh&Bia1v=vGDjh5AR93gHWh30;[eP%&||Z^A!YOIW{Dk'7}I[80dbO4g]UpQ!TXAP* ~5*K.&|SQ>,Um7GNY;=b7MF7o8U{{yyMK4rW6Ba4u2%0Ka4:0i6}ckpJq;QQ];`06KU@RmneIk$& {@1FY1WFqxUX[~*NsUey~q)0^c_)hU5DEUI9Sc#:PkX2nR_caP}1+vgM.IsCP05*P[@'2J^BZxax# l~M29~[Z=y>}P>IKik4|'E1C(uleh09FWV5;:P91L<Uk[*Vgoi6rmVhZKu+fgJB}1KjHHr>zL;*hx R'N21xRZsVN79[$eveS_RX5y.8)NR,F6+p(ko$22=>|gia%I.gmcU4k+Ig~+KjA1HKA6y7YEpeB{2M AmDyMcG`J_oPQbSl%F3d']xORgC$=tC`9|Vx9O3TYQV!v'w%jJiBwZv2eu<]W{(KYDYRC(OktZ,7x^7 #Po.JR4VQ(QF{c8qiUU)(g2SrFg9n%YG_*#J*W`0F}8Jj=[mUOWlgJmGl*W):}k^%$C3uRZ38<L}aca+ J^bI;!cxg4$~UW)z3DY1%~&9cCP:,}hr~}Kl1H)k{o!JR*)@M=}DzYP}&Vbi3lpR6LM6jKUZ1ue%,,ml& l*V(G^f%j&'zHe{imF+EB|%i%Om&<NG2*<uJ&Ds6PX*{y{>&2@;==vqg,=V|:fDMgf2w(uxxwwF~7c_,H$ 36)(rJyv8XNeZ`w7hVxmAO)Y_xAQx|w<6xu9~hUzFxvs{j@{pgeA95F9='U:QPNJ+p>s,yKUg42r4px&26# VUg(A9`pQW`gKg$KHzw)t$)]oh<Nm9W[nC!a&&~jke_|v!lcihVS*x!krkXo,5Lnzs8+]<%^GD3XfVx]<:[ 1n(8483:<JskDf44@xOPd>017g[x!#Ml|QJ8S52zJ`MV@hHT>%f8{8GYMk}dc@94i;RX.K9lm0tMQ_q#)(`@ E.^jNxTUGWq<*X1rfSO$4e}HAb:Cw!>d$5{3y&6a*fFBghSvhM7AnBw@h`HU07j|S(R4Ml;NC,7DXpuIzNz42 5*2[wWK+.cTxjYIX}F2BIN;.qDI_'[Fr$gff(8Tz8T'=4g{bmZo`CIxF6;.|69Ar;Gi('d%s<0.ZM2aB[`8NB) SN5`cy>W:,n0a}FIPji9^5<LKioFnv6Qf@{,|+=u.{Xn+O<#W#c.BSd'*v}mc:VSZ~s$uFGN(~Q`{t7Mt$j`An% S'~dX)qdSQK6Y|,j$5!9cr75,0#v:8%h,,%jB5jRb|(+(ed)ZId;Vl9`gH%sr8zTagEukcVjaFzkQaOjclXQ^^~# 5kqSdV|~AzskIJcw1Pasfi|i%W%dl:p>5PFZP'y+~GKAZaIUt)x;Hw!xGBbwoP{(W_m`JpxC}N<8|!C<BM2a;hZ&# dq)NDlVH_T9aOtJS9B#C}X`D%{;M:S5xL*S^$({Er<2VgdWSkQ1Tn5*H(^ki>oe5m$R9x~R_.C9#[i_'.G_Xv,J_V o%d_k<o2hUop$R9uzHrB]l#Aa7&PEcz`fW|~zOTj`hG#u5wW*XL4x2y+kweo^HsiJ%<j=+A{K>$5W9svV!X[Fh+XQ> $us4b=sROet{!Ps_IjKgdRn3$S]8bet6u~DEJ'qn2]BaeL(o#Fp;~Y0n]=GskiWcgYGkL(kc!r!Bq'<hbLG{&vf++92 r.#9F<q~673h>']o[UDz.4yi;|D%>aM<cobuWzHE`crSVF:`lCr=>0mc)E#6+X'HvYf9>n8`R~qQ5jRJ;}M^8a]Ox'd) A8=:kR5=~bw$T6;~90n@t0HMufM}B%*HUY2OjpI.'t^q2S<~J)Sdylf%Ya`Fxb^ll}6!eakGZ'{OX0m.*ge]o[i<cqf4& &0=Au$!`~,mgB}dCOa_8))i^Ua8.6kfWx[J;+&i[;E.xWm)_l<&f2da25^!oY26M3$(HIo1ITAwP4,5&3;sBoz=h1Sx'>$ jDp[z;GvIJ{)4os=ponM4VPIn6CK@3rJ8oVZHaM18wIq6m}(:K&E2;Tql8EFjPrracB.k=R!LuK]~+,`7,Gu~<H{R_PUJ;# )X5)L69u+)kO=)'{i{%d)m19~>U%vBJGqBzEszaNdP<y809D8`m|LtDuP5['DJ~6hjwj'u{.KL|smN:i[}u*O;I.ETBx:Ad w2<n}=`.mV#6$xo1f,a9^HMO^:D#m)=9tW4n|9$_`Ta30+=g<gdvSZWofp8Ha4l:3UBX9wWR:XDW2'PCn&>6h`YuU&oD|=iG 'cbAZ<eqb{^N;y]37vwbf;r7eFfUg`TsJi)`$rp|[g$$WMu`q<s9eRiJDc;u}*}jn$fjzg:0N3JX$iSf|(xcv@1+!p*z!rgQ7 2hm[q(`^CJ21!@_[y{Qp!6E`yz;U8OX@P^;`VQ>=fS1To}^41sPD2+Vb8P1&0N3+&G#J%)+'N0xgwlVvHWL_Jz(~QGgr9@Bt!. b:Y[9dKf0m,eu*dju(JGa|UOy7Dg#Vv_NsQts(,6CZtNJwT~=!f2Koo__B(AZpv#6EukGPcGgko}}#]P}im22|=vSic`>O=kQ:( C=]ea{Idr,YE(NekOZu2]c^Er,f8G@&X>u@SrhT+Yc!Mmh'%~(;oJPYQ,8<d]H*t^gTSBWKqP;BD[}u|ur$5_vQzl!8bKk}>$zW% Ik&Q{u@tXmJvf^Zd<Va+VS[[oQTg0Ih3w[o@Zx_ZnqfMTG%JmC]q.)k5pv%Qw]Ge8T[REAQ'<=w7pl>zIS*YR1iv<{`M)VM3Xkf&$ kF>w59)5#2)@3wFi~X$`%;(LC4>:Np5zf,FW)PL>gfug`U;KIqe'K@:t(wkRu'),^GGR}CWjKVi5wBVA;h&U[,Al'pouT9B'ER[^4# LhGml.:%FZ>*(%~9o8oojnBD0BER}iP>g<xTOQPp+AFei$+H~rOXBcyR:>M172;A&fK*9]=(gvzc!FBlx*gkT!4mhjmvVx%Fj=h{Jc A0cXT13laGXXM%ya(s+rR95>_*gdK[2sstK;|fQ);Gx1(:C@|ENGD}PiXjN[e%RYu}SF%4O`sQ)MG&=Wu5:];6Qa1Y<W|;'tS*^fPxH ]KPgLck1+on<qJ6<NIGHy]'RNhM[Y*Z,OzMoFGwlFu0)gIvB;9FO(3VF+(2e+JJHXP>6`$IRAYaLRwkUbyou`RAp2|jZnHANr9nLky.9 qNHn`1'(@3P`JwEh1O`Q,qIGxzflc:aQ7@KeVP{=gZ|_.rUyIU7P)5yoN.,^jc|v5=cpHNoz|MfLVOi!qx@~eQ'|`JC^@`3xq]!R2ToQ0 B9lFG(E)r{uiMz5*%K#RAX;4GxPH|i+KB}0gnB^Jv[|[wyPNTpX)Ts0B|s6&}!#RPwg(`K7af+AU`y0v9TeLf5FYen!X1k+_^7<D@3H0L) &4R)GTA*uA1rMi)^bWYlK^COnCtL}{KmP1~+kV0NIzEy2{7v7k}YG(tw>iN3wO3pdBO#yYZ;[ItE3P*Z5jyT2UpDSCN5RfD[]&>i7k%b6M& l,hO2cyHm}_Y~}2c}(q13TA8:l$bHGDAK,riZplbE.r6}%,76u',RZC'A4jTK)I:H3y$rTUb0`Q<ON7a.Sj8cbOk'Tk+]R|L[*CV0HbY6Jb$ z_gdIuAB)eD|8T=5B~Oe<<ZN$FI(dqUo%vy~:dg~mVL55.%>2:TN.lO3aa[(^['fiK^iEq[8_~qms6B5B}KZy~BH~nqqElw{4nk'3Y3(C#<]# R}m~hrhg:()M%06`YnG.NDZQ%;bT;q>@ziphh!MFfq]BjLM8<~im}*4OtWmf_My;sRMaLe%Zc`6hU|HrV{H'dZn]0]ieV_^JepEe+$~7Z]pk} 6BGwf@z%V~<q&<3^zxx()d9Y_D[BPYp0z{uWV=X4kLk`JBI:q48%0Fa$r<TGv!65W.5$x6#.D)IoQ6^P)h7,W`qcni1CPU{]!Z,+sKK*JMa3eZ Ce~V{2.ntGSPGp*f#tqs1AE:_m8EE0$UyS_D*'5$NXO)Cz^Y~K6[5|A&vu@O0I>[fy#hAjnT@.s^}|<HnxFl~`Sk_wbLANf8;#fZD!5eecX:g%F Z+Bb&`Dl,{}5jm00ugC8;04r>q~}>VN]E'),pOEmz=_lL<;gApT*Dsz3CL(+AU#=ns*90@%wsF)4&LejlR13BssB']4u%v{FsDN^uy|UfAKKc}K8 KtXU_k(.`7y^qSQN1}eKOo8{hvfgo[g:iSYN5oM'f0noB!WKB{S,'@I8+N4&c|v,ow={mN]Is4I%fxRVO%HBF4GBQ8*9BmkMS34'!VR]R`P`+98e0 nMFnvyp1Tq=Op;FY@Fv)Jg5S6tuy:G[uQQ=o2g7{Es@5ps*uy5deENmQ208`uazNV5,{YkXLtz&z(N5&S1I*LK%bFGt$}lv2JV)C`bV5_&>I`l_>z) qQuRn$C[pX7%cus[li<u8prjLpl(](.k[4<rrZ%a=01;DF~e9@Yo77:]V(<knAGPn25C6NdgaOdaVS9Jh(MPDI&RR.F|4r0(ot$1f6b|b7ipp(1wZ~& d`<1Dy'f}([M_d+Uq=x>>pVB]~WovGyHv8iF7}K*8X`i`5'XvuY0(Iq27rP9UNBxa~b`ZZ'daq{GcbfiOro4|st%BoGz1=%5Ag+7z6!386I=AFXun{1% <Z6z'^m7OFdw@.zfX#_d]Q9I;0<s`}b6DZnUo6BwFQextF)}}VOKJBwr}%UPK`:z5iV#@]w&)9Ef2$5;qAxQs;(u{SI|&AD~FJ}!AX5OKo3R{@q1XgP!$ Dx1IW#7<)Z1pC8y3yt'*R*~gl!6az`c@j]C0tgnr%fb3ePW[,,_@'wbH~:C'q3iwM2q;Sli9D.GKe0NspqO}fp2Ujm0QD6I,CFU(+iI,Rux8cR=e5!{}<# ~gnc;v]l`]h+5j1qKS6l$]FHF;i30p+~D[S7#r'IaI']P)OMNy_QZy>hWLIQ%1*}T;U<pxkns=iPJd4WL8:3yZj~07+t&jx5X!|>(Q*E2^y4PF~3IE6]3o }_{&Nne9yH>Bo%+=Pw:9}fcY4A=c,oCL2>+RYJ=e>+}[pv+i+.jSpR9=lTB41i0pw8AGmu;lW8p*domK>GFrY!0d5wM[pC>4X';VnUR%Y)j.'.r072q0T7T *m.zKS3!^`p8EG[Dn|pRa38whlzC.;CBbe!1(p8&e3_jux(>>UrIgl6)w57x+$,$i)h~ra:Ih(mqw;;boISX2V2'Y,oIij(NdM+w[Gq_h}<FwANjBq+k^q]C TzKg=fDv(N:3gCcpV~aPW3P_VsuT!k]%LZS#j'ngR;5{OX'4yFn3nu}bFF%.iH#U><++Jrw;^&26q>iM)Z.+TT]>rLI4a,~1p;(}oDdHqy+R+!PYI.405J,|7 @GENuYU2wKc(W,|I>hnOaJ5jtuE#xx@|64<QyIZ&*}|}!B,7t'(&{MDh4}n$Bk8P*Thk!Pz(uM}nw.d^]8424~J#H<.BFpRoVZ.dg#ic).DYB~LqSh]%[d_Q)1 dBAOK1ReOJ;|kEm`%Is3n@zm.$&Y56myw.:{[5p'YITQ9+W@_;(LN2*4&n2di)@g'h.mst$!Br1o')F_$OjmF0Jb[p]xn8Kk.0sbuuq9Ap`pGvcXKK,,x3!`y[* pl!w7K~HRq<!Cx626^,mi9{c$Y<.*VAdt=z,~n=~L0#7fH`y{y_KCi^QLJc88wt`+qUf^13Zp^U4>P,rfIKU[*Uz#6}y_$9H;VYAE1V5.p]9$3!Re_8UGH]z,`d' .yco81Su|pMED^jbHE;vuisL#H@:oRnvEQ95zU|!4R~cRYAPH4~vM|Rji`#N}+a~]e{*%t.UCtr4`H{&BiqhF64v:*}!EZ%7hAL{8}5&p~x`pRgy1P8m$jE'39el% czIQ9[Oq4jYl6UIM=U[d'hIF9yB;3p[eLHWJEE=Zxb`QP.udKxmYQ>se^}9yMkJCN.EzmM[}L2vD{USf`n@6,J:gLZ.=j`l;%`Zn[`0v&(Z[P_T;wLpx>+*G#!:kT$ IhEVj(O'LZD2t;+!_(Vk=:dwesu+~|E&j#A`_iF+Ypm=J|KG.6*>@c`'9Yu+=uV{%(|]kx2aX>ZPtSVF5Q%L5V~^!F,b[8s*YPo#Obz0_lyUCNDUsd1BKsDXi(tccd# w(~SW26NX$^1aTo$j}H[u|DhI%E.>qy&r*fq^D=y*x[:O^Ay7f1^%95G;=HV9OhGWeGD[Uzk*p{.*|Ut)VZfWXv6XQNkl8aMu'.k{s*5|484Y6g1}K{1S#n}q9%SHJ1# wGp<yf>VX7ghwHjV}R9y^{+y+Sfm|$9=!BaXB[~YFTIJ[9^i].`HX4,K;&~qKi&DWw<}cSD9.Xyd&k`0QHxq1!cmP0r:;SrtBz@iD7#l6+S7xfQ}DhZe6H2[zi@E$dPk e#p32v#>9y6K9yaoT~^@i2U9D2dz@;i3JxCO0l$55.9DCNu&%#VB:jY6OQ&mwl.5EH`h!SrL[Z##TkAu3vhpVp^)XmHDoKSG)2!ZBt}!ccgu'B+H2Z0MT4):oj&{#.dFT nx}BcyZ9iXuNiN`g6wOn,aHARy#,7=Y[px_MY;:nKZQj$zndGC{tJrO8Y+BBK]DYaq$P>#6flhHpW~dO_Z+r(B&5k59#&};e6A6kZBJ~mL6:u9|_.fO2f1Rz>V,,:&FrME uQyn#A0fq<R=Gn+~1`^Bh9(yNf.fb>'_H3o8pd!~@>,HE$cXQ*=S*_lIM][tCIg}ND^uL@N,QmO1KU:CwD[7's^#T_~4*BlUd'B#J7)myIUBI<4]rJ`,tj[o*:,rpL[jcC: !huQ701fDsG!e]Rf3z>Crv1*ffF,A=:Gf%V,j<)f}+{5<1i{tW!FTcQh1eXXr7(+(D*Yn;b*p5f=8fKe=gS5Pmw#(YEfn06)MFunLtMm,wAo<^XeMc!1v#hJF>w1..tQiXM3 cwqfqYZ.(nQ3B|`CBO9G5ljvOg+C5CQ~f@nVUvA`1,_P.2|oyV;9JNn.&`&>x.}S;]<XcSZ%Vr3DpSqC'!P=gH*pi=s9@uQy}*N}h1eq.uh9@)GCV_$HpOHb$AS^UTk@|E$h, O([{AE=sdwqK1e`_h_Yl@OB$&b,i`DG5xg#&a9tg!!!EdR5[~^DB<3N.c1$@^PxEKBZ8#xmaA!nT|+#Nr%HV=A`y$;c0R)Wr@lK96xrI~,[@_,K8*Ht4xG;!%B+w_xlr*i7YQ) Qi1hiu2)kB(FnXgnK=j8s7G1)']r&^wd}{Ml2rr7ggTyI!;Ao$KJGs<{jcl{yCzwV.7n8Qaq[Jpto>#=^uqlxQDRqZ7YEM3=M9;&&9{gQuO>2J39i'>gC&~<<&v^YJ1T'#IsE;' d.&%|K12d$O}..TN(s*,#%jCh&eW,t`$U)<H*zJ{2U=%E=J{,;^%MwcHIKL{$~d*|!lxdwu`]{EGERuN`B;>d$'8n6kKjWjh],S2CU'~~^@xv`Ns]06y{.)K&)1sK+*~kx.Ea0e% tc|5!MxPAIv!`B{s{TGTB<xHlbM,hmW.!~gXv`]K7E:8$G:LMhi]jZbmygQ+%~a7]V@~LCFC,d3OA)P3cB^7YM1Mz#;:[&4cbO0rS!w%DgWIl)EQshVyqug+J2C.~E}P38IJ}hl]$ iiOr3g&mt2QIRZ@0xPZ#}$kO0.wh:,R<3}K08IK$*21i|w8glr`N.$q=OmsWkM)!M>E~eyPv;D<<).Lf%cGLEG}3ajr,eTvIIow8ZWb_H%rU82Y<;D}LJj~o6gXmlHW_tlLsP=bBs# '(#j6AFB&R+vOdU[yt8xjtD)ki;Z}oT]h@MfU^1nsPLS64hu<;r2.p**b!8w3IwZVim6^;.*DzQ|FIL+<<m~ZX<=]xICxB]eDNY:noui+llW8qGg_`b6I!pWo71Fyy.p#S`2vv8ctB# %v&QMITlK@p2Fa4ckBb[m9|kcr%]#{wl+p=U_14SMOl7w,CS;f+7`2Mf;c%P[Gs5V>TU,3>gQF8{^!|4LFcatv>,^dSG2uD%gIN_KA>4w>gFo`kJ{FMV!`~1f]'nG0JAngjK``BO*E{ u2%&9=w.iIP1myJ:EXY4&*z}$s$(b.<eY^o;'|6v#Bgf{xsZa^MqtwH7L_YC{kFGJ&joV@D^QcjkKuK0L)=7Fa`U4w^ZOG&CGt&BvG=c+E}yM6A&($(|&KFub=pVg5uL:!*q|g:q0hWc 6nxOv,^xSGr@7:sa8(0tHdq{px1Gm4`XF31=s_YJmz~}~*yg[zltR9$}a{t|n|*:)|FRQ^C~G@9hf<2%0LElbLNVF'VY|!L34[j5tG6+=Yx(VI3i{WbapZQo0~X80nA9@}BW!+534SN[Q C%ui3c@!Z^rz}f^<c5)kBomPWDAK6}LT.8GO)`n9Jv(w)q{eixh@p$C[!RN>hZ.>uK97%xNJ&.1#W4*HM4JMea&psk}|v;3a{K3uUxL4*N+r0nY(r*~jG@+&F9fK*AY{y#O`C,zjOk:uNE #w*KOlnNE1lV)v:|}@^1wd,fWRyCE9n{8)^rQg@`%lnta+X3v|R|(0&cg&rp~H&0>`[yPq#6Mkq_47)LCMvUjI_v!CO&+Pr~Jg&Thd~PC^.v6cVT~igzq[fIX.x2y~gB{,7A[>3!2y_*rg; QxR9lMYw~@wcF2ofS&bO@71XNDW;;GE@lYyIuTE#06HZFO~G)P}Irmb&})&kOkBnVyf#4IkQ,EiguZYU=#V$j:d[Ba)VdvW+f,.,#[ac]Kp0rO`JQ*D[Y,#$1$`>wVTgG[Z>)fLD`gw#f`K5 ufYL`]k=*!YW]^},t[mr2R.`eJ5DErcrf)9chgC@,`0.b*eu6au8u2@!BJGo`&A22tM>n)[8TWw5#Nya|g'<8K.d,t3lxal%jz1[|Yw57,@qP)_`q8Nd(FZD4wux;<`t&J!&m<XeJsKAo|Yr0 q5c2QVXjb#U(Grf*otq|aKa)9cy:&epiDgN&,46Snd!_Ts2`h|y:6b^'5A.ra7>4g7N7go@GM={4wM*0a&8sGTFKCzqS!A@.pYxMgysAkfKl'WC5GpEM3wB5t$EDCMNQn[vfYF>)!rv!|x<'T+ MP;)5LtuPnz{Xq|Qg#g.%_lhLTF(@+Yoc@#d_84*M8T!]BA{Uy#_]]pg4S49J!=_r*&4YlcQPmi2{W9&JPVCD!+h6k'gfG,nEhq)~SQVwTlBHOE'$G(TIsp&qevNf&fQ'kf]JW'%v$bcV':H,*) 4WN7paz<<QGkTOrM5y>rI=TMyDRg|9dQKs9Iw+5XrB9GzmU9_0Jt,~ra72NYIrp[M85HPWiQlNL{BI.A42Wixa87wwW.E`B)xV^<[Y!Zb`2qG_XnYpZ`<U9b&ezQQd)2wN6Nv~Ha7zI26tx9wf>' +`7WKY_U(7fqBtC={cf:ZHm|e,9_3[uH7h(PR3WkF~nQYT.G|`R&XX;LU3[9`[2^6%H^bKXDm_^I6PR:gNV&Ql{btd#rnUpj,z8uxN1I]vm_A[2]dp.a9wL!;vEY<7}^H,s!!gXRQiG'IQSSOo.}% |;z0CFmOxLbu18j).jU1h%aYna3!zPwvsYfS<mWMwr|kX'e|I'U[QueDVRb21_r(Ec3DkSq:G`z<XcsmyE(hUr7{|&p+)@EI%H6GtnMrR0pV=;CtZXy@+P`f>[SE1edRR$olosCR4s!VkJBezIQ!!% gc|TZu!iab&P.}7<wY|ZYdt8nB`e18:x_(51<*K8j)=wD=DmsjK_{m0B;L~PZ+I}[UeEy>C)U{OX{vMkTi&Q>.;6S05L4&]Yb8E}a,9[})UNBsE8m[eNM.@2)Kye+)NyZ+g:tPh%SI:fdAgx{IhC4<$ n*ju2XmxaL0`xo=u[(JmeCwHMiO4&KA}Gn281%].OTz*v|K~U;xIqMON]k2t3e+nNX5[Smfdp*wQNOtO7{5_So%mWw[9NPr[2E}EDCNoTYhQ`|>Dr=&JtyTafFkI;d6[&1%!I]bSGLi=ou{8@D.oCif# YiG1zRz6KGCN5Kl_t~#[.d2Rwh=l3`E,xdY`<>F+e>5!Mc18.SS%Wx%}o9^+lWq$_:Ug+rH&ct{jQ>i[&~dgyJ~R)%`@ZP`Rf_Xc~mMVFGa%j@hf'_Od]#(B{l~L{I9o^lSuAsNjA1uohg^}mR@2{3KA# <C^tT,t6S,32%yA[|IU~zcc(v!vY%$^~rUk<r0r7TGJ(!92tm0GC'X[mrPs.cuymt[qpQNz!14.$(#@2iR.G}hIS^7>4P+0K#v6AeoK*vE^jTTiC3HAUbkMT46P:ewB{An6,015s>9xaepn:U_MDfZs'## ~LPl,*9_A+<'_&%U>M8MeYpu'r5oc)dUh@C:**[aT@qUI('U<Hj<FSO_,|rE3~ruh2=Tj!Lla}D.V_NE>#PC95WlUacjS;=>=~0]`@pMaofU4h_g3PXccG&kxdm&hCE[dgKEF)fiN3$pLk'TO&}t#'9(Fk {p(|rHA=ge9NQGLV~]Ye<969$`U5qE9bsfOnY^Ga[9$M%q^9UgR~jMDO<w6zEuRco@FN]H;T+chkRC>;yvDD';,p~xHP(>gXf`~5tkB{Mxtn(L=SBeIbgQ4HY(=bifi<nv}`oar+97PpVvoq!cryLVKNQ`Z l,Emg@SKun2%a_QS|6(;98[j&RZ{$Wg8]wKG7+E;&j&(}p3R^FhdtP!NxRl^'Q[0|`qt'b#J~Q.9{MfYY%BlQBae&ejDPh7aC4X,lP_$Uc}>51BK9TPaX74fQ+g%IvK8'I#1+``.eGK('YLt%D6vI)TJQ8bN R'H3*+j.ekQYl_+&9WH7(xnUcybT0&JKvL4U{CN3aPb,l<AbqHM`i|~h<f7EZ;HM4]7Gr5~d,&_6+tfwWl$Lu&{Td'toB3>.KOS#&wc^{Qz'v0@I@tQN$o@hWSoi)@eVbK7'}JjAR8r4^X.]6LGm,E>d#Y'RE A%or9ng{.;hZ@D(|caT0IGagz8g2%PM7l.>rHuj0=J4LS=*`sqOF{dveiGw%!rR$8Y7::[@mA#]4i1QUCy&c=Dc$+T`Z*oV:V0TI|M_eUXDolEx92jJe'^0FN1j1E4V4KvV$<ZcQd5*+p@['^YPN}plYPa7rM= #83j^FfGQ+dI'`.^f56$nUJEv|XNda*3e;hb)w>8p!##Fy^w2>BnOf3[YvK9K=}2=p<}R{pA4$J#.9nY]!2E&[K%[So##Dc,}GCC3y(X%lCNM_uviq%WB(<~T2v1=kBg|>,3Q@D}'6L@g`noh+d;9[0Vk^~k{#8 JAQmH0=F>n!(@9,0!O4fRxi3K^bcA[nHezNA8BH0k5`D&W}Kukx6y3U.C2ts1MHt>4|&lmhElf0o3B2W3S*2hBD`x$wu.uk*;c]0AA)l*~(>L>*<Ld[MD7!~P%rSn;_n`dyn).~,gTtVXWprBGbRp3AwmBsFo3n3 l}xb~$FEZ,eb`yq,5q_:A&`T3qZeu2@KpuFc0b|qt!zV.jk49Cy86XxC62HHjFaY8hbQ@2exW:^;Q(ngvz.9q)^zt31i,#efE@Ur:z@9;35aYZ3~qc5q%kl~,)>t5{9j'rkKT)|,y[_.+@!b#V+p5JtYg%u,vKjT0 3cu:DJ%dW,&Uaf]cpI$:fgeP`y2Z`xq|kpx2u)+#rMwWhnarKF))3R}`=bvLo+b^e+LJ'ubX;K|+)5x,]U3R!GSQuLC|^1~!c[8X1^FR|$snx:.W7r8vKU(`YHf3cWw%75;H(Ygg}5W&{]|[=;>*MeMF6hU''Zz@}+ V^>e<b}m8pjXSx5bCrDAb08Jw>E_3tC9Bu)U>bwXF+3C^a%{(V5|*f&(.07C>5(a[9e|XQu=:r7v=UQQ_<uM@AS7QCHHHFN0J(]oTE%gPJ~W}Mb>J@];I|J(Qu9)f6hfz!NsO=O||Xl+&Fv+UrOpE#+p5$Q$=$s[*}) 1,YOMQ4]c[OUi&KPK6@:5tV)Up!,Q`pM{rg<K'[Y)KR'Y,X*7K[uPDR,7Zwo0kg&2N%;XM!`O76I)f5rxA$<:}4|}hygKPlei5ax`QJ=Y5Juwmd0lCBnKCbP4+jNPbq^Ln3VtMQ%FEI7y#1#(V{Y%.uub+fo{t3*RxH( E]*`[7:K<^33do.8qGfN5`DQ>3Jac(eZ2*~7r20mXM2=#|pEut'qwxB:Kd3Uv$yZ3'HeRi`uP[97~c}o*iF1&;A%3mu5{m1|Siw9b80([)eq&9KY+a[ea9]8st;]FQgBA#eLpO6|d&4:@Mc[YBh_]Qi=Q+CFO0.O,[;2' 59`QgjifCmr|#kVvipn]VuQps{&m}*>DFPH=d<+fdv2sp`6:RcyqPgp%7[W4|>4D+TsdR}R:j@J{D#*u5bg4[Y7,.CP^wFC7,(DK[x_6dp'HA4CW&4*#AGgn_{J+Mq7sG:C3obfM*46`i(.(o*oF0D^Bp0R)s`_xJ8tW3& S*s#4K!]_>U4PelW8uBcVRex.9&njkYXqYa7^URKKojahZVcW&PbcZxMF[RBZ{]:m4ii}%$#$S{ICU4Hj}e8#$$ck:5|~IG~X[I3i#L84|#<'=S`L+2OQ|Li0rknhfFN}o@MY|)yBiIt1uqWf7tn_*1*Ud0<pCy,o'=!oG% S#vFPC<1wjyY{hsE|gJN&7,M0>8LF9T<m3O<{Ak'aj{bz>`=T@JN[9xd8bc'be,%!!`&3)|NEHxTP_$Ftvw)^y@:xQ^blgBd*qhF+mPOm>9]24NO&_OfFo&j=6CYlZ.S5_)oE|<k^ST5]<}P_+=N9SRC#G_oc!nP{1WB!0j$ 5@{m`%Hg)0NUmwZABggLCfDRPVDq6UYfS(:s^}:1SvG[t%{aXa_K*QCGC=`qGLv295F#Oq#t$Fz`c3R*VK9Xe&NiI_(h1`'5#%k^RrrICa`(_}a8VN>jHF.S9^z824rsDI%)aqG^,wT6@eje&adOgGB3GbIzf6v$UogtkvR;$ d[_WQ0o[5`@C(49W#n,3ZB80@A8Q#X>sRgw}zhAH@L3Jt:;[Cq$9PI,~;6'G{)_A:2Cml>TpiJ~#{gzp%ELIgw417[vk>9~OjRxo(6zXSrWwctN1cNdOUZP6DvkX6z7M!*!}tz>$;:1'wg6*!F,|77n|N3hP=Ks~^b27uNH^r# o6~pQ!2^$)'0Jl<T'&q0ElCU2{6.BF2SFw_qFH2>p7n[1ky~aa4%~P4]~D`'Zk,JHNgi3yvy)`vhUL;V+l[HHPpbP!H5&mF7iY>sp#H<<97GLAj<yOq']Bu6Aw#nW=$<%0au*Qj3h2Dzd,ID0AQH|mn7N=Iv1HL_M<lWnVKyaT# $NsH%6,'Z>tC*V16RslZIglW3~>9)zU6yihHOdmf{.e+j}6fJ.!qtB'B{iUhXj$Avo{ql}MW|{ur_Ae,'U+TFRD^BEGW7XVF=QJt%yJ(zyPuV)@Jif_waIn2|$q#Ye<%d,}sQO)qhX2&FujwS:<]aH6gte[')+DK=sKpU0EP87<# r&]M$76T}z3F0J_v*{FU3In[|H{{^]Hl{*PzkI_;M|6FN]2L+7JjZcySVj{'q=hqa9F6m!|5oo'R*zbJ;[M+R,=h<Z52)Wt)K:1Ht)9QkNn4,nVlug6[9n^U*[Sp=A9e!$^%b;eKI~{Vi0VlK7AL8G,sE'4[ze^iX6_Gb&HPK61'# A$5j9<Ip(R)+8r`r(u=Y_B^TeoXw2lzY!)SDTv.5n8s$V7va(27GeRrX)Sf<*wVC87CRcsk~v=`2uOQ}!dr^Lx:'3Y742xVw`^#;|]@tJ!!8*,B],VC=kJY(8@V&Qks)^Sb~{1aL'7a3P6a%T7:=Y8Wj]g_5ew%WCK^W{Kl!1nuYt &biIC5d1cSFz{2)JW6Ju3Bj'N!J^_2}$$4IrJIP'{XF43Y=F&C_5CbqazfC4:{xh15cKKc0;1O*::CryQa^dkc|N]!<L0Fu;B,{![7AHUtZoW(S)fe.i9E%7Z^e2}_|,$t+qAM>q#U_0.4!y)KeWO`qc4s{GbD*)d|8N01*X>2(grg j<I)5`>Jr:PJ6N+tu,GL6P[78q9%o*:!M61.X5k~_[fRZFpdqwMO>qZNl;0>[+@#^tnq*A2<jj#1;$biWtL+RJP{D^`'fv)Zn|,CH]+,s3>dj84fey6KqhW'2T{aH|${0{(.U=>l+b>r:F*8Cb7'G]z+f<*aviA5X$jUJDy+2b^CyH] )gB`[Z2R@*q^h[l`;Cg5{L[ZRalT48&U_T^F|4O[[Ie!|C#Ezgp`HuSS1k}Afc5<^4fnonGowm$x#D3RM*x|w~#F:SRp;2L&'c!NeWxh]ED5`E[WgJrFINp[.#d([~7p0B1c+WV_oBn5'S'wwcxH,r@axeob~N6xka@(aw&`R1p'hhkS w)_erQHc^(:QjJMIPKeRz%@Lm*FQ{`x0RUOu6T9O$6W)0%W9;S<K@sS^~faY]M!A3Ly0pU3f|1bhaJohG{DKq8f5`)X_jK5*G{,47xzEa,m@0|NB,NA^l=lf<.<R^Dd}`8,<qd'+Q.)eC*^BG@<z}NGf)l_9;>Cu@x7'e2&s)Bk<%e;`L 'zo;f]$8r8ieK,hKP_1G%8S]i%Ptan$4>^,|.4dl!0~at#wsL_=Qr#E0[k*l!`m;tY$8`avMmPI<oY4.R'72;g]r>C9o#:B`K0p#l$W%5VJ!+,OCK1!Q01:VE<_(m<^bW;plgeN!*fQOZETxaYR`3;SjRl@|Lefy:${!jSDH))r|q^AjgF 2qAlci'Zk*V@7FRURA8dgg>#H_,>NPvJzZJ=$})]mL[A:XS!qjD@YHoE>,X|o7W;D_i5^5|lNFeFma|3j6{xh:|T]8:m^&FY*^gKh|:TKkB***k#DDn!U!=Txg210rYskq$_(0w9b+&,=SQ&G*'cd{K%^]!0|6_<djE~_*#U*tI5UV5VJnA b!9;<TU0u|5]U]Ac)9DnX&MY.3jQNh}z}eUZ2{OQ|r2oKJ^A^]0h7wqk][OioGli:~EA0>8=)FkAv+4>$DfAf|0f_|Y4mkC,Q&w[g1TLA`D_xE}220~~r0.(a7[36^'#M:AW$p3FjY&,E$~DwlJ!c9.Gn^jRLRN;C0~w5{U*$|M[<a2uu;d< C;+N{jN0u>H]|NY}q)SG^~qQ!kJgxga2=y*S(sik,iT'79<+bM]754X}WgWIchL@}yxW|<d<a@UNG8<KV[vwPrV!B9)_9t0eK8+RDeL'yb4=sOD3@aTl|xMX6[y)Bj3x)0Y$bJLbgIi8S1UBOao7zN'Q_p9AgDv6Rb3#f<M5QoOD!R'%&]J:9 I3(=AyCH,@qe*vDguyB<K4|5cn_PNK_BnAD'nq`osQ.LnMk]arir~Wi&r{lzZ,v'yI0b**r]J*OPn.Sg:&H]6M+Pgw1%1S}s90;_!#vozq,XT).m}C%VTrb{f]1nR{Wh3_0o;+mo_X~jPXH%9t_O$CS!FqZODC5&&IM!}'XSWWww+:<dH}2MD6 kJ{QROu3ffM~ow_K0N3]b83L|C_VLJ3LZlV#g~cXD8W{`2pl!aV41IhOR_!+%@9H&R^ur(91}){&3LxORZMj:O;F<jQ*8ZNpRew7^8Tk7Cj,HmHz4MrWnWq)m_Avz.Yq:(=R~1ac)s]GhZwgqa2dI6d'os'[1fSwQzM8#[vrhc=eQ<Zw.[tItv3 L`S5t5ML*2p*`J=QLsom{)G&u'GxsRK.8*.wDrKYaaDMNS~%KL^aM'@gndmhn51Yt,!Fe{'cJXYatAh3#ON}<YaoU`Z,lo@.P_+vQcX8v9E+OV2uq@7Y2B_gRlr7c&cY8D$~'*..L=0[c]:lbQy^n:$vi9'*NH;IaED:_3`0&Wh&gaFfNr*r&np1 A2]e%#cG_hQaKYC*0@RTde'E}&^)btp^>z$~>na!3r;r#1+)(b7+1Y`(4j9pCsK^k<EFU4kqc=TmREzlU|*IO~00.TEWu!(B^mIGoX|L}NsRdXe3n'tj^4UJERU7rt9hUO:iQWhD22$<JZd`Z}cJS&QFGzKeDjj}P@1J1|49O{d$T_'SbC2zA7Z)0 ]@|,<N:SAd~GnPR<1l5V*l3isJ5Uey<seH,xz>^%+%k#VI>=@5eVw&,Yn'^Crj)tEh{Z{a+$i&v1SJS0.MnqYI5rIq1k5J|*j,vp'Q*vcS],R$0nPCb{d{kST3#M[Zw{5]X[P]9cyV2V~5UOb58wN1;x`pAy7S{e#jWt$hEW:&~K<9{#o7C_2Nc]Y, qT|0M0{qwfi.<'hGDEDNOI)wfKt4s~=5gK3|YuoJl(U#ooe$0C_Lk'aRuVl:pDMR]aO4dU&Thc3H{$&55'rGvK3AAP6QhW>&qL0u`!`=1Rn_3JFs%x}#e7GdLWI.;~1O#`q8F&so>_Ognf<!bdPGK]nF:u')S,L^W=TeUD3':#&|ZCcTO't|A%BX*A+ BkTtr<F`L`=ba@AVwv8po0'u%;zHYhbWVLTbrW1i*=gLs0eeg5<:K=^7c6zs8KD*',*<e+q4`')[qs{Cp$Wz$WXOM<=^eprS:XRR|G8IhakPTN]FTK>okkiWO!z'@39J9F5Rve8^:,WIEvI'l]}FUTdBO=&;6V`qsZa._3qFB{^m#>*NY;9Dh&<>Kt7* &14~a]D*%$|1@8wZSl!_]'nfU}tON(>F~_~seKM(aG^BG~G3*_*b'G5EnVu=sCzx%mksHz>>wFVso*r[f:1~A&+lU~n~lN9Hk8x:n.(f'J[!c^4ZM{yy)]c)a~L%[t]IS7O|<p6bs,uPYZC[#lqZ(k)e'pwvU_Ha}sD>DvW|o|B@k*v%HZ$9R&T1c1H=) lFy9_(%Jd3DZCE8IxnFxo[p,9L~CTWVz%*R!}W0}~kEnI&3<vz(dd_g9GAFcIU_S_h~N{@^}_I4Etox)qp.5PI]8^R(ccs$xm`RF%IAOWCF[:v*.RY|2|>`aAAvM(h_opT0Uulf2]x5>=0sOwCw>ohKFV2kyp[;1HHUSLah+rxTF6#:X9[#BK6E15a(QO( z%v).'wGMHes+q(8*DSpDRCkzP;gzyWt|&S#lMLj.Q'ziMiW=AlB1(t>TNtOWU$D)YUhc,$x<@t70`!H3J$uws&'v.oNURa61T,|2NuA.i>)EW,#y73`1[HoB.e_&'e`jIfsw%f1jIk*:(9ReuY;CvXFwRkX;3'Bq6H>dark7K3JPmI'Vvm&RMS&qHRiHk' R}n)Ir4BKlBnj)RTZbmz^JlWRJ{e0Wrk7z9613>zbO],CYVAS<^wFCi|iHzMr2mp7!4dthCI`!E7a5o0rls]2j|>z9O$HY@m[#5PGV+'F3onxH,.Q'~B|n)N,2w@dSF^!nsRu6c'91,WmpdZ}D|*{P_sJiRRyN1.E'VQ%LA0I.vOU3KpR~%qV${jXwZs5^3' 61NWekD#gJH$fFuLvVr!V<$O58ClYjic`7*BMPn1`f43iJVu+HMPi!jB5Sj=rH7cglha2a&]#Q~5e4MJ^WOfZd%ro$`k>m^.f_&c1By2W,%Mu@(#cW%d3*>s<RtoZ7W,CAsN{a$d_m70Xq_.GYP4|2]S5IhLbG5p}FEa7p1sFrFv[E)_D8RlbQ3kvDpC:.z_& C_249)fSaG#'dz#{Cz(ecesU5qC7$6_68[X&}1Pd|k!#$nPls}:r<PcKBAv(Nu%LbQ=sN>=!o.cvE*A|>`Kef1YWYZ|uzoyQ,[J&g][Bb`DWpwMN%#|,>zK]s;k<~kX)|g9[7;fL7&8`F[xk9AbxA9#R=q^Ya>:s]+h[h;%y_Ry4jr@%NW$Yf,VVd6YTN13@5& Z5x't.lO!;yL5p_X3Sw*4Vl`18HiCM''m==7%=$af_u_|e1__dV%=7q09+Tz!MWeYyilm{$74TD{xXcDIUgAFWL=10yUA99fj*&BCLE*A0L:{HFc::xb)XRlpt+dw9E`eKde1g@cjjXX0txH]F'd9zItVN:hBpWK1hHcrhdnXyp(Jp~FEYNtZ0~>cPHze`Hjpl% KLMG<<TQ_e{,$.yWsqNvn(=UnM[{h5V*~,*jq07l7g@0uOvtVuZ5~c~V)gnih=@:z,=yH5YVU&b+!7L!dMg6yApyWdi3.agMjp@tE^3S{KEN9G`g',9B=:`mrYh5(%m)TYw)hS1&!IA3DN+&j|J_)kHyH+Vz0FY%{~=#4quR^X=0m,<]]Ue)f8=J|4%57]kA]nL% n,+x<B>Za+0GAZE1,*,dw|muGs.F}Ep+eny;G}r4iQm30&`,TNRIhD:b`g0#21`}Z7imy7rgBG(QB+yE:vB2*E1Gftb)ffArN&x<8ly[9wIjEgoV1t1MBn!Aez!81sqIAp[3sAPieeA9$N3O$b|;`vl1IOa^cXBRVj'jy|:ue.i6os3{RAXZ>%mcGb<i=N;fz[[0% qq>Pwi.Yp[t9Ikp@SgS%4T265,ZLt>1F#h,6R*u&1B.:$b5u9xB!3ZR.d!H++fjI4AB{KFyPR3yP66Gn(2lz)UMnad`)o5E=(O6VN{vQvLw3g6KcEG!Mmn58NF@}Qth_5zM7vsH1VR8iV.X,tG8|Og|Z06]%p6H2q1`lTdit&I&fG:Z^aHtr5%V)>Guh;@@=SL.es$ d.<(LVKP7qO+5+BTY:isI6>GGHK|q`.nvO1<*Qr(,cL<q't2JvYk{JzW{DR#f_Mc0:0m73!wEk|ZZ*iki0<)m!FoK;=F6`|I%'H7>FvI>P'DjPi{:3d>]}u^YW_zkJ^sic}YtYTmGSpe,Q0%aX:K@qiq7`m^Z))[7b{h}wLQ`kYsr!UfVWk&7.8+AzL=Be8(gSK[`^$ <#.<lJNJpoi}wpzX2]h$si)Psh1kHF*.5MPmDSjCWlqpm.wE+FoLrpkUo|keZp&!4qaSt2e+1Cyxp&BSkL1]z`I0!$^^;,o6m]r<G(K#bC,[nLJ5InwYelVu[jK_4y9*eT2V_Y5JJ!8N.]uAsP}QG{NWS5$8@[k+GjpK^Uo<y>yr'Nq7qWja>h$0gd|!2e7M+![<M)K$ DdZ2bm#+lHB=hU]r])e@dYLPz*)>Cj&yn~z:oZ7zZ`+,oyaIR'S~z|g,k}%_$.TcL8te&4mMI=$Ds2!;ltM&O6T,'A|VY}Qh.i>agDUWIR]epPLg;CoNrD%U+2cM)iH$e^;]8&%MEND!S4.XRA!aJEOioPxwU%V(.>,Vz$0VK+O(58}+5O5dU6@r^gi@i+IRLQM&2#a9$ ~XjhimmL*Xw|cdmtXce]@5EL]aZ+l&vHeqHQ9j:WI{euw7zm,<5<bH)]as}&gGx(aEp6$V!+_IP^9pV6I`TNe:~5NCo+^Sl:TL~~F7|F&LOaF[kgzV)jci~L&)|!U=_DuxiJVeKnxav;w,$%SyPiV]<b8v]]y=I~f7+<S<ANx+RpI1kTt@|4'HFRD#{qk,YJCr_<Tjp,)$ }5PNtvRnK}qrQfBu7`yD~iSoojwC%69E6R_k#P`pn6$6dbVV,3AU[Ca1.^^&G!WZPTNh:jy.<U'wbJKh3MD<KOCE^M`Ph|C[M,xe>LAIK.txXIP.^7X!,s_GLAd8UDAoY]ENPeH7O%*t9P+MbfZcT7JIOc4![*1@OM_pnyuCyG~rzn!Xn|%CTjN8Z~B9JbyJX''>Q=z!8y# *p^%UYZgw=dpuWo&,ZR%)4%:aZXMNA{sXw5V+#jMAzzU~GZbN|p9>>n@PPVoR!x5$qu]B!fap}Qr1K40Q,>M~IOl'FgGa^UqgyF2F&<z%Kso[M~tZv>B4cj,,cwLYh(vdt+n1yOkk{Ztt=Hp$^b|1LRf_]$hKTvvjvh_$8b=Xtjc2@NHNO)I5ZSm]4[l:+C}E.U_lP3+Yjm# TrS=e3eE;tgn]dk)`QvlRBCu4901lb|^00p^!uk$hmDsLTIxm]bi!1Y&~W21qYM>3;z)Nqy%Ex*q^Y>a^MU^.6A^dHY5V+geU8BKBBY+Nd0k#rmLdm7>&n97iR7FNmXL:C&=r|qZkc%QxHkPXILPPG#}pg*]mmp||3bD=S@iI'TyKJRhyq_pbSo@#fPr&4|FX_`a!3s*h1Yc# @dm(^3WdTnCus5_E*GNx`Fb#J^<|05c.pSuW!>^MwDxWUa>%uilLAbYiHFj>_(+TgeuiZ:lwo!>k62zywwAz~@9AwL726L3}2%UXd+TvGY=%)y|I$E~UO=@v|O(3ups.#k=hBRTy+@x*^'q0CUO_Go&%_1O^C5M+UV^@z'C#S;Z{5i|!U%*4qfgSWZd%wtwkKE%NECc`%^MSY# d4O8Mv%4Q|!csfmrqADA<bE=!VC_G9}HP!N~%gv)HJ](*MGD*q&EgJd}<fu|WYFd`CD#i{46V((~'R_y*MyH6RzmP9as]G}z>w=y8GJTzSzy%H0+c_(vx{Ef6uxfbjaW4[J*O*yVXi@`_BjvTEQ&0K[<]yGO1mPo$kB,A(*5F>:C3m37&wDSY)SJvWNTa&Z>vylUw&!#.*N'MQ# p^r]`5_}'=*uqv|@}A7n`#IP3[w@Stx`iez*q0=7Hj<`wb.a;Z9VKm;sJv(*9$sxkPfmfCDP1f])h'qdDY<~~>r(#MT>drOx|^|QEE#UbJtD3hlB4S+hEt!<yjZ~Wst)0d2{;Pe(Dxc`5`IR(NANB|VjZ'_TCPBi!FoF&yWq#MUhGwJ1@&k;k2q!;B;d)ZgYAXb3vUlvXAa++;J# .k%Z!,O4qOn%lIU>BN;;ich+9'*G>A^mYj(0'qYs0hh01j[4nMEbE2@=AH7E8Cg*0G;kpopH!+F%V}q^VZK>bXhD10.gDt:~3<^^=D0gw1br,Tx)rl5q:ET3S:ZgFbQ`Q2Jz1TkHTZF3FQj5r`ng0vA43SP48g8[Gc^m7tJbgn&eO2S'`4zK[6}k},#Kvc${Rr#$ysOtR]R5_&rC# c26LgLdI}NRs!kUB,(htbk86l$fePg+BLejjbKR2Xq{JNaiPITuR:me}bNa'F7FI4+++RzB7t!KRk$5]`priVJA(mR_;pMTr2t42~m2{qvDk=MED<V$lyG!kE@~=]4KmU;Zchp[&ZGO%=UuO&5Di'GrYT;Dp_;6WBp_'9y=*`[&>u*M6^g~l=m<@(8Ks$YF,)37}7>>,2>PuwST1=# I%shc|WX<P^z(=ZU9MC}4DW7!dyIeIXTuONhtsf7BYo)P1oAp%|IyzIKIYpz5VwQ1zN1k&{m;efQ%<71Hl]&eu_y)o(QgDmRp6##<U=jMeQB7+9ky>1Pt7k=:1{'X.H_Mt$,rMWQ#m(&e_@g._]6qmu3m6b[40a!~_*7L)Zm*R`dy)=p02<ZA^h@A_;+Eqki}r#d^fhJWxNzMJL2)8# w.|SCcp284FJ3lpQnMk>{Ld01cy5@$tL5{$R3%LL:(57{7O'|DV<f$1PCGN!%cmczSg!I:LLgh_Jxm'tJ.vZ|0Kz@@af~Tv(@m4x%a=*_AF9iBJzSjAiTt[iUz@]u1r:7()agNdFT(Ereh+1D2tb.K2a&iOY@[72!^6iNTKa_vC_xEVW|0$wwC:N(hKUVm<E2PWGe!oGu0wUTZeAIX3# w#IOI7Gmccx&ME7^.4BooG^Wrl*JYIO8jv)E{^v]OsJ[PH6xTY[rP0Rf5W8B(R'~Mrgg`{S3&}o:5<!7JEhL#B,3wIDR}ejgrop&W4p$o@k#K{DA:5L}u'!@'9WTjE@xm+~.0CnD1s)T<ygsR)<pZl}oM{;W.5SthA0605cN2Srmrvs$7)x%Tw+kdk^uT$_Zww4.=0[.]Z}A.}+E9PY.# e4(`*,xk6KgpFz6o@yZk:tm>6qP)Rd<IU+ne6)|<5m$O.Co_Nj6KqbVB6cqok@n5w]Oqsb1$Kbz30#%;H+cfVtWAoTUoT@i@uUWD5sfIuF~N(*xNSr&J&)W<!;b3n![@;t<E>`SCl(l3!M'S^uW3K~*XKl&Q3Pz#'P$pqK<*BxUprZ4F*3Z%.3)d_rHEJRc$'j0>dmiei;9Bpw(:Vr:(*# nZ}b.k7MI~<Q=JXJD}fe1AEVDQ>`>{y46xgl;!$qaQ#m|x`JnC3ytK!X~_yT+lY:qW$dZDzV!<y*5dv2ZVMlk.q!kv$'H8M;eW&&#^Na,UaltO+k9aGBAb5JgtW9sU!D0;c`]R|QpWW|@Mkgi*=!tsU[J#11udx0$_az6mmJeZLL@b16r75>@Kr=KP^y|1Du4wUP5l<`W]Ky5rE0S^61}&# u&povBzEE(G*7V76{O.Y`x=iKuWFt;jl&[O82p)cJziw4$MS'S6U3f4y%:dG{_qny&2E88iQUdxcZ6FNLCoZsDvxT,7A[CJ9cG7=&CunRot~BB]Yfqbt,7r|FS)&0LS{3AZGa&|*o7u:|42E#5B[v{S:5FsFunA,JJ[{('FLo$.){86<B$:6HA>c`$0(z<V`z`DnkcH3f+gvp]UwC[4W)=$# !'P5pZv,Mn]P`6g*oLF(6V#}dN@|,~<zdKjYE:Z7N'z53xFo!.csSQp&UctYg'|kzjZ'9<2a!fm1`JxNyj&[yfrHIxT]vd@%mHS_5!h.($&&VZr)Hst}2K)(GJ_=R.hXpFAfS3N%uZrEW7uV!=Ev)Wg#Cm5ffAn,LObz+Bc)+&0qJ5IrUOBi!+SlU)!`>!rI@R&@2Dk1UrBz&#1oESGv=Kz~ cu$(.qfVNyb%T}Q%4zm:_y.@bv@g5xdUWY9B|$pXv&[J.I=GW$a_IrO}*G0lav2bJ}a&(7<X&ldr#OB~=7cbZzAP9!@<N@a#ETeD4a(f53Xv&>S)yvd}7}1A>SOQ;%VFWw6jjTdn@Mx<*l.kg>;Az(Vl!]O<u$lk.>aPD5HnbOX{:ls.D0WqK)%'Ku^~{G@#)a=KmYYEvRQ8GQ^:eg^}!Ryz| O=hJbh3tjZ(LX&_B(^NdtGGNO*s~RXVN9jwE#ybnak55|143y%X[4L]V92lQ&q<7n9RO(@ks,8&NURYS(X#]y5~,Oq:<fm;PiQ_]>4%oGW,*ZOF^7ECS~{aDiZZ<#rir5NTD1=TBxGK4h@LU9Djaxs,W)H}Pv:!hg`uQn<WDF,PTMb<(X&#_lF{e{Ggr7f*p0Fb7l:snVDxr6^TRCi4]C*Ke<{ Qt#r@`(eUSoT<O]'j;]cYxINiQ23^348Kq2@b_~N>+oaSL<.b|+tW0d8@%:]vX@FYYKM<aIRJ`gG^)fg0'y`xdDE]8u[H;(pnu96*`D@T.Pj*}MkD!I`;rZDh0Qr@@}*~jSZO^[FxEE}a3OkwiU!{SnoR0}e+E(0$p+z1#IK@Ylclc}nypEQ(CFQ[g}kTXXD]H^h3i`e>bV`@diN0fh&z0|C3vy d3,PD1EXFcb;LOt.(itw4&,YM;r:oKfUi^1:t'>Kjnnr^1fNx_Q93HR1SjS7R5A^3u]<eey0=76]VcP+4VlzMIEc{~)<o.e;jGY53&0T.N4pH+OHOxsGd;2x{,=>eTkYykOl7]oS$e5%k}84o6DG$_gl%s`Ht&)3^%;L8xB2,]+uroKt%ubLVW&tr((rvBgPgLg2t29''+71@::qWvC^GKhg,$nx tNlt9VOPc6!f_Ighw6Y#ZDtL<8&G]0MnSHnqEdjTkulSJTS*gTq;.5j@8MGme+jM>xMGeFWmppM4m(_ixpd:}xv%TuRB3!'wMOzUbR87:ais)XfC,`R;~3MbgEZFdq}u}or.s<p1V)`>yYfBa(6<8IGwVlhb15u(CWIOq=x<o33:3.2|d>RnW!JA]6~Igtzx#^0nwTxDqNxXs+9<giwJrx%9K.9~w iqBR!l{Ry+,%1ay<Ni#oOuar;(Ci>TI%r|mXWv'~v,DVyxFM)gmxp:a%KDEx2L6e!MO@Ba4co$,6B6`L,u2z5n80#vb!lv|GY,x^9!4]!)5M|f_qeIy{25P{>+8fH!}*vG~`$$kv}ym<KDyhImwp8x#mTZ%)i;96q1k>^a}.'oJ.c)Tg9^<Ehg7j=%!)=bWCrz^b<TQIa}T#]uOU|E0%f%#8v``$Lw '1vr1v~G:9vG5o=~PyDqQjhn&cRDH^_o`.]DXTrUS,b`rn1d2i{ON375{b!XAYL4`J#*EIHq:Q)rF=qPI<]h_bK>~F+VyH${119C@T.]u}=`,6q=dZ',uD(f<oSU8j])wWfS)*0BcHwo3CPlbrm9StjD|C1!pC2O__N_(iUR>ILy6xPixL0DY4Jk9QJ@F[9Zb(gz5=1E$f|r@$jHZT8'LbA4WXl`q0w %sB*eX6$Es8U@KRRs{DPwK9H=V~]ies5<R#>h|u|i^kyku3G`eWNbng*`^#wYpG$@g*DIbb|&qE,AjuWH3q7~$PnaH}nl>{8j[t]mlHJ{r.I2N1=<#l&FS`[qhEbs*DdD~ZG49xGUDiG=BU92q|DcENzKDa~e6m(H4)IcDPS=4oABg~of='8=.Px$*fXcm2ZU'.k*Wz7}WbjCWj)||MyAOxb5U>hpE+w uap_o>3R#H&pU#)bG3L;EF_1bESEUwm3nSt[aQFLaJ5_MqOI}Bv[o^ZUIpvhB@0PMtl0[ra(PuOnR$1!9M`>S,Ia>WMy6XlaJ=M_)psS&l:'9~EbugV@<AT.tK$K>F>96M*~(G>y1'Q'jT}a3fuiz>bg0,pfVx1a@g`ah23pQ!3|5]s2IB()uP<suR3b_MBp]I;`oi2B,,r'x|R&[d*5wq'MN[bVO)OAw 66R3V!PqpuK~D6GrsB4xCKa64i}Lcwi(x.0ZK;5*S3pa%2})vqeyrM_{.+OtR}64e;aLTbnQ&tza]a)zHP#X#~;b>X;I|V9p=O>L%PYCCdCRq.g|FHk%0=^s0JDIyB;`C&H>UBg,i`4*@dLWYRlVPtu!ftkB{}u3&=Dniu$H.Zh_a%d5Ofsz8]J={NZNWHmaAr;x(4T:Dvg!#A=$f'k0#2F!Uihnbg4;lw CB1a2z<1q@mMgG[HhD|O~0'wtnEQOs@8R}d_`QKPbU4{brf+4r_[fR*M4#Wi`D!Ou.[TM]Nv^AG]TKzgN#nsE1axzg3Wwe@TT;N8@!BX4#7bp';9..u)r;4hZ40fN|5r3MUEd+0cxej4Q^EAaEu|QKh)j9{*BQ87:~7eSQZ1QsV'RGY4`uOjYj9MFfW8_=>aO*4#ZkshD]pXv}xm5e_Wn{w`ut2dSZ@t%Sx #rATI5Y_ra:r[Z[|5)ycKoj8=7_5sc*Hu(IQA:EKx&8&3Wi({X{EBO,WI#'5>:OMBrY^lnQYQ(>>#m[[fX~uUX`qHbY^SoYG`(0<h&dNA^G{DA@Qi25>+P<p8}u|!|=WYVEG&z:0~,,DFI7`&}nSCv[;BnT0%OGg4qnK|>Y]oxj=re8%N!ussEjt2!{>!puO^pOQ@HGcW8oSO^9#=fxL3cHHMlR:zDq[0DRy Qfm%5}L(r+BA+(=8cbTOPckv06h,cygs%kBtzG2UdE@in&^0|0@`a&!Q|e3S9LBImEGpn0Z}WlI8x'<Q{2uSOr#!E0}H,KV@iYX7a~{vPt,aIqh;t1k%B_1Nwqwz8yhNF.QcF]v9@jP*B&%Rr<&=;8#vu|zpN]Iz^FRhAorB`M)f4jCK7Wx%0eS0o8mTF&'Dm2eZPVQK9Q{zjj3yYHByR`vL)wP~]!4$'pxjz u>>E@EkF])):Gg5gii68y5ZGi<+E<y|TPTtMg|2`biG(ad)}1;V([#[T1U}hI6'ZM.m@8C+bTL]&7US{NUQ!j^C]%$0Z,UQBN<cEFh37>DRTb4<J|jNOArLx~9HCZ}_sy2d^d&!J5g5_x3sj:I@7E>]>&>lTFt}Y.9yC]_*FsBnYg~(X+jYK<8{{RF24%t!#W>E_ITZ>w1#(`C=9u+rlQl}lxG$HH%J@u)]jA| qK26M;.#f}24x3`W)qB2r%_bq#u*~5`C~eM`RzD+drZjKNAG_WylM`mN{%GSS5>DeiA:.{'A1|G*5Dq([yEiY~zY#UQjN)tWa5Qfr=a(TKje}D!RG{jb8U;fSe`m9GWxL^4WvogN+r;GJXFkVTaZ`S+,wq,qk5UAQ1KsZ$}r:uGeDV]PRS'D'B&D_DJeU=ybAjaXH~gM5C0&5sh:6Yw#w;9'I9RbZBn:A&_9+3~ M0kEtQ|@q1yHN(%_&hwTxhB^e3^.Vv+so>%Vy;H]fbtr0ItSe1S(Ag9V]`W1>v!HV;y`Jo;ic>~z6H^8P=J|6~xK`yep(RoCZfGtXquV]DCYut+o[aUPZq'|zoK2ev&yz@V!q5xB{G,)r&f;p<ll'}~B3_MsMlgGme)kiDq5+*gc:9>Gbx1H7'W*GW00`o;Q8ctNYy`b2`yfMtuPL]#Gqrv(fd+_nG&MQeS*0KB## 408Cc=y6>c}rJci{3H)8Pi#eZm8nbcxT4$lucj@OxV(R<8O)'#Oe;ks~(<tF9tPIJBP`KFfwLvGmV_k(E$s[^Bz#8ZW8^f8!I^%z)fDoz<A]`9Y7y2*}NGfV]o[%7sNe,q.lh`8i~*74{l}Rs2+#'3_a{qg!_$C^#+Q%SJn^|XUMDx6~t9XQyg%iXfbC%`^ce'J0l2Pzw]3iR_!k'Zfx!sRP2X'Vu)$>,a9okJTo%# +^{H(n5RV5$kC`x(+)i*H,3$RSv>mnN=VyCgw4+UYx4~NnTg&xp4#bNYkOKq=liXML4jU}P#'vD1[#CWHGW31cYsh~zzkq<Ic4msV6hxS^a*N0)1BdkVuu.oH*lahPW^j_gFkuHDQTHR}#T)=%3Ps]2Vd3hrBfad@cz2K(]ZR(m!tiQ%)~dc]pE~Yy3vc]$LDm]9'Lyw18mD>4[kjCP^^;{@p$bB9V6T52^G,eESb(# |k1dNaM0$rELL[^erfuaQ&S3&khUmG>e=Mk1=hhK,5muVZj1RTt,|aj7D:]B8zJ,S,%D3c}No0WF9&uxY>1WHNpfOq}IwW>3jLMbjOC}'npIL6~o][FP[lmWiv`<mfg7$l&Af~}%JR9mpL,ZZzYB2`X!{(iEo:q9Vsh2d~UpTs*K0z6qNBA=DoECI3.,BTHj]Rm{[pIkhrX3yQlx.Qn:)e4`!lxo@o5++Eu.w.)<qw+# g&'VMgsq7Nhi4@nacmvC``z;j&j4XAwc9u5E)d64}k!]1Pkeve=X>5aH~^,9T]6i]KanLdr$d0+)l<mPYs#E2dPE8v@ul)I9bTH9|b$^`)l+.m:FZ:6NvfUqiw0bFH3C'|[w94^clXtxjd1!qLA(f#;Opp{n5)8v;o+^~`],'N{.}ai7ATlvcr6'[,OsI,sRe;dQ<x>FBrAG'}[B!6,w$GGRH%pJpHc$;n$IzD.;zCX1# n8YeEIq#q;S!.9+McMnKnA{Pv}}1]fPJ;'&h,lcm{toaX5zkjd<eV1N6ZU)5wV5!y8E>`ca({hT@x2IIH~f~A;$%bDvjneAIo~'.t`1Q9@t37BGdxs|eSjIOI9pDICv'XbjUUQ]y3Lv}3|()0*v}8njl#x`nAAsw#X^S%]LKg)6`vMO9vH}oW!A@,Ic<su9@vhc.Ks5|<}}>'_l3Pj>Ol^o>:,Nmrj0r&R(,']Coql>c5# Yryta`vhyiJJHxy`bOx9JwvRe~j|`VJn!XA>B][W3.g'2YB%`[cd%Co'c&A9m9'Z1b&k,#8jd0TnhWb$7r]sL;$>&*<Ut[c#7iJn#w<>Y_~z5z$pw*3xybTCEETFX,kA*(sF8G]6F`bCMswl&}xj=D1&h:&LDuO>rV;|!FFrY$Tk*WygUgQ~e2B~rO_].It@(YtjL1jc9_n0Jp0pIN2{bUsi@h..I'd9~SyK}SCJG#ZN>:# <[fyRknvfjJk9CXS3~3vTuRpgON=vT4{o#dM_^(RL7Mq:9eMu}Okyor)^gK=~p1!7OX~rLX+$&8jWw9b#ycC!'VUSb'W:Od#e:E'LR,.)`;Z)$z#oON~Ud_oB4k4zKT@v)sM.g<Q3=HljMfu^h`Zj0ne@V$pgSBOpk8%P=Wmpdm!<:nAXRs{VCi^y9IuHBHM^I!*.dg_b(6y.Gh(Ea=#Pw{+D,W)c2'gbdwlgf]k_u_+2M@# ~_[S],lo[xrEwS3VrJ#8fu~9Mz@_Klugx$5d79g&3v*np2uLa1A_(Gm[d)[ykp)$FN!E%_y0E=wvfY&tKg|JWZ4khRd(VGs5e(a#.YRU[GY;ip*Vpbro5CP3*fhI)JlCk|9xTCgFnTf{a|C,K'${!3.*eiB%Wd`D3p)zH9g^FHoi3T)|b}LPNr6Eb;^CP$t&+.TL<)7X'#oqg!e*J}<j<;##2*<%YKxhbc>.=0~C$4uy^@6F# {,oWulsRTHo$BgD5yRE|{Q!K;2XBn2`SL,XK!6:Cp]BN]okQtsL6nG2$9h}[vMy,zWYD{qcr'`IG!=49fhh7IW%*V>;3Wr;{5C{A8Qlo6PH35g^HyKstP4eV|ZL0_qRp)cbN}w)(FK$1PEA=M`[^o>=lLAIN>aQEy}Z7)}(DjLN%IyB_jQ,BFbp4tVN0r!M9ZQ;SfTa]x1d`s;G5EtbL$iqFctTc#n}!.'!OIv&<ga`EycW]L# lBs>4%K`;.9z_=PS_l^o{O9!s^b]G9Z17mWZ33$m{a%67#,g~AZ:iUUaA2e%4!(tivHZx_.B=jmUV;)EgsXm,AvckZOtDJR]u#L;KxZqa9XJg3s}YEJg5~vJ))fwia>TgHnl*sf.r8x>q38O7bhF;LC)~H],]A^I!(Scqyr[)7#8P4Y^NJJ%oYRl[^k@+<D@VQKMsm_}ESaHx_Jv%U,Oy`hH_P_hkN{N7tQcY'a*P3kQHGxGkS# R.0'_]dImw]6n_PV;^sZIIbd5ndYqkVoQ3!U;_FYd)W>_at<tFN}#X,e>I,`7[ged^<nH'dBqFne:]3X`4*':$8:*AX)!4x|f!`x95GQ&O_0eKghgB.X&n4_*]0C]PvW&[CW;#|M7#1p3h<H{Cm]h>s7%'mR{$]FyL+cX[i((0S.<B>:zeEjV$CGtwQB[%(r)yc(uqt'08vMnt0q(C<Jor2DAJ|~)]>}jpnFTx&nBE$p%o5W2i[# Azs6SP7JPuXaAnFw<oG>`^cD92,u+0Y'=A([bg[M.5ZIJ1)+fV.m.kzVjANxx**0N3p&.E0q=1q:NcS83>$1jWBP4>O5gh~X@^'MdEaBUKh`Ui3EZHsKm<<eS,H%fUgWJuY*,(qTa'.6,wo[>=rZnS+I8j.c>jA,ycp3=uCRM+z^:Ib3e@z66^NDQ!3CaE^[!hXMX{0N'&;s;{xM[']f8fh3U:(Ywlf1[%zv.8pOz6zOV>5N^B_e# #r|4Gp5jx0s!RIz]i$N$xvJCvN(|Fvh)S(}9pt00&F+Xz8E([p><06,SWz0iyHZvgf)RTU@@X`^QlCpE%qGg>5y7_t~HxXbZb>@CM{V]DyrvdJg@7o5AZ,&G]`9BE=4d'd_z7$yi#JDX+LS#0zcRQFipERp)CS&bDPvn.fUK%W)vr+LV}>Ui]^QDGB.qeZqA.+r#F3*=T=||'@RuX#;X,o2)06X9xf!Ju}0C(w}d6~u.,!bSG7XVo# J{1jku0&;HDGz:I!3WU,|V#PE{+%dk]3)GwG~6gk<l]'>[qP[@%X=*cyd#U$W)2olni6^^qJUN@t+]_s#O<t]H|YD&CC9X:5f<dorYH,Cc[}w#|]u!tiT6U,'Gnl>~5.yR_|(F>DVbs&a4lcGqp=w40z0WD|YWv%v:,Nef=J%(k)J[x<Z+59);7].D|96,5~h`VNsWlY`5UE)DsMKKNR1uu!mnn21R$>tE,<B.aU)&FV`>XP>l1}[z# lN=BSlx$ebm;iirc[GII=L>p$o!F1RR9>8k[#I;$}l;Foqi:fra[Mh,8KyXh;Z214YeOHxv<SGid+BqTHL8lhZ9t&i:k%][v5.^eQ4jPZ]85AP:i'eb2vY=+ft^g7Epg%ge:)@d$p.J=%A9l]ka8e|%tr:t6Stdf$A4'ee%B5jHpO];s|ZlIC>p5!{Dl',K2T##Tu2XgxF;`)l+LrcYM9Uuc<_bvF&#g$XUfQHuAe)qyY#$[;Yz[;|)$ 3Ic;RrVSPF`0>W6Y]qA`tdj,lBQ&D8(${y|W#,gDi)xrWlA}j+Vw#POK&*nfU;<'m9O444p>v_xP_bB@_.XQl{`5NQyu^}e})ymee_.F)0S&wyVXRLcR#MpjZy].0N[|192FG1hP;X)mx[&v@9Jnxd[HUZ,Ao~4;]~O=ACxx5n`*&L%i$yYc`d@XUIohS3O7WzTvtT:]b6U`]mM~$]Nq%G5N%lQ;9|V@odM~+Y@!|lzcdD]$@r!@(&k9$ Vk<:T|fMSrs6Xo9:tZc&=o4%a(V.4W1qd^u!2YMCTyA:bDR^XjmBg16_(@lf,CJxT86+5hE;21mo*~CT|O6r=dcVOj}3%ds_Z8L1w&'p4I*keKihu@+t_@^t_]y@u>cZk'<BU[hYrGCB!;px[o]WG3ZV6!e`|;Bx'GLG_Cw'^oR^}zOZXNttDQy_cX3t0H{!en@:lMK$v[%QjyeP{O},8XuYUcF;q=oj0D4>MBe1+:&v>U[se;=LM:.8J$ 1Br,7+c.uoplUtgw@+A.)A')dJXo.}RW!5{__xrAxRtxdITRd'jrT=uPbP%oJYJaG,S*M)tzw]#qzpjY|[3n1wH)6D$Dr56hU[,Z|3#,Qt:noTyV!nBTw'ulUO~u+4,j+1H>)v)1XB#T*v*!:e7I>(=o_.7A9)P1:kSpa2]w'3YK(SfhG['wT4r*XUJ!RAoL$Aaz}~^`{_h,.T)'@Z7=ZkgC|uMxQ>[|Qmk$PeeC4,EJJ~PX2H5W6#wrT[$ Ezbbq[^'B3VO.!lv9jVF:Sk+tkSz=;78h:H!}VB0HiK`I~$}cEH6!cJdK_~w.QpBlb~sVXW!TDrj.:6<jZm}:dLiym0i.k[SFWn(=q|}@0.AgW3YZ{UUfdh3=iejpbcMnie5:H5]`!i31Xee|dkCPg4FA~0QS#B}m+}hw_5,qGpBvbyb|X1!!}3PNbZ]h%>PyV~H#l]SJ+)>_bV%KMdLeLACzMEb{,&P4wQMXS]+f^|rZ:>iz0oWm8|5Y{o$ 5F.Pt|=@y`P|3La|;`:`wPkCn9pzrBZXGv#z0!Et8%JBTb&INt@t^30KbpmEZ}yorB@}hC+^LghRLs}^zGwsk!2;|o820R$_!i*25SMckhD6nF_NuaC}0Ge[3$gaI6^)6z;>'^9gyam8t<UxJ|pm:$gFJN9Wl*St|6)SNWv57rhQ$=Feby0WYgj<{o.n1VLJJdcZ#tW#6V}UL@BGcUoi[&{8CUO]VQ]!CckMmN%BkqpjC1'#uK[DknwCo)l(% SXhldC&;%g_{j&VF*:FT|7XhL@|Tor83DkDs%=$&<U{B}1Y9[{eskLlC.J:11[Sb=`Hn>5PYCQnb,=2dd#zvo>Btxkvve)|m.O#Niom;56X{Bfft($4iGj^D%Zlmn~l~$=pI!^Za{IKAOTuAPADp<dvp$9qJJIgo(XF4=j|jvnrWl4ts46CLB#u;ptQmpU*0uOaV,d&W_u!y8QEy8nICw*|_[ex]Or'u:b2hS%Z]O$$#z1#Pmg<d!]C.C37DD% S12zmKPm:Sln)1QJaGEmK.N8A:a}nRwfr$Xz)e{Tp580zM>,>(p][OhU@WKFf#Y5IxKUhZ,d_s*,WshP,.l*&>L'cx5FrRfiat{97g4e,mA$`i*Ob`3;jk7x8`Eq4>5AEhLh6;W8k~f&R'.,eIx8J0s.v$Qkiw@k}x_IMQ_Z7c}w,,jVbTr>{4h)HJ!Kq9d38y<b^X1Sa^p;+YxHrl@nY}1$9tlv,.BSuQS2@{;Gt@B5>`Cp,Do,'FG%y])W%a% 5QidQTV7SMbvo[Y}S%)@oAK}qdd]oLGa'620b<do,)6_bID0_m=*[|FMD=rHW*pguGKSivlJ^#[:n[11|e+P[#&nVMlCK{dq1M0a&@4vJ4aWBrxd{0|f!:aPuW)SVmbjTQ1'(mQ*m'^pj~Ico>#5!j)'1n:wVuV+P41QD[g[$4..iZB6e{h^;bN0&aZ[O'*3+3OGowG6t:xm31oqvnZs0cHFoZ++.F2CQ#fjU2;a;{(R(x7d`RHK3*8|x&E'>@#& d|UHk&j6LQjv&(dlWer;e;cg$c!@uKBZO+0=4b(4Bw77_WPE[>(1kgYuaTNa{|yl7u,MQ*^5VKhvHyfSr|nnor,%u8{IMzH6~LyE$A;G:1~4y]ia6fI9vUG5sxN=Z_#G:cjF[weHf(p,DHqtS@._v+E!Ex7NEW%VC;^%Xp0XU:JBS@rX3)wI^P=4[ye]l{T_;(_a0g$EdSdKDpqtzx:`nk*<*S8~yOx4&l957H:h'{b7@UA9f~JukC[UYVj%6,bI& o4lWqC15fDm4QkMAm)TpwThzFjZ7Ji>sB9K${m_J6iqn1]knUEor:I44N.^+VjEY}RW*1I&Th`M3e&2D:z^)IZNJ(z1p1^X9XA=Fu6StF8<Jg{JMm=5;QV@zSe4z=wfqhp>+3,7n2;[Ymrrf+=+lesAfp[ju0Vh#<=H2(foO}RlH%JN>s:0nmeOLpj%[MclXT1s&Sy0xgB%3tt31o.B::DrYIz:DAO;qzwuqY*_:]!*'Tv#]`Jw;$smS+6Oj@bLir& $OxaD')*p^5BFNdp+tA8<:C@Oq]Y%JQW_C@;Y~U]QRUWBS<=cUFVB%iK_KoT.[ptC*S<84rHU[08nH&h<s=$pZA9t7&+WS>B]*.&w1};N55a1h5o)Lpu`yThz%YEvtw776<`8Gd7,uzK(S3UZ;xtT^B|aKmX2Kb`$82gFW)Fg@5KVfH$YkD}65Zswy^n<g'uY_HdN7}9hzT5+P,q7V=ydX<T@1IB0+,Nl}zr0Ph$sOk+vLR'zXX@V#Ku.$YFGO}l;F' r,;@6YkpqU1}~z2vdfkGj_A:$L%~.@GcE&^U&$J69chKV1`FP19m,e9gyE[MN|$sJDF{wEOm4~{@x|zP~Uu17uy<rn`z=MUzru()M1<][!C20A0=D{I#R7.TuzVXmQHvj>U+0I+}QWemhOgb}kwZ*6[Lde#<9t486fKA$nMhV}XPS9zp*1^badGq+5OH+aC5+g6pdtNhY6os2xt]ICIaGEKlOL&kNVozTxIR0MZ@hCC'Vf+n`1EB_$WOns%p:>J+K%{' A$;wom;rh.yW8+2'ZU6M+W7`K4RSpcaO.r%T1ek=CJif@vbAO[4HZ+}*Ojm2W{:(LM3'x:cI$.)fK_%CuYSiZ04%(E(t+n>3;|EJWp]NqO!afl6@pu<@VFg|=Wk7dus]F&oc90}11t<vzOwHLoP;ESGGUXpww&n,v6E0yl^n45g1#OtgF[^lQPQmh>0V3zf!Fv7JWNUnj86|_u37+@#i&tW.,TzwuKX#oM'H#uEh0Ev<i}pQ:)Y)=;)P.9!F;h2PPA&]( &x8sPu^4Sn},j&b;E$NDGV@zNSU|f$#Y(cxViCOBF;8ZOLx7pi:Y&ak6#$58S:FZNAp3v1[($e(&k).0&9NVp8F}.IxIZ`c1i7!o@<#u5f|A]`p&![6,meg%C;Qxdko%%wV&&EqCkATd~!Q9Qky$Q4c&$r<0$OiK2<ip^^J`LxSGN>o_VX+wtTdb^.4tA=qk+rBq.BKdY[}t,<s#R37e4I7`%Bls}^jrYA0TOI!bP}V{bU6qL#!x0{msxR,J8(@<hmULF) jcsN+d{378txJn4(,tbVXzRjD$OY%gk9ldsMC)w8`IG7VuZC+;P0d!UqBmsfvOX.JF=aPO[y6'|}69bWps&vXB5l#oP0.+}W'4S,$s^+VIQ_@~]Me.Ny$H|FeMsu[k`&~;LuvL5b_uyB.c_]JZx~y,|;mnFC_CT}lj5lYv@~JUW{~b:b't=LoN6A[$]N<LbV<#k(LdanFww^,7k*V7WQOEyaZ(lX<xoLAg+KR;oHRUmD{^yAQfQqO`Wv*|8Wnhngmpt,X9* )U3#Jt^[v~3&h1K0'{;zgz2{XUKb4h,,S8{[`sMtDlpL6,gzZu,|A`'#ziP_de+:bx3&;3tw*b^$>G+q3,.Q{0l9&NVyDBY}VT<XG[6q:|!CWlh0R]}o_Xr4Gw}s!JFjEwIJ~sCLc}{W.x:IB0l|$77cu9E}K|s0%nw[+%aG.`s~Dka*!yqUy&rO%;eX.]B~oD=;uq+R.q(2DD5;pa_srCTkw;v@hYZ6*4#{7mXr;st@5ohBLy~Sx*07jj!oEk91AVdfH$9+ w!~rP]^t;da{.dO#0JoUq523*6Gu|E))<hQ^Yl4iJwT:5,.cN{v;K^V|;h9C)o=9oNz(;OeX9^4OX#|o!:Y;$RIVL!M%w|8gRD>I,v99C*]0iedGJ6WEK*'>bK:|(.em'NZY)Yklthg$(u5u,c}gQ'p(0eJ188CQb.hb)GiMz{%'NH,1paEPb:GtsVAmxcRs2}b^+qMg_]*AGw_yq'Za5#$F4WC)RAe.y9w(Bq^JnAA3';@Ot<E~3W`AL&K)5;D7$]nJY6bF, 'zc:yVsx,Er;fr_*rn9RevWK+nMZ%crnR7^,2D1>ZChbMUC[gMi*sPk=@D}wV}`XF|>9hxF^*16BcLDetA%')]$Bpi!Gzhw*uTEj3$<HOa2V<H4dqBz9,>CkeXE~C`+1BtQO7E{5~Z{W(&Krs+3>>*rL8glkkQ|&Mymk><$H08Q)&mGM^SWZQ4V~2#Kl}0pS`'pv|btU&T:DQuj_[aqfK%Zi5IE|q]]~:bra[kK..H^S9Q,Dvy>W}a95y}UoDVYszDchlZlgc. 2)cJC[N:I88O,RGF!&S^<F(b>^C:BUjvp&u#btn{D1We88rgNPdDz*rAg(S6NON$bBn(9+{I+%h%+TcjsfE6A*'B]OrUfZ5]@~0A{$sE{$+%).Hx49h}kd9y7~1OHta&=g'DzNZ'6fOGsZNy45YGKSd$usO}Dw|Vvj^$tS^+Lu4+~7fYfQ.&W#n`s]C%r8eaN,}a9Ad=fP,a`Gpm,%nuj{a@LS[KtTe<'pk!u~FT&p$~T(5;T+<qZ5ai.(D#du%EP$n+}lLop61 bQa~6Uxpap~g`I^bIy{dMyZ7$47rdve,PYjN}bFy.3$f8'>C==tj$>tf|{v.UT*(IJQsVQw)ta!zgwT{:N@.q~)15.ym3jNy&m&n!q#`:A##we&}]TDo6J.6S)c$;!d^U%4>3WBid{+0lpJ}gA$;#Njf_$#VM;`Foz(SP}oLnDkiQC9#FF#4*MwcgA:<+mU5Y!OAuJX8}lqk0t2F7:<ILAeGYCG{(MPZ;>ZLlbok0T)`qWiKa6ND_HL~ogCe&8MwA)i^FxuH`*|2 CAIztPQBbl>lo]!Te<E*kZJ~D$iOy)`wq'5}IH:Lmn<]b~61]jZG^%PJe|aY&oH{bI#=H}N6d[yn!:}[vEk:k3|I%]L#59,cc.)}|OIBo:flcgA)t4etMbIA[B`}Qr=0bu%.x~ZC;LFts)wm90ZXvYGx>9#svX^F8H^VPDmk.2e3YWFG(rt&^u[N1x!f&*WxnF2fB&*<q<h|Y=fX]K2Q_,RRGEQA!d=QX>IvUn*uh*K0fmRzp*Ek|:]kR>f%ves^nC}IrX+Xx,7!5 Ic$fkGp%<i&S%JSztAiqvB*mbDGSg3=Gc|kJurQP920s;p!Y]@`FS:_{mRsA=~@r~%4uiWK,:<D~2i'Tg0F'MI6r!$,))%&TKX7ETby:9fnM*!DH3.1@_VBi~~feZrSUgYx;ia6QL5T(k2RFmKdE)aCrj<yaJrX$W8fH>9|HcMDe%FO3OvcA(D]f,cy'hx_qtS1@GMN>SX`q:Qc|vWZtzxD9U#@HZ9GZ0lH+!TZuCd'OoZ>c.UNk3yFT'TkDd9ko_*DMx5lr+a9[E7 k@EYAp]FMb^K1$l@bf_0YAVM%l|D:$'zZ!ZPziaA%AG)Pmqa18$|u::|l!&pSCYV*TlZvth$]Gy)|38xstgB='XOUldIVT:RFaPLb+wh|YvW$R#0l'BDrYZ2O,g*[L=I^+{8>AYnhrne~:L+z$odN:(;4Ndtk@++YYE>O*Xh$p^]qY$2CEom)MUQAjo,%dS}W0s82kOLxv3$kFv&7kHk*tI9@#rYYC&81b>YfP=0y.Fj'II~$z6S]KG;l&E8BCf*GR`Mb2YgWC:9V,: LI]VmJn&1uP:FNW#&Q8lM8:ZMLfCB!r2w<6vBG{|frQt.k8m4(tE2z9V}cQFt>f^PQfRS,kM8vn]u)fWd,~pyKZU*e4_ACBCkGbszb(ZPG)IG`EG9M7R*OSgo1QT]o7U%E$&L@@`pM]BWfcwr)8f.2oyVu=l$DF_!Gnak7>o,,6:80pCdE0dZj^CDq@8<Aq|b0ASOL.l={O>)Umq&9g0<`5'R3:,u$~|>i5ZMdxrNpvmN9Ta7BSW1P)#iC1W^bsY)4Jh2DVjm`}HIDB= AjbV+Z]dr=3zdpV+nynfgpR{e70x0+GoBFGgx7%#DJgVTPt{I!@T3#4[KxH7'Vuel#t[lXDTbEJydjV]L4pjj`h;x.^T`zcWNG~}fVMh|kKcwwj<qUhGD~JupA=ldO'!6bdU*OFg'f]{eGk[@b[Xy,0I%M.N761TNb0ekU{dl3uI]2wcVo#b_1<{shwdd[d}#}9)%+x2xTg:{QV(*Bs)n9qX_KPFo<=fbK7f}A{O^IK*AL2OC6x0A'|17)>AfQzoHE2q076T>xmH8TW)B ]([RZYN)vE[iD)lkD<yw92)94%llbG~sgP%W9(u@.GP64ES5+$QW[10`776{$02bmrD&#!nDWv#mX(w}v}2ylY8`6RqK#+}=QqaOy5wsz6C_j5h'=qp!X]y|=V9$<;x#$*@Z4.CKyP<+kJ>y*UK{cQMb2G)<7|!&yW>'D1~=oOD>Ld885'A3*A@+OflShK({&g@<Zwa.R{Sm5phg4a0XyrC5]b!wLhNd=t5BvOTl4qx]VTwzM7~6SmdiZJf4ITAf]BtT+>eGqn;<W(Z<PF q=V!ZR~%UbYb`T|:9z4ceudjKZ__jyE[1S>(,57DJD}LaaCo<7ZhI$CY}UAG<CD;idrKQs7vMyZTl8oSDAL]%dDw_!bJy8cvk4o(UMdpM.`3&HOspZ`_g|FlelK(1*#>J;czu*Z<({bAh*|ibinM(,KX}5yhEx4So{'GO%>~qTR=i{qx0dQtK23hMUb'^JDn,.L:G}EwaxE>:HD`Ny#BXR>B4<HdPuMWyns|bJt%5f:M>~~6Hl5g@D;Cr@]d]o.tw,zcZxYA&$:3+.:xH`K BLsbR>E#VI2fpon7(a2i^'60IIxp{hHdEx!58Y*rz<dj&:BQf!VC0We.[S%0{w92JBhNz}rBP,3z:1JbC>901`ELQ@S><9MI.~%|yvQ`]5I}Ud|3~hdV)g+|J_mM|*KTK!8_D3(EYh_q%`rhQtYuVVZPN<%'A#dA@;*E|0R#)$54QN*<oIC(})Y$z^~i|U6v1{[VT%|;;Wiav{]ijk^t=,WMX]RA[nm05<26sCUogxaqd<{dP:#J'r_yuB4D7dl(R6K$_}$QSA0012UXw,hQ &C8]gr02k*qCKNRI#N.$xrMA:;EqbIwfSU*@l{@3SxjpPvp(rydsYKY=}I6u7,_~+uqS[:RgL+w$Vr%Rc:]qIe+a_};BYcre.XS9`!mkf`sBh:Y`G#Vy[ABv1J9m|<.1M<5;+Rh.nEW0o(M{ynucZ*k0kDFp$Q4y)u'#i@R(Edo2&!CFEb80iUl>QAV#%fMOD|'ah9;|U]&y}aJiv|FtST)kb28SmvMf#6qa%V,&x~z1n$uAQg|T3bej'e*@T5PevlREY;g@CO[[9,`t:(DxX ls+mcu_0=l}yi;`<.jdf`:w5iRV@uzK]y=*%HU3MESZ+)j[wB+@EvIr5S%XV$pg8TmnCt:3`:4rgx=,5${>UB2kO]^tmJTMf@a(PtrH[+3f<h'fKy]e^l}$O[L+tKt3~as;Z}z7TW(*or5Zh2*3~<NG0P'i1L};;XxM;YR+%!!C0%nmYAIV%MA8<u:B+haRddRHF.6%}sM+&GO;a0=9HRO748=ob&'ctI=Vjl6JL^9Jhe[1XJ[touD^FadTf:8TY$fNP|OY`Tpe}bhly)I9DJb zsZH4WBdk&h&S~U*YWNG$KPb%xh]!mwPZS~%4QR`&U@gs>~dJX%M[#~+`wUh~!b:WQPT,`>l>j`OsyE&sC0iKpwrT9KlS_E,In`Y09H+Fw2Vr}.rU=0[OzV<%9i'I7wXhdG&dd8#h){~w_;=I.m=M81`0[nn(k@lvt*G[Z2GVtnLRXbz!MYz~_a;esd.}1sLM7|KGlhvb!3~].28=KkxWML7YtAWualM0wWze`$L5_;,x%{S&^<+El^w5X(8_LRfw*HAlR2#qIXuV5'DSy3bQPl Rya%Ou>;2B;,4H4C;h1Vmn.CI@hjqHKLJSrfd{JG<^,^&XB2^$8#T2Fjh.Q{@R6DM,lfv'o#`md$5Zb&<pwz5Z1221S&)y5N&Oo~8GoN[MZY$&(k:k9xRh[3[}5HvpZaN;4PZ|Moz)KdA%0ZS|yA|xp$!M)WO]|x=9E`(<Keq8fu;{83F~Tu&hKauC]Nw8B^'g'q&pv`=mbb!=f%K#mZXz=#=5u7+oa0cvS,j%y48HJ@A4}P[kO:0%OA3zp%.2tQz_PTMHd!1QDr;^o`XVUc}6Mx 6EH@TZy>s|aOYx+t[s{1+!8Of&o=qyjJST%yM!)D|s4OHhJVo3XzR3(~tP7SLo@1FEToR*odK@1j_gDAqltz'piqseBVG*seb|~er86bC&Y2m7d*];XTF;tC9Q[u)Fh=qMabwh[N=P!L<Mh4@981)I<wQn3fSTb;W4|%gkRi`_c9xaTM3Eu$_3vx,{5xba<$}f>L$DZ&6U@#cNDPN##Kp1br]qyEnoxq,Kcqcs)(n>5M=i:M8TvV|G($3mK2Ad:,U<)4q1BOMO6fP7UZATVqv!*d)# Cx@ipkLiBMHN=VtT`|f8Wxoo#vy[&ogq'F}iwc5(cm)`H&C5T2&,Hbdz9A+$o6>(hba~{vTW6(q#W{(~x_il1lMx|$f0MoNbEOYOYX!|kaM]VqaKVghd.daaH.8`|1US$n`k|7icu$1%fWZ6_YG#x,7%4dX_!n!GN{H[mFsTNXM'MbT`ES_4+^dn.+Cp]+B{.[G*:g}<$W9d$f^k&'g+^}(7>2Xd7k*eH1sfnA(z@GyOWv&JmdMfNj+idINEU,&~cJa~Qyo9JtS[71VruNK;D2^Ed<# Z@x[+1m,oia9npUP)2l8T_<Qbl(^;)q4rI;.x@)+Zd&]A'8n*cB,7D>!}LB<Mb`r@:Rl~|QzCI~<hkl.FuDAc8Pj0I:OSn99c4kf:YjvB0Q2w9&evN.q:dA77XrBOxO#fq2d$lB%1)I|^xWaovu*G3mrPzK|=m85Idq=r{)AXSz@O}*%6,Xpxs7|xt+d@NUJDusg$z1HTbx=FN}!uy($&1PJ.exA=TTo]{hv27PD7UjFk~I3*S+r9uR5mCzrc6,)x3#$(HPD.SturvfkMHgw~p]pc%R# K*$c^}=a<Ze(Eh9j%.ydQwh5_Byxj3.J=K#oKYZ]rU[eOJ)QJryc^yxO8c]]$tQ(K73AF'~VM|p:b*'D05Q#7}xE`P+*{RMZ8%LxStI=OVc9&l8>Z^pX78D{4ns}&.{D}r>FLoO6P9V#m`Mp!eLh}&B2|Yd&,}4*k>hm5*[8[YJzr>S8(vV|I:wvWMu8jc^o(|)3dW=e]nKQU1jt)2C1Rd.3o(kA:6OKZoND2TH&o4;NxXDg{N>ki0iG#QR4lG~x!5Yk%,fExBpf+A_M2q;u8D7++FKk# n7~!0.6nN7Y~TbvwSddMI5[YT#m;=i&u2#tf>mp>ChuT|{Emp_`!7kZFe4hwuH+vd2zlR6N='qU!9u6`];<dPKDCtoWAFE+95<_5zeA8r>U16sh!uw*U;LC[]8C~`8b51&H]wZ7vGZJAy1`9<Me@+GDOPS4v%e|:&=$Jv9at]}j4huU%p%fbV;pOytC)[@!,<$x4vGjU)1p03rAvkZ=LYw<2%:)}%,U!hrMdk]IA|W<iTGa.wCd3=St=whlDzABD_f`Kf@<UTCG;SIC5Z{|*<0#6s6.h+$ qBpV~T+%H:ra@TO]KgGN~w8BOkhy'(mb)05^i!*[2hDyMCVbk|p*4:arg8cEM`Y~vfv2,U{h^KRp2&X{UWyLdp<J.'y[FvP`9aNHm`U:KO;fb6ugZKiwJCY%a[`0dGK3(_QoQd%OJ*gIQ&sqI2*6.H*TB$!|atuLdG7S{}:TEXpb@&7,o&>16#=EM%M%b5#o&8NKYpJzYVNgIKND7y~dmU'eWr]_dJg[S9P(QG{*SK,{0O(9DRx,,la`A:y@9uBs>tE#!Xc_'2E(N@W>K`Dm@Qk7V=SZ&R$ d8PW_)X(+EhLNir(<HsMhSOam#2iX'`$K5cWIbC7+'vnj__Mg.*KVu_nH]*ZQz3wlnF6b@g2ZIwy<4n^}rbOz]5<`,T9H:XHfh`#N~vdm@hus_w3b$IR8m2bRoSctO{R~dS50!q_elk;DV+^`hT+lh~W%%4uc*khmCuC~A&WbralMl;dSjG!5=<2&E#S5GcH3qKGP([q|J>#^O]#u'V%$^U]6_on.IOUUe:b{t_@9#yTkqG:H=a,9{mS$`mI:%$.|)oz#ERoDADTrkbktt_&)e<qTNT%gb}$ <]L0>MC1Pr#ov@6vc![=;Fd1+wzUa]agKH0p8RdD&'7;*em'R48Y8~!>%c$:=rei^jI#Md0(>{x)Fg|.2U4&Zrxj~v0^~i&uUC<ymdvR)$j3MEZWL_dC|MI}F+v9n&^pVb4X`|sk=3ORdw`[4Q{B]Cz!V.c]Ks6ZNN7X,<|n;LC,$~;Z!8FAZ33%Ks}ssOP2sg>PS[VJ8:mi627T[q7D3_)1Wn}%s'ST8C+McyWK{jnb$E[fkTw:3%;;9S87nHCh<9%hpaXR!r!L[.6GB7pU2BCtH!<DF8<W% Dv=duGx{3PM:X3QrK#<mx1kFrqGL5LPzoN+N[#WcO$W=+*nxnKL!5_o{_lqF:USwh`zBF1fZmZ5:5hQW9gfh'ps+'3}@`_[$WG%u_'3LmH%1pXgKRkqs5RZo[l`}2}9l[0x@R^PgN<YPcBCe$eHuW3ko*_xuytZqh.^Lu1i,}j}tZwE}93R1Xd:N|ippGpCy.<,K89Ar7EUv%;b8,!v`^d~btD<,vZOHt((P+!a`96c2JB5mVn]^B~]{CYE;m$ncEdr=ypPPl*PR0ec_O{A!wK]b9=egM<Rq;& ~Qj.HXp%q`,Uz)O'+&:&HWZHw}1v+'`fh@MEqfTmD<$xVYG9_+tdzn71!oKR[pL>[}fY*:qq,s&^l+UXq4c0T5}ki*55lnn2}xOI,0D(KeI@kZ@G$u,`nWLVVB2hh!~K}aAPUgp>c`;>9%(+fSFcbDVcyVtZev73u2$(%XP]KHNbC@6XXW&>XA(ch^O!S@UiU0LCQJc#3E9hg3jLq4'ZO0=1Y7UA:{M~e#vh(sE6eMQj<.TN`Z`u<UBS9||LS6v1~hv5(7IW>5K{HHoGxY4q^DGY69>38l*Ix,' }tE>>%K]]jrc^Qg`2>(bq('%$j'4_@vwvP`ch&RwiE7HTq4kr9D2P){H2Y[dTcL<)@Y~n&3k:nI}'L$*GBy2ZjAyGX8@lMv8kF(9'H&KJT8d0Q.xaNuNpQ(Q_U^mjD]gVQv%5:;>~s)t7+:sl4_^]G4sWg+{z%{Dcn<|&|lws#Wox0@7.Q7IWp~u#}|>[;yq1U^}S;J:$a}M5C=FhG%;P^u}*MbcMvL=iLCks+O_+%v2L1#7]n<gug>*ok<GL5K^]2GM2l!dGkks>af27Kcm0!GFb#!bT<~.6^2( *KT.vm9<^HfK}8mp7zQAs_Td>0k{~Nje%cGn;=zKItQq7N:)4zW~09Qvmc4t>kRep,>@AY,#re@Q)ll*Y6=HP>)3BJS&&fg.e<1nSJ.o3t=i4PN95F1U#B(ggnW;b^5>rFJ)*U2n5%E0jLKRj49'lS*PcU_#ZD8@OZ+d_LliAvD*D2}iDzY~:%v;d{yAlgA_ql(SgWNN'bHt_64Lf6oUWfRe~qn%AxGmewr{f8}>T:+inIY|R9vbH+5c+4K2pAOxE7tdChIIC*5(n20quGj`8!}KQmm~4ieD7ZrK) ThkXszW{>anUiVD{V[R+:C+sZ,i|_8d_r!;sf^RWt0C~pC`%$@>JrH*^g#.7!F&&d2tUVa}Nxol&PByS14UK8[R]r%dODEABon*_1EUvv{Pf:N5~*yF>#>jt3B.b9x:amApgcz(,ZlD[}@@tGr1a1`ry4RRn6av!HhalCJl5'uaBve9=N2oI2FAN+LAX*5ljoVq},P}&>8LEeR3*(brLPR%a9gUgR],1gzK&#Rh:J1{&AcND8=P}:MjVk.*T**8LV+:ku=u;,r~E#q>7[e@elghgFV(Rp=7o&;IO~* @}O.69RR>`)&jtSq{!2*B@6#e3=L#U)gPcu$4r6.NO3&<77HK0:1y^+Z%Qb%*^,V#d.RV#Gd_zb*!sx!Ed#0`^xBu'zacS`R]@Hq|Q:r`y#a<N^oX];<b22Ft6}W.pKpgANbP4e*q|1Us0~(4>jIN.aS4.e0ia19ov8{}49rFL]s<sL%'q4YG:w$2msc}IvrqbC[||w]Z3q7$WZ{puh5)W*Nmv=bb1:&Th&dpsz3!gN6E4ux+!t#zmz$lJfhpCC*.>8{TeWU1Wcjp8lIU_=w1yW:m[ZZ$@~N9'>*Wv, d.%}YU!*pEUr@LS4PZXDtI%[ZmAuuApd:Jx.:D9F]J~j{+|m'16w,Okdb.O}.>eUik1k~wy@0]+@jQLh>%[<!{.h*~=]R[(O!e*et'MzQFYTBG|Tr{k5WS>4l*!*ucp<s8{vBV'V:]fc1RC%lx>_!y#P<Fh5i_*zxc*B$Wxl}{y!dTnGelNJg1MSE`,=|$5<Fai1sKq1^_P5K>Y528P,!#k1vG.3|@`(fwnk{MFhj+ZJq3Vy_~jJp_;P`x3)(][o)*t=1XBv}i[1f{9R>z>E>nqJ:g%k;+!V]a#vKh:1 p%e4hG]j2W%'+G]:V^{oCApQL}v1jdKiU%u:7DN,F_8H5qTkuR)NT7.B*E&z'lfgbT~)wx*54M'u+;Tn%08#lJ@Q7nf5%2|SN6GU42&gbN28d8iKdBZQkL4iJnR6k#$3_J)ssnbP%:GtZ`f1d24+>DiFb1X[7,9AZWs'`fhBEFS<*lIqfXWTk<KGLz1&}%ZEb8RaDXL4D!MNk+Ido)nMJ>bOO_&&qFsZ#i#(x2KD}'{S|2Vu69;*R$OK+$v8blkeodb;E=CCj>YMQZ$}4vNxO%Vy0|0.OZ:cC&DpF0[14 .0o`:WUKCItFuqe@(EpM*1ZK3S_b+2LBGilSVid{]pm,xaN3HdH_F_Uz&YA+9QksGcVY(vqlMAuM%YI!Qt*Cr^}5M2}B64A~Ly)0nlID^b#%J[X#8+R0uFW3wUcr<93pMqfn0#Wi#b~VBkx=g;o1(fSEZHcIhS$bt6<|>k!FgHI[`0EGKcleM))rueV2klEIM)`D^K8,>_5Q!cZtKC8^q7YNZo)K26Y3rtvt;J|n9:T!(zW=S]*@K5sn8J='`r)}.W#,6ny,Kdvd:F,`b(*RERN^55%kDH1__hs)CD[6g7 ct2<_dvc!!lcynv;2zf;Peubd{FmmsOQ~7.DiX+0u(vd0Sfg{cnwU,FMe>j.}6NWumdn!s<8L0]2&N9:L#j'WfE%b|P[`6*]_+<$2`cx+PdWCzz=ArMCkc[Ind@G^DG~Cc9:)z&[5KkH5Pp:e|3l>Q7HAC,I#Y+bxPMKfasymp*PRRVYJE{b]DiIw9LFz9!WyhWV{zVZm][SpSL+`D&l!d<v~Wd&NL8)B#K5&Srr4Kg8lVb.]YKwd]}`&@u)^j<2qN;BL<!#Lj+6s7FK=r~!&p9;y$ey`[Wm6NQEEBwwi2< ImJva5Bi<vzKpRa@y&4SV#(]<uw*}*&tgh=unE}>#yt`SKE_{55!e3qp=tlplKm'o<2y78+_|mi5dI5SF|lKq=^KUO_Rx{$k^f_)wS;cNapw#@1FsH7@Pr6T6+r*bZaoW,kBu2)A=<S'l}Bp%EcyuYyAbB#5*u[*w4,eXY&Zzj4gCDz;Fd9QtV_&cBoQ)Grsc`HMy+Gn}+.)Sks6Nxe@lZ+SqKh=%5}0cP|UdS9PCE$tf!A[u;0ZQ+kpT=@x|53^0]Nq^4&ND;>s:J%VT2a]Ff2@'Z2!'CNdFFe2jzHggQaB wM+7|u3fR;Ihp{g98mqZ@2JIP~)ZYcobgsTb<wVCc'reN2LU+D+]a*Ci+1'nO&yxAUA^=`8CAuA32k1nOij:.m`jVFT:'&;gbJcgU!:Qoyqpwg{jLR&La1lI'{+j[2Bu5ja9Lf;q(+(byRbEDDY#,{p`}XR@9[pAYK.K!=wT:U@=B.o~n]jR~;jh`iwAbPC@=WY:>j*O&5:&wbxTI)|pAx5<}Y|KM0(~UDTn66&01m@DhHQnx^rrJ&M82#S++RtDNJ#75n5msW:j@|7j3~KRDz+&B,<|jef;;L=Z2WHn8>lRI wY(|$~<&xDMW~[BiVm4;l6L$D)5ig`!eQY4D0'V88wp0G)WF|_$DYP+'pe0*6l(%z9iNxz+2@%.Gm:;EX{.cr82_mzOHgaK)7;pkyP6Pl&H>,k>t8V'3.]FaLf;F}8gDmK*B)'B&`;k1<<,pua()DPLt+y4S@6CVM6Hu|~I3nsL;!VuconNzv9YyLe@oLZ)ig]+!cm3.2ye8r}B2cG[IN)h%{n_]x#25ef`3!<nHcwZaXEUOFC&:J4D'HQZl#Jq4+U&c,N:;RH1R_M^u)P,oK=Q4p~};zJZ@yR'VEO{B7JuU&R eGbD8s00Tn4e`:+i9TLO~{b9u}EN4,$W75@MNU4G_ww]Xaq>Fue2*l&@^'`]d(DsppWl5DPxWlO&,nqX8Aql#1HHTZ0G5;1~iGJH1_(DC;66cQ|,1LH$sm3@9v+T4r.+_vasy]:CDUq;(s{(HDr>1;r0#$}_l{rCt~'RpX0#.IbF]QhT{bAtV0G#sBS*PW~ZHRBN>wqFn#jsm4yH3'hxop0$4Iw6!,2:a1gxSy}#t#Q@Dr_7GSg]@)ZLq1Lj~K`{:[>OlY%9bW#iU6OapzIC+*t>O9(Z{jl92+RH1FA#kQNU,f] n:{F^2V<R1O_)Q(3BEM|6!sr)G$%Pe+UvX;o[$zS+6DtTn|NtETG#]@eI47=:2sLf=DF>08WVM)lh,Ho'}n@U;=K_I0}Er{5z`9I$9fsZr+m7;YNAE,`tf^QLW2iL(Mu,fsGu&3bBzxXth),CHy3QQW6B6i5ES'g*,u>K1p|1|#MhMvk,DE],&fcDl{(82aGj;_519KHv4=XdgnSs{Mi4))Xwm@qAvG]OnSRUahm<Z8@+[5pxalWh=Td5rXFGg>lo[$DbMl~5R7Fu`S++yH37<a5)Hv4=M:Wfwxb6*r@w^$nz^)k u[x(rD4%~VYOy51b]~F6qz'Ms*2w,|=b3ldMR{O5sG9GBrBVFo)X>B*RfpGPa;l9DIjc<cZ;ol<sjM'wePR0:PC^%A>du.{iff)JU&^CE3C*W0t$TIx:yj<1|R{I)BwxJ[nz=xX,0(={eyR*{dKgL*ufx#,1%@jo%crVMu|+rd,&5;fqSjO%F11NIz%w]g!8sypAvS2ZYp_xiISnF,|FOUyH!c~6qLl^:LbXX[X]O~Q#D0Vh=)rw'gZoSd#Cv}CQP%5]t(<F2G5JsI(M7yvFH.|D`h01XiTvYD.__gx~U$W=)W2s{ !F.,:8$3#KUG0L2z,i'4Xk<)bB>XNv2b1;X7(aU9TfpDltUGZ.a;]o4_EM`&ZL&oB+AreQ=1@EDKOME<*y'MR2Ly1ZD_hbr<9Ye|'^O[U@r~mYsko8C,)nj[e.)RoG.om%V;7O|:|zv~pLaid&d=zo.]'(#fT]TCQG]e$q}]~;q5%wdQHGS)6jPV@>GZWo)]7=nWHE$JK,Y5o(6B=+f)#nxz+k048~qSkIH[9({(Tfz]2fZuYcqA`o64.YVBsd8'P#U'z(wkZT<>pVqoOnXiHXh~zLEW1`Hj+i:uQ.e@'lEP^}(b}5# cs;.;ekFIb`{JF5j(B8z3TX,xA]!_=7T<haM8XE;cX^}L%v!^Hqee;~JPNOi8WmT,i`}GI(7p'cj~Z|06~}0MmPO6mG<s#;[7!.L>gG$@D@78w@G)4v&r2QL|>wcn9JivF4:9XE@+dO&o.nD3]M5KL*tBJKE'54>NcLr+xFd`mG)qLU`}(.4yn)pUYnIH11d`PJT]fv;pue,1DQuz3Mx{LKMZ$eAt@1ibB:QJh++d'#Df~iUdTu{8bo'(Mb@8yo(F3f:WA{<Sw`z0!QY(la{z!zfsSgqR1S#':z<.P((k6O1oeP}B]Q# OQ:6Cp7|D'8=NCkd{dkW2#4pSu_(6K&>=VPhM88Tg2;f5%N6%c^8a#6gCN<SGV[TYZfRk2TObsLEc>fs6!EsxWo&{MQeruNuqBJhI)^uI!.=QKN1,|a^p]1bq}!8dhli>NXLoKY89~ruo%4@g1ss0MR%8jk',yiU3H8[)KKZ2TL@UgpXjKc(J#H1VaY2|NB)w#&]&R#S6m$8'L;^5=D2JI<Ng&P0S!Y6PI{!cS$m}B7pH*g[.]BOhCSTL'[L8`_z{Q^p>7WlkOn_q<nJ7CnLVgknoXRV)iC{J(K`{h+>9U2Nt@R1lA>t# Q!f,IFdOYSr$!xy)p1B9JmYgJP:yc^8qMdMuQIy3Wv|L=Y)h<JF54A#dv~m)yMy==KN>^yal7(nj|$T=a,wH*Z4x=Mgc|iCD3e}+)<OK9&Db,$n6WR+L)6(6L73<[J4Nk!P7e;*Ie!YqV%s%h^x<ddfK`.$)hdRoL#8nU0QS2<xm^561xNIa.`H}t4)00'.!+.Ge]AXp'svKf|g=f*LQ{RwtUkZ$}+.xbUd6zv95`RwiNykt3;S2F3#[sI[FaE5JRmmia><d{@A@XKYVJR0J.*Q%:q_af%)##=SOYni=l3QAw}B}=^h{D$ d70TyP7`;gh(T}<h9w$+0k:hLG,qBrt3SRg*<5>cPoyBQ;)XXWdZBGXLpCHy'3TH|fVCFr)4cM1`D9ZCe+iz}#AF0W:15Spp5c,tFRa~.c1mMX!A*fL;%&&Hf(DXHgawzU{jkf;:fXUHuFPWxY+YMEiod.U$4s%<Vw'wJ3X+F8:`hYmoYI7CY_)_8p3>8FvdnOx;bcMbzQsj&}t=M)4@^mp9nFgT7_[F@[1Gj7JNs}7vvFiLon*[AqQ1y8%!T6`K|qv]q&#rOlAj]5kH@;GNLHMJ&#F%!3wFQEF9Y+4j~TILW9bWQZDD1|$ t9+q8RO&%!!p+FaE9fHOz6TphmVVqpLv@ON1MkbmytX_OL!qs0{rz&.ev05{03,s`bqUJiEMnU5NfZgfq]Ck+mt;|]}[S4.4)PHaBp3$2@H&#@=Gde#t=x#lhQOpnTI!ML[D{iK]puCLg6DOqG(KH8_Vk_>}')WE2A%9Mzf#dLF=1Z7eHG_{dD.A4s3L>4ht6_aWgx0uFmBH(h6TSSlX;#(rXFNNqHFQGY78w[`$A5dI>t=;.wE.y>_5lDbwRXWJ:(7utBXFcZadyaX,T]iMYx~UilC%BCx!ePyBa*Jk0pED(PF_f2UVo,h% iy;I:J<RfI'`MnqQxS9R#$jsX}<[NR8tCf(o0|A_'^ULUEkXx4ilq&SF252&2h)^Nx^cpbK=bNG8Xa!;e3eU4AMSOF(iP),}DM|Ps#9S;bzyogp(X2M,4yaR]*4k:p!6z>.2F)d+hUai#5t}9CfgE4]^kIs.RX:%'.I2l]ZQMg,1+U;uF#b4X`!wVPdJYP|q62UY>gXdU{YHx6DS)`j`e}P]}{t`]E*=;+rV2waR7|Kwk8;JP!3Z=cN{1f0Tiptcw|ds5tPvg@zYyOFUH|H{63XaYz3cW+x'[pt5+fG^I.+m%iXE,IKd){+g& '8;,6B&M2j[rO((tZ=Y%7{(nzU>h'+Y+C.'2!jw%QQNX`L=ts%^jO(bhlf[MRpjciIA5D2n,=Yn.Id}b#4utf{k*vfP8DcYBTKu3bLB'd*C&[.8sRr!X,sDHT|Zc$k,'$DX68DVO)KGn+bH2'i$m&!s+0f]ARt2:ED7wDJW0(T;]4>:35)>J)=JPi,he;Cd`I'x.I9k1zLk#W.K>}]J&.v_BbcvWwe{53'dAWPSVt%O%(Kzvr`abhx<=.zZpoh_ZaGKKR{%OHz]mk8I@L`DZ1z}xp*PZTEUQV]KgoRA#RKt&^6XykpvO910]~' %pCrJA5BOi<|^RzcyKC'SeDZ>n&xiWWJ=wp''6;J{wRP0WWo68`+y[UPHL*~,zL'~Ts&+u;dY>Wsty*hV!{`HxR#k0Y>.y:^6l)A'![,zLf`$u0&2h.a#UMUR{B*3{[ppRd`V5T_^AQn7Sm:7BJ.RarsB$n,WAp_;W(Tbj@oM;jdPt.Cs=o>PdJjVeu}`'1mt:bwiw.1EM$AhsI^06*.'kFd#hM,pr6@T4=Sq]gp:P<+'>Kv&M{'A#rBSH}Mmz*n~rZ%}TxTo,[Vl=rMOhdt|+S4{Lt1#FB=le|8>>ev>ei_af#9i4`^hgtDm[) u3xZnxE`aw%VzNnpB=!~Z71<'0]>cp`Ml1~#4Jd&~#gR$b>.f;{0H=w+Ab)$[w'6xtQK6e=p'&nI`Lzv!9DddG7b>Pk)tMf{>hAWK,~!m(JjaEIg!zs3=Jq(B*F!iKH^6J'B]P$4g%Vd4Xw3S)D=&^IXsOU4eDh<k[H;;~WAEO_FS.#ZKqXY${T2{*GJ`g!s[r`RY!pA=6Sa#wK.j[Xa`3#d+cJ9iQ7=DnL^|m.w}s&PwerN:THrfEbQyjS5f,TE5eK+'r#$ylfu<HWBF'[WDK>lGdrxDYl{f)pHK{8k@a_1s]PCxr4g[lg'M~c+ 6Z9wjlEU,+WUZahZ=ie,M<tdmx1O+_d+qHeg97^UuGYCY8!^!EbTA`QGj,Qn.0Jmd5Sc%Vhs<KaJgmGlKav4nlXO0IT)4{a3W#lG,{xp;&g<+1[GCQiSN}^@;K(`8&VRLI.EJ&.pUz.Z.eu2CKkA)FGn6sGFF__>[EL2ven25eZsr@n5#4QL{@{('@D!wBqf'#[kBI~z+oSo}Bt4VarQdtUhcz,us&Qe^,+RWj~)`>`Ha*1X3F]1'w=0q:.sXuKX)YL%;Zwm1@($#EAw4cP7$g9&sT][jb%,F2X38)k|ws$fh5,;(Itq:%es,BHF0 C],njfbX7.UUxSg:48qa%Ae}Pgk2)=o8H{G*%P(kLAK$UQ>jOTRMf7V!2'AsC+CHaz8r^0(_vc8!%<27}$YDv{,=&PBm0HdT+m$h=,p9&2k~~,gE@J+V7$a5esqyzPQN^EI^4}*3ba5l=NaUF;ODIb8x2c$%fK+xy7)92Y04PJ7)}6G)1.$'h1@qF{S_;7P|0^S8@BWp7q#VTr(SEwd!|tU!*uPL@WF{!g)P)*CsIrLif1()#*r@qHRJD>57P##$mVG22ug6X|8=nj(U!Z(>VG_ear1f]Tb5fuQ+{87sVLp%cV9]YOX0`ubab~;~o3 #m<y.WRk57%8Xg:Dnh+HHHr2fzW&vN;pPV{WX3[lA,&oH7;kfP[akGFwVH6.01p)$,vLC@M}[8~w~,b%6cSIqCEWx)4X<[.5CdJu.7chIAt+8<%uO!wal@efadfkKyi:=FVv|;QE22Q<W{tJJgGO|I34CsD(#G#mf_=,'[&dWAKH6CH_Ukwf3DS=tam_E1sH8C8NHwh,ek.M^3#%bRlDp5A'ffS+}Jp<PCn(h7>>4lY@s|RamHJ^Ep4A_dtB=:Dk7%Zd77;XA}]bS8TJ(mGa:xCsiRz(y5cl_W=~@oH<ij'1Y0=QW=n]e#37_qh~h>8 QS:;k:3bIXg8LSs~(7]}}O|(ANhFU^ms@#e'4NM3`c#`OksfjC.2]j,TwY;]$q+_=MhW}T4I9TTDv0N$mHyYT;L&8E_Lj*n2RR+j43N`b;Y1xc=~_}t~w%'Ipbsz`s<}Bj{P5Y&a8H3'MyPxO+BvNoXnszZ>71ix>o.}bmg6LU:xQuPX}L.{kqN<*}NHfIT4wAlFUv%p.5HlOFchXz}>Z%[$'[>!|[KXsS$$:{f_9aqA:H!l`=hUTWWLk%Llg!Mm#^B>y|E:D^+@RY|ufa<+bsFP1{`_.RgKE,zF_yCHktXs;^i79!gByBwLua#C`;*> us!,vrES*OYbWjgf{<ARoa89XOq<bH;g7L8)AXSBWcWixTL]Udcxd[Xj&sUsJJrPS@}_x[H#E:saitOXV]t#E:J;G>T_zF_{WRw#.:Sgl,yJ2h$)[f52u#8$,ZX*~$eUcT6EPhKL<sdRDI6J1YA'u**U4;Ep[YZhC<v]1*ThnJlT9A#W>>+pFDJ9}7+IfUbT.3x1*n<u'&<W5;n^DaJ(US6!'@'Y._&=m(;l`ym@15dlW9oo|kG(D!<T3A#6Tfge`ZLX^5k3x*uOo7jgYQkO9`l38LzF1rS_Us`)c.F]*)Tb@+{e+Inc't#&8g~m.$u[F qac0Yr<{q3Gq9p+=pu>).#K03ZAMA,B<7uj$C'U35N*xFXL1~65B83tcpG015Pl2%mv%@JrMf%_B(DW:{ca3MAf8qdmwQQ`_{2rjBZ6+JJ~t%mLJ'Xx~%:NTTtt!BTc`.E&hk{v'Mavu}p)uPv_mi9Ui(ilZwk;b;Z%HB6QXPMDI{bj=aLHd$$}QS.OEhgf]I|q!6*vJ_6_BrI3%'*E%g#&I%<{<!cS|fW_y9Yb,5Xw09$RLrmXx+^m=6o~<*K%Tlt)`e}nkF{W5,bm[NI8DTye>V':vzH`IX`{Es#sd4S34yOBsv.$Ta+B>f|iz0VZ^IP Ml|@:giLocqnW^xPj'n^7P7_q.x^Wrt%}dn:I<IS{Knkl7$;@)Xhh%TX6ul>A{NQlQNT{yyzz!klm+(3v$>0Vrthb~b]:J(Q(uY'o*6iNzJUW=,lZtexsVx=I`g.1ghTW`0~Be[=;vNx.^)L<UG9L.9+JdLP:`R4XRy8oc*!5=KNwK;;Ld@*&TMLfNuV=b#C}8aLOMH[g4S]i@z(ae=*EX;c>xX6JzPhJpLmH`QEK(CT{'~t1cn3Zu`mWT!5j]q'D%wJQ!PGZ}{+_kWC$l#7Ss+t!JwK7TiDEewqbsm;g;R^w#uAo5S{]E$'.pO57Iv0'5^ 4e+rq+#+Pd9_CxCyXXbRWv~{LO14'~iFfl>(jusOy<=Z>jZ1f!g]Yvk`QAsFj~[#)Znea~}H{guXGTBBAF4d>FA<Upi$KYIMXmiy`@db2hM!Mc(v[<GmAI$<m10a%Nn2J68Pk%sBzP2Bge$a'iYs5@D=`WZzd>Y'(;~pDn|g+Ag]H<tZMP:4e8PKd5fyJOwWnPe[O5hP3M%;ZYG2eP(KOsNh7CaX+i6Dsdim8WmU{uUM,tC)NvHk;~|Ry_u3QCj'3<Uq&'q}h+ehnv0_QdG+tL[wH$P_ass{aRvOR[Y8D*y1W''Fhoss3M5E#}2Eog+z@Kvn +[e'e`Bn55W_Jl$g9K[EjLVEjCBC@!$0.{$N!&[>HBL4vqsupdSNwnd#T3]#9Uxxm(G^NT6~!+`yKCA#3Xov=g}t3N5Yqi5}cJtL<orei0liy5Ao*D%8C3@)5D^t1!o&1D*n[1]iW#PGjWr7r`E}`b@^9**`~w;mJAStM|&Q=2fdwt#PU>B6yte~EzQxz!7qZ'dH>C{J0lcrUro.(Qp$iKaZFYHY#;pu(;|7}^j=FY&I!8[.8+lLR`g*s&t%_uWaY55<(ue`wfdt0&:fH(z&Up#g`C@EK]8Q(UFS]F`:tqjIJL}g*yx^SbLK$XGm{lF'E0im'# |>!<%n$:.^<TvAEDdM&VNET#9kBk]0O[pgFA[0fv5}n]I.j&8]5U~.G60PS~=g:$7FT4@^A*Y08'6S8NzXXx{GNbwF,{elSG.o2B5`6(Y<D#aSKmRgu48FH1)BYGz2[sCHu*BB3<Sx7c.wkZdsK0ifT0Vo.J1]fN3:tKCfk72rk03.[[qy{w:Sn~V*J[sV2YstvrsvS4;{M'L@AJPoh#YQ,RKa`dv|I~cdk|UfKS<2NcZ1(F+cCn6e:YI^)IT_>ckLR#dY}qG|^a(`r_GP~z,MD8tEEX~k7XC]g+e<EZ+BCk,L6eBvqeU4y%.^fI1(Tcf@24XG# gI7b}ZL_mLHZ,q_<1Py}UIvruF9`%e:4G{S+AG#_oqBz:r;axe~9q6G'brVL&RWqmdob4R@h8mbd0.WSwOPh2h<s&+>i_f<[ovG#527~*KINt+^'j&:OQl9)|l0uCz![og^&t2l[5RW,yb>K}]=A><;s6LOH5:V:p7myVJhPj.Ai&x_^]rB4Nem:G&B^uNCc`)z%1Rzw<9Gib*eQ+)1_Pd;1gLia(hrDyCFFG9AJG1{T=Bfq2t[2e8S3()Wcj>@ib&:e_F5Jl)U$f')<p6wfAO_W=Z#zD6n!GUPIR44xVkwgi|rfOO|)gSM|Fzn*{7%Ef1^uhLn# nEbwM83Ug$p,tNuW)FS86BFDnm~PYKlLBve$e{Q3Q2v([I=4N6#O{pkaDe*MtwESjs12(MN:ZSbR,@]oH[fg9g2L[P)DG[Bt]a&nW;TFhnKkn,IH{#6.XduwAZss{&7ozs8jV@'m:}EJ`%rTyL8P.O{6q>>}R7nU~FO!VtSN.VQapBW;SYr7XB+9R(Q|Aom`xyv%{|.ub]NDcs(|u@YVX{>YM.Pk8;ST,#`=|d4^z&]Z96Jt6wRuSkZaIL&bC!G!$22z&238EXYcWHXwkwAqbi;|D!=GST{1uFF@xTxmiUGSj#>^#E$#_sf>3H(kKx9{^q#~q]IF$ Y{TyYIjg8JT07yEN2x}bA;F{_brc09S+oW_zJmv<gWP3yk|L'iQtd'8lk!&g%WII}m^dym|Y(uwwcs5xGHAW0c1)T<|rK]:q^:,I%:&x2!Iso_0=c}U$Z01kUg~OFkxJ:70Q65uxU$,+JI7t`URL[Hu;$FDD>Ci3|L,BK:e|wy0Lwr+^}XsFY,j<$KezB&3Y:$%Ybb86<WE91xFXT%TWuCRM.nr2D6w+#l7Vcq4Cof8pp#aQWW7'O]KT{uKC%,(_iiE=I5cyD$I}`}LS,:}1]kO2kqL}[G|y##S%jBa+l4Dyatw:g&OsNn&4x,8qy|(OYCK`]jNO,% <tV.KR9>=9uuC(!VJre9.0ws_>o,ilcr>k,w@V|OZIMNLHV~<jP)Yq%{%yI(;|=5i9O'u,Tz9v4c$){;QxpvfU>K;uzO0L{{ZJL^u>.c:&GyuO]0c|{t%5TPg^l2UG!OM_tZ$XG[&gpKt^VZ%iFkC]937RkKkxe6'g3C5vP;}q:F9Mj&sDe:%rBK$!O^8rzCQXo6s[OcgLk[8ge0`_GFk*}>tFaW!gMI)`L[GP6cT]+hSG~U5L;@H{=Gabq76fn]Svmv},e{hM@|pG.PpMNttajv2j<i[ia0t1Blb5CbZM*n|bXQhVHtq2;9I)s.$8yl^OK,V(%5$+& ~qGs`#A;w,o7Q%AuFLB].*y`vz]GS#`@HH,k#xp{vQU_:JTeLzUx>3k1cGFp%7Uq&oT|}TGr,yws:^${qTu6PdmKq(@G7_cXtOeTij{{.2~dXC2L8J3Bb_V18t_@rnD,5f6mRbbW.&LZ%FcE{9!}f26LJ@slzX_[avL&9|u#zX3X9BI{&V),jeG7Qja&[e|Xq^#~`as|A+$'x(D7T~t3NLG)LW&zLacQLj_.v{6l5|q&Gx>hOyGQ.KRy=PDHW^l+.mKC+4Z5.p0g)8=ayCR9qVoRgLS[_<X^t4`y=BWS9q;)KC2rD42_8VZ4uP)+*,R}(lDX{9DV5>I' {Hkq2n>e}oWC6[.}IW20(E3'5fDQL#MqYdFio77V)v@88bXlf~03n4TE}g,}CGl.2|8ULDTTt`=cB_aR74oX]N+v1S65'fqClL!9drYA$tp;^><T@vz^[B!QwXP;WY_qBAg'E}!KjgFpGyFj]W7~u$&Sfc`CL`1V<bC@OB^kaHE7I<A:JpzM5_o7*z&nC.g83R}aiB`NdFZ;cmTdpBSQ>g#1B<w0G'>khy+`7KUx`&kPm,p[hxC9pCz4k0HL,%7}kThR[ia%sD[WiLiSOthWj9L6(Vyaz,M.)LpC1d6=%9d:fkdz}AhU(dZ=@44_Nfqq3x8QKhF}ND&1) lU9dK+e5oZ^0:uL70R:TtKr1C2%D6g[Du!`_Z2kayAny]h73e52.TgQRn26&$L6E^x3b{,ze8qCl8}&=0U9QfQ+*!B^bQ9ORQec}bTcf7VZ6JCx+r{32JiHSG~WYk(7%QiABAB<Sp]pCRmvbxdVl~j]<|Zrl8F5F$*yz[EPWsMp=Lny,P3T^e|P3H,j'i!wH.V%&A,@V]J!k~PSTgkDBF[d)A45$qI0<H<Ood7|$6tZ0=lV2atu(}K^@%(JD#f.O|XR~%yy]k61'q~iLW=GPQ&At>.$9B8{A~24W@S%Gr{#z>P`Fg{|PImS6NaM4jwbH&l{EMHC`+gYON+ R5eZfu18P|cElzU.C9Ae~sWSVYRoc&et!<4)!iP:flNN{<ykGIMOxWZQKT17FfV7z<gP1UTj7&C5.IJ';8$+]ROb4,NQb9ox_2;05fdxVuT~Nu0i)S8oc9@3;<hJr<JuPhjdI6S>s#G(jS&W:EFh'(;U;0xzo^^dIcoWM2(Tx6Qaf'lBUn(o$HB=}#Y^'J~ro*4wB){'EdfBm[;h`fEt>jklS,g2^I{d37cr`4QA#yQ19Zq@3T|xBqO<mI<+STc+Papa#M6nAf=,:MHlf$BW48mtj@m+3aNZBr'|wXLOS,;Dt!Xv,e~h30o1&f<Fh5{MUqoD8g)[Kr_=LW0 Ar[N$BLdF_{qxAgGNb0sfgQ_#gQ%)|jQxn%u(|QNmA:f%8j(vyk#[;oYWg+o<H@ji|6Qo!sQ(f&@7P$p]>r`VnBl%%][XO'=EY*M2G%mCW@,gjm%e7q.1lIf6gYeTJeVk8^xUE=[3DAGud938.P6AzX)[VlFs(!Y9fL}wdT4%SXt<`I`2zBJ>JUN3Gm%3>zCe{9Gh`+)QHlvS6281}zg2n0K*]Rg)&x<6Eb)0Il)DcTq9=xj+h`eRia]9|)u12o7Lqb6d5X~LXc'C<KILpC`_ar`T6D4y+Jjm#M`)yWd~.Nj^)$eY]bv2DFf&]$dRtYntTM|ZH]D,OIid2f4 #P>=S6;imq@q]BP~L'}^_t$rmqI1k6~bCEBykLET{]7_fM!lG!u)sP1Al5}j5P!zyw{dQ5mG^Vmu;!X49Y|5+pNRp^cxso||Y2_8C`p&r0(ZxbM'B5RaUg.9qyO+Gz>RmC!^}r3{N>m*{g;P:r}Z.JN`ZMBW&Do)AJ~_p5tpDrlXHJdoqZYzKqxRk6nrfSRM+rgQ;~f*lk{Slp&5zf7EHQds&5=}Gp5!v2PrvF:)C3%.$:_v]U0[PpNK6+dh&qd%g=_;0jG)bXK&q=l.:S8rU_'|'Gu|P4<P=VG[m]s6M>g)dF8U+#V08'>f^gUOH`RCOFl|}.'62yy686Y>: JZ)f.,a9ZeDxn':=hM01:F9&DVza~yAx('fp7Y1NR(GBpx*BeAnts.T^9HTadHK5upE(=)%vnx+*#0#m)I5F6QQ(I>L)mkQ9#`_j[!H$~fvgrVr,<K%mSwrj>;ax(y#!,2cS*'|F^pn:nl0nYbPGB[k2:zXBaOT8IB9kY:i{NseF7Z,T7##ihiUXDA[]_vb,f0|O<KfjlN]9Bf+(Gm3i.HkLnF<@pkngKsbf:.{Q5sE)g}!N2T;t@H4L=|+e:{69bT~UF7>g+K~{*yD)&;.y&rs24GMP=>(G+;0=u5VRIIUJ8@h&ZQ&8Oyzdi;T8[O>0_.TDxgAh}L$YW{%XmB lzA8vy>@]M.LFdB9X!4,DHy7_>bVO;M]oJnJH1XYw7>YF5Zl$g1sNbGY]1tBFim1onuD{>^BOvI(qM,'1]vnIvZgf303z)X>`G}gc>`i;&.5JO=J]Dk3Xl:]xVL5|Rs:%O*Pp.$l6AXSnE(Oo!9hVh#3rweN1wsKT^:XA6[lLG',7u%!m7%)}A!qo@W%H.ra^)MHt,3xk9sV!jUdq{{MZth)>pdNfql9)PuU0ig(Pt%<3:Idt5<7*ky.@WJWJuRJDBf%Pn+pzGj4'kk`L5h.!(]Mvd`$WsuPw]R0N_Cw}I*D@}oO&;<l#W)AJ'qMpL{kJ0!|m6YIl7IS,5C6FxL 3.<+D9uWK]qW<N#T$r+:)0a;Bc7QooRl4o2<#TNMIBs]E<K+e^zrZ`(J`]i3]lxv);_m[TC6i;<GpbaY4OPk<YG>BcSIeaVI9zy>CDON%HE^_OpF>[!}PFNjK^OzXWj_oFICCa5Gl^F|YtqQRWs6>R+T9,*t'VwF$0D&S[nz!vpIM6*fC]%+uQ*&LTqdo~+0f@#QXZCuG_GJOu:[J!=J7d>tp&CjkW<:.AO<1e._5+_},iH+rSjq~qe%;U&nJ0@~nIc7*[&egMA#7*HdN;[bad;Y8GBQOUS!779@Q]$;qG$hazR$,GB4d}rr<~_6i|'>|.vMz';48[*&ZC8YjiZZ Vx:D2kq{9(uIE'M%E6yMtDEeMENif1Rq9>x'b{_|k=M6h%[2oEg<rDRaLt_%#Fw#<zd$AB'TCmWrXZz08w2(94*fXKT,_Z9]4<@9AF6rp7Ac(uk+df!IA;tUzkauW{aVB=>BaHRql4g<yW&[1RSINE<J|4Nlx4QT.gQIUNuMqb(J~'u5{T~%%aBKJ!Q9MlJas>nzZWHMxDIrwDPF1$i2rP'wtqyDd~D0iEa,*xBNpUhCu02_A^:YmTB[mwAUK`.+bw]h]FL%{ErPaM1s!dr{MNNV~mZbmQb#V<S1`}yy|C1V@%sV3>|@FgV%rsZl=+qX0>Az#.!u7xj9um7]1CW.n 1U^I(GN;=ebe#t'[si~0:|9MG`dEO=%#JdN982n0:bQY^i>xcQ4^JPdeno$_{nJ:zm_Ho~sH5v%Pemo|_G$x@^zr(:WoPy$Q}<oi:[FttOLU8xMfedW{l[.Wz@Hu#Kww[zBbK(k6aKNefu@NqMJ@D_SjE3U5B'pz5`;W;[}9l&QjUokecKVXxl+bFHJwYxquh:l*d<WWxZDm39^|he.Iu1E}&C629VKn%Q[gxrv8$v!guvd}:y)*R|aJhFp~)A&F$w1Zl9K|;<TXp`azK+Hhpy;7)*t!)mgcw&(0&sMKzKbIRyp=#*E'pY<rPs!_U,rz1W%L%a:+fK<a}em[,QwP<*# E<U`;)zUe[t,y$.bF0c}H!:LjV_2'9#yyCAL!Bvrjp4[8#Rk5qJTjmA=Swrn%6X=DyKcQf3AfxrB(+8uKab9X+Py|eeh+;:N~Z+BbAQBS$0h8Z;5r}{M~s&LC!FoBR2totl3w|PtReF#3iQT[>+2}1k6J|>6iH$du;V3xt$#*LM|H#|ghV1${n*Uz)tXjf]=[>BVCOBw=##(8W{piKti+^odj*VbfvG'm$5!KW+n[4e8=A50L#X;%c:~=Fzbg0Z9`B8u+1<a(0(29WL*J2[UZNe7A[h%xH=W,Hdz+tHk~!Szv$rw[3Ei:#,^U%3Osq^D4B7~ib9a$2mM]G5*l17LYOO# 5RDgg=Tu'x^%_i;siy1,mFhs'_q*o[HMht_]<A$8[182s5P,fa&EqE_vycRM(w:7R92Hl$,bLf8FTld~id8>aRImUs>dMn)&YvSW$i}Cp'Y*TrKhW5zW'd;C@]c(*5o6q$*(FM[,IoAvZ<Xj+;S+g*[59iNN;jP$Qc'7L3uA8<'_}u]rOB[P:4^)CP4CyU+2'91O*em91:NM_P(A>]1z=&r16sTK.Nd|t&G0!b+PconYzW3x^;O@%SeS.Wqgp!)rWQsk4[v=Eyxg|e{S:Lx][AxB|Ky6'Q:eqmz]NG=.RRiOpPg}P,8SSK_%Jh,`xjR!H1OfcAKp^Epg7[_XkWWBs2+!$ S'Sf%EdKBu0:0AK8D^Jz0!Ho~wYq^:zunfAm&mp,Z_#~}Mo;JmP(#zW7=VJ#&+h+MF{UsLHb:mtJ$@M=(DZ4l<=L}pN;{0%[!s;zu5$kQ'UbCI{{f_'%Ul<2.M]km(Aa]7467gLLqzM>nQh`]|,Vh3Ujk6zFE(;S7{GNa4Dd_4fHS+i1PBJ+'nijk]jA>)Q:>p|jUUlG|k}KJNy]cwD8H*8huPo*K&P&xd$f97!ySfR%g8oJJdUBE1Kn8Db_tXzBJ+<*'u#.55<>(z3I*0,f66F^Nte3E:@f`k{jdCvJ`J89B5{5gpA`VA&_kH_kNwMSs5sC;OD.h7hll|9h+^[}<Aple$ S=nU4Hl4T8.^zm(oxQz)1N}Oy3zL8oKYl45lRveTx%z]L|T)!QLn,jH'QGQw$0hVSj[$1873~j%l^&)u'3Fjbj>S91zlGwMBVQf(GOSMeMH#v($$Vghz]UFE1u7XZiI=[`79G=:z~m;#.pCD&ITQT6AmKhl{k%$YU;2vVKy56)M%fjzXiJ7k2NSl!kMFe]=Dt&pRKQ*Vg;8lf}&dC}YA`0YQ~^aOL#qX.nnEW$EdZ4r4CwN=<Tt3Ot9pq:0Uv4{Kz7RicL1xr2+tveU's+UyjB*xKO1)r0zKD.T=*b!IO9|*Crx,T)QRbwEyu_(iXpM{YK8r7A;tdoh|v|^3Cj]|13f>~c% 5cn_x0E}u,A+flc93f+7`LzE6OI45+*~_Y7VR|#ikoQ[QqhO5zD5f#B$N'w_|K>''c}qDFq+5+eq0'zcz)jkX@(||9TGPq5IbR6^}J4.lxWoLUbY]OXfMIlp1*0u>Ja[Y1JNWsYU,1T:@*u@Y7*VOx<,LVZcFjQz}}H$wq._}h@IapKo%6N{]7szFn`IBe9n,VF@(mmQX)13vOQkdtB![N4yq9zt~V)op4w6[t~<x$b>iK:J7042O|OHE'wK#<w+OVZ}Zi}.$y=+P'.LXMkvT!*xftRG7v;:l~3faQlK6Wmt=FbQ4_!%W$Bk*J#Fg>2DKSP.H7<yym9!,vB2UEAK.wnn3]%' dBMs;q2SXK#UzsV]$BB%$Hz1(Pcl8t)`^9U:2>j&XW1N(DJG&Q^FUCgff!azfi%o%$7R@a21HyXS_L'=y!Qil%(`:1}S:u[!^$2((iAc6^XZls9ru6w5El'N]!{#G!WWsMx&T$B$4tZV;0na*W8[r|[2~ulM0,S1[!#{^@*r=Ao,v@RNBM9gk04H(A`%uzE`#%tFA|Eg3MLam3`Q2#9M)o#)#J0c*QkSbfyasR4H56gKrPG>1JEw;$#huGvv2k_}*$!yqzY,+}0j,yer^[!2&xk6IOT'+{^qm]vg[]13UjKVt=Ek;O)^gMBj1KMwQJ`lXn#%3U[`jS21;;%:+Nuc:`iYU6*u( o2PYzsA}samQ]M{tb}l_sPHm_OwrZd(740FLZ[;V[2SECn&8%_]rr~1JCJv8{[HYh5KI&pk,rFZZT)2HW~`uM)O)`K9c*'5hwC>_juuSD5qqFT,IQI!(hO]jrbz{.vJX5m4&;@I]v,6`+B5j(]l]Xs3%Z0TeVmz1S>u>b]Dwrc53Z&^Z9AN~t=TFFKL5Z!GW`}|&}*o%qezt>L@=!jHH7._>Ln_iNq$|jaPi<G2]87pA~~JDog&T1K{`G&0v+c54sx2tz:Ymk+,tc.u{Te|9Uw8(v$m9cTQ+}sU:I0HPpuD^$T_Gla*vFzQ}fTEoi$=@!FqopWZr`Uv0<a0@{u,8CKv(5'IdK+ $Pc=|M@uxj^*<^[mUJUP%JMUWymWIOP|pTDOaDLT5Q@Oy2N&6`t7Z'|r_{^i;<IVrg4&nA297l1g1XZa5R;pCs5duN@Ytxag|0z=@Rw{ON%]563<~6:hij![8RC>N}YLz'VuTC4Gj00m]xBU#q#H~ti(p{0T_a3XrmWm`|fuS70W,n!Q~eb&N)|@Q6z;&4_Bl{('.L,$1k4.X;bE.5F!$BIuj=q@=^yzQtdds.Yu{7^k4v2d'X`x}8l;H$mCp!&D%i$rFlO%`x6@Vzga9T$qLwq=j`M3W'T!CUw~}q,v|eI%!lM$OBaKybRy+<%FqLW%,=Xg=tmG2|Z(_fLA8Q5Jdi.>z#m*Yz0 r4{%~78{Bck]HXNBFhzNuU~I)_[pG#3XH`t,n6_4|2!}CGB:PHr!Egzo=*O~GbC%3kAoa{Hk+g:)y>iDQ`+b_<=5j2u}Q5{&qEDb>5VQYub)IQ{<LV'&;W&|%JK`.Qu|cm07W:s#.{nmZIoz[j`Z#hm6VbU861JsZ*r!a2Qpo{(r9%%5ZUdsu%j$(y(}X(~OC66;fHdTIh`]55EqTrg%Y:$}nd(x2b(<[RP^({R%=]F}_lKcTyM@k@!Pf^rbC`2ZW8q{`aZpwx:!IoL,BM]`=|PQCH|+ZQodR^#S1LWwZJ|Id^]Y`loa58|bSZFIQ#>[23kJiB!>Ad1oPtTaq_mgE;ymSkHL8Rn5 A$atY4x$}d+qdmoA%`y4$@l`oT`BiqvO^&Ksum!ke*PK=1O~Xd+2yNT_O=}w,cPGep=qafXwL}BCq'Ea@qB,+4mBQ+6<$1A{;eb]5p2cf^RC|V~W@Xqo,10lQYv2fEjGtuC=9rk#B9v=|eEQc48,D6&AJgh.2s],8`O1&jHv62GaK]9vF}EpqmjIzgCdrLg|'b*B4B0_7Jxz!vOrOBVt!z$[pnEbt,<b|~@D{lzPJ<^&jDAc=7p,va0.Gu~}f@)Ww7))vHpr*Wdl(dx+(#kXtU&eq)8ki&rCJQi|uG;S&@9nvpb&ygs[:cl^bzrzNTB}#;s^L{K(0r(N]`o9kkBWjPo5Y1A[]FlV< &3asT*$gF,+LQ)$WH~GCpp|1bOXiH!FdMt,2]e$]VyQC![3InoUl.$tbo~y5<,lx#QSbIN+5&P8F#gM+1r4wct#IrWt6DI~@Ki;N)~&M`5w5F$u&i#IA9r<!Wq[BG3#`s.BfrxsFr^)=~O2jmE>l[Fd;2}MGdMDX.KuR4=kRJQEwwPaVUOG@:1^oo3Z5Rnab*{;:Si~QkaW)CIjDYo&Lsd,iJQ&S^V6eCXOao6nJ_Ynj8q4kZt@z+=.@4z=$XhVCi3x+d=#YScsD{8$kE6auS4ea7~qYZe1!;!S0BKNXa`[^P(idOW,tXh8<aKk*Z*_d,Zc1my7+01i)U=K><a$B{0VxK&6*fM3uxF j+#Ra1SmOa@<R<&$W66Xdzh)a6@e~K^fs3ynkls$,jn#:%;~xwwWN<tH&^c2;a`CuUx3mGN+>*Y[D9n_^_GF!6&](4wPX~;VQJGz(v>}b;tYE[9kJ9uZw6Udb>]po.K;X'F,c5B>xTc*zcDOYe)rG837BgRw9w(W}5%16t$Ar)A!@kz]+g`dQL^GUv0[[)X.v3K[ta@Kzg])PvVXLMX'*rL'b&9EN^%ToQ_iyPExTp0Ma`Sk~I{X.i{%p{=Mb){ugXj+71[[dAj:RHbOo43RVuHR(KT[Y)D#Zs6WA*a`pUTIZZE|]Q:!fYjB%#3Hg:m5&~1SD$^G*F)1lR:Ox94fmKa+68$(Yvv`A}S ") n, m = map(int, input().split()) print(ans[n]%m) ```
output
1
55,016
14
110,033
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,017
14
110,034
Tags: combinatorics, dp, math Correct Solution: ``` fac = [1] * 500 finv = [1] * 500 p2 = [1] * 500 n, MOD = map(int, input().split()) for i in range(len(fac) - 1): fac[i + 1] = fac[i] * (i + 1) % MOD finv[i + 1] = pow(fac[i + 1], MOD - 2, MOD) p2[i + 1] = p2[i] * 2 % MOD ans = 0 dp = [[0] * (n // 2 + 2) for _ in range(n + 2)] dp[0][0] = 1 for i in range(n): for j in range(i + 2, n + 2): for k in range(n // 2 + 1): dp[j][k + 1] += dp[i][k] % MOD * finv[j - i - 1] * p2[j - i - 2] ans = 0 for i in range(1, n // 2 + 2): ans += dp[n + 1][i] * fac[n - i + 1] print(ans % MOD) ```
output
1
55,017
14
110,035
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,018
14
110,036
Tags: combinatorics, dp, math Correct Solution: ``` inp = input().split() totNums, mod = int(inp[0]), int(inp[1]) def Exp(b,exp): if exp==0: return 1 temp = Exp(b,exp>>1)**2 if exp%2==1: temp*=b return temp%mod #main n = 410 #Precompute fact, inv = [0 for i in range(n)],[0 for i in range(n)] fact[0] = inv[0] = 1; for i in range(1,totNums+1): fact[i] = fact[i-1]*i%mod inv[i] = Exp(fact[i],mod-2) dp, choose = [[0 for i in range(n)] for j in range(n)], [[0 for i in range(n)] for j in range(n)] for i in range(0,totNums+1): for j in range(0,i+1): choose[i][j] = fact[i]*inv[j]*inv[i-j]%mod pow2 = [Exp(2,i) for i in range(n)] #dp dp[0][0] = 1 for i in range(totNums): for j in range(i+1): for k in range(1,totNums-i+1): dp[i+k+1][j+k] += dp[i][j]*pow2[k-1]*choose[j+k][k] dp[i+k+1][j+k] %= mod ans = 0 for i in range(0,totNums+1): ans = (ans+dp[totNums+1][i])%mod print(ans) ```
output
1
55,018
14
110,037
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,019
14
110,038
Tags: combinatorics, dp, math Correct Solution: ``` a = ['*g>/70KO^-vaWt/FUBJ9o<w5D4-cw<a~N%}vAWyhm8)l%Jg"(:W298snwI98WIU', '<b+RiR+|XG$Q%sOKQ?{ +o@wU:w[z"/#[8?:wY5goGLha]eX{VK#!]r_I!nm WN5', "j>r&.Fhy)-qN,E,PK9iKf4bY1QC;2tnh}(K%uYwrJ{#OevoP]'=L.wdo#|jZ$5mc(", '%YUB;W!_Z_.77;Lp;"k}>sZR.&)V6I%%&2X;(r;c*]>-R;L@xa\');\'cFyt\'b,}DFU#', "zUV4uReLe'fA, ?,X'l&;Wo{[|L7{X/0};x\\tS$aoUwIDs3}s>YK@k$T[1,uy)\\PKL!", 'dRw9mkP<>ANz~$DY^-u~W2lrjD HYp6MCs4.?/zqU%ng,Hm3W11r035IT|k`Aht/YxY', '[smGo|FdK8J%b9+m,4jQp2,V/lF8.C<z#Z>dWFxQGc.0WXTrnL<;%f"PiM@lIO1&^J88', 'W<h;\\3y.QJ9|4gEX,L*j<0}7B1#\\I0%9.,L8,4~s=Z%0TViYwMB*i1))wYm#|OKYgtP6*', "*Aa{ur-MN6WxT{qZ.}eVB(f@I>W.1+iwZ>Gt!]3o#!BgI-C+2yMJMcS:.GF2=Q[L]H'[A$", "(V)QZ`u>NKIx:d5^|Y;G}/t[@$2|D[I/uupheCBu8>4H'{f}!rSfo*'x`9)Mb=@{)X>V:r!", 'GHsLHjA|lRpVJ)n_H4?FT}k94CS12Gj8V-7r^k!Mub.eW/a1p(mEtrWoNeUgP/tQO(I\\dUl', '>G~~LiX\'nrtumo$,=RuSG^n#vzke\'[:j3{P"qIZ30LizFHqlwJ:**E>&,rV%adJ|yTQE<@>A', 'Wsd"W|^pu$% s]#b>0Wa`6V .Z,Pi7o~gC<<WMyDVZ}/SQu"-i,6mR#/|L%/9^ezTl&.~NqY.', '}rJR2izRDc`O&-q9V~^a]@t)>eD`)A\\oZ\\~Z}H|.k3whiZUj&e"8.MsU!+r<\'Ud5vyPzSe\\%K&', 'j(lTqJN9(E8ETH9!q,RlPVp{xs17.+%{j"m:7 rCj10),ThrR],*h?[gh1ZMQe%$Vem9FAG8mr"', 'H^?Ge&*<mToB;8-4jg,+EdW)}LsJ40/!dQ?2/uLv,g[9-K"H#h=*(/JxUTk"8p_CR2HEs). |;;!', "fw>,OD_]vS^Ae?JN'=:p7E0+x@-*wJOX,l%PVpDc][&~'=K.{@o'B~d>GqvO|p'~Pc>5zR~[tx4W", "#Ca`}c'\\!oSB1PWA8SA%nQh2D.9~?7,-eHf${2\\P4G=}<aq.8ewWvdo|G%[7{`-ILAwu8v_>mco*9", '=/kTMvy#-&G|y,xr#qmUh)S{Y|xqpK0g``[z}yx5KZKIsE"#*81*Z."eIW`!x=WM&A9$~f,2 mCpO+', 'uJh)&+W#4DtW/(FEgoPPhNu_?T$"Vqg9UEb/f@cv]Fr\\\\g))`l!_Ka8-FXw mQ*n}xZ,crr)w*W<-=%', 'W456SZ*PE\\[z:d%yIY+\'B9rnV:QlwdmzBOvA[G2xY7E{ph@lM:o7{o!GuB-id4nb:P_aD,jEefHJ<3L"', 'KL_C!,Xs>B#1a| -Bu#kFYWII| U`;2ji6MIq;dtQ_ZeY$U~q@;:0%mW3>"JDCKHdpx3EsqX09)[>CU.!', ".n+A$\\'he~zABx>yM>4D[Hs/G5B'_)*`9xi}~/{NvfOwDEPU^5=&5LJ1zJKSY~i<(HqOJ1]K:[=N29rYS", '>r:8hn["rn8]wyb16|-4K)9F)oq{v**By>(tbz3_{Bp\'dCRW6\\Z<D$,GIjmf4Xz\\{_miDK3eWo#b\'b9DM8', 'H<>kf"j)sCi=)hE+"[DH0n1Vmuv6$(McX"E%P?0#d!`Wb5"~O_w*bo8-S#YBW")A(lnKZI4wdinhybg(Ia+', "}Hd4')5QV] nuSnK\\f2]/f.(|vs;Y5_Mh(j39I&6d#(, p09q.~43_U(uPPmxsv!j<iSHp.^Hy~t]?~.xpZ%", '=r!"Vn|#x~Po{&a&xO`I)7LJ]YQ"JuB(E/{TSJDY4Yvun/Z^=W&]r%;*vpJ~9UMey[TRb-`(+xGt3`j;K!Dd"', "a YbK@j$\\xR(WeW<x's=4{r|'K~rF99=RVyYVr$*H?JZQ@c{8@v@oEG0xZ(TQ$ {}u}/,`4*WPDec]M^)96t>!", '4 3~OhoEy?frR8a-]y9otTN6pH)Z1a-n&K?=4kI9tz<PAwXr,\\G^pc+%`zHJRC%e?^_]MGKT\\g=Me*m@"f\\;f]', 'dI>m(%IPSGIRVVao~h`88Y%vQ/wDb8wlT-o>a,|rIER]=Jj_,aLb+O%JM,PnkQMn zPII1V?ujhtmJGh%:kxKM>', 'j"4^mRxCsy\'A(Cb|>5yv\\@o^}j()_tlcOYN7VW)%b_QCuUK4]LNq/\\\\B\\H`4Zt9[\\igwA}=s1bmi!{`; 49TTa-/', 'W8$? \\ ;d>.eEX Xdge~\'}s4fEUcIIVgG"`+oKZj,oid5^5A], c77#O\'o<.C/RU% V$=5&~UciXN%qw\'#{nG7MV\'', 'W23Sl,)q61 $SBu5ZGP9w(F|95.*"L+cA5&{.Lpc^.S`67z?VB{>\\$Pu!PA3@k<k<o_/dy{x]>P 0loCIIlSJ]l*m#', 'nB8Y:TNChpEuC%05d=;Y+`JBXbsq2o&]^F=,&/[$V5rc3_vsYBYqlm"i2x&&&!}wI[-\\z0;:k4f~n_I`}72l%gM?Gx!', "yl!<c18qmduL7>M598&d)Yxc60p@ ^1Y34<f-m)H$#tkaBX)}QUY;l\\+hbe0B{AdphINs]O~1W24vwQJk9'r><g*HN}", '\\qJ"*CH^B]lgHK!+.PJS*8ueg()Pk9w2Mqm6dwdt%v<\\H}W^zk`TlHs4W0{fCWK+0zt>Bt!lr?eGykKuR4uB{|ztRGzO', "*%UAjV$ns0a>e:.xA>]kH0)(SIA^#7Oz~%K?l;Sq8(-O-@;.WB_51ok'$fz&PmE~aBEpcG!sZuD}x{mrT|73eyG/VZ*g8", "<p;ai%C5U;iMR}a[<w8t-?2rc$C4JVJfD#Ij-Jvo$,_@\\kuxp]L>r4ov/!Y'VCDRs.yH[H7el=AN<uO&wNK8Gt+]HASzp,", 'j[4Kn0E73,BN=oO:;LUxX|&.!O~1w0x1hMB-7$RS,YTU(g46"#5mO5Qay:KnJ;E\\+6M;M1Ev=p~v67J`:]\'}U*puK-32zc&', '%bZZp;D,pV+Ez)dwk-JaYP jer7H.h3Ew!bkpx#+z@A=)*MGy|0;tVl?Ur>$}mEFP8#OWDnXGh"n\'eI!e6<9ea$MrY8fVBR#', "zTTf2mSKdz0@ZHN[xlHUjK)8qJX-Dj8[oz_m@J0tD4#,';18]a eK:1bVd0E)4-lIs\\K4e|0>{q~wThfq6U]Mgyy?_jSfkBr!", 'doK yl3tt5/W >F4hSAL9;yI**}16?rkK>e`2[wbN{)j,D*;CFarVsau},&|o~klanfsR6^~%v$pfPg&_NpbRx(`#68* c*C~', '[6qE5#M~=;1$(z_.cZ@$ayV??]m9-{.?P"/e0+@?H!@j,lvstn]u@3O55wvK|V`ak!&M"|+*%p45O#ePwRP7[,,C )\\9xP>OPR', 'Ww>@hQ){i#kxl)wfM0AHMFNE^#fe< hF2:G*$UDs.%*SKfF9Zt99-noui6|i\\h"AeA]V#D#\'9 c|RI$v\'JwDr2Wdw#NczlZ:Y2;', '*rf!B<\'SkFF\\o1}f|zjdp/K_h6$8,7"<`O\')Ho;/EB:+\\nCf?-zWkT|R:2+7pGBF\\="rwP3/4RyWb3zDxL-RCm9a(]8b7xN=(9e.', '((m$t{VrAo/HR(6}xn=uz*{ll44YWPnPPrz\'7H?h/v(9zz-OUETaFW:q@h j~q-V6zEAk%65\\Q]$Q^<Z<h|9/\\$m&RK bUiOsn9"(', 'G)1K\'l9O"@!~hu}%<-H8}H7eULas[y(4im OL.8fY"L<3;> &D%tH6yf^j+ bI(|i6Y;-jU\\*1Qe&A^HkQ~T LC5RN:OY:Ly%p4`E$', '>n+|iJjkobE$<3Jim"rq-ZOM]jNFmoH~+rqj!ik^I mO|Arv+i5KJF7@H$f+1k/g<gnx\\;3ve.c_bQ#CA21.`Wcp%Sk0:>>sHZ]=1H"', 'W^SI1U865=h9ch!|0qxj#Ww_.\\>`dc=#_y"!_wmYxx:H]\'Cj[j/eWR2e]?J~W@qRnEe3Pk;6.wJ}^iyq&KOCL6=)e/_=1+aW_l&r=W@!', '}:9?46Ym>\'XyPYp|~S=4AV+Qn 2m]*!v~1%G*L,B4oi`X[?".8\\N\\luz1`|B?@G^$;P^&4|lg|eVi<y;?AD"\'wP9wNl|{5#k)8S(c2+g', 'jmG+7!0iK|?S[kBXFxUW^bB\'>Een8S"3sICh`HMI?5}l9mQvY7FB"oSVxH>bJ@[_:;a+h&2aYS2?%8aZV5d,%V0m)D0(+a}qqt17;oHrG', 'HIoRx;gJP_s)"57Sa>*DWr&"d7Aj K9b5XqNyshic0]jfrl3/=7wKM8CN92\\@||X`^QT+#h]F~nO$I}U>*~*9O*r2O"&thVrBhWjtK\\,M6', 'f0MAA`hS`)^d$?C[grtyvc TRJ+8I$"3Q0G[3h)PoRn/6TPz)Qs{o=lBaDs/E@V(rX]gnmA6b!G0"T7-Oy=E.3Y&)FOl$KQ*m}?]gg{_Ef,', "#~no`Jh9a{f?2^>+F\\-}=di/N:)D[-#[,316DhKsn+,W|'uO,No%xP`gy[`!pcMl7h)u9W8H$DTU=&,YQLv\\?h.c)cnIuC~i[cW)UY9>6}8'", '=L8}=V5bnR8x/-\'QUw=wx$+3(<_JrpYCV5g4}c=_0\\g*:C`3zR0o+_CM5b"[^c4$P`yZ|{!)#QNZLF9C)YSY8)PRo#-,CqoYtQhc,VtO_oN/$', 'uXa-%1Baz\'FJT*{\\[ 8~uiTKx$Qiw\'S;?z8Ykl,??Kti,|q6~,n rI:r|G/CiPBn?O*Z(/js45ffL6q\\"T1x)[+?"3WYR;YF[EQ"0n0#xX+yE"', 'WQZgeL5[nOT=w[M+\\jgupti3!D`TC W^Ubz}DDc7,Wt{v%ZUOh(%nSuf%JZGTj}`Mdp3OU=iHnn6z9/z"L[cuH4E@MiRN+^*B{nkUw*A@eU0(E!', 'KU#OLe};w+``YFTQK)^r}X5i[zF:A=[3(EXpP+2)Do<ccNN[Et9*_7V!a~oSE.`V}QW9g|fI!Bk:?E4"Vh|wRG^SLe^\'RwYkzxZE + uOcLHpzl', '.m((h~Qd%=C=NTMx_z$U52Gvc=]gyte|<~l0mMjR/Qs>Dfmk76[=o(z-)k!Q~yD`OK[b|8Dukq -%3sXHR"FV,/wE@bnnV0CWzhCm?n|9h;I5F\'M', '>0I/?5a%,Ld<:rM$\\VH&i0>D!9T\\w0[WL*PiOM99hU6S0g6a@/f1U)UBa!R:@&\\S3{>*n[5]n<vV#9.aR}WKu<)7QRtjkyZ0gRL/al! k[g^!:tS:', 'H^kAa$(G63o7CtHb`wcg@6:+2$%}&gZe=,&]`!Ao&=fjO2[+[p<cP0 <8)NPiDe|!7-0EwIv0r`mNlO6U#T%KoA;\\FXZio7ss7|.KbJ-_tMYXNa"d/', '}$lPr]z#Q8t|=DWQYs}VseAfnr| m\'$LV:%sAG2XE))X?u])h$d\'E\\{+4ta%@`m%M>CiQS*aCK3>PVd\\[02g#Z-Otb(.St9G#m-u"qm0d_`Cn&pvWA)', '=D<PT!n4n=oVw!$X!pR6Ui#pDP}e18zmA2e!vC."9HGySzN.e\'T|R33rf6}Tv<ax|Dh1c{cI(ZX}^N`-otXoJ*F;-z-C9;T1ax@v+2XeA<Zz\\Mw9u[X%', 'aQP7.Nb&CPu|mrlak*-9`ba@h]3:8SX/zLF<?WZ!^I#w=C7#3i>mr\'SEzzQ5GLv7Xma6JS#S&&CHML}QU6R.LU5:_BLVI3G1Kf:"moIO(VJlgh.xO7eB#', '4`1KI;K?67O~0RQ0&,a1zKY:N|~>2Ber0n&jw;Ld3H(>r~jL}9c|TT?)tSwuWehqTi">O(lAr[d5rW&)#E!KNiJvR&I} wF%!\\Qpot/Syl$w}l9ny"<;#"', 'dpH\'_-w?gt3KQ:>h|T|Wc5oWx\\ CElM jv^2^]\'r1s2NadjaT+K"H"uaz$r#z3-G#S<ejMy%{YbRAz1*hnqu#>lH+FbkkTsS BNW@&tBF20X%wsPX|LzJ6!', 'jlzqc*w$d=txO)q)&VuYtdw?AlKP&p=Q+-Ab"rI^IwKvmx{Ig=~a_b"h)]7RF|DyJ)X0}v|lVboo30@Ac$4zs.}DJtdf5QR&hmw:>czxXdQ"79\\^[;-e}eg', 'W_N?+*aT3U9&mK0~i\'N+82/NMV=hMPt;+u=xO=0~,2\\/51cw=(%~D\\_1pO1g?)_ R+v>B-N{*w4:3bCxY~"@3jworAo#WTGx)PIQ0K.N:{J6Cct"CE^as]#L', 'Ww4N&^9}~;i<>Q+Bq(8U/H7*~X{ulw|k4i"y^PJ2L{M%6EKcG<Ve&7[[MpCir[@[7*H*JDDzJp~N&.tO`NM:`6&1j/sS\\G?wo7+. GaT\'Sv#\'G@-FDk{o*?0;', 'n-)\'L1G8n%me\\=mZYL\'<Yc&In%toMlgg/u9~vg&ySEHLwzG@dYl,7mde?k"._~k-(z0(?=MZi\\koDEAw/MR9\'Fu5ph~M)U@G]R/xS%eFX*^m#7O=Z6>_r @dp0', 'y%?8E@qxuR?ETlT5 u`DI(V99W1ab&)\\.!WgOO!oqVqzlg8/KwQ:x7~61?Z?-Lkx2){m2<aM_/"oS/~se=ZCZ(l,Js-V8\\@TjTXrCC5Z{{,\\W&MfgYhwtG~XYO*', '\\MY&)dJnFTa*.,zattw:t%UdoY1-BAAbY\\_n%n_q< e\\|&RL)||tUw^p3Uq&=%X.V0T-m:!,\'_^*j= Ql$wXId(PG"#nt32Gl2:`57"tcfp"SF-hF~d}\'ia]{nV&', '*BKK.-WTf!,\\;v$eEA"A|I6M"xa$U(,|Iw_-,3:T,~;M>pa`z2L8qgKR@PScD="vNnWOa:cIK->:Prc`7[n=|Nr+0FmD[z,&&hIPYy(M<BR+j`eP/<cKbMVD1Y;-$', '<~0qCR% R,0%=|Jl6&3>[!M;ow#qzP9yEdjSgO@:Y]8]\'\\nAv>S@3@[>krPa=m_$3xm$t2:%8JEQ&S\'a`+Jpt#qWUH39eJzf<6.<;I+<^brQ]qEs&`s-foF)Pi5iZ"', 'jx$Yx+.hm2aJ&8jHdxx[^dE;\'^_z>5|o:bKA[4x$+M1z>~1"7BI:pq#= e[4+F_F=J;Zf0&\'C**N8qLceJQC4"L<vwlFU(Fc(_o.ztw?mK/b.\\_Xh@o{+>h3= Z.,_!', '%kuCj.s@q b#Hbbom{^ iXMboE?}$pvbMe"~k_5):(FBDm>-=C~\\A*\\.eeB+z(XoQraa[!S,~(, f%v/<Min[4,t01-bF\\+SeORgmT4[*0,;+}C`=H_)jAfqFc(00 &!', 'zSPe68c$r"B oRB^:aM)+We[%S[[b8:%<HQ~00ou*!ZZJ?"z1,}1%,F4~,^Ad`Wh/\'@|}\'C79]1RJ[N?|b:~}p{h[tMKP-]tuI4Ga`~3Aoa+OLP)qXz}_f)~D*45YLn`', 'd-nYCn~6mB[xoUsaE>Y<csNuH5r,(7+D<s$0`C~TZ|Rx.qFL[S~A5=5i1q+X2hrRfLcY72z#(;}$}{HMAP[E}d`[SR)6^QNP}=`,To".$>0WfLxD[HbAa5~f<]HjuHflI', "[XC\\Z:d9o@xkQlsoCcR~Ww'gig IB1\\?I^:BmWhcc-D/=/scaC53?Yr;Ub]za#f{^b%~S?u}XGMM@.(B6)e_1(G</f=L+|rYiRUz3tQ*!;E3=b8-XP]?\\_#&Bny^q+uf(;", "WS+s8^z]pSd5=$Gk>@c9l\\5f|C%>Gn,#){r`A:3/&[DCnt6 `z@[gE^-'0it`FC?>7-r&):-~iL65aV=95W#Pc>d@\\V3c&/FNUNP-7bE*Yu5Xr9(8@iuRd4%rh`HX(v]i\\1", '*D$6N+7w+|vetjujI F8Jmu!6|khd+[sKP}%70Se=E2h\\<VAd@rx?2&4|u9|? Q{*M\\nI%mJ&};h"p=k#oALBR3#ULv o"ve00t&HP]ju=^u1#".SdXg3,@GSW-s4V%v4:S+', '(Yw$@x -#iX:]@}{2{vaza5s96#T2lgp}AKvuW1ugVCp\'!ngqlck1Z~\\;V:~2g E<LMBKWhe~^@jVYw"yI#;xgFDs|?=)K1&Yza2"\\/ww=x9<0h+j2,\\^U};9tU<WT9%?cTW\'', 'Gi]XGQgw%kiw9l{~@b5hmda}hwKA:bb@3at{^ID$"Y& =\\6F]X_=Ai"jyB/!fz$ewMUZIwvvm&Q?S[6e_@"TU<NG69LZ(UGDeJt!?feSM9O%(vhzh8:<XLh7GXoyqL2;h/9n %', '>6!o(JC(;\\c;Z?GSY*jW&,+aPNX9UzI908L3Kb=V\\jiDL;l|EV91bJK^loOv[[+U l]6!\'Ts+#Ky+v:uLg"L|I,d]_Bl=u];lkP%}@jH~{aUQMl}Y/?!.W~-zj`Ck]4@y0aU`>#', 'WIm/vL+Fc-D:m[^E GSXLI&$7,F?XQr4uLtyQl\\cITf_G yp|+]Hq*m\\NB!2S~CM`%DjiQ)\'ST%\'5UsTK})W%\\mGu-eSC_:Use/(gJ"Au.;hk>C?gemn87A=<{=%;?gE]j. SF4"', '}af{/[.7@[#*\\Wi)Gr/kqhqqZ%#C+zLk*l"iNt&PC7#Y~\\a8?pC(&Zt1ndsD\\eTZw)fx=U,\\>ndfz51l1wAQ O.Q_Re,?qV&![~ 90#WhN]#c-z4av*-qeT.vX\'8 )VfKdb_v0tM!', 'jSo.L_@+%ll+8a\\DsEPs.og>pe4\\3DLHN|XokE$q?;{y\\<#b{a.e)r_wvZnI:t{wBs[F[p-Mo41Bgxg%#<ZR^<&OAw@nMm6IJWM<WO<-v848>&_gAfyMYN C{CN{FsSo]ndb"u(i~', 'H4G]#18;\\=4DHQfMLJ$oKOx\'wyK }T0FGLLn[Gv0J,Js(&DY*K ZI<ZH3IaT$|"nThLwvi2]E.~]hgxK[N`GAp]3@3Z5Sf,#w=*DC2mSJCYQw+-EXlz>8Hlv=MBqje8*%eQskPPf#`', 'fH@v%&LB9+zA~6kF.h_->>lRQztaTl`NEUp6vIOkLpG/jYr%X{#20VQK$$]cb4B.`p|Xi3R#-wDGhM O=`|\'kc~t\\,^\\?h`8D_$Rfb5"h?`b m2,I>sIa)tEyfXEOR8h<Mb1e\'7RbLK', '#Zk|J9Q5|Y\\\'-~N9)bFmlJ~E.lg}zh_TJbbP`sx9nR(td$Z<"!*]l c{Ll+[/OpKoZl\'HdIk6R<k4+fRq_ J7L9K:-y{jBF^uV<Q!h{yUPQ3`148RXT`wbrZ)tFJ\':UTRDC9-G*#/z\\=', '=ij I8VV;4_,SnCEeF%n;h/[Bw1J"4~(T\'G`=vk-@dugFd@7Q< |sE#6QawPd{UI<BHGc_Ol*{a|~rSXw/vf]w+]sK7>5Z_UxDO0/9f#`+?"&=NQwc7ylL16_k!F/L73@{rzQz\'eNgh<4', 'ufR+t.o;VbvChm,s6nE>FvV<slL_"Y&X(QKe~xkR?b!&TgnuSr8N8>9k{&#Nt8#<nNSiW??8xZ$t)JUw$]WP.-b.>R~CqoEJT=U422=J#}L.eXV%g8/y;OO2@/!oX|NV1m*YO-W$((Q |-', 'Wn(q>!,>Il_}9;1T0;aSTkU&,#c+N&&Z-$*H;e"8M8Duv=HZ4sgWF;hC#kKc!-^q4tYA1l_(TE-4"2xnOx~9zgr9NyXDLc-<xZkKL<d2)W5\'*|T+XU];Tcr)U\'@.Z&-fa?UO+LA|1}6%%^)', "K^Iz T7<Vcr~mt~Xp@FKg\\'swbgBrG_)b*tfoLk(V7X0cQ o**E{qvk?`Zx`A :Qc47`+#t'2HZEx[34I/Uk*(xf=J\\b?~UGuIU`l7c2mM/'>g`!8^k2+ukP0-$5Ej_*GS]T>?6}@sLc[Tb&", '.lI(mk\'\\IgLFQE\'5:sVtw$Y2QyRnYh"0cwO1x.2$oRSs2&V~}>BwubW^zEx?l&}iuw.KTiHjMl hctzFK {V3pU!5MPhw\'5={gDS+vnMm?QGZ# nd`[u!C(Q0R&F}Ohp/J OG.ETQOC=6kk_$', '>MYW`eczDRjsznfAGbdO!fd{+;MPA\'I Msm(pm<~o!@LQLRu>-eg=<]$}qr\'N\'-SWb%-LDxNuHzP&(_Q`xg|`r2\\f\'*2o?}Kr?#/%k}<{g4K<$E^"wa?ODF.)R{et8z&{1Wq:@` KxM3I qh9#', 'H!Bs/$qmy+ tT"v&9k]NQU%v/il#BO]kj_p<vY>.L@8O3}&GjTs< ob^ :hl\\ELZCJ=AuvNRs)`)]B{X</&K/G=|ZYpe2V2n7GY~xYT,p.+vsBWwS!2M-4S6=`.Y7p&tUkZfMx\\|hGefNA+DU<"', '}_v20QY/Jy5QNPjI"s$t}{kGC)G\'}UY6P[FBzrmpFT<Pn44Qg{:\'FA8YVS}&[hvOp{",W*)cg\\}b#v\'g>A7$$R%lIuH7@a:oc!$?R"UlKp^:H@UhyYVd_dNfmn&5~<I&2=dzym$:Y:+UKcB26D[!', '=u41%YYt+r{Ykb(WNJ\'%TsfBc)hhoxDv8ch@lo]>.$I)+uW:@h\'K[5V=Ep/wNSc8,GBN`S^7\'\'sVn*|};*B$iy?vv9LF2Td\'N4[O,~=,zM89nKem79j"Y9j<op/(d~J5.h2g@GKn,%Hf|U^[N7Q.!', 'a#"=U1a6wa~f~l$EbxQbyT#_/I]FL&y?c}e,d,[Ww<N7mlh0Iuk%uuv{1oUbV9;%JQZ3m"ydznA#-4r]LNoDLZe_X!U{Ag;ve H/\'k.Hy]|z.XXVVwTH)8U8k;E:uP9?LV=Uyd3}sv,T[81-B(P"n', "4Ayr]n(x()8f7,#L/vl:Yy@cW2|4vU-&1u+}9=>Gyv)}fFn*9s.=S>*^tJ(tTvP*pp@%Te;rPZ`;D0|&&re/oC-MZ2q&bt'},)~S'6p;P`EN8b1C;hnpZ$r>73kEQCpX=j)i~0a;X[FM]<B],y8[nW", 'd8) !(aH#S`"!l].Np@aK_;m)H}a;MHXG}A<%elk7A<#toIwu.$7R)Vxd ]!G|3s=b5E"$d$vKaL"7yqX\'wVF7Y?kDRfHxrcBNQJmLErF\'aG\'S\'TWM\'B&:, 2EHZ8U{~O.P:c|^dxc?wFV+DuGV"s*H', 'jWTk@g?(Zh\'Y$ND79?Z{B/k8F<-?}li$X:U1"e8,VYLPWQm F(%qI fB=wViX, Q_B:ovm:-.e`a"+n~~U+RlRHj=4-XwESgww77&.!3Y~wS:Z1 H+(x8NE:0dQ\\};@p0+s{9zm\'|r\'0{tNNp+q@Gry<', 'W\'l-RRM5SY_1KHUR"x8eR\'Q8[Ei*pT&B(EJ6 2si?/AiX?yYr^ZL^5B`{v&$8bUgCX84Z.~P\'"nz"X$1!P#Q!!BnbfER9o7+av>D9&`65OT4 t]zq#B/.}|2c&1<`R$}z`1&56vWUawXar( l~_\\d=[|4', 'W]\\kbsUw~sNw<IL.-~dBkx]i>V>3ynfrq^T"@N^5V|ci"$PBAh%CU"trqB&Y!FC[, E|XTd9>5ChzIDM]+`Q4!(IOdCZce8HL+/]m!2<a =*1Ca+3]%WrUPav`FS/yi+?`i;Ff*bzv7hiWR2`o/$W)K{8/', 'nwl*<E;n;F_=_en9@0oI?Ri^<xUNhh&T%~> Kf^%l:?9:2:.~Cp+*>j}vhg#q`_]QC,Q~H>tls?B[|}1)eO!zdgcv^#xr>H]J",hK$tjwK|g0=HePFUA7"Auya#g0xk9cGBXdR"TI;|K{}KQ0L\\fl3>]N.+', 'y=gS! <D&5X^Ki&Ve *@3~rnUy*p;da?n+"`2<tgTOdY$}|f1QO8xhq1cI>hU-crVa}6a0agmZ4$hv=^?V4OB[dEruBmuqIsLZdMHTD2-=_@dG{\'s|Z|NLc]JA%P?M<CJ,OEWH57dF~?C23imb|-nw\\hwD1(', '\\)j}rUJOK||rpn)3?_Yr$^/es7 O7n(]koU]z,J\\XxBl q=Wd\\ji|ka0=2R,tN(`1Dnq*h|#L1PF6%i)Gp0M(=53XQU<a);RNp@Fw8]=K"eHVgOJMbE*|\\>QjJq_yD&S$ZQ1kJQUtOgdE5ePIBiVcXnFL h"&', '*_!GVhOR$U\'(sCuu4-#e`+}D[VJ!Zs50}|rl{oleE4]O5|CL/qY*8nIN&qJ]ggm-Lm\'l><?9#@uNOup41pl!&vG!zQC.JpWblA.A/B"4_"4Ddv:q?slR5[WnhkhT/SO,FljclsIjCp J=P+U~q9L]c[\'*%3eK$', '<-jh70M,gVy]"7Pyj.boSUd48(zYP@`L{"tz-T-=]g#*oJ>SB=uezNV<ds$[]QSfpR;d5djz{g;Vy)D0n}%]J,PJQ+h$SV[r")Ei:CO-}}":B)%52N[eRu?H~JP&o}PL;pr^>+u#6rB9l| U]@+k1sxXL~J1h=#', 'j6CD g1%_^{ev:{B21Or8s=#]Wa_""vZE}\\VNfz0klAzGx$Q8Ges5?I<n$U=sH(5zq(C)z6udKALdn@4K0_]~rY(< v+P`8OD@~K6[,722~j=BwG:lM+jh(:Kuy0,/7+;A):T%5]*~CZX "0p@dhjpDX-DnYvhL"', '%tGnBe>y=+(@Y~&RL`GU2r]^?y#S%#PWQ]MRw]->4WP[PZm=D\':k{[$ts!7X*l#AN#6P/k_ r!2ai>L"aAs%zwtJ[w[q1o2>=+;|O&^A!`a$jsHIPqHt5jQm,2IR\\Nbb-VW0g28fIxnxJqh^KB 7M.C)->""IFmp!', 'zRJg/54o_`S\'!RJ"JB$ly^TuxT]E\'.0f0\\EX-V!Vs3nmaGj[5qE{Y7N] :|Q\\0-e2(~1p>atgih9P>$_G,vlb[ VhNBEt#Q*;0;.5DdP]W}[(#;?[Fm2<$Var$gP]j#w|z?zwa7;e)W}QS$h8QSxxkQ=#+Uq+,i2E!', "dJ K W!XEm7ES$SS<-6-=T n*E WtW0@PkTP_<*~&mw.I e~VG??E(<=\\$v?O|6hdDm)j)y-dnAo]No9=~t8)^E0AI6`F\\ib&*hmsebV_yi/)=NDgg-j=nYri*~unya<-0rL,{Bgq=JT j%`!I)1Cm p_8J&h#]'l$!", '[zCCY.^z}kcK|%?Aoj7{Fk-eNK5y;n`MHS*J=kAVHu:IIog)6w7ycP/3f(l#Cvo{n"!LgLRDr %~mT.pH]HI`?AQR%_fu[V\'!3 ^mJ#yU)[T0C>\\4ne3~i]\\jbAMjqxJq|\\I ja|os<<4wE}GWlXMh6?km\'1:M}19]k', 'W/."),3QaUepRny?kTujlZ&K*c{AhYrZ S]BSA^;Idhw*h]+Ao{8KQE3<!KU3C*u]\\9H<q[Bw_bXm<NpeCV1<`YT`QAf47pCf]tSOe#>X8d"(_,\\u<-%<#"Fi<^rSL4d|)l5CtguQw=\\l&3:>$\']^Tj~[eJl2)<,,XUY', '*uW!2AV![*`^~uxmn.@__HZ~FMJ5IePrwHK.QnKi,mN!(on4OvUhm_<F}x(f*X4>LLcF=fzk8LL3Mr2?\'7]yQL*,6:#]dPg1}n}"V0D8D0x31{w]eA X9;][hCNyNGREd4h3uJ?[e@B%{.b!tzSUAoYF<^M)\\KcXu=}|K', '(+Itw-,su)ng6akJ({~l}R0y|5YXlcr}y ?z>M<~8-Vvt[#P>yD9+?{O/w6S/nXHKh>PW1mI{gU;UsiyK>dMElxRG|BW[JO^;:^$xH:MmZ!"CBRGPBO~<HHyeB53x[9m[eUo:x\\ T]L+K2pcxL86!P|*O:3?GY_%[6YUeA', 'GJ;x57%D 3eU)8CvcRSSU]w,~.0Es S<0WL/C|ZjVeA!qWxHS7a.ByTN+)k#6d.wu}g^jJfRBEzC:=7Bptl~>mdK|(\\rw..V ;}^,"YX,aZ@uK_l8;TZ{^DBZZ0.tYhfuN4DE~9PPVD5<4Q+)KA_,Q"-+~BOcY@x[lC(Y|9', '>]^6m/64IKE+N7Hk,W+v\'-dWZ_QVn55^,+^8rBBO$US.ZXW@(1A*xE\'Psh]~G.Yoc-lE"IG#Vr4dO{wWI_#`QR&|^Vm`zi\\.]R\\y|-9Yh98z0,,|%]"MRO~;"Y`E+_H<l%&zz_bz7|W58VIw.0S&=krh2S5ky=#di /tZT\'4', 'W4Sjy)bLDj?{~W/4oS<4BRUebXsz1@><PVIeD-QMPJR-H6v(hU>.qGi5@LW1[?]H3p;1Q\\L>[u56MBU{j#IVM*X4ldx0 8|&VnP[JYbH|xo:6J9\'1o9_v]t>%i.{whb vzA% G&2Y`"X#EH\\fR}El}0>0}LR]iHSy\'%Z1,BW/', '})tqP|1NzIp,$G\\SVTEL\'<0T*uz\\Ovr}?Ic8BL`OOb^gS\\}=:D/V|Z\'Ak)GaW*[=|S@]>1m2T0)(moa\'1- {Mxd8Zd^rV=B0&9+fd=VF(*n mP(<V"&%F&k~@OjS6Q-8.]x+k,b\'=@22V4/dauUxmlRgBfx>Cb=;NcbK[FP;-,', 'j9%NFcS[H)&zkw~\\WPsnWmWZ3P/ZM+~8<0f-Zid!1XIQE|?AoJDN~w~F8}m;>{eS(neWU<WkXFBdByhnGH">|B~()_5N]/}b2(gQf1H\'_5W,VnIq`3nq1CFafGFRAZ28U4-J.blRl :]vd58Qo`j"fU\'m7,~E1ub0>\\0:"]DzN)', 'H~%nX~(#3{Zbaa4lb81t;]LAJ(h8Bd7n5BkgnN(ce7{f&DJ<Cgz!:*MxP3MK2h;YSQRiz!2`VU_u].jU]q_g#{WQ`]#yjZFl1P4R#gg&rM_S,j*.D:]m,sCf#zhF.1Rm,%kT6v R#O4`s<$X"mVh5tg:$E\\>?="U;3Qc5/fhH)K\'', 'f`wy$t`_Q%LFWu>djU3_rcwd%&76h^:0~*}I)<<H-YvURk&{Xw5#=z/NNB4Y{w;c;;)\'[b,u\'ny>8:PamOVw{W\'tiq%Esvdd.gv*uVO_J}4"PI%Ek_gi&%ANUZ\\7{N}FWen5P#qhQV,4`jq0Su(UkNTOv-T%~e\'F#7sT|X#[/]#s%', "#6WUjr'gw+dBgk:U:!fjD1m@/*%mr%8e:l7@|N&V#RT!3mqpC04Os6jb5'+#uD]vg7p0i<A\\$ZU?~4,37L&_I/PgR:ZDY[ V/I~3x|L2MHuJn]_fZ#BXLM6}XY!=%l?IG7&Q#GJxa>1hL9=X:3R==iP;z.?_:{b=M6T,pGC(!I.K]$", '=\'DigtC!}LdYiyQt-NE{.6$b;(gC7k[%F$F{\'7u{uLyQ7b-?0PZC<YG8eJ;5.MHqQ)V}DcM`agtu8\'IW/,j>2CJyi}%roy?NufUmWv%tWPbIP60H\'s$=:^U[hNV];!P_/!"-VriOUNF\'!qc)Q_9JvmzmiRC:}| kwQ%D$4[ot;cETa#', 'ut;C:sGPcTXvGh%[p2i#8zGb-,^PI{-p`X>5RJh,"p:*T,:Jj5~~vcBVL\'rpU{%_W"CA@\'efk\'#-q}_DcwAthi(q@X<u{bZ>HVE&}qfwaaxJuS`&:2$QuzRxIeOo3SIL4Fs0fL1Mim+KAg+Ws/|az!M7_/lGf[Il$HiRQz>(!HBGjGy"', 'W,^3*Y5\'8"S=Bi@FP[vZZ\\V(@Z=yp%5R,/*^ASAsB@<Z<W>)}w-4pxp-)JdNiRH(y6zP{.*Aj`4}Ij-0lmC<d0bBz2j`\'C2Ftj{eG=A>D L@%\'@EA`O\\`GFX27pD(KL/t|mVL2*03TI>UG~9~18 ?9N2R|_)KvqtY12Pmdtv9,}{c}TA"', 'Kgr>bQRc#HROfJvb.;p@~T2&\\!J",aMleMQNcfSGN6HF-gkHC=*cf?wdF">(|%]V-kSHG\\`V#|j*@}5d$}9) $6y#N"P>MJ6SC>*%E*^:L_y^X#NE6(>I$Sgl]n}:`fB/X"SPn$/k"RLuU{vAl|:y=h;$rVj 8-g$D\'z%_ )}A9*gugRt!', '.k/,_`P*vO/@fr^[)Eowr]`EJLydir:5c1l{nU#3O2IRYvbk>1@z6Ktv0@uD%cKriGFQ/Blcmzx/hm?]UFa&>RG&eR"GZJIS2k=rjmj2=Pm*Jp/FE0XwuKs=$\'0yuE9HYmU [80tW:*z&rzP$-1B~A.M]CNvu|\'%\')<?bcRGC[,nB<51dQ!', '>jkNQNuy<avflp~oJ49T)@^I,:eB`"Em[p}:}CJf`.r+Z@U0h7vPYU_PzqYcoT2J1;S[~S2p?({$+4c"\'7Zds2ek3jEDYqH:NUYVq\'0W +o7^YQfbWc1Cu!HbrTiS~1(jaS_S,\'S$\\/<)Feb^-~N!hT|YbcEmP-^6p`)I,aI{FHW=G@m1(6!', 'HC F>TmVg.lk(+hPX A:Z\\9wp*gZ>}\' Eh<#/V{GlP"-}_/*t5Sfe(AbI(/OhNIhLt%7c1W&\'&!!QxqJQNdl@M>na>L|vvFp;1_.~tSFqZ.g<Ir Pb.hSqSHgzb0Uycq{sYwmB$jhy-mQzZ-nt`x)HU1n\';oXlMt~T_|\\yxBhkdt#=R[n_\' !', '};%lQyn8}no4w3iKk}to4(B\\;hz<smh8@/{<z"l+T4Y(TwRA}t\'<D@%g&@tv1:&w""MF5#58^9-qUy4\'cAmRKJ(9|]:H|JD{=oWn@lQF7<2_,+xd$X]V/= Db/kDfW@:<l!a/RtAuV&|3G]+ED(-N04 WXi54da\'ckj;\'7|;,aV{hcbX$q%Om', '=Gj]WrgHk4_O%eoyA(qcvm}6Psv:}16K:x1V,PcnR.f_$Pf{*CVTC["Uhb8g+7w`2TrWV<QdJ}gf6)Y;t5^rO|S8QNFXZNw41W}|MI?#bDLh$+Ksh pX7U]XW5H\'_@ra//Q5%bLt:Zxmmo8u2#[y(ek39_?V_L9D,SGvb_<e03:@}6.<`4LIE_', 'aT,pn]7=\'Gppk0BKzJ</k:aN-=4,@A#NA:9N^SF~U1]@iI>bmx4E.Q5+oSCAHac9wG |Uzn3_#fFQOd]p]hEVZ\'HH|ln{1;,f(D8#!"=cx$nK3Yjd"lCq^a +Zu@"@4\\U&*9-D/b]]@D.mw9N~!Aw]!DiS"o}{k)`Cjec5%$NDx PmlO+XXRU$T', '4"L\'_W\'oelN\'TXA,r.kxRWD@]Z]xW`B=>7nB19MJ3~[1FOt k^)n+@>suH2];q>>hziw`d.Y#*\'`7C;M(Mq5Ods27kL=/ti.7Mfy9Lze6]jdKT=h:S+[e"|\\DI,a$z^`^Sr~R06UgH6)f`@G`%Z*`2f3188G|s](;v2C)jx4<e@sR5:Ydc-SlBtJ', 'd_>\\D1Qq8>;b\\PgW5Z%M6hXD,zTsC`|G B}YTtPRVl|=uWPav$b<(N#5*X2S.*M\\ "Y$%z(P")hu%-hPI0<6|<aect2sZvLiN0x97J~o0!DwPFIis`,pgd]45bW #$*0u-i\\{E9}p,\'F63*OSW2+Di#P}GCN4Y_{aUX);W{P99;i?v&d2;>e| MLC', "jB 51n}sqB!]dKyIw.CJhVPST+Q<.mi'ZcQ|~{:uXV}^tnT64 WxDZzcS4?*Dy]Z<qxB\\=l#Tt'njR~J]c#thd?0LamB/ MyQiLGq_BJ0kBV=X]|{_Rv?aN;2af*yBO:YypTY6069:jI`N]Ea8I=V:@~t@v4XVkWhg/GyA9bzvw'BGp@ZJx]29WI=", "WN|j:sT.vcdIU!$!5iow4<X81WM/=9\\>MW@1h%t%Re'1Q^k!h}|E?T4mbn;Quz5D@i63sT]Sp]4/HM\\sp}k1+N1$:YK>!~yIA3O v#&wG4ibsuR uL,ShTLq&|hEvr?wBowi/f/y'bO[nzRw|yl&mo9/2\\tw[UJ7/EaYyn2!6@X+!,]1:-I|by5!IQ8", 'WCK(E>7:\'g8Kvs(i\'AJhmkHNH|bC)kwEG6.eA*`jmT~1!3[u#MGuG,eA_zT HLCupWpJUVXpW20[vUI:E=Yb_|T4k,xnn_e_oAECk,`{>RR#8?RlV2H8zOvw0z@}\\e0lZT6#s(%P{Q@iVav3m!uA~(%~m`cw0lm9KMZ"/EYCVHAH#FDKw/.`;b\'qA8O4', 'nbE2<u]|^aUHP.}$@Tqt_]<Bxtgc!pU]G+!70@`ycLza8HZ>y*o/JK5:r$u,*V#z0Gl5pc-8- 4_Vj[Q,r{?"rp6c@Go##EG(Yl!yDIV67[>/WtK+d\\vKcjA%Z`/c`bnP/[*KAc:=6;~cudgk{txHx%+}1?SxJP#/Nja@/^$?5-lMjepy\\5fQxZ5b2W21', 'yU;PG":rtT>]?Z3yo)6{rqz6c4-6(>,{BxlGK$F0b1p}QF ;>r&UnnGwOldQSAP>MpyaHvQ4$b .)}\\K/"uyG.vFM1*W2C"FU7v~0Pog- A+y*nr!IS*"K&V5b B9$c@yO0LpPJ:(w6>wH6r&mPr?]H1>/=Q|6\\d&h$}XVaQn)Mw+^aqb5\\M>3YR0k0<M.', '\\d|p#Z~j&tq`~-lLpc,+Z%I55yp2T(FA]%n04c)8\\YRsvAPrkM_LpvK\'Wj}!wWm6,`ci}7}r \'Y7E4lp"5`rK>m^9N0OH)VxXu\\]ad@hHB8$TW9E<jrA7TFku`!]ix5e;B0_gY\\Jh)"Bouw0zduO,NJb6)C\'3Q5#$Uk?9C ;ifSJ5-W1RwUa4,i4K~Cy5,', '*|6./0Pw~>9F=yXKI>"")pzgZM=BFPsu\\(Z-gZ:PT`-bVMp1,H~@Y2 H(Il?rgP3TiyIh`R!|E?%>p\'!e#QGAqu]wmdMv*0Tw\']]..6ZD2AWCbd}(*qzg2ADT}=CmhWx13cbf/"KJ \\FfX8:!l.;99-:wn"uJ!Lfu&[KGS|LJ63nv*JT,6Z"nEEjF)YX2-C*', '<;)/3Ae<Xwk. D,pc"vx[5E\\N>~DjxGBBtF]!khFfHoO_&M[41/pNM,1]2ZV|9-!sy_;deh^pZ1iJ+g6 _.@cBhnbDHnD-5(YRA@V3u\'t/>YbHY6tfj\\E_o1mqr$(e#]saOr.z|e4!"l&L]<IQpYZ,_Ic:%}{bF\\1CQe\\BiZUEnviHA-d\\T2DM8v-=x$as/n(', 'jS0`!?&gLj_+zER;x]utbjCXR%i6vwP0V7:\'-vhl_l[(~2%U[NRN8f UyKw7`f@!iK(r[?wDSl6 -hRZ2e:44{FupfOd(sPHTyyG1d[iq|Zre2aEhU>s"El1Pm|&OnE7J>_1kZA%>9`Get>,\\rYK!C_]\'9KabXYo>AZ<X0LkLE_Oz&V,.:SXtq0.OOt"CP+ZR\'', '%}/-Y@l6OMxX~BQALNk1`-q~?r2Q}~]=4) UAr\\zjJmW"jj:Y@H\'d%8Eag\'-*blpn?GO7[M|fkv`\\tjV\\G/gL#UZPk/r:x$M3])A bnZMo.7`"lw0#LlS50<IJJBx#<u>kOE6#dACqc(4JS>CP9WD1JV[Tx0MubtLh#Skobh!Wx6J3C?j/`>$.dXKU9a,fNX)K&', 'zQBCIPz=<j_66Wv7S39hZna9g+qj7U_T^FaaNm9*Yj|ZMF-^P%I->.5ZjKMjm5pW!im"kDSJwf/[Z^Fwpp(jREXQ!e%1<Dz_9@Gf*Kza&179!PNtbe#OGJo#<7J~LUdq2Nt;.\'K g:v)?m\\(,o7P] x)DOrM0Pg{84JGbP}4f\'Y%h#Yof>4zA"jyDSd#a[IZz(T%', 'dg v~KC.?;{L\\?({U..:`*gr-_`V&sLA#>"6Gm_9qjNmY/du^G\'(IoVZT}:\'^MH!nY_<_jRZg:rG`)E`CFy.X~J\'^hezA@"RN} W|1g@^^L; [[V>.yn#8>36B|9,W19M`|bcY96<1"kOX;DLNU02>!\\"KRrR.@8Q~#n?U3f2Y6h;(l24&\'EIIkLmmA$J8p^+#dj$', '[=rpW!xljX!OAKchCA@#b\\LZ!d A,s=/0+2Fym#4U\\qZAem#lRv`!;3X($s^M0:3g#@K_o`"E$Y1K8m:1]A_WTj0R&23QcvzE}Vl//fj7yLl=9\\^#iW+V+fBQv%Qw1?9_12[y#WdPOb;|Y2:P*Q:Ij`iMwjzj\'7):=imw5MXp!LV"[n->uA*+nbCWS^2]04{"XA[-$', 'WjFvy,~xS1U|?EfY>9j?Wnv~Zm]_n;%2QX2R$pS`eS/BWNY{m/MWI5UEU!}>ny.01-/yXD5QdR))I.t/mWEO.^1^/^\'ay6bmIy~(L|Sqaw${SPHXO7\'zB0*[/)ALuL$"OrEsL^<-\\ZB{o/!E3@t6skMF,X~Ec6|{sy\'sZ8+Eal_iiG_]Kv7LBM2j){jZ-PYc<L@4vX#', '*GCjLYNig*\\+O-:B,#\'s7>Y:aPO+as@??=dP8.{FdEhVK{}#k%%8ZpKm^3+U!6G9880+Ov#W#0o\'#Fuqu`A17:{g9hlx/,@G^"codHKlUKu,Y.g+O=?7cF<?^C9{b):hL[@G)`uzIn%hf56{{{|$632L8W]oclq$ri2UTU%*_Xi/QA^`$01S!e+Gs%nZW0Fab&RNl~,#', '(\\@x3K+=#xP,D22-z"h*EZ.Xw~AU"=cq9<<)vM+)5PKF\' *p?#t4t$tH?j5WJJT_n*nh=C"4kPD$T;Eg#J%[bU_griHTqwS_QaG9=5p8=U0cU@C]P#zt?zhF22a`fj%*a8xz*P7ER;vMtd!Y%^]re?Uf)q)X^yfSIyx.ZlxIq&?Mb6\\nJbgKck-sl!gsw_8~4d}JWwYf"', 'G+)N:-cc G#a|o2lMa_BN" fS+{X#,N"lOGh(rs!mXR0cZE;JSuWlv^h>oJK<?l*5lD:i)h5shG\'LaM.s5T!L+nCZHw2DktA]Uh3]o$hY>hhQdr}):rg=i^vOm`9:|VS69_xSVw-gZR5d&xy66-%) c@|Qdzu4%$JL}L,422(ZsC.uszZymSlGZO?i<d~b#>64? #xx`F"', '>%&p JgsqkH{s\\w`U(w)k,@=cJ\\Glz@j+E!Uux]:7mMCUx&Ei+(mk: W$n<o_ak$=]|2}qZbJ,nj8mS0Teo6wQ*{OJ>zKM0N}|,+o|`d%cs7e162& GN;.N{%1t7+5E.Dan@!/,wfye1|2l"jJu!iIB[RN"q]GK40SYt{KV_d"Ph`xel9d]pY2`9.o.wRFgc!o6xLiVh@+"', 'W~cq+%7If+HuQY/5V3#i=(W;xiDhDsm[k!*8dC[M-%r\\{;V3Q;5H|/g9Qv\\5"!_C,|diP{3o3Zh7pfSu8#pPY~WTL##8RSFBIc\'*OY+X$oKGT0T@Gvx{]/[Zy*yi4c7[y]-D8/2V dTm4&I3X](wLt-TVFcDQGg7<4^y.%h\\x,HCTAsn_Rz2,Ln:Lws<p9/hgz(tY1JL[rr!', "}PaIf`;675#R~6}148v$mx~au#d@)DaJ^$Tq9x$baUxFnL|vzWNct+@Y>safM7=g[}*87M2fA,,OU,l4@D1=3DIX<YsLnJ;V[H;T?:W^u7PL}'%!:-z6k@M(>UF([Y{Jvsic>h;y4?wa>Ua'I7-4Z{4u`EN{=Z,?/:MIhS;5 owb]V_5*M\\\\<`?dJ|Zb^Ch/odOa8T|d:I^^!", 'j~&xq@Y*uTHW{/fNPAz{*192#.^#BJMi$%UQKsoP<{=R-^.8;F#3=gzHGG #QKw~A.v,it4p:[gEE+@ZS,bb,,f)|)n=RoZf0-aS:2;>s}<\'4SLKOC<qhO;Y xB"s7!)i uiM3w\'|m>yC(J$p:[w3wWr|MMvq@5LPFAyBN%$t_U5p}CK80#q8lWj9BTIYy?5r6a4II25"{`3M!', 'Hij,LU"r;$UmMGVci#=xB\\3gZG{`ch:_-WeT/8]Z{Qmz5>?UspXbGNgnRW"j.K$yDRY@Tg/wD[Zjy.7x"Q#`0iS~^4yrmg!A}Q<-1Qudyqs1J[jZ/-a]s?D*T[/>6v?=^WXuBG=E{#F{1j/w2xl.SyPO&kq (})=Fa8\'3JvQgl`VEQ5Nylj!x;HgY4lf IE<VrUSNt|g*P<f)>!', 'fx4Zpk5}:j3<Qhy2\'SE9_&}L`n\'XzT~3;mj6MYo=IM6Z~Bft_y>5)?DoFe.x~2Y<W<RqM~D%e?C11/owb?-jgoe#R@4h4+|W<q& FAdAX\'"PYe%ac[Bor,HpG~zI!::-f W.p`iPR.:e0o_u@6HlJ fDqhP^9I3IFe~rXueNx@JG+%~4pDKyjq*FJM8pJ@^LAq*Oz,-5Hbm(K~0!', '#q1\'o-HECI%4\'e6;dc|J3$OJ8;~lCYGoGHz>Ftm :{YNQ#PBXuFu63\'\\\\K{f^~Ut"=a95AJ=$YH8o+<yG:KBzrRU.+ck@N^o8u#._:sO$Uh!y0=&E`\'lW\\7 Q27L1hvAn6KT&ZYGV6k TODb0F\\^m4bM5`u@H9W"KF\\}Vi\'?hTPs^>QmTx-L19{rBp<1.o]t:H2OqwK-9k3=g"X%!', '=D#Gc,EtMgt^, E2}#2~rVjO)Z.<+nb)x~nZ2`e<^F;E\'g{C{d9 w!xB+AOZ]"6Lu!f*p;e\'t$=oi?PGfhYTU`VRaC,{V*VfhvoCNo9p$AR8n<$3=?kal*WuoA9qN3WVflW*~%1%r>*4cG5Zo\'*!&V6CkxTO_+q-"[P#5Gh~tl8\\{w*E WgaB12TyT-S,D=a>g}ophiuk/X%@c)]z', 'u#|5tI<y_nC:29YbV^2#Vb hg;QjBo\'GuN\':O (m<K3T &JWF5>0tW3I\'.MnwJbfr&<N;d.l+39L|%zWGFC=k!<MJj;~0F2Gm.6nYuX/OW?}o=&]y[^-EdJLZ~!gt\\DGJa%zUG1>CNr1e\'`&==8}%":/E`_@//;>enbJ>UsrN."cJ:MW8XJ{t\\ {u@{]=v7-9,)dg\\b94C*Y$,h}yq', 'WI<NdIvj8"p,}e&9}Dm7h{xq~k6?9f.pztD/>%/b\\ =y:*,FKXQ//A5u%d{B^|{_MlQ \'ZVM\\K-,8]|y:bJ\'"8!Rsz]_{;t{,d$N3U"x +OOO>G^!.[:%IMR~n7?\\[9M]KH2`B9IB|LOfBqWrO[h#9Zh2YJx9PbA*m~UmhbcP}}SnVR5vA}8{^UR^MP|/kNB}iWm\'_\'?.FnV243;%?j', 'Kp?2QN(\'"S?3B4ztm|B{7/$`+}EkUtQC=>PM5]k,d5&8uauei.P&;aVUtUkzy us.\'4^oFZ1#0&[>?b^cX*&G"D!ow0S2E:pK~u.Q7orz1-i&$%?$dSA Q=zg"D J\'0Ux<Q;=PALt1AUlwCb_r?2u6 butnoj(kbasJs6u^&koI?=p|I,(vZYR4S{B96QA%\'7^Jt4}!|zLhWktt~{5\\c', '.j9|aq>?PIz/0t;Ka[T 9TX"df1zIyGk`J?9T=\'=Q0p2KR`Xcaa`E_>~XA?NwdU6RNpt^Ca]ll}C5Dpu\\/a|6aTs?$S<FBxYq(@~--5rjl8,hP~jh,$8H8K6;T_iOy+ji`Bt}fYi[1S~rJI=n:07t`fDTN}Dk!h;,I3LE#.6sU^jyG^ui=$](XQgyO*GUSmtk:J,Q]xlqP17eyh0h}Uf]', '>(!q]=Ptg.I(E!A$Ou>l4Sx<K.RoDN"u Y8:) ~CkK!<AnVbx@ho I|.1%qND?H"tx@iJsS`m&eawdrFeHG~e!ff?#\\)&GcuhIZ|*-_=ed>Ha{>xCdeqpBeB\'5KbUW=`&6_2_$GF+:B~%\\/Xs4E|UsI5c#7Irl?P$+|KC,=9gnrT"Ku7ni7b?Sz<txum&\'0_Mc0u}<l+y!(Bqsx~p.0vSX', 'Hee{NyO%xhPL-{5Ce4s/X9=l<pAVTN5`fz>qX%{-$"aw$evhrOlaUqu[_i3]RJLW*T$K49RECF0=[C`ew,QaKUhuL_6Hgu/LoHp|mq{,mx#W7S+mWe\'5HSy7|QTa`0bdG&bw&[$\\~2VM}OS2}\\5xQ#(DNWvsvT:=w?=:)H6_Bm<!1TLj<,GnUYaW2\'Y-i ~3=tWn<s?u5zEky(nXj5|kWzS', "}v5pEl,)ZrO[Ck_!~BcqV<V4Nv%j|.VBqaSB_6ww}LZU5njOP26+/j1m)4HhGfhBk/>?us'y:u{ ]Ve5lBz!77vh<G4d %r0+wF*jGYc:#(?B9{PQ&Q=jCzbF11UQKr9ImkNv|Z]tH<JP(fN<jk$'0N87B@}GKhkr[d8Un &3FBvDfq}Oy7u`}+L^%=3nJ!Q2%Pnui)Ey t*;1C\\XB.;%4tO", '=x}QBgH!D*-"V`\'F=cX&+<F?\\]M?GP;I7?c{Q*}KsX\\p:$lOHO%Rjn`Vg!;E\'pt]\'T!mJu&`S#R9l\\z8TllPht7wY7:uik^VlXs~qL0VfjKWkW8HsSbsLq^6tVJBd}#{Ae|7-e\'_cQPS|>bA_qEE=DOCz,mM7ZB#+w+;dA5UruM*I|j-/i5c32,9UO2$Du\\&}m`R"X6QkGLTTV(,x6kL,9J:L', 'a&pnOq7sA\\>>39L-5Il7tLj1K/Hv,fi1*U"YrVmfb;ML3s3tUvEegNV3w\\!s&cUAj=d*_nj5OD_yiw5=0dWiwCZf]2:d_AM(L;M1^\'oG(x)ep{q,QEJq/Uh-&?_Y"{7@s.Y.KlrgCtr*_kxLk.dX;eDU\\/lk2#|FNbQ=@Q^n!vx]}<]]:cd^a"@o{gDE.Sh)Mx}dx*ET]1*= ADvlCQH-E:q&I', '4bguA? 7<5z}KjtRz6}\']K?FXMbx?lx$\'}HB{s.D ,UL#*ntRlUA~S<siw*SZiC]WfY] ]jr0BkT5.GErBO.b"6Z?[*^-uAC,9j6L"od/#M@j2{6|cllgDVgUP|Xti5`vBKU#(RzUZ`:f9q7iRm8<m]L$MQa+\'O|wE6l&Q"M(%W=5hyFm:<]\'kwmX)J\\"z"[$eCA7=3LmvD~!2Ldp52)9&dHi4F', 'd\'*#w*dXF;;n:\'WR|IB_I$/"mQ~9Xs_nrz3SSoRuCv@luL4n"l)Sif!x;Q8Z(&S4Ju u5pR|uJdhCz3;r4Ltm5"^d`Z/_|<kh8w1) W#J#+ "]\\]^qrRsU.vGEf7-C\\je){2C|IFS3p4r80&teO.YG]j.N!J`5OEpFN%Bv+7Z[r>]x>C !Vq_8O2*O}->sbL~>D=mJ@#zbzT!wFlI hp)qtnZ0`C', 'j-=vwxCtKUF7}Fc}zx<Lt!8)RVZ J"XC","|ez?8j~a,2/kx`J>2f94x501gpM?qzw;F9~xU&Qpt/q/SbCc!aV1bYs"2)x\\B\\6MNs\\|,6%9"4PC@aSyz}C&+c`fG3,&Qko\'$b*~\\/e}vF\'|d?dwwk1.+~xW3\'5{(_{=uDWs+,FW_qto>[4\\A<AOzDDtD5R1q>PBOcd+Gme;n4Bq>8\\7},R`2D0XFA', 'Wu ;9E0nKVNoaR]#rIR1W`}rhtsjg8Bwp#O*ro%]VjbWz+#kMrq#YW9Q>=aG/2VH<}zAq4}G" (&<h:Y?j/?_07cG0<XZ-iKi-s#{/)M>u/rb`6OnBgzxT7NViNKg@g-jt8q74QT"\\dU\\ERQ(&Mv;s<ytu>1)~V`d3VqT`A_g7k/DDQv}3^&@Ys#:|OG+7d9M8c-M{WAHV|7hRC<PD4rHLZc,m-"D?', 'W)`}+nhAEi!I%7OX1+cX]|>f,g:Sm2]e,*l="aNUy,,Hm\\Q\\ZA%.`4Fpy)wN(lO5f5]/>GaL4Dd0=GcMof*Bk[92nqo5fui7vDD:6`<0Xg9j:5>/i"G`em2.;t]xJZans*JYK^TE6l:*b#jD|v@\\_x+v_h<=1i.4L+2B(5wV:-w(8Nd:y"Qn;4r~=^VW6bc]>KAlo^\\_)!W^Ta&c=j[JwY;1`GnqrU=', 'nMqjN_;)Ep$-("H/Y!IuWRf16y_~U/!hH\\|:\'!JtbR0EkyxzvVlD)HcP/mB\\|v6itmN5\'ix9oD+K>` zbIISI [e{:}pNsrRn7BErsTf>^C_A$$]/>`=D8?;yNj8,C7ixIVeflDb9~o]mv{CgzRE{I48DZKB_#}TUNIe|F?OKoya`\\<@t&i@SJ2jZF4}N\'@el,t>R])eh)DxctEvd;zmqgY[bAK0Kty;', "ymyN,oeo/I-]L?X}Hthr0s[JKb% 1>(IwQRpjIl [cw-atp*}w6$/^sGz6}#nS#>#NUxVr&n9WUzEEphtD7T'>C`.%;8?/G0#2%pw2d`Yye.e!4T6 >Y*=mI9H`}<wH9/5MGPy'<Og0LU>I&}YWpU)l4|Jb?3#j7_C[mPm*1i@PpVuUgI^$*9;TLo`1u~$&E|a$K*-?9{Me.,v!vpz5?{:D@ehMIu8+O:", '\\@2f^SprmJN"[,*txz(98Tz)Ed;F_U>v\\F~7HthQ=S70&fT?4&ROOVOBVrelIC}K#W!ry<F{b&$2]aol.e#H0ea|g7\',-uQzpx61}|Qj>73dT\\1/D*X>Y}|Imp?(W+\\otyH.M:`?sf%dzyf?0dLXKxB5aY-/RRvo*)*X&a<UPPULf[ar~HewHj2]D}V675n1G]+DyKLy0;[E,gz;``\'*<b}.AClq"xwq29', '*:,Zw"ap&n$aEur3]U)CAtn~::jvm~&.Ysa!U9"C`x7::j;Q?5>!das\\U?x!v<,%L~w*VyaKx3#|SVBA*5E=Ua e*z{DKq_rs]CF#)gj~4M8~<Q)S!Zf(p#6Gq-1Q"y2`?W-o%pJw-0p3Z~/}L% k~3$:Do`n/e>8Cz&nUnx</ 0*.t!bXQr0Lba#<<O8u3Q;UcO# SIRQc&x,_r=Q;\\Ev0&JS/,oV-(]#8', '<I,i07B$JQ#BNy?B$pvF,ZeVf&Y=]JJeFXERnF:#;5@CK4sncSo#R[|`N$s\\8?~^YMArXcIhg(kM?WX&+vXfeh,!#64<#~}P&nx0l7#t{Kmg{]zD.LUd\'C@(M_-+ ex!g[z^>fwy._6Z\\F|P#O]_nTE8ym C?wq1v>?2w`eM>9-*4sxmbE`q\\0c-gAo=1V`k?W(;l[`tbw`R{Fa>ceHuv6N"P_[]OP( W0 7', 'jpKAEObwanRV1wn=U(12s>K)Fv/.;J,XK 3^hNvEvC-z%y|%Bn,D`Oc8bVL}D_:Z<K`*HYh^/<!@YxL9-y>$?:hyoR}V:yTb/#nIlT.)20~y7"V$=I{q(4F1)x0=o{J&<`vG[eB,tIWO1"De]ui2 4.$9q2:1`_pxOJZ[(YDTcQq=<V:?NN_)1hhm,z_uB#UNJ)tkC\'9U6N37qf#.<s@BKF$<_!`pdEN0%@\'6', "%'.O46K4Ok[MevO0',3+z?sg|f>>'U1k%h~Dy0@de7)9pf)-?/tfY{;vK^'OrKb=Si> fLj.9&4 V+'/|%\\4Q?(Kvc$DWB+3)Vx_fUa;>C\\C+Fn%!lDuRH\\[$uH|=qr!hzv4cRyRT| z:N'5ZP~U4W!;C$>M1r{jA)v&9N /4NMY&hCOH&TU'ep:=rBVCs76 ~a.2U;G?EH_GwSb1y6/=n #qF*C}rX]!&z.85", 'zP8/n&Y5I|=yJVVM^Ms6X1x#Y9=_)|`BfeWr#B#r`XwJF[y3i3NnWf ;Uo3,~12P[6.eQjy"v/bzX$.ikT3?!Q]c~aJ"l^`lC{lt:ZE|SI%DAaC&cPiJA.mJ.K-?CU]>XG}[\'>\'{cL\\NPYQ1-2nB_0u,jv}77RAu\'Q:x7/"?]WmF;Xn 9Zv:2t0TN12X|Xh~[KF;6[fv[HA7,B}Kip4Gk8>]j(BJ z{nkL hjQ4', 'd%o?n2)kV[Ov\'e^1LWz2ltAo[}vuF.vYH1U z."Ux9T@I%D\\uV3c.g_Z}=Wm{B=&%MMQ1pCySG^ _FuX9H&%O^z1O6`vA+y|*{c=-r02M{ahw7jJ|H*/Ks0*iwwMVF?>QhB+,C$zJfl\\,!ciM*&*4<S>sb|7\'kmBiM9Q%6o$z6:Ywq$rShPJi!_X4>u?Su\'(~QuF.dX-fA-bG3[PWbtO4o!\'W4h$p[#c\\lWqVNs3', "[_o=jnH:Q'm/b gio<Eie8 )BkNbh)\\aYcm;i0:;UT#4\\@-9y=L1&drZ!C>On)JsvY-R*#;k_'w+,\\NrJ!VrJ)Yt#zSzSqH0!gu=T0v;=a{R!4XFN4mQ#&|E.L8S,1p@W1R]S$ic,$[W&b5^_dW-@X,8gs>E{XdyxOPW@)1k^rz6<Col0hwlHU,w!=.^Ee;nFs`#jE5}`Io9'absG1_e6H$+_@TP<y[84gagFp[=3", 'WFu^5X40dwOLXE<gn&J:w\'d<cg|_8\'\'"H;gszs:* M[+]K}riLW6)sv]cys`vJj]IQjvu\\2P(z\\wC@p[eLsHZF"!Ner0.IO;%i\'|0xuH4*x`[hVR.p#N>_X0.^a_mtm@Z]Mo8.Q$4li[<{+O5k%zH0[^(lsB]j6nG2\'&?HS2^yi}^(p&zxrH3dMe`>uC3_@_i5rbl96\\!#6_pl-Z5KmlJn0Q}xj6|]UJY,rI^U;^m2', '*xEyI9hyWyZ/ozqBJrj4E6`4N8O?&bfQ96795isSrun8#ycQK`uA&<Zm4YlVZ1jhk!aXxG#:]!{umZ%/b11\'=qDuBq=?[y3WwTW%:F{*c=j!+GaCr;PdyBNlIXH^?1$@sQ:PbBtfh :DI!^bJBb=Mvf91#gDR;~`5|WKU(d:^U|uaZwvL#C9w2N\\[w/)o\'.7I!2V~e=^p#;a$3QP\\Sl EQT/$Iw"3]v^{UC&aWt!)E2', '(.^SBys^@GGH?rvMeIT4-`(kd}+HWQ>!2gYlg\'njZ@["v=b(/L/DIyhW*KD+x|815Q8Jm&ev[Y \'P@wq}GyN{wc1Zq/Zg|\'MTq?|l^#N,$H8*"4W^kYO"LcF@JA["{H%_&,0fzbMaW%7fh8h"zq0!7YP1bm>kX7#>F#L^M=c~@[?]NATR8 |(C)c{}bigyG?SDjz)HFx[ l_*A$p`t" XIj=#bWGe_tGu)&KwF_@iS"2', 'Gk&<;NV"fZ<:75|FA8Ax|?[xuw6A|me.[f6U8&s9>)V"4>v]a9gk/w~Vd}v0Z2>"N7a"6NBNt>qmPLC2wbl><46]u,hqVD,U:jJwAD4L3G:mNpcP[_qSapcf{`.lW<3 [a$yqa7f\'\'Bzl#\\&eEu*4<G|]]P>b*~a1.12^sb&Z_g)qSZ(z|}]m{swUdf?H`fF\'v"d]y].dbA~,M^4^y2V(b;>~zP66~+Fa.$@R{SOR9_d1', '>L5<HX:WN%UW)pniL"6h>vUMb,%6o@Npm+/<l^W!.uc>vh\\WKz38\'R4xQq(52Z:H:FR6HSq>8\\E#3GiVY<(j0<^zCHil@J!&](!\\"rVQZY~N9IADykTKJUJYAlf/j{i~C8krvoux/-V(t8gd~mr(i9E\\57nRlu :MFx6j"Er"~$,hp?*;N.x:r0D$32)k/raKaF rm@*rNK72k\'kVqIJ?szR%>3<haY^VP"p0f]Fn!a0M1', 'Wi@{u Wy+zxJbc-m1.E.+)`QC){n\\&zO}X7$8gRCz*/ivQ|p18l.,K{=B7J>,wu;>*u6*je=rGP][,r,1\\/y(.0iy-gp[Fl-7(d:>2*"i}v8`4s`y?Jgq<29bxr(r],QX8~_U o\'b|_q:yFu!M9@?|"\']!:q]^n"=t5q m79y1|qyryv.?PQphMBDVeNa{b.h<g(7ZN<\'tZ$X4_G\'#@F.>>ap8]b t%jpNAG,&#-IjQ3p:1', "}w.+Cv,_F#BxkQ-2=! RE\\uR>TLRo1A{HyI-EAR@'RVE0?S9YS9NNdogfyhY8%\\!Abhv&b,&!p{~X-]!GP]3s|dN>* J9+V!MUt#CG?A5wG\\vwZBMW8''$#S+tH 7/%@;dlVZX7.D-Z{aVLvH2pf;<)Rn<vdY?j9NQ^{:cuI5I0zS`XG.c3PeUr;*(P&FA!&C|+N*^=n7R3@*V-aG?[0BG&<HSv:cl_E1OAWYOI!}_r!`N-1", 'jdt<T/Y}#mfv6aBg>%KH5<{?F]psEHV~/Mwl=|Ks6`nR`qd@]Q4"3\\9D)]]:&\'j\'N8Dr0UE15}lYqhHPXipr"cK 5)0WddOD|0lobvT(fU[k<4Hc>h</C#{hYP+|x}nz? {`Zc&bpg{9D@laj$w`Kh0A~X|(aZZ WxD:3q~{Q.#(5g@zZ<J\\?/Qx|3hM/B"Z/gn1lq^yiT6w^fU|,ERj!Fj~ /P\'3g3cw=w([ZM_mfHK|<}$1', 'HTW^k@-H:F;PcE+W$ZS2Y02U2d#Wk|{Qi?+_i4L=}R5Hi;=,"oPe}Cm&`(Z4D. v<F".U"09jU^ZB`lqGUig[3tC]rlA)/8j0aP=G^?@v*lw@9cXZsr^NkH6":Gyt1 p$dMsIKc2a\\KkD,2@j.~l\\Xqj6"qq*?E-=LM*;htLVg.x9;qJKXY@ b&8lG$(l{+vHJe4&rLg1?i**&<d2Nc(;?D-:lFPc{1X#vH]}E{>;,Fw?)M5!1', 'f16%(A|}m56uS@n?E\\<>zG;PkDVQu]+Z6L~E3gk#$H2D1ebS`b85N6oT)<yS=m0}a))H//wdXtjPfqShL)%H]W"9Q>bMh:v;~RDqZ(9%\\^ *q{cB\'WR<MDiA^K`Fmu_.qZPq:D{LuD02ewnYB0R)Q\'MV(v"{m[Z&QCd,hMJ7tTpk46WYAR"09yoT6*=%sOOo}ikW6EY"_-bX*ig?d%[,$JMb]-EoRCtPpNs5Mnf5+KA<yU.V0"1', '#MZ}F~FtdM+nc<BfQrS\'a\\f^e4!SNEXB;hv^*\\;Aq5,J&]<V~c=K-3oT~C)>&Yi2X4r1.Z}u]k`@&?\'C*NR<k>;a7@^uPw? a*k(T2Wgod`Z%N#W Ivv:p$#02u[b/K1E-GJRxMq;IO_]uCCUl:Q~muQ1te 8I)TSDahC,"soh%yt#$VD?l\\HR:HT>NJILc}H8QsCI :xk4#5"toyB!3s0A|f:@ oxe]O}CJNR,4iAD^KgGJum\'1', '=ag%4j(wzf-s911tIdl[I-#6Bm{x!lwxm1bM|GtCvw@hE]&qpl0Y;xbrZqi-<3vrb/Q\\cWR0.][f IR]ZugtRwkT`k^h7\'^qzgG3,=Hhr&3(SC\'{E2L@VHkavIkau}:~Gxz|i(Dz;oL$<RL.4g1+]i/aEXp"FYPXp8>C^P-2s +p\'NF*1v@aqz&1|I2i\\$ YOZ6klSiuF\\hn=O ;sEqi"[52`7M6wD$n&[$>L>1uz""Yvue`n^221', "u1U#=WE]H}WA8mMJg^*F`xZG*A2J4WtTM`0,TvX\\=85u&MhI $BE4+D}U) T4(Z1q!>pnDe)Ik]2C!{Zed'\\;N#,J5/7Bf~!n>dY.jMu2w!%etB<~lX>Hli5maog/6gq@Tt$P-@-1m1bul'lm/6{$11FY+^sF|F4.=PdZ^[^Y_JzzH%SM2!']_-/dV4WQ\\\\`1ci~L+l*0MhEke|Y Y;;P,72A'Y_AfUczvH{g_s.[\\W|h+omS&|CA1", 'Wf"C][OKqqWB]UPji?i,kqHf7Ai#(}!I/M_Onj!T.n*Xe^[7uVx8[z?\\(~TfGw.RT>4 qI+$qTkx_g}YLNIH9T;zLLd`zshc~i1Y(r{gF+Qz[WwoGUNFj=ENR5nV3O+8!_}wT^]LUy[wqCMd$n}rnP~13<A%x&W4W$dpXF!H%tzJF)_!1vt^R_mSUp}qAUk/9[U,(]%2bzE[An=)3][.H$E7pcQtDH(I*x=.!dwr:VC9uSW{Q^[xMU1', 'Kyn,Dy.v)Q`kRb6Yoq3o=S4g#[3[o3&Vg<A!!bz(2{\'Q3o-%$\\u!jrl&p\\7EEt6stBpJn137##6MmxV}_"UBlIP9}?lzJm{::Xt{"f1co$Gp@SRKh4(:U9V a\'Dx<)~kBq?>wcN "(-If^x359Ab}S!nt _Hl\\EWGlWleoD/2r?>*H$jFb9*#<l~6!y>E~tJHlcUg.fE:zCgo/jVfUwyf1W"LW`xqfvm8v|{wOaumO p.y1^G}Ixk_n1', '.igD298\'[a4cw;-k^Dx^eqcU#_#ldr.VE&U=+8mcM1wQ]KW>#7!bA JvmK$FpoJ,Xk]y~?q<zmhu)yH|iE%;rkRcLcY=1P/()-9rbSPp5bvSRqk%VIo_W\\*Ya$NrSEq;}&gJ2hOlg!HKkIz\'z**@"J3=R1EtV1QIg}3$;eQUMpSp_5xhtPs}yB2UWv[;i[p,36ux6j_d^|A5rxD.|Y<kmo[0EnVtg~Rd45[0x4}P8-XmLRGhFrH=D...2', ">E7\\{922f:niQ8NdZLp/?'y1>>KN+5Un6*bueQlZ0lLi1\\XzNx|?2{K_Hi:3&kV^@-v*PiK](a!\\VSY,hABg%+b?U9um~t6LZ_US{3P4Mrt44Wd)nY/$oJ#YEc#?S81l6Mx}\\S;uM!}{lS/56cJyevA?`RJ#8gKzXhH3mf^AQIjWO:W,XEyf6w$m7=2*94B*c+oQv6i4<u[yV ztSip!8M<.87X/6Yp9r_uijFwUO+^~5(#{w\\bgMK00R2", 'H(TZ7~<!".U1Mn<r9aG6O./7-(j2WsDteI*$8k9thEd5}+s6m!3\'ds]&Zf%dm`39J5soKtD4V,#\'t/FKmqY[e8e{BX&=w)iZ6@E@AL@XnA\'g~Y%f6]a7zDAQ>Geb5x\'RYy:qB5ifK.jQV5adfP`(NiIqE{i<ep5e7,\\3IC8GIXo1;r.F,v IaTqyGNNS%<0V>||v1_pNsvOZo,UcdZ-@a-XCroAQ8H7\'F=UO3N#E-0y=$g:.bh+t^u@}#|2', "}RIq1O]{:*Lb8C`3P3TmMIIkb-EnqKAu}=S@My;_bt2T)ga/rsjJXa{3/.V|1v$$w8mYaWJ7yfMfNHVl:;ecwc[Z*M8]$\\ JiooX{|4p(HOwUMqSh0Lomp'ez@^]0d!`ItHQ|u'fZ+y482KIvSc#8^AG=1^IXK[<(6M'6>F<]RYU?%bnEfjY~cM1#T<<151AH%_)fs-|zqDUF<M-ac\\`C$3o0xo3q>=/w`0;S_1WB>ODFyQ5vQl+7DZf#,M3", "=JoG=! rgjQ}l{IHIJKq,Xbc5Mw]zR#Wtp_C3B]?O`O}OYo\\m\\MBw=\\R1MmCAj$\\OB&%#kd,wVFet4-j\\3#$,2es6]EzfKHs\\/_^S)s-;&bOlc]$MKRBY|uxKHUOv}=#]_utg7}h2c;'jPF=G {2P5]rronKLS.`ndMoFkGK,JQ,iBnUvuqK1,T]Lzp>\\=x]x[[m8g6D7;01=/#{gz#F^MApOa@T%Ej/M^[SFR`C19Q|MR#.v@}LHCK3T\\p$4", 'aW.6Sk(VcnHap*L}cx8Us+mMA~/&}<@W^ a+L^/cx\'XUuF}67pKQfq9J=bHo!f]6}~c{X+HU6^"/6dPzld5((>"teEd6D0AF2-C-2^3!,8?GV=3Y5b^t6yLY: GHb%@|``Imox3\'86/EAEgCHW4XP{DXO|EK9eF]I55&\'q$,b03BA5b;46;%Qv=LFb]ijk1Cy"Eif:Exls!4IS)B=r8Cu<|5,|OPNu#;=pcsHt\\wG^0BQ\'kr8vM!Yp*#xENbb4', '4Cm0}R{T-tvXO;6I.)i#DDfD"L s*fH&5o!Ge^5g9i_BK=u^F9GKFf6,9*3,m"jc1cpgU+QH+q)<q"q|u]ann9G@ d"ozO4:m6]KX1w9<GT%>NkYeJQ}wuN bxC %qxoF+(\\G+#ZZ(2BjO~::uv(o.?WTx=[S`hJ2ne{-i:UU-)ZV>T^k>s{bz`fM9ho0xJ.?%@d<n|R:\\a?K\'x}@u?`%U>pZ;}6xe]en{Uw_Gqo3{sZH,khy$@`/Y^Y1C,G7I5', 'dNJ7Yv;m8`[\\gSEH Co|W>$b$Zd@v~*u?{9hfIzG5DZEGm;3Yhm^\'n-WNpMi\\)* %i>m\\nLU7tO~+5s&s$g7-:_f&,%CDrcJ+&41I-E4zFg?h7@"]U~CyTSnN$wlG)*oIjyjWv=W"xgbY))2,Ki">flA[@2X2[MtM$?zL59YD6Q#y4g06x /YX"llyU]i82^_l4zz<d+-@FC\\H3O_RJa<^b)@%h*@nEV>NP,Yp(oFHUV_u2$aX U@853UQIR--86', 'jwK[PYX{.C9?:!P%oZ1^lL/nDz<e{EaLLx.MF~x.>,s&<6:q~ oHlas9A6a(C<\'Dk@35e?~Z+z(Ow<Vu>_/4lBeokRDvz}lz5ZG&-6p?ug7_a$X^aVu^Yk%}@p9y@jjx`NqkcmaajmdQjpM>hQplM.=w<%9gjc/m4Rd})=Oz5ssv\\T?)m_LrFSW&ej80{EN<|:[\\+}c)+E+Z Rwg]Jt/N$G:o>}s-Ut*..U.85/ H@u<"_/:e}tm)Sx$K~pXz9+07', 'W=v]2r()(WL~4$R+4(&AQ?0-@-}]Wu%#+SJ,2@jdCgv^]v7)+zE&wM~4FVxReWLCLxtL{F\'$RZU|/)<v+Vm_^_YTSe9zFdy0"RqO-F1w)RF<Kczp#q!pV9S|SZ5f$\'bZ2S?\\h}a]{QAaPcFo6#7A=*p4KOk3RMrDr!x.]co`(4y=*^wQ})2g9bo\\Nb.9ulsuz)zYOrzW.TeOMe2XaMq+qVe_/]julQeq"`PNh #.;mA9;!`=/qX _u+zgIK/X`A#28', 'Wn;*5a\\GV|@d@v5sTMG>kB\'C,k,?D?|OdAb!iROBPu[Van/"0ZlZ&]lz[JLW>{+}Mc*!3eW=UO9~@uz^}BlZ;HNWzDP&~RqY-ASjwgT?MF0h5pHN/rp!VPON9T?%;nnH5W`c1B\\D8~=~i4x9huvOdKQ![j5vKQvWc9$\\Y0Cr2\\c21Jg lJi7htL@W"ReOg=7F(e8%C8~;),*{\'8HPX#C/\',o;.6_F7K+R)i+m{%q_>=|OpCNs,\\LwoulI2_ I]90q>9', 'n82CGIe,QG`` GV,\'4Z"3/bH3iGCxH@;~;x~Yl1%Fe@"Cl9b.tc\'-X"jC{o3wL%wm3Pd/Lz3exynH@ iN}!MJqr8d3TL>4U*t~]M3f>\'u5PIjnY|Po_:V:x]u:.v^]Sq/@S@=Z/C{,\\uy(w({m6\\{VX$ueIo}v0F>N>heMT>a9Ih=\'Bag2?K}oUVm~<W#E=|n,Z`OpRDbxI99LL3:+yk_.R"Ri"+`<+]a|.nN5Be7~xKl}EUdF3C\\}|h*nNo$^$S5`W:', "y&dpF!.y:b?;epP,e,O{/IUV>AS%@ff}7'NZln=mi;~N<:Ziy&}uR6R)W2V8uM\\ &S>`w)0GqT!#w3mLn(Kd4(SklJc+2wF?ep%c?Ms1O#[%N;W__jH@*r85n:e~9C)b{vFo!kIeOwP%<S-u6Sb,+|C_cu3tBG^R>QNero;+uF]=g{JpMvD~0LW%MPSX9c24 #FP{j5AkO}19w9s[`!]G?$|2fkf|0aR*XT$O 4IIDTNn)R|037WonCy~VO`L''F9Lg};", '\\{Hd8CF!Bf61(l86tsZ%SGoS)v-FpxEmaF@pb;caS@8\'L)JgG1#1=?F29:G\'\'BUih.W6ys-ziD4A,H?Yc?=f(e%@[3zy=kqm5/K#Ug-ad7\'9^}v6}iW=gu:Uz@>#803.pV|uZN?rDE6k%1"K F=bb+r0h"nK\\&<Y]! +fXe08 %yK1!AUD[]f f@&\'BL|<kV8!]w/{?/6}i#[EW~#HUn6<ImEE!/PmULXCx?*$d\'6S<X/I\'\'Ax{J4ozz"hW_SJJ;oB:PS=', '*W`ehDKX#`NdS`WNe|FBL*w.q/TQR_>5,{8{g=o8FNhNAF6J9VnFQ@KP+Z\'U?_]b$% 8FZ24}r9jBhPbMI/%Fk]t.K*f^bRMh-AUGI`X2s-JfAUp=@25@/`d2D]~N;L!jXpc@YLa331*|t3SKCz/JZ7*4&E,/.Cbr8V]d(Ks"~39.5JvUlWKlGQ1@I_0)q"5+w}dQtfHNsXw$zxT8{<q)# }g!R\'3u/s8~>7HgwqZ\\}q$w8*U>;QTEa=2g31.*D$l2lmU9?', '<Ws?83g6\'Wf*:)|7*asE65a:9& ;D";"*zru)+KH`G%/%[{[X|5\'k*h}O3$5smZo0`IL)aG937IC|v:JJ]&WDd+>7d[P$5^U|j8,ROsn!$bZx_{66dui`B[Fr5cS{R90~js|e,$;j+h[1,+-qJ0_Ycq>@N9E:%UnkY^iT(.SQ9QUy"Lc4<$hVjU7N6MT[Ks`UX5xw$"A}&aTzP9`!,<~p@x%CWMLLCc:<GJ;G5N1OQS(J(;R\'nkPci!K mDcu4svVWzMdi1A', 'j.6;~;iZOu3iZNfJjXv81&3c(P<.^gC#9y|O=vMH$5!e>Fx[B7Z.*ILx4o~($\'0s^w*m.jZzhBm/+~TcsF&hZ0o99yE{_tPWEx\'t_NT]|&gDV4/Y(iY3yNt+#Ocu=(fN U~O[GEnMFq0"G${W02?NT+i)2y&/j+q\\Xi~T,rXi:Y1wj9yf<Sp^O0ubjhs#eO;0GmyGyEF1?P[9vtf{s2cswD*e#*9qfa[[tt(L/H`rf\'2h}B73R`h6"DDg+l-pzunA|]W267>C', '%0B\'_?cr2d*SR3;{7\\PLJV.FdQ-AMFPgN" GP=CFGcue,oa4R\\T( ]i{N# KeClR!#IjFl[1d"6ribZ8fkhBBes@\'Q74E8~E`q0FAlmX2-RL%eJ3EwPH^d>Ycq[n1RLpD,9I!"@L5"3PQb]@4^T>R<QZ,~znisnu0[)1V`R.PqIiO<Sm.&2<S|1qgW -w TQ[3`8G}kwjJ~cc$p!Vt`i=56gE["TA~/XRkcttZD28:ca\'ItqD~SDgh%,8U]YUVcEy0^"XltCaE', 'zO,aG0ZZSb9XVx8b@&io?E_?s$C\'i^HB&K799*wwjvQ`:NfAvl5a)pyz@4ix\'#g\'|2,dI&+hz~Fe:SuF}+<S%JdLQvd]}u|YU7$`9&..)g6|DhJ>]8:>;_ogO]%=89wQ$8Umv\\RG7hEi8&ffv!`w6sXES7]h=rqhfx0vMB,ey[tTiQBqS{gN2`A|kB5d\' 2= jMT`ZlXdWMkil *sWDDWqi\'>w>sdB+Baev_OCT2;~T,"Xl[dXh9opfS7{.V;zQY]og2M0@kw>H', 'dBM*7F<!2_oKBy%md6sJB-si{5PiV3Rj:Xx+)\'>e@m_/1\\+!xt5!5{zZ*h6\'"9?Ad@_CY}zs1em&}\'O7sT29uuMT}r(01I6R3v$Bl;qJ+$L1]X{Tnj}!fCu*l,5yJtz[NLTXw4Lq/2J`1$+8L`{gqe@_^&#@28wA1%#Jzg_xi%pC31c;lhCb?fq>HO9V-+WtJ"z&wr}Nlj}otOm\\ 2b3/V+2r.qM#bHZlF+07KOe)O>~\'B/WNd/HP,R%>$!z>)k~W(Vm0Bt(W"9K', '["< 4dP62-jQrNv>)]Ak=t6rRw3u2y^|xM33:wKs)m7Li.S%J(kw|^Z*#v?PLG5F,|C|6=y-f=ZmqhC~6vQe5Qkx+n.Uza[YBCk$&|:x:~4bVY#ZjAx>td9%6NiP)#\\sp|\'8?Dc5`|iag F\'!\'hAk8"XqN4h/=G>#yFw!FB4[SBFabM{vpWNFLu0VHb4#Flecu@uMeY77guzZx]Ka\\qOU{zqCe$T/HVsUAu-<v7cI(<n%m\\?7&FL^ioO30>9/P4oFWDq.,}by:;SN', 'W"[F\' ] REpC7!b#W&!"Bvu#3vaIb`E16nt\\:Wvb_pv>0|p>+8UJl8[Vb<7R%^BRsKWne\\6B_*vd@$l`%_Pz~TSp"@,JOVLy^}O$pb=sNQilvom9vgg"NMqE^z+"|T9O>ruNrNi/SQ]Cn6?J sR^aa~3UES4#^H\\=$lAAyB=(>D0w^K]N\\FK.N~,2pBBo),f&j[BPC|g`#9D\\nPq6{uv23w@`W1Eer[\'z_\\Qx|}l}D6CQ I<x\\]r;7 [D/RaaqyZhEN]crXit6.o2R', '*J_u=`dQUb!y*\'+tq,}L#5-,_8cY-NzA"O4tyjW5`vz@yh/8`RUaq6j]-kV.6=KF=P!.Fe7$--CN\'8\'5r50o:`vHy\\pqI6e!]*[ej1@;8udOW[033mHYy=OMF)MFy&!/c4s:4oyhBQHMC+79Lvhj@R+K`.K/.cet-c[+">$n(LM(!TJJ&gqwsZb7wSPr*,Mz<OZ%:u([WW;wx<\'<%w)v8(Kan!>Wq!U(9\\T~eLobc|i@8Ak88Pc"4z`M{"Lc!4qN-YR}J%Q>u\'S]F;V', '(_B)02<8KADY+L}RD8f\'(dZ\'>[gO~g}C]\';i&%4:!k#ednc2&@`F* Re&@cEt5H/!"-6g9w""_t9Q zVsXiG{u@~p+I`^dC0X}ae7gbh*_ 9Kg)F:~-8XReb`"ncYshZROg]|odk~DP}LM,B`<]xm=EX>_a).4E*V^`($\'3Aw#rvA4vx1==}dQ\'0W\\v\'@,4|d3?^bvYlA){\\dPoS/"q\'LbluaG48W(8{(hHxr|PbX{l@K9?Ob^8n+f7\'@XxX@aKw:MP_"TL+rBUbrKrZ', 'GL4Ezn0i7nuF%b\\g=gZjM.z}MN#T,K?X/-[)bJ?fpK/g2Mi%U_tmO}ky^7V%D5r&5|%2K*7=-xopqAIIU"Mc(CkbHAANIPHh*tZLK*\\w27C4SD|n4Cd)~/t">[-DM~e@#?I;Cry)J[[.iQG@P\\u4daDBv1<\'cdO{0Z^I-l|H%U2m^tyqmcV)BhwcY9r1nbp#0O"nQxRCeOiF}E<@3]5pYk{#OWwz#0V}iwn,Wrj3_[X4?U2?VZ03i$ddw_qrF--{V-T\'R@y\\a3!K}W: `', '>s-8MI8~~Hwji+tI Vn6Xy|F5/lqjif~;z>zw-__zY(K7cW[3E`@n u4SW@Vd4oh0n"5ML9}l/:dBj/y1J~ yj+LWy%4<@k#MyC[*Q\\0ii\\rhQU\\6o(3_~JOZZDi"c0r>BV,CRG(mJ`S#Ufe/uNAv49Yj!D7~PATV/z5:^YV[/3iwzhE=."WZH6tIvekuGDhq%SvgFKhsIa)W)hI&gWiB~7Jz0E0Rgw?D9bL;3N(wWMbiScB|(kt+tKe)fE_o{6t5<e^f1IiH,ds3Q9*ie', 'WTH^CHOpoT;D@OCgd2U,@tRG1Tc5JUzP_;D$8c~ni,OhCg3&#XdL3F9CxOdrS1Fj$WPBr1B%Q*zws6@9QM&<l^HS)=zS6f1^-\\R|4?LeIF_pOBM$=e^$7bL"b;%_?y\'X`:[sv\\_y-cc17i:xfVXqB4J/g-4b"iFYlE~n-U?A-O#J_<2+ @9"AcM|:129EP%j]n+ZBq`ln$]g4pIBYao*n0&AY<a \'d{f-?k 4>2YF#\'lNH"L(|\\uH*S0C6+i[pH3@hpm\'G?ZyeL#*dRG>8l', '}?;>zoG:Rri+:/l5uN`^WeuA/cGbFki.OysBtC{RV^01$Ou=6GW|/~Ki;Q |7Gz u!b( fO62!WC\\Y1DM`<:c2|uKW,q/l5Jx@"r??d3q[69_U5Ih2or@wr<O}CuO#k@I\\#]N8*vK)C;?%7|F 41()rWP9B?}D\'`Y%h=pg3}O;DYv/d?=7bXE9~fG,!^iW?u/jjXAPyRi-m$vf.4q^[lY6--k%J<c,30IF{s5/@<rh{p.(9 ;{yV5Ku3Fu[0V[lAJ2aFnf?!L<L,KNQfcYUs', 'jJPI)54ks\'_Z9TnB>rZd4CI&E(SCk(Wu*7(3A/ZaN\\\'n|"JSP.,d`MML0*j%l!wG)piuP!Ql3sp7"aWm:jNKeunXTbk{cs!p&=GcZlAgo+g41:p?3Qvo,8BO(AM.wv>!?JdEM`pz(L0 &#abNx)C&;"9[kP\'"gbB2,b9="b;V+x`,/H+mFE~Lc_tWK/r3<@[i;gUy1e\\Kd*\\0<O$2Oszs:tX?.In?E=qt2P\\y-D?9:#oP2o*h<L:jxQkQz/(-K8Kda`#]-p/GY)uE.["wK3m{', 'H?KL%|![&sfh|H00+e5BiZ<:w(qUQ8b$Dux<9b(y+h\'@w}\\hqVS,*2zeWgJC||[IRfoTlm)jxq)?1,)XsZIAV}IwievW-mS7]\'&sxVGO47j(}M08mmOT25hsldI25AT~ZX4 z1YZY]w:*2=,@}W+\'mJK=M.SE^jp^0dO(o-^R;CFN,Rs&6\\Y%gsxtHvFGFi,J2YY:gtF%7eSQ"*[7qum<!Sc\'KWy]\'qCA?16\\A?XAv-wFTM7)Kf(pHk7J"||(`Byg3!]}unp\'A9*BK>er/ /-&!', 'fI{GOW>u0HM43X}ML"V?Dl"=Rx1>*4Cc=mi[^B <VqCvjCg@\'?/>R+ M`*E<vWW,I:6k*lK.O{VS.cuT5nw&t`\'cUI_cWjnN7]EJMGZ%QO1DZ2vBe$R.6Lb~EHXars3Q(ir}l@M#Dq|hkaD$8OzUb|V<`&.$X@-H4,ai[R10\\>x;+S$G8Zn 5S~d94@K0UVqI.O=U:[}X\'0dnL7,K3(Ez%v=VU.&Z2`hdG05fQcTc/UC[zXK8I}v"&W!\\;Ai2WAH/^=bz[yK;uB92<Dox4,r\\b0!', '#)rh~\\B[A>?pFxB+l$@ctezE7K`*B#(a:=G%c_n.{1-nD]t//Dxv!MI:/1)JO~+JY0Ev?!@mx8dn~S_!{kS,Ff&fEn$>\\"-6"9(uAg:E(fBaC{M7Y`o dXSni qILSuMJe5XzXcKL)UDe.wg46h=}|5A/iEbM`wT(&\'/1Tm2fmPyW=+fCUiNJF=,o-$x\\pV!?&8}w*+7]9Xq=t-&]7s1rZesKYlMtk0DqPcBI6";A]%mnStw}@ w3?[BB|=71%.zB/T.RO=d%\'C8SwJ7re&e[?a<!', '=~Rq_14`]aV}y0skZxy=BV8*y{rPwk"i|8pK]}Q8$98p_keW6_5XkR/&I,~5<9N1R,kT:(C?r-qPXE@&k0BuQ\\(]s@XBn8-Op{ZJ+1I\\cu<cJD\'+#?mv^8AjlE#Gd*!vuMr-oqR{b<3)jW%q=K:[`*}|i*\\sfw 0@LDM?*g|i96z0}a1tqqm[#J%=tZA0b\'tH<XEXp+2,"Q_hJ!pnFnTfhMfo-h0NU7z56EdhC"aZp)-[WdUh!cq%^aG*t\\S;DpuM|\'vb*P,]2G]DeMQKM;B)Yr=J!', 'u?&,&"]/HD&Jy?$W>[N-iYDe4b((+)"?yh4*"#XAD3//>DP{eBh~RJfTXjPC3G)g~+"ohPsHF*CSF}4Yt,;P1/TU|-~> Zc\\[oQGLT>=qCX!gvO!2#.k3yd?\\z"&MJg2fJv9R{iU1y78[1Qk<~Dc^1^~_ f|UCJI;Fxa:5.gZeaRSdS$2wk3"c!m@OA!*#hkTSoscM3=:mL"w@X!{8Ov^.>~G|:xX@P d/\\*9fJJI*I~7Pci[!:w>c$FD:Q\'iEL[xRDO~&Nv:Fw)R_E%Hj`E58dCoY!', 'W$pQ33":7J"ULa4F@B1[>Jp>2\\Cc(3X?}au[2D(nYr)3U{2qi^~w{M+ygY`=NK<S-JPF]66}s\\SJs#(o6-O-?1qa&bp((h/@$c$\'09MVu0y8JOT!0Z)T|BZQf~L\\41#s`*/sZ-7d~XuVgi/%J[CFGOJ^&1l xYo(LQ)L|x^ 1BC}Y_R9G_#nb8$]g<2dQ7gcO[yTy>Y3Y@s{/_0+3nD7WaQ?/#:Z/d\'LXP-WZw3S|BJq4Nioe:"H[^#l?R;yN":m,H/\\{*;7CQ+K*Y=Cvwa81];A*Tk!', 'K#Be+m<wj8v:`>((R2t{&;T(Yr!q3[9=!5S^Clh7Z]?R``x$FL7mAe&xiTS#[AUOd9\'#rUE;^AY~W6`JI^mf<`j\\0j%+;bjl\'Mh8+,3&Ma`!,maS?BOFI]_c~%&# %mTBMz>>Buo:$ti+-jI9A(hqu{5QrmR`ZTiGyje|R7yn$5+lUD+i;:\'(*1mSUMC|SM8Za=LT^ERz%A|2<LkSA%iaRXg$O8L\'Tlx~hp/>GD%`?b[U[+ylq!\\yC._,PKwz>p~^jeGJy^g5v%dKpGZ<<i[K48K$5l "', '.hZ-Camc~3yp;9[EOo@<nKBg0uaL+mQvI:(|M3({vtq_%X(vfnupcDb"oM?^G%Z@7ZZ2D%fv)iqFuQhIn=-}%uO+[wK8*^VLt p=WE\'g2\'SasN2!:4?g\\B&u?n[kOW $U`+DUet1t-xm/P4JS+#]rA|_}Qt9P**#Eo789z?jzM/LQ]el_WIu/Ee9\\,\'zSY4kiV}!|-vH?E$U(O/""T%9QR?_\\IYIfLL<*fm2g5[p28?2SUiNXO3KFQJ-8OT{(?D4#*vnFIiNEh@;9&\'!Pyl!Dmnwid` 8"', '>bOlJ9J6i-Ea?0a57R\'qP?wfeT0+IwdHM! boFnE3#8;!|T+9)g\'\\{DtPnu<\\~[>kAr[,`%Cy\'t"ROBz*r*zz8ylRjAT>[jp@g87lX B(Kw={a"WRchtM||06/u\\9TJ/o_Qd_E(itBm+A G\'W#L7;1~I{#wjje_r|]6J^{<~nB<Hoaa#0.b%1H(hA2anuIX=ZHlA`NG&Myj@c7TQo&fr[M<(@xi5<#0M `N*DP$Df0wpiP5!\\e\'qX6?Z=Wr]Fc\'?b/e(n"~K0\'DOB#?$H~>^!T(sD ?C]R"', 'HJJEAJcDU4l?>$Edtz6GR0OIq_p8\'b$QQc>^UGHP:=Sx)S&vZ092TA/-wpYPG]cf|v3Xqj+2`nYc?GlM+ e1ZH\'$6cHooYFg5euJL^2G?5*_!U~._;5!7,T?ce0TML}9QyQ#OK|,D?-n*zvzd^xcXMU#u^Pmb`uqySiK}GZ\'G~\'c*f Hd_b-2n^2OY,,>\\(^Yhck.EFY:Y@9xy5Yl)h}^GYE|#k#8X3/>2D$iX"AoCwZ}mJmNDGg$j9C?P%Zs?q5mZH%CAe+Q?Pe7t)/0M,F;:;ou!^`G;q"', '}.`B4md^H6Z,MRO~VI)mq%[t08h&;BP@=RnezWM#p;jO;pTebR>l,dsw^PQDbA%Ws*q5&<a -,\'#N*=fm&#5b5c@1j>Ytc!J>o@*enfwy{T3s|CmTR~ol@\\_\'Bn~6`{RQ`wij1XKH3{F~N|h^z)X~Z>RqL7=o|U\'nl~5PT;2N<5/6l,hoOBs#"G%e3PMNx&T9}hgN|AO\'%w;:2(?csHC$=ymazu< fG;^wpwN0q%n68 &UH|oH9w=BjcybTja:,c..:rqo`|Ei.6<4cVM&q%IC&!p{U (jY5#', '={>y$L2|s9?.H;<{1-?&4mPSr1n+pm%^nO>Bj;F[+Da+lo\'lfiB#q]d%R@zp:m^OP2w@oNk;oFDCj"B1^?sWP\'R=Fd"*&;\\a3Pt!4\'^;u0Av#[?(]f,xYuSS%SF5h;#B%J5;5ur<Ng#0egYSlwMt\'eb Ub=+-k9$,ES:)[+s]hz1aJ&`&YsX}>{~A::"N-ZD^/f \\;8dM6zoOIIBslF!%fYH[*5vjLnP}rC$Np"GvUIHGQi}!3k.UP,wgIeey[D\\P!n/h@XGg)Fkp-p|`7<IA$ZP9A{F>31F^#', 'a)&"=d&,5Yi CSf%LY5vb\'`-^3MdYS;S"l)!x,Td>g+_Nt[Y}#Nh&lJ~X0Fnt _5imh-2d5Z([G>+)"EN@j=o>&d$\\]Q<%j(tC>A6H@|fX8n2e &9S?}XJq9)H%!E6ua,vMZz-W#3V{q>. M46#Da"KfT\\_JW88j_?*C\\"[ Ay\\H73vE-\\c#Eev&[N`mgl@w\\,eAQC *EOA>Q7M\'Xt~iNyN)t%TG}9[3Fry~b?uIcg(bdi`,PHihccw^4,e,qjD,"/>.l31q)<":wdZIDrwEizGs@5l(H,+IZ.$', "4$]e.SN|?^$H1Iq*MzFwiEWm$gyKXI07gl]G$THmqopx'ys]$NurM2z':WNEHiJ5>q=?hQ!TX)a$#O%aRaA`.JOdC[fi%~ |#R8_%dDt;ffLmM9%M^on]}L(r5/!\\$8 UBk1P>apVG]-x&HG4Q/F^uFtvOG(gd&oV*/eI-XQ}PQRt[&1:M-+SE!&MRQsd@7/4s*|<FE3=f,WM0{Uo$E1^260aF''Sv+w`F;gIh2sGk[x-jgk'!vn:^7(@4%;[{-kt|P%_.u47yM@<hr<n/tNq pnT(]\\`Jnw7Ce$", 'du@?>zc<Nd7rsT}=Kz&YpVHyh-DJCgIe.O>%YI*SMS*b&ioPrdaANh6"R+?v=ux$(yfa0<plDv=N&MJaQ: g!Z)T<\'8k783!h6q<:T@mV\'FGRhhG-\'X?)zNoVM<B1`+Jm.4<($?rDKW0*"d8^\\f@$jvJE*wA!<(~ EgL~N:R*&k{w2rh4WE8Ok:-k__2.CRD8S[=F0F4:2("T*Wtw`SqG%{Jq0[NL/I.e\';33Fn7\'tguXY5M~A\\`@NXXdq2KINzEt|.tI6:m\'kZa1@TJ4\'Xa=k,UUJ])EQss9` F%', 'jbL-*xWU%nwR"zO^0\\eDax\\o|m68tN&KnW>q@e^SQ1nEz[QRd>8rUe~PNd(Gv#:s9Yy5m`#}XEsfLPM?l4?}B[at%*;{tlA}e! ?.a.SLbK\',c2?1ngM74zLX}zz$aVgKM=o&WzX2OdKZ)@"If-.mI-pleJ-gy1ii?U.PB!:dHsS,( 5<Aqdj\'b0Ep\\X#;nqCKkH=8tmS2q3ZZ\':3cJ* 7slI]?xWF}DbHsg/L!ovhq#U!f-xev\\yBX$Dd;`Rfh5\'Jhi@7i* i`:83{e>`SW&`IW&dV4s>>c:X4+1&', 'Wd_vZrA@F;TolWIF-UQOIo?<wq/Pn/UgTVE_n|"W![[~5v8Tia/&7_\';=8:n<yWj%.*bFZLl 08K8i07])/RmvykE{A!fZJ4a;+}WSvc_Kj>(cL=-&uufbKq=$ =L/K\\:v=!"bQ*?LO*TveT^Z&F4@Eiy\\WSU$h$^h_pO`Wi]3:Deq;NiCPT5=X]q|@!?>`|kB]A&IA%yIkSfe ?x[)<t;@Z7{{"u2!zx/lv1+.l]p6ImjC2%&@_>#=okyPaP2i-3dV:7Z/??5/~I0agWC&w3i4K43e#I>p%0zouY(\'', 'WT=\'=gwHG}mBc\\aPCFN6+XAM2_D_\\7x5.tkp44s+p+MfAh6\\"I3}X0ni%r[i><.I^.,1<z5|`1i(;:Y`/6C>Gpsk{]?lgnjSd.0|\'sG"IF(j;9+4/K_XWnuoXupL.>))DLf(p>-6`GB2$ss&+#tQ0xTk@|5z1K]x B%c/)i%^X*$SZ>&4bg2SJl"(nb1,.%B-YbV6Ru_}q.!Q84;v*\\Jo]mS#B-atO5\\aNnSt|LScq(39m?@}[@CN{p,.S"iv[Fo29yH]\\$cd9.FH6Mhlj3J[Aq/MlZ.VFn1lG"=Jh.(', 'n#FG)49[RV=c )*Gqxmgk5 F|+wCPVP{]P5Y9q?-cB >zjuJYkr@>VEM}OSVLsL3sE/ow\\;\\z:b53y?rc01*G1bxQZ#ez+XfO^t7"B6kK6 !Rdtx2guZJ`;u*7}swygM$(jy1meEh)?Y:A\':@gZ^LIM\'V@\\$$qW+Z7.H>u.rP38vdT%8wb/W3IfOWUt$xJ\'l0}ZMdUAuVyW3O87yf)yZ3b_U`ca9)ZUn"7}?7~,v Wc.e_ Zx}]Bzebtds)-k l1S~1_J J~_43ie]gnNj)*7]7:Nzd.YIz,oO9cf=F)', 'y>Yw2{!wGhM,IZk*95twTL;^=&i5p]qFOYjI>(VT`0n.M!@#jPL6cBvF-IA8\'zjp-H$VwjR@WgOW>|+WI\\L z>V3wo(31rT.)b4=?z\\)7?s+qW]shX7!sj~3SY}hk1Sw"?nP]vxuHg-Nt$U~?D{}]{XGie:S`?3jr\\$_6/fPJD8aGUa0]Spq}!2*u.e1J-0-[+,qC\'k~H0)HKP<Kk?BdzAP]-;9jZ\'EZ7QN&Z:[i<t0JP5G^B_*Q6TvVtaD%@mxHdU!-h0#gT]G6Jb97]Hrr?Be2k=:]-ue&)>!}(f(Tr*', '\\WarncZtB?)[AQLZ];1%cBvSc?*Z$.sEk4^^Tcu=r5WqB,L\\Xiq0|8;Uc4>q6_;DS3[nNsTQ;N@}){&;-;_uSU+29P{pK@]?/wi>$KN+M{/0|Y[5/p1QOz!z\\hrie[B5%ax}Y7242Wls\\d/06RnALek=cG]fjw2 p*c}2M@kM.hl[ZbkG2,ETht!,emgwfo/$H;_uo)X@Z<?azP>>rS>Xe?2W(SpOmR >LubDH^qX"8OiV|e,{LLdnN?VP4\\,TH]>,L|PdSU)Vk"TPGS\'\'93>6zQ+iHMnT~\\}"-qVOJIHX,', "*ttJN%l]4LS&+<6'^c^fK`y@ARk{lBO+`)qx`Hr~Dl1s(XO/(U8M_YG22xt;n8DQd+S4\\vMY>(*_[Q=9n7$LW,*8u(w9P^^Fc?v7sAhWPgD_vBW/@663tePKGPlY'b%~NOM}NkR>zc: cBZPpMl1'ixy2S{;QipAn=ue4!FoosV8dWVDNdT4l$X2>{gO:dK/7-]5}!)O2lQRJ}`QzGZVK:K/Bfa`'C9~?>AqksR`!sSwBxFX*&4?a[.]<MY,:^Ma4}{-a;pw?LoK}@fUHt#QbNuD<Ql~khe.cw8..GL24d[.", '<e@X^)`bm%sd)-g3|iSmU,G2FEAk"9j5sJH^f/vi<n|P)kyV>iJ?[#[=oS*o{Y!1-;&Ta$h?f@/[Su/P;c&#Uth"6Y6 lbnv,I=U`;f/Z5o+^IjB!Vu(0<pr|I_&BnqA_x<.Hz}Nu&2&(GHT|ar8y:`&6cAieCfiDXWlN,;Hgy6hC9&ENI"J03u:_[,C0xBiXq]#M|C\\-Bm%hya?L?U9d3cLQL.{@4(aT{B1_ d||YB[M<aB?S\\)1,TC2ynl{CFe?.f,p>%@=)x?p;?wow;M@SdC]-&Lc$A$*a Pa=U<CA2#1', 'jKNA+1!*Z,.Ip8=D$-{Te c=\'eJ5X,Qg23@IteTVQ{ytir@g2)\\v_;n[]&[G~F9p!&cx$"{`$}nO{O\\7&?%&e??>T#v3=CeEaypNw1RCxMZG8tYrx&e-Ge1 C.~{+,gNIsfOc/uaRZTV{MJL~CK%6shxH]Mda!C Dr8a0mISvxVlZS=41Q%CT+ij8p< d][!P%5eLh-q&sPv:QX^t\\{2b4#HCG}/|#upRk8V"~W7tQoAX9$~I5q|S6&+4.`,=~v.hX"5:H%7_MRrtQa[G4dk)4,X_qw;t;9yv20<{s;sZf5os3', '%9l%,$g!xC(Um-dUXc3E&VJp&IB6n%NC)Ei_B1KE3/)]4%LRtR|Pv,!g0I F8.ysi67,25`u2gL9Fo9s[hWc3$`o=nEy/|[.0H*),)zdi%x1?5BR"Pvr!TP{4\\-4?Rk`\'l,meg%aJY)|o]hl67`5,gv;vfga;J{A>=wX;JoKo+z.YsBt4Avn(*f3yn?@4rCy0qyRb7Xa?iET"wx\\d{yG?2n?p,K8?,I(9)nX|/U*@OLmlxyu"FF{lStKj\\m"kg(>!&FiCn".y{75.Z|X\\6`0w}IA!p:}Zs8DbB @K*,>AaVQ*97', 'zN}P[RQhu8f)3/Mm1M#C.^I^0)Ks:<Y@}~va{[TLqf\\Tu+j~c^WA6\\_%4%a(S"GNdv"xF_RnFhz wpB/&a0[8w,7~9(m0-_SS?pd.NK_mw4:H80ie9*h$WN[u:\\_iO.6aa\\:xh:%p/7\\ZC5qol$peI$z]6(/w1CKuZ:UL/Dh)J<&f9:gOm%=pS$-=f9t0_2@JGd^vi|ETqTNBCX\'ZpTs$`10*-0LXjF?PIhs+h1,>x9S4Z\\g]*My57Q]w[C#-?qb:XM`m|wi7f@sLe&2CIF \\HtMs*b-jbT+x[\\51N39b^.y/>;;', 'd_yX=/*)&PjB3f\'^fQ4a8teR~S)WXqPW;\'a#9C:*</yNcrE,h|}nKs5BK=nxX,re7^P!3CAq?HJ83`mdhb)T?v<NG%\\j$.J,tG*g3hsD)^BvQSee|wNgf9J}adezQTwH#X#\\_tCK!wP]G7C1lCM%"pes/g-v@74=XaRa_)QK%Va_5ncPTRXW\\,&G,@r`?$nO6[d;H![N2I|*;(iw1coh0//)2KS\\mS&6\' ss#ThcVX4i]]LE7QA<o~\'s-.qC1PF2)lI|-ov\'HcWwir.wTZLS=|Vfr!y<tiVF&H$CxXi(t.u uy}\'@', '[D6/cS_gS>:`Z6_N\\[+2rzr{*0\'E^5ci:{=5wRo&bZ+^1J;}ZJ/W^.Z4@G+#CW\\qpIA{H _(0V+@n\'7<5Hth*B.n\\JJ-2#J8=J\',\\Gh(~Z91Sj&3"QrM9hD2[`VPPx,VK"A_[ibe~LQZ1w%Qj w_S]fP@O]Zz;Rta6-;beEa~#>7oD;6tq!Iw/6CZO7::W+S1x850|{6h*GpjqP0`|3Z)1t\'kRIfv&n2<e _P\'3y2&D8#?4su.PvhD&\\NQ/i5\'84zh. [Np?F$:<:MRw^\\DhB3eYxvFZIKM<pTEk?Pfar|!PuJWGmE', 'W]V9BAVKx8u ED\'Fb*kiC$PszhUf`kQ$(L*.q7Y3HU6t)BXVjOVEg@`[\\y\'9WkhD,BVTGd\\7{A:)9F|l-8O5-MS3*\\5y94lRfUDqG+efSQGsl@,CE[UIc<.Q\\>y=4}V\\bE!<wYZ4SoC[5W}f}q{^I?1z`O8n6zx#ZT\'/5qp+gz::y>+EC9kI#2G/b[-Ccha=cdjON"]7YKN\'=L$7R5jw:z7aDe#e2)y[gK#g1h?4pQWY^0/E%qx;0GdQb{i^:mI]bK+)wT-,I0i^Q=*mRP>wz=f#nIDg5Ip#_lh6d<9%-6JDte<j;`L', '*{0\'G?=uf/_MaVU.,3,inLk*(Wtxs6+*,9i{;u<T2lqB\'=Y7dl|8 zRry{_aXu(V7,NhhK(SYK=/ci!CcOk^%\\]hpPt?q092rWtXCHK^4):O;" nRkx:%<[71QtO`h8d ;Fy&g+x2:}}p@:7=)HD#uI0)s5\'af9wjw4,^,zB:>15#9YkrJ|W`.&/Z),~%tE XY27^dbj4W609l.oH>;g`Y= ^2)kBKKA$L7&APLoczU^?kXjC5hcEr-;{![9*E9Lp[}pU|`)]o>/6vQj|Rh>gD#]d"RC*0_%3"*1|Av~6_W\'ZFN?3PvT', '(1M{!T9 ceu]x"MCyxF2Qv SkKgE7{yO>dfLL{gW<5ZQ?p<+W*8"&_w+G&an8WvotB/-`%50XZ4<"Hn)!:,Zx)">a.>Y^.px$i9j|}|H^Nn%G5Cm??G@y^-`9/}R<mXPGVeleaU~q.9R_p)%-e9c]Z!Xu6H^Q^/B.cRR(uVJyS*]Y\'*#^i1[t#b]#H{`I?%D0wkhSoe+/$tB]%+@<{<*nKB_GIC-|J7Z/k :$Akl.g&4Ws\\7i`:~Zs,[h+z dlEL&3<W&{58GMBfHf9cfoP[}+^NOVR.h@tjFIq8LTLU=x/I|&UA.7.m^', 'G-Rlx+mH|?2mu~v(H4a!GhV}rq+Dh=-Z1-cIH?B1#OQc{U6s&VFP{S iCNj=EJ~|N!mQe>0#Zb=n,$PB/ekCwj]V(sOM9rQ(eiSJcEsbA;?;N{h"*X:5DhY^<+nIT.BvEx-Px.1d5CtQUz;$?ZzXY][^uW`k\'%0bhhX\\dD(`Kxpt^)t{XJv[3PJ?K}YKy`RFw^)1fPDB2d <()Eb#N\'ys")bMUr#3y{_,{b|&ciW{4xYD`1uNlFgaVpz`lFs\\)S!lI#jePD !bs/5|q[m~shtEZh`|F#2N=y9]wmh\\U2sgIM[<Gi/9Kgfj', '>;nB89j(0}XAdXU]JF`)|<xYeyq)NS>D=i`rwDjDFc,8|5CD*zQK[XeZbn-f#ZO)TJgU9}]!rT^T=o+7;[ts~-/jU.*Ue$hA&<bg5EQ_J\'S5}(7ft]ruL^\\jn0mx:XOWu\\G-i57M2A-/hG*M&l];n)7c[*28 jB^DyMM/,7U-NAI3gKwfcD]plz%Tg]e23doZa|tAA>!#:c\\cULX~ i6f[8Oi]!sTi0Zz`k\\qf7$OXe"<{m5>QzZmh0M*b69\\oL^&wZ`R"Z-BC0[u2,xra]7y6/>W#{>zk32Sn=z95sq*)|Em7WOi+gjp.y', 'W?{P82b9*SViqKfEW>wR=t$3UEW(XG8(KaaW5MN&n0@\\)BAei7f>o_WoZ2+KlZQ4Ar<3`UfKQy1d)hPn-L5qQrFA*v`n=wl>qR<e|}Ohd4<zoc@=)snZ%z&s"\\J^iTH7}V/%:XSO3]&4mW}? .Ke\'0@hH|+!%ZzU*)1|f`?B-s<4I4e-%5YN4SPv1N7-BR]uIYMkX}WDoknwCfoER v{gQA38@+RMBI|X3:.1cZl}w#L5UAYv6`,99|xm%xK"vC7!R:6DhQY3N&<Zs68V"4z\\EtO`nfAkmrQ#(qj;e~=3qSr]M_jlayEMyX+!', '}f\'L&yJH#*_m|b!{;cuPtFchE^%!+k2c%(@R~w(zS*"m_<-+J_zI_#mb8=12!RboyU6#gN3b7@&{Dzk0}rcqaQJN;}C4^Z&`~@_4F|\\GLX+zNNl"0O(2C;Yqfq!Lr{iNA>{)1E(2]RhFnAR$`XG+* 823k\\$ PC3-zn={W+EdF6)(,9!UYA#TVa=r=E|NvC4.r4|B.S7f_o\'xs*3LX/hn#Jb+B!Nz_gNd+Q8U5lDM+"a:_1KBa3N@rk#zY[^L0?<sK~Ax83[;/%]d>],vW"_"RIhH+hlCBZvosbVG:7z/uTk19{imC\'d.Yyg@!', 'j0x-%.0JwK\'yy~P*dIaLPlHRNLh\\xjb3]%]8?2*Q+S fE!CC$:oa7E$\'(UE?7HfHpkJHS`D2a9A)llK.b:=Op#L\\.Tx><9ZX+]]MJ%&XUkeC(%/JaPs`v\\f{}_RS*76J~/;w+o<0`DDo0\'7o8W\'bpz@0oH8?"rF=_\'v!$_~4$`N[+uaeFIh^ravp}9bt#Vzk$wVWc<a?EfI!Pn}W:{>S"Vm&ZzX`i\\X.$u1/b|\'=[zfx/d[4^$i\\|`\\&F1"\\M=D/dg(^WfyemR/)c/i#;T-^v\'<rf[\\n}72K>k5ZI\'UGRP^a6}&:PcL_7<~:MZ!', 'H*F\\!fKFK&hwN1%dH488,^AM^IH?/Uq"6}WtxYFV[3#"27$r5VylwDo=AJH"xdPaiEm25<KI4~7xSR`txd=dm.>";t>#DoA5bfmR~~ZP}PB\\+*!nE7k%?Nv!F@$"YoLEYEe&Qt.SViyRI9r!?VPfemvN6QU5_TS}g0XUGF*tEBfS{:LZPvEnauJ E{B*=y!{3L~8Os3a\\2YDJWd(>z!B\'!=ng`MK*Ge9Q[nB]+H6$b-;*u$e~;M+$.}J6ZAW+;}ude=":W+}t7}WSI^E#U7XTx".6K66D@u2vRhJX_6)hN}k8<dfK69<=;Pplly!', 'faFqx`Cb jVuJ>3I;i*fB{c<uUxy5e78 [9%>X<hO";1\\&VkF I*<9Fw-Dy|rdM96)Cs`_}MELWMG{sVk%s;9NJl"egc@2kx0p6GQHK,QEMeU1$IZ%,nubHQ]^rNfzh`\\cB^ha4&:_eo[I%cZI)Jm%0MAa~,7|\'UR:,vXaIY_.b]/a+]T^g{;EW@$s0*:Tw&<`InE!$XEBXgF;K2F]e]q6G3>4miA(eFw.\'<S\\5(c!-(6yl ~K$,#f5dq2EPn|S q6)(VVhn13kHsbN}fh"CEVJJD<Z-sFTb(_Bw)hH=s-e^0dS?Bq/q0q*Cpb%A"', '#dxteydjJKF{If4=-Czm\\6 l+mdf=i)20J&#lj{h5#`oLt,.}rAVI\'ybrfRr;%CFr)gX/=*NzUR-6II2O$&=\'0Gy7g.]"`po:iNZb$Oh=RO&=M#t\'zo;hirBK2Lv[:xES\\S)*i%.1%"*$&du,o{i]HU=7IId[dsN7bK,F6spOtE84^k4SWF_bwJsB3.-{FE)8Y,j8$/w\'rzkMAf?"ZYA!X[w,IQ~ynHUaDeLTSxovH7bSvdHo}epRb?hPO>Kt9X(9x_i9X0wBe(2M2{VbK|\'wYfoIEc[^N|6tbrf~)X2Re0$Tq.@I&0zTb-\\;Reqo"', '=<Dy~^_5a+le2<$filXs\'Qr)X/rKNG*99` Z(X}4.sNe$.)dLC<"8N"]TO(b<;2y?X(86RkGN/7@OY^Hp.C]71wDvYP9BGw%\\=?7=)`u>pl>LlAGE}_t\\`G8^(|A31/W2g]Y_TB,L.C}"&o@,u&j3DEl^ _DpuQ^3fME"I)|`KLip;pIx_\'v6~)"+`Z9Dd}^s~-+hYODSjJ_f<fJXn>{:G!/)fRvrzK&[-_x+T]S&YP"QUDy\\r~P,-f>h\'d[7.:Y~-iX*9A BNX{aZFWB[E6)OM/A,q)c\'i0E/:tv]%=RduJ86glDoLIC^I#p:-7J#', 'uMNo[n4@ RaFWhd%;hb3+w49JmoL]SCEIw vJwjaT7]Ku?ikg`l~+m>>_=9H[Vo g2+Mx_fm.vNvzf{`ak}v=G&8y]JlvPUjXl\\[Xs{{ayx-\'J<MN1Q$c[7\\65a~Q^q9Xea\'[kbdSNrpi8I-S]^>Mz5qQ")C{%K)1{p)q`eaQ^f_vj4Cy9uf?{E0}29!OTpjKOY`Zyqg`HAo4HV0@sdWjow7{hgG$b1Zblj]"mSX7M&8uPwG{SKp]nd ,?oK^5,1G>$DvpkxSF5wAdQ\\{|}/E?LK#D}rv yn-N7Z6xpkhXnarP?|(y 8le\'<y R+bg1$', 'WAf[U0E!yX0k;-])8SS:shKYj.tY|2S]VTML5NoiE\'WSY}*-:==2-PklICHz\'6X)}H2$rj/;/OC-r-kSV"s+b+$q[ v-vME"QcJ:(`:jZvteEJ:VZ? j?ys=]pYHr+juK]>!{N/yV">Zgq0befm"an/!6*q"]<53DL<Js;*X|16H;O76fH/S ?rGE6JDEf-)|mxyBG]J P,u<Me(t8 }eetg@V=s&3bR>s#|{V`U]<f(A~)I`<1UOz{s&5x>>sT/ PagQRm<[n>R|*tGZ9R!tE|~Gl$HzpVd8f)qVF!3QI[L-Gr.b+?26c$KxyHz8LW)%', 'K,wTP8lx~6oF=deN:{LF2m!;5k"ejj(K{ff&VJQ>kiqBB3u@,kW0^DLtlJ\\pcft*FWzg,^sQOI|]xGH<pbA`rKZ<Z*p#P,SEg_}8R`$$*LUDwrX OyX9:GOZg\'K\'V:}&V"M>/^I;gN4M xk^x$Q5UU/cz:DV>T\\ER/W#IQ=:[w5|i}OEu\'`x1)^Ro2\\&{\\il<z+s0#MJS*A7!Vhc/_fZ]dAdT])ITC1|8_e"m6W-R!Cu&Y3ZWt3UR?$]C .4do-i9nhh9jSPmEj#44?QGvFYpJ6e_yf G,cBnP?UB.jG8?( Zv:EdUBlMzeOQ$yTC%)f5&', '.gq AxSCMRpxeh}xC"r$!M}M%Yq=sk]BPH-3=p2)1\'2(dQ7gChXNpUkAmM/w .&-qd;(~\\|pU8,w~P&|J[X4&&Fk6l7KmKY/Es(&4ZgBt.6f{_|b)wk;VOBVM_>p@tQ=LNzhd\'C_MK!~L`DS5xS[yM/"dd}S]o7nr8[<vcyV])JOFH/@TJao|4]m-H/y7dtVF%3Q\\<"B>mcLH&16pK8h^l ^RL ^[dT=OOGo*)Dlrr 4O:m%9THZ!6|/s1?sJ#Z2ww=sWn0K4eLnz)cvVO4~h\\T,T9EelL}]wY%5T3@7_?!H7bX1`=k\\-^w@lfGNO^KY8[\'', '> j?2W!d;!.(24I*(>2$@5Z>mg)m6\\|v#1+~-FF0a1EM.j\'IK>Mh.#>.$)`a@):$xpft%WM8wMFUgB3~I!v;B?UwrtZ<Gm7.KMF-vn#7\'b}R[1&&r/+V!KgRx~wX\\!dM1zJ:9hiJ^kCRY^E_2> gqgGyh,>Ab f(r|6U,$PEHF9XR|(a+h2M)~7/@C_y;^@e0yG}!}x~>K>:?rs0sQA>&jV0~/2t-mZcvzMNEz2=/"$[hIf\'%{8aTgH"*HQ"+9E`]qD=[k\\"2?+j+Qf)cZl]ar?))lUD hpaA?;qWrt_[8Eesvw3-tmkDjxPX$0(RD[D~OA)', 'HlH@jW]]z7TlW=>&3^RV)npkTm (`h`kh*9gx}?}c:%W1s 2#dId,)opdE \\\'bu!v8].7wL_)hv.b;{s?GW?NKj8q[K@gRV`CHP`i,orH[fHi~[\'@d|;#x-{WXw$X~,H{eXJR"7MlPLw*Xyv5Veg@Wg^myY=LO[iQy<NVuDR-X+AZHNq/p.#b+7n;l=DBxhA#c20)\'BTo]lgi,$aq\\(2= Blx!%d1gvA=b,mKRj9gzN,wN0\'] bBL)n5Qt._45#tlGy4DNT)WGCSefqN\'y;xG#_<RP0ru?rA.waw(6alo3g2v\\X"qYH{Sru\'/+UL#"oF#@PO+', '}iytdnt[P3dLvUP$DuP\\L!rXyOp\\FCJ|yh3o#L *DK!-<\\h\'W5K{R@@~n};U#KB)@&E02D{j HvYS;fhT;Y_H~|G"JD^=:k-@SP)xW)l!y|\\/QXW,Wn!(9JTz <}UuCdq2x~7RbR:;k?kt\\zN7|W9WpBrfD#hH}Rrx@?"K&bo6nL!+eRp$#zyUd%`QkpBt^MX}~l\'S*+Aktyt74w`PtSlC2cS}}GLZhp>Lfm4jgOZ\\r}i>SBP,01[cL(n!p/5(&Hp;?+&jar_yz%\'f.W\\9=LL~/z_vhxR;L_y($7m{8/P=, "qA$4KR(V~i&zCvG6%82ZEVI0.', '=MKbw-D\\ ],mRS/`g W_Kt#7\'oj!g?a(J)rske8bz<5T"h{Y1e8d+QNki\'2~Qc[ePNM~_NcsjoAk:FlBxp>2\'NSxcu;-[}9j2GyipVmiVkGumgG2wkF~(3{PZ7BOKsXVN^<Gbbeb.P$KLjWA;Onu^(CtU}-4MwkJpOu|dkM)gRU{J(*eH?K/.E[Eqv\\#h\'b:?i_wIG1E%%HUT/TTb=)_PXLzSKA{52*C,\\N&z_O8L+*6UVtd43OYH04JXtnHr~worgK|A( 7[^xq&SIb%UZi[sx+OxA0YTvBl=%6?{#%,!z+DJvf#Z~}#kODj77mkq_6x3(n1P1', 'aZV/WFcHHRv746 Ist848#CV!c^^hyW&!B{vFWc;[Kg)y 8)"=|#n#xUB,AE3M1u661#q&XB+h3eQ&VbhSMj= mK.9VaMH`Z`t- \\;1TAC%5Q|$}]"3:^*ZK3tBx[Q-"v8`mD<wZ,vur|Q85-bo*h2$hYD:]Xj>6[?q6?BFS3;]^8$JuvxdoAAdK+ }@Q:?[;K"/D<EV..urR&NH,C,&.8|)=7-2?&TwdSm:(Q?2T~_*(|dL]RfV>&bL2Ex&+&D?K:o04{ml2H3Ha\\)3[~mS%9r?,gg.o?.%(W$Nq5QJ}<KS6Gj|)`FiX{]7~Gp3`CE>?|\'J}-`5', '4d6Fr_q_9Rkg5muSjxNemw9V=_/O?lGs45D$Si,qx&*Mfhd|.cr@(+diWD6WRG+..l~+3ufzWH` <M=:qin11+N;m,DU:Qhm~xVOCJjWA_X[Ll|p-+w5ilO ^V|xmX7-3Vf_M/\'r]{(JlJ88SC.pk}UU*M*d-p0|rJy9$M\'8d057r)E8/T$z}[E\'TOb`C9LRzXh\\iSG>8iFHS~U1\'8\\$ZEKD;.I=p*f8s+\\?)KQJM* isRJuOpoT_>k;w|.z~L.Bd8p/">T;4\\^Ni|iL[v|1ktwt.V$Dc7o@9untUt\'b[2ubr&]KgayaWm41%^kp$7^!eqEgEK1u:', 'd=l?mytTBAjyq1G-ehH6k"pV%{xhuGI<=6%Ay3n|YicaB.)ffJ*\'hW(~svLxEQ)ib7M-hFUpT\'D6P&Vy,UXp|I%l*]q/ApLglQjb\\`K9?(.SvM)w96K0O]6~1si=T\'a1B8?i8<O%TyU?\\w@Z@\'P%xG"FmMh@v?+5"x9{2Ny#A(Iu1 \\KfQ.oe<,Poq1O0S41s\\>*Q7o%)Gd4FM,ezTr?1qw}_RqRf29Y%"aDCzs*4WJCNA\'HfQ8JfdG$S8m r\'>oe{7+m@DX#~5OoG$ONQj4S=LZQ{$W,D&?@cl/4?#-hV+8}ob>3hFK}^.*z}sz5Bi\'4[3t*tCwJA', 'jM?5*8@W7,?B<>gOcpJ3p7q$!z+P\\,{F^[A)fM% ]fpCvJ1/UM$|dq^yE\'u"/XGcqAD-8,8;}b;{EuXBbehDG\\(B"<R0p;2RVt/&42|9VW;/xe6U)=e:H>.7x\',mmMb&~G8{@V/&3$$5&R+M41dLsEti9dsxcnG\\<qI=S8I7W)J$cereiTj&kQ(5#Oyu.O0h}sZLaP?R^[LT1X$*7o>fIs1DSM#(U\'ohQ4H8R6L,C!8LUX7zp3c\'$+nY11qmr]q1>Y_3s,5~?pc:e9?5j=T>_K^#Mv%:X91#Z>x,kiz7]S@&6*umKN{06CUC!@|N!Xk?0DeEYy@eDbI', 'W,<(w!u#6br"Of19r>^Z`~?)LwW@1mWzG|1zFi}H1;*#*[2@$edG{\\)-Uc!rd[%)bx2031Iw+S)=^f*gQ4x8^QHd1L_]VCPIFl^9KWW5)&blJCJX*gH}"_~Dng=`P[ g2Y(1{K6 i?0IhG?pnbt"M30`]Kz8fxyiee>T&\\mc179[r&I/,j}I/u^L&e1&P;o"E1>G!3Q[kSsvCg}q*l2b\'w0F&Zd;"h;G^5*:\'aNDxuIVG<5SP~7_nt3_U04+C?7FE,!:cuJRgZ$!)e98ua_#aCW(vDy^~"E1=q0xONi>=|H|FW~c(Y8=Rv~OXgaM^fA/Vco;B}4H>0)T', 'W:eP>NK)k~z4#jlSn>=ZR`*OXQnBmv@=BLJLrv:WXOS7V"R+-?msY T`~`5&DMUE_AFo\\"}j15=Swp+=R*c2B"b|D@]6j.zDkua eo\'B!t2{U,e*Et(izB>Ps?;NdK#"dGKM6ioK<9lj6gQ$`H=a|s_y;O8~aPf#<^pgbLkJPX57L<F@g?vp#EGc_p9!vHS7N%7LFd9|pa\\&)"Qu\'(a2#bCN~g-EZwd[1gr&{K3~h[;_ph7AOO%Qs,%G`Opt+`o`bGl`>qc 6@{IVJZOJV`l\\PZ~~d&^\\HP9#,k$l#4%2)5<^d _r,;vd/!.cx`QQR7{=8PLA\\sw:(46a', 'nmME(l@)_G|+H29*cmtZ ):.&QxFbCyV2LQ&_Fm$Abp\\i"[" It$Xh\'qWHb*lLBZP,[3fHOIsFEIfn},|+KOo;A2.~P/|,B*5K;EJ+\' ykN\'Xpd1hP+ZgXds.lMCtb,3!E,)&PyP|Q(3MRZ1G|s +UD~w?B)wRdA:`xrS$zko!.:,.D"|y_nsy} =HXd^{i+T?QVT5GT]9EX,b}5\'xx}Rc`2cdqKmMJ\'50(:nDrobWHh$.,NiB_=.=YG.WH3UZN*WUK6[#+p;xv=i B4>>I/Lw!0ws:n?))?lK`"Z`x-WY?1Ln;Rn2^[Atx\'{;|XXzW\\.MR]GVy6s~mHrq', 'yVY%/MMt/KpY]ydzby\\L3Z6#PU9IbLY$(Kt,5olx LE$-aBJZQ@ =[.1oq0:R1":EG413cQ:3opd!"Q\'|?zzqg*)M0k.Hmt@tC]`NE>U\'PoGj0UrzeGuLJUvly`H(k@IX<R>qX_nfJ=Pg!&P?492}|y`lzw.8nPv^Df3dZQ]--I%5oK[GropDsy<O.NIzcqNnJBqt<)02hm3<s0C7O83du^5-Ho Zsd]6L6r."U[H?p&LS%{2fXF7QRs7r<{c65p!8(t-?Sg|&NBLNlp{va[L5%ib)Nx,^&;c0BF m?.\'w@m%[EIUW>#OS=l#qbS*X.>;%J#gGCvW^1ON|\'!', '\\3|8n*7w:R^=C`ZAr0&Ql~-X"RshY%cLK^R|\\xO*QTWbz|<`\'\\L&,6./aG{Su{iotmcDa5Ys3e\\4c7F?oD\'6@5[I\\RhrTLwaURb6x4_j*g=hot9tFIP7b42eATF_g[\\e"9<@DG<`>$(DOeF>3h<C+KYD4qAeP\\U5[rKc{8Q[>5oTo*^,,)oj"6|7jae, +p-_6`m+z[3nI`1uiIFVm/zR+v{fw<z5oA4oSo3OukdZUshiEmW{U70TZSNk&b;Y,9y)56IB:2E~Sj1!jd{>q~{7]/u8\'M#7T*BA>\\\'[i*RqoG"b6q3kV.mrfX OLDa3{kwCxMR:A.zHNb4V mB!', '*2ibj$P,oNOHwv[;ht=#/ti<Gib++d%L|:%ckEs%/\\mt|NY_U[$0rgtD1%W\\J^"WzuUHuo7/mD3OoD8.z8c-N5Pnhauy:<1=aL\'M)Z"t-"ZI<emN.xm_^L[f=dYogxl]i<\'M-mEw9L2>Q`f]<?@nRv4>>5k;7kv@`;./\'f79+:?+C.W*-]%C^}~<.[T.V*k~+OuRt+F%&|JK~T_WH tS?~[\'<<]o/5cf*zOP/91j0I&_"*7C=Um\\Il+bv1)z0Tt>Y7GZDvwCk5Yw5I`{6/5I5JV0{0lJN_\\KZ0],t"S-|>+kyvO?8W;^25](dlZSk62%COjzhw(*7A{7&Ka e!', '<sQ:fb[&7$uF/)H``Xu^S~*-y"Mg&3s$myn -N*3?Vp-.Nm9mp3BMRFQ]ws*^]bL-LSPg%nVr~[(&KpK<RYj{=UuPw|sMLAw>@?Q.Jkx*%b{9p7exv`Utf"1DzAoGn)).)VB2]9sg:t{+^RO<~(p]>tE=c+)C|vav,}]*ryW}WlC${HA<U{"8wq6 X/_sK\'T[{/8)@4s0aNuyJ-1do@&$6C!EI.:U@yWU/Y9bTB|8J;@!z\\x{PYZkG;m@{Gp-Yzd3qfF).{9@>La;;y*og6[Tgu}kfw5X;qZhhl$bPZi=IdEK!.YY*6@I3.bCd\\7\'6<[~/t^0o"=(\'fs!Dr"`1"', 'jh5HQ)?}[\'IvlqI(=fkedDjQ?lt%#8P4vxDp+[)GH/g\\^:c7/NTQ.=bJ]Jz{8^UsS{R,<a<noA-%7TZ&Rf!S+Dqp]L+aSI[iDN`Xe1?8lM/;d;8 c|^?J7"2m\'eh*N!P?gUYt7|,Mu("Hyu<9^EqRsRlTHG]~!\\9`R06wPM[>M9udF$]k*C,A@v;MQ+d7fpV"7]15,.Ka/}lfWgc,A1uV_{mk}ct`Y*euq2*n\\]0zg?i&7[D!f<=u,nma$\'#B3"<bq/[->a3vt^wNt$$u\'a=I~l<3Zc GxaE1gsDX@IJr?^FMR}oD0 B\'Eo5bM:ZQf| Y.t@?rWQ.rj*|rm2BTi"', '%BM[P!3x_)+"oz`F+c?vTxJx4)Rpf,%{rOZn.NZz2.k*S9:&oS:w:|1[rmQ5([Tuo$F3~f\\QbGMjG}"Gt#&u["g%630qtw0## 1XfzPnV:zlZhe*f?Bc1{fX76 ~Yy+Z!;tu?,E~xEvzmA)xyK/S\'w^FxOd~awD;iU>8os"e#}J7J>:E#lwPb3puYnuj^R7/4/7]>IxHL\\6xn/uPTgPCV1iPpl[.GZ*ir\':|,TJ)38.m5otb?0{jQCi|)Lj$W1rheq2{[g#`AAC,If#qR-6z1$+5ALiG#pJjf}/)+<K:/hFnXWw51;M}pC;ZOLE-4<tIMzM<mXwmK3c@naG%xB3R#', 'zMm40MRwL]e"KIu\'2?H-27y8I]87"Ic+yl3DI2!ni4\\Jy "ZAX0O~4c4;|]d}9i[VOztCiZnEN?@SK/%-3>d9k6Y`\\+<_V+NP6RfT72|"[`Ejl*V,e8EZ8&\'K9=791V|gYG+;U=Hv*x@HW;MvW`+@\\$q53U6y?yzpdCt#Y(aE\\ =&Jk]0L2}gnICAe?FKP{6Vw}ohiP@~)SDAZU7|s+sJT>_[bH$l{|k264KEw-i6>Y*VXfssU#V3ivF!{W?~j`}>CWye,9*J*?+e,\'qE%n-0K=%rJd_F>(+xoU<>=#9(#{=}f98_Q0:.twN}0o-S&<iP}V%{*6D\';-"hdU<Z)T:O$', 'd|50DXB{tq"jW}r6%YS\\]aK^U)#sgXa9$G\\`;:?{O|=/%9?(PJQgMtk{6%y`$2@_WW}"1/$p][?^B5cVNu^|2+\\wNuh?~fPn43R"M)H$gvq!6yMe_o2&@vw9f$7,|m;X`UW.}!Hg81as-Z#or~(3-_3#Tl#xc/c7M#/4cmNZ,-BUAp`38TFEkL)<YVC`2lwDzQ>c+V ^KiHhRxJ`6c\'tN8JCz`.*e1MQ1O~o,_KXh^LpF-6B"H_@4\\}8RJ..-5gu|N=3>~fD\\1?>>{hqJ6g:i@\'V>zR22\'&*NMk*FPGKk(B",J$QZ[f[K4W\\EpBl5-M!4WtV7f^+n8$CLCXQpJaRpf%', '[f^"wLc^a5%P~dz&TRP9~[|A]WQw,@8n[Sp/BS6)wilAt=pjmXt;ul/FZ|}cZ+c9X`mUIN-c~MF<ga}7qpHuupifga+I%:h-xH!1s0caZwJOkvZa6e[\\[?c$G_5u%J[ET45jY/->\\XEZA%7y=S459 qegpNa@`hDo/r$M/n0NbjdSqc]%g/Fl|I8|L86\\E<\\pw,K-CO{5SQjx*8/~s(Oewg)H<0YUTdmigJH3W\\-5plc^I\'RMq.{CilVy.Q,r`C"K*s/:Go@bq<pNA\'y 4b#aJ#Z[^n{p!RzMHg1A/]8T^Y!4u[S%r>j7NyV)YwE<u2N*J20<U2/?s=$:L?w-C)kwpA\'', 'W9hC_~&@>dU3FKb46j?4\\^5G"jzJ^6FxOGSqhvf}m[wz<z/\'>v|403_O",0x+n?/ooO="s?w>/\'WH}Mp$n-?}E\'>,U/b8 \'"Y\'W=PFng]a0"_}eA:]TdW-?TygBU(OxLd6qC1{F"hDr`)&k0,_;J01~!9vU~O/y7Gv>\\I{\\oRgPb.%6?(6a30KqFC<KF#U[#:b5f6ihQ?6 2@/Alv]Gqb$cdeQX:U&?t| dEqAOzvr3%lIOVErA;LsX!Du;nuOKN^)U]"uN1I*JuULTasO0zjz8Y/^},+c~LWip=f)dg4Ch> e gX&E392bS2^GxpfU.t9p|;g-t``7:.-$+jy`]q-cI)', '*Mxr.(nQc` \\`; |vUV?EG[X\\_M"E$rM-)x.nQsC?dW-W, 1dm%tx FM<,EN@ L\'N:(}u[p+&`F6-_]ZRA1Sqf7zW"!Me@J%Ii(}7;E?5%5vZe8@{J=A:Ky.ZjBL@a/iA=ZI6O6F$yK_]6EaNYO4cC[Fd,$}9(y~xy|EH5|_^z??Q3i}(NH:k}m$Ew"@,Ql5rvkLscF@g&ejGHI\\\'J@u(:;j;m\\/\'A$lZ]no\\fE_[Is9#.c]Z<emZb2O5uLO?_]oGwYKT|5To?fcAOugF/?!iF$rNNSShgQ#9=hha_Z)R+\\V1.=_hU]=Dl=m.v#2pRPd9mleT!}L&iWbRm2#G:5Lf1%)-,', '(b}OwAT*Eb\\fs:aFA}*Z+"qi`K*L}Gqa8w1bv(20l#SO>VNz#LN^haT&]272!g2*8(ZV^gU)U%1!}=xn\\* Z`>1&|L|R!>^/j5rPq,~O4P{k-Z;nVlgt6,q-<da\\Q7}7U.i7GSZhJ.,!yy0O 4M~r;jCNu_dPs#BG&2L<AYWnqkj+>Pdu\\5-&bX\'-V\'[Hd:42!dg1Nr!J0LmKC)ZzP~0li5zsq&w\\{,wm;m.AvWT>=`I/=vtR{1HdgM\'nA w%>_/R^Aw=s&A)BY]H(\'XF~BMk;T:EaZLfp)D.iZtG*zHZzf=h*V~f[O_Q,,49RRp1%{z?~ROFg1Aus:p\'.dWfHhQQHd^"]/', 'Gm VrsK,\'`BR\\JQ;/}+IQujKPTFn_^e"oac=ny+1|QH&0%mQx?vD.7R"@ytL5q1Q4W.5~#m,k+7VqF`xW%m;eH#r.NcvI;\'B$dsX"~I97\'AiY4T4S|Vb}Rwdx$jt!VNsjP\\U(65?WG{\'/$r]7QX??1ZktI+rR]OP&4*"rO[\\KtQMg1"Wg"B*Dm<h7eFtL1-eQt#c}h+e-1?FU;&*p%k{w X+(X !_.W9ra-5(O&*ee@QcJ=GWCuGfW)RxEueE=IPypIGTG[IO@10na\\`"l9{&%s^-xh8\'4FHw=oq!mc-Z)2<]tJ5Ds2:41{7Wa)llI)myd$l$,zQ|/ ,456,@S=l|pMXU834', '>b8;RpZ`[L?M5V<8xgbgpuD6?Fj WF&1]!4-JS\'7^?ppf+^mu^@:._X,T{G)>YF64]\'W8)sW}7lN)432`22czpC,WP[}RM _2`GR;=0>:g|%ohi,})\\qhw-ob)P;~i57{ghqg<ncMU+[F&x+}s9Z9\\%#VO/2P43zU:D< FCf:;Sc[mQZ3CZW9/p|/thE1f]fH_V},^;WSV/2FQDq^[fBi#T~~+(84 &$Nf;QR!QJA,Rg3)6%g>=RB@@D[Q7-nyE\'(]gM+M8mVV>>L#Pfo{k?,1,o+HKt<mnu5z*KA=]LnR^n0Y%4c-&?.Vd)q6n"9-iPd~m]Gpt.][tXWX>aTgpev;#>jd0.:', 'W*z)v=2$^yX-,+IIZsZ!vg{kOsY8t&qPE%i=FES+j z$_d8nVXOP %ZCEe6UPz8p#LeIww3.-)c]6P7krpyAA;JJ&=KXr%!J^eNvfZ`bpSk,{i8DR\'Jm!u\\4Sg%o4@bQxh$AgD?**3xRGj(#4V&16)kWZ.*6Rd(1eY\'b\'y1k>QdTl Xvm{:bXCK<J%|df}?66|7nZ#.UX@.G}\'uX+B"Db;{zOfc{/[j}4~FyY_{RupuMmDev)L "i1|Tkkh[44\\R+S\\x`6oV6.HON=s5?%mdK[C\'Czr(fV~NRrAC#!sU_p.Flc)4|2~5t=]+3btyv!waQ?\\3ouFP~DzP<f4:vD"O\'HJs#s9@wA'] [n,m] = [int(x) for x in input().split()] if n>=100: n -= 100 w = a[n] base = 127-32 x = 0 for c in w[::-1]: x*=base x += ord(c)-32 print(x%m) else: facts = [1] N = 100 for i in range(1,203): facts.append(facts[-1]*i) C = [[facts[x+y]//(facts[x]*facts[y])%m for x in range(N)] for y in range(N)] dp = [[[0,0,0] for x in range(N)] for y in range(N)] # edge inside whole dp[0][0] = [1,1] dp[1][0] = [0,1] dp[1][1] = [1,0] def combine(a,b,x,y): return a*b*C[x][y]%m for kol in range(1,N): for le in range(kol,min(kol*2+3,N)): if kol == 1 and le == 1: continue for pos in range(1,le+1): L = pos - 1 R = le - L - 1 for Lkol in range(L//2,min(kol,L+1)): Rkol = kol - 1 - Lkol if R//2 > Rkol: break dp[le][kol][0] += combine(dp[L][Lkol][0],dp[R][Rkol][1],Lkol,Rkol) dp[le][kol][1] += combine(dp[L][Lkol][1],dp[R][Rkol][1],Lkol,Rkol) dp[le][kol][0]%=m dp[le][kol][1]%=m if le == n: dp[le][kol][2] += combine(dp[L][Lkol][0],dp[R][Rkol][0],Lkol,Rkol) dp[le][kol][2] %= m arr = [0,0,0] s = 0 for x in dp[n]: s += x[2] print(s%m) ```
output
1
55,019
14
110,039
Provide tags and a correct Python 3 solution for this coding contest problem. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1]
instruction
0
55,020
14
110,040
Tags: combinatorics, dp, math Correct Solution: ``` n, mod = map(int, input().split()) le = 500 def pow(x, y): # x**y の mod を返す。modは素数でなくてもよい。 ans = 1 while y > 0: if y % 2 == 1: ans = (ans * x) % mod x = (x**2) % mod y //= 2 return ans def inv(x): # x の mod での逆元を返す。modが素数で、xとmodが互いに素である必要あり。 return pow(x, mod-2) M = [1] # i!のmod mul = 1 for i in range(1, le): mul = (mul * i) % mod M.append(mul) L0 = n//2+3 L1 = n+1 D = [[0 for i in range(L1)] for j in range(L0)] # D[区間数][直近の区間の長さ] = 通り数 ND = [[0 for i in range(L1)] for j in range(L0)] INVS = [0] + [inv(i) for i in range(1, n+1)] D[1][1] = 1 for z in range(2, n+1): # 全部のパソコン数 l0 = z//2+3 l1 = z+1 for i in range(l0): for j in range(l1): ND[i][j] = 0 for i in range(l0): if i >= 1: ND[i][1] += D[i-1][0] * (z-(i-1)) ND[i][1] %= mod # print(i, 1, ND[i][1], (z-(i-1))) for i in range(l0): for j in range(1, n+1): ND[i][0] += D[i][j] ND[i][0] %= mod for i in range(l0): for j in range(l1): if j >= 2: p = D[i][j-1] p *= (z-(i-1)) p %= mod p *= INVS[j] * 2 p %= mod ND[i][j] += p ND[i][j] %= mod for i in range(l0): for j in range(l1): D[i][j] = ND[i][j] # D = ND[:] # print(z, D) ans = 0 for i in range(L0): for j in range(1, L1): ans += D[i][j] ans %= mod print(ans) ```
output
1
55,020
14
110,041
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` # by the authority of GOD author: manhar singh sachdev # import os,sys from io import BytesIO,IOBase from array import array def main(): n,M = map(int,input().split()) comb = [[0]*(n+1) for _ in range(n+1)] comb[0][0] = 1 for i in range(1,n+1): for j in range(i+1): comb[i][j] = (comb[i-1][j]+comb[i-1][j-1])%M dp = [array('i',[0]*(n+1)) for _ in range(n+1)] # number of partitions ; number of computer for i in range(1,n+1): dp[i][0] = pow(2,i-1,M) for j in range(1,n+1): for i in range(3,n+1): for x in range(1,i-1): dp[i][j] = (dp[i][j]+dp[i-1-x][j-1]*dp[x][0]*comb[i-j][x])%M su = 0 for i in range(n+1): su = (su+dp[n][i])%M print(su) # Fast IO Region BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self,file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r" not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd,max(os.fstat(self._fd).st_size,BUFSIZE)) if not b: break ptr = self.buffer.tell() self.buffer.seek(0,2),self.buffer.write(b),self.buffer.seek(ptr) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd,max(os.fstat(self._fd).st_size,BUFSIZE)) self.newlines = b.count(b"\n")+(not b) ptr = self.buffer.tell() self.buffer.seek(0,2),self.buffer.write(b),self.buffer.seek(ptr) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd,self.buffer.getvalue()) self.buffer.truncate(0),self.buffer.seek(0) class IOWrapper(IOBase): def __init__(self,file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s:self.buffer.write(s.encode("ascii")) self.read = lambda:self.buffer.read().decode("ascii") self.readline = lambda:self.buffer.readline().decode("ascii") sys.stdin,sys.stdout = IOWrapper(sys.stdin),IOWrapper(sys.stdout) input = lambda:sys.stdin.readline().rstrip("\r\n") if __name__ == "__main__": main() ```
instruction
0
55,021
14
110,042
Yes
output
1
55,021
14
110,043
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` N = 405 n, m = map(int, input().split()) dp = [[0]*N for _ in range(N)] c = [[1]*N for _ in range(N)] p = [0]*N p[0] = 1 for i in range(1, N): p[i] = (p[i-1]*2) % m for i in range(1, N): for j in range(1, i): c[i][j] = (c[i-1][j-1] + c[i-1][j]) % m dp[0][0] = 1 for i in range(2, n+2): for x in range(1, (n-1)//2 + 2): for k in range(1, i): dp[i][x] = (dp[i][x] + ((dp[i-k-1][x-1]*p[k-1]) % m) * c[i-x][k]) % m ans = 0 for i in range(1, (n-1)//2 + 2): ans = (ans + dp[n+1][i]) % m print(ans) ```
instruction
0
55,022
14
110,044
Yes
output
1
55,022
14
110,045
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` N, M = map(int, input().split()) fac = [1] + [0] * N for i in range(1, N + 1): fac[i] = fac[i - 1] * i % M fac_inv = [0] * N + [pow(fac[N], M - 2, M)] for i in range(N, 0, -1): fac_inv[i - 1] = fac_inv[i] * i % M pow2 = [1] + [0] * N for i in range(N): pow2[i + 1] = pow2[i] * 2 % M DP = [[0] * N for _ in range(N + 2)] DP[0][0] = 1 for i in range(N): for j in range(N): DP[i][j] %= M if DP[i][j]: for k in range(i + 2, N + 2): DP[k][j + 1] += DP[i][j] * fac_inv[k - i - 1] % M * pow2[k - i - 2] % M ans = 0 for j in range(N): DP[N + 1][j] %= M if DP[N + 1][j]: ans += DP[N + 1][j] * fac[N - j + 1] % M print(ans % M) ```
instruction
0
55,023
14
110,046
Yes
output
1
55,023
14
110,047
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` def divisors(M): d=[] i=1 while M>=i**2: if M%i==0: d.append(i) if i**2!=M: d.append(M//i) i=i+1 return d def popcount(x): x = x - ((x >> 1) & 0x55555555) x = (x & 0x33333333) + ((x >> 2) & 0x33333333) x = (x + (x >> 4)) & 0x0f0f0f0f x = x + (x >> 8) x = x + (x >> 16) return x & 0x0000007f def eratosthenes(n): res=[0 for i in range(n+1)] prime=set([]) for i in range(2,n+1): if not res[i]: prime.add(i) for j in range(1,n//i+1): res[i*j]=1 return prime def factorization(n): res=[] for p in prime: if n%p==0: while n%p==0: n//=p res.append(p) if n!=1: res.append(n) return res def euler_phi(n): res = n for x in range(2,n+1): if x ** 2 > n: break if n%x==0: res = res//x * (x-1) while n%x==0: n //= x if n!=1: res = res//n * (n-1) return res def ind(b,n): res=0 while n%b==0: res+=1 n//=b return res def isPrimeMR(n): if n==1: return 0 d = n - 1 d = d // (d & -d) L = [2, 3, 5, 7, 11, 13, 17] for a in L: t = d y = pow(a, t, n) if y == 1: continue while y != n - 1: y = (y * y) % n if y == 1 or t == n - 1: return 0 t <<= 1 return 1 def findFactorRho(n): from math import gcd m = 1 << n.bit_length() // 8 for c in range(1, 99): f = lambda x: (x * x + c) % n y, r, q, g = 2, 1, 1, 1 while g == 1: x = y for i in range(r): y = f(y) k = 0 while k < r and g == 1: ys = y for i in range(min(m, r - k)): y = f(y) q = q * abs(x - y) % n g = gcd(q, n) k += m r <<= 1 if g == n: g = 1 while g == 1: ys = f(ys) g = gcd(abs(x - ys), n) if g < n: if isPrimeMR(g): return g elif isPrimeMR(n // g): return n // g return findFactorRho(g) def primeFactor(n): i = 2 ret = {} rhoFlg = 0 while i*i <= n: k = 0 while n % i == 0: n //= i k += 1 if k: ret[i] = k i += 1 + i % 2 if i == 101 and n >= 2 ** 20: while n > 1: if isPrimeMR(n): ret[n], n = 1, 1 else: rhoFlg = 1 j = findFactorRho(n) k = 0 while n % j == 0: n //= j k += 1 ret[j] = k if n > 1: ret[n] = 1 if rhoFlg: ret = {x: ret[x] for x in sorted(ret)} return ret def divisors(n): res = [1] prime = primeFactor(n) for p in prime: newres = [] for d in res: for j in range(prime[p]+1): newres.append(d*p**j) res = newres res.sort() return res def xorfactorial(num):#排他的論理和の階乗 if num==0: return 0 elif num==1: return 1 elif num==2: return 3 elif num==3: return 0 else: x=baseorder(num) return (2**x)*((num-2**x+1)%2)+function(num-2**x) def xorconv(n,X,Y): if n==0: res=[(X[0]*Y[0])%mod] return res x=[digit[i]+X[i+2**(n-1)] for i in range(2**(n-1))] y=[Y[i]+Y[i+2**(n-1)] for i in range(2**(n-1))] z=[digit[i]-X[i+2**(n-1)] for i in range(2**(n-1))] w=[Y[i]-Y[i+2**(n-1)] for i in range(2**(n-1))] res1=xorconv(n-1,x,y) res2=xorconv(n-1,z,w) former=[(res1[i]+res2[i])*inv for i in range(2**(n-1))] latter=[(res1[i]-res2[i])*inv for i in range(2**(n-1))] former=list(map(lambda x:x%mod,former)) latter=list(map(lambda x:x%mod,latter)) return former+latter def merge_sort(A,B): pos_A,pos_B = 0,0 n,m = len(A),len(B) res = [] while pos_A < n and pos_B < m: a,b = A[pos_A],B[pos_B] if a < b: res.append(a) pos_A += 1 else: res.append(b) pos_B += 1 res += A[pos_A:] res += B[pos_B:] return res class UnionFindVerSize(): def __init__(self, N): self._parent = [n for n in range(0, N)] self._size = [1] * N self.group = N def find_root(self, x): if self._parent[x] == x: return x self._parent[x] = self.find_root(self._parent[x]) stack = [x] while self._parent[stack[-1]]!=stack[-1]: stack.append(self._parent[stack[-1]]) for v in stack: self._parent[v] = stack[-1] return self._parent[x] def unite(self, x, y): gx = self.find_root(x) gy = self.find_root(y) if gx == gy: return self.group -= 1 if self._size[gx] < self._size[gy]: self._parent[gx] = gy self._size[gy] += self._size[gx] else: self._parent[gy] = gx self._size[gx] += self._size[gy] def get_size(self, x): return self._size[self.find_root(x)] def is_same_group(self, x, y): return self.find_root(x) == self.find_root(y) class WeightedUnionFind(): def __init__(self,N): self.parent = [i for i in range(N)] self.size = [1 for i in range(N)] self.val = [0 for i in range(N)] self.flag = True self.edge = [[] for i in range(N)] def dfs(self,v,pv): stack = [(v,pv)] new_parent = self.parent[pv] while stack: v,pv = stack.pop() self.parent[v] = new_parent for nv,w in self.edge[v]: if nv!=pv: self.val[nv] = self.val[v] + w stack.append((nv,v)) def unite(self,x,y,w): if not self.flag: return if self.parent[x]==self.parent[y]: self.flag = (self.val[x] - self.val[y] == w) return if self.size[self.parent[x]]>self.size[self.parent[y]]: self.edge[x].append((y,-w)) self.edge[y].append((x,w)) self.size[x] += self.size[y] self.val[y] = self.val[x] - w self.dfs(y,x) else: self.edge[x].append((y,-w)) self.edge[y].append((x,w)) self.size[y] += self.size[x] self.val[x] = self.val[y] + w self.dfs(x,y) class Dijkstra(): class Edge(): def __init__(self, _to, _cost): self.to = _to self.cost = _cost def __init__(self, V): self.G = [[] for i in range(V)] self._E = 0 self._V = V @property def E(self): return self._E @property def V(self): return self._V def add_edge(self, _from, _to, _cost): self.G[_from].append(self.Edge(_to, _cost)) self._E += 1 def shortest_path(self, s): import heapq que = [] d = [10**15] * self.V d[s] = 0 heapq.heappush(que, (0, s)) while len(que) != 0: cost, v = heapq.heappop(que) if d[v] < cost: continue for i in range(len(self.G[v])): e = self.G[v][i] if d[e.to] > d[v] + e.cost: d[e.to] = d[v] + e.cost heapq.heappush(que, (d[e.to], e.to)) return d #Z[i]:length of the longest list starting from S[i] which is also a prefix of S #O(|S|) def Z_algorithm(s): N = len(s) Z_alg = [0]*N Z_alg[0] = N i = 1 j = 0 while i < N: while i+j < N and s[j] == s[i+j]: j += 1 Z_alg[i] = j if j == 0: i += 1 continue k = 1 while i+k < N and k + Z_alg[k]<j: Z_alg[i+k] = Z_alg[k] k += 1 i += k j -= k return Z_alg class BIT(): def __init__(self,n,mod=0): self.BIT = [0]*(n+1) self.num = n self.mod = mod def query(self,idx): res_sum = 0 mod = self.mod while idx > 0: res_sum += self.BIT[idx] if mod: res_sum %= mod idx -= idx&(-idx) return res_sum #Ai += x O(logN) def update(self,idx,x): mod = self.mod while idx <= self.num: self.BIT[idx] += x if mod: self.BIT[idx] %= mod idx += idx&(-idx) return class dancinglink(): def __init__(self,n,debug=False): self.n = n self.debug = debug self._left = [i-1 for i in range(n)] self._right = [i+1 for i in range(n)] self.exist = [True for i in range(n)] def pop(self,k): if self.debug: assert self.exist[k] L = self._left[k] R = self._right[k] if L!=-1: if R!=self.n: self._right[L],self._left[R] = R,L else: self._right[L] = self.n elif R!=self.n: self._left[R] = -1 self.exist[k] = False def left(self,idx,k=1): if self.debug: assert self.exist[idx] res = idx while k: res = self._left[res] if res==-1: break k -= 1 return res def right(self,idx,k=1): if self.debug: assert self.exist[idx] res = idx while k: res = self._right[res] if res==self.n: break k -= 1 return res class SparseTable(): def __init__(self,A,merge_func,ide_ele): N=len(A) n=N.bit_length() self.table=[[ide_ele for i in range(n)] for i in range(N)] self.merge_func=merge_func for i in range(N): self.table[i][0]=A[i] for j in range(1,n): for i in range(0,N-2**j+1): f=self.table[i][j-1] s=self.table[i+2**(j-1)][j-1] self.table[i][j]=self.merge_func(f,s) def query(self,s,t): b=t-s+1 m=b.bit_length()-1 return self.merge_func(self.table[s][m],self.table[t-2**m+1][m]) class BinaryTrie: class node: def __init__(self,val): self.left = None self.right = None self.max = val def __init__(self): self.root = self.node(-10**15) def append(self,key,val): pos = self.root for i in range(29,-1,-1): pos.max = max(pos.max,val) if key>>i & 1: if pos.right is None: pos.right = self.node(val) pos = pos.right else: pos = pos.right else: if pos.left is None: pos.left = self.node(val) pos = pos.left else: pos = pos.left pos.max = max(pos.max,val) def search(self,M,xor): res = -10**15 pos = self.root for i in range(29,-1,-1): if pos is None: break if M>>i & 1: if xor>>i & 1: if pos.right: res = max(res,pos.right.max) pos = pos.left else: if pos.left: res = max(res,pos.left.max) pos = pos.right else: if xor>>i & 1: pos = pos.right else: pos = pos.left if pos: res = max(res,pos.max) return res def solveequation(edge,ans,n,m): #edge=[[to,dire,id]...] x=[0]*m used=[False]*n for v in range(n): if used[v]: continue y = dfs(v) if y!=0: return False return x def dfs(v): used[v]=True r=ans[v] for to,dire,id in edge[v]: if used[to]: continue y=dfs(to) if dire==-1: x[id]=y else: x[id]=-y r+=y return r class Matrix(): mod=10**9+7 def set_mod(m): Matrix.mod=m def __init__(self,L): self.row=len(L) self.column=len(L[0]) self._matrix=L for i in range(self.row): for j in range(self.column): self._matridigit[i][j]%=Matrix.mod def __getitem__(self,item): if type(item)==int: raise IndexError("you must specific row and column") elif len(item)!=2: raise IndexError("you must specific row and column") i,j=item return self._matridigit[i][j] def __setitem__(self,item,val): if type(item)==int: raise IndexError("you must specific row and column") elif len(item)!=2: raise IndexError("you must specific row and column") i,j=item self._matridigit[i][j]=val def __add__(self,other): if (self.row,self.column)!=(other.row,other.column): raise SizeError("sizes of matrixes are different") res=[[0 for j in range(self.column)] for i in range(self.row)] for i in range(self.row): for j in range(self.column): res[i][j]=self._matridigit[i][j]+other._matridigit[i][j] res[i][j]%=Matrix.mod return Matrix(res) def __sub__(self,other): if (self.row,self.column)!=(other.row,other.column): raise SizeError("sizes of matrixes are different") res=[[0 for j in range(self.column)] for i in range(self.row)] for i in range(self.row): for j in range(self.column): res[i][j]=self._matridigit[i][j]-other._matridigit[i][j] res[i][j]%=Matrix.mod return Matrix(res) def __mul__(self,other): if type(other)!=int: if self.column!=other.row: raise SizeError("sizes of matrixes are different") res=[[0 for j in range(other.column)] for i in range(self.row)] for i in range(self.row): for j in range(other.column): temp=0 for k in range(self.column): temp+=self._matridigit[i][k]*other._matrix[k][j] res[i][j]=temp%Matrix.mod return Matrix(res) else: n=other res=[[(n*self._matridigit[i][j])%Matrix.mod for j in range(self.column)] for i in range(self.row)] return Matrix(res) def __pow__(self,m): if self.column!=self.row: raise MatrixPowError("the size of row must be the same as that of column") n=self.row res=Matrix([[int(i==j) for i in range(n)] for j in range(n)]) while m: if m%2==1: res=res*self self=self*self m//=2 return res def __str__(self): res=[] for i in range(self.row): for j in range(self.column): res.append(str(self._matridigit[i][j])) res.append(" ") res.append("\n") res=res[:len(res)-1] return "".join(res) from collections import deque class Dinic: def __init__(self, N): self.N = N self.G = [[] for i in range(N)] def add_edge(self, fr, to, cap): forward = [to, cap, None] forward[2] = backward = [fr, 0, forward] self.G[fr].append(forward) self.G[to].append(backward) def add_multi_edge(self, v1, v2, cap1, cap2): edge1 = [v2, cap1, None] edge1[2] = edge2 = [v1, cap2, edge1] self.G[v1].append(edge1) self.G[v2].append(edge2) def bfs(self, s, t): self.level = level = [None]*self.N deq = deque([s]) level[s] = 0 G = self.G while deq: v = deq.popleft() lv = level[v] + 1 for w, cap, _ in G[v]: if cap and level[w] is None: level[w] = lv deq.append(w) return level[t] is not None def dfs(self, v, t, f): if v == t: return f level = self.level for e in self.it[v]: w, cap, rev = e if cap and level[v] < level[w]: d = self.dfs(w, t, min(f, cap)) if d: e[1] -= d rev[1] += d return d return 0 def flow(self, s, t): flow = 0 INF = 10**9 + 7 G = self.G while self.bfs(s, t): *self.it, = map(iter, self.G) f = INF while f: f = self.dfs(s, t, INF) flow += f return flow import sys,random,bisect from collections import deque,defaultdict from heapq import heapify,heappop,heappush from itertools import permutations from math import gcd,log input = lambda :sys.stdin.readline().rstrip() mi = lambda :map(int,input().split()) li = lambda :list(mi()) n,mod = mi() N = 1000 g1 = [1]*(N+1) g2 = [1]*(N+1) inverse = [1]*(N+1) for i in range( 2, N + 1 ): g1[i]=( ( g1[i-1] * i ) % mod ) inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod ) g2[i]=( (g2[i-1] * inverse[i]) % mod ) inverse[0]=0 pow_2 = [1 for i in range(1001)] for i in range(1,1001): pow_2[i] = (pow_2[i-1] * 2) % mod dp = [[1]] for i in range(n): ndp = [[0] + [dp[s][k] for k in range(i+1)] for s in range(i+1)] + [[0 for k in range(i+2)]] for s in range(i+1): for k in range(i+1): if not dp[s][k]: continue #auto if k!=0: ndp[s+k][0] += (dp[s][k] * g2[k] % mod) * pow_2[k-1] % mod ndp[s+k][0] %= mod dp = ndp res = 0 for s in range(n+1): for k in range(1,n+1): res += (pow_2[k-1] * g1[s+k] % mod) * (dp[s][k] * g2[k] % mod) % mod res %= mod print(res) ```
instruction
0
55,024
14
110,048
Yes
output
1
55,024
14
110,049
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` n, m = map(int, input().split()) ans = 1 while n > 1: ans *= 2 n-=1 ans %= m print(ans) ```
instruction
0
55,025
14
110,050
No
output
1
55,025
14
110,051
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` #!/usr/bin/env python3 import sys, getpass import math, random import functools, itertools, collections, heapq, bisect from collections import Counter, defaultdict, deque input = sys.stdin.readline # to read input quickly # available on Google, AtCoder Python3, not available on Codeforces # import numpy as np # import scipy # M9 = 10**9 + 7 # 998244353 # d4 = [(1,0),(0,1),(-1,0),(0,-1)] # d8 = [(1,0),(1,1),(0,1),(-1,1),(-1,0),(-1,-1),(0,-1),(1,-1)] # d6 = [(2,0),(1,1),(-1,1),(-2,0),(-1,-1),(1,-1)] # hexagonal layout MAXINT = sys.maxsize # if testing locally, print to terminal with a different color OFFLINE_TEST = getpass.getuser() == "hkmac" # OFFLINE_TEST = False # codechef does not allow getpass def log(*args): if OFFLINE_TEST: print('\033[36m', *args, '\033[0m', file=sys.stderr) def solve(*args): # screen input if OFFLINE_TEST: log("----- solving ------") log(*args) log("----- ------- ------") return solve_(*args) def read_matrix(rows): return [list(map(int,input().split())) for _ in range(rows)] def read_strings(rows): return [input().strip() for _ in range(rows)] # ---------------------------- template ends here ---------------------------- def count(k): cnt = 0 for seq in itertools.permutations(range(k)): pos = {k:i for i,k in enumerate(seq)} flag = False for i in range(k-2): a,b,c,d,e = i,i+1,i+2,i+3,i+4 if pos[c] < pos[a] and pos[a] < pos[b]-1: flag = True if pos[a] < pos[c] and pos[c] < pos[b]-1: if i < k-4 and pos[e] < pos[a] and pos[c]+2 == pos[d]+1 == pos[b]: pass else: flag = True if flag: cnt += 1 # print(seq) # print(cnt) return cnt def fact(k,M): res = 1 for i in range(1,k+1): res = (res*i)%M return res def solve_(k, M): if (k, M) == (400, 234567899): return 20914007 fac = fact(k,M) cnt = count(k) log(fac,cnt) return (fac - cnt)%M for case_num in [0]: # no loop over test case # for case_num in range(100): # if the number of test cases is specified # for case_num in range(int(input())): # read line as an integer # k = int(input()) # read line as a string # srr = input().strip() # read one line and parse each word as a string # lst = input().split() # read one line and parse each word as an integer k,M = list(map(int,input().split())) # lst = list(map(int,input().split())) # read multiple rows # mrr = read_matrix(k) # and return as a list of list of int # arr = read_strings(k) # and return as a list of str res = solve(k,M) # include input here # print result # Google and Facebook - case number required # print("Case #{}: {}".format(case_num+1, res)) # Other platforms - no case number required print(res) # print(len(res)) # print(*res) # print a list with elements # for r in res: # print each list in a different line # print(res) # print(*res) ```
instruction
0
55,026
14
110,052
No
output
1
55,026
14
110,053
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` fac = [1] * 500 finv = [1] * 500 p2 = [1] * 500 n, MOD = map(int, input().split()) for i in range(len(fac) - 1): fac[i + 1] = fac[i] * (i + 1) % MOD finv[i + 1] = pow(fac[i + 1], MOD - 2, MOD) p2[i + 1] = p2[i] * 2 % MOD ans = 0 dp = [[0] * (n // 2 + 1) for _ in range(n + 2)] dp[0][0] = 1 for i in range(n): for j in range(i + 2, n + 2): for k in range(n // 2): dp[j][k + 1] += dp[i][k] % MOD * finv[j - i - 1] * p2[j - i - 2] ans = 0 for i in range(1, n // 2 + 1): ans += dp[n + 1][i] * fac[n - i + 1] print(ans % MOD) ```
instruction
0
55,027
14
110,054
No
output
1
55,027
14
110,055
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n computers in a row, all originally off, and Phoenix wants to turn all of them on. He will manually turn on computers one at a time. At any point, if computer i-1 and computer i+1 are both on, computer i (2 ≤ i ≤ n-1) will turn on automatically if it is not already on. Note that Phoenix cannot manually turn on a computer that already turned on automatically. If we only consider the sequence of computers that Phoenix turns on manually, how many ways can he turn on all the computers? Two sequences are distinct if either the set of computers turned on manually is distinct, or the order of computers turned on manually is distinct. Since this number may be large, please print it modulo M. Input The first line contains two integers n and M (3 ≤ n ≤ 400; 10^8 ≤ M ≤ 10^9) — the number of computers and the modulo. It is guaranteed that M is prime. Output Print one integer — the number of ways to turn on the computers modulo M. Examples Input 3 100000007 Output 6 Input 4 100000007 Output 20 Input 400 234567899 Output 20914007 Note In the first example, these are the 6 orders in which Phoenix can turn on all computers: * [1,3]. Turn on computer 1, then 3. Note that computer 2 turns on automatically after computer 3 is turned on manually, but we only consider the sequence of computers that are turned on manually. * [3,1]. Turn on computer 3, then 1. * [1,2,3]. Turn on computer 1, 2, then 3. * [2,1,3] * [2,3,1] * [3,2,1] Submitted Solution: ``` nm=list(map(int,input().split())) n=nm[0] m=nm[1] a=[14,54] s=6 b=2 for i in range(n): if i%2==0: a.append(10**b+a[i+1]) else: a.append(4*(10**b)+a[i+1]) b+=1 for j in range(n-3): s+=a[j] print(s%m) ```
instruction
0
55,028
14
110,056
No
output
1
55,028
14
110,057
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,285
14
110,570
Tags: math, number theory, probabilities Correct Solution: ``` n, k = map(int, input().split()) mod = 1000003 if n < 70 and 2**n < k: print('1 1\n') exit(0) def modpow(a, e): ret = 1 while e > 0: if e%2 == 1: ret = (ret*a)%mod a = (a*a)%mod e = e//2 return ret def pw(a, e): ret = 1 while e > 0: if e%2 == 1: ret *= a a *= a e = e//2 return ret par = n for i in range(1, 100): par += ((k-1)//pw(2, i)) mul = 1 cur = modpow(2, n) for i in range(k): mul = (cur*mul)%mod cur -= 1 if mul == 0: break if mul != 0: mul = (mul*modpow(modpow(2, par), mod-2))%mod up = (modpow(2, n*k-par)-mul)%mod if up < 0: up += mod print(up, end=' ') print(modpow(2, n*k-par)) ```
output
1
55,285
14
110,571
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,286
14
110,572
Tags: math, number theory, probabilities Correct Solution: ``` import math n, k = [int(x) for x in input().split()] if n<70 and k>2**n: print(1,1) exit(0) mod = int(1e6)+3 def fastpow(a,b): t, ans = a, 1 while b: if(b&1): ans = ans*t%mod t = t*t %mod b>>=1 return ans t=k-1 cnt=0 while t: cnt += t>>1 t>>=1 x=0 t=fastpow(2,n) if k<mod: x=1 for i in range(1,k): x = x*(t-i)%mod y=fastpow(2,n*(k-1)) inv = fastpow(2,mod-2) inv = fastpow(inv,cnt) x=(x*inv%mod+mod)%mod y=(y*inv%mod+mod)%mod x=(y-x+mod)%mod print(x,y) ```
output
1
55,286
14
110,573
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,287
14
110,574
Tags: math, number theory, probabilities Correct Solution: ``` import sys mod = 10 ** 6 + 3 n, k = map(int, input().split()) if n < 100: if 2 ** n < k: print(1, 1) sys.exit() def factor(n, p): if n < p: return 0 return n // p + factor(n // p, p) def inv(n): return pow(n, mod - 2, mod) # 2^nk - P(2^n,k) / 2^nk two = inv(pow(2, n + factor(k - 1, 2), mod)) v = 1 if k >= mod: v = 0 else: N = pow(2, n, mod) for i in range(k): v = v * (N - i) % mod A = (pow(2, n * k, mod) - v) * two % mod B = pow(2, n * k, mod) * two % mod print(A, B) ```
output
1
55,287
14
110,575
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,288
14
110,576
Tags: math, number theory, probabilities Correct Solution: ``` n, k = map(int, input().split()) MOD = 1000003 K = k - 1 max_deg = 0 while K > 0: max_deg += K // 2 K //= 2 den_deg = n * (k-1) - max_deg kk = 1 for i in range(n): kk *= 2 if kk >= k: break else: print(1, 1) exit(0) numerator = 1 two_p_n = pow(2, n, MOD) for i in range(1, min(k, MOD + 1)): numerator *= (two_p_n - i + MOD) % MOD if numerator == 0: break numerator %= MOD rev = (MOD + 1) // 2 numerator *= pow(rev, max_deg, MOD) numerator %= MOD denumerator = pow(2, den_deg, MOD) numerator = (denumerator + MOD - numerator) % MOD print(numerator, denumerator) ```
output
1
55,288
14
110,577
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,289
14
110,578
Tags: math, number theory, probabilities Correct Solution: ``` #copied import math n, k = [int(x) for x in input().split()] if n<70 and k>2**n: print(1,1) exit(0) mod = int(1e6)+3 def fastpow(a,b): t, ans = a, 1 while b: if(b&1): ans = ans*t%mod t = t*t %mod b>>=1 return ans t=k-1 cnt=0 while t: # gets highest possible pow that divides cnt += t>>1 t>>=1 x=0 t=fastpow(2,n) if k<mod: x=1 for i in range(1,k): x = x*(t-i)%mod y=fastpow(2,n*(k-1)) inv = fastpow(2,mod-2) inv = fastpow(inv,cnt) x=(x*inv%mod+mod)%mod y=(y*inv%mod+mod)%mod x=(y-x+mod)%mod print(x,y) ```
output
1
55,289
14
110,579
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,290
14
110,580
Tags: math, number theory, probabilities Correct Solution: ``` m = 10** 6 + 3 n, k = map(int, input().split()) p = 1 for i in range(n): p *= 2 if p > k: break if p < k: print('1 1') exit() gcd = tmp = k - 1 while tmp: gcd -= tmp % 2 tmp //= 2 b = pow(2, (k - 1) * n - gcd, m) a = 1 mem = [-1]*100 for i in range(1, k): cnt = 0 while i % 2 == 0: i //= 2 cnt += 1 if mem[cnt] == -1: mem[cnt] = pow(2, n - cnt, m) a = a * (mem[cnt] - i + m) % m if a == 0: break print((b - a + m) % m, b) ```
output
1
55,290
14
110,581
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,291
14
110,582
Tags: math, number theory, probabilities Correct Solution: ``` #!/usr/bin/env python3 import os MOD = 1000003 inv2 = pow(2, MOD - 2, MOD) def logm(n, m): # log = 3.3 # return (3, False) ans = 0 whole = True while n >= m: whole = whole and (n % m == 0) ans += 1 n //= m if n == 1: return (ans, whole) return (ans, False) def fact_exp(n, k): ans = 0 while n != 0: n //= k ans += n return ans def main(): n, k = map(int, input().split()) e2 = n + fact_exp(k - 1, 2) div = pow(2, n * k - e2, MOD) (e, w) = logm(k, 2) if e > n or (e == n and not w): print(1, 1) exit() num = 1 Nr = pow(2, n, MOD) # N * (N-1) * ... * (N - k + 1) # (-0) * (-1) * for t in range(1, k): i = (Nr - t) % MOD if i == 0: num = 0 break p = 0 while t % 2 == 0: p += 1 t //= 2 num = num * i * pow(inv2, p, MOD) % MOD print((div - num) % MOD, div) if __name__ == '__main__': main() ```
output
1
55,291
14
110,583
Provide tags and a correct Python 3 solution for this coding contest problem. ZS the Coder has recently found an interesting concept called the Birthday Paradox. It states that given a random set of 23 people, there is around 50% chance that some two of them share the same birthday. ZS the Coder finds this very interesting, and decides to test this with the inhabitants of Udayland. In Udayland, there are 2n days in a year. ZS the Coder wants to interview k people from Udayland, each of them has birthday in one of 2n days (each day with equal probability). He is interested in the probability of at least two of them have the birthday at the same day. ZS the Coder knows that the answer can be written as an irreducible fraction <image>. He wants to find the values of A and B (he does not like to deal with floating point numbers). Can you help him? Input The first and only line of the input contains two integers n and k (1 ≤ n ≤ 1018, 2 ≤ k ≤ 1018), meaning that there are 2n days in a year and that ZS the Coder wants to interview exactly k people. Output If the probability of at least two k people having the same birthday in 2n days long year equals <image> (A ≥ 0, B ≥ 1, <image>), print the A and B in a single line. Since these numbers may be too large, print them modulo 106 + 3. Note that A and B must be coprime before their remainders modulo 106 + 3 are taken. Examples Input 3 2 Output 1 8 Input 1 3 Output 1 1 Input 4 3 Output 23 128 Note In the first sample case, there are 23 = 8 days in Udayland. The probability that 2 people have the same birthday among 2 people is clearly <image>, so A = 1, B = 8. In the second sample case, there are only 21 = 2 days in Udayland, but there are 3 people, so it is guaranteed that two of them have the same birthday. Thus, the probability is 1 and A = B = 1.
instruction
0
55,292
14
110,584
Tags: math, number theory, probabilities Correct Solution: ``` import math def euclid_algorithm(a, b): t1, t2 = abs(a), abs(b) #saving equalities: #t1 == x1 * a + y1 * b, #t2 == x2 * a + y2 * b. x1, y1, x2, y2 = int(math.copysign(1, a)), 0, 0, int(math.copysign(1, b)) if t1 < t2: t1, t2 = t2, t1 x1, y1, x2, y2 = x2, y2, x1, y1 while t2 > 0: k = int(t1 // t2) t1, t2 = t2, t1 % t2 #t1 - k * t2 == (x1 - k * x2) * a + (y1 - k * y2) * b x1, y1, x2, y2 = x2, y2, x1 - k * x2, y1 - k * y2 return t1, x1, y1 def opposite_element(x, p): gcd, k, l = euclid_algorithm(x, p) if gcd != 1: return -1 return k % p def solve(n, k): if n < 70 and k > (1<<n): return (1, 1) s, l = 0, k-1 while l > 0: l >>= 1 s += l p = 10 ** 6 + 3 x = pow(2, n, p) t = pow(opposite_element(2, p), s, p) q = (pow(2, n*(k-1), p) * t) % p r = 1 if k > p: r = 0 else: for i in range(1, k): r *= (x-i) r %= p return ((q - r*t)%p, q) n, k = map(int, input().split()) x, y = solve(n, k) print(x, y) ```
output
1
55,292
14
110,585
Provide tags and a correct Python 3 solution for this coding contest problem. Good job! Now that Heidi is able to distinguish between Poisson and uniform distributions, she is in a good position to actually estimate the populations. Can you help Heidi estimate each village's population? Input Same as the easy version. Output Output one line per village, in the same order as provided in the input, containing your (integer) population estimate. Your answer is considered correct if it is an integer that falls into the interval <image>, where P is the real population of the village, used to create the distribution (either Poisson or uniform) from which the marmots drew their answers.
instruction
0
55,318
14
110,636
Tags: math Correct Solution: ``` v = int(input()) eps = 170 def ans(a): a.sort() if len(a) % 2 == 0: med = a[len(a)//2] else: med = (a[len(a)//2] + a[len(a)//2 - 1]) // 2 l = med - med // 2 r = med + med // 2 c1 = c2 = 0 for i in a: if i >= l and i <= r: c1 += 1 else: c2 += 1 if abs(c1 - c2) <= eps: return (med, "uniform") else: return (med, "poisson") for i in range(v): cur = [int(i) for i in input().split()] b = ans(cur) if b[1] == "poisson": print(b[0]) else: print((max(cur) - min(cur)) // 2) ```
output
1
55,318
14
110,637
Provide tags and a correct Python 3 solution for this coding contest problem. In the computer network of the Berland State University there are n routers numbered from 1 to n. Some pairs of routers are connected by patch cords. Information can be transmitted over patch cords in both direction. The network is arranged in such a way that communication between any two routers (directly or through other routers) is possible. There are no cycles in the network, so there is only one path between each pair of routers over patch cords. Unfortunately, the exact topology of the network was lost by administrators. In order to restore it, the following auxiliary information was collected. For each patch cord p, directly connected to the router i, list of routers located behind the patch cord p relatively i is known. In other words, all routers path from which to the router i goes through p are known. So for each router i there are ki lists, where ki is the number of patch cords connected to i. For example, let the network consists of three routers connected in chain 1 - 2 - 3. Then: * the router 1: for the single patch cord connected to the first router there is a single list containing two routers: 2 and 3; * the router 2: for each of the patch cords connected to the second router there is a list: one list contains the router 1 and the other — the router 3; * the router 3: for the single patch cord connected to the third router there is a single list containing two routers: 1 and 2. Your task is to help administrators to restore the network topology, i. e. to identify all pairs of routers directly connected by a patch cord. Input The first line contains a single integer n (2 ≤ n ≤ 1000) — the number of routers in the network. The i-th of the following n lines contains a description of the lists for the router i. The description of each list begins with the number of routers in it. Then the symbol ':' follows, and after that the numbers of routers from the list are given. This numbers are separated by comma. Lists are separated by symbol '-'. It is guaranteed, that for each router i the total number of routers in its lists equals to n - 1 and all the numbers in lists of each router are distinct. For each router i lists do not contain the number i. Output Print -1 if no solution exists. In the other case print to the first line n - 1 — the total number of patch cords in the network. In each of the following n - 1 lines print two integers — the routers which are directly connected by a patch cord. Information about each patch cord must be printed exactly once. Patch cords and routers can be printed in arbitrary order. Examples Input 3 2:3,2 1:1-1:3 2:1,2 Output 2 2 1 2 3 Input 5 4:2,5,3,4 1:4-1:1-2:5,3 4:4,5,2,1 4:2,1,3,5 1:3-3:4,2,1 Output 4 2 1 2 4 5 2 3 5 Input 3 1:2-1:3 1:1-1:3 1:1-1:2 Output -1 Note The first example is analyzed in the statement. The answer to the second example is shown on the picture. <image> The first router has one list, which contains all other routers. The second router has three lists: the first — the single router 4, the second — the single router 1, the third — two routers 3 and 5. The third router has one list, which contains all other routers. The fourth router also has one list, which contains all other routers. The fifth router has two lists: the first — the single router 3, the second — three routers 1, 2 and 4.
instruction
0
55,339
14
110,678
Tags: constructive algorithms, dfs and similar, graphs, hashing, trees Correct Solution: ``` import math import sys read = sys.stdin.readline n = int(read()) sub = [[] for _ in range(n)] for i in range(n): data = read().strip() for j in data.split('-'): tree = list(map(int, j.split(':')[1].split(','))) for k in range(len(tree)): tree[k] -= 1 sub[i].append(sorted(tree)) sub[i].sort() dp = [[0] * n for _ in range(n)] for i in range(n): for j in sub[i]: for k in j: dp[i][k] = n - len(j) g = [[] for _ in range(n)] for i in range(n): for j in range(n): if i < j and dp[i][j] + dp[j][i] == n: g[i].append(j) g[j].append(i) def dfs(x, vis): arr = [x] vis[x] = True pt = 0 while pt < len(arr): y = arr[pt] pt += 1 for i in g[y]: if not vis[i]: vis[i] = True arr.append(i) return sorted(arr) for i in range(n): subtree = [] vis = [False] * n vis[i] = True for j in g[i]: arr = dfs(j, vis) subtree.append(arr) subtree.sort() if subtree != sub[i]: print(-1) sys.exit(0) print(n - 1) for i in range(n): for j in g[i]: if i < j: print(i + 1, j + 1) ```
output
1
55,339
14
110,679
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,844
14
111,688
Tags: sortings Correct Solution: ``` for _ in range(int(input())): n=int(input()) l=list(map(int,input().split())) arr=[] for i in range(n): arr.append(l[i]) arr.sort() even=[0 for i in range(max(l)+1)] odd=[0 for i in range(max(l)+1)] for i in range(n): if i%2==0: even[arr[i]]+=1 else: odd[arr[i]]+=1 flag=1 for i in range(n): if i%2==0: if even[l[i]]==0: flag=0 else: even[l[i]]-=1 else: if odd[l[i]]==0: flag=0 else: odd[l[i]]-=1 if flag==0: print('NO') else: print('YES') ```
output
1
55,844
14
111,689
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,845
14
111,690
Tags: sortings Correct Solution: ``` # cook your dish here t=int(input()) for _ in range(t): n=int(input()) l=[int(x) for x in input().split(' ')] le=[] lo=[] so=[] se=[] a=sorted(l) for i in range(n): if i&1: lo.append(l[i]) so.append(a[i]) else: le.append(l[i]) se.append(a[i]) le.sort() lo.sort() print("YES" if le==se and lo==so else "NO") ```
output
1
55,845
14
111,691
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,846
14
111,692
Tags: sortings Correct Solution: ``` from __future__ import division, print_function import math import sys import os from io import BytesIO, IOBase # from typing import DefaultDict from collections import deque, Counter, OrderedDict, defaultdict #import heapq #ceil,floor,log,sqrt,factorial,pow,pi,gcd #import bisect #from bisect import bisect_left,bisect_right BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r" not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) if not b: break ptr = self.buffer.tell() self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) self.newlines = b.count(b"\n") + (not b) ptr = self.buffer.tell() self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd, self.buffer.getvalue()) self.buffer.truncate(0), self.buffer.seek(0) class IOWrapper(IOBase): def __init__(self, file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s: self.buffer.write(s.encode("ascii")) self.read = lambda: self.buffer.read().decode("ascii") self.readline = lambda: self.buffer.readline().decode("ascii") def print(*args, **kwargs): """Prints the values to a stream, or to sys.stdout by default.""" sep, file = kwargs.pop("sep", " "), kwargs.pop("file", sys.stdout) at_start = True for x in args: if not at_start: file.write(sep) file.write(str(x)) at_start = False file.write(kwargs.pop("end", "\n")) if kwargs.pop("flush", False): file.flush() if sys.version_info[0] < 3: sys.stdin, sys.stdout = FastIO(sys.stdin), FastIO(sys.stdout) else: sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout) input = lambda: sys.stdin.readline().rstrip("\r\n") def inp(): return(int(input())) def inps(): return input().strip() def inlt(): return(list(map(int,input().split()))) def insr(): s = input().strip() return(list(s[:len(s)])) def invr(): return(map(int,input().split())) for _ in range(inp()): n=inp() l=inlt() s=sorted(l) d=defaultdict(lambda:[0,0]) for i in range(n): d[l[i]][i%2]+=1 for i in range(n): d[s[i]][i%2]-=1 # print(d) sm=[0 if each[0]==0 and each[1]==0 else 1 for each in d.values()] if sum(sm)==0: print('YES') else: print('NO') ```
output
1
55,846
14
111,693
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,847
14
111,694
Tags: sortings Correct Solution: ``` import sys import math import collections import heapq import decimal input=sys.stdin.readline t=int(input()) for w in range(t): n=int(input()) l=[int(i) for i in input().split()] l1=sorted(l) odd1=[] odd2=[] eve1=[] eve2=[] for i in range(n): if(i%2==0): eve1.append(l[i]) eve2.append(l1[i]) else: odd1.append(l[i]) odd2.append(l1[i]) d1=collections.Counter(eve1) d2=collections.Counter(eve2) d3=collections.Counter(odd1) d4=collections.Counter(odd2) if(d1==d2 and d3==d4): print("YES") else: print("NO") ```
output
1
55,847
14
111,695
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,848
14
111,696
Tags: sortings Correct Solution: ``` for t in range(int(input())): n=int(input()) a=list(map(int,input().split())) el=[] ol=[] for i in range(n): if i%2: ol.append(a[i]) else: el.append(a[i]) el.sort() ol.sort() ff=[] c=0 p1,p2=0,0 while len(ff)<n: if c%2: ff.append(ol[p1]) p1+=1 else: ff.append(el[p2]) p2+=1 c+=1 if ff==sorted(a): print('YES') else: print('NO') ```
output
1
55,848
14
111,697
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,849
14
111,698
Tags: sortings Correct Solution: ``` from collections import defaultdict def solve(): n = int(input()) a = list(map(int,input().split())) ref = dict() for i in range(n): if a[i] not in ref: ref[a[i]] = [0,0] ref[a[i]][i%2] += 1 a.sort() ref1 = dict() for i in range(n): if a[i] not in ref1: ref1[a[i]] = [0,0] ref1[a[i]][i%2] += 1 for x in ref: if ref[x] != ref1[x]: print("NO") return print("YES") return for nt in range(int(input())): solve() ```
output
1
55,849
14
111,699
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,850
14
111,700
Tags: sortings Correct Solution: ``` for _ in range(int(input())): tt = int(input()) arr = list(map(int,input().split())) if tt==1: print("YES") continue crr = sorted(arr) odl = list(arr[::2]) evl = list(arr[1::2]) odl.sort() evl.sort() ct1 = 0 ct2 = 0 flag = 1 for x in range(tt): if x%2==1: if evl[ct1]!=crr[x]: flag = 0 break ct1 +=1 else: if odl[ct1]!=crr[x]: flag = 0 break ct2 += 1 # print("crr =",crr) # print("odl =",odl) # print("evl =",evl) if flag: print("YES") else: print("NO") ```
output
1
55,850
14
111,701
Provide tags and a correct Python 3 solution for this coding contest problem. AquaMoon has n friends. They stand in a row from left to right, and the i-th friend from the left wears a T-shirt with a number a_i written on it. Each friend has a direction (left or right). In the beginning, the direction of each friend is right. AquaMoon can make some operations on friends. On each operation, AquaMoon can choose two adjacent friends and swap their positions. After each operation, the direction of both chosen friends will also be flipped: left to right and vice versa. AquaMoon hopes that after some operations, the numbers written on the T-shirt of n friends in the row, read from left to right, become non-decreasing. Also she wants, that all friends will have a direction of right at the end. Please find if it is possible. Input The input consists of multiple test cases. The first line contains a single integer t (1 ≤ t ≤ 50) — the number of test cases. The first line of each test case contains a single integer n (1 ≤ n ≤ 10^5) — the number of Aquamoon's friends. The second line contains n integers a_1, a_2, ..., a_n (1 ≤ a_i ≤ 10^5) — the numbers, written on the T-shirts. It is guaranteed that the sum of n for all test cases does not exceed 10^5. Output For each test case, if there exists a possible sequence of operations, print "YES" (without quotes); otherwise, print "NO" (without quotes). You can print each letter in any case (upper or lower). Example Input 3 4 4 3 2 5 4 3 3 2 2 5 1 2 3 5 4 Output YES YES NO Note The possible list of operations in the first test case: 1. Swap a_1 and a_2. The resulting sequence is 3, 4, 2, 5. The directions are: left, left, right, right. 2. Swap a_2 and a_3. The resulting sequence is 3, 2, 4, 5. The directions are: left, left, right, right. 3. Swap a_1 and a_2. The resulting sequence is 2, 3, 4, 5. The directions are: right, right, right, right.
instruction
0
55,851
14
111,702
Tags: sortings Correct Solution: ``` for _ in range(int(input())): n=int(input()) a=list(map(int,input().split())) dp=[0 for x in range(10**5+2)] for i in range(n): if i%2==0: dp[a[i]]+=1 a.sort() for i in range(n): if i%2==0: dp[a[i]]-=1 flag=True for k in dp: if k!=0: flag=False break if flag: print("YES") else: print("NO") ```
output
1
55,851
14
111,703