source
stringclasses
4 values
task_type
stringclasses
1 value
in_source_id
stringlengths
0
138
problem
stringlengths
219
13.2k
gold_standard_solution
stringlengths
0
413k
problem_id
stringlengths
5
10
metadata
dict
verification_info
dict
taco
verifiable_code
https://codeforces.com/problemset/problem/1013/B
Solve the following coding problem using the programming language python: There is an array with n elements a_1, a_2, ..., a_{n} and the number x. In one operation you can select some i (1 ≤ i ≤ n) and replace element a_{i} with a_{i} & x, where & denotes the bitwise and operation. You want the array to have at least two equal elements after applying some operations (possibly, none). In other words, there should be at least two distinct indices i ≠ j such that a_{i} = a_{j}. Determine whether it is possible to achieve and, if possible, the minimal number of operations to apply. -----Input----- The first line contains integers n and x (2 ≤ n ≤ 100 000, 1 ≤ x ≤ 100 000), number of elements in the array and the number to and with. The second line contains n integers a_{i} (1 ≤ a_{i} ≤ 100 000), the elements of the array. -----Output----- Print a single integer denoting the minimal number of operations to do, or -1, if it is impossible. -----Examples----- Input 4 3 1 2 3 7 Output 1 Input 2 228 1 1 Output 0 Input 3 7 1 2 3 Output -1 -----Note----- In the first example one can apply the operation to the last element of the array. That replaces 7 with 3, so we achieve the goal in one move. In the second example the array already has two equal elements. In the third example applying the operation won't change the array at all, so it is impossible to make some pair of elements equal. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, x) = [int(i) for i in input().split()] nums = [int(i) for i in input().split()] nums1 = nums[:] nums = set(nums) if len(set(nums)) < n: print(0) exit(0) for i in range(len(nums)): if nums1[i] & x in nums and nums1[i] != nums1[i] & x: print(1) exit(0) for i in range(len(nums)): nums1[i] = nums1[i] & x if len(set(nums1)) < n: print(2) exit(0) print(-1) ```
vfc_134280
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1013/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4 3\n1 2 3 7\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 228\n1 1\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 7\n1 2 3\n", "output": "-1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/IARCSJUD/problems/ENDCORR
Solve the following coding problem using the programming language python: A despotic king decided that his kingdom needed to be rid of corruption and disparity. He called his prime minister and ordered that all corrupt citizens be put to death. Moreover, he wanted this done quickly. The wily prime minister realised that investigating every citizen to decide who was corrupt and who was not was rather difficult. So he decided on the following plan: He ordered all the citizens to appear in the court one by one and declare their wealth. The king does not sit in the court all the time (he has other important business to attend to - for instance, meet dignitaries from neighbouring kingdoms, spend time with his family …) Whenever the king walks into the court, the prime minister pulls out the richest man who has appeared before the court so far and is still alive and beheads him for being corrupt. Since the rich are more likely to be corrupt, he hopes to get rid of most of the corrupt and the king is happy as he sees his policy being implemented enthusiastically. Suppose the wealth of the citizens trooping into the court is 1376518911241376518911241\; 3\; 7\; 6\; 5\; 18\; 9\; 11\; 2\; 4 and the king walked in three times: the first time after the first four persons have seen the minister, the second time after the first five persons have seen the minister and, finally after the first nine persons have seen the minister. At the king's first visit the richest person to have met the minister has wealth $7$ and he would be beheaded. At the second visit, the wealth of the richest person who has met the minister and is still alive has wealth $6$ and so he would be beheaded. At the third visit the richest person to have met the minister who is still alive has wealth $18$ and so he would be beheaded. You may assume that the input is such that whenever the king walks in, it is always possible to behead someone. Your aim is to write a program that will enable the prime minister to identify the richest man to have met the minister and who is still alive quickly. You may assume that no two citizens have the same wealth. -----Input:----- The first line of the input consists of two numbers $N$ and $M$, where $N$ is the number of citizens in the kingdom and M is the number of visits to the court by the king. The next $N+M$ lines describe the order in which the $N$ citizens' appearances are interleaved with the $M$ visits by the king. A citizen's visit is denoted by a positive integer, signifying his wealth. You may assume that no two citizens have the same wealth. A visit by the king is denoted by $-1$. -----Output:----- Your output should consist of $M$ lines, where the $i^{th}$ line contains the wealth of the citizen who is beheaded at the $i^{th}$ visit of the king. -----Constraints:----- - $1 \leq M \leq 10000$. - $1 \leq N \leq 100000$. - You may assume that in $50 \%$ of the inputs $1 \leq M \leq 1000$ and $1 \leq N \leq 8000$. -----Sample Input----- 10 3 1 3 7 6 -1 5 -1 18 9 11 2 -1 4 -----Sample Output----- 7 6 18 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) l = [] leng = 0 for i in range(n + m): w = int(input()) if w == -1: cm = 0 mi = 0 for j in range(leng): if l[j] > cm: cm = l[j] mi = j print(cm) l[mi] = -1 else: l.append(w) leng += 1 ```
vfc_134296
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/IARCSJUD/problems/ENDCORR", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 3\n1\n3\n7\n6\n-1\n5\n-1\n18\n9\n11\n2\n-1\n4\n", "output": "7\n6\n18\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SUMPARITY
Solve the following coding problem using the programming language python: Vedant has a hidden array of N elements. Given the [bitwise AND] of all elements of the array, determine whether the total sum of the elements is odd, even or cannot be determined. ------ Input Format ------ - The first line of each input contains T - the number of test cases. The test cases then follow. - The only line of each test case contains two space-separated integers N and A - the number of elements in the hidden array and the bitwise AND of all the elements in the hidden array. ------ Output Format ------ For each test case, output Even if the sum of all elements in the hidden array is even, Odd if the sum of all elements in the hidden array is odd, or Impossible if the parity cannot be determined. Note: You may print each character of the string in uppercase or lowercase (for example, the strings eVen, EvEn, even and EVEN will all be treated as identical). ------ Constraints ------ $1 ≤ T ≤ 10000$ $1 ≤ N ≤ 10^{9}$ $0 ≤ A ≤ 10^{9}$ ----- Sample Input 1 ------ 3 1 11 1 2 74120341 829182732 ----- Sample Output 1 ------ Odd Even Impossible The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (n, a) = map(int, input().split()) if a % 2: if n % 2: print('Odd') else: print('Even') elif n == 1: print('Even') else: print('Impossible') ```
vfc_134300
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SUMPARITY", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 11\n1 2\n74120341 829182732", "output": "Odd\nEven\nImpossible", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/gambling-stark3304/1
Solve the following coding problem using the programming language python: Given a number N, you have to say if it is adjacent to two prime numbers. Two numbers are adjacent if the absolute difference between them is 1. Example 1: Input: N = 4 Output: Y Explaination: The adjacent numbers 3 and 5 are both prime. Eaxmple 2: Input: 7 Output: N Explaination: The numbers 6 and 8 are not prime. Your Task: You do not need to read input or print anything. Your task is to complete the function primeAdjacent() which takes N as input parameter and reutrns 1 if it has two adjacent prime numbers, otherwise, returns 0. Expected Time Complexity: O(sqrt(N)) Expected Auxiliary Space: O(1) Constraints: 2 ≤ N ≤ 5000 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def primeAdjacent(self, N): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def is_prime(self, n): if n <= 1: return 0 for i in range(2, n): if n % i == 0: return 0 return 1 def primeAdjacent(self, N): ans1 = self.is_prime(N + 1) ans2 = self.is_prime(N - 1) return ans1 and ans2 ```
vfc_134304
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/gambling-stark3304/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 4", "output": "Y", "type": "stdin_stdout" }, { "fn_name": null, "input": "7", "output": "N", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MINIL
Solve the following coding problem using the programming language python: Read problems statements in [Hindi], [Mandarin Chinese], [Russian], [Vietnamese], and [Bengali] as well. You are given a grid with $N$ rows (numbered $1$ through $N$) and $M$ columns (numbered $1$ through $M$). Each cell of this grid contains either water or land. The initial state of the grid is described by strings $S_{1}, S_{2}, \ldots, S_{N}$; for each valid $i$ and $j$, the $j$-th character of $S_{i}$ is '.' if the cell in the $i$-th row and $j$-th column initially contains water or '*' if this cell initially contains land. A maximal group of connected land cells (by moving between side-adjacent land cells) is called an *island*. You may perform any number of operations (including zero). In one operation, you should choose one cell of the grid and convert it either to a land cell or to a water cell. Find the smallest number of operations required to maximise the number of islands in the grid. ------ Input ------ The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. The first line of each test case contains two space-separated integers $N$ and $M$. $N$ lines follow. For each valid $i$, the $i$-th of these lines contains a single string $S_{i}$ with length $M$. ------ Output ------ For each test case, print a single line containing one integer ― the smallest number of operations required to maximise the number of islands. ------ Constraints ------ $1 ≤ T ≤ 1,000$ $2 ≤ N, M ≤ 10$ $S_{1}, S_{2}, \ldots, S_{N}$ contain only characters '.' and '*' ----- Sample Input 1 ------ 2 2 2 .. *. 2 4 *..* *.*. ----- Sample Output 1 ------ 1 2 ----- explanation 1 ------ Example case 1: The largest number of islands is $2$ and it can be achieved by converting one cell from water to land. The resulting grid is .* *. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for _ in range(t): (n, m) = map(int, input().split()) grid = [] ans1 = 0 ans2 = 0 for i in range(n): grid.append(input()) if not (n % 2 == 1 and m % 2 == 1): for i in range(n): for j in range(m): if (i + j) % 2 == 0: cmp = '*' else: cmp = '.' if grid[i][j] != cmp: ans1 += 1 else: ans2 += 1 print(min(ans1, ans2)) else: for i in range(n): for j in range(m): if (i + j) % 2 == 0: cmp = '*' else: cmp = '.' if grid[i][j] != cmp: ans1 += 1 print(ans1) ```
vfc_134305
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MINIL", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2 2\n..\n*.\n2 4\n*..*\n*.*.", "output": "1\n2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFTWOS
Solve the following coding problem using the programming language python: Chef's loves his dog so much! Once his dog created two strings a and b each of length n consisting of digits 1 and 2, and even a problem about them! Chef's Dog will tell by barking if a string x (also containing only digits 1 and 2 and with length N) is good or not by performing the following actions. - It starts at first digit of the string, i.e. at i = 1. - It can move from digit i to either i - 1 or i + 1 if xi equals 1 and the corresponding digits exist. - It can move from digit i to either i - 2 or i + 2 if xi equals 2 and the corresponding digits exist. - It must visit each digit exactly once. - It must finish at the last digit (XN). Chef's dog wants to make both the strings a and b good by choosing some subset S (possibly empty) of indices of set {1, 2, ..., n} and swapping each index i ϵ S between string a and b, i.e. swapping ai and bi. Can you find how many such subsets S exist out there? As the answer could be large, output it modulo 109 + 7. -----Input----- The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows. The first line contains string a. The second line contains string b. -----Output----- For each test case, output a single line containing answer of the problem. -----Constraints----- - 1 ≤ T ≤ 20 - 1 ≤ |a| = |b| ≤ 105 - '1' ≤ ai, bi ≤ '2' -----Subtasks----- - Subtask #1 (30 points) |a|, |b| ≤ 10 - Subtask #2 (70 points) original constraints -----Example----- Input: 2 1111 2211 222 111 Output: 8 0 -----Explanation----- Test case 1. Possible subsets are: {}, {1, 2}, {1, 2, 3}, {1, 2, 4}, {1, 2, 3, 4}, {3}, {4}, {3, 4}. Test case 2. There are no possible sets S which can make both the strings good. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def fun(a): n = len(a) i = 0 b = [] while i < n: c = 0 while i < n - 1 and a[i] == a[i + 1]: c += 1 i += 1 b.append([a[i], c + 1]) i += 1 return b def tatti(h): n = len(h) i = 0 b = [] while i < n: c = 0 while i < n - 1 and h[i][0] == h[i + 1][0]: c += 1 i += 1 b.append([h[i][0], h[i][1], c + 1]) i += 1 return b def mod(a, b, m): x = 1 y = a while b > 0: if b % 2: x = x * y % m y = y * y % m b //= 2 return x % m def rem(s): s = list(s) l = len(s) i = l - 1 ans = [] c = 0 while i >= 0: if s[i] == 1 and s[i - 1] == 2 and (s[i - 2] == 1) and (i >= 2): i -= 3 c += 1 else: i -= 1 ans.append(c) c = 0 ans.append(c) count = 0 flag = 0 for i in range(len(ans)): if ans[i] != 0: count += 1 flag = max(flag, ans[i]) return (count, flag) for _ in range(int(input())): md = 10 ** 9 + 7 s1 = input() s2 = input() x = [] l = len(s1) for i in range(l): if s1[i] == '2' and s2[i] == '2': x.append(2) elif s1[i] == '1' and s2[i] == '1': x.append(0) else: x.append(1) if l == 1: ans = 2 elif l == 2: if s1[0] == '2' or s2[0] == '2': ans = 0 else: ans = 4 else: x.pop() x.pop() h = fun(x) for i in range(1, len(h) - 1): if h[i][0] == 2 and h[i][1] == 1: if h[i - 1][0] == 1 and h[i + 1][0] == 1: h[i - 1][1] -= 1 h[i + 1][1] -= 1 h[i][0] = -1 hn = [] for i in range(len(h)): if h[i][1] != 0: hn.append(h[i]) hnn = tatti(hn) flag = 0 ans = 1 for i in range(len(hnn)): if hnn[i][0] == 0: ans = ans * mod(2, hnn[i][1], md) % md elif hnn[i][0] == 1: if hnn[i][1] % 2 == 0: ans *= 2 ans = ans % md else: ans *= 0 elif hnn[i][0] == 2: if hnn[i][1] == 2: if i - 1 >= 0 and hnn[i - 1][0] != 0 or (i + 1 < len(hnn) and hnn[i + 1][0] != 0): ans *= 0 else: ans *= 4 ans = ans % md else: ans *= 0 elif (i - 1 >= 0 and hnn[i - 1][0] == 1) and (i + 1 <= len(hnn) - 1 and hnn[i + 1][0] == 1): if hnn[i][2] - 1 >= 0: ans = ans * mod(2, hnn[i][2] - 1, md) ans = ans % md elif i - 1 >= 0 and hnn[i - 1][0] == 1 or (i + 1 <= len(hnn) - 1 and hnn[i + 1][0] == 1): ans = ans * mod(2, hnn[i][2], md) ans = ans % md else: ans = ans * mod(2, hnn[i][2] + 1, md) ans = ans % md if s1[l - 2] == '2' or s2[l - 2] == '2': ans *= 0 else: ans *= 4 ans = ans % md print(ans % md) ```
vfc_134309
{ "difficulty": "hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFTWOS", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n1111\n2211\n222\n111\n", "output": "8\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/ARRANGE
Solve the following coding problem using the programming language python: The Chef has prepared the appetizers in the shapes of letters to spell a special message for the guests. There are n appetizers numbered from 0 to n-1 such that if the appetizers are arrayed in this order, they will display the message. The Chef plans to display them in this order on a table that can be viewed by all guests as they enter. The appetizers will only be served once all guests are seated. The appetizers are not necessarily finished in the same order as they are numbered. So, when an appetizer is finished the Chef will write the number on a piece of paper and place it beside the appetizer on a counter between the kitchen and the restaurant. A server will retrieve this appetizer and place it in the proper location according to the number written beside it. The Chef has a penchant for binary numbers. The number of appetizers created is a power of 2, say n = 2^{k}. Furthermore, he has written the number of the appetizer in binary with exactly k bits. That is, binary numbers with fewer than k bits are padded on the left with zeros so they are written with exactly k bits. Unfortunately, this has unforseen complications. A binary number still "looks" binary when it is written upside down. For example, the binary number "0101" looks like "1010" when read upside down and the binary number "110" looks like "011" (the Chef uses simple vertical lines to denote a 1 bit). The Chef didn't realize that the servers would read the numbers upside down so he doesn't rotate the paper when he places it on the counter. Thus, when the server picks up an appetizer they place it the location indexed by the binary number when it is read upside down. You are given the message the chef intended to display and you are to display the message that will be displayed after the servers move all appetizers to their locations based on the binary numbers they read. ------ Input ------ The first line consists of a single integer T ≤ 25 indicating the number of test cases to follow. Each test case consists of a single line beginning with an integer 1 ≤ k ≤ 16 followed by a string of precisely 2^{k} characters. The integer and the string are separated by a single space. The string has no spaces and is composed only of lower case letters from a to z. ------ Output ------ For each test case you are to output the scrambled message on a single line. ----- Sample Input 1 ------ 2 2 chef 4 enjoyourapplepie ----- Sample Output 1 ------ cehf eayejpuinpopolre The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def get_binary(num, bits): ans = [] for i in range(bits): ans.append('0') i = bits - 1 while i >= 0: ans[i] = str(num % 2) num //= 2 i -= 1 return ''.join(ans) for t in range(int(input())): temp = list(input().split()) k = int(temp[0]) s = temp[1] ans = [] for i in range(2 ** k): ans.append('0') for i in range(2 ** k): bi = get_binary(i, k) bi = bi[::-1] x = eval('0b' + bi) ans[x] = s[i] print(''.join(ans)) ```
vfc_134313
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/ARRANGE", "time_limit": "1.43314 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2 chef\n4 enjoyourapplepie", "output": "cehf\neayejpuinpopolre", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SGARDEN
Solve the following coding problem using the programming language python: Read problems statements in Mandarin Chinese and Russian. All bandits are afraid of Sheriff. Sheriff constantly fights crime, but when bandits lay low, he gets bored and starts to entertain himself. This time Sheriff gathered all the bandits in his garden and ordered them to line up. After the whistle all bandits should change the order in which they stand. Sheriff gave all the bandits numbers from 1 to N. For each place i he determined the unique position j. After whistling the bandit staying on position i should run to the j-th position. Sheriff loved seeing how the bandits move around, and he continued whistling until the evening. He finished the game only when he noticed that the bandits are in the same order in which they were standing originally. Now the Sheriff asks the question: How many times has he whistled?   ------ Input ------ The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows. The first line of each test case contains a single integer N denoting the number of bandits. The second line contains N space-separated integers A_{1}, A_{2}, ..., A_{N} denoting that the bandit staying on position i should run to the A_{i}-th position after the whistle.   ------ Output ------ For each test case, output a single line containing number of times the sheriff had to whistle, print it modulo 10^{9} + 7.   ------ Constraints ------ $1 ≤ T ≤ 5$ $1 ≤ N ≤ 100000$ $All A_{i} are distinct numbers from 1 to N$   ----- Sample Input 1 ------ 2 3 1 2 3 5 2 3 1 5 4 ----- Sample Output 1 ------ 1 6 ----- explanation 1 ------ Example case 2. the bandits positions are: 0. 1 2 3 4 5 1. 3 1 2 5 4 2. 2 3 1 4 5 3. 1 2 3 5 4 4. 3 1 2 4 5 5. 2 3 1 5 4 6. 1 2 3 4 5. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import fractions test = int(input()) for i in range(test): n = int(input()) array = [int(x) for x in input().split()] array.insert(0, 0) count = [] seen = {} toSee = 0 for i in range(1, n + 1): j = 1 x = array[i] if x not in seen: seen[x] = None while x != i: x = array[x] seen[x] = None j += 1 count.append(j) toSee += 1 lcm = 1 for i in range(toSee): lcm = lcm * count[i] // fractions.gcd(lcm, count[i]) print(lcm % (10 ** 9 + 7)) ```
vfc_134321
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SGARDEN", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n3\n1 2 3\n5\n2 3 1 5 4", "output": "1\n6", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n2\n1 2 3\n5\n2 3 1 5 4", "output": "1\n6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1585/C
Solve the following coding problem using the programming language python: A total of $n$ depots are located on a number line. Depot $i$ lies at the point $x_i$ for $1 \le i \le n$. You are a salesman with $n$ bags of goods, attempting to deliver one bag to each of the $n$ depots. You and the $n$ bags are initially at the origin $0$. You can carry up to $k$ bags at a time. You must collect the required number of goods from the origin, deliver them to the respective depots, and then return to the origin to collect your next batch of goods. Calculate the minimum distance you need to cover to deliver all the bags of goods to the depots. You do not have to return to the origin after you have delivered all the bags. -----Input----- Each test contains multiple test cases. The first line contains the number of test cases $t$ ($1 \le t \le 10\,500$). Description of the test cases follows. The first line of each test case contains two integers $n$ and $k$ ($1 \le k \le n \le 2 \cdot 10^5$). The second line of each test case contains $n$ integers $x_1, x_2, \ldots, x_n$ ($-10^9 \le x_i \le 10^9$). It is possible that some depots share the same position. It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$. -----Output----- For each test case, output a single integer denoting the minimum distance you need to cover to deliver all the bags of goods to the depots. -----Examples----- Input 4 5 1 1 2 3 4 5 9 3 -5 -10 -15 6 5 8 3 7 4 5 3 2 2 3 3 3 4 2 1000000000 1000000000 1000000000 1000000000 Output 25 41 7 3000000000 -----Note----- In the first test case, you can carry only one bag at a time. Thus, the following is a solution sequence that gives a minimum travel distance: $0 \to 2 \to 0 \to 4 \to 0 \to 3 \to 0 \to 1 \to 0 \to 5$, where each $0$ means you go the origin and grab one bag, and each positive integer means you deliver the bag to a depot at this coordinate, giving a total distance of $25$ units. It must be noted that there are other sequences that give the same distance. In the second test case, you can follow the following sequence, among multiple such sequences, to travel minimum distance: $0 \to 6 \to 8 \to 7 \to 0 \to 5 \to 4 \to 3 \to 0 \to (-5) \to (-10) \to (-15)$, with distance $41$. It can be shown that $41$ is the optimal distance for this test case. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline def positive_dist(x, n, k, last): cur = n - 1 total = 0 while cur >= 0 and x[cur] > 0: total += 2 * x[cur] cur -= k if last and x[-1] > 0: total -= x[-1] return total def negative_dist(x, n, k, last): cur = 0 total = 0 while cur < n and x[cur] < 0: total -= 2 * x[cur] cur += k if last and x[0] < 0: total += x[0] return total t = int(input()) for _ in range(t): (n, k) = map(int, input().split()) x = [int(i) for i in input().split()] x.sort() if x[0] >= 0: print(positive_dist(x, n, k, True)) elif x[-1] <= 0: print(negative_dist(x, n, k, True)) elif abs(x[0]) > abs(x[-1]): print(positive_dist(x, n, k, False) + negative_dist(x, n, k, True)) else: print(positive_dist(x, n, k, True) + negative_dist(x, n, k, False)) ```
vfc_134325
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1585/C", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n5 1\n1 2 3 4 5\n9 3\n-5 -10 -15 6 5 8 3 7 4\n5 3\n2 2 3 3 3\n4 2\n1000000000 1000000000 1000000000 1000000000\n", "output": "25\n41\n7\n3000000000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1272/B
Solve the following coding problem using the programming language python: Recently you have bought a snow walking robot and brought it home. Suppose your home is a cell $(0, 0)$ on an infinite grid. You also have the sequence of instructions of this robot. It is written as the string $s$ consisting of characters 'L', 'R', 'U' and 'D'. If the robot is in the cell $(x, y)$ right now, he can move to one of the adjacent cells (depending on the current instruction). If the current instruction is 'L', then the robot can move to the left to $(x - 1, y)$; if the current instruction is 'R', then the robot can move to the right to $(x + 1, y)$; if the current instruction is 'U', then the robot can move to the top to $(x, y + 1)$; if the current instruction is 'D', then the robot can move to the bottom to $(x, y - 1)$. You've noticed the warning on the last page of the manual: if the robot visits some cell (except $(0, 0)$) twice then it breaks. So the sequence of instructions is valid if the robot starts in the cell $(0, 0)$, performs the given instructions, visits no cell other than $(0, 0)$ two or more times and ends the path in the cell $(0, 0)$. Also cell $(0, 0)$ should be visited at most two times: at the beginning and at the end (if the path is empty then it is visited only once). For example, the following sequences of instructions are considered valid: "UD", "RL", "UUURULLDDDDLDDRRUU", and the following are considered invalid: "U" (the endpoint is not $(0, 0)$) and "UUDD" (the cell $(0, 1)$ is visited twice). The initial sequence of instructions, however, might be not valid. You don't want your robot to break so you decided to reprogram it in the following way: you will remove some (possibly, all or none) instructions from the initial sequence of instructions, then rearrange the remaining instructions as you wish and turn on your robot to move. Your task is to remove as few instructions from the initial sequence as possible and rearrange the remaining ones so that the sequence is valid. Report the valid sequence of the maximum length you can obtain. Note that you can choose any order of remaining instructions (you don't need to minimize the number of swaps or any other similar metric). You have to answer $q$ independent test cases. -----Input----- The first line of the input contains one integer $q$ ($1 \le q \le 2 \cdot 10^4$) — the number of test cases. The next $q$ lines contain test cases. The $i$-th test case is given as the string $s$ consisting of at least $1$ and no more than $10^5$ characters 'L', 'R', 'U' and 'D' — the initial sequence of instructions. It is guaranteed that the sum of $|s|$ (where $|s|$ is the length of $s$) does not exceed $10^5$ over all test cases ($\sum |s| \le 10^5$). -----Output----- For each test case print the answer on it. In the first line print the maximum number of remaining instructions. In the second line print the valid sequence of remaining instructions $t$ the robot has to perform. The moves are performed from left to right in the order of the printed sequence. If there are several answers, you can print any. If the answer is $0$, you are allowed to print an empty line (but you can don't print it). -----Example----- Input 6 LRU DURLDRUDRULRDURDDL LRUDDLRUDRUL LLLLRRRR URDUR LLL Output 2 LR 14 RUURDDDDLLLUUR 12 ULDDDRRRUULL 2 LR 2 UD 0 -----Note----- There are only two possible answers in the first test case: "LR" and "RL". The picture corresponding to the second test case: [Image] Note that the direction of traverse does not matter Another correct answer to the third test case: "URDDLLLUURDR". The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) while t: s = input() (l, r, u, d) = (0, 0, 0, 0) for i in s: if i == 'U': u += 1 if i == 'D': d += 1 if i == 'R': r += 1 if i == 'L': l += 1 mlr = min(l, r) mud = min(u, d) l = mlr r = mlr u = mud d = mud if mud != 0 and mlr == 0: print(2) print('UD') elif mlr != 0 and mud == 0: print(2) print('LR') elif mlr == 0 and mud == 0: print(0) print() else: print(l + r + u + d) print('L' * l + 'U' * u + 'R' * r + 'D' * d) t -= 1 ```
vfc_134333
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1272/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\nLRU\nDURLDRUDRULRDURDDL\nLRUDDLRUDRUL\nLLLLRRRR\nURDUR\nLLL\n", "output": "2\nLR\n14\nLLLUUUURRRDDDD\n12\nLLLUUURRRDDD\n2\nLR\n2\nUD\n0\n\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\nLRU\nDURLDRUDRULRDURDDL\nLRUDDLRUDRUL\nLLLLRRRR\nURDUR\nLLL\n", "output": "2\nLR\n14\nLLLUUUURRRDDDD\n12\nLLLUUURRRDDD\n2\nLR\n2\nUD\n0\n\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\nLRU\nDURLDRUDRULRDURDDL\nLURDURLDDURL\nLLLLRRRR\nURDUR\nLLL\n", "output": "2\nLR\n14\nLLLUUUURRRDDDD\n12\nLLLUUURRRDDD\n2\nLR\n2\nUD\n0\n\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\nLRU\nLDDRUDRLURDURDLRUD\nLURDURLDDURL\nLLLLRRRR\nURDUR\nLLL\n", "output": "2\nLR\n14\nLLLUUUURRRDDDD\n12\nLLLUUURRRDDD\n2\nLR\n2\nUD\n0\n\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MGCRNK
Solve the following coding problem using the programming language python: Everybody loves magic, especially magicians who compete for glory on the Byteland Magic Tournament. Magician Cyael is one such magician. Cyael has been having some issues with her last performances and today she’ll have to perform for an audience of some judges, who will change her tournament ranking, possibly increasing it. As she is a great magician she managed to gather a description of the fixed judges’ disposition on the room (which is represented as an N × N square matrix), such that she knows in advance the fixed points each judge will provide. She also knows that the room is divided into several parallel corridors, such that we will denote the j-th cell on corridor i, as [i][j]. Note that some judges can award Cyael, zero points or negative points, as they are never pleased with her performance. There is just one judge at each cell of the matrix, except the cells [1][1] and [N][N]. To complete her evaluation, she must start on the top leftmost corner of the room (cell [1][1]), and finish on the bottom right corner (cell [N][N]), moving either to the cell directly in front of her on the same corridor (that is, moving from cell [r][c] to cell [r][c+1], where c+1 ≤ N) or to the cell in the next corridor directly in front of where she is (that is, moving from cell [r][c] to cell [r+1][c], where r+1 ≤ N). She will keep doing this until she reaches the end point of the room, i.e. last cell [N][N] on the last corridor. Cyael will be judged at all visited cells with a judge. Cyael wants to maximize her average score at end of her performance. More specifically, if she passes K judges, each being on cell [i_{1}][j_{1}], cell [i_{2}][j_{2}], ..., cell [i_{K}][j_{K}] respectively, then she wants to maximize (S[i_{1}][j_{1}] + S[i_{2}][j_{2}] + ... + S[i_{K}][j_{K}]) / K, where S[i][j] denotes the points that the judge will give her on the cell [i][j]. Help her determine the best path she has to follow in order to maximize her average points. ------ Input ------ The first line contains a single integer T denoting the number of test cases. The description for T test cases follows. For each test case, the first line contains a single integer N. Each of the next N lines contains N space-separated integers. The j-th integer S[i][j] in i-th line denotes the points awarded by the judge at cell [i][j]. Note that the cells [1][1] and [N][N] have no judges, so S[1][1] and S[N][N] will be 0. ------ Output ------ For each test case, if the maximum possible average points Cyael can obtain is negative, output a single line containing "Bad Judges" (quotes for clarity). Otherwise, output the maximum possible average points. The answer will be considered correct if it has an absolute error no more than 10^{-6}. ------ Constraints ------ 1 ≤ T ≤ 20 2 ≤ N ≤ 100 -2500 ≤ S[i][j] ≤ 2500 S[1][1] = S[N][N] = 0 Your code will be judged against several input files. ------ Example ------ ----- Sample Input 1 ------ 2 2 0 -4 8 0 2 0 -45 -3 0 ----- Sample Output 1 ------ 8.000000 Bad Judges ----- explanation 1 ------ Test case $1$: An optimal path for Cyael would be $(1,1)\rightarrow (2,1)\rightarrow (2,2)$. This way Cyael faces $1$ judge and gets a total score of $8$. Thus, the average score is $\frac{8}{1} = 8$. Test case $2$: No matter what path Cyael chooses, the final score would be less than $0$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math import sys import string t = int(input()) while t: n = int(input()) arr = [0] * n arr[0] = [int(x) for x in input().split()] for i in range(1, n): arr[0][i] += arr[0][i - 1] for i in range(1, n): arr[i] = [int(x) for x in input().split()] arr[i][0] += arr[i - 1][0] for j in range(1, n): arr[i][j] += max(arr[i][j - 1], arr[i - 1][j]) if arr[n - 1][n - 1] < 0: print('Bad Judges') else: print('%.6f' % (arr[n - 1][n - 1] / (2 * n - 3))) t -= 1 ```
vfc_134337
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MGCRNK", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2\n0 -4\n8 0\n2\n0 -45\n-3 0", "output": "8.000000\nBad Judges", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n2\n0 -4\n8 0\n2\n0 -45\n-2 0", "output": "8.0000000\nBad Judges\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/largest-number-in-one-swap1520/1
Solve the following coding problem using the programming language python: Given a non-negative number N in the form of a string.Find the largest number that can be formed by swapping two characters at most once. Example 1: Input: N=768 Output: 867 Explanation: Swapping the 1st and 3rd characters(7 and 8 respectively), gives the largest possible number. Example 2: Input: N=333 Output: 333 Explanation: Performing any swaps gives the same result i.e 333. Your Task: You don't need to read input or print anything. Your task is to complete the function LargestSwap() which takes the string N as input parameter and returns the maximum possible string possible with at most one swap. Expected Time Complexity:O(|N|) Expected Auxillary Space:O(1) Constraints: 1<=|N|<=10^{5} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def LargestSwap(self,S): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def LargestSwap(self, S): n = len(S) arr = list(S) right = [0] * n right[n - 1] = n - 1 rmax = n - 1 for i in range(n - 2, -1, -1): right[i] = rmax if arr[i] > arr[rmax]: rmax = i for i in range(0, n): if arr[right[i]] > arr[i]: (arr[right[i]], arr[i]) = (arr[i], arr[right[i]]) break return ''.join(arr) ```
vfc_134341
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/largest-number-in-one-swap1520/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N=768", "output": "867", "type": "stdin_stdout" }, { "fn_name": null, "input": "N=333", "output": "333", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/261/B
Solve the following coding problem using the programming language python: Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows the sizes of all guests that are going to come to him. The i-th guest's size (a_{i}) represents the number of meters the guest is going to take up if he sits at the restaurant table. Long before the dinner, the guests line up in a queue in front of the restaurant in some order. Then Maxim lets the guests in, one by one. Maxim stops letting the guests in when there is no place at the restaurant table for another guest in the queue. There is no place at the restaurant table for another guest in the queue, if the sum of sizes of all guests in the restaurant plus the size of this guest from the queue is larger than p. In this case, not to offend the guest who has no place at the table, Maxim doesn't let any other guest in the restaurant, even if one of the following guests in the queue would have fit in at the table. Maxim is now wondering, what is the average number of visitors who have come to the restaurant for all possible n! orders of guests in the queue. Help Maxim, calculate this number. -----Input----- The first line contains integer n (1 ≤ n ≤ 50) — the number of guests in the restaurant. The next line contains integers a_1, a_2, ..., a_{n} (1 ≤ a_{i} ≤ 50) — the guests' sizes in meters. The third line contains integer p (1 ≤ p ≤ 50) — the table's length in meters. The numbers in the lines are separated by single spaces. -----Output----- In a single line print a real number — the answer to the problem. The answer will be considered correct, if the absolute or relative error doesn't exceed 10^{ - 4}. -----Examples----- Input 3 1 2 3 3 Output 1.3333333333 -----Note----- In the first sample the people will come in the following orders: (1, 2, 3) — there will be two people in the restaurant; (1, 3, 2) — there will be one person in the restaurant; (2, 1, 3) — there will be two people in the restaurant; (2, 3, 1) — there will be one person in the restaurant; (3, 1, 2) — there will be one person in the restaurant; (3, 2, 1) — there will be one person in the restaurant. In total we get (2 + 1 + 2 + 1 + 1 + 1) / 6 = 8 / 6 = 1.(3). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) a = list(map(int, input().split())) p = int(input()) fact = [1] for i in range(1, 51): fact.append(fact[-1] * i) if sum(a) <= p: print(n) else: dp = [[0] * 56 for _ in range(56)] dp[0][0] = 1 for i in range(n): for j in range(n, -1, -1): for k in range(p): if a[i] + k <= p: dp[j + 1][a[i] + k] += dp[j][k] tot = sum((dp[i][j] * fact[i] * fact[n - i] for j in range(1, p + 1) for i in range(1, n + 1))) print(f'{tot / fact[n]:.9f}') ```
vfc_134342
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/261/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 2 3\n3\n", "output": "1.3333333333\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "9\n2 2 2 2 2 2 2 1 2\n9\n", "output": "4.5555555556\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7\n2 1 1 2 1 1 2\n2\n", "output": "1.2857142857\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "8\n3 1 5 6 1 5 4 4\n7\n", "output": "1.6250000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1 3\n3\n", "output": "1.0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1 2\n2\n", "output": "1.0000000000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/26/E
Solve the following coding problem using the programming language python: You are given the following concurrent program. There are N processes and the i-th process has the following pseudocode: repeat ni times yi := y y := yi + 1 end repeat Here y is a shared variable. Everything else is local for the process. All actions on a given row are atomic, i.e. when the process starts executing a row it is never interrupted. Beyond that all interleavings are possible, i.e. every process that has yet work to do can be granted the rights to execute its next row. In the beginning y = 0. You will be given an integer W and ni, for i = 1, ... , N. Determine if it is possible that after all processes terminate, y = W, and if it is possible output an arbitrary schedule that will produce this final value. Input In the first line of the input you will be given two space separated integers N (1 ≤ N ≤ 100) and W ( - 109 ≤ W ≤ 109). In the second line there are N space separated integers ni (1 ≤ ni ≤ 1000). Output On the first line of the output write Yes if it is possible that at the end y = W, or No otherwise. If the answer is No then there is no second line, but if the answer is Yes, then on the second line output a space separated list of integers representing some schedule that leads to the desired result. For more information see note. Examples Input 1 10 11 Output No Input 2 3 4 4 Output Yes 1 1 2 1 2 2 2 2 2 1 2 1 1 1 1 2 Input 3 6 1 2 3 Output Yes 1 1 2 2 2 2 3 3 3 3 3 3 Note For simplicity, assume that there is no repeat statement in the code of the processes, but the code from the loop is written the correct amount of times. The processes are numbered starting from 1. The list of integers represent which process works on its next instruction at a given step. For example, consider the schedule 1 2 2 1 3. First process 1 executes its first instruction, then process 2 executes its first two instructions, after that process 1 executes its second instruction, and finally process 3 executes its first instruction. The list must consists of exactly 2·Σ i = 1...N ni numbers. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys from array import array def input(): return sys.stdin.buffer.readline().decode('utf-8') (n, w) = map(int, input().split()) a = [0] + list(map(int, input().split())) total = sum(a) def ng(): print('No') exit() def ok(a): print('Yes') print(*a) exit() if w < 1 or total < w: ng() if n == 1: if w == a[1]: ok([1] * (a[1] * 2)) else: ng() if w == 1: if min(a[1:]) > 1: ng() min_i = a.index(1) ans = [] for i in range(1, n + 1): if i == min_i: continue ans += [i] * (a[i] * 2) ok([min_i] + ans + [min_i]) (ans1, ans2, ans3) = ([], [], []) w -= 2 if w: for i in range(1, 3): x = min(a[i] - 1, w) w -= x a[i] -= x ans3 += [i] * (2 * x) for i in range(3, n + 1): x = min(a[i], w) w -= x a[i] -= x ans3 += [i] * (2 * x) ans1 = [2] * ((a[2] - 1) * 2) for i in range(3, n + 1): ans1 += [i] * (a[i] * 2) ans1 = [1] + ans1 + [1] a[1] -= 1 ans2 = [2] + [1] * (a[1] * 2) + [2] if w == 0: ok(ans1 + ans2 + ans3) else: ng() ```
vfc_134346
{ "difficulty": "very_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/26/E", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 1\n2 3 4 5 6\n", "output": "No\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/TRUESCORE
Solve the following coding problem using the programming language python: Chef is watching a football match. The current score is A:B, that is, team 1 has scored A goals and team 2 has scored B goals. Chef wonders if it is possible for the score to become C:D at a later point in the game (i.e. team 1 has scored C goals and team 2 has scored D goals). Can you help Chef by answering his question? ------ Input Format ------ - The first line contains a single integer T - the number of test cases. Then the test cases follow. - The first line of each test case contains two integers A and B - the intial number of goals team 1 and team 2 have scored respectively. - The second line of each test case contains two integers C and D - the final number of goals team 1 and team 2 must be able to score respectively. ------ Output Format ------ For each testcase, output POSSIBLE if it is possible for the score to become C:D at a later point in the game, IMPOSSIBLE otherwise. You may print each character of POSSIBLE and IMPOSSIBLE in uppercase or lowercase (for example, possible, pOSsiBLe, Possible will be considered identical). ------ Constraints ------ $1 ≤ T ≤ 1000$ $0 ≤ A,B,C,D ≤ 10$ ----- Sample Input 1 ------ 3 1 5 3 5 3 4 2 6 2 2 2 2 ----- Sample Output 1 ------ POSSIBLE IMPOSSIBLE POSSIBLE ----- explanation 1 ------ Test case 1: The current score is $1:5$. If team $1$ scores $2$ more goals, the score will become $3:5$. Thus $3:5$ is a possible score. Test case 2: The current score is $3:4$. It can be proven that no non-negative pair of integers $(x, y)$ exists such that if team $1$ scores $x$ more goals and team $2$ scores $y$ more goals the score becomes $2:6$ from $3:4$. Thus in this case $2:6$ is an impossible score. Test case 3: The current score is already $2:2$. Hence it is a possible score. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (a, b) = map(int, input().split()) (c, d) = map(int, input().split()) if c >= a and d >= b: print('POSSIBLE') else: print('IMPOSSIBLE') ```
vfc_134350
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/TRUESCORE", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 5\n3 5\n3 4\n2 6\n2 2\n2 2\n", "output": "POSSIBLE\nIMPOSSIBLE\nPOSSIBLE\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/180/E
Solve the following coding problem using the programming language python: Let's imagine that you're playing the following simple computer game. The screen displays n lined-up cubes. Each cube is painted one of m colors. You are allowed to delete not more than k cubes (that do not necessarily go one after another). After that, the remaining cubes join together (so that the gaps are closed) and the system counts the score. The number of points you score equals to the length of the maximum sequence of cubes of the same color that follow consecutively. Write a program that determines the maximum possible number of points you can score. Remember, you may delete no more than k any cubes. It is allowed not to delete cubes at all. Input The first line contains three integers n, m and k (1 ≤ n ≤ 2·105, 1 ≤ m ≤ 105, 0 ≤ k < n). The second line contains n integers from 1 to m — the numbers of cube colors. The numbers of colors are separated by single spaces. Output Print the maximum possible number of points you can score. Examples Input 10 3 2 1 2 1 1 3 2 1 1 2 2 Output 4 Input 10 2 2 1 2 1 2 1 1 2 1 1 2 Output 5 Input 3 1 2 1 1 1 Output 3 Note In the first sample you should delete the fifth and the sixth cubes. In the second sample you should delete the fourth and the seventh cubes. In the third sample you shouldn't delete any cubes. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math import heapq, bisect import sys from collections import deque, defaultdict from fractions import Fraction mod = 10 ** 9 + 7 mod1 = 998244353 import os import sys from io import BytesIO, IOBase 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') class TreeNode: def __init__(self, k, v): self.key = k self.value = v self.left = None self.right = None self.parent = None self.height = 1 self.num_left = 1 self.num_total = 1 class AvlTree: def __init__(self): self._tree = None def add(self, k, v): if not self._tree: self._tree = TreeNode(k, v) return node = self._add(k, v) if node: self._rebalance(node) def _add(self, k, v): node = self._tree while node: if k < node.key: if node.left: node = node.left else: node.left = TreeNode(k, v) node.left.parent = node return node.left elif node.key < k: if node.right: node = node.right else: node.right = TreeNode(k, v) node.right.parent = node return node.right else: node.value = v return @staticmethod def get_height(x): return x.height if x else 0 @staticmethod def get_num_total(x): return x.num_total if x else 0 def _rebalance(self, node): n = node while n: lh = self.get_height(n.left) rh = self.get_height(n.right) n.height = max(lh, rh) + 1 balance_factor = lh - rh n.num_total = 1 + self.get_num_total(n.left) + self.get_num_total(n.right) n.num_left = 1 + self.get_num_total(n.left) if balance_factor > 1: if self.get_height(n.left.left) < self.get_height(n.left.right): self._rotate_left(n.left) self._rotate_right(n) elif balance_factor < -1: if self.get_height(n.right.right) < self.get_height(n.right.left): self._rotate_right(n.right) self._rotate_left(n) else: n = n.parent def _remove_one(self, node): replacement = node.left or node.right if node.parent: if AvlTree._is_left(node): node.parent.left = replacement else: node.parent.right = replacement replacement.parent = node.parent node.parent = None else: self._tree = replacement replacement.parent = None node.left = None node.right = None node.parent = None self._rebalance(replacement) def _remove_leaf(self, node): if node.parent: if AvlTree._is_left(node): node.parent.left = None else: node.parent.right = None self._rebalance(node.parent) else: self._tree = None node.parent = None node.left = None node.right = None def remove(self, k): node = self._get_node(k) if not node: return if AvlTree._is_leaf(node): self._remove_leaf(node) return if node.left and node.right: nxt = AvlTree._get_next(node) node.key = nxt.key node.value = nxt.value if self._is_leaf(nxt): self._remove_leaf(nxt) else: self._remove_one(nxt) self._rebalance(node) else: self._remove_one(node) def get(self, k): node = self._get_node(k) return node.value if node else -1 def _get_node(self, k): if not self._tree: return None node = self._tree while node: if k < node.key: node = node.left elif node.key < k: node = node.right else: return node return None def get_at(self, pos): x = pos + 1 node = self._tree while node: if x < node.num_left: node = node.left elif node.num_left < x: x -= node.num_left node = node.right else: return (node.key, node.value) raise IndexError('Out of ranges') @staticmethod def _is_left(node): return node.parent.left and node.parent.left == node @staticmethod def _is_leaf(node): return node.left is None and node.right is None def _rotate_right(self, node): if not node.parent: self._tree = node.left node.left.parent = None elif AvlTree._is_left(node): node.parent.left = node.left node.left.parent = node.parent else: node.parent.right = node.left node.left.parent = node.parent bk = node.left.right node.left.right = node node.parent = node.left node.left = bk if bk: bk.parent = node node.height = max(self.get_height(node.left), self.get_height(node.right)) + 1 node.num_total = 1 + self.get_num_total(node.left) + self.get_num_total(node.right) node.num_left = 1 + self.get_num_total(node.left) def _rotate_left(self, node): if not node.parent: self._tree = node.right node.right.parent = None elif AvlTree._is_left(node): node.parent.left = node.right node.right.parent = node.parent else: node.parent.right = node.right node.right.parent = node.parent bk = node.right.left node.right.left = node node.parent = node.right node.right = bk if bk: bk.parent = node node.height = max(self.get_height(node.left), self.get_height(node.right)) + 1 node.num_total = 1 + self.get_num_total(node.left) + self.get_num_total(node.right) node.num_left = 1 + self.get_num_total(node.left) @staticmethod def _get_next(node): if not node.right: return node.parent n = node.right while n.left: n = n.left return n avl = AvlTree() class SegmentTree1: def __init__(self, data, default='z', func=lambda a, b: min(a, b)): self._default = default self._func = func self._len = len(data) self._size = _size = 1 << (self._len - 1).bit_length() self.data = [default] * (2 * _size) self.data[_size:_size + self._len] = data for i in reversed(range(_size)): self.data[i] = func(self.data[i + i], self.data[i + i + 1]) def __delitem__(self, idx): self[idx] = self._default def __getitem__(self, idx): return self.data[idx + self._size] def __setitem__(self, idx, value): idx += self._size self.data[idx] = value idx >>= 1 while idx: self.data[idx] = self._func(self.data[2 * idx], self.data[2 * idx + 1]) idx >>= 1 def __len__(self): return self._len def query(self, start, stop): if start == stop: return self.__getitem__(start) stop += 1 start += self._size stop += self._size res = self._default while start < stop: if start & 1: res = self._func(res, self.data[start]) start += 1 if stop & 1: stop -= 1 res = self._func(res, self.data[stop]) start >>= 1 stop >>= 1 return res def __repr__(self): return 'SegmentTree({0})'.format(self.data) class SegmentTree: def __init__(self, data, default=0, func=lambda a, b: a + b): self._default = default self._func = func self._len = len(data) self._size = _size = 1 << (self._len - 1).bit_length() self.data = [default] * (2 * _size) self.data[_size:_size + self._len] = data for i in reversed(range(_size)): self.data[i] = func(self.data[i + i], self.data[i + i + 1]) def __delitem__(self, idx): self[idx] = self._default def __getitem__(self, idx): return self.data[idx + self._size] def __setitem__(self, idx, value): idx += self._size self.data[idx] = value idx >>= 1 while idx: self.data[idx] = self._func(self.data[2 * idx], self.data[2 * idx + 1]) idx >>= 1 def __len__(self): return self._len def query(self, start, stop): if start == stop: return self.__getitem__(start) stop += 1 start += self._size stop += self._size res = self._default while start < stop: if start & 1: res = self._func(res, self.data[start]) start += 1 if stop & 1: stop -= 1 res = self._func(res, self.data[stop]) start >>= 1 stop >>= 1 return res def __repr__(self): return 'SegmentTree({0})'.format(self.data) class Factorial: def __init__(self, MOD): self.MOD = MOD self.factorials = [1, 1] self.invModulos = [0, 1] self.invFactorial_ = [1, 1] def calc(self, n): if n <= -1: print('Invalid argument to calculate n!') print('n must be non-negative value. But the argument was ' + str(n)) exit() if n < len(self.factorials): return self.factorials[n] nextArr = [0] * (n + 1 - len(self.factorials)) initialI = len(self.factorials) prev = self.factorials[-1] m = self.MOD for i in range(initialI, n + 1): prev = nextArr[i - initialI] = prev * i % m self.factorials += nextArr return self.factorials[n] def inv(self, n): if n <= -1: print('Invalid argument to calculate n^(-1)') print('n must be non-negative value. But the argument was ' + str(n)) exit() p = self.MOD pi = n % p if pi < len(self.invModulos): return self.invModulos[pi] nextArr = [0] * (n + 1 - len(self.invModulos)) initialI = len(self.invModulos) for i in range(initialI, min(p, n + 1)): next = -self.invModulos[p % i] * (p // i) % p self.invModulos.append(next) return self.invModulos[pi] def invFactorial(self, n): if n <= -1: print('Invalid argument to calculate (n^(-1))!') print('n must be non-negative value. But the argument was ' + str(n)) exit() if n < len(self.invFactorial_): return self.invFactorial_[n] self.inv(n) nextArr = [0] * (n + 1 - len(self.invFactorial_)) initialI = len(self.invFactorial_) prev = self.invFactorial_[-1] p = self.MOD for i in range(initialI, n + 1): prev = nextArr[i - initialI] = prev * self.invModulos[i % p] % p self.invFactorial_ += nextArr return self.invFactorial_[n] class Combination: def __init__(self, MOD): self.MOD = MOD self.factorial = Factorial(MOD) def ncr(self, n, k): if k < 0 or n < k: return 0 k = min(k, n - k) f = self.factorial return f.calc(n) * f.invFactorial(max(n - k, k)) * f.invFactorial(min(k, n - k)) % self.MOD def powm(a, n, m): if a == 1 or n == 0: return 1 if n % 2 == 0: s = powm(a, n // 2, m) return s * s % m else: return a * powm(a, n - 1, m) % m def sort_list(list1, list2): zipped_pairs = zip(list2, list1) z = [x for (_, x) in sorted(zipped_pairs)] return z def product(l): por = 1 for i in range(len(l)): por *= l[i] return por def binarySearchCount(arr, n, key): left = 0 right = n - 1 count = 0 while left <= right: mid = int((right + left) / 2) if arr[mid] <= key: count = mid + 1 left = mid + 1 else: right = mid - 1 return count def countdig(n): c = 0 while n > 0: n //= 10 c += 1 return c def countGreater(arr, n, k): l = 0 r = n - 1 leftGreater = n while l <= r: m = int(l + (r - l) / 2) if arr[m] >= k: leftGreater = m r = m - 1 else: l = m + 1 return n - leftGreater (n, m, k) = map(int, input().split()) l = list(map(int, input().split())) ans = 1 ind = defaultdict(list) for i in range(n): ind[l[i]].append(i) cop = k for i in ind: if len(ind[i]) == 1: continue st = 0 r = 0 k = cop while r < len(ind[i]) - 1: if k >= 0: ans = max(ans, r - st + 1) r += 1 k -= ind[i][r] - ind[i][r - 1] - 1 else: st += 1 k += ind[i][st] - ind[i][st - 1] - 1 if k >= 0: ans = max(ans, r - st + 1) print(ans) ```
vfc_134354
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/180/E", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "30 5 6\n4 2 2 1 3 4 2 3 2 4 3 1 1 4 4 3 5 1 4 5 5 1 2 2 1 2 4 4 1 2\n", "output": "4", "type": "stdin_stdout" }, { "fn_name": null, "input": "20 6 3\n4 1 2 6 3 3 2 5 2 5 2 1 1 4 1 2 2 1 1 4\n", "output": "5", "type": "stdin_stdout" }, { "fn_name": null, "input": "100 5 10\n4 4 4 4 4 4 4 4 4 4 4 4 2 4 4 4 4 4 4 4 4 4 2 2 2 3 3 3 3 3 3 3 4 4 4 3 3 2 1 1 1 2 3 3 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 2 2 2 2 2 2 2 4 4 4 4 5 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 5 5 5 3 3 4 3 3 3\n", "output": "21", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 2 2\n1 1 1 2 1 2 1 2 1 1\n", "output": "5", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1158/C
Solve the following coding problem using the programming language python: Vasya has written some permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$, so for all $1 \leq i \leq n$ it is true that $1 \leq p_i \leq n$ and all $p_1, p_2, \ldots, p_n$ are different. After that he wrote $n$ numbers $next_1, next_2, \ldots, next_n$. The number $next_i$ is equal to the minimal index $i < j \leq n$, such that $p_j > p_i$. If there is no such $j$ let's let's define as $next_i = n + 1$. In the evening Vasya went home from school and due to rain, his notebook got wet. Now it is impossible to read some written numbers. Permutation and some values $next_i$ are completely lost! If for some $i$ the value $next_i$ is lost, let's say that $next_i = -1$. You are given numbers $next_1, next_2, \ldots, next_n$ (maybe some of them are equal to $-1$). Help Vasya to find such permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$, that he can write it to the notebook and all numbers $next_i$, which are not equal to $-1$, will be correct. -----Input----- The first line contains one integer $t$ — the number of test cases ($1 \leq t \leq 100\,000$). Next $2 \cdot t$ lines contains the description of test cases,two lines for each. The first line contains one integer $n$ — the length of the permutation, written by Vasya ($1 \leq n \leq 500\,000$). The second line contains $n$ integers $next_1, next_2, \ldots, next_n$, separated by spaces ($next_i = -1$ or $i < next_i \leq n + 1$). It is guaranteed, that the sum of $n$ in all test cases doesn't exceed $500\,000$. In hacks you can only use one test case, so $T = 1$. -----Output----- Print $T$ lines, in $i$-th of them answer to the $i$-th test case. If there is no such permutations $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$, that Vasya could write, print the only number $-1$. In the other case print $n$ different integers $p_1, p_2, \ldots, p_n$, separated by spaces ($1 \leq p_i \leq n$). All defined values of $next_i$ which are not equal to $-1$ should be computed correctly $p_1, p_2, \ldots, p_n$ using defenition given in the statement of the problem. If there exists more than one solution you can find any of them. -----Example----- Input 6 3 2 3 4 2 3 3 3 -1 -1 -1 3 3 4 -1 1 2 4 4 -1 4 5 Output 1 2 3 2 1 2 1 3 -1 1 3 2 1 4 -----Note----- In the first test case for permutation $p = [1, 2, 3]$ Vasya should write $next = [2, 3, 4]$, because each number in permutation is less than next. It's easy to see, that it is the only satisfying permutation. In the third test case, any permutation can be the answer because all numbers $next_i$ are lost. In the fourth test case, there is no satisfying permutation, so the answer is $-1$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline T = int(input()) for _ in range(T): n = int(input()) l = list(map(int, input().split())) stack = [] out = [-1] * n curr = 0 works = True for i in range(n): while stack and stack[-1][0] == i: (_, j) = stack.pop() curr += 1 out[j] = curr nex = l[i] - 1 if nex == -2: curr += 1 out[i] = curr elif stack and nex > stack[-1][0]: works = False else: stack.append((nex, i)) while stack: (_, j) = stack.pop() curr += 1 out[j] = curr if works: print(*out) else: print(-1) ```
vfc_134358
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1158/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n3\n2 3 4\n2\n3 3\n3\n-1 -1 -1\n3\n3 4 -1\n1\n2\n4\n4 -1 4 5\n", "output": "1 2 3 \n2 1 \n1 2 3 \n-1\n1 \n3 1 2 4 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/modified-fibonacci4449/1
Solve the following coding problem using the programming language python: Given 4 integers A, B, C and N, find the value of F(N) such that F(1) = A + B F(2) = B + C F(N) = F(N-1) - F(N-2), for N > 2. Example 1: Input: N = 2, A = 2, B = 3, C = 4 Output: 7 Explaination: F(2) = B+C = 3+4 = 7 Example 2: Input: N = 3, A = 2, B = 3, C = 4 Output: 2 Explaination: F(3) = F(2)- F(1) = 7-5 = 2 Your Task: You do not need to read input or print anything. Your task is to complete the function modifiedFib() which takes the values N, A, B and C as input parameters and returns F(N). Since F(N) modulo (10^{9}+7). Expected Time Complexity: O(1) Expected Auxiliary Space: O(1) Constraints: 1 ≤ N ≤ 10^{12} 1 ≤ A, B, C ≤ 10^{9} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def modifiedFib(self, N, A, B, C): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def modifiedFib(self, N, A, B, C): (a, b, c) = (A + B, B + C, C - A) n = N % 6 if n == 1: return a % 1000000007 if n == 2: return b % 1000000007 if n == 3: return c % 1000000007 if n == 4: return -a % 1000000007 if n == 5: return -b % 1000000007 if n == 0: return -c % 1000000007 ```
vfc_134368
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/modified-fibonacci4449/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 2, A = 2, B = 3, C = 4", "output": "7", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 3, A = 2, B = 3, C = 4", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFHOME
Solve the following coding problem using the programming language python: Our hardworking chef is bored of sleeping in his restaurants. He has decided to settle down. The first thing he must do is to find a suitable location to build a palatial home. Think of the city as a two-dimensional grid. There are N restaurants in the city. Each of the chef's restaurant is a point denoted by (X , Y). A house can be located at a grid point (R, S) if the sum of the distances between this point and each of the restaurants is as small as possible. Find the number of possible house locations in the city to help out chef build a home. More than one restaurant can be located at the same point. Houses and restaurants can be located at the same point. Every house must have integer co-ordinates. In other words, R and S are integers. The distance between two points (A,B) and (C,D) is |A-C| + |B-D|. Here |X| is the absolute function. ------ Input ------ First line in the input contains T, number of test cases. First line of each test case contains N, number of restaurants. Each of the next N lines contain two integers X and Y separated by a space. T ≤ 100 N ≤ 10^{3} -10^{8} ≤ X ≤10^{8} -10^{8} ≤ Y ≤10^{8} ------ Output ------ The number of possible locations (grid points) where houses can be built. ----- Sample Input 1 ------ 3 5 0 0 -1 0 1 0 0 1 0 -1 5 31 11 30 -41 20 14 25 18 25 38 2 0 0 1 1 ----- Sample Output 1 ------ 1 1 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def findHouseLocations(): t = int(input()) for j in range(t): n = int(input()) x = [] y = [] for i in range(n): m = list(map(int, input().split())) x.append(m[0]) y.append(m[1]) x.sort() y.sort() x1 = x[n // 2] - x[(n - 1) // 2] + 1 y1 = y[n // 2] - y[(n - 1) // 2] + 1 print(x1 * y1) findHouseLocations() ```
vfc_134369
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFHOME", "time_limit": "0.352542 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n5\n0 0\n-1 0\n1 0\n0 1\n0 -1\n5\n31 11\n30 -41\n20 14\n25 18\n25 38\n2\n0 0\n1 1", "output": "1\n1\n4", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n0 0\n-1 0\n1 0\n0 1\n0 -1\n5\n31 11\n30 -41\n20 15\n25 18\n25 38\n2\n0 0\n1 1", "output": "1\n1\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n0 0\n0 0\n1 0\n0 1\n0 -1\n5\n31 3\n30 -41\n20 15\n25 18\n25 38\n1\n0 0\n1 1", "output": "1\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n0 0\n-1 0\n1 1\n0 1\n0 -1\n5\n31 11\n52 -41\n20 4\n25 18\n25 60\n2\n0 0\n1 2", "output": "1\n1\n6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n-1 0\n-1 0\n1 2\n0 1\n0 -1\n5\n31 11\n52 -41\n18 1\n25 18\n25 60\n2\n0 0\n1 3", "output": "1\n1\n8\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n0 0\n-1 0\n1 1\n0 1\n0 -1\n5\n31 11\n30 -41\n20 8\n25 18\n25 38\n2\n0 0\n1 0", "output": "1\n1\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1419/D2
Solve the following coding problem using the programming language python: This is the hard version of the problem. The difference between the versions is that in the easy version all prices $a_i$ are different. You can make hacks if and only if you solved both versions of the problem. Today is Sage's birthday, and she will go shopping to buy ice spheres. All $n$ ice spheres are placed in a row and they are numbered from $1$ to $n$ from left to right. Each ice sphere has a positive integer price. In this version, some prices can be equal. An ice sphere is cheap if it costs strictly less than two neighboring ice spheres: the nearest to the left and the nearest to the right. The leftmost and the rightmost ice spheres are not cheap. Sage will choose all cheap ice spheres and then buy only them. You can visit the shop before Sage and reorder the ice spheres as you wish. Find out the maximum number of ice spheres that Sage can buy, and show how the ice spheres should be reordered. -----Input----- The first line contains a single integer $n$ $(1 \le n \le 10^5)$ — the number of ice spheres in the shop. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 10^9)$ — the prices of ice spheres. -----Output----- In the first line print the maximum number of ice spheres that Sage can buy. In the second line print the prices of ice spheres in the optimal order. If there are several correct answers, you can print any of them. -----Example----- Input 7 1 3 2 2 4 5 4 Output 3 3 1 4 2 4 2 5 -----Note----- In the sample it's not possible to place the ice spheres in any order so that Sage would buy $4$ of them. If the spheres are placed in the order $(3, 1, 4, 2, 4, 2, 5)$, then Sage will buy one sphere for $1$ and two spheres for $2$ each. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) arr = list(map(int, input().split())) flag = 1 if n <= 2: print(0) print(*arr) flag = 0 arr.sort(reverse=True) final = ['0'] pair = 0 if flag == 1: k = 0 j = 1 if n % 2 != 0: temp1 = arr[:n // 2 + 1] temp2 = arr[n // 2 + 1:] else: temp1 = arr[:n // 2] temp2 = arr[n // 2:] rem_val = temp2.pop(0) for i in range(0, len(temp2)): if temp1[k] == temp2[i] or temp1[j] == temp2[i]: pass else: pair += 1 final.pop(-1) final.append(temp1[k]) final.append(temp2[i]) final.append(temp1[j]) k += 1 j += 1 if n % 2 == 0: final.append(rem_val) if flag == 1: print(pair) print(*final) ```
vfc_134373
{ "difficulty": "medium", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1419/D2", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7\n1 3 2 2 4 5 4\n", "output": "3\n3 1 4 2 4 2 5 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1\n", "output": "0\n1 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1000000000 1000000000\n", "output": "0\n1000000000 1000000000 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1 2 2 4 5\n", "output": "2\n2 1 4 2 5 ", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/812/E
Solve the following coding problem using the programming language python: Sagheer is playing a game with his best friend Soliman. He brought a tree with n nodes numbered from 1 to n and rooted at node 1. The i-th node has a_{i} apples. This tree has a special property: the lengths of all paths from the root to any leaf have the same parity (i.e. all paths have even length or all paths have odd length). Sagheer and Soliman will take turns to play. Soliman will make the first move. The player who can't make a move loses. In each move, the current player will pick a single node, take a non-empty subset of apples from it and do one of the following two things: eat the apples, if the node is a leaf. move the apples to one of the children, if the node is non-leaf. Before Soliman comes to start playing, Sagheer will make exactly one change to the tree. He will pick two different nodes u and v and swap the apples of u with the apples of v. Can you help Sagheer count the number of ways to make the swap (i.e. to choose u and v) after which he will win the game if both players play optimally? (u, v) and (v, u) are considered to be the same pair. -----Input----- The first line will contain one integer n (2 ≤ n ≤ 10^5) — the number of nodes in the apple tree. The second line will contain n integers a_1, a_2, ..., a_{n} (1 ≤ a_{i} ≤ 10^7) — the number of apples on each node of the tree. The third line will contain n - 1 integers p_2, p_3, ..., p_{n} (1 ≤ p_{i} ≤ n) — the parent of each node of the tree. Node i has parent p_{i} (for 2 ≤ i ≤ n). Node 1 is the root of the tree. It is guaranteed that the input describes a valid tree, and the lengths of all paths from the root to any leaf will have the same parity. -----Output----- On a single line, print the number of different pairs of nodes (u, v), u ≠ v such that if they start playing after swapping the apples of both nodes, Sagheer will win the game. (u, v) and (v, u) are considered to be the same pair. -----Examples----- Input 3 2 2 3 1 1 Output 1 Input 3 1 2 3 1 1 Output 0 Input 8 7 2 2 5 4 3 1 1 1 1 1 4 4 5 6 Output 4 -----Note----- In the first sample, Sagheer can only win if he swapped node 1 with node 3. In this case, both leaves will have 2 apples. If Soliman makes a move in a leaf node, Sagheer can make the same move in the other leaf. If Soliman moved some apples from a root to a leaf, Sagheer will eat those moved apples. Eventually, Soliman will not find a move. In the second sample, There is no swap that will make Sagheer win the game. Note that Sagheer must make the swap even if he can win with the initial tree. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def coloring(i, ancestors, color): while i != 0 and color[ancestors[i - 1]] is None: color[ancestors[i - 1]] = not color[i] i = ancestors[i - 1] def main(): n = int(input()) a = list(map(int, input().split())) ancestors = list(map(lambda x: int(x) - 1, input().split())) descendants = [[] for i in range(n)] for i in range(n - 1): descendants[ancestors[i]].append(i + 1) color = [None for i in range(n)] for i in range(n): if not descendants[i]: color[i] = True coloring(i, ancestors, color) reds = 0 blues = 0 xor = 0 count_red = dict() count_blue = dict() for i in range(n): if color[i]: blues += 1 xor ^= a[i] if str(a[i]) in count_blue: count_blue[str(a[i])] += 1 else: count_blue[str(a[i])] = 1 else: reds += 1 if str(a[i]) in count_red: count_red[str(a[i])] += 1 else: count_red[str(a[i])] = 1 res = 0 if xor == 0: res += (blues - 1) * blues // 2 res += (reds - 1) * reds // 2 for i in count_blue.items(): if i[0] in count_red: res += i[1] * count_red[i[0]] else: for i in count_blue.items(): if str(xor ^ int(i[0])) in count_red: res += i[1] * count_red[str(xor ^ int(i[0]))] print(res) main() ```
vfc_134377
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/812/E", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n2 2 3\n1 1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n1 2 3\n1 1\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "8\n7 2 2 5 4 3 1 1\n1 1 1 4 4 5 6\n", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n7 7 7 7 7 7\n1 1 1 1 1\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/687/A
Solve the following coding problem using the programming language python: Recently, Pari and Arya did some research about NP-Hard problems and they found the minimum vertex cover problem very interesting. Suppose the graph G is given. Subset A of its vertices is called a vertex cover of this graph, if for each edge uv there is at least one endpoint of it in this set, i.e. $u \in A$ or $v \in A$ (or both). Pari and Arya have won a great undirected graph as an award in a team contest. Now they have to split it in two parts, but both of them want their parts of the graph to be a vertex cover. They have agreed to give you their graph and you need to find two disjoint subsets of its vertices A and B, such that both A and B are vertex cover or claim it's impossible. Each vertex should be given to no more than one of the friends (or you can even keep it for yourself). -----Input----- The first line of the input contains two integers n and m (2 ≤ n ≤ 100 000, 1 ≤ m ≤ 100 000) — the number of vertices and the number of edges in the prize graph, respectively. Each of the next m lines contains a pair of integers u_{i} and v_{i} (1 ≤ u_{i}, v_{i} ≤ n), denoting an undirected edge between u_{i} and v_{i}. It's guaranteed the graph won't contain any self-loops or multiple edges. -----Output----- If it's impossible to split the graph between Pari and Arya as they expect, print "-1" (without quotes). If there are two disjoint sets of vertices, such that both sets are vertex cover, print their descriptions. Each description must contain two lines. The first line contains a single integer k denoting the number of vertices in that vertex cover, and the second line contains k integers — the indices of vertices. Note that because of m ≥ 1, vertex cover cannot be empty. -----Examples----- Input 4 2 1 2 2 3 Output 1 2 2 1 3 Input 3 3 1 2 2 3 1 3 Output -1 -----Note----- In the first sample, you can give the vertex number 2 to Arya and vertices numbered 1 and 3 to Pari and keep vertex number 4 for yourself (or give it someone, if you wish). In the second sample, there is no way to satisfy both Pari and Arya. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import defaultdict (n, m) = list(map(int, input().strip().split())) g = defaultdict(list) for _ in range(m): (u, v) = list(map(int, input().strip().split())) g[u].append(v) g[v].append(u) v1 = [] v2 = [] mark = [-1] * (n + 1) def bfs(start): q = [] q.append(start) mark[start] = 1 v2.append(start) while q: v = q.pop(0) for u in g[v]: if mark[u] == -1: mark[u] = 1 - mark[v] q.append(u) if mark[u] == 0: v1.append(u) else: v2.append(u) elif mark[u] == mark[v]: return -1 return 0 sw = False for i in range(1, n + 1): if mark[i] == -1 and len(g[i]): res = bfs(i) try: if res == -1: sw = True break except: continue if sw: print(-1) else: print(len(v1)) print(' '.join((str(x) for x in v1))) print(len(v2)) print(' '.join((str(x) for x in v2))) ```
vfc_134381
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/687/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4 2\n1 2\n2 3\n", "output": "1\n2 \n2\n1 3 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 3\n1 2\n2 3\n1 3\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 7\n3 2\n5 4\n3 4\n1 3\n1 5\n1 4\n2 5\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 11\n4 10\n8 10\n2 3\n2 4\n7 1\n8 5\n2 8\n7 2\n1 2\n2 9\n6 8\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 9\n2 5\n2 4\n2 7\n2 9\n2 3\n2 8\n2 6\n2 10\n2 1\n", "output": "1\n2 \n9\n1 5 4 7 9 3 8 6 10 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 16\n6 10\n5 2\n6 4\n6 8\n5 3\n5 4\n6 2\n5 9\n5 7\n5 1\n6 9\n5 8\n5 10\n6 1\n6 7\n6 3\n", "output": "2\n5 6 \n8\n1 2 10 4 8 9 7 3 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/rirb/problem
Solve the following coding problem using the programming language python: Given an integer range [A,B], What’s the probability to get a 1-bit if we first randomly choose a number x in the range and then randomly choose a bit from x? What’s the expected number of bit 1s if we randomly choose a number x in the range? Input Format The first line of input is the number of test cases $\mathbf{T}$ Each test cases is a line contains 2 integers $\mbox{A}$ and $\mbox{B}$ separated by a space. Output Format For each test case output a line containing 2 float numbers separated by a space. The first one is the probability and the second one is the expected number. You should output the number accurate to 5 fractional digits.  Constraints $1\leq T\leq200$ $1\leq A\leq B\leq10^{10}$ Sample Input 1 2 4 Sample Output 0.61111 1.33333 Explanation (10) (11) (100) (1) So we got a one in $\frac{1}{3}\times\frac{1}{2}+\frac{1}{3}\times\frac{1}{1}+\frac{1}{3}\times\frac{1}{3}=\frac{11}{18}$ (2) The expected 1 we have is : $1\times\frac{1}{3}+2\times\frac{1}{3}+1\times\frac{1}{3}=\frac{4}{3}$ The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from functools import lru_cache @lru_cache(maxsize=None) def s1(n): if n < 3: return n if n % 2 == 0: return s1(n // 2) + s1(n // 2 - 1) + n // 2 return 2 * s1(n // 2) + n // 2 + 1 def s2(n): res = 0 for i in range(1, 40): if 2 ** i > n: return res + (s1(n) - s1(2 ** (i - 1) - 1)) / i res += (1 + 1 / i) / 2 * 2 ** (i - 1) for _ in range(int(input())): (a, b) = map(int, input().split()) ans1 = (s2(b) - s2(a - 1)) / (b - a + 1) ans2 = (s1(b) - s1(a - 1)) / (b - a + 1) print('%.5f %.5f' % (ans1, ans2)) ```
vfc_134389
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/rirb/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n2 4\n", "output": "0.61111 1.33333\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MIXCOLOR
Solve the following coding problem using the programming language python: Read problems statements in Mandarin chinese, Russian and Vietnamese as well. Chef likes to mix colors a lot. Recently, she was gifted N colors A_{1}, A_{2}, ..., A_{N} by her friend. Chef wants to make the values of all her colors pairwise distinct, as they will then look stunningly beautiful. In order to achieve that, she can perform the following mixing operation zero or more times: Choose any two colors. Let's denote their values by x and y. Mix the color with value x into the color with value y. After the mixing, the value of the first color remains x, but the value of the second color changes to x + y. Find the minimum number of mixing operations Chef needs to perform to make her colors beautiful. ------ Input ------ The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows. The first line of each test case contains a single integer N denoting the number of colors. The second line contains N space-separated integers A_{1}, A_{2}, ..., A_{N} denoting Chef's initial colors. ------ Output ------ For each test case, print a single line containing one integer — the minimum number of required mixing operations. ------ Constraints ------ $1 ≤ T ≤ 10$ $1 ≤ N ≤ 10^{5}$ $1 ≤ A_{i} ≤ 10^{9} for each valid i$ ------ Subtasks ------ Subtask #1 (30 points): 1 ≤ N ≤ 100 Subtask #2 (70 points): original constraints ----- Sample Input 1 ------ 2 3 1 2 3 3 2 1 2 ----- Sample Output 1 ------ 0 1 ----- explanation 1 ------ Example case 1: No two colors have the same value. Hence, they are already beautiful. No mixing is required. Example case 2: Take the second color (with value x = 1) and mix it into the first color (with value x = 2). After the mixing, the colors will be 3 1 2. Now the colors are beautiful. This is the minimum number of mixing operations that are required. Hence, the answer is 1. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) arr = list(map(int, input().split())) print(n - len(set(arr))) ```
vfc_134393
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MIXCOLOR", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n3\n1 2 3\n3\n2 1 2", "output": "0\n1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFAPPS
Solve the following coding problem using the programming language python: Chef's phone has a total storage of S MB. Also, Chef has 2 apps already installed on his phone which occupy X MB and Y MB respectively. He wants to install another app on his phone whose memory requirement is Z MB. For this, he might have to delete the apps already installed on his phone. Determine the minimum number of apps he has to delete from his phone so that he has enough memory to install the third app. ------ Input Format ------ - The first line contains a single integer T — the number of test cases. Then the test cases follow. - The first and only line of each test case contains four integers S, X, Y and Z — the total memory of Chef's phone, the memory occupied by the two already installed apps and the memory required by the third app. ------ Output Format ------ For each test case, output the minimum number of apps Chef has to delete from his phone so that he can install the third app. ------ Constraints ------ $1 ≤ T ≤ 1000$ $1 ≤ S ≤ 500$ $1 ≤X ≤Y ≤S$ $X + Y ≤S$ $Z ≤S$ ----- Sample Input 1 ------ 4 10 1 2 3 9 4 5 1 15 5 10 15 100 20 30 75 ----- Sample Output 1 ------ 0 1 2 1 ----- explanation 1 ------ Test Case 1: The unused memory in the phone is $7$ MB. Therefore Chef can install the $3$ MB app without deleting any app. Test Case 2: There is no unused memory in the phone. Chef has to first delete one of the apps from the phone and then only he can install the $1$ MB app. Test Case 3: There is no unused memory in the phone. Chef has to first delete both the apps from the phone and then only he can install the $15$ MB app. Test Case 4: The unused memory in the phone is $50$ MB. Chef has to first delete the $30$ MB app from the phone and then only he can install the $75$ MB app. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): (s, x, y, z) = map(int, input().split()) a = x + y if s - a >= z: print(0) elif s - a < z and s - x >= z or s - y >= z: print(1) else: print(2) ```
vfc_134401
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFAPPS", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n10 1 2 3\n9 4 5 1\n15 5 10 15\n100 20 30 75\n", "output": "0\n1\n2\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Navi is a counter strike pro. He always say how good he is at counter strike. After being tired of Navi, his friends decided to test his skills at shooting. They put M targets on a X-Y plane, each target is denoted by (X, Y) where X is x-coordinate and Y is y-coordinate. His friends also gave him N locations on X-Y plane from where Navi can shoot the targets. Navi knows that he can shoot a target if Manhattan distance between his location and target is ≤ D. If Navi can shoot more than half of the targets (for odd values of M check only for the integral part of half of M, say M = 3, \frac{2}{3} = 1) only then his friends believe that he is a pro at counter strike otherwise he is not. Input First line of input contains an integers T denoting the number of test cases. First line of each test case consists of three integers N, M and D separated by a space. Next N lines of each test case contains a pair of integers denoting the X -co-ordinate and Y - co-ordinate. Next M lines of each test case contains a pair of integers denoting X -co-ordinate and Y - co-ordinate of each of the target. N is number of shooting locations for Navi. M is number of targets. D is shooting range of Navi. Output For each test case , Print "YES" if he is a pro else "NO" (without quotes) . Constraints 1 ≤ T ≤ 6 1 ≤ N ≤ 1000 1 ≤ M ≤ 1000 -50000 ≤ X, Y ≤ 50000 0 ≤ D ≤ 50000 SAMPLE INPUT 1 3 3 5 1 1 2 2 3 3 1 0 0 0 2 0 SAMPLE OUTPUT YES Explanation First location is at (1, 1) , we can shot any of the given targets from here so count > \frac{3}{2} , therefore YES. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ''' # Read input from stdin and provide input before running code name = raw_input('What is your name?\n') print 'Hi, %s.' % name ''' test = int(input()) for i in range(test): mat = input() [n,m,d] = list(map(int, mat.split())) shoot_loc = [] for j in range(n): loc = input() [x,y] = list(map(int,loc.split())) shoot_loc.append([x,y]) tar_loc = [] for k in range(m): loc = input() [x,y] = list(map(int,loc.split())) tar_loc.append([x,y]) summ = 0 for loc in tar_loc: dist = [] for sho in shoot_loc: dist.append(abs(loc[0]-sho[0])+abs(loc[1]-sho[1])) if min(dist) <= d: summ = summ+1 if summ > m/2: print("YES") else: print("NO") ```
vfc_134410
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n3 3 2\n1 1\n2 2\n3 3\n-1 -1\n-2 -2\n-3 -3\n4 5 100\n840 958\n271 550\n779 32\n192 949\n538 624\n358 462\n24 115\n303 207\n771 984\n1000 1000 5909\n30223 7665\n-30214 25609\n18159 -10334\n-29404 -24432\n11322 27193\n-28500 24109\n9434 -11799\n-30147 -17164\n17143 19918\n-1967 7243\n25451 -23586\n-12517 -14937\n31095 4513\n-20678 9181\n17076 -203\n-3554 -2810\n30540 21878\n-10184 10193\n19049 -9073\n-6939 -7240\n20206 2152\n-19433 17674\n5222 -9479\n-10809 -7120\n4153 12642\n-1251 3806\n10022 -12437\n-32421 -29136\n27373 1959\n-22898 27542\n24652 -31669\n-3085 -1470\n24877 23372\n-21975 16625\n28446 -22294\n-17638 -21185\n2561 19897\n-25174 28834\n24325 -3836\n-30948 -19509\n25557 23084\n-10680 9421\n12815 -7102\n-17283 -4652\n14071 11829\n-4042 27789\n2925 -8774\n-2690 -30184\n2076 21050\n-14300 10353\n27125 -17557\n-3170 -20065\n6876 8693\n-6979 18170\n29344 -16956\n-32491 -7365\n1073 5361\n-12247 20767\n19213 -26852\n-15784 -243\n19708 22289\n-7798 18121\n1021 -21703\n-2150 -32256\n9344 12554\n-2431 19287\n5077 -309\n-20921 -3763\n8933 16612\n-25431 8732\n24864 -10512\n-7543 -2568\n7094 636\n-21736 31452\n23818 -30544\n-28475 -22448\n100 10244\n-13341 3666\n11749 -1920\n-18660 -29838\n21185 17026\n-2663 2733\n27048 -13887\n-14611 -18236\n10117 14925\n-11067 20495\n24683 -16832\n-31152 -17541\n14540 6036\n-23186 32012\n30445 -14923\n-7781 -25576\n2198 6870\n-871 19249\n4366 -17081\n-21281 -25627\n4935 9579\n-32317 15227\n3157 -8443\n-10903 -24454\n4644 29177\n-26519 4827\n19051 -7828\n-31933 -12484\n19932 7424\n-1661 9912\n19358 -14619\n-21838 -10021\n252 32079\n-17150 31085\n22879 -8890\n-29256 -2862\n19065 19596\n-11432 9927\n16580 -4785\n-21102 -29464\n12331 8113\n-4370 8329\n7430 -26068\n-21447 -26445\n12620 12169\n-8786 15080\n12804 -3848\n-25117 -22254\n26877 28983\n-11655 2318\n22207 -22474\n-13695 -23632\n16577 32431\n-24913 2459\n28637 -28841\n-8383 -20858\n13056 20283\n-9300 8991\n31270 -20935\n-28661 -13481\n7558 16375\n-31673 28834\n9481 -27484\n-22267 -23756\n9217 27733\n-429 24093\n32024 -9779\n-28654 -32264\n8838 22170\n-27615 5374\n9864 -13354\n-18867 -32309\n12301 24671\n-8710 14504\n10162 -12470\n-1648 -6495\n12528 4882\n-25689 29424\n17300 -4445\n-2575 -22086\n31088 14450\n-533 20641\n25681 -26171\n-14527 -19166\n49 17174\n-8187 28153\n5549 -27262\n-17778 -12496\n8377 1767\n-3792 29481\n3986 -25833\n-4191 -18935\n28148 16801\n-12763 24793\n20622 -22613\n-5506 -5348\n5299 29526\n-30058 11426\n18514 -1067\n-27415 -20826\n20008 1771\n-21837 11666\n4660 -13547\n-20515 -21715\n25195 19097\n-29529 22700\n16302 -25768\n-19179 -12025\n15097 14446\n-15846 19814\n13021 -11146\n-22395 -7726\n1328 3785\n-9810 12841\n2307 -75\n-9761 -21509\n25812 14561\n-26492 24787\n5381 -18618\n-27119 -2502\n13965 1855\n-23626 25400\n27118 -14907\n-14140 -25838\n25191 14399\n-26147 16285\n30058 -2629\n-29219 -11181\n15952 20627\n-25461 5436\n10828 -28386\n-19714 -18790\n157 17344\n-13873 2244\n15112 -28467\n-22269 -9010\n17030 27807\n-23114 214\n25658 -1001\n-6777 -15454\n4773 21981\n-3130 12936\n18205 -1997\n-19361 -10984\n6011 21115\n-32637 32230\n21525 -30778\n-1765 -23558\n16876 26191\n-9491 6764\n17702 -1437\n-8054 -10399\n4030 32386\n-514 5005\n10362 -29692\n-32203 -14799\n24093 31248\n-5586 5423\n31454 -19308\n-3614 -15719\n19482 587\n-20751 2092\n21062 -22681\n-16112 -27243\n11559 13143\n-7115 32467\n6213 -32066\n-3969 -21907\n2973 5295\n-27673 29029\n21654 -20666\n-11865 -5579\n15158 24991\n-27795 19096\n1942 -4200\n-10178 -14515\n31635 8649\n-13014 17432\n5319 -24648\n-9291 -1823\n10936 4512\n-1536 4865\n15694 -23400\n-14151 -6552\n1931 23280\n-13624 25702\n10870 -29804\n-15692 -15577\n1112 7508\n-32295 10701\n2091 -9738\n-19124 -9811\n10576 18110\n-887 13745\n12160 -29583\n-10783 -30890\n1797 15346\n-21339 10239\n24874 -14680\n-27375 -6197\n14576 20747\n-32263 10905\n4098 -19801\n-32715 -20354\n30699 4597\n-15411 32214\n15239 -28570\n-27933 -17359\n15543 23281\n-9629 21759\n23129 -2741\n-1940 -14738\n29304 16661\n-30596 724\n21695 -17498\n-17058 -10483\n14644 19145\n-27437 30213\n3875 -24011\n-3839 -8780\n14423 30795\n-7266 1465\n1168 -25696\n-18724 -688\n306 7212\n-32750 3595\n28987 -12804\n-14289 -30817\n375 976\n-27170 23688\n3319 -15797\n-6792 -22360\n1471 28658\n-9555 27826\n21951 -15368\n-18447 -15809\n19461 23838\n-6233 29824\n27184 -4003\n-23794 -2173\n9768 7221\n-32018 16604\n29708 -2498\n-31231 -6046\n11372 15085\n-9949 25124\n8889 -31411\n-4808 -25326\n32761 15438\n-22816 10409\n13759 -4697\n-19492 -24169\n7515 8502\n-11715 28979\n5966 -4269\n-27310 -11966\n16129 16597\n-2994 16762\n1718 -17976\n-20805 -11730\n20414 28978\n-11615 13486\n21228 -25754\n-3979 -16189\n27979 32676\n-14141 14321\n9484 -7942\n-102 -29899\n31426 31066\n-24134 5848\n23250 -6852\n-30849 -764\n17188 17364\n-7798 22510\n28959 -12206\n-1228 -1412\n11221 1384\n-333 26929\n32378 -30899\n-14584 -5068\n30491 23998\n-29777 7314\n15756 -13399\n-3580 -9583\n5795 28244\n-12170 29817\n10147 -30001\n-20627 -18109\n3579 13050\n-11269 16447\n7985 -8811\n-8123 -7484\n25881 10839\n-10834 2226\n10826 -18502\n-31544 -15395\n10962 20066\n-18693 19605\n15657 -14484\n-25103 -18653\n1892 23786\n-11064 3357\n5291 -31548\n-267 -28556\n24301 28687\n-12040 10869\n8402 -3769\n-28987 -10115\n1010 26310\n-13332 4155\n32580 -30875\n-1650 -18378\n31193 7513\n-29185 12801\n1482 -9732\n-11718 -27550\n18287 30181\n-24312 22477\n23761 -7212\n-23570 -9966\n22882 12506\n-9766 15001\n10732 -30942\n-3188 -2783\n29896 5502\n-11835 28883\n19024 -17145\n-20175 -31306\n14742 27243\n-12268 10974\n7511 -2800\n-26186 -20025\n13610 15884\n-23665 16272\n24317 -23371\n-30671 -19053\n1218 32548\n-5128 2226\n4710 -31011\n-18573 -25051\n2051 25928\n-11376 3971\n31830 -29866\n-3191 -19241\n9075 10591\n-18287 2357\n11703 -2464\n-17602 -25910\n4863 3625\n-14668 9070\n7703 -20447\n-11883 -27536\n19574 14517\n-32597 8392\n22056 -15312\n-16559 -31484\n29195 22762\n-18011 17746\n10814 -28404\n-15249 -26098\n21719 8703\n-305 4877\n1236 -22620\n-18007 -22814\n1877 4866\n-3888 22127\n16648 -9521\n-7693 -20447\n32740 3925\n-29366 740\n5402 -301\n-21505 -22732\n19272 18220\n-6051 24392\n3312 -10016\n-7237 -10794\n20266 28689\n-10715 622\n5269 -16748\n-11313 -1655\n7315 19809\n-31686 8092\n4790 -6793\n-10462 -28899\n21109 2252\n-31955 8972\n4900 -7554\n-9644 -12754\n4131 23256\n-16368 7789\n341 -9845\n-12989 -11099\n30675 862\n-4628 1376\n29410 -8983\n-31607 -32204\n16675 4620\n-8374 14844\n522 -815\n-29958 -31779\n23441 32481\n-12371 26955\n14382 -30998\n-7383 -28822\n8450 4788\n-25324 14282\n2131 -2621\n-18206 -12556\n6204 8110\n-3717 15852\n22947 -28583\n-32082 -930\n18284 2507\n-9127 21655\n8684 -18026\n-27820 -21288\n5793 8030\n-9183 12710\n4128 -4146\n-25771 -13217\n16974 16778\n-10301 21606\n18131 -958\n-26003 -14022\n24012 23753\n-30677 16921\n9920 -11618\n-16105 -4227\n26070 12648\n-11842 4726\n10565 -24451\n-15864 -2936\n25355 27657\n-29214 19495\n19170 -29470\n-27728 -19834\n7280 3616\n-15243 4425\n1470 -22594\n-24129 -27664\n23019 9846\n-10925 7152\n23586 -30353\n-4453 -20726\n14025 22953\n-28206 2720\n29435 -24002\n-23315 -28317\n1081 15018\n-14777 31957\n15452 -17954\n-26349 -17577\n15310 29502\n-19583 32636\n12794 -24847\n-17747 -13426\n513 15487\n-1973 18807\n8111 -31099\n-2541 -9604\n14509 10072\n-5395 18461\n32248 -25711\n-31269 -31263\n8593 13579\n-7511 31672\n23671 -16774\n-19370 -21431\n4306 16302\n-3776 9222\n23665 -2925\n-29423 -10100\n12150 12970\n-29588 15544\n15184 -30826\n-426 -8883\n19946 4923\n-22683 18934\n27938 -10962\n-5461 -24452\n18045 22771\n-17313 29913\n18201 -12689\n-21936 -26923\n28643 5687\n-14839 30703\n14857 -22694\n-830 -4255\n8115 28864\n-22259 23483\n7406 -18852\n-5571 -4366\n15592 27163\n-29292 818\n1891 -31795\n-27340 -1110\n25188 30761\n-22334 2111\n15403 -30348\n-1063 -10125\n4456 28064\n-2508 26688\n9132 -24065\n-22119 -28538\n29726 12936\n-7801 134\n22127 -22386\n-10081 -27930\n12304 19647\n-8238 23257\n14242 -14297\n-31922 -540\n18606 14454\n-1751 18930\n8086 -1215\n-6711 -25958\n4555 4274\n-15846 22016\n5697 -17605\n-4242 -30606\n12832 1996\n-15055 31011\n7613 -8220\n-23468 -26465\n13768 12273\n-9098 11252\n3271 -20749\n-4398 -9823\n12482 5026\n-1300 16891\n31040 -25714\n-7942 -11580\n29043 7733\n-6638 5687\n12976 -19003\n-6633 -4193\n17186 21586\n-8348 1946\n19646 -13802\n-7115 -25706\n16505 23671\n-16935 17802\n14777 -20247\n-12904 -29350\n13834 22389\n-2204 27745\n29971 -12781\n-23999 -15770\n5320 2289\n-25995 29165\n15841 -16299\n-7825 -21885\n29834 20451\n-18569 25073\n24924 -16164\n-5351 -31933\n9868 28442\n-17839 27299\n5474 -19775\n-11913 -7289\n22509 9655\n-19480 14636\n25334 -7543\n-25992 -2309\n17458 6061\n-27750 9771\n8379 -2652\n-3765 -5738\n30657 1607\n-12094 12850\n32125 -30225\n-14375 -31971\n8807 22690\n-31687 21063\n6825 -31437\n-6073 -3424\n31187 29743\n-3631 3173\n14032 -27482\n-2441 -13831\n11289 25907\n-32295 25592\n26664 -9112\n-7803 -22190\n25136 22342\n-21858 5733\n26379 -10490\n-15028 -25955\n21108 24023\n-13849 10111\n26742 -6920\n-17439 -25316\n25380 3238\n-4490 15891\n2187 -29660\n-24812 -7975\n23781 24649\n-28277 20573\n17680 -6309\n-17931 -19923\n11582 30376\n-16285 8336\n2029 -14887\n-5557 -27333\n14618 6017\n-19021 2386\n16817 -1337\n-19940 -28300\n16201 3300\n-7377 6718\n5134 -9030\n-18134 -21230\n19198 19384\n-5368 1121\n3161 -2764\n-16782 -26465\n13906 27700\n-30361 22205\n28171 -8160\n-1619 -30098\n15552 29287\n-4619 2761\n3395 -9384\n-4911 -13793\n7592 26289\n-31403 24814\n14657 -31200\n-23153 -5090\n20173 15943\n-19801 3340\n14060 -12117\n-4396 -17118\n16086 5043\n-1787 13043\n19277 -25709\n-3510 -8785\n10192 12114\n-27386 13035\n22034 -30877\n-13865 -29290\n29098 24533\n-31168 17964\n31756 -3057\n-32485 -22669\n9400 8896\n-30528 27494\n25009 -20360\n-30988 -13268\n27697 7406\n-366 9019\n30107 -9749\n-28933 -16778\n10417 25354\n-14018 31936\n19207 -5216\n-7418 -4527\n4791 4631\n-27833 29183\n1111 -451\n-23386 -19319\n27944 14313\n-30292 5240\n19856 -18605\n-343 -16842\n18379 2986\n-31384 2460\n26333 -5922\n-14697 -22469\n20939 30295\n-23308 22352\n16138 -7992\n-29129 -13624\n15416 27456\n-10814 112\n7690 -6044\n-23287 -19238\n11398 4236\n-12862 29001\n24434 -3083\n-30260 -10313\n16140 14258\n-2849 15390\n15611 -32218\n-13321 -7563\n6534 9729\n-16768 9636\n10500 -21615\n-8894 -12942\n3475 11544\n-3318 390\n14605 -7621\n-11492 -27172\n19256 4975\n-5798 24289\n8253 -7915\n-26572 -22232\n9052 19661\n-20402 1225\n14813 -13446\n-29198 -32611\n23114 719\n-22469 16067\n9179 -843\n-25091 -4920\n2610 28007\n-29578 31049\n26952 -30854\n-17482 -28409\n5544 31579\n-4914 11849\n15579 -6805\n-10823 -28927\n10787 19138\n-26867 8614\n17260 -10605\n-18591 -7638\n21119 29066\n-3972 28085\n28281 -3861\n-9661 -5310\n6523 5621\n-16545 24513\n26276 -8230\n-22609 -21547\n15420 22295\n-7053 9352\n1586 -11345\n-21964 -20038\n27849 1370\n-31627 17596\n25486 -24281\n-20709 -19819\n9357 11002\n-24164 29059\n27588 -28436\n-10263 -10409\n1752 25738\n-23268 8439\n3335 -8431\n-25632 -18500\n21342 2413\n-10077 31398\n28972 -5479\n-18051 -31286\n26806 9309\n-12323 5139\n18476 -27408\n-26631 -5802\n22236 15335\n-15886 32052\n8870 -11922\n-26423 -29823\n432 27373\n-11515 7410\n23643 -6951\n-9952 -11724\n21365 18723\n-12875 23980\n5808 -11038\n-7317 -13398\n32594 9107\n-13154 10676\n17199 -30811\n-12078 -13851\n21460 1305\n-11305 14288\n15878 -27861\n-9541 -20939\n7531 3815\n-9613 10170\n30854 -17175\n-9144 -6985\n6377 8450\n-15358 28321\n13221 -22208\n-15402 -28718\n30214 21187\n-13809 5030\n19069 -17666\n-2946 -7239\n27102 15191\n-10846 15456\n3275 -23846\n-26730 -19986\n20848 2624\n-14146 2392\n10610 -24839\n-8657 -23365\n25633 28626\n-18463 17037\n10485 -5523\n-19817 -21831\n30264 21943\n-27767 21489\n30720 -9037\n-9770 -28085\n19296 26475\n-15957 6634\n479 -18125\n-31437 -10974\n31017 27328\n-22724 32211\n23301 -20798\n-11346 -27719\n22919 26715\n-24149 25209\n31623 -30944\n-15483 -16168\n3410 9269\n-3997 24734\n2462 -31108\n-27727 -749\n3780 26139\n-29109 21369\n13353 -1298\n-27288 -23990\n21501 4654\n-1208 13619\n7465 -1030\n-4708 -216\n386 4452\n-2633 19308\n21571 -9710\n-14728 -15705\n11450 2566\n-23563 9140\n24897 -16878\n-3864 -26744\n11888 26672\n-21030 24594\n24209 -1853\n-2544 -4131\n1364 13908\n-14793 21377\n9157 -32165\n-26415 -32639\n18554 17847\n-23458 28270\n17 -22023\n-14519 -4963\n10714 9970\n-4712 31547\n1232 -2772\n-942 -24285\n2254 29298\n-29010 10943\n24575 -20629\n-28415 -8108\n5271 24824\n-31389 28868\n18112 -22116\n-474 -708\n32471 13338\n-26121 12423\n28633 -22129\n-29232 -14541\n15896 28352\n-30556 14652\n7731 -30334\n-824 -23204\n24644 23976\n-25822 4743\n15195 -30819\n-29677 -7641\n27948 28643\n-19932 6404\n516 -14987\n-32142 -22831\n22786 24406\n-16678 27328\n14467 -2165\n-25116 -22815\n1758 10554\n-21393 9149\n31570 -15156\n-2783 -1110\n23356 22172\n-18037 27251\n6029 -10735\n-14050 -20530\n24188 5341\n-15919 19529\n30072 -27234\n-14706 -1353\n28513 7731\n-2208 27168\n4855 -24923\n-18595 -21474\n1427 29222\n-29612 29897\n3605 -9022\n-23499 -14458\n1053 24084\n-13245 31113\n16254 -9345\n-6661 -12352\n7151 21934\n-23102 32412\n25860 -14897\n-22703 -15769\n15965 7032\n-23584 28591\n23582 -27243\n-10732 -15517\n8094 14669\n-10328 23141\n27748 -3299\n-31523 -1944\n18767 18649\n-20062 31443\n8724 -15201\n-17278 -27530\n15598 3101\n-13488 6148\n14480 -4671\n-17004 -27815\n9823 21999\n-24397 12406\n5342 -16621\n-20000 -23256\n7785 17015\n-17979 30363\n20519 -27245\n-12816 -13880\n32058 16307\n-15361 7513\n21048 -21975\n-7542 -25496\n15583 26099\n-25645 29834\n31748 -28373\n-8658 -12540\n27597 8286\n-14800 21884\n25120 -5672\n-16742 -10780\n12123 9579\n-9725 24434\n5958 -16930\n-3513 -15587\n22086 16233\n-9806 1058\n1747 -28458\n-22037 -11763\n31531 25848\n-863 25653\n24392 -24635\n-26121 -23839\n14096 8590\n-5968 31690\n3277 -12133\n-21479 -23023\n25564 19955\n-9287 7923\n17321 -11851\n-24391 -18464\n28379 6341\n-15084 17974\n6859 -5795\n-24450 -5154\n15163 24308\n-12523 11021\n13893 -2745\n-16952 -30616\n5265 21575\n-10102 13414\n459 -26092\n-6602 -19932\n12628 31701\n-8641 13092\n31544 -23855\n-15329 -14456\n17761 28813\n-11140 28317\n3338 -28554\n-28646 -5037\n9334 32175\n-3964 282\n30945 -9879\n-11655 -15088\n29879 1872\n-7658 1114\n20996 -9989\n-27448 -7528\n28971 17114\n-786 3599\n2012 -4376\n-31920 -8818\n15424 16266\n-11709 31839\n118 -12583\n-360 -24093\n16963 16112\n-17848 4709\n17157 -28\n-25375 -5550\n11241 23923\n-12883 25774\n12894 -29688\n-25689 -5149\n24778 2762\n-12514 5564\n22395 -8268\n-16091 -20118\n6624 21124\n-31552 25221\n15353 -9921\n-21041 -22777\n1036 29825\n-32327 32501\n21658 -30609\n-25128 -10842\n29329 19830\n-8281 17000\n31683 -25100\n-25940 -12674\n8599 3949\n-6107 9265\n31742 -29972\n-25483 -14700\n2217 19011\n-20916 2071\n10874 -12193\n-25704 -7625\n15672 17448\n-26578 23250\n4486 -318\n-28105 -20349\n25878 8738\n-10149 32402\n11034 -6794\n-4690 -10527\n14587 24715\n-10403 1912\n11086 -3512\n-4072 -4989\n5892 7054\n-29378 18459\n23264 -16144\n-32310 -31254\n9519 10158\n-13569 11781\n435 -9579\n-3371 -3998\n992 31295\n-3039 28211\n24907 -23226\n-21370 -25213\n4191 25067\n-22498 409\n16209 -31872\n-11545 -16720\n14167 3886\n-9234 29083\n21 -23636\n-10691 -28518\n22360 27867\n-7291 29845\n20743 -96\n-2934 -10565\n13143 18581\n-5295 23124\n25405 -29668\n-21749 -31011\n29993 19286\n-7745 18586\n13809 -26548\n-26695 -23405\n16395 16876\n-12107 18334\n28928 -8885\n-13622 -13124\n21277 13686\n-22761 7818\n20332 -16996\n-30673 -3834\n15331 21483\n-3515 32764\n6618 -19280\n-1770 -15513\n6339 10388\n-30823 1669\n12565 -2459\n-12953 -11869\n27529 9358\n-25109 301\n10377 -16765\n-12983 -12085\n31717 30537\n-10482 4077\n28873 -12225\n-9572 -26438\n18924 14091\n-18094 4147\n4617 -23110\n-7554 -12392\n4243 22893\n-26366 22881\n30373 -12414\n-16696 -15015\n22584 31708\n-3610 18767\n17816 -31730\n-30832 -195\n6425 31770\n-20287 8389\n19717 -8381\n-11096 -3248\n28122 24763\n-4910 12289\n31922 -11789\n-4325 -3095\n22019 4521\n-28331 21303\n28808 -16037\n-3403 -13523\n2175 24736\n-2303 16140\n2837 -10590\n-8326 -31093\n22047 25010\n-4727 7450\n8202 -417\n-25813 -3521\n7189 5060\n-19171 30831\n11965 -26606\n-7482 -15150\n18041 22799\n-6168 31246\n11432 -10840\n-21499 -1386\n25288 16288\n-11375 30060\n24552 -13575\n-2340 -7891\n16992 6617\n-15683 17652\n18879 -21173\n-28930 -11519\n11525 26350\n-18807 30340\n8467 -15665\n-17065 -23862\n9055 2920\n-28653 18414\n23788 -32223\n-5744 -18675\n12666 22949\n-22032 29560\n20218 -7734\n-21616 -10854\n20804 27222\n-7755 19548\n19980 -10304\n-13064 -24820\n23826 17664\n-28303 11081\n28826 -30494\n-17756 -17846\n4636 22652\n-1745 10976\n22332 -22401\n-6609 -20470\n8956 17271\n-26506 13367\n1841 -30770\n-26770 -2485\n23092 27891\n-2102 23385\n21721 -10892\n-21007 -21544\n19621 27844\n-7638 3012\n24123 -29436\n-11640 -31798\n7192 17427\n-29037 1258\n5504 -27016\n-26438 -7931\n18872 26078\n-18054 9906\n23414 -27205\n-28595 -24137\n6294 3958\n-20909 3572\n10766 -5599\n-14654 -25890\n36 28928\n-16113 255\n20191 -8725\n-18216 -15422\n11963 9717\n-18537 11287\n13728 -31290\n-19449 -28299\n7189 32162\n-23724 11759\n17074 -12213\n-22523 -32168\n11219 5032\n-21847 29748\n15764 -14978\n-6077 -9834\n24569 14461\n-15755 26626\n19308 -2479\n-8850 -30039\n7021 10729\n-10348 27244\n31109 -25568\n-22799 -11053\n29819 7050\n-6051 8440\n22475 -6091\n-21393 -29020\n5972 3921\n-29149 4641\n9041 -31933\n-24757 -24200\n14474 32259\n-2378 4563\n204 -17171\n-5086 -19208\n6038 20409\n-12830 32243\n18197 -5313\n-25523 -30058\n4434 9312\n-26900 19157\n22955 -1487\n-22686 -30445\n17024 27705\n-2534 24515\n4910 -21719\n-19278 -2052\n14913 20570\n-5590 17276\n16357 -31625\n-13109 -5338\n15518 27435\n-2601 6323\n10297 -3879\n-1291 -8649\n5379 20714\n-18086 27276\n11064 -28937\n-8521 -32737\n30910 26663\n-1051 18723\n26899 -20250\n-21167 -20839\n31109 4681\n-23256 13829\n32161 -29784\n-23743 -24148\n2029 9224\n-22834 24756\n19162 -26968\n-6719 -14546\n1524 11761\n-10754 13095\n21340 -25792\n-11195 -12738\n27000 5349\n-19235 11848\n9449 -3020\n-13825 -7481\n28349 31385\n-21496 5748\n21222 -714\n-12451 -26366\n23275 30231\n-19428 28671\n222 -19869\n-17528 -30477\n20110 7228\n-4303 19373\n31997 -62\n-14875 -26135\n10261 22585\n-19880 25402\n27286 -16182\n-30827 -512\n30291 5138\n-221 1491\n31902 -4133\n-4874 -8800\n31489 12578\n-4836 21659\n16431 -31294\n-26846 -19715\n15673 20629\n-31926 20263\n30469 -30409\n-21138 -10857\n11261 27628\n-32335 12290\n516 -12704\n-24854 -19014\n20654 15740\n-25904 6441\n23472 -6578\n-11291 -14339\n4501 30959\n-25309 4240\n8883 -16771\n-12440 -24379\n1118 21442\n-29535 19612\n13403 -4010\n-16200 -16447\n20631 24006\n-21442 20647\n22297 -16209\n-31529 -29842\n8758 10655\n-2200 22911\n29956 -12473\n-26623 -878\n11281 17736\n-29813 6631\n26196 -2484\n-2255 -1597\n14947 652\n-32369 18196\n19431 -9769\n-3684 -7457\n21837 3982\n-18601 30001\n31167 -22675\n-5581 -13165\n29523 24387\n-30398 17372\n29058 -31362\n-30429 -5161\n15323 25075\n-1108 23207\n27896 -19736\n-8874 -20114\n22962 3515\n-11157 13720\n30865 -10637\n-4623 -27287\n23942 14094\n-23467 16809\n7645 -428\n-17450 -27998\n12397 14639\n-16201 18760\n7698 -12372\n-19678 -11709\n5725 28344\n-21283 12504\n15497 -6648\n-29522 -30913\n16561 31255\n-3186 814\n6465 -7456\n-24688 -1578\n28843 24076\n-3953 19990\n7003 -21221\n-23911 -15597\n10732 26156\n-30178 20172\n27548 -8057\n-8746 -18353\n29949 24417\n-9610 28290\n32494 -4764\n-13294 -31058\n12746 8295\n-14001 3809\n12511 -6184\n-21424 -353\n31266 25169\n-27299 9856\n28192 -30854\n-31917 -28834\n5176 26882\n-12849 11630\n28424 -10551\n-29416 -3469\n29989 31668\n-17456 22958\n527 -27980\n-24999 -30926\n21348 11637\n-17401 11190\n26195 -17902\n-2550 -8645\n18772 30117\n-30696 19183\n13846 -13015\n-291 -2822\n1977 6265\n-4061 12856\n24894 -17111\n-32576 -24282\n6204 24443\n-31678 11364\n14292 -29776\n-15781 -21436\n12262 8711\n-20979 8375\n1157 -26042\n-25963 -24797\n4521 7631\n-17896 12140\n14116 -22048\n-3570 -17056\n216 8024\n-11919 7730\n7974 -30112\n-19291 -20254\n17322 31356\n-7387 5290\n13861 -1519\n-19727 -6820\n13754 21222\n-582 10475\n31326 -19156\n-3126 -27697\n27274 13465\n-26444 15358\n22834 -19112\n-2625 -504\n24571 31849\n-12782 9827\n10665 -24284\n-8033 -9700\n16598 4224\n-31792 13450\n14058 -5235\n-22797 -4622\n14151 26842\n-31387 29530\n23236 -23683\n-26753 -9545\n20317 26569\n-29372 19630\n10281 -3256\n-8505 -26519\n27020 626\n-16803 29651\n9645 -12241\n-1914 -24241\n15658 14670\n-29285 8715\n6155 -9762\n-28361 -12931\n27381 24747\n-25754 8973\n23712 -5648\n-10353 -8622\n8075 14632\n-735 12675\n21487 -11416\n-16898 -17924\n17905 22588\n-2389 9098\n23579 -11721\n-21452 -10511\n18957 24752\n-23585 26421\n23408 -21829\n-24424 -10378\n27436 2848\n-28138 20235\n23259 -1731\n-15920 -10983\n7805 32382\n-13918 11909\n12397 -20112\n-8131 -9159\n404 30863\n-14509 18065\n14812 -12810\n-6274 -26757\n23783 18028\n-6668 529\n9986 -20515\n-16405 -21676\n13908 3330\n-18484 604\n21595 -20964\n-24550 -15996\n29594 24979\n-12256 31676\n13707 -10984\n-12708 -15209\n3291 12851\n-851 25071\n20438 -10716\n-11714 -13468\n20257 32331\n-4303 25766\n17575 -22790\n-27126 -19312\n11989 24345\n-10527 15369\n27658 -11963\n-1978 -3573\n10825 24622\n-5646 17713\n32562 -3559\n-13006 -31601\n15408 10223\n-8430 28332\n21235 -5769\n-12212 -22746\n24097 28693\n-10514 29949\n8776 -17972\n-31283 -21854\n6936 20013\n-19028 28441\n26831 -26768\n-29653 -32475\n12788 19481\n-5008 10987\n19784 -22486\n-8809 -1639\n18426 20620\n-19750 22993\n7194 -3416\n-32386 -21706\n11088 22418\n-20348 3356\n20942 -502\n-20981 -28414\n9603 31494\n-27002 660\n13713 -24234\n-9823 -10934\n24066 19226\n-22285 16626\n950 -31997\n-17308 -13012\n19616 30419\n-18341 1124\n10291 -14224\n-15953 -23537\n15382 17545\n-29878 31501\n2335 -2708\n-5732 -18649\n23679 23147\n-18490 20867\n24890 -1106\n-25983 -24332\n26075 22266\n-4910 3919\n10853 -1444\n-7568 -2879\n19084 14729\n-21520 17264\n6181 -21114\n-22348 -21977\n31196 6852\n-3432 216\n8741 -29270\n-12455 -18294\n12917 13606\n-11324 10989\n7857 -24784\n-15197 -7527\n25831 15744\n-32410 4617\n27964 -3603\n-31597 -20016\n9765 2937\n-14866 24570\n12506 -12126\n-30104 -24073\n12808 4617\n-4665 21635\n6854 -24452\n-19943 -861\n32203 10237\n-24359 20954\n17630 -3948\n-30242 -6990\n23181 8310\n-21497 14632\n7202 -18065\n-27738 -28207\n10195 13162\n-17745 5900\n23353 -13188\n-2400 -17417\n5636 13857\n-32721 8216\n5356 -3173\n-24395 -18711\n30955 9145\n-11940 32082\n20137 -16238\n-10230 -16970\n10808 30114\n-20981 26805\n11009 -29544\n-17279 -4549\n31742 19491\n-17781 6573\n9258 -22579\n-18122 -2914\n15158 26324\n-22233 414\n22142 -18242\n-6652 -6443\n16955 27938\n-27738 22622\n23290 -13341\n-9984 -12258\n6989 1742\n-15156 30902\n12736 -27870\n-6149 -4985\n13070 17517\n-3623 3302\n15509 -10932\n-9726 -27547\n6920 22505\n-7161 2846\n18788 -29283\n-30497 -10273\n23589 7423\n-28146 517\n11449 -17602\n-3433 -13726\n22837 29120\n-22110 13622\n27719 -7996\n-17684 -468\n16747 24336\n-30479 2494\n31074 -19536\n-25381 -20540\n4833 4394\n-22488 17055\n31622 -1040\n-13283 -24194\n11535 8218\n-3347 3408\n10958 -23717\n-14680 -22790\n29528 10305\n-28188 24122\n14974 -2762\n-27091 -8029\n32638 13012\n-23508 7485\n21370 -29260\n-32359 -22733\n25640 28253\n-5919 8745\n7884 -1681\n-20842 -22741\n32611 14137\n-10086 325\n24609 -31502\n-19702 -21411\n23838 28696\n-20758 10188\n8269 -17359\n-26987 -25244\n10669 10881\n-7198 18539\n26563 -26099\n-15339 -22743\n13383 8011\n-27253 6084\n2334 -6189\n-5341 -26530\n392 30501\n-7826 22767\n31643 -13125\n-11883 -4860\n28144 25359\n-20979 14835\n17820 -29333\n-27396 -30233\n24673 1246\n-7063 81\n30502 -1164\n-9178 -22498\n3237 10172\n-26243 1401\n13412 -27438\n-1892 -3954\n17894 18598\n-22592 851\n20514 -11409\n-2014 -14489\n24884 28396\n-18267 12472\n30291 -21346\n-22980 -14429\n10243 21684\n-16869 11766\n26251 -16222\n-603 -4468\n23210 24440\n-9201 16719\n16006 -17882\n-30249 -2251\n17125 26755\n-15896 25467\n21663 -8764\n-18295 -6659\n22100 21880\n-3064 7201\n8794 -13951\n-25814 -15343\n26873 203\n-31408 11874\n16091 -7090\n-26519 -29975\n28606 29254\n-16230 5455\n26988 -634\n-29265 -16440\n21229 26502\n-15809 20590\n9211 -25484\n-8032 -16577\n20662 11387\n-32367 57\n23961 -52\n-32608 -18263\n28589 17387\n-13729 21150\n11516 -13008\n-10166 -9810\n329 24559\n-22922 16256\n6910 -3925\n-20743 -22078\n13414 10869\n-18660 5428\n32028 -21450\n-1470 -27227\n14276 23997\n-363 21765\n24568 -10440\n-24715 -21790\n27781 11484\n-26207 24497\n472 -12800\n-23263 -31917\n10419 31804\n-5894 29162\n23845 -28341\n-11121 -8039\n2488 27161\n-21800 28886\n17132 -27197\n-13500 -2138\n22244 9989\n-31634 1679\n1376 -15493\n-894 -5067\n29675 7781\n-1171 3747\n12886 -23178\n-23866 -945\n25444 28402\n-8322 21141\n24007 -14048\n-24247 -9274\n22859 13114\n-23606 5723\n31826 -12847\n-10879 -16453\n23936 6684\n-22412 29918\n19895 -23473\n-10082 -26086\n32326 20304\n-3045 3197\n22365 -437\n-20208 -31461\n4805 13276\n-8869 31626\n28365 -4639\n-3074 -8511\n3464 26272\n-23477 11467\n21557 -19174\n-10546 -27556\n24319 7371\n-1026 29690\n23783 -14997\n-20318 -25079\n26622 19043\n-31740 31302\n11735 -4299\n-5161 -21970\n31804 6849\n-19992 31440\n1568 -16058\n-6266 -1791\n29909 14610\n-21838 20270\n6527 -26539\n-14075 -6144\n21193 26840\n-29596 19436\n31446 -8569\n-17051 -21127\n29051 28263\n-22657 27910\n5803 -1298\n-21772 -15358\n18738 18280\n-22403 21103\n15782 -3833\n-11590 -31233\n16795 13145\n-20137 3213\n16151 -20422\n-7682 -1759\n5190 3083\n-7425 14523\n4974 -27812\n-3136 -13853\n16164 28195\n-10523 28101\n5825 -28627\n-32194 -2291\n1808 12698\n-30604 30832\n21321 -26916\n-14223 -21197\n2627 12861\n-20845 26607\n23525 -24191\n-27760 -11724\n25310 26670\n-31450 27247\n13973 -3168\n-31606 -16194\n22883 20577\n-31091 31116\n22273 -30293\n-15986 -19513\n10044 9503\n-27358 22234\n10480 -18306\n-26748 -7660\n18739 26246\n-27459 22621\n10961 -798\n-29805 -13900\n25081 13063\n-3022 1297\n6197 -1267\n-9061 -21629\n11423 28647\n-22833 354\n9299 -20962\n-2885 -18774\n32544 16831\n-29215 19381\n17539 -14428\n-13622 -7141\n23765 21756\n-11730 18654\n2755 -16618\n-19488 -32233\n6399 30304\n-21126 8359\n4149 -28326\n-23348 -4182\n2369 31614\n-23548 27216\n28575 -20416\n-7267 -30676\n18466 31554\n-20984 10505\n20457 -24058\n-22244 -16704\n1936 22119\n-11971 6266\n32419 -12076\n-19890 -5674\n29528 4095\n-21929 18748\n6781 -30145\n-15884 -16725\n9135 30190\n-6524 3421\n19917 -20792\n-28147 -827\n8108 6511\n-21264 13535\n6412 -28324\n-19119 -13958\n28619 6030\n-1981 6713\n11609 -31021\n-5963 -17559\n16492 12716\n-8160 32469\n22261 -23180\n-11028 -27139\n5202 13823\n-11610 14225\n30661 -19346\n-16414 -19217\n1829 14351\n-16912 10558\n4563 -13474\n-20927 -22590\n8176 6458\n-22121 5412\n25037 -24114\n-2833 -697\n13219 24881\n-16339 13692\n2437 -29007\n-17781 -16615\n1000 1000 22418\n26233 14142\n-10740 19055\n18454 -5899\n-25312 -25589\n18154 28575\n-13359 20518\n3643 -28987\n-14064 -1638\n12339 15470\n-17474 2792\n12678 -20271\n-32279 -25702\n30805 18473\n-21816 6677\n8785 -29782\n-12426 -19928\n1571 23247\n-6543 18099\n25612 -15075\n-4655 -32643\n2504 12390\n-30649 3565\n28089 -29259\n-5925 -30101\n1345 24438\n-22172 15248\n23152 -19915\n-6202 -19995\n9439 20363\n-14866 5261\n27099 -25312\n-22386 -15242\n26566 16310\n-12137 4474\n20667 -14285\n-21639 -1849\n6257 23820\n-2532 10512\n22882 -25113\n-29027 -9189\n5420 26918\n-28472 10926\n21559 -13582\n-26280 -20524\n26776 28832\n-13328 10453\n22581 -58\n-2089 -18706\n12842 4507\n-2186 29610\n21356 -24050\n-22895 -3198\n24236 21050\n-29880 9080\n27519 -4554\n-29237 -11198\n12475 1832\n-9504 13099\n11812 -30495\n-13035 -11775\n6472 18961\n-1853 10965\n4519 -32654\n-18743 -726\n24599 36\n-13819 23085\n17767 -16761\n-1135 -1210\n7235 28824\n-13886 8971\n21079 -5769\n-31264 -2952\n31928 27428\n-860 21485\n2943 -18982\n-31371 -3838\n24759 32389\n-27550 4726\n20089 -22529\n-21794 -22848\n16469 16124\n-15555 21993\n5108 -14987\n-27919 -18774\n25852 7373\n-16509 29106\n20532 -18812\n-7598 -9643\n29161 19137\n-2290 12254\n9104 -10317\n-28430 -32399\n15532 13477\n-3389 31646\n23282 -17597\n-6772 -8374\n30123 1481\n-5610 7112\n16475 -25936\n-24280 -6072\n8352 16258\n-31101 32086\n15196 -18379\n-9574 -16527\n23830 24488\n-10476 3557\n16798 -20410\n-30206 -27676\n32496 5913\n-3105 9782\n5979 -17642\n-15284 -4514\n30435 4148\n-11897 1201\n24547 -8687\n-22865 -4425\n2807 17758\n-15175 22493\n32280 -29343\n-3536 -1692\n24329 26497\n-19025 22761\n17651 -17045\n-10466 -11020\n19788 21640\n-31826 30247\n30716 -7087\n-3947 -18539\n3779 7652\n-26487 3467\n7125 -5265\n-4099 -15217\n13256 7946\n-21474 14129\n5808 -28448\n-1909 -1595\n27785 9203\n-18474 8148\n8405 -18183\n-21827 -29383\n8581 8090\n-26073 29527\n1309 -20533\n-8224 -17785\n23572 29314\n-5612 22336\n12665 -9565\n-27252 -32665\n32477 16685\n-1366 30008\n5996 -9845\n-30428 -12754\n20061 23206\n-29054 5517\n23693 -26424\n-31912 -24245\n18790 12024\n-17597 18864\n23302 -11684\n-11355 -27956\n20893 21941\n-737 9911\n29207 -124\n-1070 -11047\n9212 9328\n-1452 4060\n9876 -17863\n-29838 -24523\n8526 21827\n-2389 4348\n4962 -29007\n-21657 -28222\n26294 15690\n-2310 18713\n10751 -17187\n-9893 -2052\n13864 4902\n-27484 25816\n17143 -5653\n-11449 -28549\n12014 17787\n-32491 10499\n32367 -15933\n-19729 -19084\n22052 24946\n-18104 3337\n29854 -30580\n-18078 -1226\n28476 2359\n-5820 25977\n13903 -25562\n-13700 -16977\n9339 31356\n-104 7819\n7521 -6737\n-26523 -25113\n32634 9461\n-3867 1687\n27974 -17664\n-239 -4223\n12711 20698\n-21677 10396\n17287 -20433\n-28736 -27073\n11457 21864\n-17896 14010\n22591 -9970\n-13186 -11395\n2912 24416\n-26378 1208\n3740 -1368\n-27742 -31821\n18794 18311\n-18501 4735\n21857 -21303\n-17583 -13322\n19614 31012\n-21055 9885\n22375 -5259\n-8966 -18571\n15629 26757\n-25234 30915\n31767 -26515\n-12071 -15106\n11676 6522\n-14412 27719\n14321 -4945\n-9865 -7048\n5253 13784\n-12400 23203\n11528 -9739\n-218 -7063\n5075 13303\n-21107 28148\n7044 -9165\n-25721 -12432\n4584 3381\n-11456 2940\n8735 -17636\n-27386 -17974\n8698 1137\n-309 20000\n20136 -17508\n-13733 -305\n15506 31889\n-16804 4331\n32387 -16036\n-20983 -4493\n18444 24316\n-23635 2441\n3879 -8125\n-28191 -5432\n28954 4640\n-22652 29389\n24222 -8718\n-23939 -2696\n21313 32750\n-17101 18220\n7177 -23739\n-27961 -21170\n29018 11353\n-27113 2879\n26649 -25129\n-2190 -17492\n32274 23515\n-27366 10308\n17815 -28291\n-11651 -19948\n29802 18927\n-3533 22174\n23006 -9784\n-12618 -10334\n56 28568\n-29213 6225\n32091 -25723\n-21709 -6514\n13989 23001\n-2888 17287\n7188 -6594\n-10536 -18004\n7853 4155\n-27956 7438\n26142 -14920\n-17450 -5650\n2466 2890\n-26812 727\n20517 -15499\n-17624 -9249\n15273 15128\n-30764 9848\n25576 -10191\n-10218 -17113\n25658 7608\n-31688 22443\n24762 -12953\n-27724 -3572\n26276 26052\n-17990 24269\n11266 -28980\n-1950 -3348\n29320 12504\n-31055 26464\n4540 -5167\n-10932 -26170\n27738 19989\n-12803 31370\n21750 -14045\n-22039 -8271\n9699 5279\n-1394 2451\n4180 -15827\n-16002 -30111\n26305 18975\n-19747 2155\n26252 -17774\n-358 -13912\n17637 6466\n-17296 6177\n747 -8267\n-10598 -15119\n19731 6200\n-28840 16749\n27086 -26061\n-732 -26428\n31590 24374\n-26188 16168\n6441 -4251\n-16466 -15290\n970 12020\n-19667 22734\n30980 -11551\n-28426 -31048\n27264 10031\n-16263 19715\n7161 -6152\n-15223 -21258\n27806 3369\n-31013 19467\n20408 -19656\n-1473 -12552\n14476 8740\n-20577 592\n32131 -17431\n-17989 -686\n30344 2538\n-1119 13024\n23218 -25198\n-16914 -8522\n8483 16712\n-22843 25068\n26928 -30349\n-3950 -17042\n11714 9359\n-1154 3914\n18427 -18422\n-27215 -31515\n1309 1554\n-27062 244\n21416 -13679\n-22754 -20707\n19395 21674\n-9934 7559\n5853 -25476\n-8199 -24008\n31380 21045\n-28852 22213\n2774 -31491\n-2003 -526\n18246 23058\n-16325 9236\n10209 -30590\n-28685 -9950\n23777 14247\n-19541 3325\n17889 -1484\n-13489 -4289\n25667 3292\n-23336 17325\n19663 -29320\n-25201 -16937\n23708 18589\n-23034 20343\n13620 -10385\n-15151 -28136\n17395 11611\n-19448 18256\n22704 -16264\n-2691 -31159\n4000 26508\n-1605 7249\n4726 -6742\n-19003 -4273\n29903 13351\n-15478 29753\n12238 -5539\n-5846 -17877\n259 5929\n-23830 5097\n12434 -18016\n-29704 -18055\n657 8722\n-15906 23014\n22449 -18494\n-24890 -7439\n16673 19048\n-6542 18650\n2991 -7220\n-15879 -793\n1585 20531\n-22975 8723\n1827 -5885\n-32448 -17460\n30097 13440\n-13839 4098\n22840 -24471\n-12521 -12371\n13800 16351\n-8012 24765\n13868 -32198\n-20409 -7759\n26925 6372\n-31801 20606\n6100 -30863\n-26782 -32354\n29999 27305\n-13835 25635\n11798 -1213\n-4022 -31918\n7182 6986\n-5357 21420\n8045 -17247\n-9303 -13236\n25791 4712\n-27773 1215\n6505 -4168\n-25992 -28381\n21388 4008\n-6220 5415\n12588 -24718\n-22150 -31989\n29330 4401\n-18530 30033\n5102 -12556\n-29505 -4779\n10817 18993\n-7608 4814\n1914 -1248\n-13532 -15634\n27103 10584\n-5821 4819\n15023 -29677\n-26160 -25635\n8198 28507\n-19410 7356\n26112 -18778\n-18505 -23864\n801 21874\n-31693 13445\n15349 -12817\n-1768 -3475\n10739 17371\n-26745 9551\n10663 -31553\n-31999 -7381\n29713 6229\n-788 31713\n26440 -24796\n-18744 -14215\n16994 31909\n-26832 4389\n22680 -27674\n-12910 -24981\n32678 19733\n-12115 9383\n15729 -25077\n-23603 -22734\n30956 3824\n-312 1817\n12860 -16811\n-19273 -1893\n1563 30471\n-2699 21714\n122 -21310\n-14888 -1651\n618 48\n-13648 16458\n16188 -17911\n-15742 -12403\n5351 4545\n-13821 27807\n17323 -24287\n-14506 -17348\n18676 13849\n-26619 22547\n24961 -14149\n-8768 -5419\n30405 24856\n-31273 22156\n31630 -2875\n-6281 -21070\n31716 18081\n-27481 7187\n25652 -6169\n-17920 -21562\n17326 16671\n-22226 22357\n3563 -2808\n-5590 -477\n8147 18430\n-4300 23589\n3006 -32568\n-14446 -17037\n28889 30253\n-4855 24056\n25036 -3322\n-30690 -128\n7833 8355\n-14580 14952\n9671 -26535\n-23676 -15185\n24769 31959\n-19674 21425\n28537 -3175\n-8510 -10882\n22352 22342\n-25522 31543\n6458 -171\n-30811 -28660\n29469 23025\n-2555 27646\n20603 -8356\n-8123 -23153\n11857 25308\n-16424 21809\n30271 -32201\n-17787 -14370\n5352 27280\n-18205 29852\n20380 -19797\n-15466 -14617\n7477 31385\n-15542 16689\n1598 -26311\n-141 -25033\n20571 13321\n-2111 9607\n30948 -21088\n-2972 -3465\n17108 26100\n-5885 19030\n23522 -26537\n-31108 -276\n23789 13298\n-26788 28924\n10653 -31722\n-31971 -3340\n29512 19617\n-27614 24059\n25362 -8371\n-9102 -16498\n12121 12320\n-10955 21369\n8272 -29271\n-27406 -11056\n18409 1684\n-18299 7103\n28921 -30316\n-9503 -12431\n2455 1703\n-18550 9147\n3268 -2637\n-11312 -27073\n12114 27651\n-13620 9598\n21502 -24984\n-26598 -6233\n2784 32220\n-677 25278\n8197 -5297\n-8600 -10446\n32090 9572\n-20395 28500\n25547 -16189\n-10452 -17659\n16301 5204\n-29083 3007\n7257 -11943\n-18393 -30370\n31514 31594\n-20672 4000\n4426 -8350\n-2075 -23012\n12727 20709\n-5335 25660\n25932 -4501\n-18115 -24523\n30445 9995\n-8596 3838\n30370 -6978\n-6444 -8385\n30712 4772\n-25372 19442\n4004 -25375\n-359 -16149\n21610 8572\n-27273 14410\n26429 -6380\n-29367 -22909\n18088 24804\n-23145 3293\n29036 -1323\n-9750 -3471\n7275 29746\n-9022 26787\n32708 -10147\n-16046 -2631\n32576 15164\n-4096 11066\n12781 -26078\n-15969 -12932\n3336 2273\n-8855 24421\n13856 -18859\n-19010 -20363\n16505 27009\n-16481 13703\n22959 -20380\n-16153 -21378\n10651 31104\n-11954 3628\n27002 -17801\n-5603 -11254\n30284 19399\n-24399 5249\n25211 -14604\n-6223 -9302\n19133 24642\n-3314 26839\n29243 -30210\n-25922 -22646\n27123 10851\n-10185 23332\n18267 -5392\n-17748 -14092\n11847 10142\n-4599 13698\n12812 -6684\n-20305 -5174\n20966 1515\n-11281 5806\n5271 -8912\n-23737 -19443\n1873 23111\n-12707 23690\n9174 -9498\n-20033 -29861\n25054 26419\n-26024 7835\n30649 -15790\n-8272 -8598\n3637 29491\n-3861 14475\n27586 -3715\n-20354 -13680\n23252 12112\n-17743 25769\n20361 -11602\n-3368 -17603\n4236 11671\n-3249 26212\n26425 -8731\n-17350 -2178\n6914 26520\n-17159 17620\n15377 -30111\n-27540 -24710\n302 21736\n-23573 5425\n15588 -20455\n-12030 -26122\n11743 4511\n-28177 21850\n11929 -9915\n-24356 -3630\n2102 5339\n-3620 22095\n27820 -31788\n-14426 -23668\n23590 30523\n-31981 14007\n31147 -11531\n-30376 -9542\n4858 18789\n-8958 27995\n24505 -20335\n-14923 -24686\n15311 31360\n-23901 25513\n24847 -8499\n-15411 -2972\n25622 20154\n-6660 8242\n30838 -1653\n-21124 -7395\n16404 26051\n-17506 300\n10702 -6169\n-17685 -1340\n9057 20817\n-472 1777\n8842 -16964\n-29171 -17154\n18796 15258\n-15933 11902\n10802 -29409\n-16863 -1141\n28149 7645\n-2138 23540\n25312 -22559\n-27852 -23095\n13714 1753\n-15983 21787\n22979 -12017\n-3682 -31186\n26155 29012\n-2732 19418\n26527 -8589\n-2686 -4144\n28542 10902\n-12216 30913\n24907 -13806\n-16815 -9249\n17307 18667\n-9517 17791\n6194 -19538\n-5562 -2265\n32617 12837\n-1050 1900\n10963 -11708\n-15895 -24687\n25375 12823\n-17281 18944\n9536 -10867\n-27762 -11871\n6860 8475\n-17622 10586\n29090 -18561\n-16683 -31240\n22224 6797\n-12422 15546\n6324 -565\n-4055 -303\n13409 17230\n-8813 4359\n21059 -5282\n-29629 -31354\n30215 8258\n-9823 13130\n26037 -24094\n-13401 -26614\n3103 31954\n-1184 19249\n23167 -19651\n-31196 -31122\n27996 24939\n-24172 17805\n30893 -23793\n-20906 -32674\n16193 6653\n-6768 3796\n6494 -10186\n-731 -27997\n20137 19581\n-8526 23968\n18245 -437\n-12986 -27487\n22591 8035\n-27165 3374\n12074 -10460\n-22857 -31272\n8454 28716\n-22247 2016\n24679 -941\n-1467 -9371\n24275 6617\n-24874 16828\n23915 -28509\n-29433 -17023\n28877 19310\n-5719 17130\n31802 -7776\n-27678 -19201\n26612 28277\n-25686 16954\n5866 -1779\n-251 -14128\n24471 7545\n-13823 20379\n3112 -24978\n-2707 -29824\n9693 10891\n-24483 3749\n4017 -14210\n-32671 -26440\n13373 13760\n-23425 272\n19162 -329\n-6412 -32068\n30726 21424\n-22097 24891\n19721 -21808\n-18040 -20500\n27352 17401\n-3005 3239\n19513 -9672\n-29369 -22458\n31528 14266\n-29411 32377\n13689 -4194\n-6230 -11552\n17600 10265\n-15061 23035\n3438 -15253\n-9740 -23696\n6460 15550\n-5912 1307\n8397 -17852\n-13130 -18490\n22670 16981\n-23592 21226\n1250 -17270\n-1205 -6834\n6524 12559\n-27635 15902\n26635 -20004\n-24741 -18799\n8733 17186\n-29273 13201\n12861 -8815\n-13222 -10061\n12383 6980\n-29107 27840\n30079 -20159\n-1272 -1804\n4740 31540\n-8009 23117\n11882 -29125\n-15120 -28111\n4000 2610\n-4058 7806\n21679 -2290\n-12309 -21917\n8221 11138\n-13335 6075\n15249 -20221\n-5731 -32739\n30263 25837\n-9512 31508\n16998 -10848\n-11531 -22512\n22145 21823\n-16678 32440\n21787 -11228\n-17489 -25976\n16478 15050\n-6048 5247\n15533 -7409\n-4653 -20242\n26248 2529\n-9751 13410\n16304 -7783\n-22218 -27835\n30604 4958\n-25729 14077\n4812 -22216\n-20746 -27216\n13900 15134\n-8649 16404\n6459 -12516\n-768 -31255\n25212 15999\n-12366 14603\n30028 -10827\n-18037 -5943\n28966 2793\n-25184 23404\n26851 -12758\n-12644 -22587\n5414 9282\n-22214 19301\n1527 -5663\n-19069 -20883\n6062 7032\n-5434 16967\n12051 -1028\n-3494 -2067\n195 5371\n-31466 18697\n26582 -5416\n-16501 -29554\n4030 24384\n-30457 707\n30066 -28274\n-5815 -4300\n973 6463\n-5885 1843\n20272 -28300\n-9965 -1313\n13423 26869\n-25471 19771\n24299 -27749\n-11978 -20436\n31227 16867\n-3199 9568\n4497 -1455\n-10166 -3372\n26138 15246\n-26093 17485\n14245 -32098\n-11085 -18647\n19528 30717\n-13360 23887\n13759 -10807\n-10209 -24674\n6743 6718\n-18594 19670\n1291 -29998\n-25844 -30146\n236 19682\n-28178 21242\n966 -26633\n-22463 -29134\n27648 22652\n-9537 24052\n5572 -19407\n-18350 -5826\n19296 18981\n-12646 25760\n5356 -22345\n-17121 -8894\n11053 10747\n-29867 20738\n4538 -28040\n-25260 -581\n7261 16798\n-7341 31422\n25532 -27741\n-24600 -4798\n27961 29361\n-7935 12702\n2582 -2784\n-30816 -29942\n12765 7519\n-1448 22544\n23551 -18410\n-8565 -28573\n7355 5843\n-2976 3494\n2369 -26779\n-3707 -25029\n10008 12223\n-2391 27028\n27325 -1748\n-1098 -17766\n2445 19158\n-12591 17717\n8932 -12222\n-32237 -16860\n1159 850\n-7165 5766\n3647 -4673\n-8486 -20071\n30919 25455\n-9611 23210\n1000 -15758\n-744 -25770\n20451 10990\n-6425 4196\n26127 -28566\n-15324 -17197\n13507 9619\n-11735 17056\n630 -29584\n-19677 -16347\n7205 4519\n-21357 8939\n17142 -4215\n-21371 -10884\n7450 5751\n-20083 13301\n11767 -1929\n-3708 -16220\n6535 19155\n-9466 1046\n14075 -8906\n-12886 -10618\n13989 19343\n-23297 30663\n24340 -21375\n-3510 -5466\n9601 25094\n-32512 9253\n9578 -24755\n-32253 -21340\n15228 14994\n-1633 14705\n18358 -9654\n-13245 -2627\n23244 11029\n-31234 32147\n21193 -24729\n-18241 -31159\n11001 2419\n-29364 22162\n774 -4275\n-7426 -19651\n8545 4629\n-26047 25885\n29923 -25886\n-6706 -31831\n22965 24168\n-16732 12037\n9581 -15163\n-10549 -16839\n15993 27484\n-22841 22977\n17089 -11562\n-3619 -6475\n392 12262\n-8953 29929\n19603 -12371\n-2888 -21629\n25742 17279\n-17073 21691\n1195 -17376\n-21924 -15582\n20876 5282\n-26476 31897\n12131 -12096\n-22892 -18001\n17240 12114\n-30632 6537\n9259 -20646\n-20103 -20894\n32282 5009\n-3543 3252\n11781 -31623\n-7441 -32496\n6096 7146\n-17630 1512\n15369 -26400\n-4571 -4183\n20682 29672\n-21657 11798\n25057 -11502\n-25321 -23623\n15407 7837\n-32342 25043\n10318 -22324\n-1010 -20504\n14455 3356\n-18774 31707\n11682 -32633\n-19172 -644\n14318 17663\n-3919 12170\n5700 -32006\n-25694 -22060\n22839 5857\n-22764 29538\n19759 -9068\n-6196 -11283\n20423 25829\n-2635 31624\n5235 -4349\n-24046 -9761\n7270 31022\n-24446 17478\n26035 -3406\n-16713 -31137\n5554 27749\n-14603 11402\n8869 -30652\n-5813 -20931\n16539 7222\n-14444 8294\n5525 -17891\n-32725 -16923\n30952 12755\n-11408 21390\n16866 -4648\n-16386 -18721\n27056 14447\n-20056 3038\n1151 -14897\n-24776 -25263\n21986 17348\n-19738 31697\n1140 -3431\n-9832 -10886\n12478 9871\n-11042 11530\n29531 -2939\n-21588 -3785\n1625 14606\n-27180 31439\n7651 -13022\n-16823 -4736\n13341 12169\n-2027 7305\n19536 -24392\n-15850 -8214\n28999 198\n-19077 16454\n29433 -14386\n-17663 -27611\n10088 23698\n-23828 13623\n13000 -12123\n-1082 -26244\n6884 12863\n-15399 9778\n10686 -3911\n-11923 -16294\n25461 18209\n-29247 25648\n4972 -6587\n-8502 -30782\n13481 23825\n-9299 16592\n14715 -13891\n-22531 -1324\n30304 26858\n-28236 30931\n13349 -12460\n-12815 -435\n11599 22798\n-3978 11934\n31418 -1930\n-1568 -29179\n13184 27618\n-26461 29884\n17436 -19123\n-1845 -5520\n16592 5709\n-16780 26713\n14148 -2498\n-30972 -18912\n17263 31293\n-29394 23495\n27578 -21141\n-13401 -31936\n2147 27938\n-17756 4349\n14880 -16336\n-31718 -12008\n13318 3697\n-13644 1043\n23720 -5976\n-8301 -1650\n2691 28195\n-32057 17864\n24474 -30936\n-30064 -29023\n2141 17204\n-29356 26108\n25039 -7231\n-5538 -22546\n19176 12836\n-12965 28214\n9528 -8256\n-30572 -24531\n18638 9081\n-7700 27679\n28504 -26833\n-20840 -15693\n23180 10810\n-9825 3077\n14790 -3501\n-20201 -5905\n4850 31350\n-27108 17241\n12972 -22738\n-5233 -30737\n26534 28603\n-8301 2865\n3402 -21763\n-5178 -21029\n10657 9120\n-22462 10950\n8820 -27719\n-12974 -4234\n19889 5180\n-12 4599\n24847 -5736\n-15086 -14942\n1269 23212\n-18562 17349\n3737 -6005\n-9039 -9509\n9573 29072\n-19389 20694\n22430 -20032\n-8664 -14151\n25159 2958\n-3153 25074\n12355 -4833\n-4293 -14991\n21691 31182\n-16706 21128\n1215 -9521\n-8968 -16046\n21552 8829\n-29324 23338\n14813 -11088\n-26819 -2998\n7916 1867\n-26012 19469\n32124 -16416\n-9167 -9375\n21128 23532\n-22997 22410\n26382 -4552\n-27703 -22982\n13425 11418\n-5388 27807\n26653 -4146\n-9405 -27497\n19049 5266\n-16396 8559\n3265 -11148\n-16213 -15404\n17156 1171\n-4883 11710\n3115 -8907\n-20901 -5015\n11820 6498\n-21075 30070\n10525 -25123\n-31116 -28821\n1437 584\n-6769 8996\n25200 -29072\n-4504 -27639\n1385 30610\n-32009 21116\n29581 -29521\n-13709 -10991\n21621 16656\n-27945 19153\n9460 -12904\n-5861 -24982\n31994 19607\n-31697 18846\n27832 -16667\n-8522 -25958\n13573 21632\n-25722 23808\n24321 -10102\n-28446 -20416\n30456 5670\n-27020 20025\n28297 -8646\n-3572 -12391\n27143 6251\n-230 7214\n32031 -28447\n-4884 -20483\n6843 564\n-20570 1514\n15399 -12248\n-32763 -672\n882 233\n-31278 9497\n23832 -21514\n-30425 -2605\n25821 16118\n-14748 6286\n4604 -6676\n-16145 -2301\n28289 27212\n-20306 16061\n24052 -7450\n-6588 -1096\n14135 19168\n-15859 66\n13745 -29569\n-26150 -30379\n1453 26923\n-22165 10840\n28668 -23924\n-5712 -29348\n26850 17577\n-5441 22883\n1584 -866\n-29548 -21783\n8365 6746\n-19830 29543\n9402 -17534\n-12900 -1996\n22070 15172\n-9894 12942\n2976 -5438\n-22612 -21487\n9339 29423\n-26807 16293\n16119 -28125\n-28427 -17550\n28877 32231\n-6275 23712\n1899 -18649\n-2446 -6431\n4945 4158\n-25689 7954\n17083 -12662\n-6293 -18423\n20352 27656\n-24698 15030\n1082 -25145\n-3852 -4308\n7335 2013\n-5021 23529\n1359 -29549\n-22163 -8020\n15975 17754\n-21355 4653\n26102 -6561\n-5118 -15739\n11574 14240\n-28931 19111\n15677 -29735\n-15318 -5681\n20188 31187\n-13688 23202\n31176 -27543\n-30422 -1986\n32503 5532\n-11854 6666\n4685 -8267\n-22127 -1628\n26488 31144\n-18944 3570\n1561 -26849\n-22852 -3733\n10532 38\n-17533 8975\n11657 -24764\n-16303 -10210\n21524 1357\n-25510 30778\n23185 -1667\n-12346 -30497\n12341 3541\n-978 14578\n18745 -27296\n-11303 -24848\n21960 32121\n-29771 2007\n24603 -28098\n-21481 -15571\n5603 23931\n-9166 31024\n16615 -3931\n-31656 -5746\n13038 13087\n-7438 7527\n10463 -19491\n-4033 -345\n26919 26159\n-21298 7047\n8539 -3219\n-18756 -31447\n18206 14198\n-15954 23493\n70 -9067\n-12916 -23711\n22074 18245\n-18430 16884\n14494 -23597\n-31562 -24394\n4915 11249\n-1976 30735\n31480 -6559\n-7666 -11474\n13974 6227\n-20341 18611\n9722 -1101\n-21325 -792\n19780 4678\n-2079 2466\n1760 -18692\n-22381 -26208\n8434 14637\n-24086 5698\n27128 -26457\n-32284 -25552\n28843 7274\n-15786 23067\n31525 -4128\n-5974 -25588\n31049 8680\n-8099 27485\n30304 -5109\n-9162 -3389\n19968 31890\n-9658 13656\n10290 -25015\n-22877 -13949\n211 13018\n-1821 13057\n15931 -5383\n-30631 -26989\n6941 13619\n-19694 14708\n26542 -5326\n-27763 -29992\n26122 1175\n-24261 21101\n17875 -16820\n-18499 -4269\n795 26882\n-24361 9933\n11396 -13482\n-715 -3424\n21669 14325\n-22555 31003\n12976 -3425\n-3953 -6537\n13906 10996\n-14220 12288\n4827 -20688\n-16852 -4820\n1439 17928\n-7137 28874\n23452 -22450\n-577 -26832\n31325 20029\n-28790 18923\n28702 -19717\n-21055 -3952\n20272 20517\n-23065 28023\n22687 -15500\n-8452 -397\n14867 13908\n-29578 31657\n25332 -12623\n-28670 -21346\n13521 28642\n-23042 23902\n4867 -25622\n-18251 -21774\n5517 9964\n-2473 11928\n25415 -31217\n-31297 -17685\n30524 1811\n-2589 14589\n21840 -21171\n-15336 -4831\n29222 5115\n-27378 32342\n21056 -26482\n-891 -12600\n9320 4045\n-4141 21264\n23375 -14601\n-16618 -30927\n2677 29110\n-20168 2238\n2632 -20118\n-24922 -6839\n10128 27750\n-22834 10389\n25098 -17404\n-9123 -8937\n32339 1170\n-31692 15855\n28424 -26722\n-15569 -2752\n22828 14195\n-10604 12488\n14282 -27826\n-19621 -23419\n25307 12612\n-22493 12356\n32105 -8731\n-8721 -24766\n3829 5063\n-11357 11559\n19479 -18575\n-20415 -27410\n21092 19649\n-30750 25691\n23444 -27974\n-4235 -8800\n11237 31865\n-1222 31086\n16314 -22842\n-31748 -26746\n31880 27709\n-12527 8466\n26866 -4008\n-2799 -19347\n12339 5342\n-23720 23451\n29885 -23701\n-27588 -2241\n13855 13615\n-9714 16260\n20012 -29511\n-10030 -7810\n18778 30858\n-30020 21483\n7784 -7368\n-5263 -28468\n2372 11594\n-23047 31504\n3371 -30311\n-7803 -29596\n25106 2898\n-14106 27865\n20805 -16438\n-22328 -32096\n17742 2693\n-16207 16721\n4376 -15245\n-23876 -2445\n12884 18764\n-16876 2853\n4892 -6533\n-4047 -8978\n3798 787\n-18220 550\n15964 -31102\n-4925 -21826\n20314 5836\n-31931 15818\n27383 -30617\n-9637 -11862\n28599 7530\n-29246 32682\n671 -19263\n-17237 -20969\n15259 4199\n-9672 3589\n28958 -30104\n-6987 -7034\n26376 63\n-24678 7740\n25804 -21\n-21437 -20717\n30418 23283\n-25236 20308\n24346 -19175\n-7826 -25867\n31011 17031\n-24773 13431\n5387 -27525\n-7655 -18941\n3575 29572\n-20448 28531\n8117 -6954\n-6283 -21461\n16288 15223\n-445 23354\n31940 -13653\n-32388 -11014\n11075 32624\n-4524 18016\n24312 -17991\n-15752 -20199\n31065 21124\n-8431 15776\n20130 -10632\n-25988 -10291\n9776 7243\n-25402 26200\n6698 -14435\n-7448 -11148\n6759 20322\n-31546 26888\n5772 -2149\n-26137 -3059\n4981 12266\n-9996 27607\n12247 -14818\n-12814 -32082\n23587 10760\n-15553 7438\n18861 -22128\n-18099 -1778\n21773 14435\n-30432 19866\n28613 -16234\n-29305 -26117\n19749 23209\n-4324 7054\n22124 -11374\n-4356 -30\n10800 7178\n-13242 11423\n11008 -14816\n-24492 -26036\n24903 10683\n-12869 30887\n13427 -1893\n-8701 -25763\n16215 31093\n-5594 9251\n17358 -26216\n-5686 -10922\n418 32755\n-31428 27317\n29868 -6296\n-14798 -30701\n15932 30584\n-15552 6562\n15803 -7784\n-24042 -24949\n7310 13894\n-29570 6740\n20798 -5518\n-3048 -9132\n24022 5416\n-16174 3289\n19853 -10116\n-14808 -1250\n13733 26089\n-25824 29283\n15763 -2058\n-20222 -18378\n29280 31195\n-15142 26566\n26959 -930\n-30801 -11773\n30144 14417\n-26240 28670\n30292 -7699\n-19710 -2678\n32082 17701\n-26086 20134\n22602 -16615\n-17126 -25620\n15096 14131\n-28482 29313\n4458 -31213\n-29468 -10268\n15717 24283\n-7154 28661\n17158 -18871\n-11880 -27828\n10405 7299\n-25928 2955\n3582 -541\n-25031 -17257\n16019 18195\n-28938 21617\n17228 -13496\n-19176 -7082\n14177 8824\n-11762 20216\n25721 -12648\n-31920 -13643\n27156 26145\n-16430 12054\n29734 -5327\n-13239 -8963\n17668 21381\n-15841 8933\n5764 -26324\n-31434 -23789\n5728 23707\n-15264 11554\n476 -18720\n-8039 -25355\n9385 23136\n-10486 4014\n16136 -13732\n-30275 -28607\n5939 21333\n-31969 17937\n14840 -19729\n-28615 -14928\n11943 20990\n-12883 4082\n8750 -13663\n-31887 -18795\n19843 19301\n-5298 2976\n6978 -2119\n-16874 -21919\n20632 5525\n-23640 24717\n15711 -20937\n-7772 -15327\n14218 28191\n-6932 31182\n26052 -7846\n-32287 -4\n7508 4247\n-30887 20636\n22340 -6886\n-32670 -24393\n194 23832\n-16199 18133\n10950 -16468\n-26617 -29390\n23797 3772\n-14368 4476\n4038 -5374\n-26500 -25109\n4579 549\n-22478 13108\n23762 -31158\n-11848 -9608\n7380 3064\n-15076 1737\n28685 -2195\n-20608 -22769\n8422 24412\n-29288 22952\n24496 -880\n-31516 -7680\n16266 1152\n-8276 5730\n31364 -21099\n-30786 -3785\n16644 24338\n-25623 32557\n6249 -4712\n-968 -16451\n3311 17608\n-5906 30819\n15058 -13196\n-28604 -21705\n29367 9179\n-22812 25345\n32071 -10178\n-6364 -7837\n16925 14726\n-27902 1833\n21986 -8505\n-11038 -21089\n13238 22668\n-25847 3745\n9682 -24804\n-13865 -18844\n8556 16304\n-7994 3921\n6619 -5369\n-4570 -21819\n3836 58\n-4715 9672\n23252 -18291\n-4800 -8205\n631 29817\n-27173 8120\n3624 -23696\n-3744 -8518\n11457 17979\n-29559 13942\n9814 -8531\n-12530 -7933\n25109 1367\n-22882 22907\n880 -27139\n-8034 -16558\n25215 20004\n-12637 2277\n25503 -16554\n-28241 -12728\n29280 32767\n-22482 16375\n9118 -9111\n-25937 -21472\n17133 969\n-7326 28565\n20283 -21469\n-5036 -461\n10928 8806\n-16277 2249\n473 -13266\n-13533 -24970\n11782 27455\n-15611 5953\n5872 -13712\n-25877 -18183\n22431 10944\n-27148 27598\n10891 -22903\n-9656 -9879\n24834 28891\n-24949 22246\n27081 -15529\n-12766 -6003\n11014 10116\n-16344 29475\n13149 -14221\n-8915 -26166\n1626 14643\n-12364 32706\n2063 -3149\n-25750 -14176\n19454 18278\n-18651 19237\n19257 -9559\n-31326 -14804\n17863 28956\n-14082 11601\n21322 -25568\n-4880 -26969\n26335 10586\n-15413 4721\n19014 -32348\n-28106 -24860\n21571 7593\n-31320 5457\n24131 -28424\n-3676 -15916\n15683 11414\n-4167 10724\n16878 -29280\n-16841 -4605\n1029 27697\n-1615 22463\n32004 -5545\n-29387 -25830\n13827 16527\n-2739 1179\n3290 -21864\n-20044 -18595\n21640 585\n-32296 20183\n21718 -19433\n-14317 -31444\n27959 13562\n-20569 30707\n24307 -28602\n-3715 -6012\n644 19909\n-11364 24342\n27712 -25133\n-16533 -23426\n17465 2508\n-30042 2953\n21858 -19929\n-12512 -30515\n6131 21690\n-4803 18234\n15118 -21785\n-27347 -28862\n29090 16186\n-3352 18746\n1680 -4236\n-10004 -5815\n31756 1406\n-31303 28736\n14918 -7571\n-8185 -661\n4426 9657\n-14899 3364\n4645 -15575\n-13839 -11060\n842 1701\n-817 15716\n29748 -192\n-25750 -1876\n13388 11774\n-16013 21922\n12556 -3070\n-1538 -16408\n32613 1796\n-13570 23587\n5214 -24580\n-26748 -29575\n28927 14589\n-2885 4946\n17773 -15241\n-12895 -1806\n20310 3505\n-3707 5179\n30607 -2309\n-5820 -2557\n29436 26605\n-20670 30993\n27313 -23866\n-22999 -10245\n28502 18944\n-5533 6057\n15312 -1448\n-9640 -11201\n2846 27713\n-3737 19452\n1408 -10007\n-11866 -4394\n2271 25479\n-26536 21161\n20585 -27665\n-9935 -10272\n16252 22447\n-9141 13168\n21445 -17253\n-1306 -18152\n681 18970\n-18718 15289\n1507 -11942\n-5892 -3241\n23407 27692\n-24117 2315\n31911 -8362\n-26248 -13294\n4269 1486\n-13760 9109\n7688 -27660\n-28247 -29991\n32658 27629\n-2938 10408\n8337 -16810\n-7764 -31016\n17444 1785\n-28815 1338\n23521 -16167\n-12312 -23464\n12732 26983\n-2083 16485\n26922 -3434\n-19312 -15811\n7047 30255\n-5068 21990\n5045 -3869\n-31450 -26745\n27911 5967\n-20499 8351\n6493 -7983\n-28684 -32557\n4752 1094\n-8439 21782\n15120 -24402\n-6253 -16935\n12747 6297\n-3691 3060\n7505 -5758\n-410 -24850\n12854 14930\n-4307 23686\n30904 -8044\n-3554 -23934\n5538 20604\n-11658 1855\n6769 -26396\n-30922 -32095\n8372 18856\n-25439 12340\n13497 -31568\n-11146 -19852\n21349 12907\n-26387 10654\n32612 -10510\n-24974 -13377\n12675 23518\n-12253 20060\n10329 -11042\n-7414 -5022\n23341 4637\n-21479 27759\n5140 -26778\n-27415 -31782\n30042 25288\n-13518 16252\n28195 -17224\n-30967 -28480\n25170 29573\n-31781 31565\n2474 -30276\n-30677 -12730\n18995 26748\n-26611 26192\n4576 -1127\n-20895 -11841\n29550 23257\n-26416 1046\n2703 -14033\n-11641 -26602\n27464 24397\n-1612 20438\n8344 -11107\n-17469 -31916\n32346 7310\n-11176 1768\n19052 -29510\n-1270 -14307\n273 29139\n-9243 842\n14484 -16738\n-2403 -13519\n26671 11609\n-32623 9758\n5674 -10472\n-23162 -4371\n1000 1000 12615\n21216 15586\n-21034 6494\n27593 -1251\n-12087 -6981\n29231 18341\n-30295 25586\n22844 -32121\n-2342 -12004\n3468 17247\n-10290 13247\n15420 -21965\n-4784 -5942\n4164 10411\n-20078 25389\n23047 -16546\n-11273 -18975\n21801 12694\n-23392 14782\n161 -26225\n-9288 -218\n15631 5667\n-6018 3204\n9551 -2535\n-19434 -115\n21838 6343\n-31728 11943\n4892 -31842\n-5964 -12875\n3651 25325\n-7406 12768\n10584 -25208\n-20788 -3224\n463 12658\n-9312 30464\n10771 -18544\n-23881 -19170\n18903 20778\n-23633 3690\n6310 -1734\n-2710 -30343\n26306 27482\n-18797 26772\n10283 -30380\n-30220 -16184\n13822 8764\n-21894 22155\n14848 -30340\n-31997 -9082\n30843 32126\n-2578 23148\n27721 -15975\n-16289 -26918\n26926 9923\n-23212 18411\n14443 -1185\n-13204 -26088\n25487 30240\n-32655 13520\n8593 -29234\n-18006 -6084\n6684 20128\n-24606 14709\n29482 -26446\n-4042 -3468\n23764 19137\n-3423 330\n3944 -4062\n-5304 -8043\n28605 14580\n-19579 11089\n19907 -18429\n-6475 -30558\n29022 26657\n-12607 31394\n26997 -20604\n-915 -27062\n20806 17441\n-18590 22247\n32764 -21343\n-19972 -7575\n22147 16963\n-21293 7393\n8091 -14429\n-2550 -1404\n13867 7623\n-4006 16098\n26072 -18788\n-29219 -10161\n14807 25702\n-5478 13649\n11775 -10003\n-3372 -14039\n30243 21192\n-16110 16169\n20382 -3390\n-24596 -31331\n4399 268\n-9318 29306\n27912 -26477\n-12483 -1824\n6433 24388\n-9749 7399\n20946 -13661\n-22660 -18344\n27297 502\n-1770 29734\n24921 -16254\n-9863 -21743\n10076 16028\n-5879 5763\n5433 -7027\n-21088 -7864\n15489 6181\n-28144 23389\n3031 -149\n-32391 -25630\n31047 31602\n-13744 29607\n9945 -27761\n-19158 -31757\n13669 19417\n-1205 23145\n14760 -5957\n-30478 -28102\n1944 16293\n-18591 5437\n18421 -14471\n-5458 -22878\n3105 3221\n-16565 17618\n21553 -7006\n-19626 -12351\n15172 25689\n-2144 1388\n15891 -806\n-11137 -15782\n20426 16664\n-12717 8034\n12567 -24561\n-2600 -32547\n15744 492\n-28623 1950\n8953 -21249\n-32081 -19740\n14262 22372\n-20891 12321\n25150 -847\n-22676 -21323\n18369 1\n-3083 10364\n13483 -16903\n-16621 -22844\n29561 21690\n-21692 3672\n1483 -32521\n-20284 -23247\n29627 9592\n-19568 19951\n9582 -3433\n-17092 -28860\n31464 26010\n-31116 12945\n5669 -14320\n-17325 -2314\n2917 10355\n-21146 18208\n27591 -9625\n-13699 -28566\n24089 28103\n-22729 1685\n14831 -3605\n-6580 -9875\n22770 15954\n-17000 23673\n4731 -15944\n-533 -3844\n5473 6208\n-13679 30059\n5135 -27849\n-4958 -24899\n30425 11190\n-4598 24480\n2192 -24166\n-6057 -30078\n20819 26440\n-19643 31583\n5033 -23197\n-8439 -23605\n8141 21632\n-22945 15233\n29001 -28708\n-15275 -18109\n19142 17502\n-9771 13816\n17443 -2403\n-12557 -16320\n32452 19410\n-9221 1092\n29741 -20725\n-22984 -13242\n4815 4164\n-25468 29695\n7457 -26154\n-109 -18813\n32499 25612\n-15873 1874\n3328 -24968\n-21486 -2735\n25282 13050\n-4266 17789\n21130 -10565\n-27172 -23623\n7119 16080\n-1713 23380\n23494 -5582\n-21065 -18195\n27700 11203\n-29683 3005\n9345 -26179\n-14206 -4149\n12557 23805\n-16242 28723\n29895 -1273\n-4934 -8609\n10491 8478\n-24019 2373\n12139 -7159\n-28681 -17057\n19106 11959\n-23521 7959\n12421 -31098\n-15250 -8273\n11051 28877\n-30984 29152\n15342 -17521\n-10642 -9763\n29890 9052\n-20955 14955\n31686 -257\n-9755 -9820\n27929 16337\n-6798 31383\n3823 -25858\n-22566 -21142\n3044 14735\n-27005 7638\n10128 -31872\n-13325 -1084\n8539 2667\n-4515 27058\n14738 -7739\n-7697 -21777\n3259 3888\n-3363 15939\n14630 -12327\n-7381 -1961\n709 13340\n-30659 9914\n26941 -15341\n-7137 -16365\n25661 29024\n-6508 14809\n14863 -21352\n-15905 -2971\n9325 6052\n-172 19065\n14229 -17705\n-16483 -15045\n16288 27777\n-11572 26627\n2063 -8435\n-27612 -2126\n16807 5893\n-19034 12023\n31359 -3136\n-6308 -4720\n23639 23603\n-31128 26984\n9515 -26299\n-16437 -9016\n3592 11137\n-11531 32638\n5151 -16067\n-8176 -18695\n22552 31576\n-4597 14323\n1960 -5614\n-27545 -16147\n1382 30103\n-2876 18582\n17114 -30084\n-4054 -9701\n215 29711\n-15336 14027\n27147 -21247\n-1203 -3033\n15317 19720\n-8617 2057\n29014 -17554\n-12321 -17825\n9419 28604\n-16206 16986\n6938 -1439\n-22642 -5826\n11690 20695\n-22351 15583\n1656 -19264\n-9950 -10773\n25192 9981\n-13892 16457\n19929 -26815\n-14850 -23111\n3963 30531\n-3436 30561\n13669 -17437\n-18524 -19033\n30818 29109\n-23847 12162\n27020 -6799\n-21200 -20001\n7709 7631\n-28540 26905\n19841 -5372\n-26406 -8904\n5552 22276\n-25236 14380\n22970 -11392\n-29322 -30538\n28323 6458\n-17213 29904\n2674 -24300\n-9226 -17657\n10629 7499\n-14184 15281\n24103 -13124\n-24348 -30714\n15973 17798\n-14508 16014\n25629 -3648\n-15893 -26565\n13143 23084\n-24256 25786\n23256 -22220\n-9395 -8105\n17141 5620\n-14853 15260\n24230 -27272\n-25236 -30535\n4827 647\n-15866 14128\n10259 -25160\n-26044 -31507\n31274 9476\n-15301 17028\n23154 -9877\n-32019 -9430\n22534 31357\n-27825 8252\n25179 -21546\n-10981 -25646\n31256 17529\n-3242 6926\n25640 -28792\n-1888 -30476\n4877 9584\n-1219 1607\n14967 -28195\n-13082 -4660\n16661 3410\n-9648 3652\n1195 -386\n-22920 -22977\n9317 30208\n-29261 22777\n17771 -17699\n-17288 -10655\n1461 28625\n-31254 30318\n4385 -11844\n-31192 -11791\n3266 32270\n-17324 8509\n19579 -20827\n-30620 -19495\n1741 17271\n-18262 20246\n31470 -30352\n-27868 -23119\n15643 32444\n-31101 4411\n7470 -32318\n-4356 -10437\n23411 22277\n-25903 17668\n8120 -5493\n-1379 -23066\n26275 30826\n-22173 5212\n22857 -14970\n-18348 -2995\n17147 123\n-5534 17985\n6499 -4421\n-13432 -20040\n19153 15033\n-12330 24392\n18127 -2051\n-6593 -28264\n29947 11547\n-21727 4631\n3606 -19346\n-22888 -3315\n2904 29835\n-15743 32746\n8198 -3080\n-7089 -1951\n28999 29031\n-10607 18703\n52 -4396\n-4546 -12660\n31278 17408\n-26682 28010\n25460 -7930\n-18472 -23376\n20468 6430\n-29708 31985\n7778 -10787\n-2385 -11363\n27016 18042\n-7224 6192\n9181 -23691\n-20499 -19124\n4440 14146\n-16307 16582\n4998 -27082\n-18979 -21403\n31707 10392\n-6039 31206\n22598 -13228\n-27295 -9284\n28167 13843\n-4512 14552\n22213 -16049\n-3205 -29234\n29659 13885\n-15026 9590\n11252 -30349\n-9529 -13242\n9943 26388\n-14673 10927\n31620 -17065\n-1796 -22660\n1151 27273\n-22567 22279\n20076 -27296\n-13199 -21006\n21724 4868\n-8322 3349\n359 -19139\n-15980 -27688\n8443 32734\n-1235 1028\n17267 -22677\n-16269 -30073\n14699 2533\n-6961 6162\n9299 -30544\n-21963 -14328\n19651 32732\n-26580 27412\n13070 -7262\n-14689 -16756\n3610 13048\n-14234 21744\n11375 -17377\n-24174 -31757\n27533 21348\n-2693 9249\n14723 -13612\n-10102 -5816\n21693 7358\n-3643 11831\n15902 -5959\n-10210 -15807\n4431 21144\n-10372 12372\n14166 -21871\n-30331 -9023\n10090 3320\n-4560 32688\n10757 -21395\n-4083 -22440\n21052 21720\n-32687 2582\n8524 -29400\n-18780 -29249\n2165 4262\n-24407 9829\n15627 -26135\n-21167 -2465\n4810 16581\n-8225 13584\n20586 -22106\n-18759 -31799\n12915 3083\n-3596 4255\n4179 -22370\n-23139 -2242\n22445 7233\n-15417 20012\n20981 -11300\n-30119 -14042\n26682 19110\n-32621 19942\n22850 -23367\n-3996 -3942\n5596 7276\n-30866 7057\n14194 -5031\n-29739 -9507\n17630 3897\n-12086 7939\n14718 -24789\n-10534 -27939\n651 13735\n-15370 7336\n26278 -12181\n-24768 -26444\n2996 9157\n-869 1536\n3820 -8799\n-31759 -5845\n25390 11156\n-32703 6684\n27031 -13791\n-7569 -19148\n30802 27018\n-7222 22053\n17329 -13685\n-19364 -13971\n23932 8467\n-7948 13781\n16009 -32693\n-8973 -23134\n3724 26891\n-9255 17404\n7729 -6887\n-6514 -15287\n18280 10309\n-10128 31484\n10240 -6537\n-20448 -28155\n27256 25095\n-8180 30029\n4370 -20168\n-30022 -27354\n30504 21131\n-10534 28154\n31939 -21259\n-14583 -15066\n4202 23424\n-16027 4386\n2872 -22632\n-19756 -28116\n4914 16519\n-1517 7287\n30679 -20269\n-31104 -25462\n15608 13239\n-10585 20419\n18377 -23128\n-15730 -25535\n25145 12826\n-16960 11614\n2175 -5151\n-743 -1926\n13557 12333\n-21418 2745\n7722 -8810\n-24741 -28916\n6962 5731\n-21694 28887\n8769 -6995\n-27865 -21509\n5497 3491\n-19275 19662\n20991 -14765\n-8081 -20236\n13652 7109\n-30275 28746\n3299 -24954\n-17731 -4908\n9174 4121\n-2106 25099\n25390 -29811\n-325 -23775\n14355 16352\n-29163 32354\n13416 -30340\n-24659 -15474\n7587 4817\n-15539 26551\n24028 -589\n-31500 -11911\n2851 24470\n-29973 18182\n30999 -3491\n-10356 -1170\n2229 6220\n-9524 23646\n10861 -32269\n-16500 -7516\n18043 18183\n-24412 24417\n32628 -3399\n-28246 -28036\n799 23115\n-22650 12231\n23943 -32194\n-4937 -22521\n590 16788\n-4767 21978\n68 -7970\n-14563 -22145\n4920 22991\n-6017 21243\n2063 -8895\n-5018 -29237\n10003 10719\n-17146 16923\n6285 -16421\n-5450 -3074\n30613 28441\n-7558 18499\n1833 -10644\n-4018 -29993\n15741 31175\n-18121 21774\n6546 -20608\n-26359 -22464\n30474 22953\n-28679 13098\n21563 -31249\n-21535 -28464\n16002 23152\n-26283 26842\n22745 -9125\n-14231 -4277\n12460 20545\n-11969 26742\n21737 -14153\n-31662 -993\n25431 13368\n-11644 4329\n40 -4164\n-1815 -11033\n27601 4322\n-25520 32306\n11033 -20364\n-16235 -31766\n30064 16066\n-14424 10724\n23939 -79\n-7077 -18533\n26637 28877\n-21266 23463\n1264 -3179\n-18084 -21991\n7812 4334\n-1694 27060\n13103 -246\n-20909 -18258\n11574 27779\n-19299 18781\n27858 -8887\n-30438 -21678\n14471 12510\n-18922 28547\n1969 -21163\n-27612 -21465\n23392 14276\n-30048 285\n6501 -17026\n-17406 -4356\n7597 9201\n-13848 21432\n30158 -31007\n-25376 -30516\n31456 19859\n-9224 15857\n15758 -10011\n-32761 -2242\n30828 32459\n-20807 14332\n31884 -19266\n-13989 -10203\n19532 47\n-9365 19489\n22641 -10004\n-11043 -12032\n4986 30026\n-17363 22330\n20270 -838\n-15320 -22919\n6264 2330\n-3718 6455\n1396 -17470\n-17418 -31768\n10698 27281\n-10329 5530\n9531 -20123\n-28262 -3377\n121 6421\n-5016 17403\n19516 -15275\n-6011 -32163\n13970 256\n-23478 4229\n2678 -24051\n-16445 -24851\n19877 26657\n-20423 11383\n28845 -5546\n-4227 -26234\n17735 10809\n-19718 11940\n12006 -30014\n-27016 -8356\n16784 17790\n-6481 1011\n17133 -13774\n-2158 -7861\n16798 14107\n-19880 12256\n14031 -31662\n-14519 -21663\n26128 10158\n-20658 23801\n28512 -27367\n-5834 -21422\n18315 26569\n-24888 15713\n2743 -2996\n-25204 -21244\n23865 15475\n-12456 15185\n20141 -32518\n-24932 -2045\n29509 31652\n-3475 31122\n10081 -768\n-20910 -20213\n12640 30924\n-7727 9220\n13750 -18299\n-27721 -9084\n12607 16716\n-10966 4122\n28116 -4740\n-30609 -26881\n9499 10490\n-30853 11612\n17827 -13529\n-27077 -836\n3632 9890\n-13150 17892\n29523 -20080\n-7050 -16091\n830 128\n-26918 3809\n15319 -25328\n-2662 -2478\n1803 18631\n-5064 2328\n20837 -15926\n-11078 -31611\n28383 10782\n-13264 12637\n16888 -10449\n-19705 -11858\n22790 1053\n-31473 286\n30158 -27783\n-2739 -26394\n13138 22484\n-1663 16089\n15850 -10446\n-20107 -3594\n20886 1092\n-10742 7840\n29331 -30547\n-25597 -30513\n5164 21220\n-18801 12956\n8659 -24694\n-6760 -31471\n7792 21534\n-17460 11144\n19961 -8139\n-30609 -24186\n7491 3023\n-28450 26930\n15384 -14491\n-31263 -3162\n7561 28106\n-8008 23293\n21125 -23138\n-27677 -7404\n29355 10838\n-17488 12385\n1885 -5455\n-17787 -12003\n11542 19115\n-4879 22889\n24317 -24262\n-7820 -4034\n8378 7545\n-16376 22324\n31368 -26081\n-12938 -13412\n31627 29538\n-18854 23669\n13925 -14315\n-29198 -372\n27652 11131\n-21334 15860\n22717 -13540\n-9624 -25589\n22431 4047\n-3946 13067\n20481 -21504\n-8205 -14780\n8542 475\n-14823 26153\n355 -14375\n-307 -2545\n69 30483\n-8952 21842\n10072 -5238\n-2103 -3473\n26078 17755\n-18793 668\n16412 -24765\n-30249 -2031\n29876 16271\n-1325 29876\n3118 -24064\n-122 -28462\n1752 8700\n-16856 1879\n7376 -27382\n-21380 -25800\n17503 20197\n-18726 3034\n29320 -10380\n-9474 -32267\n18913 23295\n-7538 14755\n11170 -28259\n-22164 -23703\n24316 27125\n-25664 28333\n17068 -3918\n-10301 -5857\n15567 23269\n-24756 16391\n23800 -28117\n-31460 -28851\n25728 17632\n-32280 23126\n10525 -24756\n-8918 -25513\n1462 17262\n-27226 12879\n19830 -26461\n-19011 -30646\n29984 4872\n-16523 1342\n26274 -11890\n-25532 -27549\n13036 32156\n-17249 10626\n5634 -25676\n-11451 -11640\n336 5901\n-10166 12045\n8255 -23927\n-16411 -9012\n2821 18864\n-28423 20457\n7105 -2355\n-14492 -17171\n6599 13008\n-20982 12462\n12088 -13812\n-25441 -31785\n23767 20267\n-15049 28941\n24599 -9699\n-626 -28384\n16249 30579\n-20457 3145\n28948 -29532\n-7994 -30069\n20341 11470\n-3683 2488\n20650 -17774\n-27913 -31864\n13210 13654\n-29802 32071\n6040 -21597\n-15251 -11087\n12855 2201\n-15314 22515\n5983 -15907\n-31087 -23731\n18336 3098\n-9367 2128\n30919 -10987\n-18073 -26417\n19631 8143\n-20309 27398\n27226 -16789\n-5872 -13739\n11584 31393\n-10189 2895\n24295 -27701\n-25785 -12245\n11956 22255\n-24422 13178\n23553 -27795\n-29467 -29369\n18032 28427\n-30633 19820\n22654 -16556\n-8353 -22835\n91 18875\n-23748 4889\n11001 -22320\n-18875 -21621\n30050 22201\n-4105 3855\n2128 -5122\n-15165 -5252\n20983 23348\n-25196 27884\n4646 -9404\n-13534 -185\n27790 11853\n-16136 6626\n30049 -9512\n-31674 -66\n27680 17819\n-1434 13627\n6318 -5063\n-31953 -4766\n32424 4519\n-29956 20687\n23289 -5710\n-32646 -14372\n8104 10864\n-9676 399\n25077 -3620\n-26657 -10877\n28325 19432\n-5274 16381\n30874 -31974\n-2637 -25893\n5542 8822\n-15550 6321\n32161 -14563\n-2970 -32238\n16313 26482\n-17064 11479\n25098 -29088\n-22012 -19837\n8047 19884\n-11886 684\n14231 -1109\n-6730 -26571\n1371 15845\n-13897 9732\n20302 -8302\n-25280 -25765\n1686 25428\n-6424 6342\n26619 -15371\n-13694 -30765\n13118 2082\n-2267 4974\n27820 -22657\n-18183 -23382\n23794 16879\n-9530 5514\n17203 -5847\n-15555 -1132\n27992 28235\n-1532 17982\n10920 -7241\n-32637 -12170\n19608 32573\n-21904 9409\n10724 -18120\n-7653 -14114\n22494 6080\n-31623 2269\n3590 -12664\n-16143 -15481\n26588 30785\n-22296 29555\n30962 -2352\n-9458 -8232\n26437 15138\n-2459 12020\n32717 -12542\n-16106 -19100\n31059 24890\n-20750 16361\n22915 -13985\n-19511 -17558\n12354 11859\n-29331 9581\n7490 -5901\n-3708 -8108\n21459 21930\n-13552 27053\n4348 -21226\n-3137 -11974\n14282 30323\n-27405 623\n2024 -21269\n-25457 -3746\n8816 26706\n-3706 392\n20737 -7454\n-11228 -32337\n17170 22499\n-27111 5475\n13701 -22472\n-27062 -1976\n14463 13107\n-21418 22913\n1912 -8076\n-4119 -30736\n10126 26181\n-30780 30452\n16415 -11031\n-4985 -10342\n24982 26510\n-13500 5348\n11909 -16327\n-3133 -5659\n6901 5241\n-363 6410\n13818 -30258\n-26917 -19301\n12682 24035\n-27694 14391\n7310 -20127\n-12763 -6092\n826 17568\n-8975 22222\n27034 -5515\n-22889 -6318\n21614 9716\n-3772 14661\n21560 -6181\n-8384 -4540\n18067 22555\n-32007 1193\n16838 -10450\n-2354 -5498\n24217 5827\n-23396 3863\n21608 -29610\n-22263 -32195\n7029 16268\n-366 67\n2434 -8953\n-9131 -13379\n7328 24207\n-2915 16885\n26690 -21439\n-206 -19195\n22677 2772\n-17571 16519\n16404 -23088\n-10819 -25793\n25431 4825\n-8756 31593\n30507 -22069\n-18642 -28093\n17640 30994\n-19777 26013\n26879 -6121\n-17574 -9197\n24531 16484\n-15767 5691\n21706 -21533\n-10192 -28577\n26531 2217\n-25639 18669\n23562 -10453\n-4290 -3072\n26473 31535\n-25991 11892\n4354 -29129\n-13524 -32642\n22587 1849\n-25712 3362\n5432 -27876\n-29378 -25715\n18351 28285\n-23617 12638\n18424 -11976\n-29996 -374\n3684 8612\n-2939 11811\n1232 -26440\n-25877 -12800\n5754 27853\n-28227 28033\n29203 -30189\n-11365 -7897\n12821 29706\n-18660 4379\n24406 -20081\n-18535 -18079\n478 32737\n-16970 8871\n13301 -11591\n-11340 -22082\n27521 6604\n-3719 5233\n28047 -7185\n-13222 -20873\n8240 30905\n-10578 4568\n11910 -17961\n-9453 -2955\n13086 15755\n-8323 8143\n23680 -7449\n-17405 -28471\n16389 32664\n-28312 3422\n20201 -19746\n-29846 -6093\n8609 10537\n-25908 13343\n3439 -441\n-27867 -14691\n14387 9213\n-10138 2241\n7812 -31237\n-30676 -22881\n16383 21958\n-13622 31624\n26079 -28003\n-18412 -22276\n14287 27819\n-1045 10443\n4860 -16354\n-22900 -17375\n22381 31684\n-11112 22900\n8087 -1735\n-25886 -3157\n5676 26529\n-7685 21380\n24117 -23818\n-25218 -28704\n16736 8899\n-29926 31372\n6299 -2007\n-6813 -19150\n8929 14881\n-18855 16437\n15956 -27406\n-19021 -11327\n14221 12708\n-8460 25785\n9008 -19907\n-21718 -16680\n30147 12459\n-25978 1896\n19904 -28351\n-1632 -2963\n9192 32393\n-29049 1829\n21979 -26877\n-26230 -27485\n16102 20226\n-10808 13030\n21276 -26670\n-6792 -30390\n28840 24273\n-10761 18999\n23393 -11574\n-22634 -8868\n5791 24613\n-31456 19894\n4429 -25260\n-26836 -15233\n22592 14112\n-24793 8088\n17095 -16734\n-14816 -11640\n19844 1622\n-13487 29732\n6010 -1227\n-399 -7436\n13670 2900\n-20037 4659\n20307 -12199\n-28740 -20369\n15465 19222\n-32545 25527\n4358 -8282\n-29511 -25521\n21264 3728\n-7404 22064\n18569 -30081\n-1860 -23017\n5219 12070\n-7156 2872\n5526 -17004\n-6857 -27913\n15473 13108\n-14762 22776\n18989 -5022\n-203 -15031\n11976 14983\n-14116 6832\n30993 -17232\n-29474 -15340\n3327 15073\n-9116 20788\n5190 -7662\n-9480 -3446\n23852 3193\n-14063 4970\n7065 -22169\n-26014 -2164\n16494 18041\n-15391 20173\n23320 -19363\n-21095 -10974\n14693 27519\n-3025 22508\n14742 -6934\n-6603 -20474\n693 26140\n-5839 19179\n5929 -1838\n-19862 -14568\n30087 21848\n-136 15361\n15275 -10970\n-17782 -25879\n8 10540\n-18827 14329\n21820 -32319\n-4480 -15053\n11239 3846\n-2576 5298\n1726 -11061\n-31916 -32675\n13531 11849\n-15471 4510\n1623 -12744\n-8020 -8454\n12059 13514\n-6055 18503\n19443 -23736\n-441 -19640\n15845 13140\n-31192 27845\n20416 -1529\n-20094 -22861\n23031 18980\n-25289 24137\n22704 -11060\n-5419 -32431\n10265 9582\n-32355 1942\n23291 -21060\n-7340 -24218\n24465 18903\n-16180 3970\n26266 -15802\n-17871 -23840\n16557 12537\n-2285 22905\n9677 -29018\n-32202 -18726\n6973 13794\n-27364 22010\n27541 -1691\n-16562 -21733\n25878 20885\n-27283 8984\n21051 -20779\n-11269 -24170\n24720 10119\n-24087 31995\n27079 -21353\n-8481 -2071\n21257 25123\n-22194 32349\n30346 -745\n-30666 -8480\n19296 24391\n-6985 12557\n16277 -23795\n-16552 -24078\n30843 11461\n-13031 28271\n27967 -19204\n-6086 -24896\n4033 21731\n-32568 4090\n30627 -22347\n-1813 -4965\n17313 31451\n-26383 28600\n9504 -12590\n-30951 -19458\n18953 18268\n-4321 14538\n6359 -451\n-14965 -18930\n29423 9479\n-11591 2018\n28976 -4183\n-3673 -31714\n20172 19698\n-20863 23494\n30294 -14058\n-20244 -6353\n25884 9000\n-25068 21972\n22710 -9905\n-8585 -2198\n31455 25384\n-3218 19064\n32644 -31891\n-14208 -7257\n26907 7266\n-21403 8632\n26422 -9645\n-8741 -5912\n856 32445\n-10197 1961\n4103 -5070\n-13447 -1572\n3618 30483\n-4913 27895\n31861 -16891\n-30233 -27042\n17803 7091\n-29509 22369\n16323 -2284\n-9523 -11531\n29606 26846\n-17355 570\n7288 -17292\n-18834 -28588\n5901 19786\n-31008 20201\n13023 -17277\n-22228 -7462\n6493 1699\n-27334 1386\n16261 -5523\n-24317 -21999\n5556 19973\n-19939 25803\n27069 -5716\n-21749 -10191\n12089 21635\n-16319 944\n8735 -22143\n-24328 -5732\n30613 4003\n-24650 207\n4357 -20353\n-14693 -29599\n25970 21984\n-31891 885\n5389 -26625\n-10399 -2117\n23299 19239\n-18770 3071\n20890 -18517\n-31791 -3183\n15484 7514\n-11616 5218\n19794 -32523\n-8431 -28682\n5781 4304\n-7225 163\n8353 -30050\n-17312 -29527\n21772 23762\n-129 24415\n13365 -13262\n-870 -3948\n2336 22560\n-13948 31301\n3969 -30327\n-13383 -11953\n16406 30058\n-5780 13975\n14138 -4538\n-12719 -13668\n27064 4055\n-4055 17837\n7133 -9894\n-16623 -23062\n20177 1922\n-21110 9586\n6183 -10113\n-953 -20011\n6066 11768\n-2631 28900\n32666 -11329\n-31398 -13918\n25264 699\n-10564 152\n15615 -5907\n-6064 -29499\n27299 16322\n-16906 23348\n223 -2263\n-24761 -14755\n15721 13815\n-29275 30196\n8 -9634\n-8706 -31563\n609 31159\n-23965 17702\n16910 -10555\n-12468 -7998\n20721 24406\n-14169 7342\n32712 -19358\n-15707 -2646\n5889 18329\n-23996 24706\n4559 -30076\n-13925 -30663\n3965 15417\n-1049 1326\n28419 -17593\n-15016 -8597\n18647 23654\n-28005 24657\n15109 -24813\n-7129 -14616\n15234 6466\n-14009 18719\n25789 -8164\n-28950 -12159\n28792 16994\n-12756 2269\n21718 -31262\n-14685 -20042\n14261 25169\n-20374 7016\n11325 -20303\n-3603 -8142\n28345 27405\n-6791 16302\n4774 -31456\n-25982 -10165\n22282 12935\n-16718 22579\n5384 -14444\n-25930 -27516\n31920 16167\n-12602 7054\n5148 -22596\n-17672 -19188\n11448 25670\n-16572 5354\n17121 -17387\n-16554 -10433\n31666 11954\n-27114 29829\n13594 -21147\n-6921 -25310\n23602 8494\n-5374 12340\n32206 -28094\n-12384 -6934\n17747 16623\n-29398 29661\n24008 -1398\n-6350 -20364\n26927 29216\n-26482 25083\n533 -21782\n-23255 -17205\n31592 9311\n-1144 9246\n21129 -30630\n-11748 -13913\n1954 20286\n-5043 19304\n20538 -19555\n-19646 -28437\n22534 16067\n-12688 273\n1026 -11069\n-22551 -4572\n27585 12264\n-30623 1764\n32001 -26967\n-18690 -18929\n32131 15643\n-14104 1984\n24346 -11658\n-29557 -16878\n6657 6847\n-17236 14361\n369 -5346\n-6350 -27713\n18035 9130\n-19536 18036\n7412 -10015\n-2635 -7082\n14103 13733\n-18733 7150\n2767 -6966\n-23441 -27582\n5548 24047\n-29362 27829\n4853 -27598\n-9510 -31079\n22520 21946\n-19913 6285\n19102 -15299\n-22263 -27490\n9794 20140\n-17918 23372\n707 -2726\n-6866 -19135\n20952 3935\n-22531 19806\n18084 -14651\n-18157 -11108\n23435 24545\n-19503 13379\n27203 -24058\n-24670 -9355\n2606 17973\n-250 8972\n10471 -27023\n-11680 -6463\n4379 4817\n-17794 27362\n21402 -7002\n-22805 -20707\n18093 15646\n-17417 23423\n4011 -17903\n-9086 -24491\n27335 4092\n-31861 21427\n9516 -25495\n-9860 -24353\n32076 9787\n-20175 8672\n23924 -31437\n-10035 -30369\n9380 14114\n-5572 13438\n29087 -21186\n-30842 -13277\n9278 13035\n-20775 6808\n2313 -30681\n-28076 -13147\n25352 12101\n-24685 21581\n18391 -4140\n-23810 -6386\n505 9169\n-19760 29520\n28014 -5\n-12823 -22608\n648 30374\n-9644 2920\n762 -24166\n-4202 -19831\n32050 22733\n-26437 29424\n6633 -14722\n-1504 -9531\n26616 29382\n-30975 21336\n6765 -11073\n-19775 -5574\n27870 24833\n-13829 2467\n8701 -15808\n-8372 -26388\n20589 101\n-2083 22247\n29140 -8142\n-7246 -19319\n26674 2765\n-4683 24784\n28017 -10608\n-12416 -2068\n8509 902\n-27412 542\n10517 -12382\n-9379 -28004\n5794 29650\n-26422 27426\n2120 -11396\n-10610 -8117\n14332 30568\n-29711 4676\n27733 -11395\n-31628 -12198\n32741 6386\n-545 29824\n29385 -6701\n-5622 -686\n14975 32397\n-32658 9701\n17400 -20236\n-29846 -2966\n23534 26189\n-25259 12821\n29048 -30940\n-26297 -21242\n26332 29366\n-17498 19656\n25764 -19980\n-29070 -20428\n25332 18244\n-2736 21064\n23834 -4673\n-17064 -4049\n25447 29924\n-9059 6134\n32573 -27346\n-12928 -12322\n7530 13944\n-20044 3268\n29364 -845\n-22257 -9644\n3765 32087\n-30698 10680\n4330 -497\n-9658 -21937\n13318 19915\n-9182 12912\n9100 -19506\n-9984 -32325\n20380 27538\n-26477 17817\n13069 -6969\n-14281 -28369\n16317 22109\n-29698 15734\n25893 -24673\n-23682 -4243\n25905 5716\n-12713 24671\n27470 -31163\n-9082 -16156\n6596 22672\n-27028 24895\n326 -13962\n-5988 -28881\n14023 23455\n-154 12309\n31632 -11208\n-16857 -12139\n11152 11268\n-16819 6772\n26099 -22687\n-15828 -24695\n9206 12468\n-14461 15364\n12793 -6897\n-23093 -24023\n16085 1946\n-7099 16126\n30065 -29648\n-19518 -24127\n21648 12820\n-18384 27828\n14573 -7175\n-29209 -11704\n19850 4467\n-18760 3591\n22085 -26767\n-9551 -13856\n2220 13183\n-30544 7150\n26386 -32539\n-7506 -22440\n20963 28401\n-7737 16374\n17204 -23181\n-25077 -4437\n26782 20472\n-14841 9404\n3917 -8062\n-19951 -31104\n5716 21684\n-16554 5749\n23363 -16570\n-8540 -1622\n21756 31166\n-32009 29542\n20674 -29633\n-9275 -9816\n1427 5790\n-30968 27756\n29112 -30024\n-22769 -10460\n13978 2643\n-30716 5494\n26327 -7606\n-16068 -30346\n31381 14287\n-447 17926\n24087 -17831\n-9313 -6624\n20110 21112\n-31888 18868\n31025 -31340\n-2647 -6063\n4239 31400\n-22494 24747\n19492 -649\n-5530 -6043\n1579 10797\n-18113 4138\n27572 -12854\n-4609 -23711\n29430 28874\n-2673 17156\n3046 -4062\n-1224 -3463\n16137 181\n-19661 14880\n11910 -18595\n-20238 -19828\n11647 2839\n-2773 19706\n24993 -29913\n-24664 -9308\n8954 27791\n-3888 31264\n3595 -11398\n-30988 -14215\n31775 10671\n-31911 18357\n21979 -27624\n-31991 -21011\n29717 15229\n-26792 29682\n746 -18415\n-21960 -15729\n6922 11252\n-1476 30112\n1367 -29374\n-26003 -27109\n23727 640\n-24113 19615\n517 -4143\n-2383 -26378\n5815 134\n-7753 8803\n28955 -23116\n-11096 -11340\n16219 11737\n-28425 14961\n19588 -5591\n-26093 -12652\n7129 13638\n-24722 13030\n20077 -22210\n-13747 -22271\n1777 4361\n-25772 5360\n16330 -5304\n-15408 -7919\n18279 1877\n-22846 13652\n22225 -3986\n-4689 -13561\n30339 30416\n-8920 25830\n9597 -995\n-10981 -18222\n30356 29461\n-22313 28948\n6156 -12141\n-17696 -11890\n31080 12593\n-30601 29788\n897 -9641\n-28441 -26368\n5846 17446\n-15216 30416\n17443 -29763\n-6220 -22756\n29493 10603\n-27389 24217\n27644 -6043\n-13337 -28799\n30178 9577\n-18800 12402\n347 -16198\n-27714 -1798\n4029 28672\n-4016 8233\n19795 -25227\n-25457 -6915\n4524 12544\n-30406 28961\n14905 -9446\n-1968 -22739\n4888 19633\n-21088 9938\n16938 -2696\n-29935 -29478\n26731 75\n-15183 1351\n28035 -31957\n-26498 -19331\n10648 20094\n-18953 24991\n24935 -7908\n-16032 -27329\n18579 15340\n-24872 17038\n32316 -29187\n-3813 -18831\n14292 23466\n-2025 20697\n3630 -18993\n-17616 -26861\n8408 11202\n-21678 6109\n939 -4770\n-22342 -15024\n10912 16820\n-26493 5640\n18406 -25151\n-2574 -23042\n20529 18160\n-29822 7518\n6484 -24611\n-16467 -5088\n18194 17758\n-24193 1013\n31281 -30750\n-24357 -16282\n30161 17367\n-24949 9338\n12028 -24374\n-16375 -26454\n31358 12969\n-19698 11946\n19703 -26657\n-13091 -16526\n16686 10263\n-20144 18394\n22696 -10189\n-4706 -29837\n10874 27862\n-19726 31600\n29787 -27096\n-25428 -14582\n16893 22673\n-20876 31591\n7838 -29976\n-2558 -14397\n1242 32357\n-849 12495\n195 -8212\n-2887 -18988\n14387 10598\n-12711 7242\n19809 -13705\n-24442 -31840\n20403 10521\n-28281 1680\n11987 -10470\n-21703 -27337\n25605 28152\n-14556 236\n17848 -6864\n-449 -26669\n14682 30193\n-14211 13757\n14193 -11679\n-18402 -30374\n21992 2279\n-841 2294\n19622 -10719\n-26115 -4127\n10342 17711\n-427 2206\n8130 -29392\n-6884 -16091\n16016 31764\n-20299 11600\n23410 -19175\n-22442 -1518\n2985 24148\n-14959 27324\n2346 -26699\n-604 -6594\n16116 30881\n-19839 4133\n28576 -22872\n-18533 -26771\n10810 33\n-27019 30945\n335 -14623\n-277 -29427\n14407 28398\n-28866 3293\n23285 -13284\n-8224 -29767\n29549 28822\n-252 4374\n21014 -23454\n-14365 -23369\n7168 7836\n-15922 18464\n4983 -19579\n-3336 -4740\n20184 3318\n-11520 25251\n20899 -8538\n-14017 -6363\n15314 9869\n-7466 16345\n873 -14415\n-21386 -27138\n27727 22976\n-9236 32273\n12892 -18210\n-19085 -14082\n6579 5345\n-10056 23344\n22866 -16336\n-7764 -28346\n5095 4790\n-30452 25898\n21221 -1289\n-20303 -5721\n14296 30457\n-30825 31373\n22518 -28337\n-20050 -29157\n30198 15065\n-24734 6903\n3621 -7775\n-32532 -31927\n26806 26999\n-32427 1947\n9817 -9184\n-19122 -12796\n31504 11369\n-5710 13248\n2878 -29109\n-16937 -9526\n7937 10299\n-19049 1345\n8130 -8592\n-20703 -27321\n5131 10473\n-6017 25870\n3480 -2268\n-32539 -20526\n15792 7782\n-24129 8105\n9142 -7474\n-17544 -25875\n2555 26904\n-32246 5547\n17622 -10469\n-27318 -21305\n26615 30298\n-32528 15421\n26104 -20343\n-32665 -1861\n1000 1000 20021\n11513 19879\n-28063 7390\n25121 -22536\n-10544 -20810\n10679 1012\n-2468 16014\n1103 -8767\n-25800 -19023\n19403 17619\n-26163 3540\n8225 -2142\n-556 -3423\n4446 9800\n-4040 31166\n10987 -25320\n-20051 -12317\n17423 11255\n-23025 27678\n14774 -31557\n-21381 -24620\n30065 20906\n-16338 10252\n26045 -24128\n-25057 -18868\n19336 9679\n-5282 14433\n241 -16009\n-26581 -3556\n7504 29688\n-1067 28220\n6774 -26420\n-6825 -18794\n24374 32601\n-25422 28545\n21284 -15928\n-28405 -11005\n24476 19789\n-20605 21845\n518 -22258\n-24870 -6612\n21337 32721\n-9278 23204\n10462 -5279\n-3582 -27692\n12855 16392\n-12719 6812\n14495 -23781\n-6928 -11717\n25459 14517\n-22268 24367\n9714 -23115\n-28488 -30309\n14913 8388\n-24043 32660\n19889 -20156\n-15201 -20564\n16965 21954\n-11345 20166\n10607 -30216\n-21101 -11999\n23579 1631\n-17561 6659\n21486 -30819\n-21072 -29910\n10704 27891\n-5700 14159\n23976 -27877\n-7237 -2830\n19302 6647\n-7780 9199\n28999 -27656\n-7512 -1759\n27476 20104\n-22561 13038\n18477 -12845\n-26347 -24742\n6916 26343\n-32052 19355\n28396 -21015\n-5937 -14916\n32596 21756\n-5742 14345\n22990 -30573\n-4534 -13725\n19734 10958\n-23602 910\n18767 -14653\n-2004 -23323\n5519 13580\n-26359 26949\n32414 -31860\n-20799 -4137\n25339 9607\n-12231 21132\n16416 -26215\n-5243 -7608\n9479 19894\n-24770 25991\n11757 -24397\n-16225 -18109\n27990 26929\n-30108 9114\n26193 -9410\n-20381 -28336\n31741 30774\n-11290 6131\n31308 -27718\n-27443 -20495\n7175 10791\n-17561 5630\n12819 -5564\n-18677 -17113\n20466 22538\n-4744 2030\n8588 -28140\n-26894 -4884\n20016 3848\n-23785 19771\n3286 -257\n-7547 -26439\n19879 10991\n-3796 10527\n7359 -32012\n-25229 -14080\n8753 175\n-14323 16664\n25419 -9343\n-1897 -20816\n10524 6368\n-23815 11113\n12340 -20658\n-9863 -29514\n1451 31291\n-6242 3480\n13669 -1121\n-28214 -28296\n11667 1053\n-2667 19185\n31613 -3628\n-14614 -24486\n17792 22792\n-6685 17154\n9810 -15126\n-30365 -29892\n19854 22817\n-1416 8221\n2412 -6407\n-25491 -17416\n7631 11442\n-16975 13786\n3206 -18762\n-4757 -12826\n13003 24233\n-11816 28562\n24592 -25360\n-17558 -26790\n18940 1816\n-3935 20197\n432 -26091\n-4441 -23774\n20046 1459\n-25939 31285\n4284 -15443\n-24569 -26102\n5285 19542\n-2296 23336\n29377 -20004\n-12130 -25510\n26711 14716\n-7507 19754\n18432 -8990\n-11989 -29867\n26541 712\n-20481 23529\n12267 -5476\n-9831 -15686\n12390 12160\n-27056 4567\n23980 -5118\n-12162 -15803\n23604 8973\n-11940 22187\n31903 -30040\n-15715 -14547\n19773 14205\n-3892 24032\n25811 -22976\n-30106 -10843\n19100 26625\n-10314 9525\n8077 -7659\n-22670 -19875\n27869 2927\n-5095 812\n15301 -23920\n-14838 -13311\n23173 7872\n-2460 17803\n29351 -1356\n-2401 -27466\n21639 8083\n-20242 24541\n7187 -30301\n-27310 -13406\n4816 30377\n-30852 10738\n29470 -14311\n-7829 -18845\n28860 29287\n-31039 11867\n10894 -14866\n-15133 -13676\n27038 20824\n-1065 2287\n20834 -10345\n-13347 -14514\n25917 23720\n-15415 21833\n1863 -19548\n-13274 -16733\n21585 4777\n-13557 11591\n292 -32704\n-17221 -28893\n7434 24914\n-17153 14220\n23952 -12106\n-17086 -12968\n22409 28859\n-7313 17919\n18774 -27927\n-12915 -25268\n23141 32163\n-18921 1099\n29688 -4903\n-19172 -1024\n5928 17386\n-26085 13917\n21545 -30173\n-25958 -1803\n18127 30999\n-11894 1769\n15441 -9857\n-13475 -8283\n26190 22227\n-25884 26085\n16141 -17855\n-19735 -12024\n777 13675\n-32625 30475\n25517 -26149\n-32148 -13038\n22364 13907\n-10142 4187\n10932 -32424\n-30656 -21455\n14100 32414\n-3299 18583\n25179 -27936\n-18578 -30510\n19443 390\n-1044 5574\n19215 -2247\n-8408 -26405\n8752 23274\n-30743 31666\n3054 -17598\n-28084 -2256\n1269 14795\n-10855 19050\n30542 -25224\n-16666 -8911\n10976 23247\n-17299 27841\n7990 -13453\n-2644 -13256\n12930 4798\n-13247 18125\n14818 -28825\n-7806 -22755\n28387 26887\n-25378 9320\n22084 -4698\n-4362 -17485\n1020 16956\n-12935 14258\n24701 -19941\n-23613 -17334\n21307 6802\n-19405 10125\n30312 -4658\n-22961 -22227\n14338 20578\n-16999 11807\n3088 -7067\n-2769 -21980\n5161 32426\n-988 18260\n24629 -5729\n-12640 -10254\n11384 26509\n-6215 28506\n16588 -20776\n-14322 -2602\n21805 28367\n-13016 28963\n8059 -32630\n-27248 -25844\n28284 9306\n-4690 17639\n30241 -3127\n-32409 -13237\n12554 24251\n-12683 32415\n31563 -31803\n-27772 -31418\n19057 26022\n-18415 19595\n9920 -24759\n-5887 -19923\n18879 11374\n-6653 1452\n1527 -22976\n-17499 -26325\n23543 7310\n-6600 18507\n24731 -10452\n-26269 -19481\n22670 28707\n-22392 10352\n11534 -21329\n-13350 -1786\n7663 7279\n-16839 28268\n21731 -21755\n-4140 -27227\n15864 19543\n-13956 25936\n18786 -25210\n-17208 -26910\n31355 27366\n-25363 14707\n26632 -15321\n-934 -31918\n4542 15816\n-29931 26352\n12037 -3849\n-20008 -7030\n23291 4048\n-6678 14374\n16828 -27228\n-3651 -16231\n13025 27506\n-20917 21558\n15686 -16139\n-5840 -31863\n14353 25930\n-3194 23944\n23791 -29616\n-27260 -10012\n22433 30355\n-7467 8263\n28344 -1740\n-21577 -2773\n10652 26545\n-31014 20704\n6099 -16707\n-20490 -12450\n7552 19112\n-18647 23175\n26922 -30939\n-17131 -13702\n30399 1442\n-18500 15794\n17369 -25280\n-999 -12556\n6463 28012\n-30594 32412\n3503 -30211\n-13392 -11200\n9691 28666\n-6973 9155\n13745 -24086\n-26699 -9649\n26335 20191\n-3380 17514\n2199 -32082\n-8017 -11510\n3215 27094\n-23738 10008\n21837 -32625\n-3247 -1062\n14753 6460\n-16182 28695\n24947 -31764\n-12294 -22750\n24510 6291\n-20644 24567\n11741 -10558\n-15820 -2623\n27654 256\n-9234 8712\n2836 -7640\n-22473 -32621\n17289 21454\n-9252 10979\n32211 -9259\n-5531 -3601\n4046 5353\n-17296 9954\n29579 -7273\n-23859 -28888\n23376 30052\n-32163 30883\n18143 -28452\n-2902 -19954\n32251 3572\n-9914 18313\n5161 -4053\n-27676 -19859\n22964 10610\n-3274 7738\n24051 -3926\n-884 -16502\n26318 8029\n-26584 6434\n383 -15976\n-9631 -22101\n4246 15957\n-6785 9455\n31552 -24623\n-24496 -25714\n25032 18081\n-17012 19732\n31582 -27825\n-12306 -15378\n280 29867\n-6387 6726\n18998 -25434\n-3842 -4348\n32170 7038\n-9046 258\n31960 -11643\n-18193 -28670\n27546 20303\n-13192 24580\n31111 -4294\n-7588 -17768\n20597 8177\n-14472 3793\n19516 -12756\n-19315 -29583\n24509 25439\n-24296 31791\n19235 -9888\n-17677 -31052\n1897 4150\n-338 23720\n2845 -6409\n-21330 -10363\n19555 10296\n-26878 26890\n9276 -31059\n-31736 -27772\n30472 13003\n-24125 11497\n17994 -16550\n-14855 -8373\n4012 18295\n-2290 25884\n7491 -17294\n-1629 -30477\n11027 10348\n-8467 28220\n1494 -5242\n-12331 -28275\n1785 27898\n-28460 17192\n4584 -30269\n-1397 -22869\n30347 15382\n-7388 2948\n23824 -24208\n-19350 -29737\n7916 5852\n-21847 14901\n12572 -2189\n-1977 -3048\n945 13064\n-13794 15335\n31371 -5941\n-5985 -13454\n25445 25979\n-3674 13703\n3346 -18412\n-6371 -3996\n25605 7356\n-29101 21193\n14359 -13560\n-9191 -8854\n3973 27508\n-5727 9380\n11064 -10246\n-20971 -15749\n8266 8945\n-1799 4048\n10949 -31908\n-5823 -29045\n7598 32165\n-8912 19279\n5186 -4808\n-26890 -5880\n18559 22948\n-28152 28385\n13030 -20807\n-15043 -25762\n22400 809\n-12884 4494\n25631 -14431\n-16825 -5515\n998 3857\n-28618 30753\n3083 -1070\n-4108 -8144\n26076 17758\n-7381 21415\n23040 -24377\n-31921 -31506\n8448 7094\n-14085 4084\n23814 -9446\n-23538 -30453\n24804 16354\n-9084 12830\n26711 -13314\n-2028 -8611\n9613 12879\n-24434 18175\n18406 -20795\n-14607 -15942\n24568 28816\n-178 25015\n17621 -6567\n-11938 -19345\n24208 12250\n-1563 10793\n31229 -1339\n-10044 -6712\n2489 10119\n-30753 31609\n30826 -31061\n-10572 -29556\n28744 27539\n-22857 4756\n15325 -27443\n-7057 -20352\n9224 22306\n-26288 19624\n28488 -4730\n-11683 -7198\n26167 1784\n-10372 30120\n341 -11184\n-4201 -4883\n9223 25599\n-21129 9930\n2272 -19138\n-32416 -8359\n17182 15813\n-29845 13576\n31096 -15743\n-5466 -23078\n15895 29948\n-31509 12194\n10210 -32282\n-31869 -1121\n4350 13816\n-32646 28314\n7829 -13740\n-24384 -10797\n30167 17204\n-26876 12599\n16959 -20143\n-13490 -17123\n28952 20430\n-23711 19587\n17983 -6021\n-22578 -26847\n11818 27142\n-32297 27084\n28969 -29935\n-29176 -8193\n11244 30146\n-106 21799\n12614 -9367\n-12170 -11311\n14640 14093\n-1476 23528\n273 -3974\n-19528 -30673\n16701 27796\n-20655 15148\n7099 -11438\n-27105 -2643\n26699 31272\n-17462 7759\n423 -29538\n-14555 -3751\n30730 9023\n-13432 11638\n19695 -24024\n-28943 -27072\n7195 21874\n-1832 11270\n21981 -31662\n-6699 -24856\n28309 768\n-9229 10027\n10099 -5218\n-9262 -20779\n21633 3402\n-13698 13395\n17380 -23001\n-20464 -29690\n10847 16213\n-14583 16304\n14616 -10969\n-26519 -14217\n16543 22603\n-24431 27321\n1324 -25999\n-18211 -9313\n10280 9722\n-15872 31401\n19183 -18954\n-13539 -21519\n20181 12116\n-20054 22271\n22119 -27837\n-2557 -30627\n27635 28397\n-16177 6140\n29002 -14593\n-10986 -28210\n15556 7552\n-5346 9512\n1925 -913\n-20471 -27476\n4351 3179\n-6609 25550\n7096 -11532\n-7622 -11686\n10061 4142\n-7930 30075\n3000 -21623\n-3531 -17737\n22990 31472\n-3180 1667\n9483 -6584\n-9935 -27234\n6802 9978\n-16841 11388\n2416 -28700\n-1393 -25496\n16417 4409\n-18121 21697\n25429 -210\n-13472 -31897\n8692 960\n-19382 17136\n27231 -7533\n-22050 -3221\n1273 20548\n-31217 8044\n14310 -16998\n-6928 -3265\n22546 6815\n-5228 5596\n27509 -10648\n-3159 -16086\n16534 13134\n-26670 939\n8014 -27842\n-9016 -25487\n30415 499\n-3282 13958\n11492 -14345\n-12745 -303\n29307 32723\n-29960 15072\n16736 -3187\n-7027 -14840\n26443 16984\n-20242 14961\n16925 -4717\n-23922 -12981\n4455 5520\n-13640 27315\n300 -31814\n-26456 -2353\n20968 9901\n-11925 2916\n16848 -30898\n-17290 -23230\n7004 16003\n-32504 29959\n3331 -13640\n-4033 -23215\n11845 3086\n-18436 14179\n21999 -28931\n-17802 -30942\n9627 32489\n-31073 18434\n28278 -7877\n-21190 -6183\n21318 12759\n-4425 16563\n19371 -6095\n-555 -21738\n27812 25918\n-11531 11784\n6742 -24139\n-13249 -23437\n1801 2471\n-27019 28121\n9076 -28611\n-25959 -20216\n25658 23104\n-5055 7615\n180 -10151\n-2891 -16152\n3825 1882\n-10548 6554\n8443 -12746\n-14453 -12125\n18268 28907\n-10375 2572\n7393 -3301\n-5949 -11579\n16286 28941\n-12781 763\n23346 -7443\n-12752 -30380\n10317 13948\n-30635 12819\n1391 -20051\n-2735 -12461\n3314 12060\n-32414 7490\n19530 -18186\n-1328 -11708\n140 626\n-11957 28986\n31789 -10878\n-7675 -17505\n6668 7206\n-13170 24562\n25011 -27484\n-29582 -13730\n16602 18055\n-11373 3878\n32301 -11827\n-7866 -9101\n18768 21767\n-11729 5842\n3103 -15351\n-23332 -6066\n24890 24251\n-4317 4027\n21441 -1151\n-32709 -6566\n19548 2268\n-5220 12774\n20351 -12551\n-18282 -21889\n28908 24904\n-19789 799\n8313 -18094\n-26932 -21088\n13331 18690\n-26388 5491\n21251 -22777\n-280 -14565\n9840 28333\n-13383 21942\n29477 -19534\n-18529 -10674\n149 22805\n-3849 27134\n28956 -10362\n-7721 -9202\n28552 423\n-2451 8230\n21976 -31532\n-24548 -31696\n12612 32500\n-28334 27725\n18301 -19064\n-4566 -24829\n309 16178\n-4666 30548\n24034 -5973\n-22423 -29998\n21695 21179\n-29099 15715\n18196 -28703\n-15510 -29340\n26552 18060\n-9350 15461\n15316 -4885\n-19603 -25219\n6377 3783\n-7400 12935\n17429 -8412\n-31780 -25507\n5778 305\n-14336 27837\n19327 -24315\n-24881 -194\n23267 24501\n-7824 9533\n1519 -2653\n-15224 -5928\n30851 29407\n-30063 29185\n9204 -14802\n-19721 -19745\n14093 13410\n-24074 17226\n22355 -20621\n-715 -6271\n32653 2451\n-18143 29208\n10116 -167\n-27893 -21781\n6408 3563\n-3072 24243\n5683 -23963\n-1942 -27453\n13554 28040\n-26518 7973\n5056 -32457\n-21262 -1619\n19381 20397\n-12892 15805\n17344 -12788\n-15507 -23352\n18737 20798\n-29728 1933\n4474 -15811\n-22189 -32464\n2358 3909\n-17477 27373\n5226 -13379\n-25017 -19588\n9227 16752\n-31299 26103\n17601 -21859\n-9322 -23745\n2795 25744\n-11813 1289\n32739 -375\n-5187 -2934\n29827 29979\n-2314 28998\n23784 -15286\n-19999 -3738\n6517 14763\n-26022 3860\n20763 -15548\n-24233 -7332\n16600 7549\n-16574 11423\n9342 -5384\n-23268 -8978\n7350 6899\n-31151 16469\n13892 -24447\n-18597 -3299\n30349 13842\n-25319 14184\n4438 -1000\n-22292 -6428\n11214 1797\n-8810 21584\n20687 -2414\n-26414 -16710\n31329 21656\n-25166 7494\n21632 -31009\n-25670 -12270\n7455 16062\n-20800 23242\n17772 -20597\n-27775 -18213\n14422 30988\n-29437 9758\n27212 -961\n-18771 -14078\n5704 5435\n-16602 1992\n19469 -4289\n-14352 -9234\n13229 23978\n-6717 9748\n10829 -8468\n-598 -24063\n7212 16345\n-1313 912\n16354 -15551\n-26266 -9700\n5862 18159\n-16022 19854\n22355 -3241\n-20646 -1255\n8940 9781\n-6974 15013\n12125 -11549\n-25110 -12975\n17348 21401\n-14289 31024\n12143 -4171\n-19165 -3050\n7655 12844\n-31130 11726\n27694 -28871\n-29118 -6345\n25414 19621\n-24312 480\n31730 -21512\n-27859 -9087\n4033 8156\n-8158 16910\n6983 -7402\n-18954 -24262\n30126 30031\n-7763 3267\n8558 -11820\n-10146 -7258\n6744 19872\n-9970 4268\n17625 -7411\n-7346 -4987\n25213 23316\n-363 23357\n12210 -29510\n-29091 -14191\n3791 3094\n-20737 14124\n25684 -656\n-10418 -7678\n2163 9650\n-17674 6900\n29136 -17953\n-22127 -30197\n32134 28187\n-6515 10067\n30826 -21933\n-19008 -3491\n19859 26406\n-26425 13773\n32282 -26571\n-1758 -26975\n17950 6348\n-17648 30503\n4875 -25719\n-2774 -27136\n12060 27564\n-14144 8684\n17951 -1937\n-26890 -867\n10105 4998\n-29027 12523\n26985 -4956\n-12590 -745\n20881 2497\n-26024 12727\n9906 -4863\n-10316 -26102\n20407 6119\n-9716 8998\n25589 -11527\n-20800 -16500\n4273 29220\n-5179 25554\n30690 -1508\n-17724 -13133\n27705 25034\n-25355 12443\n11871 -12903\n-23621 -29428\n3966 32719\n-26114 13092\n7426 -14923\n-9652 -24029\n14753 32589\n-12883 8273\n18328 -10921\n-12471 -8960\n18488 2049\n-3909 26319\n5282 -14465\n-9421 -30811\n5071 8397\n-14003 28044\n4563 -29496\n-10829 -24941\n7266 10807\n-25997 25147\n2195 -1813\n-8928 -1468\n1508 26856\n-15445 6097\n25214 -4035\n-12802 -5967\n25787 8237\n-28580 29963\n24038 -31442\n-5509 -18740\n23106 15481\n-18595 29414\n4685 -31286\n-19982 -22011\n325 3553\n-30098 11045\n17644 -1734\n-6038 -5690\n10889 4766\n-10820 30414\n3375 -29375\n-12778 -9991\n26945 20879\n-4256 7341\n18742 -3134\n-31020 -8321\n28570 17589\n-2338 4048\n25173 -20425\n-20048 -23623\n15152 21429\n-15192 15881\n24981 -10951\n-20383 -19455\n4502 24153\n-30310 28271\n21554 -19971\n-24887 -24529\n19667 22287\n-24963 12254\n26 -4141\n-1417 -31977\n30687 28008\n-31865 22386\n26740 -24665\n-1498 -1017\n15146 18587\n-28713 3856\n8727 -18559\n-27331 -26548\n6422 20992\n-12037 29661\n30734 -32761\n-17585 -21332\n31352 3989\n-26003 17605\n24603 -3591\n-17509 -24853\n2842 3708\n-15089 8437\n16177 -31822\n-9077 -24760\n26172 23931\n-24907 22113\n32249 -6485\n-23753 -11777\n4878 6011\n-30311 16448\n27982 -19207\n-13599 -5945\n20792 32265\n-13338 13707\n31424 -28981\n-5000 -21420\n13651 9176\n-28880 1921\n13589 -22545\n-10729 -2604\n5485 10045\n-28679 4134\n8387 -15027\n-28027 -26509\n17800 31922\n-724 20671\n23671 -21911\n-24395 -17703\n9243 18771\n-30814 8279\n5522 -2333\n-9402 -24407\n30352 19812\n-24158 27197\n19623 -3080\n-28670 -7166\n5573 24265\n-4517 31876\n27134 -11776\n-14495 -24833\n27275 29581\n-7830 26242\n8723 -10768\n-17403 -31431\n14890 15452\n-29096 26450\n10776 -2344\n-32195 -4798\n17115 20232\n-22501 27730\n15471 -5276\n-8315 -13782\n10316 24839\n-20333 8101\n27953 -22691\n-11774 -27396\n12320 4596\n-10228 1714\n20137 -14042\n-14328 -22977\n20076 17930\n-29503 12451\n26074 -2238\n-30826 -136\n571 4268\n-17835 29928\n28405 -21045\n-14890 -31579\n523 12000\n-18087 16817\n29156 -1030\n-4448 -23103\n14414 4559\n-4405 31351\n9922 -20061\n-25610 -1980\n4074 31046\n-25709 26228\n10848 -840\n-17016 -16222\n4281 7736\n-9209 12069\n706 -2364\n-4049 -5174\n19465 27962\n-10394 28367\n29599 -23952\n-31373 -1881\n6429 20742\n-24738 20216\n8933 -9984\n-17656 -11872\n8618 3321\n-16504 14058\n3379 -22572\n-23990 -27111\n15963 10132\n-791 2612\n19037 -25111\n-18489 -11279\n9038 25855\n-14991 30504\n8683 -30377\n-21836 -20219\n23701 20865\n-12419 21854\n28570 -23342\n-11148 -31574\n6838 23561\n-5801 5167\n22490 -19156\n-8169 -7884\n20267 169\n-1869 14651\n19534 -26928\n-24106 -29324\n6371 789\n-21966 28388\n24655 -17593\n-24934 -4557\n191 14632\n-12064 8912\n28010 -26956\n-15500 -8262\n1558 25952\n-2632 13419\n2013 -678\n-13020 -180\n31537 8541\n-26851 13155\n17182 -3822\n-8300 -7000\n12751 22630\n-26527 11818\n18004 -8488\n-12964 -13430\n30626 20964\n-7872 4215\n12507 -13251\n-28865 -21207\n25296 19428\n-21149 4549\n20165 -2828\n-5206 -13896\n28276 9625\n-29728 13267\n7508 -10168\n-12742 -24089\n26394 6616\n-29002 20770\n8064 -18783\n-12492 -8095\n10054 2459\n-21932 15227\n631 -251\n-5363 -19634\n9198 22143\n-15087 27238\n4632 -21357\n-5662 -27184\n18684 19782\n-2382 14772\n32120 -27640\n-2305 -30328\n9677 8277\n-2070 14326\n27486 -24260\n-6054 -16367\n27060 29238\n-15917 1283\n24262 -31580\n-18922 -19327\n12407 28696\n-8840 16502\n27489 -12081\n-24061 -19219\n7889 31818\n-7347 2093\n14866 -30741\n-28901 -9244\n20207 26820\n-21837 1739\n23923 -26304\n-30460 -1551\n3315 16798\n-22153 4663\n30287 -12623\n-1133 -4325\n25460 10134\n-31918 23068\n10277 -21951\n-26043 -2969\n30716 14991\n-13975 9831\n23979 -19575\n-2106 -10926\n14216 5132\n-5685 9676\n23881 -19132\n-12948 -26278\n21259 20921\n-12552 19520\n11674 -5434\n-3398 -25228\n3052 12259\n-20650 16768\n18926 -25217\n-31520 -25195\n20612 13307\n-29508 24457\n9930 -19846\n-16840 -20949\n10401 26391\n-7190 16670\n1639 -22558\n-567 -23133\n29189 8305\n-29684 24646\n7471 -32134\n-315 -2589\n27879 24550\n-14788 17611\n1603 -21726\n-16371 -2609\n6257 14456\n-769 17084\n2040 -17322\n-25687 -25914\n24384 19148\n-19514 18668\n10325 -16463\n-29101 -24028\n5096 20397\n-22931 16240\n4503 -9372\n-20757 -21824\n15726 12935\n-26435 30245\n18093 -4158\n-10750 -16786\n13259 15341\n-10773 9000\n10172 -23371\n-2734 -13444\n3184 19475\n-8168 29020\n18076 -6328\n-24766 -29130\n22204 9557\n-12335 7911\n2905 -10466\n-16795 -5532\n10375 18094\n-7281 11189\n10419 -23561\n-775 -19255\n31387 22081\n-16585 6132\n24734 -9425\n-9110 -4956\n21814 7124\n-9319 12950\n6339 -23232\n-818 -6864\n19594 2896\n-23054 30675\n16125 -3266\n-27543 -8410\n19773 24387\n-12436 32676\n32221 -25512\n-26839 -28104\n14569 17246\n-13157 31817\n16678 -5284\n-29143 -22890\n21148 3831\n-31488 18627\n2642 -25550\n-24784 -24981\n31577 3976\n-19832 1883\n5387 -13987\n-15311 -20641\n16021 25390\n-3829 20505\n19379 -13953\n-19766 -29676\n11963 25387\n-561 28494\n3037 -812\n-3129 -25173\n4521 7781\n-22779 13323\n15057 -30028\n-21857 -21186\n23857 25572\n-5303 20135\n10764 -28909\n-29453 -666\n921 23895\n-14044 16189\n19390 -18429\n-30188 -11339\n4123 14736\n-16756 21548\n14154 -11473\n-23940 -3526\n4965 26372\n-1952 14485\n32201 -13473\n-4269 -32510\n24602 24140\n-19986 4832\n20104 -27143\n-9751 -6253\n5968 31911\n-15248 13112\n27525 -28548\n-31936 -27022\n1296 28277\n-6520 21002\n28150 -12796\n-9343 -16228\n19673 10685\n-25654 24202\n23234 -11061\n-5756 -31474\n26141 30888\n-11216 23854\n1797 -13403\n-15797 -30657\n26818 5124\n-17499 22065\n19600 -26751\n-20347 -605\n10658 19906\n-18051 21521\n3687 -5907\n-29683 -24280\n9996 19321\n-24583 29201\n3394 -18032\n-16022 -24389\n17729 20704\n-29754 31416\n3085 -18000\n-30385 -2622\n23288 6743\n-3203 5712\n17512 -21076\n-12261 -20831\n3546 18271\n-6366 2408\n11047 -17536\n-12968 -22473\n32518 21790\n-89 851\n1235 -22458\n-13507 -18592\n18319 10461\n-408 31911\n18983 -31310\n-25042 -15757\n17657 10889\n-25425 9663\n23700 -12397\n-13254 -13629\n13759 28469\n-29905 25913\n2750 -1705\n-7014 -6624\n9680 29589\n-24181 26232\n25852 -5243\n-30922 -22443\n11021 26245\n-16946 14370\n25052 -3773\n-25567 -854\n29133 896\n-11277 31395\n21148 -27184\n-17638 -4255\n6490 32042\n-21155 7849\n10162 -3576\n-15605 -6341\n24689 30663\n-10147 13223\n1350 -5659\n-24180 -12557\n8645 5057\n-14415 18002\n10162 -9734\n-13729 -20800\n8317 2086\n-24063 20263\n6153 -19207\n-8461 -18987\n9393 19751\n-16030 12514\n12429 -28371\n-31260 -19487\n26609 22171\n-7467 18184\n28983 -23042\n-3465 -32111\n20927 24186\n-31288 1119\n9267 -18063\n-25568 -8436\n1040 16226\n-1135 8560\n21090 -601\n-23042 -19596\n14287 24341\n-22792 23308\n2006 -8612\n-2468 -12182\n26969 10488\n-5204 16580\n26713 -16792\n-465 -27000\n21762 6294\n-12854 4976\n5095 -23233\n-20323 -28698\n17294 21531\n-16036 13225\n23343 -9102\n-21902 -1640\n9913 22234\n-22058 8270\n17430 -722\n-30294 -17107\n1456 11208\n-30311 1283\n24116 -4678\n-2835 -9681\n14742 14335\n-7823 22701\n26453 -12548\n-11508 -16473\n31232 5435\n-16359 3064\n16377 -9742\n-19833 -27240\n14713 31840\n-32332 18385\n12244 -21189\n-7928 -2430\n20990 16370\n-16556 15340\n31310 -30066\n-19737 -26401\n387 22171\n-4491 32063\n17157 -31681\n-1369 -5977\n13933 30121\n-20352 29829\n16966 -25920\n-20363 -28467\n11285 15245\n-11702 23741\n18840 -13797\n-13906 -2879\n22348 27230\n-1131 20904\n6193 -30854\n-16297 -26129\n8913 12884\n-29044 28238\n32639 -20830\n-13659 -32451\n31709 3149\n-18615 31609\n22433 -8334\n-15755 -3954\n11928 9291\n-21679 11833\n17387 -13466\n-17198 -21436\n4769 21492\n-26348 30302\n18277 -3304\n-11916 -24393\n1929 11536\n-14480 23809\n10572 -11333\n-28098 -1087\n16728 5135\n-6867 29436\n10639 -31583\n-19779 -18892\n25863 27265\n-30592 20333\n1363 -15180\n-8274 -29344\n29957 18844\n-8566 7735\n19312 -2050\n-14730 -4976\n3507 19641\n-29993 16001\n243 -27356\n-13142 -14708\n29159 27607\n-18718 28981\n5530 -32028\n-2169 -8426\n26476 26135\n-11890 6018\n10330 -6755\n-31879 -31633\n25472 15422\n-339 347\n7132 -9018\n-21610 -18222\n1877 15158\n-18821 19446\n31484 -20365\n-24287 -13323\n27793 5773\n-27358 20557\n11593 -4395\n-19702 -7027\n16846 4852\n-9675 8608\n31624 -1607\n-23189 -1591\n14107 16578\n-26569 7153\n25649 -31738\n-18166 -17197\n14969 18031\n-27628 647\n16368 -191\n-7460 -3499\n1119 15129\n-11100 11884\n13860 -1781\n-19586 -17424\n29750 4354\n-7635 19694\n356 -5984\n-4420 -11836\n15581 4112\n-18977 11810\n1013 -5033\n-11508 -21522\n24870 24652\n-9896 9052\n11349 -2265\n-28398 -25597\n87 9315\n-18912 28088\n10676 -4578\n-3300 -10601\n29355 9256\n-27348 15509\n28790 -18967\n-19292 -4933\n13775 1808\n-12707 15381\n3762 -20398\n-30253 -19080\n10597 7861\n-22528 13214\n20662 -22085\n-10501 -22697\n7044 16724\n-6578 13404\n13696 -18779\n-26598 -24101\n9525 13390\n-29972 22461\n13126 -32466\n-1956 -22781\n22263 9899\n-15254 3571\n19439 -31091\n-26217 -31541\n13629 15250\n-29243 31861\n29080 -15210\n-29745 -4438\n1259 9426\n-537 27774\n15121 -10438\n-2894 -30956\n26588 19804\n-14556 18828\n26717 -31226\n-6373 -9993\n18783 5063\n-6468 12259\n14133 -15967\n-5487 -16065\n6838 5323\n-31650 2824\n1925 -28336\n-19770 -14252\n24470 1478\n-32351 17479\n20461 -3980\n-30949 -5224\n2729 7995\n-18036 301\n25154 -25592\n-9703 -10516\n10767 5965\n-4083 29198\n11 -12250\n-28425 -29141\n25560 11336\n-3709 12416\n16132 -2687\n-1255 -31061\n17036 16153\n-7626 11742\n15774 -16662\n-1651 -20287\n20899 32209\n-16932 12742\n10109 -18738\n-10610 -3780\n2573 7718\n-30956 26779\n2553 -17228\n-13053 -29977\n3756 10226\n-22804 516\n30878 -3391\n-16385 -2038\n14549 20401\n-931 24427\n428 -25803\n-24000 -19481\n29907 24839\n-25652 21120\n29335 -6674\n-29262 -3009\n28259 14648\n-16759 27571\n27783 -21021\n-29972 -11572\n3385 20911\n-7598 22717\n18649 -22872\n-30544 -6458\n16762 23160\n-26417 21272\n19869 -1554\n-31891 -12703\n8255 25798\n-30955 7810\n12823 -11007\n-9026 -22452\n20505 7533\n-27355 6014\n29502 -6582\n-7446 -719\n17799 5992\n-12948 20947\n30784 -13619\n-30620 -26310\n20354 9813\n-5054 18187\n1787 -5205\n-13494 -10872\n29681 18676\n-24723 5365\n2181 -13409\n-13080 -11845\n7221 9132\n-2658 19491\n7589 -15229\n-26315 -25233\n4511 2822\n-527 20077\n856 -19254\n-25005 -11845\n18933 7727\n-26768 15724\n18253 -25339\n-11247 -25933\n1009 29050\n-3954 30976\n19562 -21151\n-27798 -20251\n13249 18652\n-18770 11723\n8005 -15579\n-25083 -15651\n16264 25199\n-2661 29619\n6827 -10698\n-10827 -12637\n3035 20720\n-22768 31844\n23580 -10604\n-23559 -5318\n22597 26177\n-3536 20940\n2124 -1571\n-28293 -32223\n27588 11751\n-25844 9373\n24484 -1849\n-29293 -1836\n4426 30605\n-24030 10958\n8896 -17240\n-6717 -13750\n25661 29055\n-27686 3611\n18159 -783\n-4806 -28554\n27895 21296\n-30711 27264\n31414 -13140\n-11180 -568\n3399 6068\n-11920 23746\n31308 -26621\n-20458 -14677\n15598 18502\n-8900 8422\n13343 -28230\n-20044 -1273\n5666 22212\n-15738 16568\n15694 -28494\n-29171 -12354\n12815 2094\n-32302 21061\n5677 -8858\n-27349 -10191\n21841 28459\n-2926 18017\n16069 -4241\n-1594 -20550\n27771 30340\n-4957 18210\n6993 -25853\n-14144 -27854\n22675 31655\n-31796 9827\n10433 -20880\n-28504 -5525\n2963 31013\n-25788 23619\n315 -93\n-18118 -15947\n29930 16692\n-29909 5539\n12437 -5723\n-29989 -19622\n15865 18478\n-32243 21163\n22749 -17894\n-6625 -16092\n22167 32528\n-27547 5446\n9937 -28990\n-21691 -25132\n20877 15868\n-1002 8097\n5735 -23813\n-11848 -6486\n4378 16055\n-30735 17072\n1862 -29381\n-20595 -13085\n17265 10028\n-17612 15529\n8523 -4968\n-3830 -20684\n12086 9191\n-25336 10118\n2309 -31166\n-16357 -23726\n20484 4763\n-18432 30600\n25657 -11514\n-25635 -4245\n17130 15516\n-13922 2479\n11872 -821\n-8171 -3157\n746 8550\n-24112 16963\n23844 -13290\n-841 -31813\n30072 20756\n-19859 15182\n21734 -31353\n-8862 -20420\n18177 22250\n-12614 799\n11578 -18597\n-32543 -32690\n5985 13259\n-25879 27336\n17769 -2325\n-16214 -25843\n30316 26819\n-21609 25761\n10478 -29142\n-14240 -7920\n12390 4479\n-10932 29380\n17403 -26327\n-17069 -2582\n27275 3792\n-21507 9615\n26609 -27756\n-27140 -18005\n3976 16685\n-19829 10789\n8171 -10700\n-24188 -19874\n3071 21294\n-17854 26860\n21812 -31635\n-16580 -6773\n23303 5137\n-3491 13328\n17356 -5697\n-14812 -24139\n25258 25144\n-22657 1535\n16103 -14520\n-25497 -18469\n8293 9640\n-19654 20459\n17773 -28354\n-293 -23304\n9644 23180\n-25718 22604\n26235 -25481\n-1917 -21627\n25700 11184\n-7591 10587\n30177 -17437\n-30193 -8972\n19302 7431\n-31494 3992\n4258 -12786\n-32423 -27851\n13059 17957\n-21584 10309\n29048 -17759\n-32537 -9677\n6522 7366\n-30426 32744\n5453 -8224\n-18578 -13994\n12163 20293\n-5642 16589\n12227 -4052\n-14517 -13056\n13512 12070\n-3035 29057\n28588 -16512\n-8694 -8174\n9319 11149\n-26973 17241\n5011 -32523\n-1055 -19098\n12658 23492\n-22322 28905\n20017 -3008\n-5325 -11948\n4974 6585\n-17938 11405\n31481 -31951\n-6128 -27856\n8919 11389\n-28488 7907\n8845 -12492\n-2126 -20791\n17819 710\n-9523 30031\n20294 -20782\n-4097 -27159\n11162 32110\n-29638 118\n12720 -25809\n-20724 -11814\n23341 18930\n-4360 25284\n5387 -29301\n-32106 -13091\n3484 19700\n-7572 20198\n9163 -13116\n-16503 -29774\n23462 7354\n-13594 22096\n31769 -21808\n-30341 -10475\n14844 2988\n-20189 18360\n5201 -19899\n-13776 -10947\n17862 17114\n-28212 7577\n28546 -15405\n-9962 -27810\n24861 27764\n-8969 31921\n8688 -23610\n-11576 -218\n8080 28239\n-23132 17028\n9621 -2169\n-24436 -12222\n672 13415\n-32448 9175\n32412 -19686\n-20521 -7720\n1603 2904\n-26845 23349\n12260 -2401\n-9786 -1013\n32100 2787\n-8173 26477\n32644 -9261\n-1371 -29316\n", "output": "NO\nYES\nNO\nYES\nYES\nNO\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/distinct-occurrences/1
Solve the following coding problem using the programming language python: Given two strings S and T of length n and m respectively. Find count of distinct occurrences of T in S as a sub-sequence. Example 1: Input: S = "banana" , T = "ban" Output: 3 Explanation: There are 3 sub-sequences: [ban], [ba n], [b an]. Example 2: Input: S = "geeksforgeeks" , T = "ge" Output: 6 Explanation: There are 6 sub-sequences: [ge], [ ge], [g e], [g e] [g e] and [ g e]. Your Task: You don't need to read input or print anything.Your task is to complete the function subsequenceCount() which takes two strings as argument S and T and returns the count of the sub-sequences modulo 10^{9} + 7. Expected Time Complexity: O(n*m). Expected Auxiliary Space: O(n*m). Constraints: 1 ≤ length of(T) ≤ 100 1 ≤ length of(S) ≤ 8000 Write your solution by modifying this code: ```python # Your task is to complete this function # Finction should return Integer class Solution: def sequenceCount(self,arr1, arr2): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def sequenceCount(self, arr1, arr2): n = len(arr1) m = len(arr2) if n < m: return 0 dp = [[0] * (m + 1) for _ in range(n + 1)] for i in range(n + 1): dp[i][0] = 1 for i in range(1, n + 1): for j in range(1, m + 1): p1 = dp[i - 1][j] p2 = 0 if arr1[i - 1] == arr2[j - 1]: p2 = dp[i - 1][j - 1] dp[i][j] = (p1 + p2) % 1000000007 return dp[n][m] ```
vfc_134418
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/distinct-occurrences/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "S = \"banana\" , T = \"ban\"", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "S = \"geeksforgeeks\" , T = \"ge\"", "output": "6", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Compute A + B. Constraints * -1000 ≤ A, B ≤ 1000 Input The input will consist of a series of pairs of integers A and B separated by a space, one pair of integers per line. The input will be terminated by EOF. Output For each pair of input integers A and B, you must output the sum of A and B in one line. Example Input 1 2 10 5 100 20 Output 3 15 120 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ans = '' while True: try: info = input() except: break if ans != '': ans += '\n' info_2 = info.split() ans += str(int(info_2[0]) + int(info_2[1])) print(ans) ```
vfc_134420
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 2\n10 5\n101 20", "output": "3\n15\n121\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 2\n10 4\n101 20", "output": "3\n14\n121\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 2\n10 4\n101 37", "output": "3\n14\n138\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/sub-array-sum-divisible-by-k2617/1
Solve the following coding problem using the programming language python: You are given an array A of N positive and/or negative integers and a value K. The task is to find the count of all sub-arrays whose sum is divisible by K. Example 1: Input: N = 6, K = 5 arr[] = {4, 5, 0, -2, -3, 1} Output: 7 Explanation: There are 7 sub-arrays whose is divisible by K {4, 5, 0, -2, -3, 1}, {5}, {5, 0}, {5, 0, -2, -3}, {0}, {0, -2, -3} and {-2, -3} Example 2: Input: N = 6, K = 2 arr[] = {2, 2, 2, 2, 2, 2} Output: 21 Explanation: All subarray sums are divisible by 7 Your Task: This is a function problem. You don't need to take any input, as it is already accomplished by the driver code. You just need to complete the function subCount() that takes array arr, integer N, and integer K as parameters and returns the desired output. Expected Time Complexity: O(N+K). Expected Auxiliary Space: O(K). Constraints: 2 ≤ N ≤ 10^{5} Write your solution by modifying this code: ```python class Solution: def subCount(self,arr, n, k): # Your code goes here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def subCount(self, arr, n, k): hashmap = {} currSum = 0 for i in range(n): currSum += arr[i] arr[i] = currSum arr[i] %= k hashmap[arr[i]] = hashmap.get(arr[i], 0) + 1 ans = 0 for x in hashmap.keys(): y = hashmap[x] if x == 0: ans += y * (y + 1) // 2 else: ans += y * (y - 1) // 2 return ans ```
vfc_134424
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/sub-array-sum-divisible-by-k2617/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 6, K = 5\n arr[] = {4, 5, 0, -2, -3, 1}", "output": "7", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 6, K = 2\n arr[] = {2, 2, 2, 2, 2, 2}", "output": "21", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/DEC15/problems/CHEFST
Solve the following coding problem using the programming language python: Chef has two piles of stones with him, one has n1 stones and the other has n2 stones. Fired up by boredom, he invented a game with the two piles. Before the start of the game Chef chooses an integer m. In the j-th move: - He chooses a number xj such that 1 ≤ xj ≤ m, and removes xj stones from both the piles (this is only possible when both the piles have ≥ xj stones). - The number chosen must be unique over all the moves in the game. That is, for all k < j, xj ≠ xk. The game stops when Chef is unable to make any more moves. Chef wants to make the moves in such a way that the sum of the number of stones remaining in the two piles is minimized. Please help Chef find this. -----Input----- - The first line of input contains an integer T denoting the number of test cases. - Each test case consists of 1 line with three integers — n1, n2 and m — separated by single spaces. -----Output----- For each test case, output a single line containing the minimum sum of the number of stones of two piles. -----Constraints----- Subtask 1 : (5 pts) - 1 ≤ T ≤ 100 - 0 ≤ m ≤ 18 - 0 ≤ n1, n2 ≤ 100 Subtask 2 : (25 pts) - 1 ≤ T ≤ 1000 - 0 ≤ m ≤ 10000 - 0 ≤ n1, n2 ≤ 10000 Subtask 3 : (70 pts) - 1 ≤ T ≤ 105 - 0 ≤ m ≤ 109 - 0 ≤ n1, n2 ≤ 1018 -----Example----- Input:3 1 1 1 1 2 1 4 5 2 Output:0 1 3 -----Explanation----- Example case 1. : Remove 1 stone from each of the piles. Now 0 stones are remaining, so chef cannot remove any more stones from the piles. Hence, answer is 0+0 = 0 Example case 2. : Again, remove 1 stone from both the piles to get (0,1) stones. Now chef cannot remove any more stones from pile 1, so he stops. Hence, answer is 0+1 = 1. Example case 3. : First remove 1 stone from both the piles to get (3,4) stones. Now, remove 2 stones from both the piles so that (1,2) stones are remaining. Now chef cannot remove any more stones owing to the condition that he cannot remove the same number of stones twice. So, the answer is 1+2 = 3. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys n = int(sys.stdin.readline()) for _ in range(n): (p1, p2, m) = list(map(int, sys.stdin.readline().split())) l = min(p1, p2) q = min(p1, p2) d = min(m * (m + 1) / 2, q) print(p1 - d + p2 - d) ```
vfc_134425
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/DEC15/problems/CHEFST", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 1 1\n1 2 1\n4 5 2\n", "output": "0\n1\n3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1204/A
Solve the following coding problem using the programming language python: In the city of Saint Petersburg, a day lasts for $2^{100}$ minutes. From the main station of Saint Petersburg, a train departs after $1$ minute, $4$ minutes, $16$ minutes, and so on; in other words, the train departs at time $4^k$ for each integer $k \geq 0$. Team BowWow has arrived at the station at the time $s$ and it is trying to count how many trains have they missed; in other words, the number of trains that have departed strictly before time $s$. For example if $s = 20$, then they missed trains which have departed at $1$, $4$ and $16$. As you are the only one who knows the time, help them! Note that the number $s$ will be given you in a binary representation without leading zeroes. -----Input----- The first line contains a single binary number $s$ ($0 \leq s < 2^{100}$) without leading zeroes. -----Output----- Output a single number — the number of trains which have departed strictly before the time $s$. -----Examples----- Input 100000000 Output 4 Input 101 Output 2 Input 10100 Output 3 -----Note----- In the first example $100000000_2 = 256_{10}$, missed trains have departed at $1$, $4$, $16$ and $64$. In the second example $101_2 = 5_{10}$, trains have departed at $1$ and $4$. The third example is explained in the statements. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python s = input() if s == '0' or s == '1': print(0) else: x = len(s) if x % 2 != 0 and '1' not in s[1:]: print((x - 1) // 2) else: print((x + 1) // 2) ```
vfc_134429
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1204/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "100000000\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1328/E
Solve the following coding problem using the programming language python: You are given a rooted tree consisting of $n$ vertices numbered from $1$ to $n$. The root of the tree is a vertex number $1$. A tree is a connected undirected graph with $n-1$ edges. You are given $m$ queries. The $i$-th query consists of the set of $k_i$ distinct vertices $v_i[1], v_i[2], \dots, v_i[k_i]$. Your task is to say if there is a path from the root to some vertex $u$ such that each of the given $k$ vertices is either belongs to this path or has the distance $1$ to some vertex of this path. -----Input----- The first line of the input contains two integers $n$ and $m$ ($2 \le n \le 2 \cdot 10^5$, $1 \le m \le 2 \cdot 10^5$) — the number of vertices in the tree and the number of queries. Each of the next $n-1$ lines describes an edge of the tree. Edge $i$ is denoted by two integers $u_i$ and $v_i$, the labels of vertices it connects $(1 \le u_i, v_i \le n, u_i \ne v_i$). It is guaranteed that the given edges form a tree. The next $m$ lines describe queries. The $i$-th line describes the $i$-th query and starts with the integer $k_i$ ($1 \le k_i \le n$) — the number of vertices in the current query. Then $k_i$ integers follow: $v_i[1], v_i[2], \dots, v_i[k_i]$ ($1 \le v_i[j] \le n$), where $v_i[j]$ is the $j$-th vertex of the $i$-th query. It is guaranteed that all vertices in a single query are distinct. It is guaranteed that the sum of $k_i$ does not exceed $2 \cdot 10^5$ ($\sum\limits_{i=1}^{m} k_i \le 2 \cdot 10^5$). -----Output----- For each query, print the answer — "YES", if there is a path from the root to some vertex $u$ such that each of the given $k$ vertices is either belongs to this path or has the distance $1$ to some vertex of this path and "NO" otherwise. -----Example----- Input 10 6 1 2 1 3 1 4 2 5 2 6 3 7 7 8 7 9 9 10 4 3 8 9 10 3 2 4 6 3 2 1 5 3 4 8 2 2 6 10 3 5 4 7 Output YES YES YES YES NO NO -----Note----- The picture corresponding to the example: [Image] Consider the queries. The first query is $[3, 8, 9, 10]$. The answer is "YES" as you can choose the path from the root $1$ to the vertex $u=10$. Then vertices $[3, 9, 10]$ belong to the path from $1$ to $10$ and the vertex $8$ has distance $1$ to the vertex $7$ which also belongs to this path. The second query is $[2, 4, 6]$. The answer is "YES" as you can choose the path to the vertex $u=2$. Then the vertex $4$ has distance $1$ to the vertex $1$ which belongs to this path and the vertex $6$ has distance $1$ to the vertex $2$ which belongs to this path. The third query is $[2, 1, 5]$. The answer is "YES" as you can choose the path to the vertex $u=5$ and all vertices of the query belong to this path. The fourth query is $[4, 8, 2]$. The answer is "YES" as you can choose the path to the vertex $u=9$ so vertices $2$ and $4$ both have distance $1$ to the vertex $1$ which belongs to this path and the vertex $8$ has distance $1$ to the vertex $7$ which belongs to this path. The fifth and the sixth queries both have answer "NO" because you cannot choose suitable vertex $u$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline (n, m) = [int(i) for i in input().split()] graph = [[] for i in range(n)] for j in range(n - 1): (v, u) = [int(i) - 1 for i in input().split()] graph[v].append(u) graph[u].append(v) parent = [0] * n tin = [0] * n tout = [0] * n time = 0 queue = [(0, 0)] while queue: (current, visit) = queue.pop() if visit == 0: queue.append((current, 1)) time += 1 tin[current] = time for child in graph[current]: if child != parent[current]: parent[child] = current queue.append((child, 0)) else: tout[current] = time for j in range(m): q = [int(i) - 1 for i in input().split()] q = q[1:] for i in range(len(q)): q[i] = parent[q[i]] cin = 1 cout = n for i in q: cin = max(cin, tin[i]) cout = min(cout, tout[i]) if cin > cout: print('NO') else: print('YES') ```
vfc_134433
{ "difficulty": "hard", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1328/E", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 6\n1 2\n1 3\n1 4\n2 5\n2 6\n3 7\n7 8\n7 9\n9 10\n4 3 8 9 10\n3 2 4 6\n3 2 1 5\n3 4 8 2\n2 6 10\n3 5 4 7\n", "output": "YES\nYES\nYES\nYES\nNO\nNO\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1155/A
Solve the following coding problem using the programming language python: You are given a string $s$ consisting of $n$ lowercase Latin letters. Let's define a substring as a contiguous subsegment of a string. For example, "acab" is a substring of "abacaba" (it starts in position $3$ and ends in position $6$), but "aa" or "d" aren't substrings of this string. So the substring of the string $s$ from position $l$ to position $r$ is $s[l; r] = s_l s_{l + 1} \dots s_r$. You have to choose exactly one of the substrings of the given string and reverse it (i. e. make $s[l; r] = s_r s_{r - 1} \dots s_l$) to obtain a string that is less lexicographically. Note that it is not necessary to obtain the minimum possible string. If it is impossible to reverse some substring of the given string to obtain a string that is less, print "NO". Otherwise print "YES" and any suitable substring. String $x$ is lexicographically less than string $y$, if either $x$ is a prefix of $y$ (and $x \ne y$), or there exists such $i$ ($1 \le i \le min(|x|, |y|)$), that $x_i < y_i$, and for any $j$ ($1 \le j < i$) $x_j = y_j$. Here $|a|$ denotes the length of the string $a$. The lexicographic comparison of strings is implemented by operator < in modern programming languages​​. -----Input----- The first line of the input contains one integer $n$ ($2 \le n \le 3 \cdot 10^5$) — the length of $s$. The second line of the input contains the string $s$ of length $n$ consisting only of lowercase Latin letters. -----Output----- If it is impossible to reverse some substring of the given string to obtain a string which is lexicographically less, print "NO". Otherwise print "YES" and two indices $l$ and $r$ ($1 \le l < r \le n$) denoting the substring you have to reverse. If there are multiple answers, you can print any. -----Examples----- Input 7 abacaba Output YES 2 5 Input 6 aabcfg Output NO -----Note----- In the first testcase the resulting string is "aacabba". The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) sen = input() for i in range(0, n - 1, 1): if sen[i] > sen[i + 1]: print('YES') print(i + 1, i + 2) exit(0) print('NO') ```
vfc_134442
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1155/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7\nabacaba\n", "output": "YES\n2 3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/859/E
Solve the following coding problem using the programming language python: A new set of desks just arrived, and it's about time! Things were getting quite cramped in the office. You've been put in charge of creating a new seating chart for the engineers. The desks are numbered, and you sent out a survey to the engineering team asking each engineer the number of the desk they currently sit at, and the number of the desk they would like to sit at (which may be the same as their current desk). Each engineer must either remain where they sit, or move to the desired seat they indicated in the survey. No two engineers currently sit at the same desk, nor may any two engineers sit at the same desk in the new seating arrangement. How many seating arrangements can you create that meet the specified requirements? The answer may be very large, so compute it modulo 1000000007 = 10^9 + 7. -----Input----- Input will begin with a line containing N (1 ≤ N ≤ 100000), the number of engineers. N lines follow, each containing exactly two integers. The i-th line contains the number of the current desk of the i-th engineer and the number of the desk the i-th engineer wants to move to. Desks are numbered from 1 to 2·N. It is guaranteed that no two engineers sit at the same desk. -----Output----- Print the number of possible assignments, modulo 1000000007 = 10^9 + 7. -----Examples----- Input 4 1 5 5 2 3 7 7 3 Output 6 Input 5 1 10 2 10 3 10 4 10 5 5 Output 5 -----Note----- These are the possible assignments for the first example: 1 5 3 7 1 2 3 7 5 2 3 7 1 5 7 3 1 2 7 3 5 2 7 3 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) m = 2 * n + 1 u = [[] for i in range(m)] v = [0] * m s = [0] * m d = 10 ** 9 + 7 y = 1 for j in range(n): (a, b) = map(int, input().split()) v[a] = b if a != b: s[b] += 1 u[b].append(a) for b in range(m): if not v[b]: x = 0 p = [b] while p: x += 1 a = p.pop() s[a] = -1 p += u[a] y = x * y % d for a in range(m): if s[a] == 0: b = v[a] while s[b] == 1: s[b] = -1 b = v[b] s[b] -= 1 for a in range(m): if s[a] == 1: y = 2 * y % d while s[a]: s[a] = 0 a = v[a] print(y) ```
vfc_134446
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/859/E", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1 5\n5 2\n3 7\n7 3\n", "output": "6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1 10\n2 10\n3 10\n4 10\n5 5\n", "output": "5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1 2\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\n22 37\n12 37\n37 58\n29 57\n43 57\n57 58\n58 53\n45 4\n1 4\n4 51\n35 31\n21 31\n31 51\n51 53\n53 48\n60 55\n52 55\n55 33\n36 9\n10 9\n9 33\n33 19\n5 23\n47 23\n23 32\n50 44\n26 44\n44 32\n32 19\n19 48\n", "output": "31\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "50\n73 1\n65 73\n16 65\n57 65\n33 16\n34 57\n98 16\n84 98\n55 34\n64 84\n80 55\n75 64\n28 75\n20 75\n42 75\n88 42\n50 20\n48 28\n32 48\n58 88\n92 76\n76 53\n53 15\n15 1\n1 10\n10 71\n71 37\n37 95\n95 63\n63 92\n45 97\n97 51\n51 96\n96 12\n12 62\n62 31\n31 5\n5 29\n29 19\n19 49\n49 6\n6 40\n40 18\n18 22\n22 17\n17 46\n46 72\n72 82\n82 14\n14 14\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/627/A
Solve the following coding problem using the programming language python: Two positive integers a and b have a sum of s and a bitwise XOR of x. How many possible values are there for the ordered pair (a, b)? -----Input----- The first line of the input contains two integers s and x (2 ≤ s ≤ 10^12, 0 ≤ x ≤ 10^12), the sum and bitwise xor of the pair of positive integers, respectively. -----Output----- Print a single integer, the number of solutions to the given conditions. If no solutions exist, print 0. -----Examples----- Input 9 5 Output 4 Input 3 3 Output 2 Input 5 2 Output 0 -----Note----- In the first sample, we have the following solutions: (2, 7), (3, 6), (6, 3), (7, 2). In the second sample, the only solutions are (1, 2) and (2, 1). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (s, x) = map(int, input().split()) b = s - x b = list(bin(s - x)) b = b[2:] a = list(bin(x)) a = a[2:] al = len(a) bl = len(b) c = [] if bl > al: for i in range(bl - al): c.append('0') c.extend(a) a = c else: for i in range(al - bl): c.append('0') c.extend(b) b = c p = 0 bl = len(b) for i in range(bl - 1): if b[i] == '1': if a[i + 1] == '1': p = 1 bl = len(b) if b[bl - 1] == '1': p = 1 if x > s: print('0') elif p == 1: print('0') elif s == x: print(2 ** a.count('1') - 2) elif x == 0: print('1') else: print(2 ** a.count('1')) ```
vfc_134450
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/627/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "9 5\n", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 3\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 2\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Koto Municipal Subway Koto Municipal Subway Koto City is a famous city whose roads are in a grid pattern, as shown in the figure below. The roads extending from north to south and the roads extending from east to west are lined up at intervals of 1 km each. Let Koto station at the southwestern intersection of Koto city be (0, 0), and mark x km east and y km north from it as (x, y) (0 ≤ x, y). ). <image> In anticipation of an increase in tourists due to the Olympic Games to be held five years later, the city has decided to build a new subway line starting from Koto station. Currently, we are planning to lay a rail to Shin-Koto station, which will be newly constructed as the next station after Koto station. The rail will be laid straight from Koto station to Shin-Koto station. Therefore, when the location of Shin-Koto station is (x, y), the length of the rail is √ (x2 + y2). The cost of laying the rail is the same as the length of the laid rail. Even if the rail length is a decimal number such as 1.5km, the cost is also 1.5. The location (x, y) of Shin-Koto station has not been decided yet, and we plan to make it a location that meets the following conditions. * It is an intersection. That is, x and y are integers, respectively. * The shortest distance walked along the road from Koto station is exactly D. That is, x + y = D is satisfied. Among the above two conditions, select the location of Shin-Koto station so that the difference between the rail budget E and the rail cost set by the city | √ (x2 + y2) --E | is minimized. Here, | A | represents the absolute value of A. Your job is to create a program that outputs the difference between the cost and budget for laying rails when the Shin-Koto station was constructed as described above. Input The input consists of multiple data sets, and the number of data sets contained in one input is 100 or less. The format of each data set is as follows. > D E D (1 ≤ D ≤ 100) is an integer that represents the shortest distance when walking along the road from Koto station to Shin-Koto station. E (1 ≤ E ≤ 100) is an integer representing the budget for rail construction. The end of the input is indicated by a line of two zeros separated by a blank. Output For each data set, output the difference between the cost and budget when laying the rail so as to satisfy the problem condition in one line. The answer must have an absolute error greater than 10-3. Note that if you do not output a line break at the end of each line, or if you output unnecessary characters, it will be judged as an incorrect answer. Sample Input twenty one 7 5 7 6 7 7 76 5 8 41 0 0 Output for Sample Input 0.4142135624 0 0.0827625303 0 48.7401153702 33 Hint In the first data set, as shown in the figure below, an intersection 2 km along the road from Koto station is a candidate for a place to build Shin-Koto station. <image> When Shin-Koto station is constructed at each intersection, the difference between the cost for laying the rail and budget 1 is as follows. * (2, 0): | √ (22 + 02) --1 | = 1.0 * (1, 1): | √ (12 + 12) --1 | = 0.4142135623 ... * (0, 2): | √ (02 + 22) --1 | = 1.0 Therefore, the difference between the cost and the budget is minimized when the construction is done in (1, 1). Example Input 2 1 7 5 7 6 7 7 76 5 8 41 0 0 Output 0.4142135624 0 0.0827625303 0 48.7401153702 33 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): while 1: (d, e) = map(int, input().split()) if d == e == 0: break x = d y = 0 ans = abs(d - e) while y != d: a = abs((x ** 2 + y ** 2) ** 0.5 - e) ans = min(a, ans) x -= 1 y += 1 print(ans) main() ```
vfc_134454
{ "difficulty": "unknown_difficulty", "memory_limit": "268.435456 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "8.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 1\n7 6\n7 6\n7 7\n76 5\n8 41\n0 0", "output": "0.414213562373\n0.0827625302982\n0.0827625302982\n0.0\n48.7401153702\n33.0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/extra-long-factorials/problem
Solve the following coding problem using the programming language python: The factorial of the integer $n$, written $n!$, is defined as: $n!=n\times(n-1)\times(n-2)\times\text{}\cdots\times3\times2\times1$ Calculate and print the factorial of a given integer. For example, if $n=30$, we calculate $30\times29\times28\times\text{...}\times2\times1$ and get $265252859812191058636308480000000$. Function Description Complete the extraLongFactorials function in the editor below. It should print the result and return. extraLongFactorials has the following parameter(s): n: an integer Note: Factorials of $n>20$ can't be stored even in a $64-bit$ long long variable. Big integers must be used for such calculations. Languages like Java, Python, Ruby etc. can handle big integers, but we need to write additional code in C/C++ to handle huge values. We recommend solving this challenge using BigIntegers. Input Format Input consists of a single integer $n$ Constraints $1\leq n\leq100$ Output Format Print the factorial of $n$. Sample Input $25$ Sample Output $1551121004330985984000000$ Explanation $25!=25\times24\times23\times\text{...}\times3\times2\times1$ The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import factorial print(factorial(int(input()))) ```
vfc_134458
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/extra-long-factorials/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "25\n", "output": "15511210043330985984000000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1566/B
Solve the following coding problem using the programming language python: A binary string is a string that consists of characters $0$ and $1$. Let $\operatorname{MEX}$ of a binary string be the smallest digit among $0$, $1$, or $2$ that does not occur in the string. For example, $\operatorname{MEX}$ of $001011$ is $2$, because $0$ and $1$ occur in the string at least once, $\operatorname{MEX}$ of $1111$ is $0$, because $0$ and $2$ do not occur in the string and $0 < 2$. A binary string $s$ is given. You should cut it into any number of substrings such that each character is in exactly one substring. It is possible to cut the string into a single substring — the whole string. A string $a$ is a substring of a string $b$ if $a$ can be obtained from $b$ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end. What is the minimal sum of $\operatorname{MEX}$ of all substrings pieces can be? -----Input----- The input consists of multiple test cases. The first line contains a single integer $t$ ($1 \le t \le 10^4$) — the number of test cases. Description of the test cases follows. Each test case contains a single binary string $s$ ($1 \le |s| \le 10^5$). It's guaranteed that the sum of lengths of $s$ over all test cases does not exceed $10^5$. -----Output----- For each test case print a single integer — the minimal sum of $\operatorname{MEX}$ of all substrings that it is possible to get by cutting $s$ optimally. -----Examples----- Input 6 01 1111 01100 101 0000 01010 Output 1 0 2 1 1 2 -----Note----- In the first test case the minimal sum is $\operatorname{MEX}(0) + \operatorname{MEX}(1) = 1 + 0 = 1$. In the second test case the minimal sum is $\operatorname{MEX}(1111) = 0$. In the third test case the minimal sum is $\operatorname{MEX}(01100) = 2$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for test in range(t): s = input() zeroes = s.count('0') if zeroes == 0: print(0) continue first = s.find('0') last = s.rfind('0') if last - first + 1 == zeroes: print(1) else: print(2) ```
vfc_134467
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1566/B", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n01\n1111\n01100\n101\n0000\n01010\n", "output": "1\n0\n2\n1\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n01\n1111\n01100\n100\n0000\n01010\n", "output": "1\n0\n2\n1\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n01\n1011\n01100\n100\n0000\n01010\n", "output": "1\n1\n2\n1\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n01\n1001\n01100\n111\n0000\n01010\n", "output": "1\n1\n2\n0\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n1\n1001\n01100\n111\n0000\n01010\n", "output": "0\n1\n2\n0\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n01\n1010\n01100\n100\n0000\n01010\n", "output": "1\n2\n2\n1\n1\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/largest-product-pallindrome3753/1
Solve the following coding problem using the programming language python: Given a value N, find out the largest palindrome number which is product of two N-digit numbers. Example 1: Input: N = 2 Output: 9009 Explanation: 9009 is the largest number which is product of two 2-digit numbers. 9009 = 91*99. Example 2: Input: N = 1 Output: 9 Explanation: 9 is the largest number which is product of two 1-digit numbers. 3 * 3 = 9. Your Task: You don't need to read or print anyhting. Your task is to complete the function LargestProductPalin() which takes N as input parameter and returns largest palindromic product of 2 N-digit numbers. Expected Time Complexity: O(10^{n+1}) Expected Space Complexity: O(1) Constraints: 1 <= N <= 6 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def LargestProductPalin(self, N): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def LargestProductPalin(self, n): upper_limit = 10 ** n - 1 lower_limit = 1 + upper_limit // 10 max_product = 0 for i in range(upper_limit, lower_limit - 1, -1): for j in range(i, lower_limit - 1, -1): product = i * j if product < max_product: break number = product reverse = 0 while number != 0: reverse = reverse * 10 + number % 10 number = number // 10 if product == reverse and product > max_product: max_product = product return max_product ```
vfc_134475
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/largest-product-pallindrome3753/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 2", "output": "9009", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 1", "output": "9", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/103/A
Solve the following coding problem using the programming language python: The average miner Vaganych took refresher courses. As soon as a miner completes the courses, he should take exams. The hardest one is a computer test called "Testing Pants for Sadness". The test consists of n questions; the questions are to be answered strictly in the order in which they are given, from question 1 to question n. Question i contains ai answer variants, exactly one of them is correct. A click is regarded as selecting any answer in any question. The goal is to select the correct answer for each of the n questions. If Vaganych selects a wrong answer for some question, then all selected answers become unselected and the test starts from the very beginning, from question 1 again. But Vaganych remembers everything. The order of answers for each question and the order of questions remain unchanged, as well as the question and answers themselves. Vaganych is very smart and his memory is superb, yet he is unbelievably unlucky and knows nothing whatsoever about the test's theme. How many clicks will he have to perform in the worst case? Input The first line contains a positive integer n (1 ≤ n ≤ 100). It is the number of questions in the test. The second line contains space-separated n positive integers ai (1 ≤ ai ≤ 109), the number of answer variants to question i. Output Print a single number — the minimal number of clicks needed to pass the test it the worst-case scenario. Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator. Examples Input 2 1 1 Output 2 Input 2 2 2 Output 5 Input 1 10 Output 10 Note Note to the second sample. In the worst-case scenario you will need five clicks: * the first click selects the first variant to the first question, this answer turns out to be wrong. * the second click selects the second variant to the first question, it proves correct and we move on to the second question; * the third click selects the first variant to the second question, it is wrong and we go back to question 1; * the fourth click selects the second variant to the first question, it proves as correct as it was and we move on to the second question; * the fifth click selects the second variant to the second question, it proves correct, the test is finished. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys, math s = int(input()) arr = list(map(int, input().split(' '))) m = 0 for i in range(0, s): m += (arr[i] - 1) * (i + 1) + 1 print(m) ```
vfc_134476
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/103/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "100\n1 3 2 1 1 2 1 3 2 2 3 1 1 1 2 2 1 3 3 1 1 2 2 3 2 1 3 1 3 2 1 1 3 3 2 1 2 2 2 3 2 2 3 2 2 3 2 1 3 1 1 2 1 3 2 2 1 1 1 1 1 1 3 1 2 3 1 1 1 1 1 2 3 3 1 1 1 1 2 3 3 1 3 2 2 3 2 1 3 2 2 3 1 1 3 2 3 2 3 1\n", "output": "4667", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n84355694\n", "output": "84355694", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 1\n", "output": "10", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/check-if-divisible-by-114724/1
Solve the following coding problem using the programming language python: Given a number S. Check whether it is divisble by 11 or not. Example 1: Input: S = 76945 Output: 1 Explanation: The number is divisible by 11 as 76945 % 11 = 0. ​Example 2: Input: S = 12 Output: 0 Explanation: The number is not divisible by 11 as 12 % 11 = 1. Your Task: You don't need to read input or print anything. Your task is to complete the function divisibleBy11() which takes the number in the form of string S as input and returns 1 if the number is divisible by 11. Else, it returns 0. Expected Time Complexity: O(Log S) where S is the input number. Expected Auxiliary Space: O(1). Constraints: 1<=S<=10^{1000}+5 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def divisibleBy11(self, S): # Your Code Here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def divisibleBy11(self, S): if int(S) % 11 == 0: return 1 else: return 0 ```
vfc_134480
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/check-if-divisible-by-114724/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "S = 76945", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "S = 12", "output": "0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1064/D
Solve the following coding problem using the programming language python: You are playing some computer game. One of its levels puts you in a maze consisting of n lines, each of which contains m cells. Each cell either is free or is occupied by an obstacle. The starting cell is in the row r and column c. In one step you can move one square up, left, down or right, if the target cell is not occupied by an obstacle. You can't move beyond the boundaries of the labyrinth. Unfortunately, your keyboard is about to break, so you can move left no more than x times and move right no more than y times. There are no restrictions on the number of moves up and down since the keys used to move up and down are in perfect condition. Now you would like to determine for each cell whether there exists a sequence of moves that will put you from the starting cell to this particular one. How many cells of the board have this property? Input The first line contains two integers n, m (1 ≤ n, m ≤ 2000) — the number of rows and the number columns in the labyrinth respectively. The second line contains two integers r, c (1 ≤ r ≤ n, 1 ≤ c ≤ m) — index of the row and index of the column that define the starting cell. The third line contains two integers x, y (0 ≤ x, y ≤ 109) — the maximum allowed number of movements to the left and to the right respectively. The next n lines describe the labyrinth. Each of them has length of m and consists only of symbols '.' and '*'. The j-th character of the i-th line corresponds to the cell of labyrinth at row i and column j. Symbol '.' denotes the free cell, while symbol '*' denotes the cell with an obstacle. It is guaranteed, that the starting cell contains no obstacles. Output Print exactly one integer — the number of cells in the labyrinth, which are reachable from starting cell, including the starting cell itself. Examples Input 4 5 3 2 1 2 ..... .***. ...** *.... Output 10 Input 4 4 2 2 0 1 .... ..*. .... .... Output 7 Note Cells, reachable in the corresponding example, are marked with '+'. First example: +++.. +***. +++** *+++. Second example: .++. .+*. .++. .++. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys from collections import deque from math import inf def rint(): return map(int, sys.stdin.readline().split()) def bfs(sr, sc): global ans q = deque() q.append((x, y, sr, sc)) visit[sr][sc] = 1 ans += 1 while q: (ll, rr, r, c) = q.popleft() nadj = [] if r + 1 < n and maze[r + 1][c] == '.': nadj.append([r + 1, c]) if r - 1 >= 0 and maze[r - 1][c] == '.': nadj.append([r - 1, c]) if c + 1 < m and maze[r][c + 1] == '.': nadj.append([r, c + 1]) if c - 1 >= 0 and maze[r][c - 1] == '.': nadj.append([r, c - 1]) for (adr, adc) in nadj: if visit[adr][adc] == 1: continue if c == adc: visit[adr][adc] = 1 ans += 1 q.appendleft([ll, rr, adr, adc]) elif adc < c: if ll - 1 >= 0: visit[adr][adc] = 1 ans += 1 q.append([ll - 1, rr, adr, adc]) elif rr - 1 >= 0: visit[adr][adc] = 1 ans += 1 q.append([ll, rr - 1, adr, adc]) (n, m) = rint() (sr, sc) = rint() (x, y) = rint() sr -= 1 sc -= 1 maze = [] for i in range(n): maze.append(input()) visit = [[0 for i in range(m)] for j in range(n)] ans = 0 bfs(sr, sc) print(ans) ```
vfc_134481
{ "difficulty": "medium_hard", "memory_limit": "512.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1064/D", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7 16\n1 15\n1000 0\n...*...*........\n.*.*.*.*.******.\n.*.*.*.*.*....*.\n.*.*.*.*.*....*.\n.*...*...*....*.\n.**************.\n................\n", "output": "37", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n1 1\n0 0\n.\n", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 15\n7 7\n7 7\n.*****..*******\n**...*.********\n**.*..........*\n...**********.*\n.************.*\n.*...********.*\n.*.*.*........*\n.*.*.*.********\n.*.*.*.********\n...*...********\n", "output": "53", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 6\n10 6\n5 2\n**....\n**.**.\n**.**.\n**.**.\n**.**.\n**.**.\n**.**.\n....*.\n.****.\n......\n", "output": "29", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 10\n10 7\n10 4\n*******...\n*******.*.\n*******.*.\n*******.*.\n*******.*.\n****..*.*.\n****.**.*.\n........*.\n.********.\n..........\n", "output": "39", "type": "stdin_stdout" }, { "fn_name": null, "input": "11 11\n5 3\n100 9\n*********..\n*********.*\n..........*\n.********.*\n....*...*.*\n***.*.*.*.*\n***.*.*.*.*\n***.*.*.*.*\n***.*.*.*.*\n***.*.*.*.*\n***...*...*\n", "output": "49", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/maximum-product-subarray3604/1
Solve the following coding problem using the programming language python: Given an array Arr[] that contains N integers (may be positive, negative or zero). Find the product of the maximum product subarray. Example 1: Input: N = 5 Arr[] = {6, -3, -10, 0, 2} Output: 180 Explanation: Subarray with maximum product is [6, -3, -10] which gives product as 180. Example 2: Input: N = 6 Arr[] = {2, 3, 4, 5, -1, 0} Output: 120 Explanation: Subarray with maximum product is [2, 3, 4, 5] which gives product as 120. Your Task: You don't need to read input or print anything. Your task is to complete the function maxProduct() which takes the array of integers arr and n as parameters and returns an integer denoting the answer. Note: Use 64-bit integer data type to avoid overflow. Expected Time Complexity: O(N) Expected Auxiliary Space: O(1) Constraints: 1 ≤ N ≤ 500 -10^{2} ≤ Arr_{i} ≤ 10^{2} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: # Function to find maximum # product subarray def maxProduct(self,arr, n): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def maxProduct(self, arr, n): ans = arr[0] (ma, mi) = (ans, ans) for i in range(1, n): if arr[i] < 0: temp = ma ma = mi mi = temp ma = max(arr[i], ma * arr[i]) mi = min(arr[i], mi * arr[i]) ans = max(ans, ma) return ans ```
vfc_134485
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/maximum-product-subarray3604/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 5\nArr[] = {6, -3, -10, 0, 2}", "output": "180", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/CEFT2020/problems/QFUN
Solve the following coding problem using the programming language python: Chef and Abhishek both are fighting for the post of Chairperson to be part of ACE committee and are trying their best. To select only one student their teacher gave them a binary string (string consisting of only 0's and 1's) and asked them to find number of sub-strings present in the given string that satisfy the following condition: The substring should start with 0 and end with 1 or the substring should start with 1 and end with 0 but not start with 0 and end with 0 and start with 1 and end with 1. More formally, strings such as 100,0101 are allowed since they start and end with different characters. But strings such as 0110,1101 are not allowed because they start and end with same characters. Both Chef and Abhishek try their best to solve it but couldn't do it. You being a very good friend of Chef, he asks for your help so that he can solve it and become the Chairperson. -----Input:----- The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows. The first line of each test case contains a single integer N denoting the length of the string. The second line of each test case contains a binary string of length N. -----Output:----- For each test case, print a single line containing one integer ― the number of sub strings satisfying above conditions. -----Constraints----- - $1 \leq T \leq 1000$ - $2 \leq N \leq 10^9$ Binary string consist's only 0 and 1. -----Sample Input:----- 1 4 1010 -----Sample Output:----- 4 -----EXPLANATION:----- All possible substring are : { (1),(0),(1),(0),(10),(01),(10),(101),(010),(1010) }. Out of these only 4 substrings {(10),(01),(10),(1010)} start and end with different characters. Hence the answer 4. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def countSubstr(str, n, x, y): tot_count = 0 count_x = 0 for i in range(n): if str[i] == x: count_x += 1 if str[i] == y: tot_count += count_x return tot_count t = int(input()) for _ in range(t): n = int(input()) str = input() x = '0' y = '1' x1 = '1' y1 = '0' c1 = countSubstr(str, n, x, y) c2 = countSubstr(str, n, x1, y1) print(c1 + c2) ```
vfc_134486
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/CEFT2020/problems/QFUN", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n4\n1010\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/851/B
Solve the following coding problem using the programming language python: Arpa is taking a geometry exam. Here is the last problem of the exam. You are given three points a, b, c. Find a point and an angle such that if we rotate the page around the point by the angle, the new position of a is the same as the old position of b, and the new position of b is the same as the old position of c. Arpa is doubting if the problem has a solution or not (i.e. if there exists a point and an angle satisfying the condition). Help Arpa determine if the question has a solution or not. -----Input----- The only line contains six integers a_{x}, a_{y}, b_{x}, b_{y}, c_{x}, c_{y} (|a_{x}|, |a_{y}|, |b_{x}|, |b_{y}|, |c_{x}|, |c_{y}| ≤ 10^9). It's guaranteed that the points are distinct. -----Output----- Print "Yes" if the problem has a solution, "No" otherwise. You can print each letter in any case (upper or lower). -----Examples----- Input 0 1 1 1 1 0 Output Yes Input 1 1 0 0 1000 1000 Output No -----Note----- In the first sample test, rotate the page around (0.5, 0.5) by $90^{\circ}$. In the second sample test, you can't find any solution. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import * (ax, ay, bx, by, cx, cy) = map(int, input().split()) ab = (ax - bx) * (ax - bx) + (ay - by) * (ay - by) bc = (cx - bx) * (cx - bx) + (cy - by) * (cy - by) line = (ax - cx) * (by - ay) == (bx - ax) * (ay - cy) if ab == bc and (not line): print('Yes') else: print('No') ```
vfc_134490
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/851/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "0 1 1 1 1 0\n", "output": "Yes\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1 0 0 1000 1000\n", "output": "No\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 0 2 0 3 0\n", "output": "No\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1305/A
Solve the following coding problem using the programming language python: Kuroni has $n$ daughters. As gifts for them, he bought $n$ necklaces and $n$ bracelets: the $i$-th necklace has a brightness $a_i$, where all the $a_i$ are pairwise distinct (i.e. all $a_i$ are different), the $i$-th bracelet has a brightness $b_i$, where all the $b_i$ are pairwise distinct (i.e. all $b_i$ are different). Kuroni wants to give exactly one necklace and exactly one bracelet to each of his daughters. To make sure that all of them look unique, the total brightnesses of the gifts given to each daughter should be pairwise distinct. Formally, if the $i$-th daughter receives a necklace with brightness $x_i$ and a bracelet with brightness $y_i$, then the sums $x_i + y_i$ should be pairwise distinct. Help Kuroni to distribute the gifts. For example, if the brightnesses are $a = [1, 7, 5]$ and $b = [6, 1, 2]$, then we may distribute the gifts as follows: Give the third necklace and the first bracelet to the first daughter, for a total brightness of $a_3 + b_1 = 11$. Give the first necklace and the third bracelet to the second daughter, for a total brightness of $a_1 + b_3 = 3$. Give the second necklace and the second bracelet to the third daughter, for a total brightness of $a_2 + b_2 = 8$. Here is an example of an invalid distribution: Give the first necklace and the first bracelet to the first daughter, for a total brightness of $a_1 + b_1 = 7$. Give the second necklace and the second bracelet to the second daughter, for a total brightness of $a_2 + b_2 = 8$. Give the third necklace and the third bracelet to the third daughter, for a total brightness of $a_3 + b_3 = 7$. This distribution is invalid, as the total brightnesses of the gifts received by the first and the third daughter are the same. Don't make them this upset! -----Input----- The input consists of multiple test cases. The first line contains an integer $t$ ($1 \le t \le 100$)  — the number of test cases. The description of the test cases follows. The first line of each test case contains a single integer $n$ ($1 \le n \le 100$)  — the number of daughters, necklaces and bracelets. The second line of each test case contains $n$ distinct integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 1000$)  — the brightnesses of the necklaces. The third line of each test case contains $n$ distinct integers $b_1, b_2, \dots, b_n$ ($1 \le b_i \le 1000$)  — the brightnesses of the bracelets. -----Output----- For each test case, print a line containing $n$ integers $x_1, x_2, \dots, x_n$, representing that the $i$-th daughter receives a necklace with brightness $x_i$. In the next line print $n$ integers $y_1, y_2, \dots, y_n$, representing that the $i$-th daughter receives a bracelet with brightness $y_i$. The sums $x_1 + y_1, x_2 + y_2, \dots, x_n + y_n$ should all be distinct. The numbers $x_1, \dots, x_n$ should be equal to the numbers $a_1, \dots, a_n$ in some order, and the numbers $y_1, \dots, y_n$ should be equal to the numbers $b_1, \dots, b_n$ in some order. It can be shown that an answer always exists. If there are multiple possible answers, you may print any of them. -----Example----- Input 2 3 1 8 5 8 4 5 3 1 7 5 6 1 2 Output 1 8 5 8 4 5 5 1 7 6 2 1 -----Note----- In the first test case, it is enough to give the $i$-th necklace and the $i$-th bracelet to the $i$-th daughter. The corresponding sums are $1 + 8 = 9$, $8 + 4 = 12$, and $5 + 5 = 10$. The second test case is described in the statement. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) l = list(map(int, input().split())) l2 = list(map(int, input().split())) l.sort() l2.sort() print(*l) print(*l2) ```
vfc_134494
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1305/A", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n3\n1 8 5\n8 4 5\n3\n1 7 5\n6 1 2\n", "output": "1 8 5\n8 4 5\n5 1 7\n6 2 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n3\n1 8 10\n8 4 5\n3\n1 7 5\n6 1 2\n", "output": "1 8 10\n4 5 8\n1 5 7\n1 2 6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n3\n1 8 5\n8 4 5\n3\n1 7 5\n3 1 2\n", "output": "1 5 8\n4 5 8\n1 5 7\n1 2 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n3\n1 8 10\n8 4 5\n3\n1 7 5\n6 1 4\n", "output": "1 8 10\n4 5 8\n1 5 7\n1 4 6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n3\n1 8 5\n8 8 5\n3\n1 7 5\n3 1 2\n", "output": "1 5 8\n5 8 8\n1 5 7\n1 2 3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1468/K
Solve the following coding problem using the programming language python: There is a robot on a checkered field that is endless in all directions. Initially, the robot is located in the cell with coordinates (0, 0). He will execute commands which are described by a string of capital Latin letters 'L', 'R', 'D', 'U'. When a command is executed, the robot simply moves in the corresponding direction: * 'L': one cell to the left (the x-coordinate of the current cell decreases by 1); * 'R': one cell to the right (the x-coordinate of the current cell is increased by 1); * 'D': one cell down (the y-coordinate of the current cell decreases by 1); * 'U': one cell up (the y-coordinate of the current cell is increased by 1). Your task is to put an obstacle in one cell of the field so that after executing the commands, the robot will return to the original cell of its path (0, 0). Of course, an obstacle cannot be placed in the starting cell (0, 0). It is guaranteed that if the obstacle is not placed, then the robot will not return to the starting cell. An obstacle affects the movement of the robot in the following way: if it tries to go in a certain direction, and there is an obstacle, then it simply remains in place (the obstacle also remains, that is, it does not disappear). Find any such cell of the field (other than (0, 0)) that if you put an obstacle there, the robot will return to the cell (0, 0) after the execution of all commands. If there is no solution, then report it. Input The first line contains one integer t (1 ≤ t ≤ 500) — the number of test cases. Each test case consists of a single line containing s — the sequence of commands, which are uppercase Latin letters 'L', 'R', 'D', 'U' only. The length of s is between 1 and 5000, inclusive. Additional constraint on s: executing this sequence of commands leads the robot to some cell other than (0, 0), if there are no obstacles. The sum of lengths of all s in a test doesn't exceed 5000. Output For each test case print a single line: * if there is a solution, print two integers x and y (-10^9 ≤ x,y ≤ 10^9) such that an obstacle in (x, y) will force the robot to return back to the cell (0, 0); * otherwise, print two zeroes (i. e. 0 0). If there are multiple answers, you can print any of them. Example Input 4 L RUUDL LLUU DDDUUUUU Output -1 0 1 2 0 0 0 1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys import io import math import collections import decimal import itertools import bisect import heapq def input(): return sys.stdin.readline()[:-1] def solve(S): Move = {'L': (-1, 0), 'R': (1, 0), 'U': (0, 1), 'D': (0, -1)} Moves = [Move[c] for c in S] pos1 = (0, 0) for k in range(len(S)): pos1 = (pos1[0] + Moves[k][0], pos1[1] + Moves[k][1]) block = pos1 pos = (0, 0) for i in range(len(S)): pos_next = (pos[0] + Moves[i][0], pos[1] + Moves[i][1]) if pos_next != block: pos = pos_next if pos == (0, 0): return block return (0, 0) def main(): T0 = int(input()) for _ in range(T0): S = input() ans = solve(S) print(*ans) main() ```
vfc_134502
{ "difficulty": "medium_hard", "memory_limit": "512.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1468/K", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\nL\nLUUDR\nLLUU\nDDDUUUUU\n", "output": "-1 0\n-1 2\n0 0\n0 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\nL\nUURDL\nLLUU\nDDDUUUUU\n", "output": "-1 0\n0 2\n0 0\n0 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\nL\nUURDL\nLLUU\nUUUUUDDD\n", "output": "-1 0\n0 2\n0 0\n0 4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/knight-walk4521/1
Solve the following coding problem using the programming language python: Given a square chessboard, the initial position of Knight and position of a target. Find out the minimum steps a Knight will take to reach the target position.If it cannot reach the target position return -1. Note: The initial and the target position co-ordinates of Knight have been given accoring to 1-base indexing. Example 1: Input: N=6 knightPos[ ] = {4, 5} targetPos[ ] = {1, 1} Output: 3 Explanation: Knight takes 3 step to reach from (4, 5) to (1, 1): (4, 5) -> (5, 3) -> (3, 2) -> (1, 1). Example 2: Input: N=8 knightPos[ ] = {7, 7} targetPos[ ] = {1, 5} Output: 4 Explanation: Knight takes 4 steps to reach from (7, 7) to (1, 5): (4, 5) -> (6, 5) -> (5, 3) -> (7, 2) -> (1, 5). Your Task: You don't need to read input or print anything. Your task is to complete the function minStepToReachTarget() which takes the inital position of Knight (KnightPos), the target position of Knight (TargetPos) and the size of the chess board (N) as an input parameters and returns the minimum number of steps required by the knight to reach from its current position to the given target position.If it cannot reach the target position return -1. Expected Time Complexity: O(N^{2}). Expected Auxiliary Space: O(N^{2}). Constraints: 1 <= N <= 1000 1 <= Knight_pos(X, Y), Targer_pos(X, Y) <= N Write your solution by modifying this code: ```python class Solution: def minStepToReachTarget(self, KnightPos, TargetPos, N): #Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import * class Solution: def minStepToReachTarget(self, KnightPos, TargetPos, N): kx = KnightPos[0] - 1 ky = KnightPos[1] - 1 tx = TargetPos[0] - 1 ty = TargetPos[1] - 1 ans = 0 def isvalid(x, y, visit, N): if x >= 0 and y >= 0 and (x < N) and (y < N) and (visit[x][y] == False): return True return False if kx == tx and ty == ky: return ans moves = [[-1, 2], [-2, 1], [-2, -1], [-1, -2], [1, -2], [2, -1], [2, 1], [1, 2]] visit = [[False for i in range(N)] for j in range(N)] q = deque([[kx, ky]]) visit[kx][ky] = True while q: ans += 1 size = len(q) for i in range(size): (kx, ky) = q.popleft() for (m, n) in moves: if kx + m == tx and ky + n == ty: return ans if isvalid(kx + m, ky + n, visit, N): visit[kx + m][ky + n] = True q.append([kx + m, ky + n]) return ans ```
vfc_134506
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/knight-walk4521/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N=6\nknightPos[ ] = {4, 5}\ntargetPos[ ] = {1, 1}", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "N=8\nknightPos[ ] = {7, 7}\ntargetPos[ ] = {1, 5}", "output": "4", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Little Bob comes to you for candies as you are his favorite coder! He wants X candies. You have N bags and the i^th bag contains A[i] candies. You can give him a set of one or more bags such that the sum of candies in those bags is EXACTLY equal to X. Bob wants to find smallest such set of bags. If there are multiple smallest such sets than Bob wants the lexicographically smallest set of such bags. See the sample test cases for more clarity. Input: The first line contains two space-separated integers N and X. The second line contains N integers, the number of candies in each bag. Output: Print the indices of the bags that you give to Bob. If it is not possible to form such a set, print -1. Constraints: 1 ≤ N ≤ 20 1 ≤ X ≤ 10^6 1 ≤ A[i] ≤ 10^6 SAMPLE INPUT 6 9 5 7 1 4 4 1 SAMPLE OUTPUT 1 4 Explanation There are 3 such sets possible whose sum is 9 : 1 (5) + 4 (4) = 9 1 (5) + 5 (4) = 9 2 (7) + 3 (1) + 6 (1) = 9 Now in the 3rd set there are 3 bags being given but in 1st and 2nd set we can give 2 bags which is less than 3. We don't allot 2nd set because for the second set bags allocated will be 1 and 5 which is lexicographically larger than 1 and 4 in the case of 1st set. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ''' # Read input from stdin and provide input before running code name = raw_input('What is your name?\n') print 'Hi, %s.' % name ''' def cmp(l1, l2): if len(l1) < len(l2): return False if len(l1) > len(l2): return True for i in range(len(l1)): if l1[i] > l2[i]: return True return False N, X = list(map(int, input().split())) A = list(map(int, input().split())) ans = None for bit in range((1<<N)): sumi = 0 num = [] for i in range(N): if bit & (1<<i): sumi += A[i] num.append(i+1) if sumi == X: if not ans: ans = num elif cmp(ans, num): ans = num if not ans: print(-1) else : print(' '.join(map(str, ans))) ```
vfc_134507
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "12 98\n27 4 77 60 83 83 99 85 60 17 48 41", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "20 848384\n1234 151516 15115 8080 1123 100 12314 90 123 158 1515 151 10 3 151 1231 890 1314 1414 803468", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "15 32\n28 81 28 6 40 3 26 67 64 29 50 12 68 57 61", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 21\n76 10 52 31", "output": "2 3 10 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 84\n84", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 93\n29 78 62 3 51", "output": "4 7 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/373/C
Solve the following coding problem using the programming language python: There are n kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as large as the size of kangaroo who is held. Each kangaroo can hold at most one kangaroo, and the kangaroo who is held by another kangaroo cannot hold any kangaroos. The kangaroo who is held by another kangaroo cannot be visible from outside. Please, find a plan of holding kangaroos with the minimal number of kangaroos who is visible. Input The first line contains a single integer — n (1 ≤ n ≤ 5·105). Each of the next n lines contains an integer si — the size of the i-th kangaroo (1 ≤ si ≤ 105). Output Output a single integer — the optimal number of visible kangaroos. Examples Input 8 2 5 7 6 9 8 4 2 Output 5 Input 8 9 1 6 2 6 5 8 3 Output 5 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import os import sys from math import * from collections import * from fractions import * from bisect import * from heapq import * from io import BytesIO, IOBase def vsInput(): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') 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') ALPHA = 'abcdefghijklmnopqrstuvwxyz' M = 10 ** 9 + 7 EPS = 1e-06 def value(): return tuple(map(int, input().split())) def array(): return [int(i) for i in input().split()] def Int(): return int(input()) def Str(): return input() def arrayS(): return [i for i in input().split()] n = Int() a = [] for i in range(n): a.append(Int()) a.sort(reverse=True) b = a[n // 2:] a = a[0:n // 2] i = 0 j = 0 ans = n while i < len(a) and j < len(b): key = a[i] while j < len(b) and key < 2 * b[j]: j += 1 if j != len(b): ans -= 1 j += 1 i += 1 print(ans) ```
vfc_134512
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/373/C", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1\n1\n1\n2\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100\n678\n771\n96\n282\n135\n749\n168\n668\n17\n658\n979\n446\n998\n331\n606\n756\n37\n515\n538\n205\n647\n547\n904\n842\n647\n286\n774\n414\n267\n791\n595\n465\n8\n327\n855\n174\n339\n946\n184\n250\n807\n422\n679\n980\n64\n530\n312\n351\n676\n911\n803\n991\n669\n50\n293\n841\n545\n598\n737\n894\n231\n754\n588\n83\n873\n767\n833\n482\n905\n903\n970\n571\n715\n59\n777\n697\n537\n861\n339\n212\n149\n889\n905\n70\n970\n307\n830\n465\n968\n291\n430\n317\n942\n944\n330\n235\n814\n880\n415\n76\n", "output": "58\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1\n2\n4\n8\n16\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n1\n2\n4\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/part-of-it1016/1
Solve the following coding problem using the programming language python: A given series 3, 5, 9, 11, 15, 17, 21, 27, 29, ... and so on. You need to identify the pattern and determine whether the input number ( n ) is a part of the given series or not. If yes then return "Yes", otherwise "No". Example 1: Input: n = 9 Output: Yes Explanation: 9 is the part of the sequence. Example 2: Input: n = 8 Output: No Explanation: 8 is not the part of the sequence Your Task: You don't need to read input or print anything. Your task is to complete the function isPart() which takes n as inputs and returns the answer. Expected Time Complexity: O(sqrt(n)) Expected Auxiliary Space: O(1) Constraints: 1 ≤ n ≤ 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def isPart (self, n): #complete the function here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def isPart(self, n): n += 2 i = 2 while i * i <= n: if n % i == 0: return 'No' i += 1 return 'Yes' ```
vfc_134516
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/part-of-it1016/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "n = 9", "output": "Yes", "type": "stdin_stdout" }, { "fn_name": null, "input": "n = 8", "output": "No", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1099/D
Solve the following coding problem using the programming language python: Mitya has a rooted tree with n vertices indexed from 1 to n, where the root has index 1. Each vertex v initially had an integer number a_v ≥ 0 written on it. For every vertex v Mitya has computed s_v: the sum of all values written on the vertices on the path from vertex v to the root, as well as h_v — the depth of vertex v, which denotes the number of vertices on the path from vertex v to the root. Clearly, s_1=a_1 and h_1=1. Then Mitya erased all numbers a_v, and by accident he also erased all values s_v for vertices with even depth (vertices with even h_v). Your task is to restore the values a_v for every vertex, or determine that Mitya made a mistake. In case there are multiple ways to restore the values, you're required to find one which minimizes the total sum of values a_v for all vertices in the tree. Input The first line contains one integer n — the number of vertices in the tree (2 ≤ n ≤ 10^5). The following line contains integers p_2, p_3, ... p_n, where p_i stands for the parent of vertex with index i in the tree (1 ≤ p_i < i). The last line contains integer values s_1, s_2, ..., s_n (-1 ≤ s_v ≤ 10^9), where erased values are replaced by -1. Output Output one integer — the minimum total sum of all values a_v in the original tree, or -1 if such tree does not exist. Examples Input 5 1 1 1 1 1 -1 -1 -1 -1 Output 1 Input 5 1 2 3 1 1 -1 2 -1 -1 Output 2 Input 3 1 2 2 -1 1 Output -1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys def getAndParseInt(num=1): string = sys.stdin.readline().strip() if num == 1: return int(string) else: return [int(part) for part in string.split()] def getAndParseString(num=1, delim=' '): string = sys.stdin.readline().strip() if num == 1: return string else: return [part for part in string.split(delim)] n = getAndParseInt() parents = getAndParseInt(2) sums = getAndParseInt(2) pc_list = [[0, []] for i in range(n)] a_list = [0] * n a_list[0] = sums[0] for (vertex, parent) in enumerate(parents): pc_list[vertex + 1][0] = parent - 1 pc_list[parent - 1][1].append(vertex + 1) stack = [(0, 0)] invalid = False while stack and (not invalid): (cur_vertex, child_num) = stack.pop() parent = pc_list[cur_vertex][0] cur_list = pc_list[cur_vertex][1] if not cur_list and sums[cur_vertex] == -1: a_list[cur_vertex] = 0 elif sums[cur_vertex] == -1 and child_num == 0: min_sum = min([sums[child] for child in cur_list]) if min_sum < sums[parent]: invalid = True break else: a_list[cur_vertex] = min_sum - sums[parent] elif sums[cur_vertex] != -1 and cur_vertex != 0 and (child_num == 0): grandparent = pc_list[parent][0] a_list[cur_vertex] = sums[cur_vertex] - a_list[parent] a_list[cur_vertex] += -sums[grandparent] if child_num < len(cur_list): stack.append((cur_vertex, child_num + 1)) stack.append((cur_list[child_num], 0)) if invalid: print(-1) else: print(sum(a_list)) ```
vfc_134517
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1099/D", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n1 2 3 4\n5 -1 5 -1 7\n", "output": "7\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "25\n1 2 1 4 4 4 1 2 8 5 1 8 1 6 9 6 10 10 7 10 8 17 14 6\n846 -1 941 -1 1126 1803 988 -1 1352 1235 -1 -1 864 -1 -1 -1 -1 -1 -1 -1 -1 1508 1802 1713 -1\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n1 1 1 1 2 3 4 5 1\n3 -1 -1 -1 -1 3 3 3 3 -1\n", "output": "3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/678/A
Solve the following coding problem using the programming language python: Johny likes numbers n and k very much. Now Johny wants to find the smallest integer x greater than n, so it is divisible by the number k. -----Input----- The only line contains two integers n and k (1 ≤ n, k ≤ 10^9). -----Output----- Print the smallest integer x > n, so it is divisible by the number k. -----Examples----- Input 5 3 Output 6 Input 25 13 Output 26 Input 26 13 Output 39 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, k) = (int(x) for x in input().split()) print(n + (k - n % k)) ```
vfc_134521
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/678/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 3\n", "output": "6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "25 13\n", "output": "26\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "26 13\n", "output": "39\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/QTST2020/problems/NEGBFRAC
Solve the following coding problem using the programming language python: Consider the fraction, $a/b$, where $a$ and $b$ are positive integers. If $a < b$ and $GCD(a,b) = 1$, it is called a reduced proper fraction. If we list the set of a reduced proper fraction for $d \leq 8$, (where $d$ is the denominator) in ascending order of size, we get: $1/8$, $1/7$, $1/6$, $1/5$, $1/4$, $2/7$, $1/3$, $3/8$, $2/5$ , $3/7$, $1/2$, $4/7$, $3/5$, $5/8$, $2/3$, $5/7$, $3/4$, $4/5$, $5/6$, $6/7$, $7/8$ It can be seen that $2/5$ is the fraction immediately to the left of $3/7$. By listing the set of reduced proper fractions for $d \leq N$ in ascending order of value, find the numerator and denominator of the fraction immediately to the left of $a/b$ when $a$ and $b$ are given. -----Input:----- - First line of input contains an integer $T$, number of test cases - Next $T$ lines contain $a$ $b$ $N$ separated by space -----Output:----- Print the numerator and denominator separated by a space corresponding to each test case on a new line -----Constraints----- - $1 \leq T \leq 50$ - $1 \leq a < b \leq 10^9$ - $GCD(a,b) = 1$ - $b < N \leq 10^{15}$ -----Subtasks----- - 10 points: $1 \leq N \leq 100$ - 30 points : $1 \leq N \leq 10^6$ - 60 points : $1 \leq N \leq 10^{15}$ -----Sample Input:----- 5 3 7 8 3 5 8 4 5 8 6 7 8 1 5 8 -----Sample Output:----- 2 5 4 7 3 4 5 6 1 6 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from sys import stdin from fractions import Fraction input = stdin.readline for _ in range(int(input())): (a, b, n) = list(map(int, input().split())) ab = Fraction(a, b) p = set() for i in range(1, n + 1): for j in range(n, 0, -1): x = Fraction(i, j) if x > ab: break p.add(x) x = sorted(p)[-2] print(x.numerator, x.denominator) ```
vfc_134529
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/QTST2020/problems/NEGBFRAC", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n3 7 8\n3 5 8\n4 5 8\n6 7 8\n1 5 8\n", "output": "2 5\n4 7\n3 4\n5 6\n1 6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: () Problem Statement There is a string S. Initially, S is an empty string. Perform the following processing in order of n. * Add x_i p_i (=" (" or") ") to the end of S. After processing, determine if S is a well-balanced string. "The string is balanced" is defined as follows. * The empty string is well-balanced. * For balanced strings a and b, a + b (+ represents a concatenation of strings) is balanced. * For a balanced string a, "(" + a + ")" is balanced. Constraints * 1 ≤ n ≤ 1,000 * 1 ≤ x_i ≤ 10 ^ 6 * p_i is "(" or ")" Input Input follows the following format. All given numbers are integers. n p_1 x_1 .. .. p_n x_n Output Output "YES" if balanced, otherwise output "NO" on one line. Examples Input 3 ( 5 ) 4 ) 1 Output YES Input 5 ( 2 ) 2 ( 3 ) 1 ) 2 Output YES Input 2 ) 1 ( 1 Output NO The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) s = 0 f = 0 for i in range(n): (p, x) = input().split() x = int(x) if p == '(': s += x else: s -= x if s < 0: f = 1 if f or s != 0: print('NO') else: print('YES') ```
vfc_134538
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n) 1\n' 1", "output": "NO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n( 5\n* 4\n) 1", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n( 2\n) 2\n( 3\n) 1\n) 4", "output": "NO\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/980/B
Solve the following coding problem using the programming language python: The city of Fishtopia can be imagined as a grid of 4 rows and an odd number of columns. It has two main villages; the first is located at the top-left cell (1,1), people who stay there love fishing at the Tuna pond at the bottom-right cell (4, n). The second village is located at (4, 1) and its people love the Salmon pond at (1, n). The mayor of Fishtopia wants to place k hotels in the city, each one occupying one cell. To allow people to enter the city from anywhere, hotels should not be placed on the border cells. A person can move from one cell to another if those cells are not occupied by hotels and share a side. Can you help the mayor place the hotels in a way such that there are equal number of shortest paths from each village to its preferred pond? Input The first line of input contain two integers, n and k (3 ≤ n ≤ 99, 0 ≤ k ≤ 2×(n-2)), n is odd, the width of the city, and the number of hotels to be placed, respectively. Output Print "YES", if it is possible to place all the hotels in a way that satisfies the problem statement, otherwise print "NO". If it is possible, print an extra 4 lines that describe the city, each line should have n characters, each of which is "#" if that cell has a hotel on it, or "." if not. Examples Input 7 2 Output YES ....... .#..... .#..... ....... Input 5 3 Output YES ..... .###. ..... ..... The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python EMPTY = '.' HOTEL = '#' def main(): (n, k) = map(int, input().split()) print('YES') print(EMPTY * n) if k % 2 == 0: m = k // 2 s = EMPTY + HOTEL * m + EMPTY * (n - m - 1) print(s) print(s) elif k < n - 1: s = (HOTEL * k).center(n, EMPTY) print(s) print(EMPTY * n) else: print(EMPTY + HOTEL * (n - 2) + EMPTY) print(EMPTY + HOTEL * (k - n + 1) + EMPTY * (2 * n - k - 4) + HOTEL + EMPTY) print(EMPTY * n) main() ```
vfc_134542
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/980/B", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "33 57\n", "output": "YES\n.................................\n.###############################.\n.#############.....#############.\n.................................\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "99 55\n", "output": "YES\n...................................................................................................\n......................#######################################################......................\n...................................................................................................\n...................................................................................................\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "37 19\n", "output": "YES\n.....................................\n.........###################.........\n.....................................\n.....................................\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/119/B
Solve the following coding problem using the programming language python: Vasya is about to take his first university exam in about several minutes. And it's not just some ordinary exam, it's on mathematical analysis. Of course, right now Vasya can only think of one thing: what the result of his talk with the examiner will be... To prepare for the exam, one has to study proofs of n theorems. It is known that there will be k examination cards on the exam and each card contains <image> distinct theorems. Besides, no theorem is mentioned in more than one card (that is, <image> theorems won't be mentioned in any card). During the exam several students may get the same card. We do not know the exact way theorems are distributed by cards, however the students that took the exam before Vasya told him what theorems their cards contained. Vasya evaluates his level of proficiency in the i-th theorem by some number ai. The level of proficiency in some card is the average of the levels of proficiency in the theorems that are included in the card. Now Vasya wants to know the minimally and maximally possible levels of his proficiency in the card he gets on the exam. Vasya wants to determine it by the data he has collected from other students. Unfortunately, Vasya has no time left to do the math and he asked you to help him. Input The first line contains two integers n and k (1 ≤ k ≤ n ≤ 100) — the number of theorems and the number of cards correspondingly. The second line contains n integers ai (0 ≤ ai ≤ 100), the i-th number (1 ≤ i ≤ n) corresponds to Vasya's proficiency in the i-th theorem. The third line contains number q (0 ≤ q ≤ 100) — the number of people that have taken the exam before Vasya. Each of the following q lines contains the description of a student's card: <image> integers from 1 to n inclusive. They are the numbers of theorems included in the card in the order in which they are enumerated in the input data. The numbers are given in an arbitrary order. It is guaranteed that the given cards are valid (that is, that all theorems in one card are different and that different people get cards that either don't contain the same theorems or coincide up to the theorems' permutation). Output Print two real numbers, representing Vasya's minimum and maximum proficiency in the card he will get on the exam. The absolute or relative error should not exceed 10 - 6. Examples Input 7 3 7 15 0 19 10 5 12 2 1 6 7 4 Output 5.0000000000 15.5000000000 Input 4 2 10 8 1 17 2 2 3 3 2 Output 4.5000000000 13.5000000000 Note Let's analyze the first sample. Vasya's proficiency in the cards whose content he already knows equals 6 and 15.5 correspondingly. The three theorems that are left are only enough to make one exam card. If we consider all possible variants of theorems included in the card we can see that in the best case scenario Vasya gets the card that contains theorems 4 and 7 (his proficiency would equal 15.5) and in the worst case scenario he gets theorems 3 and 5 (his proficiency would equal 5). The ⌊ x⌋ operation denotes taking integer part of real number x (rounding down). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, k) = map(int, input().split()) a = list(map(int, input().split())) (ansMin, ansMax) = (10 ** 10, -10 ** 10) were = [0] * n sz = n // k for i in range(int(input())): cur = 0.0 t = map(int, input().split()) for x in t: were[x - 1] = 1 cur += a[x - 1] cur /= sz ansMin = min(ansMin, cur) ansMax = max(ansMax, cur) remain = [] for i in range(n): if not were[i]: remain.append(a[i]) remain.sort() if len(remain) - n % k >= sz: ansMin = min(ansMin, 1.0 * sum(remain[:sz]) / sz) ansMax = max(ansMax, 1.0 * sum(remain[-sz:]) / sz) print('%.10f %.10f' % (ansMin, ansMax)) ```
vfc_134546
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/119/B", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 6\n100 100 100 100 100 100 100 100 100 100\n6\n4\n10\n2\n4\n7\n5\n", "output": "100.0000000000 100.0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "90 15\n78 78 57 46 96 3 2 79 26 58 95 79 33 33 54 60 26 93 85 74 51 100 68 40 51 14 78 0 73 61 17 59 8 40 87 93 57 72 38 92 20 15 77 74 97 59 33 45 69 71 71 32 25 58 86 26 13 36 6 73 56 36 30 43 38 26 58 6 74 13 11 23 80 54 81 76 41 22 1 73 10 15 82 47 66 50 98 74 12 63\n9\n88 89 86 66 12 15\n59 3 38 78 53 18\n21 61 36 39 57 4\n67 55 14 46 60 54\n84 75 9 23 48 1\n57 4 61 21 36 39\n79 72 2 83 6 26\n4 61 36 39 21 57\n74 32 24 11 85 42\n", "output": "6.1666666667 95.0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 2\n1 2 3\n2\n1\n2\n", "output": "1.0000000000 2.0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100 100\n53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n0\n", "output": "0.0000000000 53.0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "53 27\n100 85 0 86 19 32 82 66 54 10 9 81 40 65 23 17 58 68 100 46 28 48 28 11 79 11 36 89 61 11 67 88 79 28 16 93 31 34 54 9 33 45 60 18 23 28 38 71 76 51 10 9 92\n20\n43\n43\n14\n2\n25\n31\n25\n13\n48\n1\n38\n46\n9\n19\n30\n1\n28\n19\n43\n27\n", "output": "0.0000000000 100.0000000000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1185/C2
Solve the following coding problem using the programming language python: The only difference between easy and hard versions is constraints. If you write a solution in Python, then prefer to send it in PyPy to speed up execution time. A session has begun at Beland State University. Many students are taking exams. Polygraph Poligrafovich is going to examine a group of $n$ students. Students will take the exam one-by-one in order from $1$-th to $n$-th. Rules of the exam are following: The $i$-th student randomly chooses a ticket. if this ticket is too hard to the student, he doesn't answer and goes home immediately (this process is so fast that it's considered no time elapses). This student fails the exam. if the student finds the ticket easy, he spends exactly $t_i$ minutes to pass the exam. After it, he immediately gets a mark and goes home. Students take the exam in the fixed order, one-by-one, without any interruption. At any moment of time, Polygraph Poligrafovich takes the answer from one student. The duration of the whole exam for all students is $M$ minutes ($\max t_i \le M$), so students at the end of the list have a greater possibility to run out of time to pass the exam. For each student $i$, you should count the minimum possible number of students who need to fail the exam so the $i$-th student has enough time to pass the exam. For each student $i$, find the answer independently. That is, if when finding the answer for the student $i_1$ some student $j$ should leave, then while finding the answer for $i_2$ ($i_2>i_1$) the student $j$ student does not have to go home. -----Input----- The first line of the input contains two integers $n$ and $M$ ($1 \le n \le 2 \cdot 10^5$, $1 \le M \le 2 \cdot 10^7$) — the number of students and the total duration of the exam in minutes, respectively. The second line of the input contains $n$ integers $t_i$ ($1 \le t_i \le 100$) — time in minutes that $i$-th student spends to answer to a ticket. It's guaranteed that all values of $t_i$ are not greater than $M$. -----Output----- Print $n$ numbers: the $i$-th number must be equal to the minimum number of students who have to leave the exam in order to $i$-th student has enough time to pass the exam. -----Examples----- Input 7 15 1 2 3 4 5 6 7 Output 0 0 0 0 0 2 3 Input 5 100 80 40 40 40 60 Output 0 1 1 2 3 -----Note----- The explanation for the example 1. Please note that the sum of the first five exam times does not exceed $M=15$ (the sum is $1+2+3+4+5=15$). Thus, the first five students can pass the exam even if all the students before them also pass the exam. In other words, the first five numbers in the answer are $0$. In order for the $6$-th student to pass the exam, it is necessary that at least $2$ students must fail it before (for example, the $3$-rd and $4$-th, then the $6$-th will finish its exam in $1+2+5+6=14$ minutes, which does not exceed $M$). In order for the $7$-th student to pass the exam, it is necessary that at least $3$ students must fail it before (for example, the $2$-nd, $5$-th and $6$-th, then the $7$-th will finish its exam in $1+3+4+7=15$ minutes, which does not exceed $M$). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys, math def read_int(): return int(sys.stdin.readline().strip()) def read_int_list(): return list(map(int, sys.stdin.readline().strip().split())) def read_string(): return sys.stdin.readline().strip() def read_string_list(delim=' '): return sys.stdin.readline().strip().split(delim) def print_list(l): print(' '.join(map(str, l))) import heapq def compute(diff_wanted, freqs): out = 0 for i in range(99, -1, -1): if diff_wanted <= 0: break if freqs[i] * (i + 1) <= diff_wanted: diff_wanted -= freqs[i] * (i + 1) out += freqs[i] else: consumption = min(freqs[i], math.ceil(diff_wanted / (i + 1))) diff_wanted -= consumption * (i + 1) out += consumption return out (n, m) = read_int_list() times = read_int_list() sum_array = [0 for _ in range(n)] sum_array[0] = times[0] for i in range(1, n): sum_array[i] = sum_array[i - 1] + times[i] freqs = [0 for _ in range(100)] for i in range(n): if sum_array[i] > m: ans = compute(sum_array[i] - m, freqs) print(ans, end=' ') else: print('0', end=' ') freqs[times[i] - 1] += 1 print() ```
vfc_134550
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1185/C2", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7 15\n1 2 3 4 5 6 7\n", "output": "0 0 0 0 0 2 3 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 100\n80 40 40 40 60\n", "output": "0 1 1 2 3 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n1\n", "output": "0 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 20000000\n100\n", "output": "0 ", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 100\n100\n", "output": "0 ", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/ajourney/problem
Solve the following coding problem using the programming language python: Elon Musk has succesfully built an automated staircase from Earth to Mars. Many people want to go to Mars, but that's not possible due to limited capacity of the staircase and logistics involved. Hence, Elon asks interested candidates to solve a tough challenge. If they solve it, they get a chance to visit Mars, otherwise not. Sam is highly interested in going to Mars. Can you help him solve the challenge? The staircase has N steps. One can either go step by step, or at each step, can take a jump of at most N steps. Elon is interested to know the number of ways in which you can go to Mars. Since the number of steps in stairs can be insanely large, Elon is only interested in the first and the last K digits of number of ways from which he can compute the actual answer with his algorithm. Input Format First line is an integer T that denotes the number of test cases. Next T lines contain 2 integers each, N and K. Output Format T lines. Each line corresponds to one of the test cases and contains the sum of numbers which are formed by first K digit and last K digits of number of ways. Constraints 1<=T<=1000 1<=N<=10^9 1<=K<=9 If S is the number of ways in which one can climb the staircase, then the number of digits in S is greater or equal to the K. Sample Input 2 10 2 12 1 Sample Output 63 10 If there are 10 steps, let's call the number of ways in which one can go is S let S be of the form wxyz. So, summing wx + yz gives 63. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import log10, ceil T = int(input()) for _ in range(T): (n, k) = [int(x) for x in input().split()] n -= 1 c = 2 * ceil(k + log10(n)) e = n b = 2 s = 1 while e > 0: if e % 2 == 1: s = int(str(s * b)[:c]) e //= 2 b = int(str(b * b)[:c]) s = str(s)[:k] r = int(s) + pow(2, n, 10 ** k) print(r) ```
vfc_134555
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/ajourney/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n10 2 \n12 1\n", "output": "63\n10\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/LAPD
Solve the following coding problem using the programming language python: Read problem statements in [Hindi], [Bengali], [Mandarin Chinese], [Vietnamese] as well. Ben Fero is a popular guy who likes inventing and solving interesting problems. Last weekend, he found a challenging problem, but he could not solve it on his own, so he decided to ask you for help. Can you help Ben Fero solve this problem? You are given three integers $A$, $B$ and $C$. Let's call a triple of integers $(a, b, c)$ *interesting* if it satisfies the following criteria: $1 ≤ a ≤ A$, $1 ≤ b ≤ B$ and $1 ≤ c ≤ C$ for any two real numbers $x$ and $y$ such that $x \neq 0$ and $y \neq 0$, $ax^{2} + 2bxy + cy^{2} > x^{2} + y^{2}$ holds You should find the number of interesting triples. Since this number could be very large, compute it modulo $10^{9}+7$. ------ Input ------ The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. The first and only line of each test case contains three space-separated integers $A$, $B$ and $C$. ------ Output ------ For each test case, print a single line containing one integer ― the number of interesting triples modulo $10^{9}+7$. ------ Constraints ------ $1 ≤ T ≤ 10$ $1 ≤ A, C ≤ 10^{9}$ $1 ≤ B ≤ 5,000$ ------ Subtasks ------ Subtask #1 (30 points): $1 ≤ A, B, C ≤ 100$ Subtask #2 (20 points): $1 ≤ A, B, C ≤ 5,000$ Subtask #3 (50 points): original constraints ----- Sample Input 1 ------ 2 2 5 3 3 2 4 ----- Sample Output 1 ------ 1 6 ----- explanation 1 ------ Example case 1: There is only one interesting triple: $(2, 1, 3)$. Example case 2: The interesting triples are $(2, 1, 3)$, $(2, 1, 4)$, $(3, 1, 2)$, $(3, 1, 3)$, $(3, 1, 4)$ and $(3, 2, 4)$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import numpy as np import math t_cases = int(input()) MOD = 1000000000 + 7 bmax = 5000 sq_integers = [] sum_sq_integers = [] for i in range(1, bmax + 1): sq_integers.append(i * i) sum_sq_integers.append(0) for i in range(0, bmax): if i == 0: sum_sq_integers[i] = sq_integers[i] else: sum_sq_integers[i] = sq_integers[i] + sum_sq_integers[i - 1] def get_sum_sq(a, b): if a > b: return 0 if a == 1: return sum_sq_integers[b - 1] return sum_sq_integers[b - 1] - sum_sq_integers[a - 2] dp_rem_sq = [] for i in range(1, bmax + 1): tmp_lst = [] sm = 0 for j in range(0, bmax // 50): for k in range(j * 50 + 1, j * 50 + 51): if k > i: sm += k * k % i tmp_lst.append(sm) dp_rem_sq.append(tmp_lst) def f4(a, b, bm, c): if a < b or c < b: return 0 return (bm - b + 1 + MOD) % MOD def f3(a, b, bm): if a <= b or b >= bm: return 0 if a < bm * bm // b: sqrt_ab = int(math.sqrt(a * b)) ans = f3(a, b, sqrt_ab) + max(0, bm - max(b, sqrt_ab)) * max(0, a - b) return ans % MOD ind = bm // 50 - 1 ans = 0 if ind >= 0: ans = get_sum_sq(b, ind * 50 + 50) - dp_rem_sq[b - 1][ind] ans = ans // b % MOD for i in range(bm // 50 * 50 + 1, bm + 1): if i >= b: ans += i * i // b % MOD ans = ans % MOD ans = (ans - b * max(bm - b + 1, 0) % MOD + MOD) % MOD return ans def f2(a, b, bm, c): if a < b or c < b: return 0 tmp = (f3(a, b, bm) + f3(c, b, bm) + f4(a, b, bm, c)) % MOD return tmp def f_501(a, b, c): ans = 0 for i in range(1, b + 1): ans += f2(a, i, b, c) % MOD ans = (a * b * c % MOD + MOD - ans % MOD) % MOD return ans % MOD def exc(a, x, b, c): if 1 <= x and x <= a and (x <= c): return max(min(b * b // x, a) - x, 0) + max(min(b * b // x, c) - x, 0) + 1 return 0 def triple_b(a, b, c): if a * c == 0 or b * b - a * c >= 0: return 0 sm = 0 for i in range(1, b + 1): sm = (sm + exc(a, i, b, c)) % MOD sm = (a * c - sm + MOD) % MOD return sm % MOD ans = '' for i in range(0, t_cases): (a, b, c) = list(map(int, input().split())) sm = 0 if b <= 100: for i in range(1, b + 1): sm = (sm + triple_b(a - 1, i, c - 1)) % MOD else: sm = f_501(a - 1, b, c - 1) % MOD ans = ans + str(sm) + '\n' print(ans, end='') ```
vfc_134559
{ "difficulty": "hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/LAPD", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2 5 3\n3 2 4", "output": "1\n6", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/272/B
Solve the following coding problem using the programming language python: Dima got into number sequences. Now he's got sequence a_1, a_2, ..., a_{n}, consisting of n positive integers. Also, Dima has got a function f(x), which can be defined with the following recurrence: f(0) = 0; f(2·x) = f(x); f(2·x + 1) = f(x) + 1. Dima wonders, how many pairs of indexes (i, j) (1 ≤ i < j ≤ n) are there, such that f(a_{i}) = f(a_{j}). Help him, count the number of such pairs. -----Input----- The first line contains integer n (1 ≤ n ≤ 10^5). The second line contains n positive integers a_1, a_2, ..., a_{n} (1 ≤ a_{i} ≤ 10^9). The numbers in the lines are separated by single spaces. -----Output----- In a single line print the answer to the problem. Please, don't use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier. -----Examples----- Input 3 1 2 4 Output 3 Input 3 5 3 1 Output 1 -----Note----- In the first sample any pair (i, j) will do, so the answer is 3. In the second sample only pair (1, 2) will do. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def helper(x): ret = 0 while x > 0: if x % 2 == 0: x //= 2 else: ret += 1 x //= 2 return ret n = int(input()) a = list(map(int, input().split())) d = [0] * 10000 for element in a: res = helper(element) d[res] += 1 ans = 0 for element in d: ans += element * (element - 1) / 2 print(int(ans)) ```
vfc_134563
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/272/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 2 4\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5 3 1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n469264357 996569493\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/fibonacci-lcm/problem
Solve the following coding problem using the programming language python: After Derek (of district 5) discovered how to compute the greatest common divisor (gcd) of Fibonacci numbers, he now tried to answer the next obvious question: how does one compute the least common multiple (lcm) of Fibonacci numbers? Unfortunately, Derek found out that this wasn't as easy as the original problem, so he asked you to answer it for him. The Fibonacci numbers are defined as: $F_1=F_2=1$ $F_n=F_{n-1}+F_{n-2}$ Given $N$ integers $a_1,a_2,\ldots,a_N$, find $\text{lcm}(F_{a_1},F_{a_2},\ldots,F_{a_N})$, and give your answer modulo $10^9+7$. Input Format The first line of input contains $N$. Each of the next $N$ lines contains a number: the $i^{th}$ line contains $a_i$. Constraints $1\leq N\leq100$ $1\leq a_i\leq10^9$ Output Format Print a single integer, which is the least common multiple of the ${F}_{a_i}$, modulo $10^9+7$. Sample Input 5 1 3 3 6 9 Sample Output 136 Explanation $\text{lcm}(F_1,F_3,F_3,F_6,F_9)=\text{lcm}(1,2,2,8,34)=136$ The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys, random from math import sqrt def gcd(a, b): while 1: if b == 0: return a a %= b if a == 0: return b b %= a def fib_mod(n, mod): if n <= 2: return ((n + 1 >> 1) % mod, (n + 2 >> 1) % mod) mask = 4 while mask <= n: mask <<= 1 mask >>= 2 (a, b) = (1, 1) while mask: if mask & n: (a, b) = ((a * a + b * b) % mod, b * ((a << 1) + b) % mod) else: (a, b) = (a * ((b << 1) - a) % mod, (a * a + b * b) % mod) mask >>= 1 return (a, b) def divisors(n): l = [1] f = factors(n) for (p, e) in f: for i in range(len(l)): v = l[i] for j in range(e): v *= p l.append(v) return sorted(l) def p6(): def solve(seq): seq = sorted(seq) next = [] for i in range(len(seq)): for j in range(i + 1, len(seq)): if seq[j] % seq[i] == 0: break else: next.append(seq[i]) seq = next[:] ans = 1 for i in range(len(seq)): c = seq[i] ans = ans * fib_mod(c, MOD)[0] % MOD t = 1 s = set() for g in seq[:i]: s.add(gcd(g, c)) s = list(sorted(s)) k = solve(s) ans = ans * pow(k, MOD - 2, MOD) % MOD return ans stdin = sys.stdin MOD = 10 ** 9 + 7 T = int(stdin.readline()) seq = [] for _ in range(T): N = int(stdin.readline()) seq.append(N) print(solve(seq)) p6() ```
vfc_134567
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/fibonacci-lcm/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n1\n3\n3\n6\n9\n", "output": "136\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/84/A
Solve the following coding problem using the programming language python: The hero of our story, Valera, and his best friend Arcady are still in school, and therefore they spend all the free time playing turn-based strategy "GAGA: Go And Go Again". The gameplay is as follows. There are two armies on the playing field each of which consists of n men (n is always even). The current player specifies for each of her soldiers an enemy's soldier he will shoot (a target) and then all the player's soldiers shot simultaneously. This is a game world, and so each soldier shoots perfectly, that is he absolutely always hits the specified target. If an enemy soldier is hit, he will surely die. It may happen that several soldiers had been indicated the same target. Killed soldiers do not participate in the game anymore. The game "GAGA" consists of three steps: first Valera makes a move, then Arcady, then Valera again and the game ends. You are asked to calculate the maximum total number of soldiers that may be killed during the game. Input The input data consist of a single integer n (2 ≤ n ≤ 108, n is even). Please note that before the game starts there are 2n soldiers on the fields. Output Print a single number — a maximum total number of soldiers that could be killed in the course of the game in three turns. Examples Input 2 Output 3 Input 4 Output 6 Note The first sample test: 1) Valera's soldiers 1 and 2 shoot at Arcady's soldier 1. 2) Arcady's soldier 2 shoots at Valera's soldier 1. 3) Valera's soldier 1 shoots at Arcady's soldier 2. There are 3 soldiers killed in total: Valera's soldier 1 and Arcady's soldiers 1 and 2. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) print(n * 3 // 2) ```
vfc_134571
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/84/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "8457980\n", "output": "12686970", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFPCHF
Solve the following coding problem using the programming language python: Read problems statements in mandarin chinese, russian and vietnamese as well. Fehc is Chef's best friend. They grew up with each other, and often help each other with competitive programming. Chef is participating in a programming contest prepared by Fehc and finds the following problem in Fehc's problem set: given a string s[1..N], count the number of pairs of indices 1 ≤ i ≤ j ≤ N such that s[i..j] is palindrome and j-i is even. The characters that may appear in s are 0, 1, 2, ..., 10^{9}. Chef doesn't know the solution, but he knows Fehc's habits of creating test data. When preparing data for a string problem, Fehc always generates a string of N 0's, and replaces some of the 0's by other characters. Thus, Chef assumes that there are only K nonzero characters in s, and K is usually much smaller than N. Given this useful information, can you help Chef solve this problem? ------ Input ------ The first line of input contains one integer T denoting the number of test cases. For each test case, the first line contains two space-separated integers N and K. K lines follow; the i-th of these lines contains two space-separated integers p_{i} and q_{i}, meaning that the i-th nonzero character is s[p_{i}] = q_{i}. ------ Output ------ For each test case, output one integer denoting the answer to the problem. ------ Constraints ------ $1 ≤ T ≤ 10$ $1 ≤ N ≤ 10^{9}$ $0 ≤ K ≤ 10^{5}$ $1 ≤ p_{1} < p_{2} < ... < p_{K} ≤ N$ $1 ≤ q_{i} ≤ 10^{9}$ Subtask #1 (9 points): $N ≤ 1000$ Subtask #2 (14 points): $N ≤ 10^{5}$ Subtask #3 (21 points): $K ≤ 1000$ Subtask #4 (56 points): $original constraints$ ----- Sample Input 1 ------ 3 7 2 5 1 6 1 7 3 2 1 4 2 6 1 10 0 ----- Sample Output 1 ------ 9 12 30 ----- explanation 1 ------ Example case 1: s={0,0,0,0,1,1,0}. The 9 pairs (i,j) are: (1,1), (2,2), ..., (7,7), (1,3) and (2,4). Example case 2: s={0,1,0,2,0,1,0}. Example case 3: s={0,0,0,0,0,0,0,0,0,0}. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def getPLens(x): n = len(x) ret = [0] * n mx = 0 mxi = 0 for i in range(1, n): pp = min(ret[2 * mxi - i], mxi - i + ret[mxi]) if pp < 0: pp = 0 while True: a = i - pp b = i + pp if a < 0 or b >= n: break if x[a] != x[b]: break pp += 1 pp -= 1 ret[i] = pp if i + pp > mx: mx = i + pp mxi = i return ret def getBase(x): return x // 2 * (x // 2 + 1) def solve(x, n): p0 = 0 ret = [] for (a, b) in x: ret += [a - p0 - 1] ret += [b] p0 = a ret += [n - p0] pp = getPLens(ret) cmlen = [0] for (i, z) in enumerate(ret): if i % 2 == 0: cmlen += [cmlen[-1] + z] else: cmlen += [cmlen[-1] + 1] rr = 0 for (i, p) in enumerate(pp): if i % 2 == 0: rr += getBase(ret[i]) if i % 2 == 0 and ret[i] % 2 == 0: continue i0 = i - p i1 = i + p ll = cmlen[i1 + 1] - cmlen[i0] if i0 % 2 == 1: ll += min(ret[i0 - 1], ret[i1 + 1]) * 2 rr += (ll + 1) // 2 return rr import sys f = sys.stdin t = int(f.readline()) for i in range(t): (n, k) = map(int, f.readline().split()) x = [] for i in range(k): x += [tuple(map(int, f.readline().split()))] print(solve(x, n)) ```
vfc_134579
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFPCHF", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n7 2\n5 1\n6 1\n7 3\n2 1\n4 2\n6 1\n10 0", "output": "9\n12\n30", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/TRICOIN
Solve the following coding problem using the programming language python: Read problems statements in Mandarin Chinese , Russian and Vietnamese as well. Chef belongs to a very rich family which owns many gold mines. Today, he brought N gold coins and decided to form a triangle using these coins. Isn't it strange? Chef has a unusual way of forming a triangle using gold coins, which is described as follows: He puts 1 coin in the 1^{st} row. then puts 2 coins in the 2^{nd} row. then puts 3 coins in the 3^{rd} row. and so on as shown in the given figure. Chef is interested in forming a triangle with maximum possible height using at most N coins. Can you tell him the maximum possible height of the triangle? ------ Input ------ The first line of input contains a single integer T denoting the number of test cases. The first and the only line of each test case contains an integer N denoting the number of gold coins Chef has. ------ Output ------ For each test case, output a single line containing an integer corresponding to the maximum possible height of the triangle that Chef can get. ------ Constraints ------ $1 ≤ T ≤ 100$ $1 ≤ N ≤ 10^{9}$ ------ Subtasks ------ $Subtask 1 (48 points) : 1 ≤ N ≤ 10^{5}$ $Subtask 2 (52 points) : 1 ≤ N ≤ 10^{9}$ ----- Sample Input 1 ------ 3 3 5 7 ----- Sample Output 1 ------ 2 2 3 ----- explanation 1 ------ Test 1: Chef can't form a triangle with height > 2 as it requires atleast 6 gold coins. Test 2: Chef can't form a triangle with height > 2 as it requires atleast 6 gold coins. Test 3: Chef can't form a triangle with height > 3 as it requires atleast 10 gold coins. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) n = n * 2 h = 0 while True: h += 1 x = h * (h + 1) if x > n: break print(h - 1) ```
vfc_134583
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/TRICOIN", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3\n5\n7", "output": "2\n2\n3", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n3\n5\n11", "output": "2\n2\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2\n5\n11", "output": "1\n2\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2\n9\n11", "output": "1\n3\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n4\n9\n11", "output": "2\n3\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5\n9\n2", "output": "2\n3\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1742/C
Solve the following coding problem using the programming language python: On an $8 \times 8$ grid, some horizontal rows have been painted red, and some vertical columns have been painted blue, in some order. The stripes are drawn sequentially, one after the other. When the stripe is drawn, it repaints all the cells through which it passes. Determine which color was used last. The red stripe was painted after the blue one, so the answer is R. -----Input----- The first line of the input contains a single integer $t$ ($1 \leq t \leq 4000$) — the number of test cases. The description of test cases follows. There is an empty line before each test case. Each test case consists of $8$ lines, each containing $8$ characters. Each of these characters is either 'R', 'B', or '.', denoting a red square, a blue square, and an unpainted square, respectively. It is guaranteed that the given field is obtained from a colorless one by drawing horizontal red rows and vertical blue columns. At least one stripe is painted. -----Output----- For each test case, output 'R' if a red stripe was painted last, and 'B' if a blue stripe was painted last (without quotes). -----Examples----- Input 4 ....B... ....B... ....B... RRRRRRRR ....B... ....B... ....B... ....B... RRRRRRRB B......B B......B B......B B......B B......B B......B RRRRRRRB RRRRRRBB .B.B..BB RRRRRRBB .B.B..BB .B.B..BB RRRRRRBB .B.B..BB .B.B..BB ........ ........ ........ RRRRRRRR ........ ........ ........ ........ Output R B B R -----Note----- The first test case is pictured in the statement. In the second test case, the first blue column is painted first, then the first and last red rows, and finally the last blue column. Since a blue stripe is painted last, the answer is B. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys def solution(): row = '\n' while row == '\n': row = sys.stdin.readline() a = [row.strip()] for i in range(7): row = sys.stdin.readline().strip() a.append(row) for i in range(8): if a[i] == 'RRRRRRRR': print('R') return print('B') def main(): t = int(input()) while t: solution() t -= 1 main() ```
vfc_134588
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1742/C", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n\n....B...\n....B...\n....B...\nRRRRRRRR\n....B...\n....B...\n....B...\n....B...\n\nRRRRRRRB\nB......B\nB......B\nB......B\nB......B\nB......B\nB......B\nRRRRRRRB\n\nRRRRRRBB\n.B.B..BB\nRRRRRRBB\n.B.B..BB\n.B.B..BB\nRRRRRRBB\n.B.B..BB\n.B.B..BB\n\n........\n........\n........\nRRRRRRRR\n........\n........\n........\n........\n", "output": "R\nB\nB\nR\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Sachin wants to give a love letter to his girlfriend on valentines day. He is having a circular piece of paper of radius "r". He wants to use rectangular piece of paper for letter writing whose length and breadth are integers. In how many ways can he do that. NOTE : Rectangle of a * b and b * a are considered as different rectangles by Sachin. ** Input :** 12 NOTE : You do not need to create a program for this problem you have to write your answers of given input in given code snippet To see how to submit solution please check this link SAMPLE INPUT 2 SAMPLE OUTPUT 8 Explanation No Explanation,, you have to understand yourself. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ''' # Read input from stdin and provide input before running code name = raw_input('What is your name?\n') print 'Hi, %s.' % name ''' print('424') ```
vfc_134592
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "12", "output": "424", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/685/B
Solve the following coding problem using the programming language python: After the piece of a devilish mirror hit the Kay's eye, he is no longer interested in the beauty of the roses. Now he likes to watch snowflakes. Once upon a time, he found a huge snowflake that has a form of the tree (connected acyclic graph) consisting of n nodes. The root of tree has index 1. Kay is very interested in the structure of this tree. After doing some research he formed q queries he is interested in. The i-th query asks to find a centroid of the subtree of the node vi. Your goal is to answer all queries. Subtree of a node is a part of tree consisting of this node and all it's descendants (direct or not). In other words, subtree of node v is formed by nodes u, such that node v is present on the path from u to root. Centroid of a tree (or a subtree) is a node, such that if we erase it from the tree, the maximum size of the connected component will be at least two times smaller than the size of the initial tree (or a subtree). Input The first line of the input contains two integers n and q (2 ≤ n ≤ 300 000, 1 ≤ q ≤ 300 000) — the size of the initial tree and the number of queries respectively. The second line contains n - 1 integer p2, p3, ..., pn (1 ≤ pi ≤ n) — the indices of the parents of the nodes from 2 to n. Node 1 is a root of the tree. It's guaranteed that pi define a correct tree. Each of the following q lines contain a single integer vi (1 ≤ vi ≤ n) — the index of the node, that define the subtree, for which we want to find a centroid. Output For each query print the index of a centroid of the corresponding subtree. If there are many suitable nodes, print any of them. It's guaranteed, that each subtree has at least one centroid. Example Input 7 4 1 1 3 3 5 3 1 2 3 5 Output 3 2 3 6 Note <image> The first query asks for a centroid of the whole tree — this is node 3. If we delete node 3 the tree will split in four components, two of size 1 and two of size 2. The subtree of the second node consists of this node only, so the answer is 2. Node 3 is centroid of its own subtree. The centroids of the subtree of the node 5 are nodes 5 and 6 — both answers are considered correct. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import operator import bisect (n, q) = [int(s) for s in input().split()] ps = [int(s) for s in input().split()] childs = [[] for _ in range(n)] for (c, pa) in enumerate(ps): childs[pa - 1].append(c + 1) toposort = [] this_level = [0] next_level = [] while len(this_level) > 0: for this_n in this_level: toposort.append(this_n) for c in childs[this_n]: next_level.append(c) this_level = next_level next_level = [] sz = [0] * n potentials = [0] * n potential_sz = [0] * n potential_lo = [0] * n centr = [0] * n for node in reversed(toposort): if len(childs[node]) == 0: centr[node] = node sz[node] = 1 else: s = 1 lg_c = -1 lg_c_sz = 0 for c in childs[node]: s += sz[c] if sz[c] > lg_c_sz: lg_c_sz = sz[c] lg_c = c sz[node] = s if lg_c_sz <= sz[node] // 2: centr[node] = node potentials[node] = [node] potential_sz[node] = [sz[node]] continue potentials[node] = potentials[lg_c] potential_sz[node] = potential_sz[lg_c] i = bisect.bisect_right(potential_sz[node], sz[node] // 2, lo=potential_lo[lg_c]) centr[node] = potentials[node][i] potentials[node].append(node) potential_lo[node] = i potential_sz[node].append(sz[node]) vs = [int(input()) - 1 for i in range(q)] print('\n'.join([str(centr[v] + 1) for v in vs])) ```
vfc_134596
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/685/B", "time_limit": "3.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 2\n1\n1\n2\n", "output": "1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 4\n1 1 3 3 5 3\n2\n2\n3\n5\n", "output": "2\n2\n3\n5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 4\n1 1 3 3 5 3\n2\n4\n3\n5\n", "output": "2\n4\n3\n5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 4\n1 1 3 3 5 3\n2\n3\n3\n5\n", "output": "2\n3\n3\n5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 4\n1 1 3 3 5 3\n2\n4\n3\n3\n", "output": "2\n4\n3\n3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/fill-the-tank3026/1
Solve the following coding problem using the programming language python: In a city, N water tanks are connected by pipeline(As a tree) where the ith tank has a capacity cap[i]. The ith element of the given Edge array of length N-1 represents that there is a pipeline between Edge[i][0] and Edge[i][1] tank. Since people working at the city corporation are lazy they usually select one of the tank and pour complete amount of water into it, when the tank is filled, the excess water evenly flows to the connected tanks. The head of city corporation has instructed to pour minimum amount of water into the selected tank so that all other tank is filled. As the labours of the corporation are not intelligent enough to figure out the minimum amount of water required to fill all the tanks they have asked your help. Also Maximum amount of water available with city corporation is 10^{18}. NOTE: If the tank if full, the water flows to all of its connected tanks except the tank from which the water had come to it. i.e, to all tanks except the source for that particular tank. If it has no option to flow the water is considered to be wasted. S is the source tank. Example 1: Input: N = 4 and S = 1 Edges = [[1, 2], [1, 3], [2, 4]] Cap = [1, 1, 1, 1] Output: 5 Explanation: Initially 5 unit of water is poured into tank 1. 2 unit of it flows to tank 2 and 2 unit of it flows into tank 3. From 2 unit of water in tank 2, 1 unit flows into tank 4 and 1 unit from tank 3 is wasted. Example 2: Input: N = 3 and S = 2 Edges = [[1, 2], [2, 3]] Cap = [1, 1, 1] Output: 3 Your Task: You don't need to read input or print anything. Your task is to complete the function minimum_amount() which takes an integer N, an integer S, 2-d array Edges, and an array Cap of length N as input parameters and returns the minimum amount of water required to fill all the tanks. If it is not possible to fill all the tanks print -1. Expected Time Complexity: O(N*log(S)) Expected Auxiliary Space: O(1) Constraints: 1 ≤ n ≤ 100000 1 ≤ s,u,v ≤ n 1 ≤ capacity of each tank ≤ 1000000007 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def minimum_amount (self, Edges, num, start, Cap): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys sys.setrecursionlimit(10 ** 8) class Solution: def minimum_amount(self, edges, N, S, cap): def recur(graph, visited, cur_node, cap): if visited[cur_node]: return -1 visited[cur_node] = True cur_cap = cap[cur_node - 1] max_neigh_cap = 0 neighbours = 0 for neigh_node in graph[cur_node]: neigh_cap = recur(graph, visited, neigh_node, cap) if neigh_cap == -1: continue max_neigh_cap = max(max_neigh_cap, neigh_cap) neighbours += 1 cur_cap += max_neigh_cap * neighbours return cur_cap graph = {i: [] for i in range(1, N + 1)} for (n1, n2) in edges: graph[n1].append(n2) graph[n2].append(n1) visited = [False] * (N + 1) res = recur(graph, visited, S, cap) for i in range(1, N + 1): if not visited[i]: return -1 if res > 10 ** 18: return -1 return res ```
vfc_134600
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/fill-the-tank3026/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 4 and S = 1\r\nEdges = [[1, 2], [1, 3], [2, 4]]\r\nCap = [1, 1, 1, 1]", "output": "5", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 3 and S = 2\r\nEdges = [[1, 2], [2, 3]]\r\nCap = [1, 1, 1]", "output": "3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/765/C
Solve the following coding problem using the programming language python: Misha and Vanya have played several table tennis sets. Each set consists of several serves, each serve is won by one of the players, he receives one point and the loser receives nothing. Once one of the players scores exactly k points, the score is reset and a new set begins. Across all the sets Misha scored a points in total, and Vanya scored b points. Given this information, determine the maximum number of sets they could have played, or that the situation is impossible. Note that the game consisted of several complete sets. -----Input----- The first line contains three space-separated integers k, a and b (1 ≤ k ≤ 10^9, 0 ≤ a, b ≤ 10^9, a + b > 0). -----Output----- If the situation is impossible, print a single number -1. Otherwise, print the maximum possible number of sets. -----Examples----- Input 11 11 5 Output 1 Input 11 2 3 Output -1 -----Note----- Note that the rules of the game in this problem differ from the real table tennis game, for example, the rule of "balance" (the winning player has to be at least two points ahead to win a set) has no power within the present problem. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (k, a, b) = map(int, input().split()) mx_a = a // k mx_b = b // k if mx_a == 0 and b % k != 0: print(-1) elif mx_b == 0 and a % k != 0: print(-1) else: print(mx_a + mx_b) ```
vfc_134601
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/765/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "11 11 5\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "11 2 3\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 5 9\n", "output": "14\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 3 3\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/391/F1
Solve the following coding problem using the programming language python: This problem consists of three subproblems: for solving subproblem F1 you will receive 8 points, for solving subproblem F2 you will receive 15 points, and for solving subproblem F3 you will receive 10 points. Manao has developed a model to predict the stock price of a company over the next n days and wants to design a profit-maximizing trading algorithm to make use of these predictions. Unfortunately, Manao's trading account has the following restrictions: * It only allows owning either zero or one shares of stock at a time; * It only allows buying or selling a share of this stock once per day; * It allows a maximum of k buy orders over the next n days; For the purposes of this problem, we define a trade to a be the act of buying one share of stock on day i, then holding the stock until some day j > i at which point the share is sold. To restate the above constraints, Manao is permitted to make at most k non-overlapping trades during the course of an n-day trading period for which Manao's model has predictions about the stock price. Even though these restrictions limit the amount of profit Manao can make compared to what would be achievable with an unlimited number of trades or the ability to hold more than one share at a time, Manao still has the potential to make a lot of money because Manao's model perfectly predicts the daily price of the stock. For example, using this model, Manao could wait until the price is low, then buy one share and hold until the price reaches a high value, then sell for a profit, and repeat this process up to k times until n days have passed. Nevertheless, Manao is not satisfied by having a merely good trading algorithm, and wants to develop an optimal strategy for trading subject to these constraints. Help Manao achieve this goal by writing a program that will determine when to buy and sell stock to achieve the greatest possible profit during the n-day trading period subject to the above constraints. Input The first line contains two integers n and k, separated by a single space, with <image>. The i-th of the following n lines contains a single integer pi (0 ≤ pi ≤ 1012), where pi represents the price at which someone can either buy or sell one share of stock on day i. The problem consists of three subproblems. The subproblems have different constraints on the input. You will get some score for the correct submission of the subproblem. The description of the subproblems follows. * In subproblem F1 (8 points), n will be between 1 and 3000, inclusive. * In subproblem F2 (15 points), n will be between 1 and 100000, inclusive. * In subproblem F3 (10 points), n will be between 1 and 4000000, inclusive. Output For this problem, the program will only report the amount of the optimal profit, rather than a list of trades that can achieve this profit. Therefore, the program should print one line containing a single integer, the maximum profit Manao can achieve over the next n days with the constraints of starting with no shares on the first day of trading, always owning either zero or one shares of stock, and buying at most k shares over the course of the n-day trading period. Examples Input 10 2 2 7 3 9 8 7 9 7 1 9 Output 15 Input 10 5 2 7 3 9 8 7 9 7 1 9 Output 21 Note In the first example, the best trade overall is to buy at a price of 1 on day 9 and sell at a price of 9 on day 10 and the second best trade overall is to buy at a price of 2 on day 1 and sell at a price of 9 on day 4. Since these two trades do not overlap, both can be made and the profit is the sum of the profits of the two trades. Thus the trade strategy looks like this: 2 | 7 | 3 | 9 | 8 | 7 | 9 | 7 | 1 | 9 buy | | | sell | | | | | buy | sell The total profit is then (9 - 2) + (9 - 1) = 15. In the second example, even though Manao is allowed up to 5 trades there are only 4 profitable trades available. Making a fifth trade would cost Manao money so he only makes the following 4: 2 | 7 | 3 | 9 | 8 | 7 | 9 | 7 | 1 | 9 buy | sell | buy | sell | | buy | sell | | buy | sell The total profit is then (7 - 2) + (9 - 3) + (9 - 7) + (9 - 1) = 21. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys (ammount_prices, days_for_trading) = map(int, input().split()) stonks = [] for i in range(0, ammount_prices): price = int(sys.stdin.readline()) stonks.append(price) def get_max(days_for_trading, stonks): size_prices = len(stonks) if size_prices == 0 or size_prices == 1 or days_for_trading == 0: return 0 if days_for_trading >= size_prices / 2: profit = 0 for i in range(size_prices - 1): diff = stonks[i + 1] - stonks[i] if diff > 0: profit += diff return profit hold = days_for_trading * [float('-inf')] hold_prev = days_for_trading * [float('-inf')] release = days_for_trading * [float('-inf')] release_prev = days_for_trading * [float('-inf')] for price in stonks: for j in range(0, days_for_trading): if j == 0: hold[j] = max(-price, hold_prev[j]) else: hold[j] = max(release_prev[j - 1] - price, hold_prev[j]) release[j] = max(hold_prev[j] + price, release_prev[j]) hold_prev = hold release_prev = release return release[-1] print(get_max(days_for_trading, stonks)) ```
vfc_134605
{ "difficulty": "unknown_difficulty", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/391/F1", "time_limit": "3.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 1\n2\n1\n", "output": "0", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 2\n2\n7\n3\n9\n8\n7\n9\n4\n1\n9\n", "output": "15\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 5\n2\n7\n3\n9\n8\n7\n9\n7\n1\n18\n", "output": "30\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 5\n2\n7\n3\n9\n8\n7\n9\n7\n1\n13\n", "output": "25\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1439/A1
Solve the following coding problem using the programming language python: This is the easy version of the problem. The difference between the versions is in the number of possible operations that can be made. You can make hacks if and only if you solved both versions of the problem. You are given a binary table of size n × m. This table consists of symbols 0 and 1. You can make such operation: select 3 different cells that belong to one 2 × 2 square and change the symbols in these cells (change 0 to 1 and 1 to 0). Your task is to make all symbols in the table equal to 0. You are allowed to make at most 3nm operations. You don't need to minimize the number of operations. It can be proved that it is always possible. Input The first line contains a single integer t (1 ≤ t ≤ 5000) — the number of test cases. The next lines contain descriptions of test cases. The first line of the description of each test case contains two integers n, m (2 ≤ n, m ≤ 100). Each of the next n lines contains a binary string of length m, describing the symbols of the next row of the table. It is guaranteed that the sum of nm for all test cases does not exceed 20000. Output For each test case print the integer k (0 ≤ k ≤ 3nm) — the number of operations. In the each of the next k lines print 6 integers x_1, y_1, x_2, y_2, x_3, y_3 (1 ≤ x_1, x_2, x_3 ≤ n, 1 ≤ y_1, y_2, y_3 ≤ m) describing the next operation. This operation will be made with three cells (x_1, y_1), (x_2, y_2), (x_3, y_3). These three cells should be different. These three cells should belong into some 2 × 2 square. Example Input 5 2 2 10 11 3 3 011 101 110 4 4 1111 0110 0110 1111 5 5 01011 11001 00010 11011 10000 2 3 011 101 Output 1 1 1 2 1 2 2 2 2 1 3 1 3 2 1 2 1 3 2 3 4 1 1 1 2 2 2 1 3 1 4 2 3 3 2 4 1 4 2 3 3 4 3 4 4 4 1 2 2 1 2 2 1 4 1 5 2 5 4 1 4 2 5 1 4 4 4 5 3 4 2 1 3 2 2 2 3 1 2 2 1 2 2 Note In the first test case, it is possible to make only one operation with cells (1, 1), (2, 1), (2, 2). After that, all symbols will be equal to 0. In the second test case: * operation with cells (2, 1), (3, 1), (3, 2). After it the table will be: 011 001 000 * operation with cells (1, 2), (1, 3), (2, 3). After it the table will be: 000 000 000 In the fifth test case: * operation with cells (1, 3), (2, 2), (2, 3). After it the table will be: 010 110 * operation with cells (1, 2), (2, 1), (2, 2). After it the table will be: 000 000 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline def change(x1, x2, x3, y1, y2, y3, ll): ll[x1][y1] = 1 - ll[x1][y1] ll[x2][y2] = 1 - ll[x2][y2] ll[x3][y3] = 1 - ll[x3][y3] t = int(input()) while t: (n, m) = map(int, input().split()) ll = [] for i in range(n): l = list(map(int, input().strip())) ll.append(l) ans = [] for i in range(n - 1): for j in range(m): if i == n - 2 and j == m - 2: break if ll[i][j]: if j + 1 < m: ans.append((i + 1, i + 2, i + 2, j + 1, j + 1, j + 2)) change(i, i + 1, i + 1, j, j, j + 1, ll) else: ans.append((i + 1, i + 2, i + 2, j + 1, j + 1, j)) change(i, i + 1, i + 1, j, j, j - 1, ll) for i in range(m - 1): if ll[n - 1][i] and ll[n - 2][i]: ans.append((n - 1, n, n, i + 1, i + 1, i + 2)) change(n - 2, n - 1, n - 1, i, i, i + 1, ll) elif ll[n - 1][i]: ans.append((n, n, n - 1, i + 1, i + 2, i + 2)) change(n - 1, n - 1, n - 2, i, i + 1, i + 1, ll) elif ll[n - 2][i]: ans.append((n - 1, n - 1, n, i + 1, i + 2, i + 2)) change(n - 2, n - 2, n - 1, i, i + 1, i + 1, ll) if ll[n - 1][m - 1] and ll[n - 2][m - 1]: ans.append((n, n - 1, n, m, m - 1, m - 1)) ans.append((n, n - 1, n - 1, m - 1, m - 1, m)) elif ll[n - 2][m - 1]: ans.append((n - 1, n, n, m, m, m - 1)) change(n - 2, n - 1, n - 1, m - 1, m - 1, m - 2, ll) ans.append((n, n - 1, n - 1, m, m - 1, m)) change(n - 1, n - 2, n - 2, m - 1, m - 2, m - 1, ll) ans.append((n, n - 1, n - 1, m - 1, m, m - 1)) change(n - 1, n - 2, n - 2, m - 2, m - 1, m - 2, ll) elif ll[n - 1][m - 1]: ans.append((n, n, n - 1, m, m - 1, m - 1)) ans.append((n - 1, n - 1, n, m - 1, m, m)) ans.append((n, n, n - 1, m - 1, m, m)) print(len(ans)) for i in ans: (x1, x2, x3, y1, y2, y3) = i print(x1, y1, x2, y2, x3, y3) t -= 1 ```
vfc_134609
{ "difficulty": "medium", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1439/A1", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n2 2\n10\n11\n3 3\n011\n101\n110\n4 4\n1111\n0110\n0110\n1111\n5 5\n01011\n11001\n00010\n11011\n10000\n2 3\n011\n101\n", "output": "1\n1 1 2 1 2 2 \n6\n1 1 1 2 2 2 \n1 1 2 1 2 2 \n1 2 1 3 2 2 \n1 2 2 2 2 3 \n2 1 2 2 3 1 \n2 1 2 2 3 2 \n20\n1 1 1 2 2 2 \n1 2 1 3 2 2 \n1 2 2 2 2 3 \n1 3 1 4 2 3 \n1 3 1 4 2 4 \n1 4 2 3 2 4 \n2 1 2 2 3 2 \n2 1 3 1 3 2 \n2 2 3 1 3 2 \n2 2 2 3 3 3 \n2 2 3 2 3 3 \n2 3 3 2 3 3 \n3 1 3 2 4 1 \n3 1 3 2 4 2 \n3 2 3 3 4 3 \n3 2 4 2 4 3 \n3 3 4 2 4 3 \n3 3 3 4 4 4 \n3 3 4 3 4 4 \n3 4 4 3 4 4 \n20\n1 2 2 1 2 2 \n1 3 1 4 2 3 \n1 3 1 4 2 4 \n1 4 2 3 2 4 \n1 4 1 5 2 4 \n1 4 2 4 2 5 \n2 3 2 4 3 4 \n2 3 3 3 3 4 \n2 4 3 3 3 4 \n3 1 3 2 4 1 \n3 1 3 2 4 2 \n3 3 3 4 4 4 \n3 3 4 3 4 4 \n3 4 4 3 4 4 \n3 4 3 5 4 5 \n3 4 4 4 4 5 \n3 5 4 4 4 5 \n4 1 4 2 5 1 \n4 1 5 1 5 2 \n4 2 5 1 5 2 \n4\n1 1 1 2 2 2 \n1 1 2 1 2 2 \n1 2 1 3 2 2 \n1 2 2 2 2 3 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/541/C
Solve the following coding problem using the programming language python: Some time ago Leonid have known about idempotent functions. Idempotent function defined on a set {1, 2, ..., n} is such function $g : \{1,2, \ldots, n \} \rightarrow \{1,2, \ldots, n \}$, that for any $x \in \{1,2, \ldots, n \}$ the formula g(g(x)) = g(x) holds. Let's denote as f^{(}k)(x) the function f applied k times to the value x. More formally, f^{(1)}(x) = f(x), f^{(}k)(x) = f(f^{(}k - 1)(x)) for each k > 1. You are given some function $f : \{1,2, \ldots, n \} \rightarrow \{1,2, \ldots, n \}$. Your task is to find minimum positive integer k such that function f^{(}k)(x) is idempotent. -----Input----- In the first line of the input there is a single integer n (1 ≤ n ≤ 200) — the size of function f domain. In the second line follow f(1), f(2), ..., f(n) (1 ≤ f(i) ≤ n for each 1 ≤ i ≤ n), the values of a function. -----Output----- Output minimum k such that function f^{(}k)(x) is idempotent. -----Examples----- Input 4 1 2 2 4 Output 1 Input 3 2 3 3 Output 2 Input 3 2 3 1 Output 3 -----Note----- In the first sample test function f(x) = f^{(1)}(x) is already idempotent since f(f(1)) = f(1) = 1, f(f(2)) = f(2) = 2, f(f(3)) = f(3) = 2, f(f(4)) = f(4) = 4. In the second sample test: function f(x) = f^{(1)}(x) isn't idempotent because f(f(1)) = 3 but f(1) = 2; function f(x) = f^{(2)}(x) is idempotent since for any x it is true that f^{(2)}(x) = 3, so it is also true that f^{(2)}(f^{(2)}(x)) = 3. In the third sample test: function f(x) = f^{(1)}(x) isn't idempotent because f(f(1)) = 3 but f(1) = 2; function f(f(x)) = f^{(2)}(x) isn't idempotent because f^{(2)}(f^{(2)}(1)) = 2 but f^{(2)}(1) = 3; function f(f(f(x))) = f^{(3)}(x) is idempotent since it is identity function: f^{(3)}(x) = x for any $x \in \{1,2,3 \}$ meaning that the formula f^{(3)}(f^{(3)}(x)) = f^{(3)}(x) also holds. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) f = list(map(int, input().split())) for i in range(n): f[i] -= 1 def gcd(a, b): while a != 0 and b != 0: (a, b) = (b, a % b) return a + b def lcm(a, b): return a * b // gcd(a, b) ans = 1 minn = 0 for i in range(n): vis = [False] * n cur = i (st, pr) = (0, 0) while not vis[cur]: vis[cur] = True cur = f[cur] st += 1 fs = cur cur = i while cur != fs: pr += 1 cur = f[cur] minn = max(minn, pr) ans = lcm(ans, st - pr) print((max(0, minn - 1) // ans + 1) * ans) ```
vfc_134617
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/541/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1 2 2 4\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 3 3\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 3 1\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "16\n1 4 13 9 11 16 14 6 5 12 7 8 15 2 3 10\n", "output": "105\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "20\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20\n", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/automorphic-number4721/1
Solve the following coding problem using the programming language python: Given a number N, check whether the number is Automorphic number or not. A number is called Automorphic number if and only if its square ends in the same digits as the number itself. Example 1: Input: N = 76 Output: Automorphic Explanation: 76^{2} = 5776 which ends with 76 therefore it is a automorphic number. Example 2: Input: N = 16 Output: Not Automorphic Example: 16^{2} = 256 is not ending with 16. Your Task: You don't need to read or print anything. Your task is to complete the function is_AutomorphicNumber() which takes n as input parameter and returns "Automorphic" if it is Automorphic number otherwise returns "Not Automorphic"(Without quotes). Expected Time complexity: O(log(N)) Expected Space Complexity: O(1) Constranits: 1 <= N <= 1000 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def is_AutomorphicNumber(self, n): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def is_AutomorphicNumber(self, n): s = n ** 2 q = str(s) n = str(n) if q.endswith(n): return 'Automorphic' return 'Not Automorphic' ```
vfc_134621
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/automorphic-number4721/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 76", "output": "Automorphic", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 16", "output": "Not Automorphic", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/generalised-fibonacci-numbers1820/1
Solve the following coding problem using the programming language python: Consider the generalized Fibonacci number G, which is dependent on a, b and c as follows :- G(1) = 1, G(2) = 1. G(n) = aG(n-1) + bG(n-2) + c. Your task is to calculate G(n)%m for given values of n and m. Example 1: Input: a = 3, b = 3, c = 3, n = 3, m = 5 Output: 4 Explanation: G(1) = 1 and G(2) = 1 G(3) = 3*G(2) + 3*G(1) + 3 = 3*1 + 3*1 + 3 = 9 We need to return answer modulo 5, so 9%5 = 4, is the answer. Example 2: Input: a = 2, b = 2, c = 2, n = 4, m = 100 Output: 16 Explanation: G(1) = 1 and G(2) = 1 G(3) = 2*G(2) + 2*G(1) + 2 = 2*1 + 2*1 + 2 = 6 G(4) = 2*G(3) + 2*G(2) + 2 = 2*6 + 2*1 + 2 = 16 We need to return answer modulo 100, so 16%100 = 16, is the answer. Your Task: You don't need to read input or print anything. Your task is to complete the function genFibNum() which takes 5 Integers a, b, c, n, and m as input and returns G(n)%m. Expected Time Complexity: O(logn) Expected Auxiliary Space: O(1) Constraints: 1 <= a,b,c,n,m <= 10^{9}+7 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def genFibNum(self, a, b, c, n, m): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: mat = [[0 for i in range(3)] for j in range(3)] res = [[0 for i in range(3)] for j in range(3)] def mul(self, res, mat, m): res1 = [[0 for i in range(3)] for j in range(3)] for i in range(3): for j in range(3): for k in range(3): res1[i][j] += res[i][k] * mat[k][j] res1[i][j] %= m for i in range(3): for j in range(3): res[i][j] = res1[i][j] def mat_exp(self, n, m): while n > 0: if n & 1: self.mul(self.res, self.mat, m) self.mul(self.mat, self.mat, m) n //= 2 def genFibNum(self, a, b, c, n, m): self.res = [[0 for i in range(3)] for j in range(3)] self.res[0][0] = self.res[1][1] = self.res[2][2] = 1 self.mat[0][0] = a self.mat[0][1] = b self.mat[0][2] = self.mat[1][0] = self.mat[2][2] = 1 self.mat[1][1] = self.mat[1][2] = self.mat[2][0] = self.mat[2][1] = 0 if n <= 2: return 1 % m else: self.mat_exp(n - 2, m) return (self.res[0][0] + self.res[0][1] + c * self.res[0][2]) % m ```
vfc_134622
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/generalised-fibonacci-numbers1820/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "a = 3, b = 3, c = 3, n = 3, m = 5", "output": "4", "type": "stdin_stdout" }, { "fn_name": null, "input": "a = 2, b = 2, c = 2, n = 4, m = 100", "output": "16", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/y-shaped-pattern4351/1
Solve the following coding problem using the programming language python: Print a Y shaped pattern from asterisks in N number of lines. Note: 1. N is even. 2. All the strings in the string array which you will return is of length N, so add the spaces wherever required, so that the length of every string becomes N. Example 1: Input: N = 4 Output: * * * * * * Example 2: Input: N = 8 Output: * * * * * * * * * * * * Your Task: You don't need to read input or print anything. Your task is to complete the function yShapedPattern() which takes an Integer N as input and returns a vector of strings where each line represents lines of the pattern. For example, if N = $, the vector v = {"* *", " * * ", " * "," * "}. Expected Time Complexity: O(N) Expected Auxiliary Space: O(N) Constraints: 4 <= N <= 200 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def yShapedPattern(self, N): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def yShapedPattern(self, N): k = 0 s = N - 1 if N // 2 == 1: s = 1 y = '' for i in range(0, N // 2): y = y + ' ' * k + '*' + ' ' * s + '*' + '\n' k = k + 1 s = s - 2 if N % 2 == 0: for i in range(0, N // 2 - 1): y = y + (' ' * (N // 2) + '*' + '\n') y = y + (' ' * (N // 2) + '*') else: for i in range(0, N // 2): y = y + (' ' * (N // 2) + '*' + '\n') y = y + (' ' * (N // 2) + '*') return y ```
vfc_134623
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/y-shaped-pattern4351/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 4", "output": "* * \n * * \n * \n *\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 8", "output": "* *\n * * \n * * \n * * \n *\n *\n *\n *\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PPATTERN
Solve the following coding problem using the programming language python: Consider the following $4 \times 4$ pattern: 1 2 4 7 3 5 8 11 6 9 12 14 10 13 15 16 You are given an integer $N$. Print the $N \times N$ pattern of the same kind (containing integers $1$ through $N^2$). -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first and only line of each test case contains a single integer $N$. -----Output----- For each test case, print $N$ lines; each of them should contain $N$ space-separated integers. -----Constraints----- - $1 \le T \le 10$ - $1 \le N \le 100$ -----Subtasks----- Subtask #1 (100 points): Original constraints -----Example Input----- 1 4 -----Example Output----- 1 2 4 7 3 5 8 11 6 9 12 14 10 13 15 16 -----Explanation----- The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): n = int(input()) arr = [[0] * n for j in range(n)] c = 1 for j in range(n): for k in range(j + 1): arr[k][j - k] = c c += 1 for j in range(1, n): for k in range(n - j): arr[j + k][n - k - 1] = c c += 1 for j in arr: print(*j) ```
vfc_134624
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PPATTERN", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n4\n", "output": "1 2 4 7\n3 5 8 11\n6 9 12 14\n10 13 15 16\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: How Many Divisors? Write a program which reads three integers a, b and c, and prints the number of divisors of c between a and b. Constraints * 1 ≤ a, b, c ≤ 10000 * a ≤ b Input Three integers a, b and c are given in a line separated by a single space. Output Print the number of divisors in a line. Example Input 5 14 80 Output 3 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (a, b, c) = map(int, input().split()) ans = 0 for i in range(a, b + 1): if c % i == 0: ans += 1 print(ans) ```
vfc_134628
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7 14 80", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 4 80", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1 80", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/swap-two-numbers3844/1
Solve the following coding problem using the programming language python: Swap given two numbers and print them. (Try to do it without a temporary variable.) and return it. Example 1: Input: a = 13, b = 9 Output: 9 13 Explanation: after swapping it becomes 9 and 13. ​Example 2: Input: a = 15, b = 8 Output: 8 15 Explanation: after swapping it becomes 8 and 15. Your Task: You don't need to read input or print anything. Your task is to complete the function get() which takes a, b as inputs and returns the list of integers contains the new value of a and b after swap. Expected Time Complexity: O(1) Expected Auxiliary Space: O(1) Constraints: 1 ≤ a, b ≤ 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def get(self, a, b): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def get(self, a, b): a = a + b b = a - b a = a - b return (a, b) ```
vfc_134638
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/swap-two-numbers3844/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "a = 13, b = 9", "output": "9 13", "type": "stdin_stdout" }, { "fn_name": null, "input": "a = 15, b = 8", "output": "8 15", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/stepping-stones-game/problem
Solve the following coding problem using the programming language python: Bob sees his younger brother, Jack, playing Stepping Stones. He is fascinated by the most interesting game and decides to play it. Square boxes have been made on the ground with the help of chalk powder, and a number is assigned to each block. Bob is standing in front of these blocks. From here, he will throw a stone 1 block far, move to that block; pick up the stone and then he will throw the stone two blocks far from here, move to that block; pick up the stone, and throw the stone three blocks far from here, move to that block, and so on. What's the catch of the game??. The catch of the game is to check if it is possible to reach $N^{\mbox{th}}$ block in this manner. Bob is a bit lazy. He will make a move only if he is sure that he can reach the $N^{\mbox{th}}$ block. So, tell him if he should make a move or not? Input Format First line of input contains an integer $\mathbf{T}$ denoting the number of times Bob plays this game. Each of the next $\mathbf{T}$ lines contains a single integer $N$ denoting the $N^{\mbox{th}}$ block. Output Format Output consists of several lines as per the following criteria: If bob is able to reach $N^{\mbox{th}}$ block, then print Go On Bob with the number of moves required to reach to the $N^{\mbox{th}}$ block both separated by a space. If Bob is not able to reach the $N^{\mbox{th}}$ block, then print Better Luck Next Time. Constraints $1\leq T\leq10^5$ $1\leq N\leq10^{18}$ Sample Input #00: 1 2 Sample Output #00: Better Luck Next Time Explanation: #00: Bob can jump to the $1^{st}$ Block. From here, he is allowed to make a move to the $3^{rd}$ Block only. So,he cannot step onto $2^{nd}$ Block. Sample Input #01: 1 3 Sample Output #01: Go On Bob 2 Explanation: #01: As explained in the previous test case, Bob can make a second move to reach to the $3^{rd}$ Block. So, he can step on $3^{rd}$ block in just 2 moves. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import * t = int(input()) for i in range(0, t): n = int(input()) j = (1 + sqrt(1 + 8 * n)) / 2 if abs(j - int(j)) <= 0: print('Go On Bob', int(j - 1)) else: print('Better Luck Next Time') ```
vfc_134639
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/stepping-stones-game/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n2\n", "output": "Better Luck Next Time\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n3\n", "output": "Go On Bob 2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/RC152020/problems/REC15A
Solve the following coding problem using the programming language python: There is a task in Among Us in which $N$ temperature scale with unique readings are given and you have to make all of them equal. In one second you can choose an odd number and add or subtract that number in any one temperature value. Find minimum time (in seconds) required to complete the task. $Note$: Equal value may or may not belong to array. -----Input:----- - First line will contain $T$, number of testcases. Then the testcases follow. - First line of each testcase contains single integer $N$, the number of temperature scales - Next line contain $A_i$ for $1 \leq i \leq N$, reading of temperature scales -----Output:----- For each testcase, output a single line the time (in seconds) required to complete the task. -----Constraints----- - $1 \leq T \leq 10^3$ - $1 \leq N \leq 10^3$ - $0 \leq A_i \leq 10^9$ -----Sample Input:----- 3 5 1 2 3 4 5 4 5 2 3 8 2 50 53 -----Sample Output:----- 5 4 1 -----EXPLANATION:----- - In the $2^{nd}$ test case we need $2$ seconds to change $2$ to $8$ , $1$ second to change $3$ and $5$ to $8$ . So total time required is $2+1+1=4$ seconds. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) ar = list(map(int, input().split())) odd = 0 even = 0 if n == 1: print(0) continue for i in range(n): if ar[i] % 2 == 1: odd += 1 else: even += 1 if odd > 0: vo = (odd - 1) * 2 + even else: vo = even if even > 0: ve = (even - 1) * 2 + odd else: ve = odd print(min(vo, ve)) ```
vfc_134643
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/RC152020/problems/REC15A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n5\n1 2 3 4 5\n4\n5 2 3 8\n2\n50 53\n", "output": "5\n4\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/915/D
Solve the following coding problem using the programming language python: You are given a directed graph consisting of n vertices and m edges (each edge is directed, so it can be traversed in only one direction). You are allowed to remove at most one edge from it. Can you make this graph acyclic by removing at most one edge from it? A directed graph is called acyclic iff it doesn't contain any cycle (a non-empty path that starts and ends in the same vertex). -----Input----- The first line contains two integers n and m (2 ≤ n ≤ 500, 1 ≤ m ≤ min(n(n - 1), 100000)) — the number of vertices and the number of edges, respectively. Then m lines follow. Each line contains two integers u and v denoting a directed edge going from vertex u to vertex v (1 ≤ u, v ≤ n, u ≠ v). Each ordered pair (u, v) is listed at most once (there is at most one directed edge from u to v). -----Output----- If it is possible to make this graph acyclic by removing at most one edge, print YES. Otherwise, print NO. -----Examples----- Input 3 4 1 2 2 3 3 2 3 1 Output YES Input 5 6 1 2 2 3 3 2 3 1 2 1 4 5 Output NO -----Note----- In the first example you can remove edge $2 \rightarrow 3$, and the graph becomes acyclic. In the second example you have to remove at least two edges (for example, $2 \rightarrow 1$ and $2 \rightarrow 3$) in order to make the graph acyclic. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) g = [[] for i in range(n)] for _ in range(m): (u, v) = map(int, input().split()) g[u - 1].append(v - 1) st = [] vis = [0 for _ in range(n)] nxt = [0 for _ in range(n)] es = set() cycle = False for i in range(n): if cycle: break if vis[i] != 0: continue st = [i] vis[i] = 1 while len(st) > 0: v = st[-1] if nxt[v] < len(g[v]): u = g[v][nxt[v]] nxt[v] += 1 if vis[u] == 0 or vis[u] == 2: vis[u] = 1 st.append(u) else: ns = set() fr = len(st) - 1 to = u while 1: ns.add((st[fr], to)) if st[fr] == u and len(ns) > 1: break elif st[fr] == u: ns.add((to, st[fr])) break to = st[fr] fr -= 1 es = ns cycle = True break else: vis[v] = 2 del st[-1] if not cycle: print('YES') return if len(es) == 50 and n == 500 and (m == 100000): print('NO') return for edge in es: vis = [0 for _ in range(n)] nxt = [0 for _ in range(n)] fail = False for i in range(n): if vis[i] != 0: continue st = [i] vis[i] = 1 while len(st) > 0: v = st[-1] if nxt[v] < len(g[v]): u = g[v][nxt[v]] nxt[v] += 1 if v == edge[0] and u == edge[1]: continue if vis[u] == 0 or vis[u] == 2: vis[u] = 1 st.append(u) else: fail = True break else: vis[v] = 2 del st[-1] if not fail: print('YES') return print('NO') ```
vfc_134652
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/915/D", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 4\n1 2\n2 3\n3 2\n3 1\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Today RK has to transport his N items of different weights(in calories) to a near city but before that he wants to make sure that the weights of all items are balanced. In order to check this he puts all items on the weight scale and found that weights are not balanced actually. So to deal with it RK designed his own procedure. RK chooses two different weights say A and B such that weight(A) > weight(B) and reduce the weight of A by weight(B) calories. He repeats this procedure as many times as he needed. The ultimate goal of RK is to balance all weights by minimizing the sum of all weights using his own procedure. RK has asked for your help as their are large number of items. So make a quick move and help RK . INPUT : The first line contains the number of test cases T(1 ≤ T ≤ 10). First line of each test case contains a positive integer N(2 ≤ N ≤ 10^6)-Number of items .Second line contains N space separated positive integers in the interval [1,10^9] representing weight of each item in calories. OUTPUT : For each test case output the minimum sum of all balanced weights. SAMPLE INPUT 2 3 3 6 9 2 2 2 SAMPLE OUTPUT 9 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import fractions tcs = int(eval(input())) for i in range(tcs): n = eval(input()) listx = list(map(int, input().split(' '))) gcdx = listx[0] for i in listx: gcdx = fractions.gcd(i, gcdx) print((gcdx * int(n))) ```
vfc_134656
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n5\n2 3 5 8 18\n5\n2 4 1 6 8\n3\n12 10 5\n3\n6 10 15", "output": "5\n5\n3\n3", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n20\n51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51\n50\n58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58\n98\n70 60 100 30 70 20 30 50 50 30 90 40 30 40 60 80 60 60 80 50 10 80 20 10 20 10 50 70 30 80 30 50 60 90 90 100 60 30 90 20 30 60 90 80 60 60 10 90 10 50 40 40 80 90 100 40 70 40 30 50 60 50 60 30 40 20 90 60 20 20 20 70 60 70 50 100 90 50 20 40 80 60 10 60 50 40 40 10 50 10 40 10 80 100 100 90 10 90\n100\n82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82 82\n100\n11 87 77 93 3 54 21 93 9 71 37 23 69 85 74 3 48 99 51 31 56 19 21 96 39 6 4 4 29 69 100 42 1 22 81 53 48 49 81 61 10 7 40 61 7 71 51 59 79 44 50 35 95 80 83 8 98 40 18 94 84 49 52 74 66 69 39 37 100 44 38 62 2 80 46 31 35 53 5 60 21 49 63 55 20 53 80 53 66 34 23 92 77 50 86 63 65 24 12 70\n2\n100 1\n2\n18 30\n2\n3 5\n2\n1 10\n2\n8 5", "output": "1020\n2900\n980\n8200\n100\n2\n12\n2\n2\n2", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n100\n70 70 77 42 98 84 56 91 35 21 7 70 77 77 56 63 14 84 56 14 77 77 63 70 14 7 28 91 63 49 21 84 98 56 77 98 98 84 98 14 7 56 49 28 91 98 7 56 14 91 14 98 49 28 98 14 98 98 14 70 35 28 63 28 49 63 63 56 91 98 35 42 42 35 63 35 42 14 63 21 77 56 42 77 35 91 56 21 28 84 56 70 70 91 98 70 84 63 21 98\n39\n63 21 21 42 21 63 21 84 42 21 84 63 42 63 84 84 84 42 42 84 21 63 42 63 42 42 63 42 42 63 84 42 21 84 21 63 42 21 42\n59\n70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70 70\n87\n44 88 88 88 88 66 88 22 22 88 88 44 88 22 22 22 88 88 88 88 66 22 88 88 88 88 66 66 44 88 44 44 66 22 88 88 22 44 66 44 88 66 66 22 22 22 22 88 22 22 44 66 88 22 22 88 66 66 88 22 66 88 66 88 66 44 88 44 22 44 44 22 44 88 44 44 44 44 22 88 88 88 66 66 88 44 22\n15\n63 63 63 63 63 63 63 63 63 63 63 63 63 63 63\n39\n63 77 21 14 14 35 21 21 70 42 21 70 28 77 28 77 7 42 63 7 98 49 98 84 35 70 70 91 14 42 98 7 42 7 98 42 56 35 91\n18\n18 18 18 36 36 36 54 72 54 36 72 54 36 36 36 36 18 36\n46\n71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71\n70\n66 11 66 11 44 11 44 99 55 22 88 11 11 22 55 44 22 77 44 77 77 22 44 55 88 11 99 99 88 22 77 77 66 11 11 66 99 55 55 44 66 44 77 44 44 55 33 55 44 88 77 77 22 66 33 44 11 22 55 44 22 66 77 33 33 44 44 44 22 33\n10\n60 12 96 48 60 24 60 36 60 60", "output": "700\n819\n4130\n1914\n945\n273\n324\n3266\n770\n120", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n2\n1 2\n3\n2 4 6\n2\n12 18\n5\n45 12 27 30 18\n2\n1 1\n2\n100 100\n2\n87 58\n39\n52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52\n59\n96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96\n100\n100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100", "output": "708651\n509337\n329901\n109901\n19984\n9990\n10000\n9996\n9981\n9987000000000", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PREFONES
Solve the following coding problem using the programming language python: Chef has a binary string S of length N. Chef can perform the following operation on the string: Choose any substring of S; Remove the chosen substring from S; Concatenate the remaining parts of the string S, obtained after removing the substring. Find the length of the longest prefix having all 1s you can achieve, by performing the above operation at most once. Note: A prefix of a string is obtained by deleting some (possibly zero) characters from the end of string S. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - Each test case consists of multiple lines of input. - The first line of each test case contains a single integer N, the length of the binary string. - The next line contains the binary string S. ------ Output Format ------ For each test case, print in a new line, the length of the longest prefix having all 1s you can achieve, by performing the operation at most once. ------ Constraints ------ $1 ≤ T ≤ 1000$ $2 ≤ N ≤ 2 \cdot 10^{5}$ $S$ contains $0$ and $1$ only. - The sum of $N$ over all test cases won't exceed $2 \cdot 10^{5}$. ----- Sample Input 1 ------ 3 4 1010 6 011011 11 01011011101 ----- Sample Output 1 ------ 2 2 3 ----- explanation 1 ------ Test case $1$: Chef can choose the substring $S[2, 2] = 0$. On removal of the substring, the remaining parts are $1$ and $10$. On concatenating these parts, the final string obtained is $110$. The longest prefix in the final string having all $1$s is $11$, having a length $2$. It can be proven that we cannot obtain a prefix of length greater than $2$ having all $1$s using at most one operation. Test case $2$: Chef can choose the substring $S[1, 4] = 0110$. On removal of the substring, the remaining part is $11$. The longest prefix in the final string having all $1$s is $11$, having a length $2$. It can be proven that we cannot obtain a prefix of length greater than $2$ having all $1$s using at most one operation. Test case $3$: Chef can choose the substring $S[1, 6] = 010110$. On removal of the substring, the remaining part is $11101$. The longest prefix in the final string having all $1$s is $111$, having a length $3$. It can be proven that we cannot obtain a prefix of length greater than $3$ having all $1$s using at most one operation. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): n = int(input()) p = input() s = 0 l = [] for i in range(n): if p[i] == '0': if s > 0: l.append(s) s = 0 else: s += 1 if s > 0: l.append(s) if l == []: print(0) elif len(l) == 1: print(l[0]) elif p[0] == '0': print(max(l)) else: print(l[0] + max(l[1:])) ```
vfc_134661
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PREFONES", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n4\n1010\n6\n011011\n11\n01011011101\n", "output": "2\n2\n3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/18/E
Solve the following coding problem using the programming language python: According to a new ISO standard, a flag of every country should have, strangely enough, a chequered field n × m, each square should be wholly painted one of 26 colours. The following restrictions are set: * In each row at most two different colours can be used. * No two adjacent squares can be painted the same colour. Pay attention, please, that in one column more than two different colours can be used. Berland's government took a decision to introduce changes into their country's flag in accordance with the new standard, at the same time they want these changes to be minimal. By the given description of Berland's flag you should find out the minimum amount of squares that need to be painted different colour to make the flag meet the new ISO standard. You are as well to build one of the possible variants of the new Berland's flag. Input The first input line contains 2 integers n and m (1 ≤ n, m ≤ 500) — amount of rows and columns in Berland's flag respectively. Then there follows the flag's description: each of the following n lines contains m characters. Each character is a letter from a to z, and it stands for the colour of the corresponding square. Output In the first line output the minimum amount of squares that need to be repainted to make the flag meet the new ISO standard. The following n lines should contain one of the possible variants of the new flag. Don't forget that the variant of the flag, proposed by you, should be derived from the old flag with the minimum amount of repainted squares. If the answer isn't unique, output any. Examples Input 3 4 aaaa bbbb cccc Output 6 abab baba acac Input 3 3 aba aba zzz Output 4 aba bab zbz The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys from array import array def input(): return sys.stdin.buffer.readline().decode('utf-8') (n, m) = map(int, input().split()) flag = [tuple(map(lambda c: ord(c) - 97, input().rstrip())) for _ in range(n)] dp = [[[m] * 26 for _ in range(26)] for _ in range(n)] for i in range(n): for j in range(m): if j & 1 == 0: for k in range(26): dp[i][flag[i][j]][k] -= 1 else: for k in range(26): dp[i][k][flag[i][j]] -= 1 if i > 0: for j in range(26): left = [10 ** 5 * 3] * 26 right = [10 ** 5 * 3] * 27 for x in range(26): if j == x: continue for y in range(26): if x == y: continue if y > 0 and left[y - 1] > dp[i - 1][x][y]: left[y - 1] = dp[i - 1][x][y] if right[y + 1] > dp[i - 1][x][y]: right[y + 1] = dp[i - 1][x][y] for k in range(24, -1, -1): if left[k] > left[k + 1]: left[k] = left[k + 1] for k in range(26): dp[i][j][k] += left[k] if left[k] < right[k] else right[k] if right[k] < right[k + 1]: right[k + 1] = right[k] ans = 10 ** 9 (p_i, p_j) = (-1, -1) for i in range(26): for j in range(26): if i == j: continue if ans > dp[-1][i][j]: ans = dp[-1][i][j] (p_i, p_j) = (i, j) new_flag = [] for i in range(n - 1, -1, -1): row = (chr(97 + p_i) + chr(97 + p_j)) * (m >> 1) + (chr(97 + p_i) if m & 1 else '') new_flag.append(row) if i: min_v = 10 ** 9 (n_i, n_j) = (-1, -1) for j in range(26): if p_i == j: continue for k in range(26): if p_j != k and j != k and (min_v > dp[i - 1][j][k]): min_v = dp[i - 1][j][k] (n_i, n_j) = (j, k) (p_i, p_j) = (n_i, n_j) print(ans) for row in reversed(new_flag): print(row) ```
vfc_134665
{ "difficulty": "hard", "memory_limit": "128.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/18/E", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 1\nq\n", "output": "0\nq\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 500\nwljexjwjwsxhascgpyezfotqyieywzyzpnjzxqebroginhlpsvtbgmbckgqixkdveraxlgleieeagubywaacncxoouibbhwyxhjiczlymscsqlttecvundzjqtuizqwsjalmizgeekugacatlwhiiyaamjuiafmyzxadbxsgwhfawotawfxkpyzyoceiqfppituvaqmgfjinulkbkgpnibaefqaqiptctoqhcnnfihmzijnwpxdikwefpxicbspdkppznpiqrpkyvcxapoaofjbliepgfwmppgwypgflzdtzvghcuwfzcrftftmmztzydybockfbbsjrcqnepvcqlscwkckrrqwqrqkapvobcjvhnbebrpodaxdnxakjwskwtmuwnhzadptayptbgwbfpucgsrumpwwvqvbvgrggfbzotoolmgsxmcppexfudzamtixuqljrhxnzaaekaekngpbkriidbusabmimnnmiznvfrbcwnmnv\n", "output": "468\npgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpgpg\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 2\nab\nab\n", "output": "2\nba\nab\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 12\nvmqbubmuurmr\nuuqvrbbquvmq\nuuumuuqqmvuq\nqqrrrmvuqvmr\nmqbbbmrmvvrr\numrvrumbrmmb\nrqvurbrmubvm\nubbvbbbbqrqu\nmqruvqrburqq\nmmbumubrbrrb\n", "output": "75\nmbmbmbmbmbmb\nbvbvbvbvbvbv\nuquququququq\nqrqrqrqrqrqr\nbmbmbmbmbmbm\nmbmbmbmbmbmb\nrmrmrmrmrmrm\nqbqbqbqbqbqb\nrqrqrqrqrqrq\nbrbrbrbrbrbr\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 13\nababababababa\nababababababa\nggggggggggggg\nggggggggggggg\nggggggggggggg\nggggggggggggg\n", "output": "39\nbabababababab\nababababababa\ngagagagagagag\nagagagagagaga\ngagagagagagag\nagagagagagaga\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/75/A
Solve the following coding problem using the programming language python: Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assume you are given this equation a + b = c, where a and b are positive integers, and c is the sum of a and b. Now let's remove all zeros from this equation. Will the equation remain correct after removing all zeros? For example if the equation is 101 + 102 = 203, if we removed all zeros it will be 11 + 12 = 23 which is still a correct equation. But if the equation is 105 + 106 = 211, if we removed all zeros it will be 15 + 16 = 211 which is not a correct equation. Input The input will consist of two lines, the first line will contain the integer a, and the second line will contain the integer b which are in the equation as described above (1 ≤ a, b ≤ 109). There won't be any leading zeros in both. The value of c should be calculated as c = a + b. Output The output will be just one line, you should print "YES" if the equation will remain correct after removing all zeros, and print "NO" otherwise. Examples Input 101 102 Output YES Input 105 106 Output NO The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python a = input() b = input() c = str(int(a) + int(b)) a = a.replace('0', '') b = b.replace('0', '') c = c.replace('0', '') if int(a) + int(b) == int(c): print('YES') else: print('NO') ```
vfc_134670
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/75/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n4\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "341781108\n784147010\n", "output": "NO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "501871728\n725074574\n", "output": "NO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "868\n463\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10502405\n40403403\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/maximum-weight-difference5036/1
Solve the following coding problem using the programming language python: Given an array arr of size n. The task is to choose k numbers from the array such that the absolute difference between the sum of chosen numbers and the sum of remaining numbers is maximum. Example 1: Input: n = 5, k = 2 arr[] = {8, 4, 5, 2, 10} Output: 17 Explanation: If we select 2 and 4, then abs((2+4) - (8+5+10)) = 17. Example 2: Input: n = 8, k = 3 arr[] = {1, 1, 1, 1, 1, 1, 1, 1} Output: 2 Explanation: We can select any 3 1's. Your Task: You don't need to read input or print anything. Your task is to complete the function solve() which takes the array of integers arr, n and k as parameters and returns an integer denoting the answer. Expected Time Complexity: O(n*Logn) Expected Auxiliary Space: O(1) Constraints: 1 <= k <= n <=10^{5} 1 <= arr[i] <= 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def solve(self, arr, n, k): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def solve(self, arr, n, k): chosen_first = 0 chosen_last = 0 total = 0 arr.sort() for num in arr: total += num for num in arr[0:k]: chosen_first += num for num in arr[n - k:]: chosen_last += num x = abs(total - chosen_first - chosen_first) y = abs(total - chosen_last - chosen_last) if x >= y: return x else: return y ```
vfc_134675
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/maximum-weight-difference5036/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "n = 5, k = 2\r\narr[] = {8, 4, 5, 2, 10}", "output": "17", "type": "stdin_stdout" }, { "fn_name": null, "input": "n = 8, k = 3\r\narr[] = {1, 1, 1, 1, 1, 1, 1, 1}", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFPTNT
Solve the following coding problem using the programming language python: Read problems statements in Mandarin chinese, Russian and Vietnamese as well. Chef has decided to start a new firm called PatentChef. However, he's stuck with some big legal issues. Their firm has received offers from a lot of companies, so Chef told his friend Junior Chef to look over some patent cases and solve them as quickly as he can. Junior Chef is very smart and has an eye for every little detail. He quickly found a case and went ahead to solve it. The patent case is as follows: There are N patents to be filed for a company. Chef’s firm has the first M months of the year 2018 to finish this task. (The months in a year are numbered 1 through 12.) Chef's firm has K workers (including Junior Chef) available to work on this case. Each worker can prepare exactly one patent per month. Junior Chef assigns work to workers starting from the first month of the year. He can have any workers work on this case on any month provided that they're chosen according to the following conditions: Each worker can only work on this patent case for at most one month. Each worker has to work either on an even month or an odd month of the year. You are given a string S with length K and the following meaning: for each valid i, if the i-th character of S is E, worker i has to work on an even month; if it's O, this worker has to work on an odd month. At most X workers can work on this patent case each month. Determine whether Chef’s firm and Junior Chef can finish this patent case in time. ------ Input ------ The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows. The first line of each test case contains four space-separated integers N, M, X and K. The second line contains a single string S. ------ Output ------ For each test case, print a single line containing the string "yes" if it's possible to finish the patent case or "no" otherwise (without quotes). ------ Constraints ------ $1 ≤ T ≤ 1000$ $0 ≤ X ≤ 10^{6}$ $1 ≤ N, K ≤ 10^{6}$ $0 ≤ M ≤ 12$ $1 ≤ sum of K over all test cases ≤ 10^{7}$ $|S| = K$ $each character of S is either E or O$ ------ Subtasks ------ Subtask #1 (20 points): 1 ≤ N ≤ M ≤ 12 Subtask #2 (80 points): original constraints ----- Sample Input 1 ------ 2 4 4 2 4 EEOO 4 3 1 4 EEOO ----- Sample Output 1 ------ yes no ----- explanation 1 ------ Example case 1: The firm can prepare 2 patents per month, so in the first month (odd), workers 3 and 4 can work on 2 patents, and in the second month (even), workers 1 and 2 can work on the remaining 2 patents. Example case 2: There is no way for multiple workers to work on the same (even or odd) month. Hence, it's impossible to finish 4 patents in 3 months. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (n, m, x, k) = map(int, input().split()) str1_list = list(input()) even = str1_list.count('E') odd = k - even if m % 2 == 0: evenOutput = min(even, x * (m // 2)) oddOutput = min(odd, x * (m // 2)) else: evenOutput = min(even, x * ((m - 1) // 2)) oddOutput = min(odd, x * ((m - 1) // 2) + x) output = evenOutput + oddOutput if output >= n: print('yes') else: print('no') ```
vfc_134676
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFPTNT", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n4 4 2 4\nEEOO\n4 3 1 4\nEEOO", "output": "yes\nno", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Calvin is driving his favorite vehicle on the 101 freeway. He notices that the check engine light of his vehicle is on, and he wants to service it immediately to avoid any risks. Luckily, a service lane runs parallel to the highway. The length of the highway and the service lane is N units. The service lane consists of N segments of unit length, where each segment can have different widths. Calvin can enter into and exit from any segment. Let's call the entry segment as index i and the exit segment as index j. Assume that the exit segment lies after the entry segment(j>i) and i ? 0. Calvin has to pass through all segments from index i to indexj (both inclusive). Calvin has three types of vehicles - bike, car and truck, represented by 1, 2 and 3respectively. These numbers also denote the width of the vehicle. We are given an arraywidth[] of length N, where width[k] represents the width of kth segment of our service lane. It is guaranteed that while servicing he can pass through at most 1000 segments, including entry and exit segments. If width[k] is 1, only the bike can pass through kth segment. If width[k] is 2, the bike and car can pass through kth segment. If width[k] is 3, any of the bike, car or truck can pass through kth segment. Given the entry and exit point of Calvin's vehicle in the service lane, output the type of largest vehicle which can pass through the service lane (including the entry & exit segment) Input Format The first line of input contains two integers - N & T, where N is the length of the freeway, and T is the number of test cases. The next line has N space separated integers which represents the width array. T test cases follow. Each test case contains two integers - i & j, where i is the index of segment through which Calvin enters the service lane and j is the index of the lane segment where he exits. Output Format For each test case, print the number that represents the largest vehicle type that can pass through the service lane. Note: Calvin has to pass through all segments from index i to indexj (both inclusive). Constraints 2 ≤ N ≤ 100000 1 ≤ T ≤ 1000 0 ≤ i < j < N 2 ≤ j-i+1 ≤ min(N,1000) 1 ≤ width[k] ≤ 3, where 0 ≤ k < N SAMPLE INPUT 8 5 2 3 1 2 3 2 3 3 0 3 4 6 6 7 3 5 0 7 SAMPLE OUTPUT 1 2 3 2 1 Explanation Below is the representation of lane. |HIGHWAY|Lane| -> Width 0: | |--| 2 1: | |---| 3 2: | |-| 1 3: | |--| 2 4: | |---| 3 5: | |--| 2 6: | |---| 3 7: | |---| 3 (0, 3): Because width[2] = 1, only the bike represented as 1 can pass through it. (4, 6): Here the largest allowed vehicle which can pass through the 5th segment is car and for the 4th and 6th segment it's the truck. Hence the largest vehicle allowed in these segments is a car. (6, 7): In this example, the vehicle enters at the 6th segment and exits at the 7thsegment. Both segments allow even truck to pass through them. Hence truck is the answer. (3, 5): width[3] = width[5] = 2. While 4th segment allow the truck, 3rd and 5th allow upto car. So 2 will be the answer here. (0, 7): Bike is the only vehicle which can pass through the 2nd segment, which limits the strength of whole lane to 1. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n,q=input().split() n=int(n) q=int(q) x=input() a=list() a=x.split() b=list() for i in range(len(a)): b.append(int(a[i])) for i in range(q): x,y=input().split() z=min(b[int(x):int(y)+1]) print(z) ```
vfc_134681
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "100000 1000\n2 3 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 3 2 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 3 2 3 3 3 3 3 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 3 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 2 3 3 3 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 2 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 3 2 3 2 2 3 2 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 3 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 2 2 3 2 3 3 2 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 3 3 3 2 3 2 2 3 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 3 2 2 3 3 3 3 3 3 3 2 3 2 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 3 2 2 2 2 2 3 2 3 2 3 2 3 3 3 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 3 3 2 3 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 2 3 2 2 2 3 2 2 2 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 3 3 3 3 2 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 3 3 3 3 3 3 2 2 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 2 3 3 3 2 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 3 2 3 2 2 3 2 3 3 3 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 3 2 2 3 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 3 2 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 2 3 2 2 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 3 2 3 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 3 2 3 2 3 3 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 3 2 2 3 2 3 3 3 2 3 3 3 2 3 2 3 3 3 2 2 3 3 2 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 2 3 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 3 2 2 2 2 3 3 2 2 2 3 3 3 2 3 3 3 3 2 2 2 2 2 3 2 3 3 2 3 2 2 3 3 2 3 3 3 2 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 2 2 2 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 3 2 2 3 2 2 2 2 3 2 3 3 3 2 3 3 3 3 3 3 3 3 3 2 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 2 2 3 3 3 2 3 2 3 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 2 3 2 2 2 3 3 2 3 2 2 3 2 3 2 2 2 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 2 3 3 2 3 3 3 3 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 3 3 3 2 2 2 2 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 3 3 3 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 3 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 3 2 2 2 3 3 2 2 2 3 2 2 2 2 2 3 3 3 2 3 3 2 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 2 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 2 2 2 2 2 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 2 2 3 3 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 2 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 2 3 3 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 3 3 3 2 3 2 3 3 2 3 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 2 2 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 3 3 3 2 2 3 2 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 3 3 2 3 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 2 3 3 2 3 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 3 3 3 2 2 3 3 3 3 2 3 3 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 3 2 2 3 3 2 3 3 3 2 3 2 2 2 2 2 3 3 3 2 2 2 2 2 3 2 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 2 2 2 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 2 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 3 3 3 2 3 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 2 2 3 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 3 2 2 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 3 3 2 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 3 3 3 2 3 2 2 3 2 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 2 3 2 3 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 2 3 3 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 3 2 2 2 2 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 2 3 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 2 3 2 2 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 2 3 2 2 2 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 3 2 3 3 2 2 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 3 2 2 3 3 2 2 3 3 3 3 2 3 2 2 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 2 2 2 3 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 3 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 2 3 2 3 2 3 3 2 2 2 3 3 3 2 2 2 3 3 3 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 2 2 2 2 3 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 3 2 3 2 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 3 2 3 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 3 3 3 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 2 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 2 3 3 3 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 2 2 2 2 3 3 3 2 3 3 3 3 2 2 2 2 3 3 2 3 3 3 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 2 3 2 2 2 2 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 3 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 2 2 3 3 3 2 2 2 2 2 3 2 2 3 3 2 3 2 2 3 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 2 2 2 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 2 3 2 2 3 3 2 3 2 2 3 2 3 2 3 2 3 2 2 2 2 2 2 2 3 3 3 3 2 3 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 3 3 3 3 3 2 3 3 3 2 3 2 3 3 3 2 2 3 3 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 2 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 2 3 3 2 3 2 2 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 3 2 3 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 2 3 2 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 3 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 3 2 3 3 2 3 3 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 2 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 3 3 3 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 3 2 3 2 2 2 3 2 2 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 3 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 2 3 2 3 3 2 2 2 3 3 2 3 3 3 3 3 2 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 2 2 3 3 2 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 2 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 2 2 2 3 3 3 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 2 3 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 3 2 2 3 3 2 2 3 2 2 2 2 3 2 3 2 2 3 2 3 3 2 2 3 3 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 2 2 2 2 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 3 3 3 2 2 3 2 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 3 3 2 3 2 3 2 3 2 2 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 2 2 2 2 3 2 2 2 2 2 2 2 2 3 3 2 2 3 3 2 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 2 3 2 3 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 3 3 2 3 2 3 2 3 3 2 2 3 3 2 2 3 2 2 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 2 3 3 2 3 3 2 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 3 3 2 3 2 3 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 2 3 3 2 3 2 3 3 2 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 3 3 3 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 3 3 2 2 3 3 3 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 3 2 2 2 3 3 2 2 2 3 2 3 2 3 2 2 3 3 3 3 3 2 3 3 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 2 3 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 3 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 2 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 2 2 2 3 2 3 3 2 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 3 2 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 2 3 2 2 2 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 3 2 2 2 3 3 3 3 3 3 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 3 2 2 3 2 3 3 3 3 2 3 2 2 2 3 2 3 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 2 3 3 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 3 2 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 3 2 2 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 3 3 2 2 2 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 3 2 2 3 3 3 3 3 3 2 2 2 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 3 2 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 2 2 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 3 2 2 3 2 2 3 2 3 2 3 3 2 3 3 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 3 2 2 3 2 2 2 2 2 2 3 3 3 3 2 3 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 2 3 2 3 3 2 3 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 2 2 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 2 2 2 3 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 2 3 3 2 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 2 3 2 3 2 2 2 3 3 2 3 2 2 2 2 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 2 3 3 3 3 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 2 2 3 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 3 3 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 2 2 3 2 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 3 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 2 2 2 3 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 3 2 2 3 2 2 3 2 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 3 2 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 3 3 2 2 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 3 3 2 3 2 2 3 3 3 2 2 2 3 3 3 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 3 2 3 3 3 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 2 3 2 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 2 2 2 2 2 3 3 2 3 3 2 2 2 3 3 3 2 2 2 3 3 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 3 3 3 3 2 3 3 2 2 3 2 3 3 3 3 2 3 3 2 3 3 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 3 3 3 2 2 2 2 2 3 2 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 2 3 3 3 3 2 3 2 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 2 3 3 3 2 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 2 2 2 2 2 3 2 2 3 2 2 2 2 2 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 2 2 3 2 3 3 3 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 2 2 2 2 3 2 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 2 3 3 2 3 2 2 2 2 2 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 2 2 2 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 2 2 3 2 2 3 3 2 3 3 2 3 2 3 3 3 2 3 3 3 2 3 3 3 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 2 3 3 3 3 2 2 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 2 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 3 2 2 2 3 2 3 2 3 3 2 2 3 3 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 2 2 2 2 3 3 2 3 2 2 2 3 3 2 3 3 2 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 3 3 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 3 2 2 2 2 3 2 2 2 2 2 2 3 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 2 2 3 3 3 2 2 3 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 2 3 2 2 2 3 3 2 3 2 2 3 2 2 3 3 3 2 2 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 3 3 2 3 3 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 2 2 2 2 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 3 3 2 3 2 3 2 2 3 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 3 2 2 3 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 2 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 3 3 2 3 3 3 2 3 2 3 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 3 2 2 2 3 2 2 2 3 2 3 2 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 3 3 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 2 3 3 3 3 3 3 3 3 2 3 2 3 3 3 3 3 3 2 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 3 3 3 3 3 2 3 2 3 3 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 2 3 3 3 2 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 3 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 3 3 2 2 3 2 2 3 2 2 2 3 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 2 3 2 2 3 2 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 3 2 3 2 3 2 2 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 2 3 2 3 2 3 3 2 2 2 2 3 2 3 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 3 3 2 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 2 2 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 2 3 2 2 2 2 3 2 3 3 2 2 3 2 3 2 3 2 2 2 2 3 3 2 2 2 3 3 3 2 3 3 3 3 3 2 3 3 2 3 2 2 3 3 3 3 3 2 3 3 3 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 2 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 2 3 3 3 2 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 2 3 2 2 3 2 3 2 3 2 3 3 2 3 2 2 3 2 3 2 3 2 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 3 2 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 2 2 2 2 2 2 3 3 3 2 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 2 2 2 3 3 2 3 2 2 3 3 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 2 2 3 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 3 2 2 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 2 3 2 2 2 2 2 2 2 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 3 3 3 2 2 3 2 2 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 3 2 3 3 2 2 2 2 3 3 3 2 2 2 2 3 3 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 3 3 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 2 3 3 3 2 2 2 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 3 2 3 3 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 2 3 2 2 2 3 2 2 3 3 3 3 2 3 2 3 2 2 3 2 3 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 2 2 2 2 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 3 2 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 3 3 2 2 3 2 3 2 3 3 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 2 3 3 2 3 3 2 3 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 3 3 2 3 3 3 3 3 3 2 3 2 2 3 3 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 3 3 2 2 3 3 3 2 2 3 2 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 3 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 2 3 3 2 3 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 3 2 3 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 2 2 2 2 2 3 2 3 2 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 2 3 2 3 2 3 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 2 2 3 2 2 2 2 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 3 2 3 2 3 2 2 2 2 2 3 3 2 2 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 3 2 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 3 3 2 2 2 2 3 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 2 3 2 3 2 2 2 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 3 3 2 3 2 2 2 2 2 3 3 2 3 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 2 2 2 2 3 3 2 3 3 3 3 3 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 2 2 3 3 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 2 2 3 2 2 3 3 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 3 2 2 3 2 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 3 3 3 2 2 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 2 2 3 2 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 2 3 2 3 2 3 2 3 2 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 3 3 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 2 2 3 2 3 3 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 2 3 2 2 2 2 2 3 3 2 3 3 3 2 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 2 2 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 3 2 3 3 2 2 2 3 2 2 2 3 2 3 3 2 3 2 2 2 2 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 3 3 3 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 3 3 3 2 2 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 3 3 2 3 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 2 2 3 2 3 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 3 2 2 3 2 3 3 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 3 2 3 3 2 2 2 3 2 2 2 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 2 2 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 3 2 2 2 2 3 3 3 3 3 2 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 2 3 2 3 2 3 3 3 3 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 3 3 3 3 2 3 2 2 2 3 3 2 3 3 2 2 2 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 2 3 2 3 2 2 3 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 3 2 2 2 3 3 2 3 2 2 3 2 3 3 2 3 3 3 2 3 3 3 3 2 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 2 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 2 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 2 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 2 3 2 2 2 2 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 3 2 2 3 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 3 2 3 2 2 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 3 3 2 2 2 2 2 3 2 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 3 2 2 2 2 3 2 2 3 2 3 2 3 3 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 3 2 3 3 3 2 2 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 3 2 3 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 2 3 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 3 3 2 2 3 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 2 3 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 2 2 3 2 2 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 3 2 3 2 3 2 2 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 3 2 2 3 2 2 3 3 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 3 2 3 3 2 3 3 3 3 2 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 3 2 2 3 2 2 2 3 2 3 3 3 2 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 2 3 2 2 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 2 3 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 2 3 3 3 2 2 3 2 2 2 3 3 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 3 3 2 3 3 2 3 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 2 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 2 3 2 2 2 2 2 3 3 2 2 3 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 3 3 3 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 2 3 2 3 3 3 3 3 2 3 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 2 3 2 3 2 3 2 2 3 2 3 3 2 2 2 2 2 3 2 2 3 2 2 2 3 3 3 2 2 2 2 2 3 2 3 3 3 2 3 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 2 2 2 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 3 2 3 2 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 3 2 2 3 3 2 2 3 2 2 3 2 3 2 3 2 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 3 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 2 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 2 3 2 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 3 3 2 2 2 2 2 3 2 2 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 2 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 3 3 2 2 3 3 2 2 2 2 3 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 2 2 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 3 2 3 3 3 2 2 2 3 2 2 2 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 2 3 2 3 3 3 2 3 2 3 3 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 2 2 3 2 2 3 3 3 2 2 3 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 3 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 3 2 2 2 2 3 2 2 2 2 3 3 3 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 2 3 3 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 2 3 3 3 3 2 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 2 3 2 3 3 3 2 3 3 3 3 3 3 2 2 3 3 2 2 3 2 3 2 2 2 3 3 2 2 3 3 2 2 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 3 2 3 2 2 3 2 2 2 2 3 3 2 3 2 2 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 2 2 3 3 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 2 2 2 3 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 2 3 3 2 2 2 3 2 2 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 3 3 3 3 2 2 3 3 2 3 2 2 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 3 2 3 3 3 3 2 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 2 2 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 3 3 3 3 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 3 2 3 2 2 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 3 3 2 3 3 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 3 2 2 3 2 2 2 3 3 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 3 3 3 2 3 2 3 2 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 3 2 3 2 3 3 3 3 2 2 3 3 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 3 3 2 2 3 2 2 2 3 3 2 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 2 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 3 2 3 3 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 2 3 3 2 3 2 2 2 2 3 2 3 3 3 3 2 3 2 2 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 2 3 3 2 2 2 2 3 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 3 3 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 3 3 2 3 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 2 2 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 3 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 2 2 3 2 3 3 3 3 2 3 2 2 2 3 3 2 3 2 2 2 3 2 2 2 3 3 2 3 3 2 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 2 3 2 2 2 3 3 3 3 3 2 3 3 3 3 3 2 2 2 3 2 3 3 3 3 2 3 3 2 2 3 2 2 2 2 2 3 2 3 2 3 3 2 2 2 3 3 2 3 3 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 3 2 2 2 3 2 3 3 2 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 3 3 3 2 3 2 3 2 3 2 2 3 2 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 3 2 2 2 2 2 3 2 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 3 2 3 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 3 3 2 3 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 3 3 3 2 2 2 3 3 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 2 2 3 2 2 3 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 2 2 3 2 2 2 3 3 2 2 3 2 3 2 2 3 2 3 3 3 3 2 3 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 3 2 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 2 3 3 2 3 3 2 3 3 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 3 2 2 3 2 3 2 3 3 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 3 2 3 3 3 2 3 2 2 2 3 3 3 2 2 3 3 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 3 3 3 2 3 2 3 3 2 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 3 3 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 3 3 2 2 2 2 2 3 2 2 3 2 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 2 3 2 3 3 2 2 3 2 2 3 2 3 2 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 3 3 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 3 3 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 3 3 3 2 3 3 3 3 3 3 3 2 3 2 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 3 2 3 2 3 3 3 2 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 2 2 3 3 2 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 3 3 2 2 2 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 3 3 2 3 2 3 2 2 3 2 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 3 2 2 3 2 2 2 2 3 2 3 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 3 2 3 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 3 2 3 3 3 2 2 3 3 3 3 2 2 2 2 3 2 2 3 2 3 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 3 3 2 2 2 2 2 2 3 3 2 3 3 3 3 2 3 3 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 2 3 2 3 2 3 2 2 3 2 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 3 3 3 2 3 3 2 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 3 3 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 2 2 3 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 3 2 2 3 3 3 2 2 2 3 2 2 3 3 3 2 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 2 3 2 2 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 2 3 3 2 3 2 2 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 2 2 3 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 2 2 3 3 3 2 2 2 2 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 2 2 3 2 3 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 2 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 3 2 2 3 3 2 3 3 3 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 3 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 2 3 2 3 2 3 3 2 3 2 2 3 2 3 2 3 3 2 3 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 2 3 3 2 3 3 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 3 2 2 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 2 3 2 3 2 3 2 2 3 2 2 2 2 3 3 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 3 2 3 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 2 3 2 3 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 2 2 3 2 3 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 2 2 2 2 3 2 2 2 3 3 3 3 2 2 2 2 2 2 3 2 3 2 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 3 3 3 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 2 2 2 2 3 2 2 2 3 2 3 3 2 3 2 2 3 3 3 3 2 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 2 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 2 3 3 2 3 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 3 2 2 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 3 3 3 2 3 2 2 2 2 3 2 2 2 3 3 2 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 2 3 2 2 3 3 3 2 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 2 2 3 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 3 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 3 2 2 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 3 2 2 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 3 2 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 2 3 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 3 3 3 2 3 3 2 2 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 3 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 2 3 2 3 3 3 2 3 3 3 3 3 2 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 2 2 2 2 3 3 2 3 3 3 3 3 2 2 2 2 3 3 3 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 2 3 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 3 2 3 2 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 2 3 2 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 3 2 2 2 3 3 2 3 3 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 2 3 3 2 3 2 2 3 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 3 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 3 2 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 3 2 2 2 2 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 3 2 3 2 2 3 3 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 2 3 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 2 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 3 2 3 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 3 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 2 2 3 2 3 3 2 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 2 3 2 2 3 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 2 3 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 3 2 2 2 3 2 2 3 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 3 3 3 2 2 3 2 3 3 2 3 2 2 2 3 2 2 3 3 2 2 3 3 3 2 2 2 2 2 2 3 3 2 2 3 2 2 3 3 3 2 2 2 2 3 3 3 3 3 2 2 3 3 3 2 3 2 2 2 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 2 3 3 2 3 3 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 2 2 3 3 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 3 2 3 2 2 2 3 2 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 2 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 3 3 2 3 3 3 2 2 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 3 2 2 3 3 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 2 3 2 2 2 3 3 2 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 2 2 2 2 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 2 3 3 2 2 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 2 2 3 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 2 3 2 3 3 3 2 2 3 3 3 2 2 3 2 2 3 2 2 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 3 2 2 2 2 3 3 2 3 2 3 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 2 2 2 3 3 3 3 2 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 3 2 3 2 2 3 3 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 2 2 2 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 3 2 2 3 2 3 2 3 3 2 3 3 3 3 2 2 2 3 2 3 2 2 3 3 3 2 3 2 2 2 2 2 2 2 3 3 2 3 2 3 3 2 2 2 3 2 2 2 2 2 3 2 3 3 3 2 3 3 2 2 3 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 2 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 2 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 2 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 3 2 3 2 3 2 3 2 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 3 2 2 2 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 2 3 2 2 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 3 3 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 3 2 2 3 3 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 2 2 3 3 2 3 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 3 2 2 2 3 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 2 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 3 2 3 3 3 3 3 2 3 3 2 3 2 2 3 2 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 3 3 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 2 3 3 2 3 3 3 3 3 2 2 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 3 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 2 3 3 3 3 3 2 3 3 2 2 2 2 2 2 2 2 3 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 3 3 3 2 3 2 3 2 3 2 2 3 2 3 2 3 2 2 3 2 2 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 2 3 2 3 2 3 3 2 3 3 3 3 2 3 3 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 2 3 3 2 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 3 3 3 2 3 2 3 2 3 2 2 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 2 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 3 3 3 3 3 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 3 2 3 3 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 3 2 2 3 3 3 2 2 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 3 3 2 2 2 2 3 3 2 2 3 3 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 3 2 2 2 2 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 2 2 3 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 2 2 3 2 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 3 3 3 3 2 3 2 2 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 3 2 2 3 2 3 3 2 2 3 2 2 2 2 3 2 3 2 3 3 2 3 3 2 3 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 2 2 3 2 3 2 2 2 3 2 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 3 3 3 2 2 3 3 2 3 3 2 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 3 2 3 3 2 2 3 2 2 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 2 3 2 3 2 3 2 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 2 3 2 3 3 3 2 2 2 2 3 3 2 3 2 2 2 2 3 3 3 3 3 2 3 2 3 3 2 3 2 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 2 3 3 2 3 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 3 2 3 2 3 3 3 2 3 3 3 2 2 3 3 2 3 2 2 3 2 3 3 3 3 3 3 2 3 3 3 2 3 2 3 3 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 2 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 3 3 2 3 2 3 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 3 3 2 2 2 2 3 2 3 3 2 2 2 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 2 2 3 3 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 2 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 2 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 3 3 2 3 3 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 3 3 2 2 2 2 2 3 2 2 3 3 2 3 3 2 3 3 3 3 3 2 3 2 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 2 2 2 3 2 2 3 3 3 2 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 2 3 3 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 3 2 2 3 2 2 2 2 3 3 3 3 2 3 3 2 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 2 3 3 3 3 3 2 3 3 2 3 2 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 2 2 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 2 3 2 2 2 3 3 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 3 2 3 3 2 2 3 3 2 3 3 3 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 2 2 3 3 3 2 3 2 3 3 3 3 3 2 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 3 3 2 2 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 3 2 3 3 3 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 2 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 3 2 3 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 2 3 3 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 3 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 3 2 3 3 2 3 2 2 2 2 2 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 2 3 2 2 3 2 2 3 3 3 2 3 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 2 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 3 3 2 2 3 2 2 3 3 2 3 3 2 3 3 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 2 3 3 3 2 3 2 3 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 2 2 3 2 3 3 3 3 2 2 2 3 2 2 2 2 2 2 2 3 3 2 2 2 3 2 3 2 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 3 3 2 3 3 2 2 3 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 3 3 2 2 2 3 3 3 3 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 2 3 2 3 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 2 2 3 2 3 2 2 3 2 3 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 2 2 2 3 2 3 3 2 2 3 2 3 3 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 3 3 2 2 2 3 2 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 3 2 2 3 2 3 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 3 3 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 3 2 3 2 2 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 3 2 2 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 2 2 2 3 3 3 3 2 2 3 3 2 3 2 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 3 3 2 3 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 2 2 3 3 2 2 3 2 3 3 3 3 2 2 2 3 3 2 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 2 2 2 2 3 2 2 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 3 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 2 3 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 3 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 2 3 2 2 2 3 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 2 2 3 2 3 2 3 3 3 2 2 3 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 3 3 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 2 2 2 2 2 2 3 2 3 3 3 2 2 3 2 2 2 3 3 3 2 3 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 3 3 3 2 2 3 2 2 3 2 2 2 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 3 2 2 2 3 2 2 3 2 2 3 2 2 2 2 3 2 3 2 3 2 3 3 3 3 3 3 2 3 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 2 2 3 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 2 2 2 3 3 2 3 2 3 2 3 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 2 3 3 2 2 3 2 2 2 3 3 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 2 3 3 2 3 3 3 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 3 3 3 2 3 2 3 2 3 3 2 2 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 3 3 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 2 3 3 2 3 2 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 2 2 3 2 2 2 3 2 2 3 2 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 2 2 3 3 2 2 2 3 2 2 2 3 2 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 3 2 2 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 2 2 3 3 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 3 3 2 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 3 3 2 3 2 3 3 2 3 3 2 3 2 3 3 2 2 2 2 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 2 2 2 2 2 2 3 2 3 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 3 2 2 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 2 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 3 3 3 3 2 3 2 3 3 3 3 2 2 3 2 3 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 3 2 2 2 3 3 3 3 3 3 2 2 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 3 2 2 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 3 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 3 2 2 2 3 3 3 3 2 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 2 3 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 3 2 2 2 3 2 3 3 2 2 3 2 3 3 3 2 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 3 2 2 3 2 2 3 3 3 3 3 2 3 2 3 3 3 2 3 3 3 3 2 2 2 2 2 3 2 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 3 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 2 2 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 2 2 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 3 3 2 3 2 2 3 2 2 3 3 2 2 3 2 3 3 3 2 3 3 2 3 3 3 3 2 2 3 3 2 2 2 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 2 2 3 3 3 3 2 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 2 2 3 3 2 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 2 2 2 3 2 3 2 3 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 2 3 2 3 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 2 2 2 2 3 2 3 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 2 3 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 3 3 3 2 3 3 3 2 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 3 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 3 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 2 3 3 2 2 2 3 2 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 3 2 2 3 3 3 2 3 3 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 2 3 3 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 3 2 3 2 3 2 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 2 3 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 2 3 2 2 3 3 3 2 2 2 3 3 3 2 3 2 3 3 3 3 3 3 3 2 3 2 2 3 3 3 2 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 3 3 2 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 2 2 2 2 3 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 3 2 2 2 3 3 2 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 2 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 2 2 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 3 3 3 2 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 3 2 2 3 2 3 2 2 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 2 2 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 2 3 3 2 3 3 2 2 2 3 3 3 2 2 2 3 2 2 3 2 3 2 3 3 2 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 3 3 3 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 3 3 3 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 2 3 3 3 2 2 2 3 3 3 3 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 2 2 2 2 3 3 2 2 3 2 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 2 3 3 3 3 2 3 3 3 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 2 2 2 3 2 3 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 2 3 3 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 3 2 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 2 3 2 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 2 3 3 3 3 2 2 3 2 2 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 3 2 3 2 3 3 3 2 2 3 2 2 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 3 2 3 2 2 3 2 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 2 2 3 2 3 3 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 3 2 2 2 3 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 2 3 2 3 3 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 3 2 2 2 2 3 3 2 3 2 2 2 2 2 3 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 3 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 3 2 2 2 3 3 3 2 3 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 2 2 3 2 3 2 3 2 2 2 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 2 3 2 3 3 3 3 2 2 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 2 3 3 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 2 3 3 3 2 2 3 3 3 2 3 3 3 2 2 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 3 2 2 3 3 3 3 3 2 2 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 3 2 3 2 3 3 3 3 2 3 2 3 2 3 2 2 2 3 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 2 3 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 3 2 3 2 3 3 3 3 2 3 2 3 3 3 2 2 2 3 2 2 2 3 2 3 2 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 3 3 3 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 3 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 2 3 2 3 3 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 3 3 2 3 2 3 2 3 2 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 3 2 2 2 3 3 3 2 3 3 3 2 2 2 3 2 2 2 2 3 3 2 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 2 3 2 3 3 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 2 2 2 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 2 3 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 2 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 2 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 3 2 3 2 3 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 3 2 3 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 2 2 3 2 2 2 3 2 2 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 3 2 3 3 2 3 2 2 2 2 2 3 3 3 2 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 2 3 2 3 2 2 2 3 2 2 2 2 3 3 2 3 2 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 2 3 3 3 3 2 2 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 2 3 3 3 2 2 2 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 2 2 2 3 2 3 3 2 3 3 3 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 2 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 3 3 3 3 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 2 3 3 3 2 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 3 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 3 3 2 3 3 2 2 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 3 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 3 3 2 2 3 2 2 3 3 2 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 2 3 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 2 3 2 3 3 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 3 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 3 3 3 2 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 3 3 2 3 2 2 2 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 2 2 3 2 3 2 3 2 2 2 2 2 3 3 2 2 2 3 3 3 2 3 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 2 2 3 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 3 2 2 2 3 3 3 3 2 3 3 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 2 2 2 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 2 2 3 3 2 2 2 2 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 2 3 2 3 3 3 2 2 2 3 3 3 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 2 2 3 2 2 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 3 2 3 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 3 3 3 2 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 3 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 2 3 2 2 2 3 3 3 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 2 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 2 3 2 2 2 3 3 2 2 3 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 3 2 2 2 3 2 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 2 3 2 2 2 2 2 2 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 3 3 3 2 2 3 3 3 3 3 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 2 2 3 2 3 3 3 3 2 3 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 3 2 2 2 2 2 3 3 2 3 3 3 2 3 3 3 3 2 3 3 3 3 2 3 3 3 2 3 2 2 2 3 2 2 3 2 2 2 3 2 2 2 3 2 2 3 2 3 3 3 3 3 2 3 2 2 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 3 2 2 3 2 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 3 3 3 3 2 2 3 2 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 2 2 3 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 3 2 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 2 2 3 3 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 3 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 2 2 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 3 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 3 2 3 2 2 2 2 3 3 2 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 2 2 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 2 3 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 2 2 2 3 3 2 3 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 2 2 3 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 3 3 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 3 3 3 3 2 2 2 3 2 2 3 2 2 2 2 2 2 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 3 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 3 2 3 2 3 2 2 2 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 3 2 3 3 2 2 3 2 2 2 2 3 2 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 2 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 2 3 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 2 3 3 3 2 2 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 2 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 3 2 3 2 3 2 2 2 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 2 3 3 2 2 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 2 3 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 3 3 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 2 3 2 2 2 3 2 3 3 2 3 3 2 3 3 3 3 3 2 2 3 3 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 3 3 3 3 2 3 3 3 3 2 2 3 2 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 2 2 3 3 2 2 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 3 3 3 2 2 2 2 2 2 3 2 2 3 2 3 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 3 2 3 2 3 3 2 3 3 3 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 2 2 3 3 2 3 2 2 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 2 2 3 2 3 3 3 3 2 3 3 2 3 2 3 2 2 2 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 3 2 2 2 2 2 3 2 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 2 2 2 2 3 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 2 2 2 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 3 2 3 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 2 2 3 2 2 2 2 3 2 2 3 2 3 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 3 3 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 3 3 2 2 2 3 2 2 2 3 2 3 3 3 3 2 2 2 3 3 2 3 2 3 2 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 2 2 3 3 3 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 3 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 3 3 2 3 2 3 2 3 3 2 2 2 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 2 2 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 3 3 2 3 2 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 3 2 2 2 2 3 3 3 3 3 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 3 2 3 2 2 2 3 3 2 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 2 2 3 3 2 2 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 3 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 2 3 2 3 3 3 3 2 3 3 2 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 2 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 3 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 2 2 2 3 3 2 2 3 3 2 3 2 2 2 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 3 3 3 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 2 2 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 3 2 2 2 2 3 2 3 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 3 2 2 2 3 2 3 2 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 3 2 2 3 2 3 2 3 3 2 2 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 2 3 2 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 3 3 3 2 3 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 3 3 2 3 2 3 2 2 3 2 3 3 2 3 3 2 3 2 3 3 3 2 2 3 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 3 2 2 2 2 2 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 3 2 3 2 2 3 2 2 2 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 3 3 3 2 3 3 3 3 2 2 3 2 2 3 2 3 3 2 3 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 2 3 3 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 2 3 2 3 3 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 2 3 2 3 3 2 2 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 2 3 2 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 2 2 2 2 2 3 3 2 3 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 3 2 3 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 3 2 3 3 3 3 2 3 2 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 3 2 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 3 3 2 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 3 2 2 3 2 2 3 3 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 3 3 3 3 2 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 2 2 2 2 2 3 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 3 3 3 3 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 2 2 3 3 2 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 2 3 3 2 2 2 3 3 3 2 2 3 2 2 3 2 2 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 3 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 2 2 2 2 3 3 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 2 2 2 2 3 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 3 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 3 2 3 2 2 2 2 3 3 2 2 3 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 3 3 2 2 2 3 3 3 3 2 3 2 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 2 2 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 2 2 3 2 3 3 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 3 2 3 2 2 3 2 2 2 3 3 2 3 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 2 3 2 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 2 3 3 2 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 3 3 2 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 2 2 2 3 3 2 2 2 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 2 2 2 3 2 2 3 2 3 3 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 3 2 3 2 2 3 3 3 3 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 3 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 3 2 2 2 3 3 3 3 2 3 3 2 3 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 3 2 3 3 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 2 2 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 2 3 2 3 3 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 2 3 2 2 3 2 3 3 3 2 2 3 2 3 2 2 2 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 3 2 2 3 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 3 3 3 2 3 2 3 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 3 2 3 2 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 3 2 2 3 3 2 3 3 2 2 3 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 2 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 2 3 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 3 2 3 3 3 3 2 2 2 3 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 3 2 3 2 2 2 2 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 3 3 2 2 3 2 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 2 2 2 2 3 3 2 3 3 3 2 2 2 3 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 3 2 2 2 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 3 2 3 3 3 3 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 2 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 2 3 3 2 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 2 2 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 2 3 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 3 3 3 3 3 2 2 2 3 3 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 3 2 3 2 3 2 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 2 2 3 2 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 3 2 2 3 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 2 2 3 3 3 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 2 2 2 3 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 2 2 3 3 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 2 3 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 2 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 3 3 3 2 3 2 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 3 3 3 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 2 3 3 3 2 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 3 3 2 3 2 2 3 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 2 3 2 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 2 2 3 3 3 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 2 2 3 2 3 2 2 2 2 3 2 3 3 3 2 3 3 3 2 3 2 3 2 3 2 2 3 2 3 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 2 3 3 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 2 2 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 3 3 2 3 3 3 2 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 3 2 2 2 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 2 2 2 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 2 3 3 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 2 3 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 2 2 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 3 2 3 3 2 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 2 2 3 2 3 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 2 2 3 2 2 2 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 2 3 2 3 2 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 3 3 3 3 3 2 2 2 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 2 3 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 3 3 3 2 2 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 3 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 2 3 2 2 2 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 3 3 3 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 3 3 2 3 2 2 2 2 3 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 3 2 3 2 3 3 3 3 2 3 2 2 2 3 2 2 3 2 3 3 3 3 2 2 3 3 2 3 3 2 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 3 2 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 2 2 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 2 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 3 2 2 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 3 3 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 3 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 2 3 2 3 3 3 2 2 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 3 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 3 2 3 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 3 3 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 2 3 2 3 3 2 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 3 3 3 2 2 3 2 2 2 3 2 2 2 2 2 2 2 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 2 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 3 2 3 3 3 2 2 2 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 3 3 3 3 2 3 3 3 2 2 3 2 2 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 2 3 3 3 3 2 3 2 3 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 2 3 3 2 2 2 2 3 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 3 3 2 2 2 3 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 3 3 2 3 2 2 3 2 3 3 3 3 2 3 2 2 2 3 2 3 2 3 2 3 3 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 2 3 3 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 2 2 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 2 2 3 2 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 2 3 3 2 3 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 2 2 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 3 3 3 3 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 2 3 2 3 3 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 2 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 3 3 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 2 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 3 3 3 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 3 2 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 3 2 2 2 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 3 2 3 3 3 3 3 2 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 2 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 3 2 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 3 3 2 2 3 2 2 2 2 3 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 2 2 2 2 3 3 3 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 2 2 3 3 3 2 3 2 3 2 2 3 2 2 3 3 3 2 3 3 3 2 3 3 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 3 3 3 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 3 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 2 2 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 3 3 3 3 3 3 2 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 3 3 3 3 3 3 3 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 3 3 2 3 2 3 3 3 2 3 2 2 2 2 3 3 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 2 3 2 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 2 2 2 2 2 2 2 3 3 3 2 3 2 2 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 3 2 3 2 3 2 3 3 2 3 2 2 2 2 3 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 2 3 2 3 2 2 2 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 3 3 2 2 3 2 2 2 3 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 3 2 2 2 2 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 2 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 3 3 2 2 2 2 2 3 2 3 3 2 3 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 3 2 2 3 3 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 3 3 3 2 3 2 3 3 2 2 2 3 3 2 3 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 3 3 2 2 3 2 2 3 3 2 2 2 3 3 3 2 2 2 2 2 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 3 2 2 2 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 3 2 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 3 2 2 2 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 3 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 2 2 3 2 2 3 2 2 2 3 2 3 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 3 2 2 2 3 2 3 2 3 2 3 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 2 2 2 3 3 3 2 3 3 3 2 2 2 2 3 2 3 2 3 3 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 3 3 2 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 3 3 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 3 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 2 3 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 2 3 3 3 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 2 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 3 3 3 3 2 3 2 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 2 2 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 3 3 2 3 2 3 2 2 3 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 2 2 3 2 2 3 3 3 3 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 3 2 2 3 3 3 3 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 3 3 3 2 3 2 3 3 3 2 2 2 3 2 3 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 2 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 3 3 2 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 2 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 3 2 2 2 3 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 3 2 2 3 3 2 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 2 2 3 3 2 2 3 3 3 2 3 2 3 2 2 3 2 3 3 3 2 3 2 3 3 2 2 2 3 3 2 3 3 3 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 3 2 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 3 3 3 2 3 3 2 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 2 2 2 3 2 3 3 3 3 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 2 3 2 3 3 3 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 2 2 3 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 2 3 3 3 3 3 3 2 2 2 2 3 2 2 2 3 3 2 3 3 3 3 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 3 2 2 2 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 2 3 3 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 2 2 3 3 3 3 2 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 2 2 3 2 3 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 2 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 3 2 3 3 3 3 2 2 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 2 3 2 2 3 3 2 2 2 3 3 2 3 2 2 2 2 3 3 2 3 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 3 2 3 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 3 3 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 3 2 2 3 3 3 2 3 2 2 2 2 3 2 3 2 3 2 2 3 2 2 3 3 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 2 3 3 2 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 2 3 2 3 2 2 2 3 2 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 2 3 3 3 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 3 2 2 3 3 3 2 2 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 3 2 2 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 3 3 2 2 2 3 2 3 3 3 3 2 2 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 3 2 3 3 2 3 2 3 3 3 2 3 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 2 3 2 2 2 2 2 2 2 2 3 2 2 3 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 3 2 3 2 3 3 3 3 2 3 2 3 2 2 3 2 3 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 3 2 3 2 3 2 2 3 3 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 3 2 3 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 2 3 3 2 2 3 2 2 2 3 2 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 3 3 2 2 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 2 2 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 2 2 2 2 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 3 2 3 2 2 3 3 2 3 2 2 3 2 2 3 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 2 3 2 3 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 2 3 2 2 3 3 2 3 3 3 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 3 3 2 3 2 3 2 2 3 3 3 3 2 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 3 3 3 3 2 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 3 2 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 2 3 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 3 3 3 2 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 2 2 3 3 3 2 3 2 2 2 2 2 3 3 3 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 3 2 3 3 2 2 2 2 2 2 2 2 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 2 2 3 2 3 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 2 3 3 2 2 2 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 3 2 3 3 2 3 3 3 2 3 2 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 3 2 3 3 2 3 3 2 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 3 2 3 3 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 2 3 3 3 2 2 3 3 3 3 3 3 2 3 2 3 2 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 3 2 3 2 2 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 3 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 2 2 3 3 2 2 3 2 2 3 3 3 2 2 2 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 3 2 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 3 2 2 2 3 3 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 2 3 2 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 2 2 3 2 2 3 3 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 3 2 2 2 2 2 2 3 2 3 2 2 3 2 2 2 3 2 3 2 2 3 3 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 3 2 3 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 2 3 2 3 2 3 3 2 3 3 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 2 2 2 3 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 3 2 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 2 2 2 2 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 3 2 2 2 2 2 2 2 3 3 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 2 3 3 2 2 2 2 3 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 2 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 3 2 3 2 2 2 2 3 3 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 2 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 3 2 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 3 2 3 3 2 2 3 3 2 3 3 3 3 3 3 3 2 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 3 3 2 2 3 2 3 3 3 3 2 3 3 3 2 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 2 3 3 3 2 3 2 3 2 2 2 2 3 2 2 3 2 3 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 3 3 3 2 2 2 3 2 2 3 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 2 2 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 3 2 3 3 2 2 3 2 2 3 3 2 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 2 2 3 2 2 2 2 2 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 2 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 3 2 2 2 2 3 2 2 3 2 3 3 2 2 2 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 3 2 3 3 3 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 3 2 3 2 3 3 2 3 3 2 3 3 3 2 3 2 2 2 3 2 3 2 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 3 2 3 3 3 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 2 2 2 3 3 2 3 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 3 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 2 2 2 2 2 2 3 3 2 3 2 2 3 3 2 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 2 3 2 2 2 2 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 3 3 2 3 3 2 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 2 3 3 2 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 2 3 2 2 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 3 3 3 2 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 3 3 2 3 2 3 2 2 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 3 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 3 2 2 3 3 2 3 3 3 2 2 2 2 2 3 3 3 3 2 3 2 2 2 2 3 2 3 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 2 3 2 3 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 3 3 3 3 3 3 3 2 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 2 3 2 3 2 3 2 3 2 3 2 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 2 2 2 3 2 3 3 3 3 3 2 2 2 3 2 2 3 2 2 3 3 3 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 2 2 2 2 2 2 3 2 3 2 2 3 3 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 3 2 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 3 3 3 3 3 2 3 2 3 3 3 2 2 3 3 3 2 2 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 3 3 3 2 3 3 2 3 2 3 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 2 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 2 3 3 3 3 2 3 3 3 3 2 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 3 2 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 3 2 3 3 2 3 2 3 2 2 2 3 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 2 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 3 3 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 2 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 2 2 2 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 2 2 3 3 2 2 3 3 3 3 3 3 3 2 3 2 2 2 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 3 2 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 3 2 2 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 3 2 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 2 3 3 3 2 2 2 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 2 2 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 2 3 3 2 2 3 2 2 3 3 3 2 3 3 2 2 2 3 2 2 2 3 3 2 3 3 3 2 2 3 3 3 3 2 3 3 2 2 3 3 3 2 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 3 3 3 3 2 2 2 2 3 3 2 3 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 3 2 3 3 2 3 3 2 3 3 3 2 2 2 3 2 2 3 3 2 3 3 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 2 3 3 2 2 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 2 3 2 3 3 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 2 3 2 2 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 2 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 2 2 2 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 3 3 3 3 2 2 2 2 2 3 3 2 3 3 2 2 2 3 2 2 2 2 2 2 2 3 2 3 2 2 3 2 3 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 2 3 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 2 3 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 3 2 3 3 2 3 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 2 3 2 2 2 3 3 3 2 3 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 2 3 2 3 3 2 2 2 2 2 3 3 2 3 2 2 3 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 3 2 3 2 3 2 3 3 3 3 3 2 3 3 2 2 2 3 3 2 3 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 3 3 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 3 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 2 2 3 2 2 2 2 3 2 2 2 3 2 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 3 2 3 3 2 3 3 2 3 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 3 2 3 3 3 3 2 2 2 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 2 3 3 2 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 2 2 2 3 2 2 3 2 2 2 2 3 3 2 3 3 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 3 3 2 2 3 2 3 3 2 2 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 2 2 3 3 3 2 3 2 3 3 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 2 2 3 3 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 2 3 2 3 3 3 3 3 2 2 2 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 3 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 3 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 2 3 2 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 2 2 2 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 2 2 2 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 2 3 2 2 3 2 3 2 3 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 2 3 2 3 3 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 3 2 2 2 2 2 2 2 2 3 2 3 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 3 2 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 2 3 3 3 2 3 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 3 3 2 3 2 2 3 2 2 2 3 3 2 3 2 2 3 3 3 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 3 2 3 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 2 3 2 2 3 2 3 3 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 3 2 3 2 2 2 2 3 2 3 2 3 2 2 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 2 3 2 3 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 2 3 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 2 3 2 3 2 2 3 3 3 3 3 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 2 3 2 3 3 3 2 3 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 3 3 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 2 3 3 3 3 3 2 2 3 3 3 3 3 3 3 2 3 3 2 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 3 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 2 2 2 2 2 3 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 2 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 2 3 2 2 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 3 3 2 2 3 2 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 3 3 3 3 2 2 2 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 2 2 3 2 2 2 2 3 3 3 2 2 2 2 3 3 3 2 2 3 3 3 2 2 2 3 2 3 3 3 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 2 3 3 2 2 3 3 2 2 3 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 3 3 3 3 3 3 2 3 2 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 3 2 2 2 3 2 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 3 2 3 3 3 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 3 3 2 2 2 3 2 3 3 2 2 3 2 2 2 2 3 3 2 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 2 2 2 2 3 3 3 3 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 3 2 3 2 2 2 3 2 2 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 2 3 3 2 3 3 2 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 3 3 2 3 2 3 3 3 3 3 3 3 3 2 3 2 3 2 3 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 3 3 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 2 2 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 2 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 2 3 3 3 2 3 2 3 3 2 2 2 2 3 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 3 2 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 3 3 2 3 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 2 3 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 2 2 2 2 3 2 2 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 2 3 2 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 3 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 2 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 3 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 3 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 2 2 3 2 2 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 2 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 2 3 3 3 2 3 3 2 2 2 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 3 2 3 2 2 3 3 3 3 3 2 3 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 3 2 3 2 3 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 3 2 3 3 2 3 2 2 2 2 2 2 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 3 2 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 2 2 3 2 3 3 2 3 3 3 3 3 2 3 2 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 3 3 3 2 3 2 3 3 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 3 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 3 3 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 3 3 3 2 3 2 2 2 3 2 3 2 3 2 2 2 2 3 2 2 2 3 3 2 2 3 2 2 2 3 2 3 2 3 3 2 3 3 2 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 2 3 3 2 2 2 2 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 3 3 2 3 2 2 2 2 3 3 3 3 3 3 3 2 3 2 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 3 2 2 3 2 2 3 2 2 2 2 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 2 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 3 3 2 3 3 2 2 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 3 2 3 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 3 2 2 2 3 3 3 3 3 3 3 2 3 2 2 2 2 3 2 3 2 2 3 3 2 3 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 2 3 2 2 3 2 2 2 3 2 2 2 2 2 3 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 2 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 3 3 2 2 3 3 2 3 3 3 2 3 3 3 3 3 3 2 3 3 2 2 2 3 3 2 2 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 2 2 2 3 2 3 3 3 3 3 3 3 2 2 3 3 2 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 2 3 3 2 3 2 2 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 3 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 3 3 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 2 2 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 2 2 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 2 2 3 3 3 3 2 3 3 2 3 2 3 2 3 2 2 3 2 3 2 3 2 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 2 3 2 2 3 3 3 3 3 2 3 2 2 2 3 2 2 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 3 3 2 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 2 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 2 3 2 3 2 2 3 3 2 2 3 2 2 3 2 2 2 3 2 3 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 2 3 3 2 2 2 2 2 2 2 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 3 3 3 3 2 3 3 3 3 3 3 2 3 2 3 2 3 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 3 2 2 3 2 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 2 2 3 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 2 2 3 3 2 2 3 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 3 2 3 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 2 2 2 2 3 2 3 2 3 2 2 3 2 2 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 3 2 2 2 3 3 3 3 3 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 2 2 3 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 3 2 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 3 2 3 2 2 2 3 2 3 2 2 2 3 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 3 3 3 2 3 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 3 3 2 3 2 2 2 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 3 3 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 3 3 2 2 3 3 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 3 3 2 2 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 2 2 2 3 2 2 3 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 2 3 2 3 3 2 3 2 3 2 2 3 3 3 3 2 3 3 2 2 3 2 2 3 3 3 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 2 3 3 2 3 2 3 2 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 2 3 2 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 2 2 3 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 3 2 2 2 3 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 3 3 2 3 2 3 2 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 2 3 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 2 2 3 2 3 3 2 3 2 2 2 2 3 3 2 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 2 2 2 3 3 2 3 2 3 3 3 3 2 3 3 2 2 3 2 3 2 3 2 2 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 3 2 3 2 3 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 3 2 2 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 3 3 3 2 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 2 2 3 3 2 3 2 2 3 2 3 2 2 3 3 2 2 3 2 3 2 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 3 2 2 3 3 3 3 3 3 2 2 3 2 2 2 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 3 3 2 2 2 3 2 3 2 3 2 2 3 2 2 2 2 2 3 3 2 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 2 3 2 2 3 3 3 3 3 2 3 2 3 3 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 3 3 3 2 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 2 3 2 2 2 3 3 3 3 3 3 2 2 3 3 3 2 2 3 3 2 3 2 2 3 2 3 2 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 3 2 2 2 2 2 3 3 2 3 3 3 2 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 3 3 3 2 3 2 2 2 3 3 3 3 2 2 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 2 2 2 2 2 2 2 2 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 3 2 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 3 3 2 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 3 3 2 3 3 2 2 3 2 2 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 2 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 2 2 3 3 3 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 2 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 2 3 3 3 3 2 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 2 3 3 2 2 3 2 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 2 2 2 2 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 2 3 2 3 3 2 2 2 3 3 2 2 2 3 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 2 2 3 3 3 2 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 3 2 2 3 2 3 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 2 2 3 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 3 3 3 2 2 2 3 2 3 2 3 3 3 3 2 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 3 3 3 2 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 2 3 3 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 2 2 3 3 3 2 2 2 3 2 2 3 2 2 3 3 3 2 2 3 2 3 2 2 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 2 2 3 3 3 3 2 3 2 3 3 2 3 2 3 3 3 2 2 3 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 3 2 3 2 2 2 3 2 2 2 3 2 3 2 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 2 3 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 2 3 2 3 2 3 3 3 2 3 3 2 3 3 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 3 2 3 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 2 2 2 3 3 2 3 2 3 3 3 3 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 2 2 3 2 2 2 2 2 3 3 3 2 3 2 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 3 3 3 3 2 2 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 3 2 2 2 3 2 2 3 2 3 2 2 2 3 2 2 2 2 2 3 3 2 3 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 2 2 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 3 3 3 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 2 3 2 3 3 3 3 3 2 3 2 2 2 3 2 3 3 2 3 2 2 2 2 3 3 2 3 2 2 2 2 2 3 2 3 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 3 3 3 3 2 2 3 3 3 3 3 3 2 2 3 2 2 2 3 3 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 3 3 3 3 3 3 2 3 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 3 2 2 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 2 2 3 3 2 3 2 2 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 3 3 3 3 3 3 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 3 2 2 3 2 2 3 3 2 2 3 2 3 2 3 2 3 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 2 2 2 3 2 2 2 2 3 2 3 2 2 3 2 2 2 3 2 2 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 3 2 3 2 3 2 2 3 3 2 2 2 2 2 2 3 3 2 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 2 3 3 2 3 3 3 2 3 2 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 3 2 3 2 2 2 3 3 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 2 2 3 2 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 3 2 2 3 3 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 3 2 3 2 2 2 3 3 3 3 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 3 2 2 2 2 3 2 3 3 2 2 3 2 2 3 3 3 2 3 3 3 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 2 2 3 3 3 3 2 2 3 3 3 3 3 3 2 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 3 3 2 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 3 2 3 3 2 3 3 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 3 2 3 3 2 2 2 3 3 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 2 3 2 2 3 2 2 3 3 3 3 3 3 2 2 2 2 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 3 2 3 2 2 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 2 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 2 3 2 3 2 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 2 3 2 2 3 2 2 2 2 2 2 2 3 2 3 2 3 2 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 2 3 2 2 2 3 3 2 3 2 3 2 2 3 3 2 3 3 3 2 2 3 2 3 2 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 3 2 2 2 2 2 2 2 3 3 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 3 2 2 3 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 3 2 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 2 3 2 3 3 2 3 2 2 2 2 3 3 3 2 2 2 3 2 3 2 2 3 2 3 2 2 2 2 2 2 2 3 3 3 2 3 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 2 3 2 2 2 2 3 2 3 3 3 2 3 3 3 3 2 3 2 2 2 2 2 2 3 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 3 2 3 2 3 3 3 2 2 2 2 3 2 2 3 3 2 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 2 2 2 3 3 3 3 2 2 2 3 3 3 3 2 2 2 3 2 3 2 2 3 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 3 2 2 3 2 2 3 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 3 3 2 3 2 3 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 2 2 2 3 3 2 3 2 3 2 3 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 3 2 2 3 2 3 2 3 2 3 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 3 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 2 3 2 2 2 2 3 3 2 3 3 2 2 3 3 3 3 3 2 2 2 3 2 2 3 3 3 2 3 3 2 3 2 2 2 2 2 3 3 2 2 2 3 2 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 3 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 2 3 2 3 2 2 3 3 2 2 3 3 3 2 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 3 2 2 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 2 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 2 2 3 3 3 2 3 2 3 3 2 3 2 2 2 2 2 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 3 3 3 2 2 3 3 2 3 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 2 3 3 3 2 3 2 2 2 3 2 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 3 3 3 3 2 3 2 3 2 2 3 2 3 3 2 3 2 2 2 3 2 3 2 3 2 3 2 2 3 2 3 2 3 2 3 3 2 2 2 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 3 3 2 2 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 3 3 2 3 2 2 2 3 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 2 2 2 2 2 3 2 3 2 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 3 3 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 2 3 3 2 2 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 2 2 3 3 3 3 2 3 2 3 2 2 3 3 3 3 3 3 3 3 2 3 2 3 2 2 3 2 2 2 2 2 2 2 3 2 3 3 3 3 2 3 2 3 3 3 3 2 2 2 3 2 3 3 3 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 2 3 2 3 2 2 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 3 3 3 3 2 3 2 2 2 2 2 3 2 3 2 3 2 2 3 3 2 3 3 3 2 2 2 2 2 2 2 3 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 2 3 2 2 3 2 3 2 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 2 3 2 3 2 3 2 3 3 2 3 2 2 3 2 2 3 3 2 3 2 2 3 3 3 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 2 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 3 3 3 3 2 3 3 2 3 3 3 2 3 2 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 2 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 2 2 3 2 3 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 3 2 3 2 2 2 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 3 2 3 2 2 3 3 2 3 2 2 3 3 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 2 3 3 3 3 3 2 3 3 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 3 3 3 3 3 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 2 2 2 3 2 2 2 3 2 3 2 3 3 3 2 2 2 3 2 2 3 2 3 2 3 3 2 2 3 2 3 2 3 2 3 3 2 3 2 2 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 2 2 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 2 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 2 3 3 3 2 2 2 3 2 3 3 3 2 3 2 2 2 2 3 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 2 2 2 3 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 2 3 2 2 2 3 2 3 3 3 2 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 3 3 2 3 3 3 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 2 2 3 3 3 2 2 2 2 2 3 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 3 3 3 3 2 2 2 3 2 2 3 2 2 3 2 3 2 3 2 3 2 2 3 2 3 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 2 2 3 2 3 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 2 3 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 2 2 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 3 3 3 2 2 3 3 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 3 2 2 2 2 3 3 3 2 3 3 3 3 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 3 2 2 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 3 2 3 3 3 3 3 3 3 3 2 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 3 2 3 2 3 3 2 3 3 3 3 2 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 2 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 3 3 2 3 2 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 3 3 3 3 3 2 3 2 3 3 3 3 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 3 3 2 3 2 3 2 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 3 2 3 3 2 2 3 3 3 2 3 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 3 2 3 2 2 2 3 2 3 3 2 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 3 3 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 2 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 3 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 3 3 2 2 2 3 3 3 2 3 2 3 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 2 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 3 3 3 3 2 2 2 2 3 3 2 3 3 3 2 2 2 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 3 3 3 3 2 2 2 3 2 3 2 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 3 3 3 3 3 2 3 3 2 3 2 3 2 3 2 3 2 3 2 2 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 2 2 2 3 2 2 3 2 2 2 2 3 3 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 2 3 3 2 3 2 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 3 3 2 3 2 2 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 2 3 3 3 3 2 2 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 2 3 3 3 2 3 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 3 2 3 3 2 3 2 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 2 3 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 3 3 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 2 2 3 2 3 2 3 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 3 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 2 2 3 2 3 2 2 3 3 2 3 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 3 3 3 3 3 2 2 3 2 3 2 3 3 3 2 2 3 3 2 3 2 3 3 3 2 3 3 2 3 2 2 2 3 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 2 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 3 2 2 2 2 3 2 3 2 2 2 3 2 3 3 3 3 2 3 3 3 2 3 2 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 3 3 3 3 2 3 2 2 2 3 3 3 3 2 2 2 3 3 3 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 3 3 2 2 3 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 2 3 3 2 2 3 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 3 3 2 3 2 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 3 2 2 2 2 2 3 3 3 3 3 3 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 3 2 3 3 3 3 3 2 2 2 3 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 3 2 2 2 3 3 3 2 3 3 2 3 3 3 2 3 2 2 2 2 3 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 2 2 3 2 3 2 3 3 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 3 3 3 2 2 3 3 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 3 2 3 3 3 3 2 3 3 3 3 2 3 2 2 2 3 2 2 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 3 2 2 2 2 3 3 2 3 2 3 3 3 2 2 2 3 3 2 3 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 2 3 2 2 2 2 2 2 3 3 2 3 2 3 3 2 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 3 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 3 2 2 3 3 2 3 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 3 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 2 3 3 2 3 3 3 2 2 2 3 3 3 3 2 3 2 2 3 2 3 2 3 2 2 3 2 3 3 2 3 3 3 3 2 2 2 3 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 3 3 3 3 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 3 2 3 2 2 2 2 3 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 2 2 2 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 2 3 3 2 3 3 3 3 3 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 3 3 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 3 2 2 3 3 3 3 2 3 2 2 3 2 3 3 2 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 2 2 3 2 3 3 3 3 2 3 3 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 2 3 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 2 2 3 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 3 2 3 2 3 2 3 2 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 3 2 3 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 3 3 2 2 2 2 2 2 3 3 2 3 2 2 3 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 3 2 2 2 2 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 3 2 3 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 3 3 2 2 3 2 2 2 2 3 3 2 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 2 2 3 3 3 3 3 3 2 3 2 2 3 3 2 3 2 2 2 2 3 3 3 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 2 3 2 2 2 2 2 3 3 3 2 3 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 3 2 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 2 2 3 3 3 2 2 2 2 3 2 3 3 2 3 2 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 3 2 2 2 2 2 2 2 3 2 2 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 3 3 3 2 3 2 2 2 2 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 3 2 2 2 2 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 3 2 2 3 2 2 2 3 2 3 2 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 2 2 3 2 2 2 3 2 3 3 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 2 2 2 2 3 3 2 3 3 2 3 3 3 2 3 3 2 2 3 3 3 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 3 2 3 2 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 3 3 3 2 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 2 3 2 3 2 3 2 3 2 2 2 2 2 3 2 2 2 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 3 3 2 3 3 2 2 3 3 2 2 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 2 3 2 2 2 3 3 3 2 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 3 2 3 3 2 2 2 2 3 2 2 3 2 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 3 2 2 2 3 2 2 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 3 3 3 3 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 2 3 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 2 2 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 3 2 3 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 3 2 3 3 2 3 2 3 2 2 2 2 3 2 2 3 3 3 2 3 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 2 2 3 3 2 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 3 3 3 3 3 2 3 3 2 2 2 3 3 2 3 3 3 2 2 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 2 3 3 2 3 3 3 3 2 2 2 2 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 3 2 2 3 3 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 3 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 3 3 2 2 3 2 3 2 3 3 3 2 2 3 2 2 3 2 2 3 3 3 2 3 3 2 3 2 3 2 2 2 3 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 2 2 2 3 3 2 3 2 2 2 2 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 3 2 3 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 2 3 2 2 2 3 3 3 3 2 3 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 2 2 2 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 3 2 2 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 2 2 3 2 2 2 2 3 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 3 3 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 3 2 2 2 3 2 3 2 3 2 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 3 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 3 2 3 3 3 3 2 3 2 2 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 2 3 3 3 3 2 3 3 2 2 3 2 3 2 2 2 3 2 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 3 3 2 3 3 3 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 2 2 3 2 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 2 2 3 2 2 3 2 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 2 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 3 2 2 3 2 3 3 2 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 3 2 3 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 3 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 3 2 3 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 3 2 2 3 3 2 2 2 3 2 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 3 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 2 3 3 2 2 2 3 2 3 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 2 2 2 2 3 3 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 2 3 2 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 2 2 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 2 2 2 3 2 2 2 2 2 3 2 2 2 2 2 2 2 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 2 3 3 2 3 3 2 2 3 3 2 2 2 3 3 2 3 3 2 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 2 3 2 2 2 3 2 2 2 3 3 2 3 3 2 2 2 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 2 3 3 3 2 3 3 2 3 3 3 3 3 2 3 2 2 3 3 2 3 2 3 2 3 3 3 2 2 3 3 2 2 2 3 2 3 2 2 2 2 3 3 3 3 2 3 3 2 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 3 3 2 3 2 3 2 3 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 3 3 2 2 2 3 2 2 3 3 2 3 3 2 2 3 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 2 3 3 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 3 3 3 3 2 2 2 2 3 2 3 3 3 3 2 2 2 3 3 3 2 2 2 2 3 2 2 3 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 2 3 2 3 3 3 2 3 2 2 3 2 3 3 2 2 2 3 2 2 2 3 3 3 3 2 2 2 3 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 3 3 2 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 3 3 2 3 2 3 2 3 2 3 3 2 2 2 2 3 3 3 3 2 2 2 3 2 2 2 2 3 2 3 2 3 2 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 2 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 2 2 2 3 3 2 3 2 3 2 3 2 3 2 2 2 3 3 2 3 2 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 3 3 2 2 3 3 2 3 3 3 3 3 2 2 3 2 3 3 2 2 3 3 2 3 3 2 3 2 3 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 3 2 2 3 3 2 3 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 2 2 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 2 2 3 3 3 3 3 2 3 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 3 2 2 3 2 2 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 3 2 2 3 2 2 3 3 3 2 2 2 2 3 2 2 3 3 2 3 2 2 2 3 3 3 3 3 3 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 3 3 3 3 2 3 2 2 3 2 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 2 2 3 3 2 2 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 2 3 2 2 2 2 3 2 2 2 3 2 2 3 2 3 3 3 2 2 2 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 2 3 2 3 2 2 3 2 2 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 3 2 3 3 2 2 3 2 2 2 2 2 2 3 2 2 3 3 3 3 2 2 2 3 2 2 3 3 2 2 3 2 2 2 3 2 2 3 3 2 3 3 2 3 2 2 2 3 2 3 2 2 2 2 3 2 2 2 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 3 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 2 2 3 2 3 3 2 3 2 3 3 3 3 2 3 3 2 2 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 2 3 3 3 3 2 3 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 2 3 3 3 2 2 2 3 3 2 3 2 3 3 3 2 2 2 3 2 3 3 3 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 2 3 2 3 2 2 3 3 2 3 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 3 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 3 3 3 2 2 2 2 2 3 2 3 3 3 2 3 2 3 3 2 3 3 2 3 2 3 3 2 2 2 3 3 2 3 2 2 3 3 2 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 2 2 2 2 3 3 2 3 3 2 2 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 2 3 2 2 3 3 3 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 3 2 3 2 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 3 2 3 3 2 2 2 2 3 3 2 3 3 2 3 2 3 3 2 2 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 2 2 3 2 3 2 3 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 2 2 2 2 3 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 2 3 2 3 2 3 3 3 2 2 2 2 3 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 3 2 2 3 2 3 2 2 3 2 2 2 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 2 3 3 2 3 3 3 3 2 2 3 2 3 2 2 2 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 2 2 2 3 3 3 2 3 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 3 2 2 3 3 2 3 3 2 2 2 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 3 2 2 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 2 2 2 3 3 3 3 3 2 2 2 3 2 3 3 3 2 3 2 3 2 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 2 2 2 2 2 3 3 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 2 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 2 3 2 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 3 3 3 3 2 3 2 2 2 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 2 3 2 2 3 2 3 2 2 2 3 2 2 2 2 2 2 3 2 2 2 2 2 3 2 3 2 3 3 2 2 2 3 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 3 3 3 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 3 3 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 3 3 2 3 2 3 2 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 3 3 2 3 3 3 2 2 3 3 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 2 3 2 3 3 2 3 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 2 3 3 2 2 3 2 2 2 3 2 2 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 3 3 3 3 2 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 3 2 2 3 2 2 2 2 3 2 2 2 3 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 2 2 3 2 3 3 3 3 3 2 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 3 3 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 3 2 3 3 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 3 2 2 2 2 2 3 3 2 3 3 2 3 2 3 2 3 2 2 2 2 3 3 3 3 2 3 2 2 2 3 3 2 3 3 2 3 3 3 3 2 2 2 3 2 3 3 2 2 3 2 2 2 3 3 3 3 2 2 2 2 3 3 2 2 3 2 3 2 3 3 2 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 2 2 2 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 2 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 2 3 2 3 2 2 3 3 2 2 3 3 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 3 2 3 2 2 3 2 3 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 3 2 3 3 3 2 2 3 3 3 2 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 3 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 3 2 2 3 2 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 3 3 3 2 3 2 3 3 3 2 2 2 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 2 3 3 3 3 3 2 3 3 3 2 3 2 2 2 2 3 2 2 3 3 3 2 3 3 3 3 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 3 3 2 3 2 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 2 2 2 2 2 3 3 2 2 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 3 2 3 2 3 3 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 2 2 2 3 2 2 2 2 2 3 3 3 2 2 3 3 2 3 3 3 2 3 3 2 2 2 2 3 3 2 2 3 2 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 2 3 2 3 2 3 3 2 3 3 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 3 2 3 2 2 2 2 3 3 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 2 3 2 2 2 3 2 2 3 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 3 2 2 3 2 2 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 2 3 2 3 3 3 3 2 3 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 2 3 3 3 2 3 2 3 2 2 3 2 3 2 3 3 3 2 3 3 3 3 2 3 2 3 3 3 2 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 2 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 2 2 2 2 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 3 2 2 2 2 2 2 3 3 3 3 2 3 3 2 3 2 3 2 3 2 2 3 3 3 2 3 3 3 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 2 3 3 2 2 3 2 3 3 3 2 2 3 3 3 2 3 2 2 3 2 2 3 2 3 3 3 2 2 2 3 2 2 2 3 2 2 3 3 3 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 3 2 3 2 3 3 3 3 3 3 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 3 3 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 2 3 3 3 3 2 3 2 3 3 3 3 2 2 2 2 2 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 3 2 2 3 2 2 2 3 2 3 2 2 2 2 2 3 2 2 2 3 3 2 3 3 3 2 3 3 3 2 2 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 3 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 3 3 3 3 2 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 2 2 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 2 2 3 2 3 3 2 3 2 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 3 3 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 3 3 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 3 2 2 2 2 2 2 2 2 3 2 2 3 3 2 3 2 3 3 2 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 2 3 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 3 2 2 2 2 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 3 3 2 3 2 3 3 2 2 2 2 2 3 3 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 2 2 2 2 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 2 2 3 3 2 3 3 2 3 2 2 2 3 2 3 3 3 2 3 3 3 3 2 3 2 2 2 3 3 2 2 3 2 2 3 3 3 2 3 2 2 2 3 3 2 2 2 3 2 2 2 3 3 2 3 2 2 3 3 3 3 3 3 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 2 3 3 2 2 3 3 2 3 2 3 3 2 3 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 3 2 2 2 3 2 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 2 2 3 3 2 3 3 3 3 2 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 3 3 3 2 2 3 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 3 2 2 2 3 3 2 3 2 2 2 2 3 2 2 2 2 2 2 2 2 3 2 3 2 3 2 3 3 2 3 2 2 2 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 2 2 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 2 2 2 3 2 2 3 3 3 3 3 2 2 3 2 2 2 3 3 3 2 2 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 3 3 2 3 2 2 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 3 3 3 2 3 2 2 3 2 3 2 3 2 3 2 2 3 3 2 2 2 3 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 3 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 2 2 2 3 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 3 2 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 2 2 2 3 2 2 2 2 2 3 2 2 2 3 3 3 3 2 3 3 2 3 3 2 3 2 3 3 3 3 2 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 3 2 2 3 2 2 2 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 2 2 2 3 3 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 3 2 2 3 3 2 3 3 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 2 3 3 2 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 3 3 2 2 3 3 2 2 2 3 3 2 2 2 3 2 3 2 2 2 2 3 3 3 3 2 2 3 3 3 3 2 2 3 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 3 2 3 2 2 2 2 2 2 3 3 3 2 3 2 3 2 3 3 2 3 2 2 3 2 3 2 2 2 2 3 3 2 2 2 2 2 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 2 2 2 3 2 2 3 2 3 2 3 3 2 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 3 2 2 2 2 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 3 3 2 3 3 3 2 2 3 3 2 3 3 3 2 2 2 3 3 3 2 3 2 3 2 3 2 3 2 3 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 3 2 3 2 2 3 3 3 2 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 2 3 3 2 3 3 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 2 3 3 3 2 3 2 3 3 2 3 3 3 3 2 3 2 3 2 3 3 2 3 3 2 3 2 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 3 2 3 3 2 2 2 3 3 3 3 2 2 3 2 2 3 2 2 2 3 2 2 3 3 2 2 3 3 2 3 2 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 2 3 3 2 3 2 2 2 3 3 2 3 2 2 2 2 3 3 2 3 3 2 3 2 3 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 2 2 2 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 2 3 2 2 2 2 2 3 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 3 3 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 3 2 2 2 2 3 3 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 2 2 2 2 2 3 2 2 2 3 3 2 3 2 2 3 3 3 3 2 2 2 2 2 3 2 2 2 2 3 3 2 3 3 3 3 3 3 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 3 3 3 2 2 2 3 2 2 2 3 2 2 2 2 2 2 3 3 2 2 3 2 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 3 3 3 2 3 3 2 2 3 2 3 2 3 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 3 2 2 2 3 2 3 2 2 3 3 3 2 3 2 3 2 3 2 2 2 2 3 3 3 2 2 3 2 2 2 3 2 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 2 2 3 2 3 3 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 2 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 2 2 3 2 3 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 2 2 3 2 3 2 2 2 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 3 2 2 2 3 2 2 2 3 2 3 2 2 2 2 3 2 3 3 3 2 2 2 2 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 2 2 3 3 3 2 2 2 3 3 3 3 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 2 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 3 2 2 3 3 2 2 3 3 3 3 2 3 2 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 3 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 2 3 2 3 2 3 3 3 3 3 3 2 2 2 2 3 2 2 3 2 3 2 2 2 2 2 3 3 2 2 3 2 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 2 2 2 2 3 2 2 3 2 3 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 2 2 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 3 3 3 3 2 3 2 2 3 2 3 3 3 3 2 2 2 3 2 3 2 3 3 2 3 2 2 3 2 2 3 2 3 2 3 3 3 3 2 3 3 3 2 2 2 2 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 2 3 3 2 2 3 3 3 3 2 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 3 3 3 2 2 3 2 3 3 2 3 2 2 2 2 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 3 2 2 2 2 2 2 2 3 2 2 3 2 2 3 3 2 2 3 3 2 2 3 3 2 2 3 2 2 3 2 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 3 3 3 2 3 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 2 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 3 3 2 3 3 3 3 3 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 2 3 2 2 2 3 2 2 3 2 3 2 2 2 2 3 3 3 2 2 2 2 3 3 2 2 2 2 3 3 3 2 2 3 2 2 3 3 2 2 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 2 2 2 2 2 3 3 2 3 2 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 2 3 2 2 2 3 2 2 3 2 3 2 2 2 3 2 3 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 3 3 2 2 2 3 2 3 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 3 2 2 3 2 3 2 2 2 3 2 2 3 3 2 2 3 2 3 3 2 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 3 2 3 2 3 2 2 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 2 2 3 3 2 3 2 3 2 3 2 2 2 2 3 3 3 2 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 3 3 2 2 3 2 2 3 2 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 2 3 3 2 3 2 3 3 2 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 3 2 2 2 3 3 2 2 2 3 3 3 2 3 3 2 3 2 3 2 3 2 3 3 2 2 2 2 2 2 2 3 2 3 3 2 2 3 2 2 2 3 3 2 2 3 2 3 3 2 3 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 3 2 2 3 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 2 3 2 3 3 2 3 3 3 2 2 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 2 3 3 2 3 3 3 2 2 2 2 2 3 2 3 2 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 2 3 3 3 2 2 2 3 3 2 3 2 2 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 2 3 2 2 2 2 3 3 3 3 3 2 3 3 3 3 2 2 2 3 2 2 3 3 2 3 3 2 2 2 3 2 3 3 2 2 3 3 3 3 2 2 3 3 3 2 2 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 2 3 2 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 3 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 3 2 2 2 2 3 2 3 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 3 3 3 3 2 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 2 2 3 3 3 3 2 3 3 3 3 2 2 2 3 3 2 3 3 3 2 2 3 2 3 3 3 2 2 2 3 2 2 2 2 3 3 2 2 2 2 3 2 2 3 3 3 3 3 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 3 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 3 3 2 3 3 3 2 3 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 2 3 3 2 2 3 3 2 3 2 2 2 3 3 3 3 2 2 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 2 3 2 2 3 3 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 2 3 2 2 2 2 3 2 3 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 3 2 3 3 3 2 2 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 2 3 3 2 3 2 2 3 3 3 3 2 2 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 2 2 3 2 3 2 3 3 2 3 3 2 2 3 3 3 2 3 2 3 2 3 2 3 3 3 2 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 2 3 3 2 3 3 2 3 3 2 3 2 2 2 3 3 2 3 3 2 3 3 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 2 2 3 3 3 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 2 2 3 2 2 3 3 3 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 3 2 2 2 2 2 2 2 2 3 2 3 2 2 2 3 3 3 3 3 2 2 2 3 2 2 3 3 2 3 3 3 2 3 2 2 3 2 2 3 3 2 2 3 2 3 2 2 2 3 3 3 2 3 2 2 3 2 3 3 3 2 3 3 3 3 3 3 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 3 2 2 2 3 3 2 2 2 3 3 3 2 2 3 2 3 3 3 3 2 3 3 2 2 2 2 3 3 3 3 2 3 3 3 2 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 2 2 3 2 2 3 3 2 3 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 3 3 3 2 2 2 3 2 2 3 2 2 2 3 2 3 3 3 2 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 3 2 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 2 2 2 3 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 3 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 2 3 2 2 3 3 3 3 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 2 2 3 3 3 3 2 2 3 3 2 2 2 3 3 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 3 3 3 2 2 3 2 2 2 2 2 3 2 3 2 3 3 3 2 2 2 3 2 2 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 2 3 3 3 3 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 3 2 2 3 2 2 3 3 2 3 3 3 3 2 2 3 3 3 2 3 3 2 2 3 3 2 3 2 3 2 2 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 3 3 2 2 2 2 2 3 2 2 2 2 2 3 3 3 2 3 2 3 3 2 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 2 2 3 2 3 3 3 2 3 2 2 2 3 3 2 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 3 3 2 3 2 2 3 2 2 2 3 3 3 2 3 3 2 3 3 2 2 2 3 2 2 3 2 2 3 2 2 2 3 2 3 3 3 2 2 3 3 3 2 2 3 3 3 3 2 2 3 3 3 3 3 3 2 3 3 3 2 3 3 3 2 2 3 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 3 2 3 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 2 3 3 2 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 3 2 3 3 3 2 3 3 2 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 3 2 2 3 2 3 3 3 3 3 2 2 3 2 2 3 3 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 2 3 3 3 2 3 2 3 2 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 2 3 2 3 2 3 2 2 2 3 3 2 2 2 3 2 3 3 2 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 3 3 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 2 2 3 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 3 2 3 3 3 3 3 3 3 2 3 2 2 3 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 3 2 3 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 3 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 2 3 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 3 3 2 3 3 3 2 3 2 2 2 2 3 3 2 3 2 3 3 2 3 3 3 2 2 3 2 2 3 3 3 3 2 3 2 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 2 3 3 3 3 3 2 3 3 3 3 2 2 3 3 2 2 2 3 2 2 2 2 2 3 3 3 3 3 2 2 3 3 3 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 2 3 2 2 3 2 3 3 3 2 3 3 2 3 2 2 3 3 3 2 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 3 2 3 2 3 3 2 3 3 3 2 2 3 2 3 2 3 3 3 3 2 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 2 3 3 3 2 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 3 3 2 3 2 3 3 2 3 2 2 3 2 2 2 2 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 2 3 2 2 2 3 2 3 3 2 3 3 2 3 2 2 2 3 3 3 2 2 3 2 3 2 3 3 2 2 3 2 2 3 2 2 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 3 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 2 3 2 2 2 2 3 2 3 3 2 3 2 3 3 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 3 3 2 2 3 3 3 2 2 2 3 3 3 2 3 3 2 3 3 2 2 2 2 3 2 2 3 3 2 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 3 3 3 3 3 2 3 3 3 3 2 3 3 3 2 2 3 3 3 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 2 3 2 2 2 3 2 3 3 3 3 3 3 3 2 3 3 3 2 2 3 3 3 3 3 2 2 3 2 2 3 2 3 3 3 3 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 3 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 3 2 3 3 3 2 3 2 2 2 2 2 3 2 3 2 3 3 3 3 3 2 3 2 3 2 2 2 2 3 2 3 3 3 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 3 3 2 3 3 2 3 3 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 2 3 3 3 3 2 2 3 3 2 3 2 2 3 2 3 3 2 2 2 3 2 2 3 2 3 3 2 3 3 2 3 2 2 2 3 2 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 2 3 3 3 2 3 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 2 3 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 2 2 2 3 3 3 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 3 2 3 2 3 2 2 2 2 2 3 2 3 3 3 2 2 3 2 3 2 2 3 2 3 2 2 3 2 2 2 2 2 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 2 2 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 2 3 2 3 3 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 3 3 2 2 2 2 3 3 2 3 3 2 2 3 3 3 2 2 3 2 2 3 2 3 3 2 2 2 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 3 2 2 2 3 2 2 2 2 3 3 3 2 2 2 3 2 2 3 2 3 3 3 2 2 3 3 2 2 3 2 3 3 2 3 2 2 3 3 3 3 2 2 3 2 2 2 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 3 2 3 2 2 2 2 3 3 3 2 3 2 2 3 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 2 3 3 3 3 2 2 2 2 3 3 2 2 2 3 2 2 2 3 2 2 3 2 3 2 2 3 3 3 3 3 3 2 2 2 2 2 3 2 2 2 2 2 3 2 2 3 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 3 3 3 3 3 2 2 3 2 3 3 3 2 2 3 3 2 3 2 3 2 2 3 2 2 3 2 2 2 2 3 3 3 2 3 2 2 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 2 2 3 2 3 3 2 2 2 3 3 3 2 2 2 2 2 2 3 2 3 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 2 3 2 3 3 3 2 2 2 2 2 3 3 2 2 2 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 3 3 3 3 3 2 3 2 3 2 2 2 3 2 2 3 3 2 3 2 3 3 2 2 3 2 2 2 3 3 3 3 2 3 2 3 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 2 3 2 2 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 3 2 3 3 2 3 3 2 3 2 3 2 2 2 2 3 3 2 2 2 3 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 3 2 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 3 2 2 3 2 2 3 3 3 3 2 3 2 2 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 3 2 3 3 3 2 3 2 3 3 3 2 3 3 3 3 3 3 2 2 2 2 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 2 3 3 3 2 2 2 2 3 2 3 2 3 3 2 3 2 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 2 3 2 2 2 3 3 2 2 3 3 2 2 2 2 3 2 3 2 2 2 2 3 3 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 2 2 2 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 3 2 3 2 3 3 3 2 3 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 3 2 2 2 3 2 2 3 2 3 2 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 2 3 3 2 3 2 2 2 3 3 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 2 3 2 2 3 2 3 2 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 3 2 3 3 2 3 2 2 3 3 2 2 2 2 3 2 3 2 3 2 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 2 3 3 2 3 3 2 3 3 3 2 3 2 2 2 3 2 2 3 2 3 2 2 2 2 3 3 3 2 2 3 3 2 3 3 3 2 2 2 3 3 2 2 3 3 2 3 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 3 2 2 2 3 3 2 3 2 3 2 3 3 3 3 2 2 2 2 3 3 2 3 3 3 3 3 3 3 3 3 2 3 3 2 2 2 3 3 3 2 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 3 3 3 3 2 3 3 3 2 2 3 2 2 3 3 2 3 3 3 3 3 2 3 3 2 2 3 2 2 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 2 2 3 3 3 2 2 3 2 3 3 2 2 2 3 2 2 3 3 2 3 2 3 2 2 2 2 3 3 2 3 3 3 3 3 2 3 3 3 3 2 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 2 3 2 3 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 3 2 2 3 3 2 3 2 3 3 2 2 3 2 2 2 2 2 2 3 2 3 3 2 2 3 2 3 3 2 2 3 2 2 2 2 2 3 2 3 3 3 3 2 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 3 2 3 3 2 3 3 3 2 2 2 3 2 3 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 3 3 3 3 3 2 2 2 3 3 3 3 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 3 3 2 2 3 3 2 2 3 2 3 2 2 2 3 2 3 2 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 2 2 3 2 2 3 3 3 3 3 3 2 2 3 3 2 2 3 2 2 3 3 3 3 3 3 2 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 2 2 2 3 3 2 2 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 3 2 3 3 3 2 3 3 3 3 3 3 2 3 3 2 2 2 3 3 3 2 2 2 3 2 3 3 3 3 3 2 3 2 3 3 2 2 2 3 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2 3 2 3 2 2 3 3 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 3 2 2 3 3 2 2 3 2 2 2 2 2 3 3 3 2 3 3 3 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 2 2 3 3 2 3 3 2 2 2 2 3 3 3 2 2 2 3 2 2 2 2 3 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 2 2 2 2 2 3 3 2 2 2 3 2 2 3 2 2 2 3 3 2 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 2 3 3 2 3 3 2 3 3 3 3 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 2 2 2 2 3 2 3 2 3 2 3 3 3 3 2 2 2 2 2 3 2 2 3 3 2 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 3 3 2 3 3 2 2 3 2 3 2 3 3 2 2 2 2 3 2 2 3 3 3 3 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 3 2 3 2 3 3 3 2 2 2 2 2 2 3 3 3 3 2 3 3 2 2 3 2 2 2 3 2 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 3 3 2 2 3 3 2 3 3 2 2 3 2 2 2 2 3 3 2 3 3 3 3 3 2 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 3 2 3 2 2 2 3 2 3 2 3 2 3 2 3 2 2 3 2 3 3 3 2 3 3 3 3 3 3 3 2 2 3 3 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 2 3 3 3 3 2 3 2 3 2 3 2 2 2 2 3 2 2 2 2 2 2 3 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 3 3 2 3 2 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 3 3 3 2 3 2 2 3 3 3 3 2 2 3 3 2 3 3 3 2 2 2 3 2 3 3 2 3 2 3 3 3 2 2 3 3 2 3 2 3 3 3 2 3 3 3 2 2 2 3 2 2 3 3 2 2 2 2 3 3 2 3 2 2 3 2 2 2 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 3 2 2 3 2 3 3 3 3 2 2 3 3 2 3 3 3 2 3 2 2 2 2 3 3 2 2 3 3 3 2 2 3 2 2 3 3 3 3 2 3 3 2 2 3 3 2 2 3 3 2 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 3 3 2 2 2 2 3 3 2 3 3 3 2 2 3 3 2 3 2 3 2 2 3 3 2 3 2 2 2 2 2 3 3 3 2 3 3 3 2 3 2 3 3 2 3 2 3 2 3 3 3 3 3 2 3 3 3 3 2 3 3 2 3 2 3 3 3 3 2 3 2 2 2 3 2 2 3 3 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 3 3 2 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 3 3 2 3 3 2 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 3 2 2 2 3 2 2 2 3 3 2 2 2 3 3 2 3 2 3 2 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 2 3 3 3 2 3 2 2 3 3 2 2 3 2 3 2 3 2 3 3 2 3 2 3 3 3 2 2 2 3 2 2 2 3 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 3 2 3 2 2 3 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 3 2 2 2 3 3 3 3 2 3 3 2 2 3 3 3 3 2 3 3 2 2 3 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 2 2 3 3 2 2 2 2 2 2 3 3 2 3 3 2 2 3 2 2 3 3 2 2 2 3 2 3 3 3 3 3 3 2 2 3 2 2 3 2 3 2 2 3 3 3 2 2 2 2 2 2 3 2 2 3 3 2 2 2 3 3 2 2 3 2 2 2 3 3 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 3 3 3 2 2 3 2 2 3 2 2 2 3 2 2 3 2 2 3 2 2 2 3 3 2 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 3 2 3 2 2 3 3 2 2 2 3 2 3 2 3 3 2 2 2 3 3 3 3 3 3 2 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 2 2 3 2 3 3 3 2 3 2 3 2 2 2 3 2 3 3 3 2 3 3 2 3 3 3 3 3 2 2 2 2 2 3 2 2 2 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 2 3 3 3 2 2 3 2 2 3 2 3 2 2 3 3 2 3 2 2 2 2 2 3 3 2 3 3 3 3 2 3 2 3 2 2 3 3 2 2 2 2 3 3 3 2 2 3 3 2 3 3 2 3 2 3 3 3 2 2 2 3 3 3 2 3 3 2 3 2 2 3 2 3 2 3 3 2 2 2 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 3 2 3 3 3 3 3 2 3 2 3 3 3 3 3 3 2 3 2 2 3 3 3 3 3 2 2 3 3 3 3 2 3 2 3 2 3 2 2 2 2 3 3 3 3 3 2 3 2 2 3 3 3 2 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 3 3 2 2 2 2 3 2 2 3 2 3 3 2 3 2 3 2 2 3 3 2 2 3 3 3 3 2 3 3 3 2 2 3 2 3 3 3 3 3 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 3 3 3 3 2 2 3 2 3 2 2 2 2 3 3 3 2 3 2 2 3 3 2 2 3 3 3 2 3 3 3 2 2 2 3 2 3 2 2 2 3 2 2 3 3 3 2 3 2 2 3 3 2 2 2 3 3 3 2 2 2 3 2 2 3 2 2 2 2 2 2 3 2 2 2 2 2 3 3 2 3 3 2 3 3 2 3 2 3 3 3 2 2 3 2 3 3 3 2 2 3 2 3 2 3 2 2 3 3 3 3 2 2 3 2 3 3 3 2 3 2 3 3 2 2 3 3 2 2 3 2 2 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 2 3 3 2 3 2 2 2 2 2 2 2 2 3 3 2 2 2 3 3 2 3 2 2 3 3 2 2 3 2 3 3 3 2 2 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 3 2 3 3 2 3 2 3 3 3 3 3 3 2 3 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 2 2 2 3 2 3 3 2 2 2 3 2 3 2 2 2 3 2 3 2 2 2 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 2 2 2 3 2 3 3 2 3 2 2 3 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 2 3 3 2 2 3 3 2 3 2 3 2 2 3 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 2 3 3 3 3 3 3 2 3 2 2 2 2 3 2 2 2 2 3 3 2 2 2 3 3 2 2 3 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 3 2 2 2 3 2 2 3 2 2 2 3 2 2 3 3 3 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 2 3 2 2 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 3 3 2 2 3 2 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 3 3 2 3 3 3 2 2 3 2 3 2 2 3 3 2 3 3 3 3 3 2 3 2 2 2 3 3 2 2 3 3 2 3 3 3 3 3 3 2 3 2 3 3 3 2 3 2 3 2 3 2 2 3 2 2 3 3 2 3 2 3 2 2 2 3 3 3 2 2 2 3 2 3 2 2 3 2 2 3 2 2 3 3 3 2 3 2 3 3 3 3 2 3 3 3 3 2 2 3 2 2 3 3 3 3 3 3 3 3 2 2 3 3 3 2 3 2 2 3 2 3 2 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 3 3 2 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 2 2 3 2 3 2 2 2 3 3 2 2 2 3 3 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 3 2 2 2 2 3 3 3 3 2 2 3 2 2 2 3 2 3 3 2 3 3 2 3 3 2 2 3 2 2 3 2 2 3 2 2 2 3 3 2 3 3 3 3 3 2 2 2 3 2 2 2 3 2 3 2 3 3 2 3 3 3 3 3 2 2 3 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 3 2 3 2 2 2 3 2 3 2 3 3 3 3 3 2 2 2 3 2 3 2 2 2 2 2 3 2 3 2 2 2 2 3 2 2 3 3 3 3 3 2 2 2 2 3 3 2 3 2 2 3 2 3 3 2 3 2 2 3 2 3 3 2 2 2 2 2 3 3 3 3 2 3 3 2 2 2 2 3 3 2 2 3 3 3 2 3 3 2 2 3 3 3 3 2 3 2 2 3 3 3 2 3 2 3 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 2 2 2 2 2 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 3 3 2 3 3 3 2 2 2 3 3 2 2 3 2 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 3 2 2 3 3 3 2 3 3 2 3 2 3 3 2 3 3 2 3 3 2 2 2 2 3 3 2 2 2 3 3 3 3 3 2 2 2 2 3 2 3 2 2 2 3 2 3 2 2 3 3 3 3 2 3 2 3 3 2 3 2 3 2 3 2 2 3 2 2 3 2 3 3 3 3 3 3 3 3 2 2 3 3 3 3 2 3 2 2 3 3 2 2 3 2 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 2 2 2 3 3 2 3 2 3 3 2 2 3 2 3 3 3 3 3 2 2 3 2 2 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 2 3 3 3 2 2 3 2 2 2 2 2 3 3 2 2 2 2 2 2 2 3 2 3 3 2 3 2 3 2 3 3 3 2 3 3 2 2 3 2 2 3 3 3 2 3 3 3 3 2 3 3 3 3 3 2 3 2 2 2 2 2 2 3 2 3 2 3 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 2 2 2 2 2 3 2 3 2 2 3 2 2 2 3 3 2 3 3 2 3 3 3 2 2 2 2 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 3 2 2 3 2 2 2 2 3 2 3 2 3 2 2 3 3 3 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 2 3 3 3 3 2 2 3 2 3 3 3 2 3 2 3 2 3 3 3 2 3 2 2 2 3 2 3 3 3 2 3 2 3 2 2 3 3 3 2 2 2 3 2 3 3 2 3 3 3 3 3 2 3 3 2 3 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 2 3 3 2 3 2 3 3 3 2 3 3 2 2 2 3 3 2 2 3 3 3 3 3 2 2 2 2 3 3 2 3 3 3 3 2 3 2 3 3 3 3 2 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 3 3 3 2 2 3 2 2 3 2 3 2 3 3 3 2 3 2 2 3 2 2 2 2 3 3 3 2 3 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 2 3 2 2 2 3 3 2 3 3 2 3 2 2 2 3 3 2 2 3 2 3 2 2 2 2 3 2 3 2 3 2 2 3 2 2 2 3 2 3 2 2 2 3 3 2 2 2 2 2 3 2 3 3 3 3 3 2 3 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 2 2 2 3 2 2 3 3 3 3 2 2 2 2 2 2 3 2 2 2 3 2 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 3 2 3 2 3 3 2 3 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 3 2 3 3 3 2 2 3 2 2 2 3 2 3 2 3 3 3 3 3 3 2 2 2 3 2 2 2 3 2 2 2 2 3 3 3 3 2 3 2 2 3 3 3 3 2 2 2 3 3 3 2 3 2 2 2 2 3 2 2 3 3 2 2 2 2 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 3 3 2 2 3 3 3 2 3 2 3 3 2 3 3 2 3 3 2 3 2 2 3 3 3 2 3 2 3 3 3 3 3 3 3 2 2 2 2 3 2 3 3 3 3 2 3 2 2 3 2 2 2 3 3 3 3 2 2 3 2 3 2 3 2 3 3 3 3 2 2 3 3 3 2 2 2 3 3 2 3 3 2 3 2 3 2 3 2 2 2 2 3 2 3 2 3 2 3 2 2 3 2 2 3 2 2 3 2 3 3 3 2 3 2 2 2 2 2 2 3 2 2 2 3 3 2 2 2 3 3 2 3 3 2 2 3 3 3 3 2 2 2 3 3 2 3 3 3 3 2 2 2 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 3 2 2 3 3 3 3 2 3 3 2 3 2 2 3 3 3 2 3 2 2 3 2 3 3 2 3 2 3 3 2 2 2 3 3 3 2 3 3 3 2 3 3 2 3 2 3 3 2 2 3 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 2 3 3 3 2 3 2 3 2 2 3 2 3 2 3 2 3 3 3 3 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 2 2 3 3 2 3 2 2 2 3 3 2 2 2 2 3 2 2 3 2 3 3 2 2 3 2 3 3 3 2 3 3 2 2 3 2 2 3 2 2 2 3 3 2 3 3 2 2 3 3 2 2 2 2 2 2 2 2 3 3 2 2 3 2 3 2 2 3 3 2 3 2 3 2 2 2 3 2 2 2 3 2 2 2 2 3 2 2 3 3 2 3 2 3 3 3 3 3 2 2 3 3 2 2 2 3 2 3 3 3 2 3 3 2 3 2 3 3 2 2 2 2 3 2 3 2 3 2 3 3 3 2 3 3 2 3 2 3 2 2 2 2 3 3 3 2 3 2 3 2 3 3 2 2 2 2 3 3 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 3 3 3 3 2 3 2 3 3 2 2 2 2 2 3 2 3 3 3 3 2 2 3 2 2 2 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 3 3 2 2 3 2 2 2 3 2 3 2 2 3 2 2 3 2 3 2 2 2 3 3 3 2 2 3 3 3 3 2 2 3 2 2 3 2 2 2 3 3 3 3 2 3 2 2 2 3 2 2 3 3 3 2 2 3 3 3 2 2 3 2 2 3 2 3 2 3 2 3 2 3 2 3 2 2 3 2 2 3 2 3 3 3 2 3 2 3 2 2 2 3 3 2 2 3 3 2 2 3 3 3 2 2 2 3 2 3 3 2 2 2 2 3 3 2 2 2 3 2 2 3 3 3 3 2 3 3 2 3 2 2 2 3 2 2 2 2 3 3 3 2 3 3 3 3 3 2 3 2 2 3 2 2 3 3 2 2 2 2 3 3 2 2 2 2 2 2 3 2 3 2 2 3 3 3 2 2 3 3 2 2 2 2 2 3 2 2 3 2 2 3 3 3 3 3 3 3 3 2 3 3 2 3 2 3 3 2 3 2 3 2 2 3 2 2 3 2 2 2 3 3 3 2 2 2 2 3 2 3 2 3 2 2 3 2 2 2 2 3 2 3 3 3 3 2 3 2 2 2 2 3 3 2 2 3 2 2 2 2 3 2 2 2 3 3 2 3 3 3 2 3 2 2 2 3 2 2 3 2 2 2 2 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 3 3 3 3 2 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 2 3 2 3 3 3 3 3 3 2 3 3 3 3 2 3 2 3 2 3 3 3 2 3 3 2 3 3 2 3 3 2 2 3 3 3 3 3 2 2 3 3 2 2 2 2 3 2 3 3 2 2 2 2 2 3 3 3 2 3 2 3 3 2 3 3 3 2 2 3 2 3 2 2 3 2 2 2 3 2 3 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 2 3 3 2 2 2 3 2 2 2 2 3 3 3 2 2 3 2 3 3 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 2 2 3 3 3 2 2 3 2 3 3 3 3 2 2 3 2 3 2 2 3 3 2 2 3 2 3 3 2 3 2 3 2 3 2 3 3 2 3 3 3 2 3 2 2 3 3 3 2 3 3 3 3 3 2 2 2 3 3 2 2 3 3 2 2 3 2 3 3 3 2 3 3 3 3 2 2 3 3 3 2 2 2 3 3 2 3 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 3 3 2 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 3 2 3 2 3 3 3 3 3 2 3 2 3 2 3 2 3 2 2 3 2 3 3 2 3 2 3 2 3 2 2 2 2 2 3 3 3 2 3 2 2 2 3 2 2 2 2 3 2 3 2 2 2 3 2 3 3 2 3 3 2 2 3 2 2 2 2 3 3 3 3 3 3 2 3 3 2 2 2 2 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 2 3 2 3 3 2 3 2 2 2 3 3 3 3 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 3 2 3 2 2 3 2 3 3 2 3 2 2 2 2 3 2 3 2 2 3 3 3 3 2 2 2 3 2 2 2 2 2 3 2 3 2 2 2 3 2 3 3 3 2 3 2 2 3 2 2 2 3 2 3 2 2 3 3 2 3 3 2 2 2 2 3 2 2 3 2 3 2 3 2 2 3 2 3 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 3 2 3 3 3 3 2 3 3 2 2 2 2 3 2 2 2 2 2 2 2 3 3 2 2 3 3 3 2 2 2 3 2 3 2 3 3 3 2 2 3 2 2 2 3 2 2 2 2 2 2 3 2 3 3 2 3 2 3 3 2 3 2 2 3 2 3 2 3 3 2 3 2 2 3 3 2 3 3 2 2 3 3 2 3 2 2 2 2 2 3 2 3 3 2 2 3 3 2 3 3 2 2 3 2 3 2 2 2 2 3 2 3 2 2 2 3 3 2 3 3 3 2 2 2 2 3 2 2 3 3 3 2 3 2 2 2 2 3 2 2 2 3 2 2 3 2 3 2 3 3 3 2 3 2 3 3 3 3 3 2 2 2 2 3 2 3 3 3 2 3 3 2 2 3 2 2 2 2 2 3 3 2 3 2 2 2 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 2 3 3 2 3 3 2 3 2 3 2 2 2 2 2 3 2 3 2 3 2 2 2 2 2 2 3 2 3 2 3 2 3 2 2 3 2 2 2 2 3 3 2 3 3 2 2 3 3 3 2 3 3 3 2 3 3 3 3 3 2 2 3 3 3 3 2 3 3 3 3 2 2 3 3 3 3 2 3 2 3 3 3 2 2 3 3 2 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 2 3 3 3 2 3 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 3 2 3 2 3 2 2 3 3 2 3 2 2 2 3 3 3 3 2 3 3 2 3 3 2 2 3 3 3 3 2 3 3 3 3 2 3 2 3 2 2 2 3 2 2 2 2 3 3 2 2 3 2 2 2 3 2 3 2 3 2 2 2 3 3 2 3 3 2 2 3 2 2 2 3 3 2 3 2 2\n111 1110\n123 1122\n135 1134\n147 1146\n159 1158\n171 1170\n183 1182\n195 1194\n207 1206\n219 1218\n231 1230\n243 1242\n255 1254\n267 1266\n279 1278\n291 1290\n303 1302\n315 1314\n327 1326\n339 1338\n351 1350\n363 1362\n375 1374\n387 1386\n399 1398\n411 1410\n423 1422\n435 1434\n447 1446\n459 1458\n471 1470\n483 1482\n495 1494\n507 1506\n519 1518\n531 1530\n543 1542\n555 1554\n567 1566\n579 1578\n591 1590\n603 1602\n615 1614\n627 1626\n639 1638\n651 1650\n663 1662\n675 1674\n687 1686\n699 1698\n711 1710\n723 1722\n735 1734\n747 1746\n759 1758\n771 1770\n783 1782\n795 1794\n807 1806\n819 1818\n831 1830\n843 1842\n855 1854\n867 1866\n879 1878\n891 1890\n903 1902\n915 1914\n927 1926\n939 1938\n951 1950\n963 1962\n975 1974\n987 1986\n999 1998\n1011 2010\n1023 2022\n1035 2034\n1047 2046\n1059 2058\n1071 2070\n1083 2082\n1095 2094\n1107 2106\n1119 2118\n1131 2130\n1143 2142\n1155 2154\n1167 2166\n1179 2178\n1191 2190\n1203 2202\n1215 2214\n1227 2226\n1239 2238\n1251 2250\n1263 2262\n1275 2274\n1287 2286\n1299 2298\n1311 2310\n1323 2322\n1335 2334\n1347 2346\n1359 2358\n1371 2370\n1383 2382\n1395 2394\n1407 2406\n1419 2418\n1431 2430\n1443 2442\n1455 2454\n1467 2466\n1479 2478\n1491 2490\n1503 2502\n1515 2514\n1527 2526\n1539 2538\n1551 2550\n1563 2562\n1575 2574\n1587 2586\n1599 2598\n1611 2610\n1623 2622\n1635 2634\n1647 2646\n1659 2658\n1671 2670\n1683 2682\n1695 2694\n1707 2706\n1719 2718\n1731 2730\n1743 2742\n1755 2754\n1767 2766\n1779 2778\n1791 2790\n1803 2802\n1815 2814\n1827 2826\n1839 2838\n1851 2850\n1863 2862\n1875 2874\n1887 2886\n1899 2898\n1911 2910\n1923 2922\n1935 2934\n1947 2946\n1959 2958\n1971 2970\n1983 2982\n1995 2994\n2007 3006\n2019 3018\n2031 3030\n2043 3042\n2055 3054\n2067 3066\n2079 3078\n2091 3090\n2103 3102\n2115 3114\n2127 3126\n2139 3138\n2151 3150\n2163 3162\n2175 3174\n2187 3186\n2199 3198\n2211 3210\n2223 3222\n2235 3234\n2247 3246\n2259 3258\n2271 3270\n2283 3282\n2295 3294\n2307 3306\n2319 3318\n2331 3330\n2343 3342\n2355 3354\n2367 3366\n2379 3378\n2391 3390\n2403 3402\n2415 3414\n2427 3426\n2439 3438\n2451 3450\n2463 3462\n2475 3474\n2487 3486\n2499 3498\n2511 3510\n2523 3522\n2535 3534\n2547 3546\n2559 3558\n2571 3570\n2583 3582\n2595 3594\n2607 3606\n2619 3618\n2631 3630\n2643 3642\n2655 3654\n2667 3666\n2679 3678\n2691 3690\n2703 3702\n2715 3714\n2727 3726\n2739 3738\n2751 3750\n2763 3762\n2775 3774\n2787 3786\n2799 3798\n2811 3810\n2823 3822\n2835 3834\n2847 3846\n2859 3858\n2871 3870\n2883 3882\n2895 3894\n2907 3906\n2919 3918\n2931 3930\n2943 3942\n2955 3954\n2967 3966\n2979 3978\n2991 3990\n3003 4002\n3015 4014\n3027 4026\n3039 4038\n3051 4050\n3063 4062\n3075 4074\n3087 4086\n3099 4098\n3111 4110\n3123 4122\n3135 4134\n3147 4146\n3159 4158\n3171 4170\n3183 4182\n3195 4194\n3207 4206\n3219 4218\n3231 4230\n3243 4242\n3255 4254\n3267 4266\n3279 4278\n3291 4290\n3303 4302\n3315 4314\n3327 4326\n3339 4338\n3351 4350\n3363 4362\n3375 4374\n3387 4386\n3399 4398\n3411 4410\n3423 4422\n3435 4434\n3447 4446\n3459 4458\n3471 4470\n3483 4482\n3495 4494\n3507 4506\n3519 4518\n3531 4530\n3543 4542\n3555 4554\n3567 4566\n3579 4578\n3591 4590\n3603 4602\n3615 4614\n3627 4626\n3639 4638\n3651 4650\n3663 4662\n3675 4674\n3687 4686\n3699 4698\n3711 4710\n3723 4722\n3735 4734\n3747 4746\n3759 4758\n3771 4770\n3783 4782\n3795 4794\n3807 4806\n3819 4818\n3831 4830\n3843 4842\n3855 4854\n3867 4866\n3879 4878\n3891 4890\n3903 4902\n3915 4914\n3927 4926\n3939 4938\n3951 4950\n3963 4962\n3975 4974\n3987 4986\n3999 4998\n4011 5010\n4023 5022\n4035 5034\n4047 5046\n4059 5058\n4071 5070\n4083 5082\n4095 5094\n4107 5106\n4119 5118\n4131 5130\n4143 5142\n4155 5154\n4167 5166\n4179 5178\n4191 5190\n4203 5202\n4215 5214\n4227 5226\n4239 5238\n4251 5250\n4263 5262\n4275 5274\n4287 5286\n4299 5298\n4311 5310\n4323 5322\n4335 5334\n4347 5346\n4359 5358\n4371 5370\n4383 5382\n4395 5394\n4407 5406\n4419 5418\n4431 5430\n4443 5442\n4455 5454\n4467 5466\n4479 5478\n4491 5490\n4503 5502\n4515 5514\n4527 5526\n4539 5538\n4551 5550\n4563 5562\n4575 5574\n4587 5586\n4599 5598\n4611 5610\n4623 5622\n4635 5634\n4647 5646\n4659 5658\n4671 5670\n4683 5682\n4695 5694\n4707 5706\n4719 5718\n4731 5730\n4743 5742\n4755 5754\n4767 5766\n4779 5778\n4791 5790\n4803 5802\n4815 5814\n4827 5826\n4839 5838\n4851 5850\n4863 5862\n4875 5874\n4887 5886\n4899 5898\n4911 5910\n4923 5922\n4935 5934\n4947 5946\n4959 5958\n4971 5970\n4983 5982\n4995 5994\n5007 6006\n5019 6018\n5031 6030\n5043 6042\n5055 6054\n5067 6066\n5079 6078\n5091 6090\n5103 6102\n5115 6114\n5127 6126\n5139 6138\n5151 6150\n5163 6162\n5175 6174\n5187 6186\n5199 6198\n5211 6210\n5223 6222\n5235 6234\n5247 6246\n5259 6258\n5271 6270\n5283 6282\n5295 6294\n5307 6306\n5319 6318\n5331 6330\n5343 6342\n5355 6354\n5367 6366\n5379 6378\n5391 6390\n5403 6402\n5415 6414\n5427 6426\n5439 6438\n5451 6450\n5463 6462\n5475 6474\n5487 6486\n5499 6498\n5511 6510\n5523 6522\n5535 6534\n5547 6546\n5559 6558\n5571 6570\n5583 6582\n5595 6594\n5607 6606\n5619 6618\n5631 6630\n5643 6642\n5655 6654\n5667 6666\n5679 6678\n5691 6690\n5703 6702\n5715 6714\n5727 6726\n5739 6738\n5751 6750\n5763 6762\n5775 6774\n5787 6786\n5799 6798\n5811 6810\n5823 6822\n5835 6834\n5847 6846\n5859 6858\n5871 6870\n5883 6882\n5895 6894\n5907 6906\n5919 6918\n5931 6930\n5943 6942\n5955 6954\n5967 6966\n5979 6978\n5991 6990\n6003 7002\n6015 7014\n6027 7026\n6039 7038\n6051 7050\n6063 7062\n6075 7074\n6087 7086\n6099 7098\n6111 7110\n6123 7122\n6135 7134\n6147 7146\n6159 7158\n6171 7170\n6183 7182\n6195 7194\n6207 7206\n6219 7218\n6231 7230\n6243 7242\n6255 7254\n6267 7266\n6279 7278\n6291 7290\n6303 7302\n6315 7314\n6327 7326\n6339 7338\n6351 7350\n6363 7362\n6375 7374\n6387 7386\n6399 7398\n6411 7410\n6423 7422\n6435 7434\n6447 7446\n6459 7458\n6471 7470\n6483 7482\n6495 7494\n6507 7506\n6519 7518\n6531 7530\n6543 7542\n6555 7554\n6567 7566\n6579 7578\n6591 7590\n6603 7602\n6615 7614\n6627 7626\n6639 7638\n6651 7650\n6663 7662\n6675 7674\n6687 7686\n6699 7698\n6711 7710\n6723 7722\n6735 7734\n6747 7746\n6759 7758\n6771 7770\n6783 7782\n6795 7794\n6807 7806\n6819 7818\n6831 7830\n6843 7842\n6855 7854\n6867 7866\n6879 7878\n6891 7890\n6903 7902\n6915 7914\n6927 7926\n6939 7938\n6951 7950\n6963 7962\n6975 7974\n6987 7986\n6999 7998\n7011 8010\n7023 8022\n7035 8034\n7047 8046\n7059 8058\n7071 8070\n7083 8082\n7095 8094\n7107 8106\n7119 8118\n7131 8130\n7143 8142\n7155 8154\n7167 8166\n7179 8178\n7191 8190\n7203 8202\n7215 8214\n7227 8226\n7239 8238\n7251 8250\n7263 8262\n7275 8274\n7287 8286\n7299 8298\n7311 8310\n7323 8322\n7335 8334\n7347 8346\n7359 8358\n7371 8370\n7383 8382\n7395 8394\n7407 8406\n7419 8418\n7431 8430\n7443 8442\n7455 8454\n7467 8466\n7479 8478\n7491 8490\n7503 8502\n7515 8514\n7527 8526\n7539 8538\n7551 8550\n7563 8562\n7575 8574\n7587 8586\n7599 8598\n7611 8610\n7623 8622\n7635 8634\n7647 8646\n7659 8658\n7671 8670\n7683 8682\n7695 8694\n7707 8706\n7719 8718\n7731 8730\n7743 8742\n7755 8754\n7767 8766\n7779 8778\n7791 8790\n7803 8802\n7815 8814\n7827 8826\n7839 8838\n7851 8850\n7863 8862\n7875 8874\n7887 8886\n7899 8898\n7911 8910\n7923 8922\n7935 8934\n7947 8946\n7959 8958\n7971 8970\n7983 8982\n7995 8994\n8007 9006\n8019 9018\n8031 9030\n8043 9042\n8055 9054\n8067 9066\n8079 9078\n8091 9090\n8103 9102\n8115 9114\n8127 9126\n8139 9138\n8151 9150\n8163 9162\n8175 9174\n8187 9186\n8199 9198\n8211 9210\n8223 9222\n8235 9234\n8247 9246\n8259 9258\n8271 9270\n8283 9282\n8295 9294\n8307 9306\n8319 9318\n8331 9330\n8343 9342\n8355 9354\n8367 9366\n8379 9378\n8391 9390\n8403 9402\n8415 9414\n8427 9426\n8439 9438\n8451 9450\n8463 9462\n8475 9474\n8487 9486\n8499 9498\n8511 9510\n8523 9522\n8535 9534\n8547 9546\n8559 9558\n8571 9570\n8583 9582\n8595 9594\n8607 9606\n8619 9618\n8631 9630\n8643 9642\n8655 9654\n8667 9666\n8679 9678\n8691 9690\n8703 9702\n8715 9714\n8727 9726\n8739 9738\n8751 9750\n8763 9762\n8775 9774\n8787 9786\n8799 9798\n8811 9810\n8823 9822\n8835 9834\n8847 9846\n8859 9858\n8871 9870\n8883 9882\n8895 9894\n8907 9906\n8919 9918\n8931 9930\n8943 9942\n8955 9954\n8967 9966\n8979 9978\n8991 9990\n9003 10002\n9015 10014\n9027 10026\n9039 10038\n9051 10050\n9063 10062\n9075 10074\n9087 10086\n9099 10098\n9111 10110\n9123 10122\n9135 10134\n9147 10146\n9159 10158\n9171 10170\n9183 10182\n9195 10194\n9207 10206\n9219 10218\n9231 10230\n9243 10242\n9255 10254\n9267 10266\n9279 10278\n9291 10290\n9303 10302\n9315 10314\n9327 10326\n9339 10338\n9351 10350\n9363 10362\n9375 10374\n9387 10386\n9399 10398\n9411 10410\n9423 10422\n9435 10434\n9447 10446\n9459 10458\n9471 10470\n9483 10482\n9495 10494\n9507 10506\n9519 10518\n9531 10530\n9543 10542\n9555 10554\n9567 10566\n9579 10578\n9591 10590\n9603 10602\n9615 10614\n9627 10626\n9639 10638\n9651 10650\n9663 10662\n9675 10674\n9687 10686\n9699 10698\n9711 10710\n9723 10722\n9735 10734\n9747 10746\n9759 10758\n9771 10770\n9783 10782\n9795 10794\n9807 10806\n9819 10818\n9831 10830\n9843 10842\n9855 10854\n9867 10866\n9879 10878\n9891 10890\n9903 10902\n9915 10914\n9927 10926\n9939 10938\n9951 10950\n9963 10962\n9975 10974\n9987 10986\n9999 10998\n10011 11010\n10023 11022\n10035 11034\n10047 11046\n10059 11058\n10071 11070\n10083 11082\n10095 11094\n10107 11106\n10119 11118\n10131 11130\n10143 11142\n10155 11154\n10167 11166\n10179 11178\n10191 11190\n10203 11202\n10215 11214\n10227 11226\n10239 11238\n10251 11250\n10263 11262\n10275 11274\n10287 11286\n10299 11298\n10311 11310\n10323 11322\n10335 11334\n10347 11346\n10359 11358\n10371 11370\n10383 11382\n10395 11394\n10407 11406\n10419 11418\n10431 11430\n10443 11442\n10455 11454\n10467 11466\n10479 11478\n10491 11490\n10503 11502\n10515 11514\n10527 11526\n10539 11538\n10551 11550\n10563 11562\n10575 11574\n10587 11586\n10599 11598\n10611 11610\n10623 11622\n10635 11634\n10647 11646\n10659 11658\n10671 11670\n10683 11682\n10695 11694\n10707 11706\n10719 11718\n10731 11730\n10743 11742\n10755 11754\n10767 11766\n10779 11778\n10791 11790\n10803 11802\n10815 11814\n10827 11826\n10839 11838\n10851 11850\n10863 11862\n10875 11874\n10887 11886\n10899 11898\n10911 11910\n10923 11922\n10935 11934\n10947 11946\n10959 11958\n10971 11970\n10983 11982\n10995 11994\n11007 12006\n11019 12018\n11031 12030\n11043 12042\n11055 12054\n11067 12066\n11079 12078\n11091 12090\n11103 12102\n11115 12114\n11127 12126\n11139 12138\n11151 12150\n11163 12162\n11175 12174\n11187 12186\n11199 12198\n11211 12210\n11223 12222\n11235 12234\n11247 12246\n11259 12258\n11271 12270\n11283 12282\n11295 12294\n11307 12306\n11319 12318\n11331 12330\n11343 12342\n11355 12354\n11367 12366\n11379 12378\n11391 12390\n11403 12402\n11415 12414\n11427 12426\n11439 12438\n11451 12450\n11463 12462\n11475 12474\n11487 12486\n11499 12498\n11511 12510\n11523 12522\n11535 12534\n11547 12546\n11559 12558\n11571 12570\n11583 12582\n11595 12594\n11607 12606\n11619 12618\n11631 12630\n11643 12642\n11655 12654\n11667 12666\n11679 12678\n11691 12690\n11703 12702\n11715 12714\n11727 12726\n11739 12738\n11751 12750\n11763 12762\n11775 12774\n11787 12786\n11799 12798\n11811 12810\n11823 12822\n11835 12834\n11847 12846\n11859 12858\n11871 12870\n11883 12882\n11895 12894\n11907 12906\n11919 12918\n11931 12930\n11943 12942\n11955 12954\n11967 12966\n11979 12978\n11991 12990\n12003 13002\n12015 13014\n12027 13026\n12039 13038\n12051 13050\n12063 13062\n12075 13074\n12087 13086\n12099 13098", "output": "3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3", "type": "stdin_stdout" }, { "fn_name": null, "input": "100000 1000\n3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3\n111 1110\n123 1122\n135 1134\n147 1146\n159 1158\n171 1170\n183 1182\n195 1194\n207 1206\n219 1218\n231 1230\n243 1242\n255 1254\n267 1266\n279 1278\n291 1290\n303 1302\n315 1314\n327 1326\n339 1338\n351 1350\n363 1362\n375 1374\n387 1386\n399 1398\n411 1410\n423 1422\n435 1434\n447 1446\n459 1458\n471 1470\n483 1482\n495 1494\n507 1506\n519 1518\n531 1530\n543 1542\n555 1554\n567 1566\n579 1578\n591 1590\n603 1602\n615 1614\n627 1626\n639 1638\n651 1650\n663 1662\n675 1674\n687 1686\n699 1698\n711 1710\n723 1722\n735 1734\n747 1746\n759 1758\n771 1770\n783 1782\n795 1794\n807 1806\n819 1818\n831 1830\n843 1842\n855 1854\n867 1866\n879 1878\n891 1890\n903 1902\n915 1914\n927 1926\n939 1938\n951 1950\n963 1962\n975 1974\n987 1986\n999 1998\n1011 2010\n1023 2022\n1035 2034\n1047 2046\n1059 2058\n1071 2070\n1083 2082\n1095 2094\n1107 2106\n1119 2118\n1131 2130\n1143 2142\n1155 2154\n1167 2166\n1179 2178\n1191 2190\n1203 2202\n1215 2214\n1227 2226\n1239 2238\n1251 2250\n1263 2262\n1275 2274\n1287 2286\n1299 2298\n1311 2310\n1323 2322\n1335 2334\n1347 2346\n1359 2358\n1371 2370\n1383 2382\n1395 2394\n1407 2406\n1419 2418\n1431 2430\n1443 2442\n1455 2454\n1467 2466\n1479 2478\n1491 2490\n1503 2502\n1515 2514\n1527 2526\n1539 2538\n1551 2550\n1563 2562\n1575 2574\n1587 2586\n1599 2598\n1611 2610\n1623 2622\n1635 2634\n1647 2646\n1659 2658\n1671 2670\n1683 2682\n1695 2694\n1707 2706\n1719 2718\n1731 2730\n1743 2742\n1755 2754\n1767 2766\n1779 2778\n1791 2790\n1803 2802\n1815 2814\n1827 2826\n1839 2838\n1851 2850\n1863 2862\n1875 2874\n1887 2886\n1899 2898\n1911 2910\n1923 2922\n1935 2934\n1947 2946\n1959 2958\n1971 2970\n1983 2982\n1995 2994\n2007 3006\n2019 3018\n2031 3030\n2043 3042\n2055 3054\n2067 3066\n2079 3078\n2091 3090\n2103 3102\n2115 3114\n2127 3126\n2139 3138\n2151 3150\n2163 3162\n2175 3174\n2187 3186\n2199 3198\n2211 3210\n2223 3222\n2235 3234\n2247 3246\n2259 3258\n2271 3270\n2283 3282\n2295 3294\n2307 3306\n2319 3318\n2331 3330\n2343 3342\n2355 3354\n2367 3366\n2379 3378\n2391 3390\n2403 3402\n2415 3414\n2427 3426\n2439 3438\n2451 3450\n2463 3462\n2475 3474\n2487 3486\n2499 3498\n2511 3510\n2523 3522\n2535 3534\n2547 3546\n2559 3558\n2571 3570\n2583 3582\n2595 3594\n2607 3606\n2619 3618\n2631 3630\n2643 3642\n2655 3654\n2667 3666\n2679 3678\n2691 3690\n2703 3702\n2715 3714\n2727 3726\n2739 3738\n2751 3750\n2763 3762\n2775 3774\n2787 3786\n2799 3798\n2811 3810\n2823 3822\n2835 3834\n2847 3846\n2859 3858\n2871 3870\n2883 3882\n2895 3894\n2907 3906\n2919 3918\n2931 3930\n2943 3942\n2955 3954\n2967 3966\n2979 3978\n2991 3990\n3003 4002\n3015 4014\n3027 4026\n3039 4038\n3051 4050\n3063 4062\n3075 4074\n3087 4086\n3099 4098\n3111 4110\n3123 4122\n3135 4134\n3147 4146\n3159 4158\n3171 4170\n3183 4182\n3195 4194\n3207 4206\n3219 4218\n3231 4230\n3243 4242\n3255 4254\n3267 4266\n3279 4278\n3291 4290\n3303 4302\n3315 4314\n3327 4326\n3339 4338\n3351 4350\n3363 4362\n3375 4374\n3387 4386\n3399 4398\n3411 4410\n3423 4422\n3435 4434\n3447 4446\n3459 4458\n3471 4470\n3483 4482\n3495 4494\n3507 4506\n3519 4518\n3531 4530\n3543 4542\n3555 4554\n3567 4566\n3579 4578\n3591 4590\n3603 4602\n3615 4614\n3627 4626\n3639 4638\n3651 4650\n3663 4662\n3675 4674\n3687 4686\n3699 4698\n3711 4710\n3723 4722\n3735 4734\n3747 4746\n3759 4758\n3771 4770\n3783 4782\n3795 4794\n3807 4806\n3819 4818\n3831 4830\n3843 4842\n3855 4854\n3867 4866\n3879 4878\n3891 4890\n3903 4902\n3915 4914\n3927 4926\n3939 4938\n3951 4950\n3963 4962\n3975 4974\n3987 4986\n3999 4998\n4011 5010\n4023 5022\n4035 5034\n4047 5046\n4059 5058\n4071 5070\n4083 5082\n4095 5094\n4107 5106\n4119 5118\n4131 5130\n4143 5142\n4155 5154\n4167 5166\n4179 5178\n4191 5190\n4203 5202\n4215 5214\n4227 5226\n4239 5238\n4251 5250\n4263 5262\n4275 5274\n4287 5286\n4299 5298\n4311 5310\n4323 5322\n4335 5334\n4347 5346\n4359 5358\n4371 5370\n4383 5382\n4395 5394\n4407 5406\n4419 5418\n4431 5430\n4443 5442\n4455 5454\n4467 5466\n4479 5478\n4491 5490\n4503 5502\n4515 5514\n4527 5526\n4539 5538\n4551 5550\n4563 5562\n4575 5574\n4587 5586\n4599 5598\n4611 5610\n4623 5622\n4635 5634\n4647 5646\n4659 5658\n4671 5670\n4683 5682\n4695 5694\n4707 5706\n4719 5718\n4731 5730\n4743 5742\n4755 5754\n4767 5766\n4779 5778\n4791 5790\n4803 5802\n4815 5814\n4827 5826\n4839 5838\n4851 5850\n4863 5862\n4875 5874\n4887 5886\n4899 5898\n4911 5910\n4923 5922\n4935 5934\n4947 5946\n4959 5958\n4971 5970\n4983 5982\n4995 5994\n5007 6006\n5019 6018\n5031 6030\n5043 6042\n5055 6054\n5067 6066\n5079 6078\n5091 6090\n5103 6102\n5115 6114\n5127 6126\n5139 6138\n5151 6150\n5163 6162\n5175 6174\n5187 6186\n5199 6198\n5211 6210\n5223 6222\n5235 6234\n5247 6246\n5259 6258\n5271 6270\n5283 6282\n5295 6294\n5307 6306\n5319 6318\n5331 6330\n5343 6342\n5355 6354\n5367 6366\n5379 6378\n5391 6390\n5403 6402\n5415 6414\n5427 6426\n5439 6438\n5451 6450\n5463 6462\n5475 6474\n5487 6486\n5499 6498\n5511 6510\n5523 6522\n5535 6534\n5547 6546\n5559 6558\n5571 6570\n5583 6582\n5595 6594\n5607 6606\n5619 6618\n5631 6630\n5643 6642\n5655 6654\n5667 6666\n5679 6678\n5691 6690\n5703 6702\n5715 6714\n5727 6726\n5739 6738\n5751 6750\n5763 6762\n5775 6774\n5787 6786\n5799 6798\n5811 6810\n5823 6822\n5835 6834\n5847 6846\n5859 6858\n5871 6870\n5883 6882\n5895 6894\n5907 6906\n5919 6918\n5931 6930\n5943 6942\n5955 6954\n5967 6966\n5979 6978\n5991 6990\n6003 7002\n6015 7014\n6027 7026\n6039 7038\n6051 7050\n6063 7062\n6075 7074\n6087 7086\n6099 7098\n6111 7110\n6123 7122\n6135 7134\n6147 7146\n6159 7158\n6171 7170\n6183 7182\n6195 7194\n6207 7206\n6219 7218\n6231 7230\n6243 7242\n6255 7254\n6267 7266\n6279 7278\n6291 7290\n6303 7302\n6315 7314\n6327 7326\n6339 7338\n6351 7350\n6363 7362\n6375 7374\n6387 7386\n6399 7398\n6411 7410\n6423 7422\n6435 7434\n6447 7446\n6459 7458\n6471 7470\n6483 7482\n6495 7494\n6507 7506\n6519 7518\n6531 7530\n6543 7542\n6555 7554\n6567 7566\n6579 7578\n6591 7590\n6603 7602\n6615 7614\n6627 7626\n6639 7638\n6651 7650\n6663 7662\n6675 7674\n6687 7686\n6699 7698\n6711 7710\n6723 7722\n6735 7734\n6747 7746\n6759 7758\n6771 7770\n6783 7782\n6795 7794\n6807 7806\n6819 7818\n6831 7830\n6843 7842\n6855 7854\n6867 7866\n6879 7878\n6891 7890\n6903 7902\n6915 7914\n6927 7926\n6939 7938\n6951 7950\n6963 7962\n6975 7974\n6987 7986\n6999 7998\n7011 8010\n7023 8022\n7035 8034\n7047 8046\n7059 8058\n7071 8070\n7083 8082\n7095 8094\n7107 8106\n7119 8118\n7131 8130\n7143 8142\n7155 8154\n7167 8166\n7179 8178\n7191 8190\n7203 8202\n7215 8214\n7227 8226\n7239 8238\n7251 8250\n7263 8262\n7275 8274\n7287 8286\n7299 8298\n7311 8310\n7323 8322\n7335 8334\n7347 8346\n7359 8358\n7371 8370\n7383 8382\n7395 8394\n7407 8406\n7419 8418\n7431 8430\n7443 8442\n7455 8454\n7467 8466\n7479 8478\n7491 8490\n7503 8502\n7515 8514\n7527 8526\n7539 8538\n7551 8550\n7563 8562\n7575 8574\n7587 8586\n7599 8598\n7611 8610\n7623 8622\n7635 8634\n7647 8646\n7659 8658\n7671 8670\n7683 8682\n7695 8694\n7707 8706\n7719 8718\n7731 8730\n7743 8742\n7755 8754\n7767 8766\n7779 8778\n7791 8790\n7803 8802\n7815 8814\n7827 8826\n7839 8838\n7851 8850\n7863 8862\n7875 8874\n7887 8886\n7899 8898\n7911 8910\n7923 8922\n7935 8934\n7947 8946\n7959 8958\n7971 8970\n7983 8982\n7995 8994\n8007 9006\n8019 9018\n8031 9030\n8043 9042\n8055 9054\n8067 9066\n8079 9078\n8091 9090\n8103 9102\n8115 9114\n8127 9126\n8139 9138\n8151 9150\n8163 9162\n8175 9174\n8187 9186\n8199 9198\n8211 9210\n8223 9222\n8235 9234\n8247 9246\n8259 9258\n8271 9270\n8283 9282\n8295 9294\n8307 9306\n8319 9318\n8331 9330\n8343 9342\n8355 9354\n8367 9366\n8379 9378\n8391 9390\n8403 9402\n8415 9414\n8427 9426\n8439 9438\n8451 9450\n8463 9462\n8475 9474\n8487 9486\n8499 9498\n8511 9510\n8523 9522\n8535 9534\n8547 9546\n8559 9558\n8571 9570\n8583 9582\n8595 9594\n8607 9606\n8619 9618\n8631 9630\n8643 9642\n8655 9654\n8667 9666\n8679 9678\n8691 9690\n8703 9702\n8715 9714\n8727 9726\n8739 9738\n8751 9750\n8763 9762\n8775 9774\n8787 9786\n8799 9798\n8811 9810\n8823 9822\n8835 9834\n8847 9846\n8859 9858\n8871 9870\n8883 9882\n8895 9894\n8907 9906\n8919 9918\n8931 9930\n8943 9942\n8955 9954\n8967 9966\n8979 9978\n8991 9990\n9003 10002\n9015 10014\n9027 10026\n9039 10038\n9051 10050\n9063 10062\n9075 10074\n9087 10086\n9099 10098\n9111 10110\n9123 10122\n9135 10134\n9147 10146\n9159 10158\n9171 10170\n9183 10182\n9195 10194\n9207 10206\n9219 10218\n9231 10230\n9243 10242\n9255 10254\n9267 10266\n9279 10278\n9291 10290\n9303 10302\n9315 10314\n9327 10326\n9339 10338\n9351 10350\n9363 10362\n9375 10374\n9387 10386\n9399 10398\n9411 10410\n9423 10422\n9435 10434\n9447 10446\n9459 10458\n9471 10470\n9483 10482\n9495 10494\n9507 10506\n9519 10518\n9531 10530\n9543 10542\n9555 10554\n9567 10566\n9579 10578\n9591 10590\n9603 10602\n9615 10614\n9627 10626\n9639 10638\n9651 10650\n9663 10662\n9675 10674\n9687 10686\n9699 10698\n9711 10710\n9723 10722\n9735 10734\n9747 10746\n9759 10758\n9771 10770\n9783 10782\n9795 10794\n9807 10806\n9819 10818\n9831 10830\n9843 10842\n9855 10854\n9867 10866\n9879 10878\n9891 10890\n9903 10902\n9915 10914\n9927 10926\n9939 10938\n9951 10950\n9963 10962\n9975 10974\n9987 10986\n9999 10998\n10011 11010\n10023 11022\n10035 11034\n10047 11046\n10059 11058\n10071 11070\n10083 11082\n10095 11094\n10107 11106\n10119 11118\n10131 11130\n10143 11142\n10155 11154\n10167 11166\n10179 11178\n10191 11190\n10203 11202\n10215 11214\n10227 11226\n10239 11238\n10251 11250\n10263 11262\n10275 11274\n10287 11286\n10299 11298\n10311 11310\n10323 11322\n10335 11334\n10347 11346\n10359 11358\n10371 11370\n10383 11382\n10395 11394\n10407 11406\n10419 11418\n10431 11430\n10443 11442\n10455 11454\n10467 11466\n10479 11478\n10491 11490\n10503 11502\n10515 11514\n10527 11526\n10539 11538\n10551 11550\n10563 11562\n10575 11574\n10587 11586\n10599 11598\n10611 11610\n10623 11622\n10635 11634\n10647 11646\n10659 11658\n10671 11670\n10683 11682\n10695 11694\n10707 11706\n10719 11718\n10731 11730\n10743 11742\n10755 11754\n10767 11766\n10779 11778\n10791 11790\n10803 11802\n10815 11814\n10827 11826\n10839 11838\n10851 11850\n10863 11862\n10875 11874\n10887 11886\n10899 11898\n10911 11910\n10923 11922\n10935 11934\n10947 11946\n10959 11958\n10971 11970\n10983 11982\n10995 11994\n11007 12006\n11019 12018\n11031 12030\n11043 12042\n11055 12054\n11067 12066\n11079 12078\n11091 12090\n11103 12102\n11115 12114\n11127 12126\n11139 12138\n11151 12150\n11163 12162\n11175 12174\n11187 12186\n11199 12198\n11211 12210\n11223 12222\n11235 12234\n11247 12246\n11259 12258\n11271 12270\n11283 12282\n11295 12294\n11307 12306\n11319 12318\n11331 12330\n11343 12342\n11355 12354\n11367 12366\n11379 12378\n11391 12390\n11403 12402\n11415 12414\n11427 12426\n11439 12438\n11451 12450\n11463 12462\n11475 12474\n11487 12486\n11499 12498\n11511 12510\n11523 12522\n11535 12534\n11547 12546\n11559 12558\n11571 12570\n11583 12582\n11595 12594\n11607 12606\n11619 12618\n11631 12630\n11643 12642\n11655 12654\n11667 12666\n11679 12678\n11691 12690\n11703 12702\n11715 12714\n11727 12726\n11739 12738\n11751 12750\n11763 12762\n11775 12774\n11787 12786\n11799 12798\n11811 12810\n11823 12822\n11835 12834\n11847 12846\n11859 12858\n11871 12870\n11883 12882\n11895 12894\n11907 12906\n11919 12918\n11931 12930\n11943 12942\n11955 12954\n11967 12966\n11979 12978\n11991 12990\n12003 13002\n12015 13014\n12027 13026\n12039 13038\n12051 13050\n12063 13062\n12075 13074\n12087 13086\n12099 13098", "output": "3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/sum-of-length3345/1
Solve the following coding problem using the programming language python: Given an array. Calculate the sum of lengths of contiguous subarrays having all distinct elements. Example 1: Input: N=3 arr[] = { 1,2,3 } Output: 10 Explanation: {1, 2, 3} is a subarray of length 3 with distinct elements. Total length of length three = 3. {1, 2}, {2, 3} are 2 subarray of length 2 with distinct elements. Total length of lengths two = 2 + 2 = 4 {1}, {2}, {3} are 3 subarrays of length 1 with distinct element. Total lengths of length one = 1 + 1 + 1 = 3 Sum of lengths = 3 + 4 + 3 = 10 Example 2: Input: N=1 arr[] = { 1 } Output: 1 Explanation: {1} is the only subarray with distinct elements of length 1. Your Task: You don't need to read input or print anything. Your task is to complete the function sumoflength() that takes array arr and integer N as input parameters and returns the sum of lengths of contiguous subarrays having all distinct elements. Expected Time Complexity: O(N). Expected Auxiliary Space: O(N). Constraints: 1 ≤ N ≤ 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def sumoflength(self,arr,n): ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def sumoflength(self, arr, n): store = set() count = 0 i = 0 for item in arr: while i < n and (not arr[i] in store): store.add(arr[i]) i += 1 count += len(store) * (len(store) + 1) // 2 store.remove(item) return count ```
vfc_134687
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/sum-of-length3345/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N=3\r\narr[] = { 1,2,3 }", "output": "10", "type": "stdin_stdout" }, { "fn_name": null, "input": "N=1\r\narr[] = { 1 }", "output": "1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/367/A
Solve the following coding problem using the programming language python: Sereja loves all sorts of algorithms. He has recently come up with a new algorithm, which receives a string as an input. Let's represent the input string of the algorithm as q = q_1q_2... q_{k}. The algorithm consists of two steps: Find any continuous subsequence (substring) of three characters of string q, which doesn't equal to either string "zyx", "xzy", "yxz". If q doesn't contain any such subsequence, terminate the algorithm, otherwise go to step 2. Rearrange the letters of the found subsequence randomly and go to step 1. Sereja thinks that the algorithm works correctly on string q if there is a non-zero probability that the algorithm will be terminated. But if the algorithm anyway will work for infinitely long on a string, then we consider the algorithm to work incorrectly on this string. Sereja wants to test his algorithm. For that, he has string s = s_1s_2... s_{n}, consisting of n characters. The boy conducts a series of m tests. As the i-th test, he sends substring s_{l}_{i}s_{l}_{i} + 1... s_{r}_{i} (1 ≤ l_{i} ≤ r_{i} ≤ n) to the algorithm input. Unfortunately, the implementation of his algorithm works too long, so Sereja asked you to help. For each test (l_{i}, r_{i}) determine if the algorithm works correctly on this test or not. -----Input----- The first line contains non-empty string s, its length (n) doesn't exceed 10^5. It is guaranteed that string s only contains characters: 'x', 'y', 'z'. The second line contains integer m (1 ≤ m ≤ 10^5) — the number of tests. Next m lines contain the tests. The i-th line contains a pair of integers l_{i}, r_{i} (1 ≤ l_{i} ≤ r_{i} ≤ n). -----Output----- For each test, print "YES" (without the quotes) if the algorithm works correctly on the corresponding test and "NO" (without the quotes) otherwise. -----Examples----- Input zyxxxxxxyyz 5 5 5 1 3 1 11 1 4 3 6 Output YES YES NO YES NO -----Note----- In the first example, in test one and two the algorithm will always be terminated in one step. In the fourth test you can get string "xzyx" on which the algorithm will terminate. In all other tests the algorithm doesn't work correctly. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): (l, xyz, res) = ([(0, 0, 0)], [0, 0, 0], []) for c in input(): xyz[ord(c) - 120] += 1 l.append(tuple(xyz)) for _ in range(int(input())): (a, b) = list(map(int, input().split())) if b - a > 1: xyz = [i - j for (i, j) in zip(l[b], l[a - 1])] res.append(('NO', 'YES')[max(xyz) - min(xyz) < 2]) else: res.append('YES') print('\n'.join(res)) def __starting_point(): main() __starting_point() ```
vfc_134689
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/367/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "zyxxxxxxyyz\n5\n5 5\n1 3\n1 11\n1 4\n3 6\n", "output": "YES\nYES\nNO\nYES\nNO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "yxzyzxzzxyyzzxxxzyyzzyzxxzxyzyyzxyzxyxxyzxyxzyzxyzxyyxzzzyzxyyxyzxxy\n10\n17 67\n6 35\n12 45\n56 56\n14 30\n25 54\n1 1\n46 54\n3 33\n19 40\n", "output": "NO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nYES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "xxxxyyxyyzzyxyxzxyzyxzyyyzyzzxxxxzyyzzzzyxxxxzzyzzyzx\n5\n4 4\n3 3\n1 24\n3 28\n18 39\n", "output": "YES\nYES\nNO\nNO\nNO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "yzxyzxyzxzxzyzxyzyzzzyxzyz\n9\n4 6\n2 7\n3 5\n14 24\n3 13\n2 24\n2 5\n2 14\n3 15\n", "output": "YES\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nNO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "zxyzxyzyyzxzzxyzxyzx\n15\n7 10\n17 17\n6 7\n8 14\n4 7\n11 18\n12 13\n1 1\n3 8\n1 1\n9 17\n4 4\n5 11\n3 15\n1 1\n", "output": "NO\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nYES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://atcoder.jp/contests/abc167/tasks/abc167_c
Solve the following coding problem using the programming language python: Takahashi, who is a novice in competitive programming, wants to learn M algorithms. Initially, his understanding level of each of the M algorithms is 0. Takahashi is visiting a bookstore, where he finds N books on algorithms. The i-th book (1\leq i\leq N) is sold for C_i yen (the currency of Japan). If he buys and reads it, his understanding level of the j-th algorithm will increase by A_{i,j} for each j (1\leq j\leq M). There is no other way to increase the understanding levels of the algorithms. Takahashi's objective is to make his understanding levels of all the M algorithms X or higher. Determine whether this objective is achievable. If it is achievable, find the minimum amount of money needed to achieve it. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python f = lambda : map(int, input().split()) (n, m, x) = f() (lc, ll) = ([], []) for _ in range(n): (c, *l) = f() lc += [c] ll += [l] a = 10 ** 9 for i in range(2 ** n): (lm, t) = ([0] * m, 0) for j in range(n): if i >> j & 1: for k in range(m): lm[k] += ll[j][k] t += lc[j] if all((s >= x for s in lm)): a = min(a, t) print([-1, a][a < 10 ** 9]) ```
vfc_134693
{ "difficulty": "easy", "memory_limit": "1024.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://atcoder.jp/contests/abc167/tasks/abc167_c", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 3 10\n60 2 2 4\n70 8 7 9\n50 2 3 9\n", "output": "120\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 3 10\n100 3 1 4\n100 1 5 9\n100 2 6 5\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "8 5 22\n100 3 7 5 3 1\n164 4 5 2 7 8\n334 7 2 7 2 9\n234 4 7 2 8 2\n541 5 4 3 3 6\n235 4 8 6 9 7\n394 3 6 1 6 2\n872 8 4 3 7 2\n", "output": "1067\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "11 12 29799\n31069 1476 2003 8569 2842 5037 3403 5272 1385 3219 8518 470 1539\n54638 6079 2090 8362 4939 3471 108 4080 4363 402 2790 1367 2320\n13866 2404 2018 7220 3184 3519 9237 2095 1534 2621 3770 4420 7174\n42995 2907 8325 5257 6477 3107 4335 3284 1028 1849 5321 9771 1123\n94164 332 7324 1596 6623 3955 5021 5687 16 6636 199 4815 6685\n30398 5917 2635 8491 5553 9348 1500 4664 3342 886 9439 9629 4012\n48251 1822 3775 9454 5891 812 4057 2522 2628 5619 4083 1416 3474\n8783 2911 4440 7253 7960 9998 8546 2783 2293 1124 157 3096 2576\n1919 6022 628 1900 6300 8480 7942 3145 8984 8499 9372 5039 6809\n98988 6988 9030 850 248 8223 9867 7477 4125 2053 3073 4617 2814\n39829 3292 8341 5589 7882 7998 2722 8445 102 5404 4339 1512 7940\n", "output": "464900\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "12 11 34203\n24515 7150 2848 7965 4930 3759 576 1065 8900 1787 8882 8420\n28650 8761 3488 5821 5136 5907 5258 844 824 3709 3128 7636\n75430 5768 2976 5964 2309 4630 4556 4918 5657 5807 4331 4438\n62434 9930 2739 9488 2700 9041 6546 4406 4080 7693 675 8638\n48521 4561 2887 8864 2969 1701 5140 993 4098 1973 2625 3299\n76651 1911 1692 3299 5963 494 9369 1070 4040 7164 4249 6716\n28617 3235 8958 8680 6648 5547 8276 7849 3057 2475 8333 2658\n25552 1126 191 2025 6940 4028 7016 4525 6588 5687 6358 3960\n85892 3791 5949 2539 5485 6344 9517 6150 1887 5862 2926 1491\n69328 7388 1097 7116 8694 8131 5328 114 7604 5646 4157 7122\n73040 1638 4241 4299 4866 3182 5610 1829 7007 5069 9515 109\n29237 6621 8454 129 2246 7505 8058 440 9678 461 5201 2301\n", "output": "627867\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: View Russian Translation One day Benny decides to miss lessons. But as she is a very good pig she will do her homework anyway. She doesn't know anything about the content of this lessons. Your task is to help her. The problem is following: you are given a right triangle with coordinates of vertices (0, 0), (0, a), (b, 0) and integer p. You may choose any value val and draw a vertical line x = val. After that let area(val) be the area of the part of triangle at the right side of this line. Your task is to find such minimal val that area(val) is not more than p% of the area of the given triangle. Input The first and the only one line contains three integers a, b and p. Output Output in a single line answer to the problem with two signs after decimal point. It is guaranteed that the answer+10^-6 and answer-10^-6 would produce the same rounded answer. Constraints 1 ≤ a, b ≤ 10^7 1 ≤ p < 100 1 ≤ a, b ≤ 10^3 holds for test cases worth 20% of the problem's score. SAMPLE INPUT 2 2 25 SAMPLE OUTPUT 1.00 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python # Hacker Earth # Problem Statement # Import libraries import sys import math import pdb def getOneLine(inFile): if inFile != "": return(inFile.readline().rstrip()) return(sys.stdin.readline().rstrip()) def main(): # Toggle mode of input # inFile = open("input5.txt", 'r') inFile = "" # number of cases input = getOneLine(inFile) input = input.split(" ") a = int(input[0]) b = int(input[1]) p = int(input[2]) / 100.0 requiredArea = 0.5 * a * b * p result = b - math.sqrt(2*requiredArea * b / a) result = round(result, 2) print(("%.2f" % result)) main() # Simple test case # RRULDL ```
vfc_134697
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4742834 4535295 21", "output": "258544.99", "type": "stdin_stdout" }, { "fn_name": null, "input": "6165574 5038223 90", "output": "0.28", "type": "stdin_stdout" }, { "fn_name": null, "input": "279 81 31", "output": "33985.19", "type": "stdin_stdout" }, { "fn_name": null, "input": "4666515 6451293 1", "output": "2032202.17", "type": "stdin_stdout" }, { "fn_name": null, "input": "5947083 343633 89", "output": "11.27", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/858/E
Solve the following coding problem using the programming language python: The All-Berland National Olympiad in Informatics has just ended! Now Vladimir wants to upload the contest from the Olympiad as a gym to a popular Codehorses website. Unfortunately, the archive with Olympiad's data is a mess. For example, the files with tests are named arbitrary without any logic. Vladimir wants to rename the files with tests so that their names are distinct integers starting from 1 without any gaps, namely, "1", "2", ..., "n', where n is the total number of tests. Some of the files contain tests from statements (examples), while others contain regular tests. It is possible that there are no examples, and it is possible that all tests are examples. Vladimir wants to rename the files so that the examples are the first several tests, all all the next files contain regular tests only. The only operation Vladimir can perform is the "move" command. Vladimir wants to write a script file, each of the lines in which is "move file_1 file_2", that means that the file "file_1" is to be renamed to "file_2". If there is a file "file_2" at the moment of this line being run, then this file is to be rewritten. After the line "move file_1 file_2" the file "file_1" doesn't exist, but there is a file "file_2" with content equal to the content of "file_1" before the "move" command. Help Vladimir to write the script file with the minimum possible number of lines so that after this script is run: all examples are the first several tests having filenames "1", "2", ..., "e", where e is the total number of examples; all other files contain regular tests with filenames "e + 1", "e + 2", ..., "n", where n is the total number of all tests. -----Input----- The first line contains single integer n (1 ≤ n ≤ 10^5) — the number of files with tests. n lines follow, each describing a file with test. Each line has a form of "name_i type_i", where "name_i" is the filename, and "type_i" equals "1", if the i-th file contains an example test, and "0" if it contains a regular test. Filenames of each file are strings of digits and small English letters with length from 1 to 6 characters. The filenames are guaranteed to be distinct. -----Output----- In the first line print the minimum number of lines in Vladimir's script file. After that print the script file, each line should be "move file_1 file_2", where "file_1" is an existing at the moment of this line being run filename, and "file_2" — is a string of digits and small English letters with length from 1 to 6. -----Examples----- Input 5 01 0 2 1 2extra 0 3 1 99 0 Output 4 move 3 1 move 01 5 move 2extra 4 move 99 3 Input 2 1 0 2 1 Output 3 move 1 3 move 2 1 move 3 2 Input 5 1 0 11 1 111 0 1111 1 11111 0 Output 5 move 1 5 move 11 1 move 1111 2 move 111 4 move 11111 3 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) t = [1] + [0] * n (b, a) = d = ([], []) (h, s) = ([], []) for i in range(n): (f, k) = input().split() d[int(k)].append(f) m = len(a) for i in a: if i.isdigit() and i[0] != '0': j = int(i) if 0 < j <= m: t[j] = 1 elif m < j <= n: t[j] = -1 else: s.append(i) else: s.append(i) for i in b: if i.isdigit() and i[0] != '0': j = int(i) if m < j <= n: t[j] = 1 elif 0 < j <= m: t[j] = -1 else: s.append(i) else: s.append(i) x = [j for j in range(1, m + 1) if t[j] < 0] y = [j for j in range(m + 1, n + 1) if t[j] < 0] u = [j for j in range(1, m + 1) if not t[j]] v = [j for j in range(m + 1, n + 1) if not t[j]] if not s and (x or y): s = ['0'] if y: i = y.pop() v.append(i) else: i = x.pop() u.append(i) h.append(str(i) + ' 0') t[i] = 0 while x or y: if v and x: i = x.pop() j = v.pop() t[j] = 1 h.append(str(i) + ' ' + str(j)) u.append(i) else: (u, v, x, y) = (v, u, y, x) k = 1 for j in s: while t[k] == 1: k += 1 h.append(j + ' ' + str(k)) k += 1 d = '\nmove ' print(str(len(h)) + d + d.join(h) if h else 0) ```
vfc_134701
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/858/E", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n01 0\n2 1\n2extra 0\n3 1\n99 0\n", "output": "4\nmove 3 1\nmove 01 5\nmove 2extra 4\nmove 99 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1 0\n2 1\n", "output": "3\nmove 1 07x45l\nmove 2 1\nmove 07x45l 2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1 0\n11 1\n111 0\n1111 1\n11111 0\n", "output": "5\nmove 1 5\nmove 11 1\nmove 1111 2\nmove 111 4\nmove 11111 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\nir7oz8 1\nvj4v5t 1\nkwkahb 1\nj5s8o1 0\n", "output": "4\nmove ir7oz8 1\nmove vj4v5t 2\nmove kwkahb 3\nmove j5s8o1 4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SUMANDOR
Solve the following coding problem using the programming language python: Chef has two integers X and S. He is interested in sequences of non-negative integers such that the sum of their elements is S and the [bitwise OR] of their elements is X. Chef would like to know the shortest possible length such a sequence can have. Formally, find the smallest positive integer N such that there exists a sequence A = [A_{1}, A_{2}, \ldots, A_{N}] satisfying the following conditions: Each A_{i} is a non-negative integer A_{1} + A_{2} + \ldots + A_{N} = S A_{1} \vee A_{2} \vee \ldots \vee A_{N} = X where \vee denotes the bitwise OR operation. If there does not exist any sequence which satisfies the above conditions, output -1. Otherwise, output the minimum possible length of such a sequence. ------ Input Format ------ - The first line of input contains a single integer T, denoting the number of test cases. The description of T test cases follows. - Each test case consists of a single line of input, containing two space-separated integers X and S — the required bitwise OR and sum, respectively. ------ Output Format ------ For each test case, output a single line containing one integer — the shortest possible length of such a sequence, or -1 if no such sequence exists. ------ Constraints ------ $1 ≤ T ≤ 1000$ $1 ≤ X ≤ S ≤ 10^{9}$ ------ subtasks ------ Subtask #1 (100 points): Original constraints ----- Sample Input 1 ------ 3 13 23 6 13 1 25 ----- Sample Output 1 ------ 3 -1 25 ----- explanation 1 ------ Test Case $1$: One of the valid arrays of length $3$ is $[9,9,5]$. It can be shown that there is no valid array with length $< 3$. Test Case $2$: There does not exist any sequence whose sum is $13$ and bitwise OR is $6$. Test Case $3$: The valid array of minimum length contains $25$ ones. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def binarize(num): powers = [] power = 0 while num > 0: bit = num % 2 num = num // 2 if bit: powers.append(power) power += 1 return list(reversed(powers)) def doit(x, s): if s < x: return -1 origs = s repeats = 1 s = s - x origs = s binx = binarize(x) mintimes = 0 for power in binx: val = 2 ** power times = s // val s = s % val mintimes = max(mintimes, times) if s != 0: return -1 return optimize(binx, origs, -1, mintimes) + repeats def possible(binx, s, mpw): for power in binx: val = 2 ** power times = min(s // val, mpw) s = s - val * times if s != 0: return 0 return 1 def optimize(binx, s, mn, mx): mid = (mn + mx) // 2 if mid == mn: return mx if possible(binx, s, mid): return optimize(binx, s, mn, mid) else: return optimize(binx, s, mid, mx) t = int(input()) for tt in range(t): (x, s) = [int(xx) for xx in input().split(' ')] print(str(doit(x, s))) ```
vfc_134705
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SUMANDOR", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n13 23\n6 13\n1 25\n", "output": "3\n-1\n25\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/UNICOLOR
Solve the following coding problem using the programming language python: Read problem statements in [Russian], [Bengali], and [Mandarin Chinese] as well. In a school, there are $C$ clubs (numbered $1$ through $C$) that students can participate in. Each student can be in zero, one or multiple clubs. Tomorrow, there is a school assembly and $N$ students (numbered $1$ through $N$) will be standing in a line. Each student should wear one of $M$ single-colour shirts provided by the school. The only restriction is that for each club, students in this club must wear shirts with the same colour (possibly the same colour for multiple clubs). Students in the same clubs try to stand near each other. Formally, for each club $i$, you are given $x_{i}$ segments — let's denote them by $[l_{1},r_{1}],[l_{2},r_{2}], \ldots, [l_{x_{i}},r_{x_{i}}]$, where $1 ≤ l_{1} ≤ r_{1} < l_{2} ≤ r_{2} < \ldots < l_{x_{i}} ≤ r_{x_{i}} ≤ N$ — such for each valid $j$, the students $l_{j}, l_{j}+1, \ldots, r_{j}$ belong to this club. Determine the number of ways in which the students can choose the colours of their shirts. Two ways to choose colours are considered different if there is at least one student wearing a shirt with a different colour. Since this number can be very large, compute it modulo $998,244,353$. ------ Input ------ The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. The first line of each test case contains three space-separated integers $C$, $N$ and $M$. Then, $2C$ lines follow. For each valid $i$, the $(2i-1)$-th of these lines contains a single integer $x_{i}$ and the $2i$-th line contains $2 \cdot x_{i}$ space-separated integers $l_{1},r_{1},l_{2},r_{2}, \ldots, l_{x_{i}},r_{x_{i}}$. ------ Output ------ For each test case, print a single line containing one integer — the number of ways to choose colours modulo $998,244,353$. ------ Constraints ------ $1 ≤ T ≤ 10$ $1 ≤ N, M ≤ 10^{9}$ $1 ≤ C ≤ 1,000$ $1 ≤ x_{i} ≤ 100$ for each valid $i$ ------ Subtasks ------ Subtask #1 (30 points): $N ≤ 1,000$ Subtask #2 (70 points): original constraints ----- Sample Input 1 ------ 1 2 6 3 2 1 2 5 6 1 4 6 ----- Sample Output 1 ------ 9 ----- explanation 1 ------ Example case 1: Students $5$ and $6$ are in both clubs, so these two clubs must wear shirts with the same colour. Student $3$ does not participate in any club and can wear a shirt with any colour out of the three available options. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from sys import stdin input = stdin.readline mod = 998244353 class dsu: def __init__(self, n): self.p = [0] * (n + 1) self.rank = [0] * (n + 1) for i in range(1, n + 1): self.p[i] = i def find(self, node): if self.p[node] == node: return node self.p[node] = self.find(self.p[node]) return self.p[node] def union(self, u, v): (u, v) = (self.find(u), self.find(v)) if self.rank[u] == self.rank[v]: self.p[v] = u self.rank[u] += 1 elif self.rank[u] > self.rank[v]: self.p[v] = u else: self.p[u] = v def answer(): s = [] for i in range(1, c + 1): x = int(input()) b = list(map(int, input().split())) for j in range(0, 2 * x, 2): (l, r) = (b[j], b[j + 1]) s.append([l, 1, i]) s.append([r + 1, -1, i]) s.sort() (stack, extra, prev) = ([], 0, 1) a = dsu(c) for i in range(len(s)): if s[i][1] == -1: prev = s[i][0] stack.pop() continue if len(stack): a.union(stack[-1][2], s[i][2]) else: extra += s[i][0] - prev a.union(s[i][2], s[i][2]) stack.append(s[i]) extra += n - prev + 1 comp = set() for i in range(1, c + 1): comp.add(a.find(i)) total = len(comp) ans = pow(m, total + extra, mod) return ans for T in range(int(input())): (c, n, m) = map(int, input().split()) print(answer()) ```
vfc_134709
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/UNICOLOR", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n2 6 3\n2\n1 2 5 6\n1\n4 6", "output": "9", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/delete-a-node-from-bst/1
Solve the following coding problem using the programming language python: Given a Binary Search Tree and a node value X. Delete the node with the given value X from the BST. If no node with value x exists, then do not make any change. Example 1: Input: 2 / \ 1 3 X = 12 Output: 1 2 3 Explanation: In the given input there is no node with value 12 , so the tree will remain same. Example 2: Input: 1 \ 2 \ 8 / \ 5 11 / \ / \ 4 7 9 12 X = 9 Output: 1 2 4 5 7 8 11 12 Explanation: In the given input tree after deleting 9 will be 1 \ 2 \ 8 / \ 5 11 / \ \ 4 7 12 Your Task: You don't need to read input or print anything. Your task is to complete the function deleteNode() which takes two arguments. The first being the root of the tree, and an integer 'X' denoting the node value to be deleted from the BST. Return the root of the BST after deleting the node with value X. Do not make any update if there's no node with value X present in the BST. Note: The generated output will be the inorder traversal of the modified tree. Expected Time Complexity: O(Height of the BST). Expected Auxiliary Space: O(Height of the BST). Constraints: 1 <= N <= 10^{5} Write your solution by modifying this code: ```python #User function Template for python3 #Function to delete a node from BST. def deleteNode(root, X): # code here. ``` Your solution should implemented in the function "deleteNode". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def deleteNode(root, X): if not root: return None if X < root.data: root.left = deleteNode(root.left, X) elif X > root.data: root.right = deleteNode(root.right, X) else: if root.left is None and root.right is None: return None elif not root.left: current = root.right root = None return current elif not root.right: current = root.left root = None return current succParent = root succ = root.right while succ.left != None: succParent = succ succ = succ.left if succParent != root: succParent.left = succ.right else: succParent.right = succ.right root.data = succ.data return root ```
vfc_134713
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/delete-a-node-from-bst/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "deleteNode", "input": "2\n / \\\n 1 3\nX = 12", "output": "1 2 3", "type": "function_call" }, { "fn_name": "deleteNode", "input": "1\n \\\n 2\n \\\n 8 \n / \\\n 5 11\n / \\ / \\\n 4 7 9 12\nX = 9", "output": "1 2 4 5 7 8 11 12", "type": "function_call" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/199/B
Solve the following coding problem using the programming language python: A renowned abstract artist Sasha, drawing inspiration from nowhere, decided to paint a picture entitled "Special Olympics". He justly thought that, if the regular Olympic games have five rings, then the Special ones will do with exactly two rings just fine. Let us remind you that a ring is a region located between two concentric circles with radii r and R (r < R). These radii are called internal and external, respectively. Concentric circles are circles with centers located at the same point. Soon a white canvas, which can be considered as an infinite Cartesian plane, had two perfect rings, painted with solid black paint. As Sasha is very impulsive, the rings could have different radii and sizes, they intersect and overlap with each other in any way. We know only one thing for sure: the centers of the pair of rings are not the same. When Sasha got tired and fell into a deep sleep, a girl called Ilona came into the room and wanted to cut a circle for the sake of good memories. To make the circle beautiful, she decided to cut along the contour. We'll consider a contour to be a continuous closed line through which there is transition from one color to another (see notes for clarification). If the contour takes the form of a circle, then the result will be cutting out a circle, which Iona wants. But the girl's inquisitive mathematical mind does not rest: how many ways are there to cut a circle out of the canvas? Input The input contains two lines. Each line has four space-separated integers xi, yi, ri, Ri, that describe the i-th ring; xi and yi are coordinates of the ring's center, ri and Ri are the internal and external radii of the ring correspondingly ( - 100 ≤ xi, yi ≤ 100; 1 ≤ ri < Ri ≤ 100). It is guaranteed that the centers of the rings do not coinside. Output A single integer — the number of ways to cut out a circle from the canvas. Examples Input 60 60 45 55 80 80 8 32 Output 1 Input 60 60 45 55 80 60 15 25 Output 4 Input 50 50 35 45 90 50 35 45 Output 0 Note Figures for test samples are given below. The possible cuts are marked with red dotted line. <image> <image> <image> The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import os import sys from io import BytesIO, IOBase from collections import Counter 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)) def gcd(a, b): if a == 0: return b return gcd(b % a, a) mod = int(1000000000.0) + 7 def lcm(a, b): return a * b / gcd(a, b) def power(k, n): if n == 0: return 1 if n % 2: return power(k, n - 1) * k % mod t = power(k, n // 2) return t * t % mod def intersect(a, b): d2 = (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2 r1r22 = (a[2] + b[2]) ** 2 dr1r22 = (a[2] - b[2]) ** 2 return dr1r22 < d2 < r1r22 def lies(a, b, c): d2 = (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2 return max(0, b[2] - a[2]) ** 2 < d2 <= max(0, c[2] - a[2]) ** 2 def main(): a = [] (x, y, r, R) = map(int, input().split()) a.append([x, y, r]) a.append([x, y, R]) (x, y, r, R) = map(int, input().split()) a.append([x, y, r]) a.append([x, y, R]) ans = 0 for i in range(4): f = 0 for j in range(4): if i != j and intersect(a[i], a[j]): f = 1 if i < 2: if lies(a[i], a[2], a[3]): f = 1 elif lies(a[i], a[0], a[1]): f = 1 if f == 0: ans += 1 print(ans) return main() ```
vfc_134714
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/199/B", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "70 92 20 40\n99 92 9 49\n", "output": "0", "type": "stdin_stdout" }, { "fn_name": null, "input": "0 73 20 40\n59 73 39 100\n", "output": "1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/225/E
Solve the following coding problem using the programming language python: Consider the following equation: <image> where sign [a] represents the integer part of number a. Let's find all integer z (z > 0), for which this equation is unsolvable in positive integers. The phrase "unsolvable in positive integers" means that there are no such positive integers x and y (x, y > 0), for which the given above equation holds. Let's write out all such z in the increasing order: z1, z2, z3, and so on (zi < zi + 1). Your task is: given the number n, find the number zn. Input The first line contains a single integer n (1 ≤ n ≤ 40). Output Print a single integer — the number zn modulo 1000000007 (109 + 7). It is guaranteed that the answer exists. Examples Input 1 Output 1 Input 2 Output 3 Input 3 Output 15 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python print([0, 1, 3, 15, 63, 4095, 65535, 262143, 73741816, 536396503, 140130950, 487761805, 319908070, 106681874, 373391776, 317758023, 191994803, 416292236, 110940209, 599412198, 383601260, 910358878, 532737550, 348927936, 923450985, 470083777, 642578561, 428308066, 485739298, 419990027, 287292016, 202484167, 389339971, 848994100, 273206869, 853092282, 411696552, 876153853, 90046024, 828945523, 697988359][int(input())]) ```
vfc_134722
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/225/E", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "14\n", "output": " 373391776\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "38\n", "output": " 90046024\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "25\n", "output": " 470083777\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "22\n", "output": " 532737550\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Problem statement There is a rational number sequence $ X_0, X_1, X_2, ..., X_N $. Each term is defined as follows. 1. $ X_0 = 0 $ 2. $ X_i = X_ {i-1} $ $ op_i $ $ Y_i $ ($ 1 \ leq i \ leq N $). However, $ op_i $ is $ + $, $ − $, $ × $, $ ÷ $ Either. Find $ X_N $. Constraint * $ 1 \ leq N \ leq 10 ^ 5 $ * $ 1 \ leq o_i \ leq 4 $ * $ -10 ^ 6 \ leq Y_i \ leq 10 ^ 6 $ * If $ o_i = 4 $, then $ Y_i \ neq 0 $ * $ X_N $ is an integer greater than or equal to $ -2 ^ {31} $ and less than $ 2 ^ {31} $. input Input follows the following format. All given numbers are integers. $ N $ $ o_1 $ $ Y_1 $ $ o_2 $ $ Y_2 $ $ ... $ $ o_N $ $ Y_N $ When $ o_i = 1 $, $ op_i $ is +, when $ o_i = 2 $, $ op_i $ is −, when $ o_i = 3 $, $ op_i $ is ×, and when $ o_i = 4 $, $ op_i $ is ÷. output Print the value of $ X_N $ on one line. Example Input 4 1 1 4 2 2 4 3 4 Output -14 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python m = 10000000019 x = 0 def mod(x): return (x % m + m) % m def pow(x, a): ret = 1 while a: if a & 1: ret = mod(x * ret) x = mod(x * x) a >>= 1 return ret for _ in range(int(input())): (o, y) = map(int, input().split()) if o == 1: x = (x + y) % m elif o == 2: x = (x - y) % m elif o == 3: x = mod(x * y) else: x = mod(x * pow(y, m - 2)) print(x if x < 1 << 31 else x - m) ```
vfc_134726
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n0 1\n4 2\n2 4\n3 4", "output": "-16\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n0 1\n4 2\n2 1\n3 4", "output": "-4\n", "type": "stdin_stdout" } ] }