pax_global_header 0000666 0000000 0000000 00000000064 13314727572 0014525 g ustar 00root root 0000000 0000000 52 comment=54a3548680291f888b70b9e7c81c6d9b4fe7c86b
Turing-0.11-beta/ 0000775 0000000 0000000 00000000000 13314727572 0013627 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/.gitignore 0000664 0000000 0000000 00000000726 13314727572 0015624 0 ustar 00root root 0000000 0000000 # C++ objects and libs
*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib
# Qt-es
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
*build-*
# QtCreator
*.autosave
# QtCtreator Qml
*.qmlproject.user
*.qmlproject.user.*
# QtCtreator CMake
CMakeLists.txt.user*
__pycache__
*.pyc
.idea
.vs
dist
build
src/editor_backend.spec
editor_backend
turing
*.gz
*.zip
src/turing.spec
.DS_Store
# emacs
*~
Turing-0.11-beta/CONTRIBUTING.md 0000664 0000000 0000000 00000002560 13314727572 0016063 0 ustar 00root root 0000000 0000000 # Contributing to Turing
## Code
just make good code
follow pep8 and everything will be good
## Translation
Translators must use Qt Linguist. It can be obtained by installing the Qt toolkit.
### Editing an existing language
Just open the .ts file in Linguist and change what needs to be changed.
### Adding a new language
First, create a new .ts file in /src/lang/ using the following template:
|
/ `OU` | OR / Union | Number, Boolean, List |
| `XOR` | Exclusive OR / Exclusive union | Number, Boolean, List |
### Unary operators
| Symbol | Operator | Types |
|--------|----------|-------|
| `-` | Negate | Number, List |
| `NON` | Invert | Boolean |
The numbers and booleans are treated the same way as in **plain Python**. In other words, booleans can be treated as numbers (`False` becomes 0 and `True` becomes 1), and numbers can be treated as booleans (0 becomes `False` and everything else becomes `True).
If **strict mode** is enabled, operators can only be used with operands of **identical type**, and **implicit number-boolean casts** are disabled. The `c_bool` and `c_num` functions can then be used for that purpose.
## Function library
The engine provides many functions that can be used with almost all value types.
In the following table, a type name followed by a star (*) means that the function accepts a variable argument list of the specified self.
#### Example
The `average` function accepts either List(Number) or Number*. Thus, it can be used either with a list object: `average(myList)` or with varargs: `average(1, 2, 3)`.
| Name | Parameters | Description |
|------|------------|-------------|
| |**Basic**| |
|`abs`|
|
/ `OU` | OR / Union | Number, Boolean, List |
| `XOR` | Exclusive OR / Exclusive union | Number, Boolean, List |
### Unary operators
| Symbol | Operator | Types |
|--------|----------|-------|
| `-` | Negate | Number, List |
| `NON` | Invert | Boolean |
The numbers and booleans are treated the same way as in **plain Python**. In other words, booleans can be treated as numbers (`False` becomes 0 and `True` becomes 1), and numbers can be treated as booleans (0 becomes `False` and everything else becomes `True).
If **strict mode** is enabled, operators can only be used with operands of **identical type**, and **implicit number-boolean casts** are disabled. The `c_bool` and `c_num` functions can then be used for that purpose.
## Function library
The engine provides many functions that can be used with almost all value types.
In the following table, a type name followed by a star (*) means that the function accepts a variable argument list of the specified self.
#### Example
The `average` function accepts either List(Number) or Number*. Thus, it can be used either with a list object: `average(myList)` or with varargs: `average(1, 2, 3)`.
| Name | Parameters | Description |
|------|------------|-------------|
{{{funcdoc}}}
Useful (?) constants are also provided, with the maximum supported precision.
| Name | Approximated value | Description |
|------|-------------------:|-------------|
{{{constdoc}}}
Turing-0.11-beta/docs/index.md 0000664 0000000 0000000 00000000103 13314727572 0016202 0 ustar 00root root 0000000 0000000 # Turing
## Documentation
- [Expression parser](expression.html)
Turing-0.11-beta/examples/ 0000775 0000000 0000000 00000000000 13314727572 0015445 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/examples/adv_babylonian.tr 0000664 0000000 0000000 00000002013 13314727572 0020760 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Finds the square root of a number using the Babylonian algorithm'), InputStmt(IdentifierNode('a'), None), AssignStmt(IdentifierNode('x'), NumberNode(1)), AssignStmt(IdentifierNode('y'), IdentifierNode('a')), AssignStmt(IdentifierNode('prec'), NumberNode(1e-08)), WhileStmt(BinOpNode(CallNode(IdentifierNode('abs'), [BinOpNode(IdentifierNode('y'), IdentifierNode('x'), '-')]), IdentifierNode('prec'), '>'), [AssignStmt(IdentifierNode('x'), BinOpNode(BinOpNode(IdentifierNode('x'), IdentifierNode('y'), '+'), NumberNode(2), '/')), AssignStmt(IdentifierNode('y'), BinOpNode(IdentifierNode('a'), IdentifierNode('x'), '/'))]), DisplayStmt(CallNode(IdentifierNode('round'), [CallNode(IdentifierNode('min'), [ListNode([IdentifierNode('x'), IdentifierNode('y')])]), IdentifierNode('prec')]), False), DisplayStmt(StringNode(' ≤ √a ≤ '), False), DisplayStmt(CallNode(IdentifierNode('round'), [CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('x'), IdentifierNode('y')])]), IdentifierNode('prec')]), True)]) Turing-0.11-beta/examples/adv_dichotomy.tr 0000664 0000000 0000000 00000002167 13314727572 0020653 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Solves Func(x)=0 on the interval [a, b]'), AssignStmt(IdentifierNode('Func'), LambdaNode(['x'], BinOpNode(BinOpNode(IdentifierNode('x'), NumberNode(1), '-'), BinOpNode(NumberNode(1), IdentifierNode('x'), '/'), '-'))), AssignStmt(IdentifierNode('prec'), NumberNode(1e-08)), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), WhileStmt(BinOpNode(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-'), IdentifierNode('prec'), '>'), [AssignStmt(IdentifierNode('m'), BinOpNode(BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '+'), NumberNode(2), '/')), IfStmt(BinOpNode(BinOpNode(CallNode(IdentifierNode('Func'), [IdentifierNode('m')]), CallNode(IdentifierNode('Func'), [IdentifierNode('b')]), '*'), NumberNode(0), '>'), [AssignStmt(IdentifierNode('b'), IdentifierNode('m'))]), ElseStmt([AssignStmt(IdentifierNode('a'), IdentifierNode('m'))])]), DisplayStmt(CallNode(IdentifierNode('round'), [IdentifierNode('a'), IdentifierNode('prec')]), False), DisplayStmt(StringNode(' < x < '), False), DisplayStmt(CallNode(IdentifierNode('round'), [IdentifierNode('b'), IdentifierNode('prec')]), True)]) Turing-0.11-beta/examples/adv_gradient.py 0000664 0000000 0000000 00000000663 13314727572 0020453 0 ustar 00root root 0000000 0000000 import colorsys
import numpy as np
g_window(-5, 5, -2, 2)
step = 0.2
size = 0.1
func = lambda a: 1.5 * cos(a) * cos(0.5 * a)
for x in np.arange(-5, 5, step):
(r, g, b) = colorsys.hsv_to_rgb((x + 5) / 10, 1.0, 1.0)
r = int(255 * r)
g = int(255 * g)
b = int(255 * b)
clr = ('#%02x%02x%02x') % (r, g, b)
for xx in np.arange(x, x + step + size, size):
y = func(xx)
g_line(xx, y, xx, 0, clr) Turing-0.11-beta/examples/adv_hangman.py 0000664 0000000 0000000 00000001272 13314727572 0020264 0 ustar 00root root 0000000 0000000 words = ["HELLO", "COMPUTER", "KEYBOARD", "INTERNET", "CORRECT", "HORSE", "BATTERY", "STAPLE"]
word = choice(words)
user = ["_" for _ in word]
tries = 10
while True:
if tries <= 0:
print("You lose!")
print("The word was: " + word)
break
print(" ".join(user))
if user == list(word):
print("You win!")
break
print("%d tries remaining" % tries)
current = input("? ")[:1].upper()
if not current:
continue
for i in range(len(user)):
if word[i] == current:
user[i] = current
if current not in word:
tries -= 1
print("\n")
Turing-0.11-beta/examples/adv_hangman.tr 0000664 0000000 0000000 00000003734 13314727572 0020266 0 ustar 00root root 0000000 0000000 BlockStmt([AssignStmt(IdentifierNode('words'), ListNode([StringNode('HELLO'), StringNode('COMPUTER'), StringNode('KEYBOARD'), StringNode('INTERNET'), StringNode('CORRECT'), StringNode('HORSE'), StringNode('BATTERY'), StringNode('STAPLE')])), AssignStmt(IdentifierNode('word'), CallNode(IdentifierNode('choice'), [IdentifierNode('words')])), AssignStmt(IdentifierNode('user'), BinOpNode(ListNode([StringNode('_')]), CallNode(IdentifierNode('len'), [IdentifierNode('word')]), '*')), AssignStmt(IdentifierNode('tries'), NumberNode(10)), WhileStmt(NumberNode(True), [IfStmt(BinOpNode(IdentifierNode('tries'), NumberNode(0), '<='), [DisplayStmt(StringNode('You lose!'), True), DisplayStmt(BinOpNode(StringNode('The word was: '), IdentifierNode('word'), '+'), True), BreakStmt()]), DisplayStmt(CallNode(IdentifierNode('c_str'), [IdentifierNode('user')]), True), IfStmt(BinOpNode(IdentifierNode('user'), CallNode(IdentifierNode('c_list'), [IdentifierNode('word')]), '=='), [DisplayStmt(StringNode('You win!'), True), BreakStmt()]), DisplayStmt(BinOpNode(IdentifierNode('tries'), StringNode(' tries remaining'), '+'), True), InputStmt(IdentifierNode('current'), StringNode('? '), True), IfStmt(BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('current')]), NumberNode(1), '!='), [ContinueStmt()]), AssignStmt(IdentifierNode('found'), NumberNode(False)), ForStmt('i', NumberNode(0), BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('user')]), NumberNode(1), '-'), [IfStmt(BinOpNode(ArrayAccessNode(IdentifierNode('word'), IdentifierNode('i')), CallNode(IdentifierNode('upper'), [IdentifierNode('current')]), '=='), [AssignStmt(ArrayAccessNode(IdentifierNode('user'), IdentifierNode('i')), ArrayAccessNode(IdentifierNode('word'), IdentifierNode('i'))), AssignStmt(IdentifierNode('found'), NumberNode(True))])], None), IfStmt(UnaryOpNode(IdentifierNode('found'), 'NOT'), [AssignStmt(IdentifierNode('tries'), BinOpNode(IdentifierNode('tries'), NumberNode(1), '-'))]), DisplayStmt(StringNode(' '), True)])]) Turing-0.11-beta/examples/adv_hilbert.py 0000664 0000000 0000000 00000001422 13314727572 0020301 0 ustar 00root root 0000000 0000000 # http://www.fundza.com/algorithmic/space_filling/hilbert/basics/index.html
last_x, last_y = -1, -1
def add_point(x, y):
global last_x, last_y
if last_x != -1:
g_line(last_x, last_y, x, y)
last_x, last_y = x, y
def hilbert(x0, y0, xi, xj, yi, yj, n):
if n <= 0:
X = x0 + (xi + yi)/2
Y = y0 + (xj + yj)/2
add_point(X, Y)
else:
hilbert(x0, y0, yi/2, yj/2, xi/2, xj/2, n - 1)
hilbert(x0 + xi/2, y0 + xj/2, xi/2, xj/2, yi/2, yj/2, n - 1)
hilbert(x0 + xi/2 + yi/2, y0 + xj/2 + yj/2, xi/2, xj/2, yi/2, yj/2, n - 1)
hilbert(x0 + xi/2 + yi, y0 + xj/2 + yj, -yi/2,-yj/2,-xi/2,-xj/2, n - 1)
g_window(0, 1, 0, 1)
hilbert(0, 0, 1, 0, 0, 1, 3) Turing-0.11-beta/examples/adv_integ_trapezoidal.tr 0000664 0000000 0000000 00000002266 13314727572 0022360 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Approximates the integral of f(x) from a to b using the trapezoidal rule.'), AssignStmt(IdentifierNode('f'), LambdaNode(['x'], BinOpNode(CallNode(IdentifierNode('sin'), [IdentifierNode('x')]), NumberNode(2), '^'))), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), AssignStmt(IdentifierNode('count'), NumberNode(10)), AssignStmt(IdentifierNode('result'), NumberNode(0)), AssignStmt(IdentifierNode('step'), BinOpNode(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-'), IdentifierNode('count'), '/')), ForStmt('i', NumberNode(0), BinOpNode(IdentifierNode('count'), NumberNode(1), '-'), [AssignStmt(IdentifierNode('result'), BinOpNode(IdentifierNode('result'), BinOpNode(BinOpNode(IdentifierNode('step'), NumberNode(2), '/'), BinOpNode(CallNode(IdentifierNode('f'), [BinOpNode(IdentifierNode('a'), BinOpNode(IdentifierNode('i'), IdentifierNode('step'), '*'), '+')]), CallNode(IdentifierNode('f'), [BinOpNode(IdentifierNode('a'), BinOpNode(BinOpNode(IdentifierNode('i'), NumberNode(1), '+'), IdentifierNode('step'), '*'), '+')]), '+'), '*'), '+'))], None), DisplayStmt(BinOpNode(StringNode('∫a→b f(x) dx = '), IdentifierNode('result'), '+'), True)]) Turing-0.11-beta/examples/adv_montecarlo.tr 0000664 0000000 0000000 00000001560 13314727572 0021013 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Approximates the value of Pi using the Monte-Carlo algorithm'), AssignStmt(IdentifierNode('sum'), NumberNode(0)), AssignStmt(IdentifierNode('steps'), NumberNode(10000)), ForStmt('i', NumberNode(1), IdentifierNode('steps'), [AssignStmt(IdentifierNode('x'), CallNode(IdentifierNode('random'), [])), AssignStmt(IdentifierNode('y'), CallNode(IdentifierNode('random'), [])), IfStmt(BinOpNode(BinOpNode(BinOpNode(IdentifierNode('x'), IdentifierNode('x'), '*'), BinOpNode(IdentifierNode('y'), IdentifierNode('y'), '*'), '+'), NumberNode(1), '<'), [AssignStmt(IdentifierNode('sum'), BinOpNode(IdentifierNode('sum'), NumberNode(1), '+'))])], None), AssignStmt(IdentifierNode('approx_pi'), BinOpNode(BinOpNode(NumberNode(4), IdentifierNode('sum'), '*'), IdentifierNode('steps'), '/')), DisplayStmt(BinOpNode(StringNode('Pi ~= '), IdentifierNode('approx_pi'), '+'))]) Turing-0.11-beta/examples/adv_pendu.py 0000664 0000000 0000000 00000001202 13314727572 0017757 0 ustar 00root root 0000000 0000000 mots = [
"BONJOUR",
"ORDINATEUR",
"CLAVIER",
"SOURIS",
"CHEVAL",
"OISEAU",
"CHIEN"
]
mot = choix(mots)
saisi = ["_"] * taille(mot)
essais = 10
while True:
if essais <= 0:
print("Vous avez perdu !")
print("Le mot était : " + mot)
break
print(" ".join(saisi))
if saisi == list(mot):
print("Vous avez gagné !")
break
print("%d essais restants" % essais)
lettre = maju(input("? "))
for i in range(taille(mot)):
if mot[i] == lettre:
saisi[i] = lettre
if lettre not in mot:
essais -= 1
print(" ")
Turing-0.11-beta/examples/adv_sierpinsky.py 0000664 0000000 0000000 00000000243 13314727572 0021050 0 ustar 00root root 0000000 0000000 g_window(-10, 100, 100, -10)
order = 5
size = 2 ** order
for y in range(size):
for x in range(size):
if x & y == 0:
g_point(x * 2, y * 2) Turing-0.11-beta/examples/basic_JustePrix.tr 0000664 0000000 0000000 00000001643 13314727572 0021116 0 ustar 00root root 0000000 0000000 BlockStmt([AssignStmt(IdentifierNode('Prix'), CallNode(IdentifierNode('randint'), [NumberNode(0), NumberNode(1000)])), AssignStmt(IdentifierNode('X'), UnaryOpNode(NumberNode(1), '-')), AssignStmt(IdentifierNode('Essais'), NumberNode(0)), WhileStmt(BinOpNode(IdentifierNode('X'), IdentifierNode('Prix'), '!='), [InputStmt(IdentifierNode('X'), None, False), IfStmt(BinOpNode(IdentifierNode('X'), IdentifierNode('Prix'), '<'), [DisplayStmt(StringNode(' '), True), DisplayStmt(StringNode("C'est trop bas !!"), True), DisplayStmt(StringNode(' '), True)]), ElseStmt([DisplayStmt(StringNode(' '), True), DisplayStmt(StringNode("C'est trop haut !"), True), DisplayStmt(StringNode(' '), True)]), AssignStmt(IdentifierNode('Essais'), BinOpNode(IdentifierNode('Essais'), NumberNode(1), '+'))]), DisplayStmt(BinOpNode(BinOpNode(StringNode("C'est gagné WAY WAY WAY, en "), IdentifierNode('Essais'), '+'), StringNode(' essais !'), '+'), True)]) Turing-0.11-beta/examples/basic_bubble_sort.tr 0000664 0000000 0000000 00000003442 13314727572 0021462 0 ustar 00root root 0000000 0000000 BlockStmt([AssignStmt(IdentifierNode('lst'), ListNode([NumberNode(5), NumberNode(1), NumberNode(4), NumberNode(2), NumberNode(8), NumberNode(2), NumberNode(7), NumberNode(1), NumberNode(8), NumberNode(3), NumberNode(6), NumberNode(4), NumberNode(9), NumberNode(5), NumberNode(2), NumberNode(4)])), GWindowStmt(NumberNode(0), CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), CallNode(IdentifierNode('min'), [IdentifierNode('lst')]), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), NumberNode(0), NumberNode(0)), ForStmt('i', BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), NumberNode(1), '-'), NumberNode(1), [ForStmt('j', NumberNode(0), BinOpNode(IdentifierNode('i'), NumberNode(1), '-'), [GClearStmt(), IfStmt(BinOpNode(ArrayAccessNode(IdentifierNode('lst'), BinOpNode(IdentifierNode('j'), NumberNode(1), '+')), ArrayAccessNode(IdentifierNode('lst'), IdentifierNode('j')), '<'), [CallStmt(IdentifierNode('swap'), [IdentifierNode('lst'), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), IdentifierNode('j')]), GLineStmt(IdentifierNode('j'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), StringNode('red'))]), ElseStmt([GLineStmt(IdentifierNode('j'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), StringNode('green'))]), ForStmt('i', NumberNode(0), BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), NumberNode(1), '-'), [GLineStmt(IdentifierNode('i'), NumberNode(0), IdentifierNode('i'), ArrayAccessNode(IdentifierNode('lst'), IdentifierNode('i')), StringNode('black'))], None), SleepStmt(NumberNode(0.3))], None)], None)]) Turing-0.11-beta/examples/basic_fibo.tr 0000664 0000000 0000000 00000001022 13314727572 0020067 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Calculates the n-th Fibonacci number using a recursive function'), FuncStmt('fibo', ['n'], [IfStmt(BinOpNode(IdentifierNode('n'), NumberNode(1), '<='), [ReturnStmt(IdentifierNode('n'))]), ReturnStmt(BinOpNode(CallNode(IdentifierNode('fibo'), [BinOpNode(IdentifierNode('n'), NumberNode(1), '-')]), CallNode(IdentifierNode('fibo'), [BinOpNode(IdentifierNode('n'), NumberNode(2), '-')]), '+'))]), InputStmt(IdentifierNode('num'), None), DisplayStmt(CallNode(IdentifierNode('fibo'), [IdentifierNode('num')]))]) Turing-0.11-beta/examples/basic_gcd.tr 0000664 0000000 0000000 00000001733 13314727572 0017716 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Recursively calculates the GCD of two numbers'), FuncStmt('gcd', ['a', 'b'], [IfStmt(BinOpNode(IdentifierNode('a'), NumberNode(0), '=='), [ReturnStmt(IdentifierNode('b'))]), IfStmt(BinOpNode(IdentifierNode('b'), NumberNode(0), '=='), [ReturnStmt(IdentifierNode('a'))]), IfStmt(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '<='), [ReturnStmt(CallNode(IdentifierNode('gcd'), [BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '-'), IdentifierNode('b')]))]), ReturnStmt(CallNode(IdentifierNode('gcd'), [IdentifierNode('a'), BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-')]))]), InputStmt(IdentifierNode('num1'), None), InputStmt(IdentifierNode('num2'), None), DisplayStmt(BinOpNode(BinOpNode(BinOpNode(BinOpNode(BinOpNode(StringNode('GCD of '), IdentifierNode('num1'), '+'), StringNode(' and '), '+'), IdentifierNode('num2'), '+'), StringNode(' is '), '+'), CallNode(IdentifierNode('gcd'), [IdentifierNode('num1'), IdentifierNode('num2')]), '+'))]) Turing-0.11-beta/examples/basic_sum.tr 0000664 0000000 0000000 00000000612 13314727572 0017760 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Displays the sum of all integers from 1 to user-inputted number'), AssignStmt(IdentifierNode('s'), NumberNode(0)), InputStmt(IdentifierNode('n'), None), ForStmt('i', NumberNode(1), IdentifierNode('n'), [AssignStmt(IdentifierNode('s'), BinOpNode(IdentifierNode('s'), IdentifierNode('i'), '+'))], None), DisplayStmt(StringNode('Sum: ')), DisplayStmt(IdentifierNode('s'))]) Turing-0.11-beta/examples/med_quadratic.tr 0000664 0000000 0000000 00000004064 13314727572 0020622 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Finds the roots of a second-degree polynomial using the quadratic formula.'), DisplayStmt(StringNode('f(x) = ax² + bx + c'), True), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), InputStmt(IdentifierNode('c'), None), AssignStmt(IdentifierNode('D'), BinOpNode(BinOpNode(IdentifierNode('b'), NumberNode(2), '^'), BinOpNode(BinOpNode(NumberNode(4), IdentifierNode('a'), '*'), IdentifierNode('c'), '*'), '-')), DisplayStmt(BinOpNode(StringNode('Δ = '), IdentifierNode('D'), '+'), True), IfStmt(BinOpNode(IdentifierNode('a'), NumberNode(0), '!='), [AssignStmt(IdentifierNode('alpha'), BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), AssignStmt(IdentifierNode('beta'), BinOpNode(BinOpNode(IdentifierNode('D'), NumberNode(4), '/'), IdentifierNode('a'), '*')), DisplayStmt(BinOpNode(StringNode('α = '), IdentifierNode('alpha'), '+'), True), DisplayStmt(BinOpNode(StringNode('β = '), IdentifierNode('beta'), '+'), True)]), IfStmt(BinOpNode(IdentifierNode('D'), NumberNode(0), '<'), [DisplayStmt(StringNode('No real roots'), True)]), ElseStmt([IfStmt(BinOpNode(IdentifierNode('D'), NumberNode(0), '=='), [AssignStmt(IdentifierNode('x0'), BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), DisplayStmt(BinOpNode(StringNode('Unique real root - x0 = '), IdentifierNode('x0'), '+'), True)]), ElseStmt([AssignStmt(IdentifierNode('x1'), BinOpNode(BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), CallNode(IdentifierNode('sqrt'), [IdentifierNode('D')]), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), AssignStmt(IdentifierNode('x2'), BinOpNode(BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), CallNode(IdentifierNode('sqrt'), [IdentifierNode('D')]), '+'), NumberNode(2), '/'), IdentifierNode('a'), '*')), DisplayStmt(StringNode('Two real roots:'), True), DisplayStmt(BinOpNode(StringNode('x1 = '), IdentifierNode('x1'), '+'), True), DisplayStmt(BinOpNode(StringNode('x2 = '), IdentifierNode('x2'), '+'), True)])])]) Turing-0.11-beta/examples/med_wiggle.tr 0000664 0000000 0000000 00000001101 13314727572 0020110 0 ustar 00root root 0000000 0000000 BlockStmt([CommentStmt('Such wiggle wow'), ForStmt('i', NumberNode(1), NumberNode(100), [GClearStmt(), GFuncStmt('x', BinOpNode(BinOpNode(IdentifierNode('i'), CallNode(IdentifierNode('cos'), [BinOpNode(IdentifierNode('x'), BinOpNode(IdentifierNode('i'), NumberNode(3), '/'), '+')]), '*'), NumberNode(25), '/'), UnaryOpNode(NumberNode(7), '-'), NumberNode(7), NumberNode(0.1), StringNode('red')), GWindowStmt(UnaryOpNode(NumberNode(10), '-'), NumberNode(10), UnaryOpNode(NumberNode(10), '-'), NumberNode(10), NumberNode(0), NumberNode(0)), SleepStmt(NumberNode(0.001))], None)]) Turing-0.11-beta/examples/toutatice/ 0000775 0000000 0000000 00000000000 13314727572 0017446 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/examples/toutatice/deux_contre_un.tr 0000664 0000000 0000000 00000001411 13314727572 0023033 0 ustar 00root root 0000000 0000000 BlockStmt([AssignStmt(IdentifierNode('C'), NumberNode(0)), InputStmt(IdentifierNode('N'), None), ForStmt('i', NumberNode(1), IdentifierNode('N'), [AssignStmt(IdentifierNode('DR1'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), AssignStmt(IdentifierNode('DR2'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), AssignStmt(IdentifierNode('DB'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), IfStmt(BinOpNode(CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('DR1'), IdentifierNode('DR2')])]), IdentifierNode('DB'), '>'), [AssignStmt(IdentifierNode('C'), BinOpNode(IdentifierNode('C'), NumberNode(1), '+'))])], None), DisplayStmt(BinOpNode(IdentifierNode('C'), StringNode(' victoires'), '+'), True)]) Turing-0.11-beta/examples/toutatice/epargne.tr 0000664 0000000 0000000 00000001354 13314727572 0021441 0 ustar 00root root 0000000 0000000 BlockStmt([AssignStmt(IdentifierNode('debut'), NumberNode(2009)), AssignStmt(IdentifierNode('initiale'), NumberNode(1500)), AssignStmt(IdentifierNode('taux'), NumberNode(2.25)), InputStmt(IdentifierNode('annee'), None), AssignStmt(IdentifierNode('solde'), BinOpNode(IdentifierNode('initiale'), BinOpNode(BinOpNode(NumberNode(1), BinOpNode(IdentifierNode('taux'), NumberNode(100), '/'), '+'), BinOpNode(IdentifierNode('annee'), IdentifierNode('debut'), '-'), '^'), '*')), DisplayStmt(BinOpNode(BinOpNode(BinOpNode(BinOpNode(StringNode('En '), CallNode(IdentifierNode('str'), [IdentifierNode('annee')]), '+'), StringNode(', le solde sera de '), '+'), CallNode(IdentifierNode('str'), [IdentifierNode('solde')]), '+'), StringNode(' €'), '+'), True)]) Turing-0.11-beta/examples/toutatice/monte_carlo.tr 0000664 0000000 0000000 00000002163 13314727572 0022321 0 ustar 00root root 0000000 0000000 BlockStmt([GWindowStmt(NumberNode(0), NumberNode(1), NumberNode(0), NumberNode(1), NumberNode(1), NumberNode(1)), InputStmt(IdentifierNode('N'), None), AssignStmt(IdentifierNode('compteur'), NumberNode(0)), ForStmt('i', NumberNode(1), IdentifierNode('N'), [AssignStmt(IdentifierNode('x'), CallNode(IdentifierNode('alea'), [])), AssignStmt(IdentifierNode('y'), CallNode(IdentifierNode('alea'), [])), IfStmt(BinOpNode(CallNode(IdentifierNode('hypot'), [IdentifierNode('x'), IdentifierNode('y')]), NumberNode(1), '<='), [GPointStmt(IdentifierNode('x'), IdentifierNode('y'), StringNode('red')), AssignStmt(IdentifierNode('compteur'), BinOpNode(IdentifierNode('compteur'), NumberNode(1), '+'))]), ElseStmt([GPointStmt(IdentifierNode('x'), IdentifierNode('y'), StringNode('blue'))])], None), AssignStmt(IdentifierNode('F'), BinOpNode(IdentifierNode('compteur'), IdentifierNode('N'), '/')), DisplayStmt(BinOpNode(StringNode('La proportion de points rouges est : '), IdentifierNode('F'), '+'), True), DisplayStmt(BinOpNode(StringNode('Pi vaut donc 4 × F soit approximativement '), BinOpNode(NumberNode(4), IdentifierNode('F'), '*'), '+'), True)]) Turing-0.11-beta/examples/toutatice/orthogonalite_1.tr 0000664 0000000 0000000 00000001455 13314727572 0023120 0 ustar 00root root 0000000 0000000 BlockStmt([InputStmt(IdentifierNode('xa'), None), InputStmt(IdentifierNode('ya'), None), InputStmt(IdentifierNode('xb'), None), InputStmt(IdentifierNode('yb'), None), InputStmt(IdentifierNode('xc'), None), InputStmt(IdentifierNode('yc'), None), AssignStmt(IdentifierNode('m1'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('ya'), '-'), BinOpNode(IdentifierNode('xb'), IdentifierNode('xa'), '-'), '/')), AssignStmt(IdentifierNode('m2'), BinOpNode(BinOpNode(IdentifierNode('yc'), IdentifierNode('ya'), '-'), BinOpNode(IdentifierNode('xc'), IdentifierNode('xa'), '-'), '/')), IfStmt(BinOpNode(IdentifierNode('m1'), IdentifierNode('m2'), '=='), [DisplayStmt(StringNode('Les points A, B et C sont alignés.'), True)]), ElseStmt([DisplayStmt(StringNode('Les droites (AB) et (AC) sont sécantes.'), True)])]) Turing-0.11-beta/examples/toutatice/orthogonalite_2.tr 0000664 0000000 0000000 00000002413 13314727572 0023114 0 ustar 00root root 0000000 0000000 BlockStmt([InputStmt(IdentifierNode('xa'), None), InputStmt(IdentifierNode('ya'), None), InputStmt(IdentifierNode('xb'), None), InputStmt(IdentifierNode('yb'), None), InputStmt(IdentifierNode('xc'), None), InputStmt(IdentifierNode('yc'), None), AssignStmt(IdentifierNode('c'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xb'), IdentifierNode('xa'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('ya'), '-'), NumberNode(2), '^'), '+')), AssignStmt(IdentifierNode('a'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xb'), IdentifierNode('xc'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('yc'), '-'), NumberNode(2), '^'), '+')), AssignStmt(IdentifierNode('b'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xc'), IdentifierNode('xa'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yc'), IdentifierNode('ya'), '-'), NumberNode(2), '^'), '+')), IfStmt(BinOpNode(BinOpNode(BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '+'), IdentifierNode('c'), '+'), BinOpNode(NumberNode(2), CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('a'), IdentifierNode('b'), IdentifierNode('c')])]), '*'), '=='), [DisplayStmt(StringNode('oui'), False)]), ElseStmt([DisplayStmt(StringNode('non'), False)])]) Turing-0.11-beta/examples2/ 0000775 0000000 0000000 00000000000 13314727572 0015527 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/examples2/closures.tr 0000664 0000000 0000000 00000000631 13314727572 0017735 0 ustar 00root root 0000000 0000000 BlockStmt([
FuncStmt("sayHello2", ["name"], [
AssignStmt(parse("text"), parse("\"Hello \" + name")),
FuncStmt("say", [], [
DisplayStmt(parse("text"))
]),
ReturnStmt(parse("say"))
]),
AssignStmt(parse("say2"), parse("sayHello2(\"Bob\")")),
CallStmt(parse("say2"), [])
]) Turing-0.11-beta/examples2/fizzbuzz.tr 0000664 0000000 0000000 00000001270 13314727572 0017773 0 ustar 00root root 0000000 0000000 BlockStmt([
ForStmt("i", parse("1"), parse("16"), [
IfStmt(parse("i % 15 == 0"), [
DisplayStmt(parse("\"FizzBuzz\""))
]),
ElseStmt([
IfStmt(parse("i % 3 == 0"), [
DisplayStmt(parse("\"Fizz\""))
]),
ElseStmt([
IfStmt(parse("i % 5 == 0"), [
DisplayStmt(parse("\"Buzz\""))
]),
ElseStmt([
DisplayStmt(parse("i"))
])
])
]),
])
]) Turing-0.11-beta/examples2/functions.tr 0000664 0000000 0000000 00000000426 13314727572 0020110 0 ustar 00root root 0000000 0000000 BlockStmt([
FuncStmt("f1", ["n"], [
FuncStmt("f2", ["n"], [
ReturnStmt(parse("{m}({n}(m*n))(n)"))
]),
ReturnStmt(parse("f2(n)"))
]),
DisplayStmt(parse("f1(3)(4)"))
]) Turing-0.11-beta/examples2/nested.tr 0000664 0000000 0000000 00000000316 13314727572 0017360 0 ustar 00root root 0000000 0000000 BlockStmt([
ForStmt("i", parse("1"), parse("3"), [
ForStmt("i", parse("1"), parse("3"), [
DisplayStmt(parse("i"))
])
])
]) Turing-0.11-beta/examples2/sum.tr 0000664 0000000 0000000 00000000435 13314727572 0016704 0 ustar 00root root 0000000 0000000 BlockStmt([
AssignStmt(parse("sum"), parse("0")),
InputStmt(parse("N")),
ForStmt("i", parse("1"), parse("N"), [
AssignStmt(parse("sum"), parse("sum + i"))
]),
DisplayStmt(parse("\"Result=\" + sum"))
]) Turing-0.11-beta/examples2/what.tr 0000664 0000000 0000000 00000001576 13314727572 0017052 0 ustar 00root root 0000000 0000000 BlockStmt([
AssignStmt(parse("i"), parse("42")),
ForStmt("i", parse("1"), parse("10"), [
IfStmt(parse("1"), [
IfStmt(parse("i % 2"), [
ContinueStmt()
]),
IfStmt(parse("i > 5"), [
FuncStmt("fibo", ["n"], [
IfStmt(parse("n <= 1"), [
ReturnStmt(parse("n"))
]),
ReturnStmt(parse("fibo(n-1)+fibo(n-2)"))
]),
DisplayStmt(parse("map(fibo, [5, 7, 9])")),
DisplayStmt(parse("i")),
BreakStmt()
]),
DisplayStmt(parse("i")),
])
]),
DisplayStmt(parse("i"))
]) Turing-0.11-beta/gen-arc.bat 0000664 0000000 0000000 00000000011 13314727572 0015623 0 ustar 00root root 0000000 0000000 @echo off Turing-0.11-beta/gen-arc.sh 0000664 0000000 0000000 00000000204 13314727572 0015473 0 ustar 00root root 0000000 0000000 #!/bin/bash
version=$(grep -oP '__version__ = "[^\d]*\K[^"]+' src/main.py)
tar -cvzf Turing-$version-nix64.tar.gz examples turing
Turing-0.11-beta/pyqode/ 0000775 0000000 0000000 00000000000 13314727572 0015130 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/ 0000775 0000000 0000000 00000000000 13314727572 0016060 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/__init__.py 0000664 0000000 0000000 00000001276 13314727572 0020177 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*-
"""
The core package contains the core components needed for writing a pyqode based
application. It is the "de facto" requirement for any pyqode extension.
It contains the base classes for both the backend and the frontend and provides
a series of modes and panels that might be useful for any kind of code editor
widget, i.e. pyqode.core is a generic code editor widget.
"""
import logging
__version__ = '2.11.0'
logging.addLevelName(1, "PYQODEDEBUGCOMM")
logging.addLevelName(5, "PYQODEDEBUG")
try:
# check if application code is using gettext
_('')
except NameError:
# install a null translation
import gettext
gettext.NullTranslations().install()
Turing-0.11-beta/pyqode/core/_designer_plugins/ 0000775 0000000 0000000 00000000000 13314727572 0021560 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/_designer_plugins/__init__.py 0000664 0000000 0000000 00000002600 13314727572 0023667 0 ustar 00root root 0000000 0000000 """
This packages contains the various qt designer plugins
"""
from pyqode.qt import QtDesigner
class WidgetPlugin(QtDesigner.QPyDesignerCustomWidgetPlugin):
"""
Base class for writing a designer plugins.
To write a plugin, inherit from this class and define implement at least:
- klass()
- objectName()
"""
def __init__(self, parent=None):
super(WidgetPlugin, self).__init__(parent=parent)
self.initialized = False
print(self.name(), self.includeFile(), self.objectName())
def klass(self):
"""
Returns the classname of the widget
"""
raise NotImplementedError()
def initialize(self, form_editor):
self.initialized = True
def isInitialized(self):
return self.initialized
def isContainer(self):
return False
def icon(self):
return None
def domXml(self):
return ('%s
Please, choose another character encoding and try again.
")) self.label.setText(_("Character Encoding:")) from pyqode.core.widgets.encodings import EncodingsComboBox Turing-0.11-beta/pyqode/core/_forms/dlg_goto_line_ui.py 0000664 0000000 0000000 00000005312 13314727572 0023222 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_goto_line.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(277, 126) self.gridLayout = QtWidgets.QGridLayout(Dialog) self.gridLayout.setObjectName("gridLayout") self.formLayout = QtWidgets.QFormLayout() self.formLayout.setFieldGrowthPolicy(QtWidgets.QFormLayout.AllNonFixedFieldsGrow) self.formLayout.setObjectName("formLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label) self.lblCurrentLine = QtWidgets.QLabel(Dialog) self.lblCurrentLine.setObjectName("lblCurrentLine") self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.lblCurrentLine) self.label_3 = QtWidgets.QLabel(Dialog) self.label_3.setObjectName("label_3") self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_3) self.label_4 = QtWidgets.QLabel(Dialog) self.label_4.setObjectName("label_4") self.formLayout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_4) self.lblLineCount = QtWidgets.QLabel(Dialog) self.lblLineCount.setObjectName("lblLineCount") self.formLayout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.lblLineCount) self.spinBox = QtWidgets.QSpinBox(Dialog) self.spinBox.setObjectName("spinBox") self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.spinBox) self.gridLayout.addLayout(self.formLayout, 0, 0, 1, 1) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 1) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Go to line")) self.label.setText(_("You are here:")) self.lblCurrentLine.setText(_("1")) self.label_3.setText(_("You want to go:")) self.label_4.setText(_("You can\'t go further than:")) self.lblLineCount.setText(_("1")) Turing-0.11-beta/pyqode/core/_forms/dlg_preferred_encodings_editor_ui.py 0000664 0000000 0000000 00000013712 13314727572 0026623 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_preferred_encodings_editor.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(827, 600) Dialog.setMinimumSize(QtCore.QSize(700, 600)) self.verticalLayout_2 = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout_2.setObjectName("verticalLayout_2") self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setContentsMargins(0, -1, 0, -1) self.horizontalLayout.setObjectName("horizontalLayout") self.groupBox = QtWidgets.QGroupBox(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.groupBox.sizePolicy().hasHeightForWidth()) self.groupBox.setSizePolicy(sizePolicy) self.groupBox.setObjectName("groupBox") self.gridLayout = QtWidgets.QGridLayout(self.groupBox) self.gridLayout.setObjectName("gridLayout") self.tableWidgetAvailable = QtWidgets.QTableWidget(self.groupBox) self.tableWidgetAvailable.setObjectName("tableWidgetAvailable") self.tableWidgetAvailable.setColumnCount(0) self.tableWidgetAvailable.setRowCount(0) self.tableWidgetAvailable.horizontalHeader().setDefaultSectionSize(150) self.tableWidgetAvailable.horizontalHeader().setSortIndicatorShown(True) self.tableWidgetAvailable.horizontalHeader().setStretchLastSection(True) self.gridLayout.addWidget(self.tableWidgetAvailable, 0, 1, 1, 1) self.horizontalLayout.addWidget(self.groupBox) self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setContentsMargins(0, -1, -1, -1) self.verticalLayout.setObjectName("verticalLayout") spacerItem = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.line = QtWidgets.QFrame(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.line.sizePolicy().hasHeightForWidth()) self.line.setSizePolicy(sizePolicy) self.line.setFrameShape(QtWidgets.QFrame.VLine) self.line.setFrameShadow(QtWidgets.QFrame.Sunken) self.line.setObjectName("line") self.verticalLayout.addWidget(self.line) self.pushButtonAdd = QtWidgets.QPushButton(Dialog) self.pushButtonAdd.setText("") icon = QtGui.QIcon.fromTheme("go-next") self.pushButtonAdd.setIcon(icon) self.pushButtonAdd.setObjectName("pushButtonAdd") self.verticalLayout.addWidget(self.pushButtonAdd) self.pushButtonRemove = QtWidgets.QPushButton(Dialog) self.pushButtonRemove.setText("") icon = QtGui.QIcon.fromTheme("go-previous") self.pushButtonRemove.setIcon(icon) self.pushButtonRemove.setObjectName("pushButtonRemove") self.verticalLayout.addWidget(self.pushButtonRemove) self.line_2 = QtWidgets.QFrame(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.line_2.sizePolicy().hasHeightForWidth()) self.line_2.setSizePolicy(sizePolicy) self.line_2.setFrameShape(QtWidgets.QFrame.VLine) self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken) self.line_2.setObjectName("line_2") self.verticalLayout.addWidget(self.line_2) spacerItem1 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem1) self.horizontalLayout.addLayout(self.verticalLayout) self.groupBox_2 = QtWidgets.QGroupBox(Dialog) self.groupBox_2.setObjectName("groupBox_2") self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox_2) self.gridLayout_2.setObjectName("gridLayout_2") self.tableWidgetPreferred = QtWidgets.QTableWidget(self.groupBox_2) self.tableWidgetPreferred.setObjectName("tableWidgetPreferred") self.tableWidgetPreferred.setColumnCount(0) self.tableWidgetPreferred.setRowCount(0) self.tableWidgetPreferred.horizontalHeader().setDefaultSectionSize(150) self.tableWidgetPreferred.horizontalHeader().setSortIndicatorShown(True) self.tableWidgetPreferred.horizontalHeader().setStretchLastSection(True) self.gridLayout_2.addWidget(self.tableWidgetPreferred, 0, 1, 1, 1) self.horizontalLayout.addWidget(self.groupBox_2) self.verticalLayout_2.addLayout(self.horizontalLayout) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout_2.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.rejected.connect(Dialog.reject) self.buttonBox.accepted.connect(Dialog.accept) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Edit preferred encodings")) self.groupBox.setTitle(_("Available encodings")) self.pushButtonAdd.setToolTip(_("Add selected encoding to the list of preferred encodings")) self.groupBox_2.setTitle(_("Preferred encodings")) from . import pyqode_core_rc Turing-0.11-beta/pyqode/core/_forms/dlg_unsaved_files_ui.py 0000664 0000000 0000000 00000003172 13314727572 0024074 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_unsaved_files.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(717, 301) self.verticalLayout = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout.setObjectName("verticalLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.listWidget = QtWidgets.QListWidget(Dialog) self.listWidget.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) self.listWidget.setObjectName("listWidget") self.verticalLayout.addWidget(self.listWidget) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Discard|QtWidgets.QDialogButtonBox.SaveAll) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Dialog")) self.label.setText(_("The following files have unsaved changes:")) Turing-0.11-beta/pyqode/core/_forms/pnl_encoding_ui.py 0000664 0000000 0000000 00000006631 13314727572 0023061 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/pnl_encoding.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(964, 169) self.horizontalLayout_2 = QtWidgets.QHBoxLayout(Form) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.lblDescription = QtWidgets.QLabel(Form) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblDescription.sizePolicy().hasHeightForWidth()) self.lblDescription.setSizePolicy(sizePolicy) self.lblDescription.setWordWrap(True) self.lblDescription.setObjectName("lblDescription") self.verticalLayout.addWidget(self.lblDescription) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(Form) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.comboBoxEncodings = EncodingsComboBox(Form) self.comboBoxEncodings.setMinimumSize(QtCore.QSize(250, 0)) self.comboBoxEncodings.setEditable(False) self.comboBoxEncodings.setObjectName("comboBoxEncodings") self.horizontalLayout.addWidget(self.comboBoxEncodings) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) self.verticalLayout.setStretch(0, 1) self.verticalLayout.setStretch(1, 1) self.horizontalLayout_2.addLayout(self.verticalLayout) self.pushButtonRetry = QtWidgets.QPushButton(Form) self.pushButtonRetry.setObjectName("pushButtonRetry") self.horizontalLayout_2.addWidget(self.pushButtonRetry) self.pushButtonEdit = QtWidgets.QPushButton(Form) self.pushButtonEdit.setObjectName("pushButtonEdit") self.horizontalLayout_2.addWidget(self.pushButtonEdit) self.pushButtonCancel = QtWidgets.QPushButton(Form) self.pushButtonCancel.setObjectName("pushButtonCancel") self.horizontalLayout_2.addWidget(self.pushButtonCancel) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): Form.setWindowTitle(_("Form")) self.lblDescription.setText(_("%s
The file you opened has some invalid characters. If you continue editing this file you could corrupt this document. You can also choose another character encoding and try again.
")) self.label.setText(_("Character Encoding:")) self.pushButtonRetry.setText(_("Retry")) self.pushButtonEdit.setText(_("Edit Anyway")) self.pushButtonCancel.setText(_("Cancel")) from pyqode.core.widgets.encodings import EncodingsComboBox Turing-0.11-beta/pyqode/core/_forms/pnl_read_only_ui.py 0000664 0000000 0000000 00000002665 13314727572 0023252 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/pnl_read_only.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(964, 67) self.horizontalLayout_2 = QtWidgets.QHBoxLayout(Form) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.lblDescription = QtWidgets.QLabel(Form) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblDescription.sizePolicy().hasHeightForWidth()) self.lblDescription.setSizePolicy(sizePolicy) self.lblDescription.setWordWrap(True) self.lblDescription.setObjectName("lblDescription") self.horizontalLayout_2.addWidget(self.lblDescription) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): Form.setWindowTitle(_("Form")) self.lblDescription.setText(_("The file you opened is read-only.
Use "save as" or change the file\'s permission to edit the document...
")) Turing-0.11-beta/pyqode/core/_forms/popup_open_files_ui.py 0000664 0000000 0000000 00000005344 13314727572 0023770 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/popup_open_files.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(640, 320) self.gridLayout = QtWidgets.QGridLayout(Dialog) self.gridLayout.setContentsMargins(0, 0, 0, 0) self.gridLayout.setSpacing(0) self.gridLayout.setObjectName("gridLayout") self.groupBox = QtWidgets.QGroupBox(Dialog) self.groupBox.setObjectName("groupBox") self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox) self.gridLayout_2.setObjectName("gridLayout_2") self.checkBox = QtWidgets.QCheckBox(self.groupBox) self.checkBox.setObjectName("checkBox") self.gridLayout_2.addWidget(self.checkBox, 0, 0, 1, 1) self.tableWidget = QtWidgets.QTableWidget(self.groupBox) self.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.DoubleClicked|QtWidgets.QAbstractItemView.EditKeyPressed) self.tableWidget.setProperty("showDropIndicator", False) self.tableWidget.setDragDropOverwriteMode(False) self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) self.tableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) self.tableWidget.setShowGrid(False) self.tableWidget.setCornerButtonEnabled(False) self.tableWidget.setColumnCount(2) self.tableWidget.setObjectName("tableWidget") self.tableWidget.setRowCount(0) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(0, item) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(1, item) self.tableWidget.horizontalHeader().setVisible(False) self.tableWidget.horizontalHeader().setDefaultSectionSize(250) self.tableWidget.horizontalHeader().setStretchLastSection(False) self.tableWidget.verticalHeader().setVisible(False) self.gridLayout_2.addWidget(self.tableWidget, 1, 0, 1, 1) self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Dialog")) self.groupBox.setTitle(_("Open files")) self.checkBox.setText(_("Sort alphabetically")) item = self.tableWidget.horizontalHeaderItem(0) item.setText(_("Filename")) item = self.tableWidget.horizontalHeaderItem(1) item.setText(_("Path")) Turing-0.11-beta/pyqode/core/_forms/pyqode_core_rc.py 0000664 0000000 0000000 00004330307 13314727572 0022726 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.5.1) # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore qt_resource_data = b"\ \x00\x00\x05\x35\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x04\xa9\x49\x44\x41\x54\x58\xc3\xc5\x97\xdf\ \x6f\x14\x55\x14\xc7\x3f\xe7\xce\xec\xaf\x6e\x4b\x5b\x68\x29\xa2\ \xc5\x58\x6a\x42\xe4\xdd\x17\x13\x9f\xf0\xcd\x7f\x43\x7d\x36\xbc\ \x10\x13\xf1\x49\x21\x41\xff\x1f\x13\x4d\x34\x86\x04\xdf\x30\x82\ \x08\x41\x12\x31\xa9\xd4\x02\xdb\x2e\x6e\xf7\xc7\xcc\xbd\xe7\xf8\ \xb0\x33\xd3\x99\xed\xd2\x96\x07\xe1\x26\xb3\xf7\xde\x9d\x99\x73\ \xbe\xe7\x7b\xbe\xf7\xde\x33\x62\x66\xbc\xca\xe6\xb2\x5e\x5e\x15\ \x80\x38\xeb\xed\xe2\xa7\x17\xbf\x53\x0b\x17\xf2\x1b\xef\xbe\xf7\ \x3e\x6b\xeb\xe7\xa8\x45\x11\x4c\xb0\x24\x22\x20\x82\x73\x82\x20\ \x88\xe4\x17\x90\xf5\x4e\xc6\xcf\xf9\xd4\x73\xfb\xb7\x5f\xf9\xf9\ \xfa\x4f\xc5\xfb\x8b\x8b\xc7\xbf\xbf\xfc\xc5\xe5\x0f\xca\x00\xe8\ \xf7\x77\x2f\xdc\xba\x7d\x8b\x95\x95\x53\x9c\x5c\x5e\xe6\xc4\xf2\ \x49\x56\x57\xdf\xa4\x51\xaf\x4d\x45\x2e\xd9\x8f\x64\x80\x64\x72\ \x2c\xe0\x44\xe8\x8f\x12\xb6\xb6\xfe\x61\x38\x18\x16\xef\x76\xf4\ \x69\x11\x68\x01\x40\x55\x69\xb7\xdb\xd4\xe2\x18\x55\xc5\x61\x38\ \x27\xfc\xb5\xb5\x33\xdd\x79\x85\x91\xea\x44\x4a\x00\xdf\x58\x9a\ \x43\x30\x54\x95\xb2\xaf\xa9\x00\x16\xe6\x17\x68\x34\x1a\xc5\x03\ \x51\x24\xbc\xfd\xfa\xe2\x38\x47\x93\xce\x33\x47\x65\x00\x92\x3b\ \x97\xfc\x12\x06\xc3\x64\x9f\xd3\xa9\x00\xcc\x8c\xb9\xb9\xb9\x62\ \x2c\x22\x44\x4e\xa8\xc7\xd1\x74\xf5\x08\x07\x02\x18\xdb\x01\x35\ \x50\x94\xf2\x6a\x2b\x8f\x2b\x0c\x54\xed\x1b\x91\x83\x38\xce\xad\ \x55\x29\x98\x4c\x83\x65\x86\xd5\xc0\xd4\x30\x1b\xcf\x7d\x08\x98\ \x56\x53\x10\x42\x38\x1c\x80\x9a\xa2\x6a\xfc\xfe\xe7\x93\xa9\x04\ \xd8\xc4\x2c\x0f\xca\xb2\xd0\x2d\x9b\x9c\x3a\xde\x26\xe8\x11\x52\ \xb0\x0f\x80\x42\x1a\x94\xd5\x95\x63\x55\x91\x59\xd5\x79\x4e\xa7\ \x19\x58\x06\x24\x67\xc3\xcc\x18\x25\x81\x10\xc2\xd1\x34\x50\x6e\ \xc1\x2b\xde\x2b\x3e\xaa\x02\xdb\x0f\xa4\x14\x7d\x16\x79\x4e\xbf\ \x01\x3e\x28\x21\x03\xf3\x42\x1a\xf0\x1a\x48\x55\x71\x69\x78\x9e\ \xff\x62\x83\xb2\x62\x38\xc9\x00\xf8\x10\x08\x7a\xc4\x65\x58\xd5\ \x80\x91\xfa\xc0\xe6\x93\x1e\x07\xb5\x0a\x6f\x79\xee\xf7\xb0\xb1\ \x78\xac\x41\xf0\xe1\x70\x11\xda\x04\x80\xa0\x8a\x0f\xca\xc2\x5c\ \x73\x62\xa7\xa9\x3a\x2a\x3b\xb3\x2c\x2f\x39\x03\xd8\x38\x05\xaa\ \x5a\xb1\x6f\x53\x19\xd8\xa7\x01\x23\x0d\xfa\xfc\x53\xca\x2a\x5d\ \x01\x2a\x57\xbf\x15\x2b\xc1\x08\x66\x15\xfb\x7a\x14\x0d\xdc\xb8\ \xfe\x23\x9b\x9b\x9b\x0c\xfa\xfd\xa3\xd1\x9f\x3b\x2e\xdd\x31\x83\ \xd6\xcc\x0c\x0f\xff\xb8\x7b\x84\x55\x30\x01\xe0\xe1\xfd\x7b\x3c\ \xbc\x7f\xaf\x98\x4b\x96\x86\xc9\x7e\x1f\x86\x03\x14\x7f\x70\x0a\ \xf4\x39\xcb\xed\x7f\x68\xd3\x77\xc2\x97\x58\x19\x4d\xd5\x80\xbd\ \x44\x06\x5e\x28\x05\x1f\x7d\xf2\x31\x6f\xad\xad\x71\x50\xed\x38\ \x79\xaf\xd3\xe9\xf0\xd9\xa5\x4b\x38\xe7\x50\x35\x82\x2a\x2b\xcb\ \xcb\x4c\xf3\x55\x00\xf0\xde\xef\x33\xdc\x68\x36\x68\xcd\xcc\xd0\ \xeb\x8d\x37\x23\x11\xd9\x27\xb0\xbd\x72\x4c\x8a\xff\xda\xed\x36\ \xcd\x66\x93\x28\x8a\x30\x83\xd1\x68\x34\xd5\x7e\x05\x40\x59\x18\ \xc5\x7f\xa5\x1d\xec\xca\x97\x5f\xe1\xb3\x67\xfa\xfd\x5d\xae\x5c\ \xbd\x8a\x73\xae\x00\xa5\x3a\x3e\xf3\x8b\x83\x47\x04\x11\x07\xa6\ \x38\x27\x53\xed\x1f\x0e\x40\xf7\x0a\x89\xa7\x4f\xf6\x8e\xe5\xed\ \x9d\x9d\x71\xd9\xe6\x1c\xde\x7b\x54\x95\x10\x42\x71\xd9\xde\x81\ \x50\x9c\x13\x87\x03\x98\x42\x51\x32\x1c\x16\x0c\x94\x0d\x44\x51\ \x84\xaa\x32\x1a\x8d\x50\x55\xd2\x34\x2d\x22\xcf\x59\x20\xeb\xcd\ \x0c\x0b\x81\x20\x42\xab\xd5\xa2\x3d\x3b\xcb\x76\xa7\x33\x45\x03\ \x53\x10\x46\x59\x81\x3a\x09\x20\xf5\x29\x83\xc1\xa0\x70\x10\x42\ \x28\x98\xf0\xde\xe3\xbd\x27\x49\x53\xe2\x0c\xa8\x57\x85\x10\x30\ \x81\xc1\x70\x48\x5a\x0a\xf6\x40\x06\xa8\xd7\x09\x21\x30\x1c\x0e\ \xf1\x3e\x2d\x15\x1f\x56\x08\x2b\x4d\xd3\x22\x05\xb9\x73\x33\x23\ \x4d\x46\x68\x14\x65\x65\x99\x22\x66\xc4\x2e\xe2\x59\xb7\xcb\xdc\ \xb1\x63\xd3\x00\x84\x4d\x84\x53\x15\x0d\x84\xc0\xa0\x3f\xa0\x56\ \xab\xd1\xeb\x0f\xe8\xef\xee\x12\x54\x59\x58\x58\xa0\xdf\xef\x17\ \x4e\x73\xfa\xf3\x3e\x49\x12\xd2\xd4\x13\x82\x16\x02\x75\x8c\x97\ \xe7\xd2\xd2\x12\x5b\x5b\x5b\x88\x88\x98\x99\xc5\xd9\xf2\x92\x73\ \x67\xcf\x7e\xd8\x6c\xb5\xbf\x15\x61\x29\x07\xa0\xaa\x05\xdd\xd7\ \xbe\xbe\x56\x80\x0a\x21\xd0\xeb\xf5\xc6\xd1\x4d\x88\x30\x1f\xa7\ \x49\x92\x2d\xc3\x31\x80\xc8\x39\x42\x08\x6c\x6c\x6c\xe0\x9c\x03\ \x68\x89\xc8\x20\x67\x40\xee\x3e\x78\xf0\xf7\xfc\xfc\xfc\x37\xab\ \xaf\x9d\xfe\xdc\x39\x37\x03\x90\xa4\x09\xbd\x5e\x8f\x38\xd3\x42\ \x39\xe2\x34\x4d\x0b\xfa\xf3\xb4\x00\xb9\xf1\x71\x35\x5c\x4a\x59\ \x59\x43\x66\x96\x00\x27\x80\x8d\xe2\xdb\x10\xf8\xb7\xdb\xed\xfe\ \x90\x0c\x87\x8b\x8d\x46\xe3\x34\xa0\xef\x9c\x3f\x1f\xfd\x72\xf3\ \xe6\x5a\xbd\x5e\x6f\xd4\x6b\xb5\x7a\x14\xc7\xf5\x38\x8e\x1b\xce\ \xb9\x1a\x10\xe7\x9b\x80\x81\xd7\x10\x12\x55\x4d\xd2\x34\x4d\xb7\ \xb7\xb7\xfb\x71\x2d\x7e\xf0\xe8\xd1\xa3\x91\x99\x49\xc9\x07\x88\ \x04\x83\x1b\xc0\x08\x30\xc9\x51\x8a\x88\x03\x5a\xc0\x2c\x50\x03\ \xec\xcc\x99\x33\xba\xbe\xbe\x9e\x34\x9b\xcd\x62\xef\x9c\x9f\x9f\ \xa7\xdb\xed\x12\xc7\xb1\xd5\xeb\x75\xeb\x74\x3a\xcc\xce\xce\x4a\ \xbb\xdd\x16\x11\x61\x67\x67\x87\x3b\x77\xee\xe8\xe3\xc7\x8f\xeb\ \xbb\xbb\xbb\x35\xf6\xbe\xc0\x29\x01\x19\x01\xcf\xcc\x2c\xf9\x0f\ \x37\x73\xc6\x21\x46\xae\x9a\x9a\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x01\x65\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x66\ \x50\x4c\x54\x45\xff\xff\xff\xbb\xb8\xb1\xbb\xb7\xb3\xb8\xb8\xad\ \xc3\xc0\xbc\xbb\xb7\xb2\xbc\xb7\xb3\x80\x80\x80\xbe\xba\xb6\xbb\ \xb8\xb3\xb9\xb4\xaf\xc5\xc2\xbe\xbb\xb7\xb2\xbb\xb7\xb2\xb6\xb6\ \xb6\xc1\xbd\xb9\xbb\xb7\xb3\xb9\xb6\xb1\xbc\xb7\xb2\xbb\xb8\xb3\ \xbf\xaf\xaf\xbf\xbb\xb6\xbb\xb8\xb2\xb9\xb4\xb0\xba\xb6\xb1\xbb\ \xb7\xb1\xcc\xcc\x99\xb9\xb9\xb2\xba\xb6\xb1\xcc\xc9\xc6\xc9\xc6\ \xc3\xcb\xc8\xc5\xc6\xc2\xbf\xff\xff\xff\x9a\xcb\x8f\xa5\x00\x00\ \x00\x1c\x74\x52\x4e\x53\x00\x4b\xb4\x19\xfa\xf3\x6e\x02\xf3\xd6\ \x33\xfe\xf7\x95\x07\xf8\xf0\x5b\xf6\xa1\x10\xf4\xde\x3a\xf8\x7c\ \x05\x21\x55\x17\x14\x86\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\ \x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\ \x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x44\x49\x44\x41\x54\ \x18\xd3\x63\x60\x20\x0f\x30\xa2\x0b\xc8\x30\x31\xa3\x09\xb0\xb0\ \xb2\xb1\xa3\x08\xc8\xca\x71\x70\x72\xa1\x08\xc8\xca\x72\xf3\xf0\ \xf2\x21\x0b\xc8\xf3\x0b\x08\x22\xab\x50\x10\x12\x16\x41\xd6\x22\ \x2a\x26\x8e\x62\x8b\x84\xa4\x14\xaa\xb5\xd2\x64\x7a\x08\x0a\x00\ \xb8\xa1\x03\x67\xfb\x2c\xbb\x2b\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x08\x78\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1b\x16\ \x18\x20\x20\xd9\xdc\xfb\x00\x00\x07\xd9\x49\x44\x41\x54\x58\xc3\ \x9d\x97\x7b\x6c\x14\xd7\x15\xc6\x7f\x33\xb3\x8f\xd9\x97\xbd\x5e\ \x6c\x9e\x35\x60\x0c\xc4\x3c\x4b\x81\x92\x20\x57\xa1\xd4\x09\x98\ \x92\xb4\xa1\x55\x95\xa6\x54\x8d\x12\x68\xd2\x46\x89\x14\x55\x09\ \xb4\x24\x6d\xfa\x20\x44\x8d\x14\x94\x96\xb4\xd0\x82\xf8\x23\x4a\ \x55\x11\x45\x32\x6a\xa0\x85\x14\x42\x1a\x22\xa5\x82\x3a\xa1\x06\ \x3b\x10\x9e\xf1\x1a\x7b\xed\xf5\x6b\xbd\xaf\x79\x4f\xff\xb8\xb3\ \xc6\x26\x0e\xa1\x5c\xe9\x6a\x46\xbb\x33\xf7\xfb\xce\x77\xce\xf9\ \xee\x1d\x89\x5b\x1b\xd2\x75\x57\x00\xd7\x9b\xb7\xb4\xd0\xcd\x0c\ \xf9\xb7\xb0\xcc\x07\xdf\x50\xe0\x0e\x05\xe6\xc8\x50\x09\xc8\x2e\ \x14\x1c\x68\xb7\xe1\xbf\x36\xbc\x65\xc0\x9b\x5b\xa0\xff\x66\x08\ \x7d\x2e\x81\x05\xa0\x7c\x1f\x1e\x90\x60\xb3\x02\xf3\x03\x40\x00\ \xf0\x01\xfe\x50\x08\x45\x55\xd1\x33\x19\x6c\xc7\xc1\x04\x0c\xc0\ \x82\xa2\x0d\x7f\x31\x61\xeb\xb3\xd0\x7e\x23\x22\x37\x22\x20\xfd\ \x1a\xea\x42\xb0\x57\x81\x3b\x54\x20\xaa\xaa\x4c\xbd\xfb\x6e\xc6\ \xd7\xd7\x93\x58\xb8\x10\x5f\x24\x22\xb4\x77\x1c\x0a\xc9\x24\xe9\ \x93\x27\x49\x1e\x3a\x44\xfa\xfc\x79\x34\x40\x17\x44\x9e\xdb\x0f\ \xdb\xff\x0d\xf6\xff\x43\x40\xde\x0a\xf7\x04\xe1\x35\x15\x62\x51\ \x49\xa2\x66\xd5\x2a\x66\xac\x5f\x4f\xa0\xac\x0c\xe9\x33\x5e\x2c\ \x15\x41\x5f\x73\x33\x6d\xbb\x76\xd1\x97\x4e\x53\x00\x4c\x78\xb3\ \x0f\xd6\xbf\x08\xd9\x9b\x21\x20\x6f\x85\x6f\xa9\xf0\xd7\x08\xf8\ \xca\xfd\x7e\xe6\x3d\xfa\x28\xe3\x16\x2f\xfe\x4c\xe0\xb1\x88\x98\ \xc5\x22\x67\x77\xee\xa4\xf3\xcc\x19\x86\x44\x6a\x8e\x77\xc3\xd7\ \x5f\x82\xdc\x8d\x08\x48\xcf\xc2\xb2\x38\x1c\x8b\x40\xa8\x42\x51\ \xa8\xdb\xb0\x81\x78\xdd\x6c\x64\x79\xf4\x0b\x6e\x29\x5c\x77\x04\ \x6a\xe9\x27\xd7\x05\x49\xc2\xb6\x2c\x2e\xec\xdd\x4b\xe7\xc7\x1f\ \x33\x24\x52\xf2\xc6\x26\xb8\x1f\x70\x4a\x80\xca\x48\xf0\xfb\xa1\ \xbc\x06\x0e\x87\x61\x7c\x1c\x98\xb6\x72\x25\x15\x73\xeb\x70\xac\ \x3c\xa6\x9e\xc3\x32\x35\x5c\xb3\x00\xb6\x0e\x96\x8e\x6b\x6a\x38\ \xba\x86\xab\x69\x38\x9a\x86\x59\x28\xa0\x65\xb3\x18\xc5\x22\x76\ \x3e\x8f\x64\x59\xc4\x66\xcc\xa0\x70\xe6\x0c\x96\x61\x60\xc2\xdc\ \x95\x90\x3a\x02\xcd\xc3\x72\x8f\x94\x7e\x21\x6c\x0a\x40\x6d\x14\ \x88\x27\x12\x54\xcc\xbb\x0d\xa3\xd8\x43\xa6\xff\x2a\x65\x77\x7e\ \x8d\x09\xdf\x7e\x80\xc1\x4c\x37\x85\x5c\x37\xb6\xde\x87\x6b\xf4\ \xe3\x1a\xfd\x38\x46\x3f\x46\x2e\xcd\x60\xcf\x55\x9c\xca\x71\xd4\ \x3e\xf5\x14\x05\xc7\x21\xd3\xd9\x89\x5b\x28\x30\x69\xf9\x72\x62\ \x40\x58\x00\x6e\x7b\x1a\xaa\xae\x57\x40\x7a\x10\x26\x4c\x82\xd7\ \x62\x10\x28\x07\x26\x2c\x59\x84\x92\x50\xe8\xcb\xa6\x99\xfc\xcd\ \xef\x31\xe5\xae\x7b\x09\x56\x4e\x20\x30\x69\x0a\x9f\xbc\x7b\x00\ \xd9\x2d\xe2\x97\x0d\x70\x35\x0c\x2d\x47\x5f\x7f\x2f\xca\xf4\x99\ \x2c\x7c\xfa\x67\xf8\x63\x31\x12\x4b\x97\x72\xe1\xf0\x61\xf4\xee\ \x6e\x22\x65\x65\x18\xc9\x24\x96\xae\x63\x40\xc8\x0f\xd6\x51\x38\ \x06\xb8\x25\x05\xe4\x5a\x58\x1f\x80\x68\x08\x50\x15\x99\xd0\xf8\ \x08\x45\xad\x17\xa7\x72\x3c\x53\x57\xaf\x1b\x96\x69\xdc\xfc\xa5\ \xcc\x7e\x64\x0b\x1d\x3d\x29\x06\x33\x29\x8a\x85\x34\x5d\x3d\x49\ \x9c\xea\xe9\x2c\xfe\xe9\xaf\x90\xfd\x01\x00\x82\x89\x04\xb3\x36\ \x6e\x24\x9d\x4a\x61\xf4\xf7\x13\xa9\xaa\x22\x04\xa8\x80\x0f\x36\ \x2c\x81\xe0\x48\x05\x82\x6b\xe0\x85\x08\x54\xc7\x80\x68\x28\x40\ \xb4\x36\x86\x12\xd4\xe9\x49\x5e\x22\xdd\xd5\x49\xf5\xf2\x06\x24\ \x49\x94\x60\x74\x62\x35\xe1\xea\x99\x9c\xfa\xfb\x3e\x06\x06\x07\ \x50\x6a\x16\xb1\xe2\x97\xaf\xa0\x04\x82\xc3\x44\xd3\xe7\xda\x38\ \xfa\xf8\x23\x94\x1b\x3a\xaa\x69\xe3\x64\x32\x98\x43\x43\x98\xa2\ \x2d\x23\x33\xe0\xbd\x63\x70\x51\x01\xa4\x05\x10\x5f\x06\xdb\xc3\ \xa0\x44\x81\x50\xd0\xc6\x1f\x4e\x13\x0c\x3b\x84\x63\x32\x57\x5a\ \x4e\xd2\xdd\xd1\x45\xcd\x57\x56\x0d\x93\x28\x9b\x3c\x9d\xc8\xd4\ \x39\x74\xa7\x7a\x58\xf3\xfc\x9e\x51\xe0\xdd\x67\x5b\xd9\xff\xd0\ \x3a\xaa\xcc\x0c\x09\x2c\xcc\xf6\x0e\x8c\x54\x1a\x17\xb0\x44\x4b\ \xe2\x40\xf2\x9f\xf0\x8e\x0f\x90\x1a\x61\x9e\x0f\xfc\x3e\x4f\x12\ \x5f\x04\x64\xc5\xc2\xc9\x76\x11\x92\x7c\xcc\x1a\x1f\xa0\xf5\xc8\ \x2e\x0e\x1a\x06\x6b\x7f\xb1\x63\x98\x44\xcd\xf2\x06\x6a\x96\x37\ \x8c\xea\xe3\xae\x8f\x4e\xb3\xef\xc1\x35\xd4\x48\x83\x54\xc9\x36\ \x0c\xea\x80\x8b\x1c\x00\x59\x17\x16\xee\x03\x02\xf0\x45\x10\xdd\ \x2d\x07\x61\x92\xe2\x81\xcb\x80\x12\x04\x49\x11\x4f\xca\x8a\x45\ \x99\x5a\x60\xde\xb4\x22\xc9\x23\x7f\xe0\x8d\x67\x1e\x13\x7d\x3e\ \xc6\xe8\x68\x3b\xcd\xde\xf5\x0d\x54\xab\x57\xa9\x4e\xe4\x51\x55\ \x0d\x25\xea\xe2\x8b\x82\x12\x01\x59\xf1\x02\x14\x58\x13\x4a\x04\ \x08\x40\xb4\x14\xbd\x2c\x81\x24\x0b\x43\x91\x3c\xeb\x93\x14\x48\ \x54\xc0\xfc\x59\x70\x62\xdf\x2e\x8e\xee\xd9\xf9\x29\x70\x53\xd7\ \xd8\xfe\x9d\xb5\x54\x04\xd3\xcc\x9c\x06\xe1\x72\x91\xcf\x12\xb8\ \x12\x11\x6b\xcb\x1e\x01\x3f\x44\x4a\x04\x24\x1b\x8c\x12\x01\x00\ \xd7\x11\x49\x72\x9d\x6b\x0e\x97\xd7\xa0\x3d\x05\xb5\xf5\x8d\xac\ \xf8\xc1\xc3\x9f\x22\xe0\x0f\xaa\x3c\xfc\xfb\x3f\x33\x64\xaa\x0c\ \x18\xa2\xdc\x95\xb0\x37\x43\x62\x22\x7b\x0a\x8b\xa9\x23\x62\xc5\ \xcd\x41\x9f\x52\xb2\x59\x17\x9c\x22\x38\x26\xb8\x16\x38\x16\xe4\ \x73\xd0\x76\x11\xdc\x2f\x34\xb2\x71\x77\x13\xfe\xa0\x3a\x66\x0a\ \xe6\x37\x34\xb2\x6e\x7b\x13\x1f\x75\xa9\xa4\x8b\x42\x5a\x59\x05\ \x45\xf5\x52\xea\x5e\x33\x1f\x09\x7a\x87\x7d\xe0\x6d\x38\x2f\x7b\ \xdb\xa5\x03\x18\x45\xb0\x74\xb0\x34\xc8\xe5\xe0\x7c\x07\x48\x35\ \x8d\x7c\x77\x47\x13\xbe\x11\xe0\xbd\x97\x5a\x78\x6f\xf7\xe6\x51\ \x35\x71\xdb\x9d\x8d\xac\x7e\xa1\x89\x4b\x7d\x2a\xfd\x1a\x38\x3e\ \x20\x08\x8e\x03\xb6\xe5\xa5\x56\x74\xc3\x59\xc0\x91\x01\xe7\x43\ \x18\x34\xe1\x1c\x08\x16\x46\x11\xb4\x2c\xe4\xf3\xd0\x9e\x06\x7f\ \x5d\x23\xf7\xbd\x3c\x1a\x7c\xe0\x4a\x0b\xef\x6e\x6b\x20\x75\xfc\ \x45\x4e\xec\xfe\xb1\xb7\x3b\x89\x31\xa3\xbe\x91\x95\xbf\x69\xa2\ \x23\xab\x92\x31\xc0\x92\xc4\x7a\x96\x2b\x02\x94\x81\x41\x38\x01\ \xd8\xa5\xb4\x2b\x2b\xa0\xa6\x02\x6e\x97\x10\x6b\x39\x40\xc1\x07\ \xcc\xfa\x32\xf7\xec\x39\x3c\x0a\x7c\xf0\x4a\x0b\xef\x3f\xdf\xc0\ \xe4\x78\x2f\x53\xa7\xc0\xc0\xa5\x66\x32\xdd\x29\x26\x2e\x5a\xeb\ \x55\x2e\x94\x57\xcf\x24\x56\x3d\x87\xcb\x47\x5e\x27\xa0\x41\xfe\ \xb2\x50\xc0\x0b\x32\xb7\x0b\x36\xa5\x20\x23\x7b\x99\xd1\x0f\xc3\ \xeb\xb2\xf0\x09\x6c\x40\x1b\x02\x3b\x0b\xf9\xd6\x53\x5c\x3d\x7e\ \x68\x18\x3c\x73\xb9\x85\x13\xcf\x35\x30\x4e\xee\x25\xae\x0a\x6b\ \x9d\x9c\x80\xdc\x7f\xfe\x44\xdb\xab\xd7\x94\xb0\xb5\x3c\xc9\x83\ \x3b\x08\xca\x90\x6d\x07\x43\xbb\x26\x7f\x0e\xf6\x7f\x08\x03\x80\ \x3b\xbc\x1d\x5f\x00\xfd\x2e\xa8\x2d\x87\xb9\x00\xb6\x2b\x0a\x30\ \xe0\x77\xe8\x78\xa7\x89\xf2\xba\x05\xe0\x18\x9c\xd8\xdc\x40\xc8\ \xec\x25\x12\x04\xc9\x01\xdb\x04\xd9\x01\xbf\x0c\xd9\x8b\xcd\x14\ \xfb\x52\xc4\xeb\xbe\xca\xa9\x6d\xf7\x52\x6c\xfb\x17\x52\x4a\x44\ \x2f\xd9\xa2\xfd\x64\x30\xfe\x06\x8f\x9d\x86\x0e\xc0\x1e\x79\xbc\ \x0e\xd5\xc3\x97\xb6\xc0\x01\x19\xe2\x86\xf0\x6c\xdc\x10\x28\x95\ \xa0\x54\x04\x50\x2b\xa3\xc8\x4e\x3f\x6a\x04\x02\x61\x61\x58\x4a\ \x00\x24\x9f\x50\xde\xb6\x41\x37\x40\x09\x4f\x44\xef\x49\x51\x6c\ \x87\x6c\x2b\x48\x45\x71\x90\xf5\x03\x49\x78\x65\x23\xfc\x1c\x18\ \x02\x9c\x91\x07\x12\x27\x09\x85\xe9\x30\x30\x1b\x56\xc9\x22\x40\ \x2c\x4b\x74\x03\x8e\x8d\xab\x17\x91\xc4\x2d\xb6\x25\xa2\xb7\x4c\ \xb0\x0c\xf1\x8c\x6d\x80\x6b\x82\xd1\x97\x63\xe8\x2c\x64\xcf\x81\ \xa4\x8b\x6d\x4f\x05\x34\x38\xf5\x24\x3c\x99\x87\x3e\x2f\xd3\xa3\ \x4e\x44\x00\xe6\x71\xe8\x58\x02\xbe\xa9\x70\x7b\x69\xaf\xb6\x6d\ \x30\x0b\x60\x6a\xe2\xde\x32\x05\x01\xcb\x14\xa0\x96\x0e\x66\x11\ \xf4\x41\x18\xba\x02\x03\xad\xa0\x77\x41\xc0\x86\x10\xc2\xf2\x6c\ \x68\x7f\x19\x1e\x6a\x81\x8b\x88\xfd\x68\x58\xfa\x91\x43\xf2\xc8\ \x4e\xf9\x1d\x3c\xb1\x0c\x1e\xd7\x41\x2e\x00\x45\x84\x75\xd9\x32\ \xb8\x7e\x61\x30\xb2\xdf\xb3\x32\xc0\x31\x84\x81\x49\x06\xf8\x5d\ \x01\x1c\x46\x5c\x35\xb8\xb0\x1d\x7e\x78\x10\x3e\x10\x35\x38\xf6\ \x99\x70\x38\x15\x40\xf1\x10\xb4\xc5\xe1\x93\x79\xb0\x24\x02\xe1\ \x40\xc9\x42\x5d\x51\x50\xe8\xe0\x14\xc0\xcd\x8b\xa9\x68\x22\xe2\ \x28\x10\x03\xca\x11\xf7\x9d\x70\xe0\x27\xf0\xc4\xfb\xd0\x0a\xe4\ \x47\x82\x8f\xa5\x40\x69\xc8\x88\xba\x19\x37\x13\x66\x3f\x03\x1b\ \xe6\xc0\x7d\x12\x44\x0c\x4f\x09\x93\x6b\x5f\x1a\x23\x36\x18\x54\ \xef\x3a\x08\xa7\xff\x01\x7f\x7c\x09\xde\x02\x7a\x80\xc2\xf5\xe0\ \x37\x22\x50\xfa\xcf\xe7\xa5\xb0\x72\x2a\x4c\xfb\x11\xac\x9e\x0d\ \xf5\x71\xa8\x0b\x40\xc2\x19\xbd\x88\x99\x87\x2b\x3d\xf0\xc1\xdb\ \x70\xe8\x55\xe1\x74\x69\xaf\xda\xcd\xb1\xc0\x3f\x8f\xc0\x48\x35\ \x7c\x5e\x4a\x63\x40\x19\x10\x9b\x0c\xf1\x05\x50\xe5\x07\x25\x0d\ \xd9\x66\x48\x59\x22\xbf\x43\xde\xcc\x8f\x00\xbe\xa5\x6f\xc3\xb1\ \x9e\x2d\x9d\x27\x4a\xb3\x54\x43\x0e\xc2\x45\x4b\xd3\xe6\x26\x3f\ \xd7\xff\x07\xfc\x1f\x35\xe7\x22\xaa\x29\xc6\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x39\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x28\ \x50\x4c\x54\x45\xff\xff\xff\x71\x71\x71\x54\x54\x54\xbe\x00\x00\ \xbc\x00\x00\x72\x72\x72\xbf\x00\x00\xbe\x00\x00\xbe\x00\x00\xbe\ \x00\x00\xbf\x04\x03\x54\x54\x54\xb9\x00\x00\xbb\x04\x03\xb6\x00\ \x00\xb4\x00\x00\xac\x00\x00\xaf\x03\x02\xa4\x00\x00\xa7\x00\x00\ \x71\x71\x71\xa1\x00\x00\xa2\x03\x02\x60\x60\x60\x9a\x00\x00\x94\ \x00\x00\x95\x01\x00\x53\x53\x53\x89\x00\x00\x8d\x00\x00\x87\x00\ \x00\x88\x01\x00\x80\x00\x00\x82\x00\x00\x7a\x00\x00\x7d\x01\x00\ \x76\x00\x00\x74\x00\x00\x6d\x00\x00\x70\x01\x00\x64\x00\x00\x67\ \x00\x00\x67\x00\x00\x63\x00\x00\x62\x00\x00\x72\x72\x72\x68\x68\ \x68\xfc\xfc\xfc\xf9\xf9\xf9\xf3\xf3\xf3\xed\xed\xed\xe7\xe7\xe7\ \xe2\xe2\xe2\xe0\xe0\xe0\x5e\x5e\x5e\xe8\xe8\xe8\x54\x54\x54\xcb\ \x26\x21\xf6\xf6\xf6\xee\xee\xee\xe6\xe6\xe6\xde\x5a\x51\xf5\xa0\ \x9a\xbe\x00\x00\xf8\xf8\xf8\xf0\xf0\xf0\xe9\xe9\xe9\xe1\xe1\xe1\ \xca\x22\x1d\xec\x83\x7a\xf3\x98\x91\xf2\x96\x8e\xda\x51\x47\xf0\ \x90\x87\xf0\x8f\x86\xef\x8c\x82\xee\x89\x7e\xba\x00\x00\xc2\x1e\ \x19\xe7\x75\x6a\xee\x89\x7f\xed\x85\x7a\xec\x82\x76\xeb\x7f\x72\ \xea\x7b\x6e\xb4\x00\x00\xd2\x49\x3e\xeb\x80\x74\xeb\x7f\x73\xe9\ \x78\x6a\xe8\x74\x66\xe7\x71\x62\xe6\x6e\x5e\xad\x00\x00\xb8\x1b\ \x16\xe1\x67\x5a\xe8\x75\x67\xe6\x6b\x5c\xe6\x67\x57\xe5\x64\x54\ \xe4\x60\x50\xa7\x00\x00\xca\x40\x34\xe6\x70\x61\xe6\x6f\x5f\xe5\ \x6b\x5b\xe4\x68\x57\xe5\x64\x53\xe5\x61\x51\xe5\x5d\x4e\xe6\x5a\ \x4a\xe5\x57\x48\xe4\x53\x43\xa0\x00\x00\xfa\xfa\xfa\xf1\xf1\xf1\ \xc4\x2d\x1d\xd8\x44\x2c\xd8\x42\x2a\xd7\x40\x27\xd8\x3f\x27\xda\ \x3c\x25\xdd\x3b\x26\xdf\x3a\x27\xe1\x37\x25\xe2\x36\x24\xe1\x33\ \x21\x9a\x00\x00\xf5\xf5\xf5\xec\xec\xec\xe3\xe3\xe3\xb1\x10\x00\ \xcc\x1e\x00\xce\x1f\x00\xd3\x1f\x04\xd7\x1f\x07\xdb\x1f\x09\xde\ \x20\x0c\xe1\x20\x0d\xe3\x20\x0f\xe4\x20\x0f\x94\x00\x00\x99\x06\ \x00\xc4\x19\x02\xd6\x1f\x06\xdf\x20\x0c\xe6\x20\x11\xe9\x20\x13\ \xea\x20\x14\xea\x20\x13\x8d\x00\x00\xb0\x10\x04\xdd\x1f\x0b\xe7\ \x20\x12\xeb\x20\x15\xef\x21\x17\xf0\x21\x18\x87\x00\x00\x93\x06\ \x02\xd3\x1a\x0d\xeb\x20\x14\xf4\x21\x1a\xf6\x21\x1c\x81\x00\x00\ \xb3\x10\x0b\xf0\x20\x19\xf7\x21\x1c\xfc\x21\x20\xfa\x21\x1f\x7a\ \x00\x00\x8b\x06\x05\xde\x1b\x17\xfa\x21\x1e\xf8\x21\x1d\x74\x00\ \x00\xf2\xf2\xf2\xeb\xeb\xeb\xe4\xe4\xe4\xb0\x11\x0d\x6d\x00\x00\ \xfb\xfb\xfb\xf4\xf4\xf4\x81\x06\x04\xff\xff\xff\x22\xff\x3e\x7c\ \x00\x00\x00\x2d\x74\x52\x4e\x53\x00\xb4\xb4\x53\x3d\x80\x1c\xb7\ \xf0\x62\xf0\x80\x62\xf0\x1c\xb7\x62\xf0\x1c\xb7\x87\x54\xf0\x08\ \xe1\x58\xf0\x87\x1c\xb7\x62\xf0\x1c\xb7\x62\xf0\x1c\xb7\x62\xf0\ \x1c\xb7\xf7\x4b\x3c\xe2\xd5\xa6\x8b\x00\x00\x00\x01\x62\x4b\x47\ \x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\ \x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x01\x45\x49\ \x44\x41\x54\x38\xcb\x63\x60\xa0\x2f\x60\xd4\x45\x02\x8c\x58\x14\ \xe8\xe9\x83\x80\x81\xa1\x91\xb1\x89\xa9\xa9\x1e\x16\x05\x66\x50\ \x79\x73\xa0\xbc\xa9\x19\x16\x05\x4c\x16\x48\x80\x89\x2e\xbe\x62\ \x66\x01\x53\xac\x70\x9f\xb1\xa2\x48\xb3\xb1\x5b\x72\x20\x3c\x67\ \x65\x6d\x83\xe6\x33\x4e\x2e\x5b\x3b\x7b\xb8\xe7\x1c\x1c\x9d\x9c\ \x51\x7c\xc6\xc6\xee\xe2\xea\xe6\x0e\x51\xc0\x0d\xf7\x19\x37\x5c\ \x9e\x87\xd7\xc3\xd3\xcb\xdb\xc7\x17\x87\xe3\xf8\xf8\xfd\xfc\x03\ \x02\x83\x82\x43\x42\xb1\xcb\x0b\x08\x86\x85\x47\x84\x44\x46\x45\ \xc7\xc4\x62\x93\x16\x12\x8e\x8b\x8f\x4c\x88\x8e\x49\x4c\x4a\x4e\ \x49\x45\xf5\xa6\x08\x88\x27\x2a\x96\x96\x9e\x91\x99\x95\x9d\x93\ \x9b\x97\x5f\x50\x08\xf7\x66\x51\xb1\x13\xd0\x97\xe2\x40\x9e\x44\ \x49\x69\x59\x79\x45\x65\x55\x75\x4d\x6d\x6d\x5d\x3d\xdc\x9b\x0d\ \x8d\x4d\x40\x5f\x82\x14\x48\x4a\x35\xb7\xb4\xb6\xb5\x77\x74\x76\ \x75\xf7\xf4\xf4\xa2\x7a\x53\x1a\xcc\x95\x91\xed\xeb\x9f\xd0\x31\ \xb1\x7b\xd2\xe4\x29\x53\xa7\x61\xf7\x85\x9c\xfc\xf4\x19\xdd\x33\ \x67\xcd\x9e\x33\x67\x2e\x8e\x70\x50\x50\x9c\x37\x7f\xc1\xec\x85\ \x8b\x16\x2d\xc6\x19\x8f\x4a\xca\x4b\x96\x2e\x5b\xbe\x62\x25\x98\ \xc3\x88\x2d\xa1\xaa\xa8\xae\x5a\xbd\x66\xed\x3a\x44\x6c\x1a\xac\ \xdf\xb0\x11\x35\x3a\xd5\xd4\x37\x2d\xdd\x0c\xf7\xe6\x96\xad\x46\ \x36\xe8\x09\x55\x43\x73\x9b\x16\x98\xc1\x84\x33\xa1\x6a\xeb\x30\ \x0c\x0a\x00\x00\xfc\x5d\x64\x2d\xfc\x5e\x50\xe5\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\x11\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x07\x85\x49\x44\x41\x54\x58\xc3\xad\x96\x6b\ \x6c\x54\xc7\x15\xc7\xff\x67\x66\xee\xee\xdd\x5d\x3f\xd6\x8f\xc5\ \x60\x4c\x0c\x08\x67\x21\x24\xd0\x00\x01\x85\x2a\x12\x52\x24\x54\ \xe5\x5b\xd5\x82\x22\xd4\x36\x54\x6a\x9b\xb6\x28\xad\x08\x7d\x24\ \x6a\x25\xe4\xaa\x49\x3f\x24\xa1\x55\xd2\x50\x14\x25\x7d\xa4\x0f\ \xa4\xa2\xa6\x6d\x3e\xa4\x52\xab\xa8\x4d\x42\x42\x1b\x1e\xc1\xa6\ \x3c\x1d\x30\x0f\xdb\xac\xbd\x5e\x7b\x5f\x77\x77\xef\xbd\x33\x73\ \xfa\x01\xe3\x18\x62\x1b\x28\xf9\x4b\x73\xbf\xdc\xb9\xe7\xff\x9b\ \x73\x66\xe6\x1e\x62\x66\xdc\x9e\x88\x80\xff\x3f\x08\xdd\x2c\xc0\ \xbe\x7d\x9b\x65\x57\xaa\xef\x81\xa8\x6a\xd8\xe4\xb8\xf3\xd7\xbb\ \x6e\x47\x7b\x24\xbe\xa0\x45\xa9\x26\x0a\xfc\x91\x42\xe8\x5d\xca\ \x68\xef\xd2\xfb\x7e\xa9\x7f\x6f\xc6\x6d\x78\x73\xc3\x86\x7f\xea\ \x9b\x06\x18\x1a\xfa\xc5\x3d\x7e\xe5\x74\x69\xd1\x92\x9f\x9d\xbf\ \x7e\xc2\xe1\xc3\x6b\xe2\x4e\xc5\x7c\x1b\x4c\x3b\x92\x6e\x47\x4b\ \x22\xee\x20\x96\x8c\x42\xc5\x52\x90\xf1\x66\x10\xa2\x30\x7e\x08\ \x1b\x18\x04\xa5\x2a\xbc\xb1\x11\xe4\x32\xfb\xc7\x11\x9a\x9f\x1a\ \xaf\xb2\x6b\xc5\x17\x33\xde\x0d\x01\xce\xf5\x6d\xef\x8f\x5a\xb1\ \x70\xb4\xb0\x7f\xd7\xca\xb5\xff\xd9\x71\xf5\x65\xef\x3b\xab\x1e\ \x26\xf0\xae\xa6\x68\x6a\x5e\x6b\xe7\xdd\x90\xae\x01\xd8\xbf\xc1\ \x92\x22\xb0\x41\x0b\x0a\x17\xcf\x62\xb4\xff\xed\x61\x62\xfd\xdd\ \x65\x9b\x06\x7e\x3b\x2b\xc0\xd1\x43\xf7\x17\x96\x76\x6c\x6c\x18\ \x1a\x3c\x82\xb2\xce\x3c\xb3\x62\xdd\xa1\x27\x7a\xde\x5b\xfd\xb4\ \x6b\xd5\xf7\xe7\xb5\x2d\x42\xb4\x31\x09\xe0\x56\xcb\x2c\xa0\x2b\ \xf5\x18\x3e\xb5\x1f\x85\xec\xf9\xe7\xef\x75\x87\x1e\xc7\x26\x36\ \xd3\x02\xf4\x1c\x5c\x57\x48\xcf\x5b\xdf\x60\x2d\x70\x39\x73\x1a\ \x5e\x38\x7c\x3a\xe9\x2e\x49\xb7\xb6\xb6\x83\x64\xf5\x16\x8d\xaf\ \x13\x27\x30\x78\xfc\x24\xfa\x4e\x1e\xfa\x7b\xac\x98\x7d\x68\xc3\ \xce\x6b\x21\xd4\x95\x49\x80\xf5\x0d\x98\x7c\xcc\x4d\x2d\x43\x18\ \x2c\x4d\x47\xa2\x00\xdb\x0a\xd8\x4e\x0d\x36\xf1\x60\x00\x20\xc0\ \x38\x20\x47\x82\x6d\x6d\x96\x0c\x95\xd1\x9e\xee\x42\xa1\x58\xdd\ \x78\x32\x77\xf4\x15\x00\x5b\x3f\x0e\x00\xc0\x18\x33\xf9\x81\x14\ \x80\x09\x09\xa0\x6b\xcd\x6d\x18\xa0\x3a\x74\x11\xe1\x58\x06\x3a\ \x97\x85\x2e\x65\x41\x52\x22\xd2\xdc\x01\xd5\x38\x07\x6e\xdb\x42\ \x44\x5a\x9a\x80\xeb\x32\xcd\xa8\xa0\x6b\xf9\x5d\xe8\xef\x1f\x7e\ \xe4\xa5\xc7\x1b\x8e\x7d\x6d\x57\xf1\xb9\x6b\x4b\xf0\xef\xb5\x85\ \x85\xf5\xab\x1a\x18\x06\x24\x26\x5c\x09\xe0\x09\x06\x06\x10\x8c\ \x0d\x22\x7f\xf6\x7d\xd8\x5a\x05\x08\x2d\x28\xb4\xe0\x90\xc1\x96\ \xa1\xf8\xa3\x13\x17\xeb\x58\x8e\xba\xf4\x5a\x90\xc2\xc7\x54\x2e\ \x6a\xbc\xf4\xcb\xbf\x94\xe6\xc6\xc4\x1d\xdf\xd8\x9d\xcf\x4f\x29\ \x01\xc3\x68\x0d\x22\x86\x65\x02\x11\x00\x22\x30\x01\xcc\x1a\xe5\ \xc1\x0f\x50\xcb\x9d\x03\x24\xe0\x2b\x85\x63\x83\x12\xe7\x32\x84\ \x4c\x1e\x95\x6a\xcd\x80\xc2\x30\xde\x9e\x30\xf8\x4c\x3a\x44\xdb\ \xc0\x71\xf8\xd9\xf3\x68\x58\xbe\x11\x4e\x63\xfd\x35\x00\x09\x97\ \x90\xee\x4a\xd7\x1f\x3e\x72\x7c\x0f\x80\x87\xaf\x6c\xd5\x09\x00\ \x6b\x34\x8c\xd1\x60\x13\xc2\xda\x10\x96\x43\x30\x87\x28\x0d\x1f\ \x81\x5f\x3d\x0f\x8a\x0b\x5c\x2e\x08\xbc\x76\xd0\xad\xf5\x8f\x45\ \x77\x91\xe3\xa6\x77\xef\xcd\x25\x7e\xf5\xe7\x7c\xa2\x63\x6e\xe2\ \x53\x45\x11\x7b\x61\xd7\x5b\xae\xff\xaf\xb3\x0a\xa6\xe6\xa1\xd8\ \xfb\x37\x68\xcf\x87\xf5\x83\x6b\xc6\x03\x6b\x97\xe0\x62\x96\x3f\ \xdb\xfd\x65\x72\x27\x33\x40\xcc\xb0\x61\x00\x52\x04\x26\x9a\xdc\ \x4f\x61\xe5\x32\xc2\xe0\x02\x28\x4e\xf0\x3d\x46\xef\x60\x5d\xa1\ \xbd\x43\xae\x7f\xf4\xc9\x0b\x27\xa6\xae\xec\x47\x2f\x8f\xf4\x00\ \xf8\xd6\x8b\x3b\x52\xdd\xe7\xc7\x9c\x37\x9b\x47\xab\xcb\x57\xa4\ \x6a\xa2\xdc\x77\x80\xea\xba\xd6\x31\xd8\x8a\xc9\x12\x49\xe0\xae\ \xc5\x73\x23\x41\x35\xf3\x05\x00\x2f\x0b\x00\xa8\xf9\x16\xc6\x04\ \x13\xc3\x87\xe5\x00\xcc\x01\x20\x09\xaa\xae\x01\xc2\x65\xc4\x52\ \x8c\xa5\x9d\xa6\x31\x19\xb3\xdb\x67\x3a\x71\xdb\x9e\xcb\xe6\x96\ \x2f\x74\x3f\x5d\x70\x12\x17\x3c\x23\x0b\xe1\xf8\xc5\x4b\xb5\xcc\ \xd9\x51\x1b\xf8\x25\x1b\xf8\xa1\x0d\x7c\x6b\x03\xdf\xdc\x9b\x6e\ \xb6\x15\x9f\x3f\x3f\x59\x82\x52\xd9\x90\x37\xd4\x8b\x20\x3f\x00\ \x1b\xd4\x60\x4d\x00\x6b\x03\x88\x68\x1d\x12\xa9\x55\x48\xb4\xdc\ \x0d\xa7\xa1\x0e\x5d\xf7\x55\xb0\xb8\xdd\x7c\xe5\xdd\xdf\x77\xfe\ \x78\x26\x88\x2d\x3b\x33\xde\x92\x8e\xc8\xb6\x92\x8a\x1d\x00\x70\ \x36\xc8\xf6\xf7\xdb\xc0\x1f\xb2\x81\x9f\xb3\x81\x5f\xb4\x81\x5f\ \x5b\x90\x72\xcb\x05\x8f\x17\x4d\x02\x54\x2b\x7a\xc0\x2f\x65\x50\ \x19\x3d\x8e\xd2\xd0\xdb\xa8\x64\x8f\xc0\x2f\x5d\x80\xf1\xc7\x60\ \x82\x3c\x58\x11\x22\xf5\x0b\x11\x6b\x6a\x43\xfb\x9a\x32\x1a\x1b\ \xec\x0f\x3e\x7c\xe7\xc1\xae\x99\x20\xe6\x25\xf1\x9e\x72\x9d\x0c\ \x80\x61\x53\x2d\x64\x8c\x5f\x1b\xb2\x57\xc6\xb0\xf5\x6b\xd9\x98\ \xb4\xe5\xa2\x77\xe5\x2f\xa8\x00\xc0\xaf\xd9\x2d\x87\xbd\xb6\xd7\ \xfc\x31\xd3\x19\xfa\x06\x5a\x33\xac\x19\x05\x21\xcb\x92\x98\x1d\ \x49\x88\x38\xa0\x98\x43\xc2\x8d\x34\x72\xeb\x9c\x54\x21\xd5\xc8\ \xf3\x00\xf4\x4d\x07\xd0\xb5\x25\x53\x1a\x7a\xa1\x75\x58\x33\x25\ \x15\xd9\xaa\xf1\xc6\xb5\x70\xdc\x00\x80\x07\xc0\x4d\x28\x8e\x16\ \x3d\xeb\x77\x77\x93\x50\x00\xf0\xb9\xad\xa7\x8e\x02\x58\x3c\xd3\ \x8a\x5e\xfd\x49\x07\xbe\xf4\xc4\x00\x6e\x5e\x04\x36\xcd\xa5\x89\ \x1b\x25\xa6\xcb\x19\x2d\xa4\x1b\x30\x9b\x2a\x5b\xed\x6a\x6d\x02\ \x6d\x11\xdd\xb9\x93\xad\x9a\x2d\xcc\x0f\xb7\xb5\x91\xd6\x2c\x04\ \x81\x76\x77\x77\xe8\x6f\xee\xbc\x39\x88\x13\xbf\x4b\x25\x14\xeb\ \xaa\x24\xb6\x00\x6a\xc6\x1b\x0d\x0c\x10\x00\x70\x01\x84\x23\x25\ \x11\x8d\x47\xc4\x47\x25\x98\xaa\x3d\xdf\x49\x52\x0c\x1a\xf5\x52\ \xd3\x83\x2d\x86\x92\x71\xd0\xa1\x5c\x93\xc8\x15\x42\x01\xc0\xde\ \x0c\x80\x21\xb9\x20\x1a\x41\x19\x9a\xaa\x60\x76\x71\xc5\x3c\x00\ \x10\x05\x10\xe6\xab\x2a\x12\x8f\x18\x7f\x72\x13\x4e\xd5\xd7\x9f\ \xcd\xf3\x23\xcf\x96\xf9\x9e\x16\x9f\x3b\x92\xcc\x89\x98\xc0\xca\ \x79\x3e\x0d\x17\x64\xf4\xe7\xdd\xed\x37\x34\x3f\xb6\x77\xbe\x63\ \xa5\x58\x52\xaf\x6c\x91\x1d\x55\x81\x10\x79\x00\x05\x00\xe3\x00\ \x06\x00\x8c\xf7\x8d\xaa\x7c\x4b\x3d\x7d\x38\x2d\xc0\x55\x75\x7d\ \x8f\x99\x95\x04\x94\xa4\xc6\xb8\x15\xf7\x2f\x96\x72\x60\x98\xdd\ \x57\x9f\x6e\x9b\xd1\xfc\xe0\xbe\x0e\x11\x38\x72\x59\x04\xd1\x1a\ \xd9\x5a\x19\x4a\x16\x59\xc9\x0a\xa4\x28\x02\xb8\x3c\x01\x52\x38\ \x95\x51\xf9\xa6\x7a\x3a\x38\x6d\x09\xae\xea\xcc\xf3\x51\x62\xa9\ \x00\x25\xc1\x52\xd8\x15\xed\x15\x23\xa2\x49\xee\x19\xa8\xc9\x3d\ \x4f\xb5\xdb\xe6\x06\x87\x37\x3f\x76\x01\x00\xf0\x8f\xdf\xdc\x41\ \xae\x23\x22\x6e\x22\x96\x72\xbc\x32\x44\x50\xf3\xa0\x64\xc8\x80\ \x43\x40\xc0\x00\x13\xc3\x81\xb5\xce\xb8\xef\x3a\x39\x4f\xcb\xd5\ \x9d\xe1\x49\x60\x96\xa6\xf4\xcc\x8b\x71\x62\xa5\x88\x95\x04\xa4\ \x04\x4b\xc9\x90\x02\x15\x8e\xd3\xb1\x81\x0a\x8c\xd3\x2c\x0c\x6a\ \xa2\x2e\x4e\xa2\x35\x19\x93\x09\x14\x55\x73\x34\xe6\xa2\x92\x6f\ \x84\x31\x71\x32\xc6\x21\x6d\x1c\x68\x63\x48\x9b\x08\x69\x1d\x85\ \xd6\xf4\xfa\x99\x39\x2a\x33\x92\xcb\x3c\xf3\x57\xfd\xc1\xac\x19\ \x60\x29\x91\x7e\xb4\x68\x4f\xfd\xba\x95\x96\x6e\x1d\x9d\xa4\x3c\ \xf1\xa7\x4e\xdc\x77\xa7\x0b\x88\x9a\x25\x19\x05\x84\x04\x07\x1e\ \xc0\x04\x36\x95\x10\x4a\xfa\x44\x04\x06\x39\x60\x18\x62\x28\x66\ \x0e\xc1\x22\xcc\xd5\x9a\xd4\xb9\xcb\x1e\xad\x9c\x6f\x7a\xaf\xc6\ \x9b\x36\x03\x3d\xaf\x2c\x24\xd7\x8e\x23\xfd\xd5\xc2\x8c\x8d\xe0\ \x7f\xdf\xb8\x93\x40\x24\xc0\x20\x30\x0b\xb2\x56\xc0\xd8\x08\x19\ \x13\x83\x31\x51\xd2\xda\x42\x1b\x49\xa1\x96\xa4\xb5\x63\xb4\x8c\ \xbc\xd1\x1b\x95\x61\x69\x2c\xf3\xe4\x1f\xc2\xcc\xd5\x38\xd3\x66\ \xe0\x74\x51\x60\xf3\xf6\xc2\xac\x5d\x28\x3b\x0a\x20\xb2\x60\x08\ \x30\x5b\x58\x0b\x08\xa3\x41\x08\x09\x1c\x32\x4b\x49\x96\x05\xa4\ \x90\x60\x47\x9f\x1e\x4d\x6a\x51\x1b\xf0\xa6\x9a\xcf\xba\x07\x6e\ \x46\xbd\x6f\xad\xbc\xd2\xba\x58\x26\x18\x43\xa4\x8d\x84\x36\x82\ \xb4\x96\x14\x6a\x41\xa1\x16\x04\x25\x86\x73\x4a\xf5\x9d\x1c\x34\ \x8d\xa3\x61\x6e\xd3\x1f\xaf\xf5\xbb\x2d\x00\x00\xe8\x7d\x77\x35\ \xc1\x5a\x90\x36\x04\x6d\x68\x8a\x39\x45\x9c\x18\x79\xd9\x8a\x18\ \x3c\x37\xa2\x1f\x7a\xca\xaf\x4d\xd7\xb8\xde\x36\x00\x00\xf4\x1c\ \x58\x43\x14\x1a\x50\x18\x82\x42\x23\x62\x2a\x2a\x82\x8b\x97\x28\ \xa2\xd9\x96\x3d\xcf\xae\xdc\xee\xcf\x78\x83\x7e\x22\x00\x53\x75\ \xfe\xf5\x34\xe9\xec\x28\x69\xdf\x67\x65\x3c\x5e\xf2\xd8\xec\xf1\ \x3f\x71\x80\x5b\x95\xb8\xfd\x10\xb7\xa7\xff\x01\x92\x72\x1f\x2a\ \xec\x93\x37\xf3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x07\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x06\xa5\x49\x44\x41\x54\x58\xc3\xed\x97\x6b\ \x88\x9c\x57\x19\xc7\x7f\xe7\x7d\xdf\x79\xdf\xb9\xed\xcc\xec\x5c\ \x77\xf6\x96\xed\xde\xcb\x6e\x2e\xf6\xa2\x49\x84\x26\x25\x64\x53\ \x48\x4c\x1b\x50\xb4\xda\x82\x49\x5a\x6d\x4d\xd1\x0f\xe2\x57\x05\ \x83\x14\x92\xa8\x20\x08\x6d\x43\x69\xc1\x22\x14\xda\x4a\x44\x62\ \xd5\x28\x21\x69\xb2\x25\xe9\xc6\x12\x92\x6e\xab\xbb\xd9\x9d\xd9\ \x24\xbb\x33\x9b\xb9\xee\xce\x3b\xb3\xfb\x5e\x8e\x1f\x12\x6b\x35\ \x97\x15\xbf\xc4\x0f\x79\xe0\x81\xc3\xe1\xcf\xf9\xff\x38\x9c\xe7\ \x3c\xe7\x08\x29\x25\x77\x33\x94\xbb\xea\x7e\x0f\xe0\x1e\xc0\xff\ \x03\x80\xb6\x92\x40\x08\xa1\x01\x23\xc0\xe3\xc0\x3b\x52\xca\x3f\ \xac\xa0\x7f\x18\x18\x02\x1a\xc0\x9b\x72\xa5\x3a\x97\x52\xde\x31\ \xd3\xe9\xf4\x3b\xaf\xbc\xf4\xb2\xfb\xd3\x83\x87\x64\x67\x7b\xbb\ \x05\x7c\xed\x76\x5a\xe0\x1b\xbd\x3d\x3d\xf6\xcf\x0e\x1e\x92\x07\ \x0f\x1c\x70\x03\x81\xc0\x6b\x2b\xad\x2f\xee\x04\x28\x84\xd8\xf1\ \xdd\x7d\x2f\xfc\xf6\xd2\xf4\x94\xc8\x4c\x67\x68\x2c\x35\x50\x55\ \xed\x8f\xe3\x1f\x8f\x6f\xbb\x95\x7e\xc3\xfa\xf5\xa3\xf9\x7c\x7e\ \xbd\xdf\xef\x67\x78\x68\x88\xa6\x70\x58\x1e\x3e\x7c\x78\xa7\x94\ \xf2\x77\xb7\xf3\x50\x6e\x61\xea\x15\x42\x7c\x49\x08\xb1\x7f\x70\ \x70\xf0\xd5\x9e\x9e\x1e\x61\x9a\x26\x8a\xaa\x10\x0e\x87\x09\x04\ \x02\x9f\xfb\x8c\x36\x26\x84\x88\xdc\x18\xfb\x14\x45\x59\x13\x8f\ \xc5\xd1\x34\x8d\xc5\x5a\x8d\xae\x8e\x4e\xd1\xd9\xd9\xf9\xba\x10\ \xe2\x7b\x42\x88\x47\x84\x10\x9e\x9b\xfc\x3e\xbb\x03\x42\x08\x03\ \x78\xfd\xb1\xad\x23\x4f\x84\x9b\x9b\xbd\x6b\x86\x87\xd1\x3c\x1e\ \x8e\xfe\xfe\x28\x86\xae\x23\x25\x5c\x2b\x14\xb8\x34\x39\x35\x1a\ \x4f\xc6\xdb\x0d\xc3\xdb\xe1\xf3\xf9\xb0\x6d\xeb\x72\x66\x7a\x2a\ \xdf\xdf\xd7\xff\x80\xdf\xef\xc7\xe3\xf1\x20\x81\xad\x5b\xb6\xb0\ \x64\x2d\x93\xc9\x64\xc9\x66\x33\xb5\x3f\x1d\x3b\xf6\x16\xf0\x2d\ \x29\xe5\xf2\xed\x00\x7e\xb1\xef\x3b\xfb\xf6\xad\x59\xbd\x5a\x39\ \x71\xf2\x04\xad\xad\xad\x5c\xb8\x70\x91\x7a\xdd\x24\x11\x4b\x60\ \xd6\x4d\x8a\xc5\x22\xb5\x5a\x8d\x50\xa4\x19\x5d\xd7\xf1\x7a\xbd\ \xc4\xe3\x09\xc6\x2f\x5e\x40\xd7\x3d\x34\x37\x5f\x9f\xcf\xe7\xf3\ \x04\x83\x01\x1e\x78\xf0\x41\x12\xf1\x04\xdd\xdd\xdd\xbc\xf5\xf6\ \x5b\xf2\x57\x6f\xbc\xb1\x5f\x4a\xf9\xa3\x9b\xaa\x40\x08\xd1\xb3\ \xfb\x9b\xbb\x9f\x7b\x7c\xe7\x4e\xa5\x5a\xad\xd2\xd6\xda\xc6\x99\ \x33\x67\x70\x1c\x07\x29\x25\xb3\x73\xb3\x18\x86\x81\xaa\xaa\xf8\ \xfc\x7e\x92\x89\x24\xc3\x43\x83\x58\x96\xcd\x87\xe7\xcf\x63\x3b\ \x0e\x3e\xd5\x4b\xad\x56\xa3\x54\x2e\xa3\x08\x81\x69\xd6\x39\x73\ \xe6\x2c\x5f\x7f\xf2\x49\x74\x5d\x67\xcf\xee\x3d\xc2\xac\xd7\x7f\ \x20\x84\xf8\x8d\x94\xf2\xc3\x7f\x03\x88\x47\xe3\x2f\xee\xd8\xbe\ \xdd\x73\xe2\xe4\x49\x32\x99\x69\xf2\xb9\x3c\x8e\x63\xb3\x58\xab\ \x61\xe8\x06\x1e\x8f\x87\x46\xa3\x81\xeb\xb8\xf8\xfd\x41\x52\x2d\ \x29\xd6\xad\x5b\x87\x61\x78\x29\x14\x4b\x54\xca\x15\x2c\xcb\xc2\ \xb6\x6d\x54\x55\x05\xc0\x75\x5d\x7c\x5e\x2f\x27\xdf\x3b\x49\x22\ \x9e\x20\x1e\x8f\xf3\xec\xde\x67\x7c\x47\x8e\x1c\x39\x70\xa3\xb4\ \xaf\x03\x08\x21\xda\x9e\xd9\xbb\x77\xe7\xc4\xc4\x04\xa1\x50\x88\ \xce\x8e\x0e\x2c\xcb\xa6\x5c\x2e\x93\xcb\xe5\x31\x74\x9d\xe6\x68\ \x94\x80\xdf\x8f\x94\x92\xc5\x85\x2a\xd9\x4c\x86\x53\xa7\x47\xa5\ \xe1\xf5\x8a\xc9\xc9\x09\x6c\xcb\x42\xd3\xd4\x4f\xcd\xab\xd5\x2a\ \xd1\x58\x94\x47\x37\x6f\x26\x16\x8f\x13\x8d\x46\x69\x0a\x06\xc9\ \xce\xcc\xb0\x6b\xd7\xae\xcd\x42\x88\x41\x29\xe5\xc7\x1a\x40\x28\ \x14\xfa\x79\x5f\x5f\x9f\xb1\x76\xcd\x5a\xa6\xa6\xa6\x30\x4d\x93\ \xb6\xb6\x36\x90\x92\xab\xb3\xb3\x94\x2a\x65\x34\x8f\x06\x52\xe2\ \xf7\xfb\xd1\x75\x0f\xf3\xf3\x39\xc6\xc6\x3e\x58\xd0\x0d\x9d\x74\ \xaa\x25\xa4\x6a\x2a\x42\x08\x00\x1c\xd7\xb9\x7e\x10\x5d\xc9\x62\ \xad\x86\xeb\xba\x94\x2b\x65\xe2\xb1\x38\x9d\xab\x56\xb1\x61\xfd\ \x06\xcf\xd1\xa3\x47\x0f\x01\x3b\x04\x90\x7c\xfe\xb9\xe7\x67\xae\ \xce\x5e\xd5\xab\xe5\x12\xb1\x48\x88\x50\x30\x48\x63\x69\x89\xf9\ \xf2\x02\x9f\x7c\xf2\x37\x6c\xdb\x26\x1e\x8f\x51\xad\x2e\xd0\xdb\ \xdb\x83\x65\xd9\xd4\x4d\x93\x62\xb1\x58\x35\x74\x43\x09\x86\x82\ \x41\x9f\xcf\x8f\xa6\x2a\x98\x66\x9d\xfe\xbe\x3e\xfe\x3e\x31\xc1\ \xb5\x42\x81\x54\x2a\x81\xcf\xa3\xd1\x1c\x6e\x62\xd9\x72\x99\xbb\ \x56\x20\xd5\x92\x26\x95\x4c\x5a\x2f\xbd\xf2\xf2\xb0\x1a\x0e\x87\ \x5f\x74\x1c\x7b\xa3\xa1\x0a\x94\xc5\x79\x3a\xe3\x21\x3a\x52\x51\ \xba\x3b\xdb\xe8\xbf\xaf\x93\x50\x53\x80\x89\xe9\x19\x92\xc9\x24\ \xf5\xba\xc9\xc8\xd6\x11\xd2\x2d\x2d\x4c\x67\x32\xd4\x6a\x8b\xf3\ \x8a\xaa\xda\xcd\x91\x48\xf0\xe9\xa7\x9e\x22\x18\x6c\xa2\x54\x2a\ \xd1\xd7\xdf\xcf\xd8\xd8\x18\x2d\xa9\x18\x01\xc7\xa4\xbf\x23\x45\ \x77\x47\x0b\xfd\x5d\xed\xdc\xdf\xbd\x8a\x42\xa9\xc8\x64\x76\x46\ \x2d\x5c\xbb\x16\x51\x37\x6e\xd8\xf0\xe6\x72\xa3\x61\x88\xd2\x65\ \x82\x4e\x0d\xbb\x30\x8b\x5b\x2b\x61\x2d\x96\x91\x8e\x05\xf5\x1a\ \xf3\xa5\x0a\x75\xdb\xc5\x71\x6c\xba\xbb\x7b\x18\x1e\x1e\xe6\xdc\ \xb9\xbf\x32\x31\x39\xf1\x6d\xdb\xb1\xcf\x47\x22\x91\x6d\xdd\x3d\ \x3d\x0c\xf4\xf7\x73\xea\xf4\x29\x66\xb2\x59\x3c\x8a\x20\xb0\x54\ \x44\x5d\x2c\x40\xbd\x8a\x52\xaf\xa2\x2e\xd7\x09\xf8\x74\xc4\x52\ \x8d\x73\xe3\x93\xf4\x0d\xdc\x3f\x20\xd6\x7f\x61\xbd\xa3\xba\xcb\ \x4a\xb0\x7a\x99\x84\x01\x5d\x51\x3f\x9a\x2a\xf0\xfa\xfc\xd8\x52\ \x30\x71\x75\x9e\x59\x19\xe2\xfc\xdc\x02\xbd\x3d\xbd\xb2\x66\xd6\ \x5c\xdb\xb6\xeb\x73\xb9\xdc\x81\x5c\x2e\xb7\x1f\x20\x95\x4a\xfd\ \xb8\x35\x95\xfe\xbe\xa6\x7b\xf4\x64\x32\xa9\x8e\x7f\xf4\x91\x88\ \xf9\x55\x12\x76\x99\xbe\x96\x30\x01\x8f\xc0\xf0\x78\xd0\x35\x85\ \x7c\xa5\x46\x65\xd9\x65\xa2\xe1\xc3\xf6\xc7\x10\x9f\x7f\xe8\x61\ \x57\xb3\xea\xa2\xc3\xce\xd1\x11\xd2\x08\xfb\x0d\xe2\x91\x26\x96\ \x1d\x97\x5c\xa1\x8c\xa2\x2a\x4c\xca\x38\xa3\xd3\x25\xaa\xd5\xca\ \x9e\x42\xb1\xf8\xda\x9d\x9a\x5b\x3a\x9d\xde\x26\x10\xef\xf6\x26\ \x82\xb4\xc9\x12\xf1\x90\x97\x74\x38\x48\xd0\x23\xb0\x2c\x0b\xe9\ \x58\xf8\xd2\xad\x1c\x9b\x76\xc9\x54\x96\xd0\x9a\x42\x4d\x79\xcb\ \x32\x52\x46\xbd\x4a\x6b\xc4\xa0\x2b\x11\x22\x12\xf0\x62\x39\x2e\ \x09\x9f\xc2\xf8\x6c\x99\xe6\xf6\x1e\xa2\x95\x49\x8a\xa5\xe2\x11\ \x56\x88\xb9\xb9\xb9\x63\x83\x03\x03\xc4\x5a\x5b\xd1\x66\xcb\x74\ \x84\xbc\x74\x34\xfb\x88\x06\x74\x70\x2d\x4a\x0b\x26\x53\xf3\x65\ \xdc\xc0\x2a\x42\xd2\xac\x2a\x57\xae\x5c\xf9\x6a\xdd\x6c\xe0\x5f\ \xfd\x08\x32\x92\x44\x2c\xd7\xd0\xa5\x85\xd2\x58\x00\xd7\xa1\x75\ \xd3\x57\x98\xab\xbb\x28\xaa\x72\xa1\x52\xa9\x14\x57\x02\x90\x52\ \x3a\x91\x48\x64\x34\x57\x69\xd0\xf5\xc5\xed\x68\xaa\x8a\x62\x37\ \x30\xa4\xc4\x87\x85\xaf\xa5\x0b\xf5\xa1\x27\xc8\x17\x4a\x64\xb3\ \x33\x4f\x0b\x29\x25\x1b\x37\x6e\x1c\x31\x74\xfd\xdd\x81\xde\x6e\ \xf1\xe8\xda\x3e\x3a\xe2\x61\xa4\xee\x23\x33\x5f\xe1\xcf\xa3\x63\ \x5c\xca\x5e\x9e\x3c\x7e\xfc\xf8\x90\x94\x72\x69\x25\x80\x1b\x17\ \x9b\xb2\x69\xd3\xa6\xf3\x02\x86\x76\x8d\x6c\x66\x20\x1d\x21\x1a\ \x6a\x62\xc9\x85\xd3\x17\x2f\x71\x7c\xf4\x03\x39\x5f\x2c\x3e\x7b\ \xf6\xec\xd9\x57\x3f\x6d\x46\xed\xed\xed\xb1\xfb\xba\xba\x7e\xd2\ \x9a\x4c\x7c\x59\x3a\x76\xd8\xeb\xd1\xe4\xd5\x7c\x3e\x7b\x65\xbe\ \xf8\xc3\xf1\xf1\xf1\x5f\xff\x37\xc6\xff\xc9\xf1\xd8\xb6\x6d\x5b\ \xaa\xd5\xea\x2f\x3d\xba\xbe\x2a\x18\x08\x6a\xc1\x80\xdf\x2c\x15\ \x0a\x7f\x79\xef\xfd\xf7\x5f\x30\x4d\xf3\xf2\x4d\xdd\xf0\x46\xfc\ \xf3\x8d\xe0\xfe\x0f\xa6\xb7\x0a\x15\x08\x70\xfd\xda\xaf\xdf\xc8\ \x7f\x51\xde\xfb\x9a\xdd\x03\xb8\xdb\x00\xff\x00\x07\x41\x1b\xa7\ \x56\xba\x44\x3a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\x91\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x35\ \x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\xdb\xdd\xde\x00\x00\x00\xcf\xd0\xd0\x5f\x62\x62\x00\ \x00\x00\x63\x66\x65\x00\x00\x00\x67\x6c\x6a\x6a\x6e\x6b\x00\x00\ \x00\x5a\x5e\x5c\xc2\xc3\xc3\x4d\x51\x4f\xb8\xbc\xbd\x43\x45\x45\ \x00\x00\x00\xf7\xf7\xf7\xf0\xf1\xf1\xf1\xf1\xf2\xf2\xf3\xf3\xf3\ \xf3\xf3\xf3\xf4\xf4\xf4\xf4\xf4\xf4\xf5\xf5\xf5\xf5\xf5\xf5\xf6\ \xf6\xf6\xf6\xf6\xf6\xf7\xf7\xfb\xfb\xfb\xe7\xe8\xe8\xe8\xe9\xe9\ \xe9\xea\xeb\xeb\xec\xec\xec\xec\xec\xec\xed\xed\xed\xee\xee\xee\ \xef\xef\xef\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\xf1\xf2\ \xf2\xf7\xf8\xf8\xe9\xea\xea\xea\xeb\xeb\xf2\xf2\xf2\xf8\xf8\xf8\ \xf9\xf9\xf9\xed\xed\xed\xee\xee\xee\xfa\xfa\xfa\xad\xad\xad\xa9\ \xa9\xa9\xfc\xfc\xfc\xaa\xab\xab\xab\xab\xab\xfd\xfd\xfd\xaf\xaf\ \xaf\xfe\xfe\xfe\xb0\xb0\xb0\xb2\xb2\xb2\xfa\xfb\xfb\xe9\xe9\xe9\ \xe4\xe4\xe4\xe2\xe2\xe2\xe3\xe3\xe3\xdb\xdd\xde\xb9\xb9\xb9\xeb\ \xeb\xeb\xd6\xd6\xd6\xcb\xcb\xcb\xc8\xc8\xc8\xce\xce\xce\xcf\xd0\ \xd0\xa0\xa1\xa1\xc1\xc1\xc1\xe5\xe5\xe5\x99\x9b\x9b\xb6\xb6\xb6\ \xfa\xfa\xf9\x92\x96\x94\xdb\xdb\xdb\xf9\xf9\xf8\xe1\xe1\xe1\x8d\ \x90\x8d\xd8\xd8\xd8\xbb\xbb\xbb\xdc\xdc\xdb\x8e\x90\x90\xcd\xcd\ \xcd\xc3\xc4\xc3\x99\x9c\x9a\xee\xf0\xf1\xba\xbe\xbf\xa5\xa6\xa6\ \xae\xae\xae\xc2\xc2\xc2\xff\xff\xff\xc1\xa5\xb5\xa9\x00\x00\x00\ \x15\x74\x52\x4e\x53\x00\x25\x4b\x4c\x81\xfa\x45\xfe\x98\x03\xa6\ \x02\xb6\xc4\x01\xae\xfe\x92\xf7\x78\x3b\x70\x83\xd4\xd9\x00\x00\ \x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\ \x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\ \x00\x00\x01\xa8\x49\x44\x41\x54\x38\xcb\x85\x93\x59\x5b\x82\x40\ \x14\x86\x53\x6c\xb5\xbd\x20\x01\x47\xa0\xd2\xca\x5c\x4a\xb0\xa9\ \x29\x50\x2b\xdb\xf7\x7d\xdf\xfb\xff\x7f\xa1\x39\x73\x40\xd0\x2e\ \xfc\x6e\xb8\x78\xbf\x39\xe7\x7d\x80\xe9\xe9\xe9\x9a\x58\x5c\xfa\ \x9f\x78\x2c\x2c\xc4\x65\x65\x26\xa5\x6a\x7a\x3a\x4d\x48\xc6\x30\ \x4d\x19\x62\xc5\x23\x05\x65\x76\x6e\x3e\x9b\x5b\x58\x5c\xca\x2f\ \x17\x94\x62\xb1\x04\x29\x47\x0a\x52\x69\x65\x35\x2b\xb0\x52\x2c\ \x55\x52\x29\x55\x55\x35\xd5\x96\x22\x05\x55\x70\xc0\xb0\x49\xe7\ \x9b\x08\x71\x12\xa1\x8a\xa4\x65\xab\x6b\xf9\x82\xc2\x31\x87\x19\ \xc3\xe0\x1e\x26\x5d\x0f\x55\x24\xbd\x0a\xc7\x2b\x80\x0d\xae\x68\ \x43\xac\x8d\x50\x45\x22\x9c\x97\x52\x9a\x4e\x0c\xa0\x8e\xe3\x50\ \x4a\xd9\x66\xa8\x22\x11\xc1\xd3\x19\x53\xb6\x05\x84\xb0\x2d\x54\ \x11\x05\x03\x38\x3f\xee\x63\x0b\xe2\xae\xa3\x8a\x28\xc8\x45\x9f\ \x07\xd4\x62\xbc\x80\x2a\x58\xa8\x68\x69\xe4\xc0\x30\xae\x87\x2a\ \xa2\x50\x56\xf5\x4c\x84\xbb\x90\x9a\x87\x2a\xa2\x60\xeb\xc4\x44\ \x1e\x60\x28\xa0\x0a\x16\xf8\x02\x9f\x03\xc2\xd4\x51\x45\x14\x1c\ \x02\x0b\x22\x1c\x1e\x0d\x54\xc1\x42\x30\x40\x60\xd7\xa2\x44\x27\ \xdb\x0d\xdc\xe4\x17\x5a\x03\x6a\x35\xe6\xe4\x77\x76\x9b\x7b\xfb\ \x07\xd1\x82\x6c\xb7\x06\x30\xf9\xf0\xe8\xf8\xe4\xf4\xec\xdc\x42\ \x15\x51\xa0\x62\x03\x0e\xa0\xb9\x8b\x9a\x4b\x2f\xaf\x98\xaf\x22\ \x3e\x16\x2d\xfb\x1b\xf8\x80\x4a\xf3\xda\xbd\xd9\xbd\x65\x81\x0a\ \x16\x50\x01\x06\x58\xb9\xbb\xc6\xfd\xc3\xa3\x1b\xa8\xf4\xf6\x75\ \x14\xe8\xce\xd3\xf3\xcb\xab\x1b\xa8\xf4\x0f\x0c\xc2\x4f\xdb\x56\ \x78\x7b\xff\x60\x2d\x95\xa1\xa4\xf8\xab\x59\xf8\x8a\xac\xcf\xaf\ \xef\x50\x65\x38\x19\xbd\x38\x09\xef\xc7\xf3\xea\xf5\xdf\x50\x65\ \x64\xb4\xed\x82\xfd\x53\x19\x6b\xe7\x9d\x2a\xe3\x13\x1d\xbc\x43\ \x65\x72\xaa\xcb\x1d\x9e\xee\x7e\xe9\x83\xfc\x01\x3b\x85\x89\x03\ \x89\xbc\xca\xc4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x04\x28\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x16\ \x50\x4c\x54\x45\xff\xff\xff\x71\x71\x71\x54\x54\x54\x37\x8c\x37\ \x36\x8b\x36\x38\x8b\x36\x38\x8b\x36\x37\x89\x37\x72\x72\x72\x3c\ \x8d\x38\x39\x8a\x37\x39\x8a\x36\x37\x87\x34\x54\x54\x54\x34\x83\ \x34\x37\x80\x37\x32\x81\x31\x2f\x7d\x2f\x2d\x79\x2e\x2e\x76\x2e\ \x2c\x75\x2c\x29\x74\x2b\x71\x71\x71\x25\x6e\x2a\x60\x60\x60\x24\ \x6b\x26\x21\x6a\x27\x1f\x64\x26\x1b\x64\x24\x53\x53\x53\x1e\x61\ \x22\x1a\x60\x22\x18\x5b\x21\x1b\x5b\x24\x17\x57\x1d\x15\x56\x1f\ \x11\x4f\x1c\x12\x52\x1b\x10\x4c\x19\x0d\x49\x1a\x0a\x45\x18\x0a\ \x46\x18\x09\x49\x1b\x08\x3f\x15\x06\x41\x16\x72\x72\x72\x68\x68\ \x68\xfc\xfc\xfc\xf8\xf8\xf8\xf3\xf3\xf3\xee\xee\xee\xe9\xe9\xe9\ \xe4\xe4\xe4\xe0\xe0\xe0\x5e\x5e\x5e\x54\x54\x54\x5d\xa0\x48\x38\ \x8b\x36\xde\xf2\xb4\x96\xc2\x6b\xf6\xf6\xf6\xe6\xe6\xe6\xdc\xf0\ \xb1\xd7\xee\xab\xbc\xda\x8c\x5a\x9d\x43\xf0\xf0\xf0\xe1\xe1\xe1\ \x36\x88\x35\xcc\xe6\x9d\xca\xe4\x98\xc6\xe1\x93\xc0\xdd\x8b\x83\ \xb4\x55\x33\x83\x33\xc0\xdc\x89\xbc\xdb\x84\xb9\xd8\x80\xb6\xd6\ \x7b\xb3\xd3\x78\x9d\xc5\x62\x4f\x93\x39\x2f\x7e\x30\xb2\xd3\x78\ \xb0\xd2\x75\xad\xd0\x6f\xa9\xcd\x6b\xa8\xcb\x67\xa4\xc9\x62\x9f\ \xc6\x5e\x6e\xa5\x3e\x2c\x79\x2e\xa4\xca\x64\xa2\xc8\x5f\x9f\xc6\ \x5b\x9c\xc4\x57\x9a\xc1\x55\x98\xbf\x51\x94\xbe\x4d\x86\xb4\x41\ \x44\x89\x2f\x29\x73\x2c\x97\xc0\x51\x95\xbe\x4e\x92\xbc\x4a\x90\ \xba\x47\x91\xbb\x43\x92\xbd\x40\x91\xbd\x3d\x8f\xbd\x3b\x65\x9e\ \x2e\x25\x6e\x2a\x79\xa7\x29\x78\xa6\x27\x77\xa5\x25\x75\xa4\x24\ \x76\xa6\x22\x7b\xac\x20\x7f\xaf\x20\x81\xb3\x1f\x85\xb6\x1e\x87\ \xb8\x1d\x86\xb8\x1b\x66\xa0\x1f\xfa\xfa\xfa\xf1\xf1\xf1\x22\x69\ \x27\x5f\x92\x07\x61\x94\x07\x6a\x9d\x07\x71\xa5\x08\x79\xad\x08\ \x7f\xb3\x09\x84\xb8\x09\x86\xba\x0b\x55\x94\x19\xf5\xf5\xf5\xec\ \xec\xec\xe3\xe3\xe3\x1e\x64\x25\x67\x9a\x07\x70\xa4\x08\x79\xac\ \x08\x81\xb5\x09\x88\xbc\x0a\x7a\xb1\x0f\x33\x77\x20\x1b\x5f\x23\ \x62\x95\x07\x6b\x9f\x07\x75\xa9\x08\x7e\xb2\x09\x85\xba\x0b\x56\ \x92\x17\x18\x5a\x21\x64\x98\x07\x6e\xa2\x08\x78\xac\x08\x6e\xa6\ \x0d\x2e\x6d\x1d\x14\x55\x1e\x66\x99\x07\x6f\xa2\x09\x47\x82\x13\ \x11\x4f\x1c\x55\x8b\x0b\x22\x5e\x18\x0e\x4a\x1a\x5d\x90\x08\x36\ \x6e\x10\xf9\xf9\xf9\xf2\xf2\xf2\xeb\xeb\xeb\x1a\x53\x14\xfb\xfb\ \xfb\xf4\xf4\xf4\xed\xed\xed\xff\xff\xff\xc8\x70\x59\x46\x00\x00\ \x00\x2d\x74\x52\x4e\x53\x00\xb4\xb4\x3c\x4b\xf7\xb7\x1c\x80\xf0\ \x62\xf0\x62\x80\xb7\x1c\xf0\x62\xb7\x1c\xf0\x58\x87\xe1\x08\xf0\ \x54\xb7\x1c\x87\xf0\x62\xb7\x1c\xf0\x62\xb7\x1c\xf0\x62\xf0\xb7\ \x1c\x3d\x53\x8e\x0d\xc4\x77\x00\x00\x00\x01\x62\x4b\x47\x44\x00\ \x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\ \x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x01\x46\x49\x44\x41\ \x54\x38\xcb\x63\x60\xa0\x1b\x60\xd4\x45\x01\x8c\x18\x0a\xf4\xf4\ \xc1\xc0\xc0\xd0\xc8\xd8\xc4\xd4\xd4\x54\x0f\x43\x81\x19\x8a\xbc\ \xa9\x19\x86\x02\x26\x73\x14\xc0\x44\x5d\x0f\x30\xb3\x10\x50\xc0\ \x6a\xc1\xc6\x8e\x22\xc0\x01\xf7\x2d\x07\x98\x6f\x69\x65\xcd\xc9\ \x85\xe1\x65\x1b\x23\x5b\x98\x6f\x2d\xed\xec\x1d\x1c\x91\x0d\x01\ \x79\xd9\xc0\xc9\xd8\x19\xe6\x5b\x17\x57\x37\x77\x0f\x4f\x6e\x1e\ \xb8\x02\x5e\xb8\x6f\x79\xc1\x7c\x2f\x6f\x1f\x5f\x3f\xff\x80\x40\ \x3e\x7e\x1c\x8e\x0c\x0a\x0e\x09\x0d\x0b\x8f\x88\x8c\x12\x10\xc4\ \xae\x20\x3a\x3c\x26\x36\x2e\x3e\x21\x31\x29\x39\x45\x48\x18\x9b\ \x82\xd4\xf8\x84\xb4\xf4\x8c\xcc\xac\xec\x9c\xdc\x3c\x11\x51\x64\ \x6f\x8a\x41\x14\xe4\x17\x14\x16\x15\x97\x94\x96\x95\x57\x54\x56\ \x55\x8b\x43\xbd\x59\x53\x6b\x0c\xf4\xa5\x04\x58\x41\x5d\x7d\x7d\ \x7d\x43\x63\x53\x73\x4b\x6b\x5b\xbb\xa4\x14\xd4\x9b\x1d\x9d\x5d\ \x40\x5f\x42\x14\x74\x03\x15\xf4\xf4\xf6\xf5\x4f\x98\x38\x49\x5a\ \x06\xc5\x9b\xb2\x10\x2b\x26\xd7\xd7\x4f\x99\x3a\x6d\xfa\x8c\x99\ \x72\xf2\xd8\x7d\x31\xab\xbe\x7e\xf6\x9c\xb9\xf3\xe6\x2b\x28\xe2\ \x08\x87\x05\xf5\xf5\x0b\x17\x2d\x56\x52\xc6\x19\x9b\x4b\xea\xeb\ \x97\x2e\x53\x51\x45\x08\x30\xa2\x25\xde\xe5\x2b\x56\xaa\xa9\x63\ \xc4\xe6\xaa\xd5\x6b\x4c\xa0\xd1\xa9\xb1\x56\x53\x0b\xc5\x48\x90\ \x37\xd7\xad\xdf\x60\x0b\x4b\xbc\xda\x3a\x68\x76\x32\xd1\x2c\xf1\ \x92\x09\x00\x48\x89\x62\xf3\x3b\x17\xdd\x71\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xeb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\xc5\ \x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\xd1\xd1\xd1\xaa\xaa\xb6\ \x93\x97\x9e\x81\x81\x86\x70\x72\x74\x6c\x6e\x6f\x67\x69\x6d\x64\ \x64\x69\x61\x61\x65\x55\x55\x55\xff\xff\xff\xc3\xc9\xce\xa8\xab\ \xb2\x94\x97\x9c\x80\x82\x84\x6e\x70\x72\x6c\x6e\x6f\x68\x6a\x6c\ \x64\x65\x68\x61\x62\x65\x5d\x5e\x61\x5a\x5a\x5e\xee\xee\xee\xc5\ \xc5\xcf\xa5\xa9\xb0\x94\x94\x9c\x7e\x81\x83\x6f\x6f\x73\x68\x69\ \x6c\x64\x66\x68\x60\x60\x64\x5d\x5e\x61\x55\x57\x58\x66\x66\x66\ \xc2\xc7\xcc\x92\x95\x9b\x7d\x80\x84\x6b\x6b\x6f\x69\x69\x6d\x64\ \x65\x67\x50\x51\x54\x40\x40\x60\xf0\xf0\xf0\xc2\xc2\xcc\xa7\xa7\ \xb1\x94\x94\x9c\x80\x80\x80\x71\x71\x71\x69\x69\x6f\x69\x69\x6b\ \x64\x65\x68\x60\x61\x64\x4b\x4d\x4f\x46\x46\x46\x41\x41\x44\xff\ \xff\xff\xbf\xbf\xbf\x6d\x6d\x6d\x60\x63\x65\x5c\x5d\x60\x49\x49\ \x4a\x44\x45\x47\x3f\x41\x42\x5d\x5d\x60\x58\x59\x5c\x3f\x41\x42\ \x59\x59\x5b\x54\x55\x58\x3e\x40\x42\x57\x5a\x5c\x54\x55\x57\x3f\ \x40\x42\x66\x66\x66\x5c\x5d\x60\x3f\x41\x42\x5e\x5e\x5e\x58\x58\ \x5c\x53\x54\x57\x3f\x3f\x43\x4e\x4e\x4e\x50\x50\x53\x4a\x4c\x4e\ \x3f\x3f\x41\x48\x48\x4c\x43\x44\x46\x3e\x40\x40\x00\x00\x00\x22\ \x22\x21\x45\x45\x42\x66\x66\x66\x21\x22\x21\x66\x66\x62\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x5a\x5c\ \x58\x59\x5c\x54\x55\x58\x5c\x5d\x60\x50\x51\x54\x50\x51\x53\x4c\ \x4d\x4f\x48\x49\x4b\x44\x45\x47\x44\x45\x46\x47\x48\x4b\x43\x44\ \x46\x58\x59\x5b\x54\x55\x57\x4b\x4c\x4f\x47\x48\x4a\x4f\x50\x53\ \x00\x00\x00\x22\x22\x21\xff\xff\xff\xcf\x47\x6e\xe1\x00\x00\x00\ \x83\x74\x52\x4e\x53\x00\x00\x0b\x2a\x47\x65\x82\x8e\x94\x75\x3f\ \x03\x0b\x2f\x49\x5d\x70\x86\x9e\xb5\xcd\xe5\xd4\x4f\x0f\x30\x4a\ \x5d\x71\x87\xb6\xce\xe6\xfe\xa2\x05\x32\x5e\x72\x9f\xb7\xcf\xbc\ \x08\x11\x32\x34\x1f\x20\x22\x27\x64\xc0\xe7\x98\x16\xaa\x0a\x08\ \x07\x58\xf5\x89\xe8\xe5\x4a\xfb\xd5\x5c\xfe\xc4\x69\xf9\xb3\x0a\ \xaf\xa2\x31\x99\xf3\x91\x0d\x69\xd1\x81\x39\xa1\x67\x3c\xc9\xc9\ \x3c\xc9\x3c\x06\x0b\x11\x17\x1c\x21\x26\x2b\x30\x34\x38\x3e\x40\ \x41\x02\x05\x09\x0e\x12\x16\x1b\x20\x31\x36\x3b\x3f\x39\x2e\x29\ \x24\x1f\x1a\x15\x0c\x07\x03\x01\xe5\x9d\xb1\x13\x00\x00\x00\x01\ \x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\ \x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\ \x01\x04\x49\x44\x41\x54\x38\xcb\x63\x60\x18\x32\x80\x89\x99\x85\ \x95\x8d\x9d\x83\x93\x8b\x1b\xbb\x3c\x0f\x2f\x1f\xbf\x80\xa0\x90\ \xb0\x88\xa8\x98\x38\x56\x05\x12\x92\x52\xd2\x32\xb2\x42\x72\xf2\ \x0a\x8a\xcd\x4a\xca\xd8\x14\xa8\x48\xa9\xaa\xc9\xaa\x6b\x68\x2a\ \x28\xb6\xb4\x6a\x69\x63\x2a\xd0\xd1\xd5\xd3\x37\x30\x34\x32\x36\ \x31\x6d\x6b\x69\x6d\x37\x63\x30\xb7\x40\x53\x60\x69\x05\xa1\xad\ \x6d\x6c\x5b\x5a\x3b\x3a\xed\xec\x1d\x70\x7a\xc7\xd1\x09\xa8\xa0\ \xab\xdb\x19\xb7\x87\x5d\x5c\x81\x0a\x7a\xdc\x70\x2b\x70\xf7\xe8\ \xe8\xec\xed\xf3\xc4\x25\xed\xe5\xdd\x3f\xa1\x63\xe2\xa4\x3e\x1f\ \x9c\x06\xf8\xfa\xf9\x4f\x06\x2a\x08\xc0\x13\xea\x81\x41\xc1\x93\ \xfa\x42\x18\xf0\x82\xd0\xb0\x70\x06\xda\x83\x88\xc8\xa8\x68\xbc\ \x0a\x62\xa6\x4c\x8d\xc2\xab\x20\x6a\xea\x94\x48\xbc\x0a\x62\xa3\ \x22\x23\xe8\xe0\x13\x3a\x02\xc6\xb8\xf8\x84\xc4\xa4\xe4\x94\xd4\ \xb4\xf4\x8c\x88\xcc\xac\xec\xac\xcc\x88\x8c\xf4\xb4\xd4\x94\xe4\ \xa4\xc4\x84\xf8\x38\x90\x8a\x9c\xdc\xbc\xfc\x82\xc2\xa2\xe2\x94\ \xd4\x92\xd2\xb2\xf2\xac\x88\x8a\xf4\xca\xaa\xea\x9a\xda\xba\x84\ \xfa\x86\xc6\x26\x06\x00\x5a\x75\x41\xdc\x59\x8e\xbc\xee\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x22\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ \x00\x00\x9a\x49\x44\x41\x54\x28\xcf\x63\xfc\xcf\x80\x1f\x30\x31\ \xd0\x5c\x01\x0b\x03\x03\x03\x43\x18\xf3\xb7\x12\x46\x4e\x64\x61\ \xc6\x07\x9b\x16\x20\x29\x58\xf5\xd7\x9f\x8d\xb1\x46\x84\x19\x22\ \xf4\x8f\xe1\x35\xc3\x5f\x4f\xb8\x52\x88\x2f\x4c\x58\x65\x6e\xcb\ \xca\xf3\x31\x30\x30\x30\x30\x3c\xff\xf5\x6e\xe7\x06\x3f\x34\x37\ \x9c\xf9\xfd\x27\xf6\xf1\xd7\x7f\x0c\x0c\x0c\x3f\x18\xde\xfc\xfe\ \x9d\x86\xc5\x91\x5b\x0e\xff\xdf\xf4\xe2\x07\x03\xc3\xe3\xaf\xff\ \xcb\xb7\xbe\xc0\xea\x0b\xe6\xdc\xb7\xbf\x9e\xfe\xff\x75\xdf\x64\ \x3a\x8a\x37\xfe\x23\x41\xef\x24\xdf\xbf\x7e\x7a\xff\x51\xc4\x18\ \x50\xb9\xbe\xc1\xff\xd1\x44\x18\x07\x41\x5c\x00\x00\xc4\x2f\x4c\ \xd9\xbf\x2b\x57\xf5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x07\xfe\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x07\x72\x49\x44\x41\x54\x58\xc3\xb5\x97\x5b\ \x6c\x5c\x47\x19\xc7\xff\xdf\xcc\x9c\xcb\xda\xbb\x1b\x7b\xed\xf8\ \x92\xf5\x35\xf7\x3b\x34\xcd\x85\x26\x2d\x4d\x41\x22\xdc\x2f\x42\ \x8d\x50\x79\x80\x17\x2e\xea\x0b\x41\x2d\x3c\x20\xa1\x52\xa9\x20\ \x68\x11\xa9\x78\x00\x01\x7d\x40\x85\x42\x95\x48\xf4\x01\x24\x08\ \x52\x05\x28\x54\x01\x91\xba\x6d\x12\x72\x25\x09\x6e\x62\xc7\xb1\ \x77\xbd\xf6\xee\xd9\x3d\x97\x39\x33\x1f\x0f\x76\x5c\xdc\xd8\x4e\ \x4a\xc2\x27\x8d\xce\xc3\xe8\x7c\xff\xdf\xfc\xff\x33\x47\x67\x88\ \x99\x71\x27\x45\x20\x62\xfc\xef\x4d\xe8\x76\x01\xf6\x1f\x26\x59\ \xe9\x5e\xfd\x40\xde\x6b\x7d\xb8\xc7\xeb\xdf\x5d\xcc\xf4\xaf\x58\ \x91\xe9\x6f\x6b\x71\x0a\x34\x95\x94\xa6\x27\xe2\x91\xb1\xeb\xf1\ \xd5\x7f\x94\xe2\x2b\xbf\x96\x1c\xbe\xfc\x93\x7b\x8f\xeb\xbb\x02\ \xb0\xfd\xd5\x62\x93\x1f\xb9\x5f\x71\xc9\x79\x6c\x6b\xcb\xf6\xb6\ \xc1\xdc\x4a\xb4\xfb\x05\x34\x39\x3e\x7c\xe9\xc2\x40\xa3\x92\x54\ \x50\xd2\x25\x04\x51\x84\x28\x6e\xe0\x72\x70\x62\x0a\xd6\xfe\x30\ \x6d\x4e\x9f\x39\xb4\xf1\x54\xf0\xf6\x9e\x07\x2f\x3c\xda\xb3\x26\ \xf7\xee\xae\x8f\x76\x7d\xf1\xf8\x92\x00\x3b\x8e\xf6\x7d\xc6\x83\ \xfc\xc1\xae\xf6\x07\xbb\xb7\x16\x36\x22\xa6\x2a\x34\x27\x4b\x02\ \x2b\x72\x00\xe3\xe2\xc4\xe4\x10\xa6\x1b\x57\xc6\x89\xf0\xb5\x5f\ \x6c\x1f\x7a\xfe\xc6\xfc\x97\x86\x76\x7d\x6b\x5d\xcb\x9e\x27\x9a\ \xa0\x2a\x5f\x5e\xf9\x74\x61\x41\x00\x02\x89\x77\xfd\x6e\xc5\xd3\ \xc5\xb6\x9e\xc7\x1e\x2a\xbe\x0f\x96\x1a\x30\x6c\xde\x59\xb6\x20\ \x4c\xea\x69\x5c\xaf\xfe\x0b\x6c\xe2\x67\xa3\xcb\xab\x1e\xcf\xad\ \xba\xfc\xcd\xac\xd3\xf5\xc4\xa6\xf6\xfb\xf0\xfa\xd8\x6f\xf1\xa3\ \x7b\x8e\x91\x5a\xe0\x45\x5a\xf7\x62\xc7\x4b\x6b\x7b\x36\x7c\x7c\ \x53\xe7\x26\x94\xf5\xf8\x3b\x12\xfe\xef\x92\x70\xb0\x6a\xd9\x76\ \x4c\x47\xa5\x03\xa5\x95\xe7\x3e\xe4\xab\xae\x75\x6d\xcd\x2b\x51\ \x4a\x26\xe6\x20\x6f\x72\x60\xcd\xcf\xdb\x0e\xae\x5f\xb1\xe5\xc0\ \xfa\x81\xd5\x08\x4d\x63\x49\x01\x5f\x66\x60\x98\x91\xda\x18\x8c\ \xb7\xfa\x08\x10\x68\x6e\x45\x84\x66\xd9\x0c\xc9\x0a\x56\x58\xd4\ \x74\x15\x59\x95\xc3\x64\xed\x0d\x74\x6f\xfb\xdb\x7c\x07\x06\x7e\ \x56\xf8\x6c\x4f\x73\xcf\x81\x62\xb1\x88\x89\xb8\x7c\xf3\x8a\x48\ \x62\x3a\x0d\x31\xdc\x18\x45\x29\x2e\xe1\x6a\x38\x06\xc3\x06\xed\ \x6e\x01\xad\x5e\x0e\x3d\x5e\x27\x8a\x99\x0e\x64\x84\x0b\x22\xc2\ \x0d\xa6\xd8\xc4\x60\xc6\x1c\xa4\x22\x0f\x66\x76\x6e\xce\x81\xe2\ \x4f\x8b\x19\x2f\x4c\x2e\xdf\x7f\xdf\xfd\x9d\x0d\x15\x2e\xb0\xb9\ \x3c\x9c\xac\x9d\xc3\xe9\xda\xb9\x99\x55\x12\x21\x2f\xb3\x00\x03\ \x35\x13\x20\x23\x1c\x78\xa4\xd0\xa4\x32\xd8\x92\x5b\x8b\x0e\x7f\ \x39\x08\x73\x0c\xe0\x59\x79\x66\x46\xd6\xc9\x21\x89\x2f\xa1\x7a\ \xb1\xef\x2d\x07\xd2\x72\xed\xa9\x8d\x03\x9b\x3b\x4b\x34\x05\x36\ \xf3\x63\x31\x10\x38\x56\x7e\x05\x81\x09\xb0\xdc\xb4\x80\x4f\x6b\ \x2c\x8f\x5b\xc0\x61\x12\x48\xcf\xb1\x7e\xab\x97\xaf\x35\x03\x4e\ \x9f\x87\x88\x43\x5c\x08\x2e\xa0\x12\x57\x30\xd0\xd4\x0f\x29\xe5\ \x3c\x71\x03\x0b\xcf\x68\x58\x06\x36\x2d\x9f\x80\x00\x00\xda\x4f\ \xd2\x0d\xdc\x2f\x38\x3d\x3e\x02\x1d\xa2\xae\xa3\xb9\x91\xa4\x06\ \xaf\x94\xff\x8e\x84\x63\xe4\xae\x78\xc8\xff\xd5\x89\x5a\x43\xef\ \x19\xe9\xe8\x2d\x67\xbe\x3b\x9e\x3b\xf5\xe4\xc8\x32\x6b\xd4\x60\ \x53\xc5\x7d\x32\xfb\x4f\xb7\xd1\x9b\x76\x22\x4b\x2e\xc2\xb4\x8a\ \x91\x68\x18\x69\xaa\x91\xa6\x1a\x3a\xd5\x48\x8c\x46\x92\xa6\x88\ \x8d\x06\x88\x31\x9a\xab\xcd\x44\xd0\xf1\x54\xf6\x83\xfd\x2d\x7d\ \xbf\xe7\xad\xee\xdb\x33\xe7\x2b\xf1\x28\x5f\x8b\xc7\xec\x86\xb8\ \xd7\xe8\xf3\x8d\x33\xbe\xef\xee\x3b\x79\x60\x74\xc1\xa3\xb1\xeb\ \xb9\x81\x41\x61\xe8\xd8\xb2\xf5\xd9\xce\x1a\xd7\x60\xc1\x28\x38\ \x1d\xc8\xa8\x2c\x2c\x33\xcc\xac\x03\x79\x37\x0b\x8f\xca\x70\xd9\ \xce\x44\x60\x24\x7f\xc2\xef\xf2\x78\xd2\x84\x3c\x1b\x9b\x01\x60\ \x22\x4e\xf4\xb5\x78\x4c\xf7\xa9\x8e\x98\xaf\x27\x53\x99\x2e\xec\ \x3d\xf1\xf9\xd1\xe9\x45\x8f\x5d\xd6\x3e\xda\xde\x5a\xe8\xd4\x22\ \x41\x86\x15\x88\x25\x24\x01\xd6\xa6\x30\x6c\x91\xb2\x85\x81\x85\ \xb1\x09\x92\xd0\xa2\xde\x1e\x41\x01\x00\x6b\xde\x68\xb3\x14\x46\ \x36\x31\x00\x12\x00\x31\x80\xc6\x78\x32\xde\x00\x10\xb5\xc7\x4d\ \x8d\xc6\xb2\xf0\xfb\x27\x3e\x5d\x5a\x54\xfc\x81\x23\x03\x5f\x5f\ \xde\xd7\xf6\xb8\x20\x86\xb0\x12\x39\x6a\x87\x10\x2e\x52\xb6\x48\ \xd9\xc0\xb0\x01\x33\x10\x71\x03\x48\x35\xb2\x3a\x45\x6e\xbc\x3e\ \x03\xe0\x93\xe7\x05\x08\x4a\xa1\x8d\x12\x00\x11\x80\x90\x40\x8d\ \x06\x87\x61\xb3\xf2\xc2\x34\xd2\x21\xf9\x38\xb6\x98\xf8\xe7\x4e\ \x3d\xd4\xbb\xb2\xab\xf8\x3d\x27\x05\x04\x2b\x10\xc9\x99\xef\x03\ \x03\x86\x08\xb1\xb1\x48\x6d\x82\xba\x09\x90\xc0\xa0\x59\xe6\xa0\ \x43\x1e\xaf\x87\x3b\x66\x00\xb2\x8e\x87\x49\x04\x13\xb1\x89\xe3\ \x1b\x00\x96\x6d\x64\xd9\x86\x5d\x5e\x4b\x14\x8c\x46\xd5\x4b\xa7\ \xca\x15\x7c\x64\x61\x80\x26\x81\x8e\xa0\xce\xd5\x2b\xd5\x72\x0e\ \x9a\x40\x29\x59\x68\x30\x19\x00\x4c\x44\x06\x44\x44\xc8\x93\x07\ \x21\x08\x10\xe9\x15\x23\x79\xff\xa1\x87\x0f\x61\xf6\x18\xda\xc9\ \x30\x6d\x88\x9a\x88\x63\x02\x45\x44\x14\x59\x36\x11\x80\x48\x10\ \xc7\x96\x11\x60\x23\x16\xad\x1f\x6f\xfc\xd3\xab\x00\x96\xcd\x8b\ \xe4\x57\xfd\x38\xfa\xc8\x30\x6e\x55\x0a\x00\xaa\x71\x32\x9c\x27\ \x2f\x5f\xe6\xda\x8c\x03\x8c\x78\x76\x1f\x44\xd7\xe2\xe9\x78\x7d\ \xa1\x2b\x5e\xab\x64\x1e\xc0\xf4\x2d\x3b\x02\x78\xcf\x0b\x3d\xb0\ \xd3\x42\xed\x7c\xb6\x97\x2d\xb3\x3d\xfe\xd5\xab\xbc\x24\x40\x90\ \x34\xde\xec\xa5\xee\xae\xcb\x3c\xb7\x01\x6f\x3c\xe3\x40\xc7\x71\ \x7e\x99\x9f\x04\xd5\x7a\x1f\x80\x93\xb7\x03\x60\x42\x12\x83\xab\ \xdb\xe4\xa5\x4c\xc9\xb8\x5a\x89\x3d\x7f\x18\x64\x57\x4b\x76\x53\ \x85\x23\x9f\x3a\xcb\x37\x01\x90\x8b\x33\x99\x48\x79\xf0\x90\xcc\ \x8a\xcf\x81\x28\x12\x49\xe0\x85\x49\xd6\xcb\x0c\xdc\xf3\xe7\x8e\ \xf3\xaf\xed\x1d\x8f\x97\x12\xdf\xfd\xcb\xd5\xc8\xdb\x8c\xf7\xa6\ \x9a\xb4\x17\x1b\x25\xa4\x6c\x59\x5b\xc3\xd1\xc7\xd2\x05\x5d\x10\ \x00\x00\xc9\x43\xb2\x26\x2b\x00\x2a\x00\xa6\x66\x47\x55\x91\xa8\ \xba\x24\x6b\xe7\x6a\xe3\xb5\x62\x47\x4b\x5d\x59\x77\xc3\xce\xbf\ \x74\xcb\x25\x33\xad\x43\x15\x37\xb4\xe0\xaa\x9d\x12\x1e\x29\x72\ \x49\x22\xfa\x70\xba\x68\x04\xc4\xcc\x20\x10\x56\x7e\xbb\xfd\x11\ \x7f\x87\xc2\x69\x3d\xa6\x01\xa4\x12\x94\xb8\x42\x69\x4f\x48\xed\ \x90\xd4\x05\xa7\x49\x0b\x8b\x46\xbf\x5f\x98\xaa\xc6\xd1\xb8\xd5\ \x9c\x1c\xdb\x37\xcc\x00\xb0\xfb\xa5\x41\x70\x68\x29\x9f\x36\x51\ \xef\xea\x56\x3a\x1a\x5d\x10\x29\x5b\xa1\xd9\xb2\x66\x93\x6a\x6b\ \xb8\xb4\xaf\xbe\x20\xc4\xcc\x87\x08\x8c\xe6\xd4\x7b\xfd\xbd\xc1\ \x9a\xc1\xd3\xde\x58\x4a\x40\xea\x08\x99\x3a\x24\xb5\x43\x32\x75\ \x85\x4c\x13\x9b\x6a\x87\x64\x98\x69\x72\xf5\x74\x12\x66\x36\x2f\ \xef\x75\x3e\xf9\xc7\xcd\x46\x24\x64\x36\xb5\x74\xdb\x93\xf1\x55\ \x6e\x5e\xe7\xd8\xa1\x68\x98\x3d\xa1\xac\x64\x2b\x04\x1b\x90\x9d\ \xf3\x79\xc1\x9a\x9b\x6a\x20\x39\x7b\xee\xdc\xf5\xca\x4e\x7f\x20\ \x50\x24\x02\x45\x22\x70\x48\xd4\x1d\x92\x75\x87\x64\xdd\x25\x19\ \xba\x42\xc6\xc3\xd5\x72\x62\x24\xa7\x67\x1b\xa3\xa6\xa9\xd3\x33\ \x5e\x8f\x63\x2f\x7b\xe3\xec\xf5\x28\x9e\xd0\x35\x0c\x3d\x38\xc2\ \x27\xf6\x5e\x63\x57\x48\xeb\x92\xb4\xae\x90\xec\xd0\xe2\xa9\xcd\ \xfb\x23\xca\x7e\xc7\x2b\x6c\xeb\xeb\xeb\x1d\x5b\x51\x4b\x27\xf4\ \xb4\xf1\x84\x32\x1e\xa9\x99\xa7\x90\xa9\x4b\x4a\xbb\x42\x46\x0e\ \x09\xad\x48\x1a\x45\x64\x89\x88\x67\x7e\xac\x98\x8f\xec\x3e\xbf\ \xa0\xcd\xab\x5e\x6e\xa3\x6d\xad\xfd\x38\xbc\x6d\xe8\xa6\xf9\x79\ \xe6\x04\xdf\x88\x27\x8f\x8f\x0c\x8f\x6c\x4a\x3b\x1b\x79\x95\x69\ \x28\x88\x50\x91\x08\x15\x89\xc8\x21\x19\x3b\x42\x24\x2e\x49\xed\ \x0a\x65\x3c\xa1\xac\x27\x1c\xce\x08\xc7\xfa\x42\x2d\x2a\x0e\x00\ \x17\xdf\x5f\xe6\xf0\x6a\x74\x6b\x07\x6e\x54\xee\xa0\xd3\xba\xef\ \xde\xcd\xce\x88\xa8\xd8\x72\x52\xb7\xbe\x50\xd6\x13\xca\xfa\x33\ \x4e\x68\x97\x94\x75\x85\xb4\x0e\x09\x96\x24\xf0\xe2\x8e\x37\xee\ \xfe\xcd\x28\xfb\x5c\xc6\xdb\xb3\x66\xc0\x2d\xb4\x66\xec\xd9\xca\ \x18\x7b\x42\xb1\x2f\x1c\xe3\x0b\x65\x3d\x92\xd6\x13\x8a\x1d\x21\ \xf1\xc2\xf6\xd7\xee\xe8\x6e\xb7\xe4\xc5\xa4\xf5\xb0\x2f\xda\x5a\ \xb3\x32\x81\xc1\x07\x8a\xeb\xf8\xdf\x95\x49\x76\x49\xb0\x2f\x14\ \xff\x66\xd7\xa9\x3b\xbb\x54\xde\x0e\x00\x00\xd0\x61\x42\x21\x9f\ \xa1\x76\x3f\x8b\x5d\x1d\x7d\x78\x7e\xc3\xf1\xbb\x22\x7c\xdb\x00\ \xff\xef\x12\x77\xde\xe2\xce\xea\x3f\x3b\x00\xdf\x09\xe0\xe8\x45\ \x6f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x8c\ \x50\x4c\x54\x45\xff\xff\xff\xfc\x85\x6a\xfa\x84\x69\xf9\x82\x67\ \xf7\x80\x65\xf5\x7e\x63\xf3\x7c\x61\xf1\x7a\x5f\xef\x77\x5d\xfa\ \x84\x69\xf9\x82\x68\xeb\x73\x59\xe9\x71\x56\xf9\x83\x68\xf8\x81\ \x66\xe4\x6c\x52\xe2\x69\x4f\xf8\x81\x67\xf6\x7f\x65\xde\x64\x4a\ \xdb\x62\x48\xf5\x7e\x63\xd7\x5d\x43\xf1\x7a\x5f\xd2\x58\x3e\xed\ \x76\x5b\xce\x53\x3a\xe9\x71\x57\xca\x4f\x35\xe5\x6d\x52\xc6\x4a\ \x31\xe1\x68\x4e\xc2\x46\x2d\xdc\x63\x49\xda\x60\x46\xc0\x44\x2b\ \xbe\x42\x29\xd5\x5c\x42\xd3\x59\x3f\xbf\x43\x29\xbd\x41\x27\xcf\ \x54\x3a\xcc\x52\x38\xbd\x41\x28\xbb\x3f\x26\xc8\x4d\x33\xc6\x4b\ \x31\xc4\x48\x2f\xc2\x46\x2c\xc0\x44\x2a\xbe\x42\x28\xbc\x40\x26\ \xba\x3e\x24\xee\x83\x6e\xf4\xa6\x92\xf8\xb4\xa0\xf3\xa6\x91\xe9\ \x7d\x68\xf1\x97\x84\xfb\xbd\xa9\xf8\xa3\x8a\xf6\x89\x6b\xf8\xa2\ \x89\xfa\xbc\xa8\xec\x92\x7f\xf0\x97\x83\xf5\x82\x63\xff\xff\xff\ \xf3\x7e\x61\xf3\x7c\x60\xf9\xb9\xa6\xea\x8d\x7b\xec\x81\x6c\xf5\ \x81\x62\xf4\x80\x62\xf1\x7a\x5f\xf0\x78\x5f\xef\x76\x5d\xf8\xb5\ \xa5\xdd\x70\x5d\xf8\xa1\x88\xee\x73\x5c\xec\x70\x5b\xf1\x93\x82\ \xec\x98\x89\xf8\xb6\xa1\xf4\x84\x67\xeb\x6e\x5a\xea\x6c\x59\xe9\ \x6f\x5f\xf1\xa8\x9b\xf7\xb3\xa0\xf2\x80\x65\xfa\xd9\xd3\xe8\x69\ \x58\xe7\x67\x57\xe7\x6c\x5d\xf1\xa5\x99\xf0\x9f\x8e\xf4\x99\x84\ \xf1\x9d\x90\xf3\xaf\xa6\xe6\x65\x56\xe5\x62\x55\xeb\x89\x7d\xe7\ \x91\x85\xe0\x73\x60\xf7\xb3\xa4\xe3\x61\x54\xe2\x5f\x53\xf2\xa9\ \x9f\xd1\x61\x50\xe6\x88\x78\xf5\xb0\xa3\xed\x92\x89\xec\x92\x88\ \xe1\x5d\x52\xdd\x7d\x6f\xe3\x84\x75\xf4\xac\xa1\xec\x8b\x7f\xe4\ \x67\x5c\xe3\x66\x5b\xea\x87\x7d\xf1\xa8\x9f\xdd\x7c\x6f\xd4\x64\ \x52\xe7\x90\x84\xee\xa0\x95\xed\x9f\x95\xe5\x8e\x83\xce\x5d\x4c\ \x6f\xfc\xdd\x9c\x00\x00\x00\x35\x74\x52\x4e\x53\x00\x23\x7d\xdb\ \xf3\xf3\xdb\x7d\x23\x53\xe6\xe6\x53\x53\xf4\xf4\x53\x22\xe5\xe5\ \x22\x7e\x7e\xdb\xdb\xf6\xf6\xf6\xf6\xdb\xdb\x7e\x7e\x22\xe5\xe5\ \x22\x53\xf4\xf4\x53\x53\xe6\xe6\x53\x23\x7d\xdb\xf3\xf3\xdb\x7d\ \x23\xdb\x37\x2b\x78\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\ \x1d\x48\x00\x00\x00\xd3\x49\x44\x41\x54\x18\xd3\x63\x60\xc0\x06\ \x18\x99\x98\x59\x58\xd9\xd8\x39\x60\x7c\x4e\x2e\x53\x33\x73\x73\ \x0b\x4b\x6e\x1e\x08\x9f\x97\xcf\xca\xda\xc6\xd6\xd6\xce\xde\x81\ \x5f\x00\xc4\x17\x14\x72\xb4\x76\x72\x72\x76\x76\x71\x75\x73\x17\ \x16\x01\x0a\x88\x7a\x58\x3b\x79\x7a\x39\x3b\x7b\xfb\xf8\xfa\xf9\ \x8b\x01\x05\xc4\x2d\x02\xbc\x5c\x5c\x9d\x9d\x7d\x03\x83\x82\x43\ \x24\x80\x02\x92\xa1\x61\xae\xde\x3e\xce\xce\x41\xe1\x11\x91\x51\ \x52\x40\x01\xe9\xe8\x18\x1f\xdf\xc0\x58\xe7\x88\xb8\xf8\x84\x44\ \x19\xa0\x80\x6c\x52\x72\x60\x50\x78\x4a\x6a\x7c\x5a\x7a\x46\xa6\ \x1c\x50\x40\x3e\x2b\x3b\x3c\x22\xce\xd9\x39\x3d\x27\x37\x2f\x5f\ \x01\x28\xa0\xa8\x54\x50\x18\x9f\x56\x54\x9c\x5b\x92\x57\xaa\xac\ \x02\x72\x88\xaa\x5a\x59\x79\x45\x65\x55\x75\x4d\xad\xba\x06\xc4\ \xa9\x9a\x5a\x75\xf5\x0d\x8d\x4d\xcd\xda\x3a\x30\xcf\xe8\xea\xe9\ \x1b\x18\x1a\x19\x9b\x60\xf5\x39\x00\x93\x95\x2e\x08\xa8\x06\x57\ \x78\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\xb6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x08\x2a\x49\x44\x41\x54\x58\xc3\xc5\x97\x7b\ \x70\x5c\x55\x1d\xc7\x3f\xe7\xdc\x7b\xf7\xbd\x9b\xcd\x26\x6d\x42\ \x1f\x69\xa0\x0d\x2d\x4e\x29\x84\xb7\xaf\x2a\x4c\x71\x46\x45\x47\ \x40\x51\xa0\x22\x30\x14\x14\x10\x4c\x15\x81\x0e\xa8\x03\x28\x96\ \xaa\x23\x74\xc4\x82\xd6\xfa\x87\xc3\x30\x80\x0e\xe3\x20\x22\xe2\ \x80\xd2\x4e\x0d\x32\xb4\x5a\x28\x2d\xb4\xa5\xaf\x90\x26\x24\x9b\ \xdd\xec\xeb\xbe\xce\x39\xfe\xb1\xbb\x21\x09\xa9\xd4\x7f\xf4\xcc\ \xfc\xe6\xee\xd9\x7b\xcf\xf9\x7d\x7f\x8f\xef\xef\x77\x8e\x30\xc6\ \xf0\xff\x1c\x72\xda\x5c\xfc\xaf\x01\xd8\xd3\xe6\x66\x75\x5f\xdf\ \x9f\x8d\x36\x2b\x9a\x7f\x9c\xf5\xe1\xe5\x9c\xd0\xb3\x04\xc7\x92\ \x30\xcd\x59\x42\xd4\x31\x4b\x29\x10\x48\x90\x02\xa1\x35\xc2\xb6\ \x10\x08\x84\x00\x29\xea\x66\x85\xa1\xe2\xb5\x57\xff\xc5\xdf\x37\ \xff\x6d\x62\x7d\x2e\x97\x7b\x6e\x3a\x00\x6a\xd5\xda\x8a\x1d\xaf\ \xee\xa0\xa3\xa3\x93\xd9\xb3\x66\xd1\x36\x7b\x36\xf3\xe7\x2f\x20\ \x1a\x71\x66\xb4\xa0\x81\x01\x01\x94\x1e\x7f\x94\xfc\x2f\x37\x10\ \x59\xd4\xc3\xac\xaf\xdd\x48\xfc\xd4\xde\x06\x08\x41\xd5\xf3\x79\ \x67\x78\x08\xd7\x75\x27\xd6\x8e\x8e\x8e\xae\x78\x0f\x00\xad\x35\ \xc9\x64\x12\xc7\xb6\xd1\x5a\x23\x31\x48\x29\x38\x38\x5c\x98\x59\ \x79\x63\x14\x0f\x3e\xc7\x82\xb1\x3f\x60\xb5\xb5\xe1\x1c\xd8\xcf\ \xae\xf3\xcf\x25\xfd\xad\x35\x58\x57\xac\x02\x01\xf3\xda\xd3\x08\ \x0c\x5a\xeb\x29\xba\x66\x04\x90\x6d\xc9\x12\x8d\x46\x27\x3e\xb6\ \x2c\x41\xcf\xdc\xd6\x7a\x8c\xa6\x2b\x17\x82\xc2\x91\xed\xcc\xd7\ \xb7\x90\x3c\x27\xc2\x9b\xfd\x0b\x39\x7e\xe7\x61\x1c\xcb\x62\xec\ \x9e\xef\xf0\x81\xde\xa5\xe4\x2e\xb8\x80\x9a\xeb\x4f\xec\x3f\x59\ \xd7\xf4\x24\xc4\x18\x43\x3a\x9d\xc6\x71\x1c\x8c\x31\x08\x21\xb0\ \xa4\x20\x62\x5b\x44\x6c\x8b\x68\x43\x9a\xf3\xb0\x3c\x40\x6c\xcf\ \x17\xc9\xa4\x12\x6c\x7c\x3a\xc1\xf5\xdb\x0e\xf0\xb8\x10\x84\xa5\ \x12\x15\xdb\xe6\x8d\x6f\xdc\x8c\x25\x04\xda\x80\x46\x63\x8c\x99\ \x22\x72\x26\x0f\x4c\x16\x81\xc1\x92\x60\xdb\xa2\x2e\x56\x43\x6c\ \x81\x0e\xc7\x09\x76\x7c\x8e\x5c\x36\xca\x5f\x5e\xb1\xb9\xff\xf1\ \x80\x42\xa1\xc0\x9a\xbd\x7b\x19\xf8\xec\x02\x8e\x08\x18\xa8\x54\ \x08\x42\x45\xa8\x14\x46\x9b\x29\x7b\x2b\xad\x66\x0e\xc1\x94\xb9\ \xd1\x68\x6d\x78\x7d\xff\xc8\x54\x4f\xe9\x80\xd4\xbe\x4b\xe9\x6a\ \x0d\x78\xf9\xf5\x80\xd5\xeb\x05\xe5\x72\x99\x42\xa1\xc0\x5d\x37\ \x1c\xcf\xc9\x67\x1f\xc2\xfd\x68\x37\xe3\xcb\x36\xb1\xeb\xe0\x28\ \x9d\xb9\x24\x4a\x4f\x0b\x81\xd2\xc7\x00\x40\x43\xa0\x34\xf3\x3b\ \x32\x0d\xda\xd5\xc7\xc0\x96\x55\xcc\xcd\xf9\x1c\x18\x08\xb8\x6e\ \x9d\xa0\x52\xf5\x28\x14\x0a\x5c\x7d\x61\x27\x17\x9d\x7d\x88\x74\ \xb6\x15\xb3\xec\x7e\xba\xda\x16\x91\x4e\xa7\xf0\x7c\x85\x52\xea\ \xfd\x93\x70\x7a\x65\x54\xa1\x26\x0c\x35\xa1\xf5\xee\xc2\xbd\x5b\ \xef\x65\x59\xdb\x7e\xc6\xc6\x03\x2e\xbb\x2b\xa4\x54\x15\x14\x0a\ \x05\x3e\x76\x5a\x92\x1b\x3f\x33\x42\x4b\x4b\x82\xfc\xac\x7b\x21\ \xba\x18\x29\x2d\x42\x65\x08\x95\x46\x35\xe2\x3e\x59\xd7\xfb\x7a\ \x20\xd4\x8a\x40\x6b\x64\xa0\x00\x38\xf4\xea\x23\x2c\xcd\x6d\xc1\ \x0b\x63\x5c\x75\xcf\x3b\x8c\x8e\x5b\x14\x0a\x79\xba\x3b\x0d\xf7\ \xae\xf2\xc8\x65\x24\x43\xa9\x6f\xe2\xda\x67\x92\x96\x36\x48\x1b\ \x3f\xa8\xe7\x80\xd2\xc7\x48\xc3\xa9\x39\x60\x08\x42\xc5\x91\x91\ \x32\xb2\xba\x8b\x93\x12\xbf\xc7\x38\xed\xdc\x7c\xdf\x6e\xde\x3c\ \xa4\x28\x95\x4a\x44\xad\x0a\x1b\x6e\x89\xd3\x96\xf1\x38\xc8\x25\ \xbc\x55\xfa\x08\x29\xe1\xe3\x09\x9f\x92\x5f\x01\xa0\x35\x13\x45\ \x85\xc7\x12\x82\x69\x00\x94\xd6\x84\x4a\x13\x09\xf6\xb3\x50\x3c\ \x4c\x24\xd9\xcd\x0f\x36\x6c\x63\xcb\xf6\x2a\xae\xeb\xe2\xbb\xe3\ \x3c\x7a\x4f\x86\x79\x6d\xe3\x14\x9c\xf3\x38\xcc\x4a\x72\x99\x34\ \xe9\x74\x86\x96\xd6\x6c\x63\x53\x08\x55\x3d\xf3\xcd\x94\x24\x54\ \x33\xd0\xd0\x98\x29\xa2\x42\x43\xa5\x34\xc8\x02\xb5\x91\x44\x6e\ \x09\xbf\x7d\xf6\x20\x2f\xef\x69\x45\x6b\xcd\xf8\x78\x81\x07\xbf\ \x9d\x61\xc9\x9c\x71\xaa\x91\x65\x6c\xab\x5e\x83\x65\x59\x48\xcb\ \x26\x96\x4c\xa0\x94\x26\x0c\x15\x81\x52\x84\x61\x3d\x07\xa6\xef\ \xff\xbe\x21\xe8\xdf\xf2\x2c\x67\xe7\x46\xc8\x9e\x70\x06\xfd\xfd\ \xff\xe0\xfb\x0f\xef\xc5\xf7\x1b\x7c\x5f\x69\xf1\xc1\xc5\x63\x54\ \x74\x07\x3f\x7b\xa6\x17\x63\x6f\x25\x1e\x4f\x90\x4e\x67\x88\x44\ \x63\x34\xeb\xa6\x31\x10\x4f\x24\x38\xb0\x67\xd7\x7f\x17\x02\x81\ \xe1\xf3\xa7\xef\xa0\xeb\xc4\x95\xec\xde\xb9\x8d\xc7\xfe\x9a\xc5\ \xf7\x03\x4a\xa5\x12\x5f\x58\x5e\xe5\x4b\xe7\x69\x14\x49\xd6\x6c\ \xec\x60\xac\xf2\x3a\x8e\x13\x21\x16\x8b\x11\x8b\x46\x27\x2a\xdd\ \xd1\xd8\xd5\xd4\xf5\x1f\x3d\x70\xe9\xc7\x47\x38\xeb\xdc\x9b\x18\ \x2d\xba\x7c\xf5\x7b\x5b\x18\x18\x2c\xe2\xba\x2e\xe7\x9c\x58\xe4\ \xb6\x95\x9a\x68\x34\x46\xdf\x43\x73\x39\x92\xb7\x70\x9c\xba\x02\ \x29\x04\x41\x10\x70\x2c\x63\xe6\x4a\xd8\x40\x7a\xe6\xa2\x21\x2e\ \xfe\xf2\xed\x94\x8a\x83\x5c\x7e\xdd\x43\x0c\x0c\x56\x51\x4a\xd1\ \xdd\x3e\xc6\xba\x1b\x0c\x99\x54\x94\x35\x9b\x8e\x63\xcf\x60\x0c\ \xc7\x11\x48\x29\x89\xc6\xa2\x98\xa3\x58\x3b\xd3\xd0\xda\xcc\x1c\ \x82\x79\xb9\x61\x6e\xbd\xe5\x06\x82\x20\xe0\x9a\xbe\x0d\xec\x3b\ \x5c\x03\x20\xed\xe4\x79\xb0\x2f\x64\x76\xce\xe1\xc7\x4f\xb4\xf3\ \xd2\xae\x38\x8e\x03\x12\x41\x22\x1e\x47\x18\x30\x46\x1f\x93\xf2\ \xa3\x86\x20\x1b\x1f\xe5\xee\x2b\x07\x11\xb1\x6e\x56\xdf\xbc\x9a\ \x7f\xee\xae\x2b\x97\xba\xc8\xc6\xdb\x0d\x5d\x73\x1c\xfa\x0f\x9c\ \x81\xe8\x5c\xce\x65\x2b\xd3\xa4\xd3\x69\x7a\x7a\x7a\xc8\xe5\x72\ \xef\xb1\x3c\x9f\xcf\xb3\xe6\xb6\xdb\x90\x52\xa2\xb5\x41\x69\x4d\ \xc7\xac\x59\x47\x4f\xc2\x5f\xdd\x19\x5b\x7c\xdf\x4d\xcb\x69\x3d\ \xf5\x77\xdc\x75\xc7\xd7\x79\xae\xbf\x54\x8f\x55\x58\xe5\xc1\xbe\ \x80\x9e\x2e\xcd\xce\xc1\x85\x3c\xf3\x5a\x2f\xa9\x54\xbd\xaa\x65\ \xb3\x59\x22\x91\x08\x95\x4a\x05\x21\x04\xa2\xd1\x30\x8c\x31\x24\ \x93\x49\x62\xb1\x18\x96\x65\x61\x0c\x78\x9e\x47\x18\x86\xef\x7a\ \x80\x49\x67\xc2\xa7\xd6\x5f\x11\x5d\x71\x46\xea\x8f\xed\xdd\xe7\ \xf3\xd3\xbb\x2f\x65\xf3\xce\x6e\x20\x8f\xd1\x8a\x3b\x2e\x1b\xe3\ \xac\x93\x2c\x0e\x8f\x75\x72\xdd\x5a\x17\x65\xfe\x84\x63\x3b\x48\ \x29\x78\x60\xfd\x7a\xa4\x94\x08\x21\x30\xa6\x0e\xca\x18\xf3\x6e\ \xe3\x11\x02\x21\x24\x18\x8d\x94\x02\xa5\xd4\x14\x2f\x4d\x00\xc8\ \x76\x2e\xbc\xbc\xdc\xda\xd7\xfd\x9b\x8d\x3f\xe1\x17\x4f\xb5\xa0\ \xd4\x41\x00\xae\xfe\xc4\x10\x17\x7d\x4c\x52\x70\x5b\x78\xe8\xf9\ \x0f\x31\x5e\x7a\x01\xdb\xb2\x31\x11\x8d\x52\x6a\x82\x6e\x61\x18\ \xd6\x7b\xbc\x52\x13\x62\x8c\xa1\x91\x95\xcd\xc7\xd1\x01\x24\xb2\ \x9d\xab\x32\x73\x4e\x15\xb9\xc5\x36\x98\x4d\x00\x7c\xb2\x77\x98\ \xeb\x2f\x14\xb8\x41\x84\xb5\x4f\xf6\x62\x22\x09\x30\xf5\xd3\x70\ \x22\x1e\xa7\xe6\xba\x68\xad\xf1\x3c\x0f\xad\x35\x41\x10\x4c\x58\ \xde\xf4\x02\x8d\xa7\x31\x06\xa3\x14\x4a\x08\xe2\xf1\x38\xc9\x54\ \x8a\xb1\x7c\xbe\x5e\x8a\x9f\x5a\x7f\x85\x95\xc8\xb4\x9f\x5e\x2d\ \xec\xa1\xab\x23\xe0\xd6\x6b\x4f\x66\x69\x57\x89\xef\x5e\xad\xb0\ \x6c\x87\xab\x7e\x18\x65\xac\x9a\xc2\x71\xea\x27\xe3\x44\x3c\x81\ \x31\x86\x20\x0c\xa8\xd5\x6a\x78\x9e\x87\xef\xfb\x84\x61\x48\x10\ \x04\x04\x41\x80\xeb\xba\xd4\x6a\x35\xfc\x06\xa8\x30\x0c\x09\xb5\ \xae\x9f\x8c\x04\xd4\x5c\x97\xb0\xd9\x0b\x12\xd9\x8e\x4f\x21\xab\ \x4e\xa5\xb8\x8f\x4a\x71\x1f\x73\x5b\x47\xb8\xea\xc2\x4e\x86\x0a\ \x51\x56\xad\x15\xec\x3e\x14\xa5\xab\xab\x8b\xa5\x4b\x97\x92\x4a\ \x26\x30\x46\x13\x04\x3e\xc6\x18\x3c\xcf\xc3\x75\x5d\xca\xe5\x32\ \x95\x4a\x85\x6a\xb5\x4a\xb9\x5c\xa6\x5c\x2e\x53\xab\xd5\x08\x7c\ \x0f\xdf\xf7\x08\x82\x3a\x40\x15\x86\xd8\xd2\xa2\x54\x2c\x92\x4a\ \xa5\xea\x21\x78\xf9\xcd\xf1\xb5\xa7\xc5\x77\x91\xb0\x86\xf1\xca\ \x6f\x53\xa9\x6a\x76\xbe\xd5\xc6\x03\x8f\x0a\x46\x8b\x8a\x79\x73\ \xd2\x9c\xb2\xec\x14\x32\x2d\x19\x6a\x9e\x4f\xb5\x52\x41\x35\x18\ \x50\xad\x56\x27\x2c\x6c\xba\xbf\xf9\xf4\x7d\x9f\x20\x08\x51\x4a\ \x4f\x24\xa8\x6c\xd0\xb3\xbd\xbd\x9d\xe1\xe1\xe1\x3a\x80\x17\xfa\ \xdf\x58\xf2\xc4\xd3\x5b\xb9\xf6\xe2\xb9\xa6\x2d\x9d\x7c\xe5\xe7\ \x8f\xe5\x4f\x18\x29\x14\x5a\x27\xf3\xb5\xe9\xee\x75\x3f\x5a\x57\ \xa7\x66\x23\xd1\xca\xe5\xf2\x8c\x49\xd8\xfc\x1d\xf8\x7e\x83\x86\ \x75\x00\x96\x94\x28\xa5\x18\x18\x18\x40\x4a\x89\xbd\xfa\x9a\x4f\ \x5f\xf9\xf6\xe0\x90\x58\x3c\x3f\xb6\xf3\xf9\xcd\x47\x2e\x79\xe4\ \xe9\xed\xf9\x96\x4c\xe6\x2b\xf3\xe6\xcc\xb9\xd3\x92\x56\x02\xc0\ \x0f\x7c\xca\xe5\x32\x76\xe3\xb2\x32\xd9\xe2\x66\xcc\x9b\x3d\xa4\ \x59\x8c\xa4\xac\x77\xfa\xb0\xc9\x86\xc6\xbb\xc9\x2c\xd0\x5a\xfb\ \x76\xb5\x5c\x7e\xab\x77\x61\xba\xe3\xd7\x4f\xbe\x54\x00\x62\x40\ \x4b\x71\x7c\x7c\xbb\xeb\x79\x9b\xa2\x4e\xa4\x13\x81\x59\xb8\x68\ \x91\xdc\xfc\xe2\x8b\x0b\x22\xf5\xe1\x58\xb6\xed\x38\xb6\x13\xb1\ \x2c\xe9\x08\x21\x2c\x21\xa5\x10\x60\x10\x22\xc4\x18\x5f\x6b\xe3\ \x87\x61\x10\x14\x8a\xc5\xaa\x1d\x71\xf6\x0c\xbe\x3d\xe8\x19\x4c\ \xf3\x48\x6b\x00\x84\x10\xca\x18\xb3\x55\x00\x16\x70\x1c\x90\x04\ \x9c\x06\x35\x63\x40\xbc\xf1\x4e\x25\x12\x09\x15\x8f\xc7\x3d\x29\ \xa5\x12\x42\x68\x21\x84\x8a\x44\x22\x5a\x29\xa5\xa5\x94\xca\xb2\ \x2c\x15\x04\x81\x8e\xc5\x62\x26\x91\x48\x68\xdb\xb6\x75\x10\x04\ \x7a\x68\x68\x28\x2c\x97\xcb\x56\xe3\x3e\x38\xfd\xe6\x6d\x00\xef\ \xdf\xb8\xc2\xff\x85\xc1\xaa\xe7\xad\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x04\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x02\x3d\ \x50\x4c\x54\x45\xff\xff\xff\x60\x82\xc2\x80\xa5\xe8\x8e\xb2\xef\ \x8e\xb2\xef\x91\xb5\xf0\x98\xbc\xf3\x98\xbb\xf3\x90\xb4\xf0\x8e\ \xb2\xef\x8e\xb2\xef\x90\xb4\xf0\x90\xb4\xf0\x8e\xb2\xef\x8e\xb2\ \xef\x95\xb8\xf1\x92\xb6\xf1\x8e\xb2\xef\x8a\xae\xeb\x8d\xb1\xed\ \x8c\xb0\xec\x89\xad\xea\x89\xad\xea\x86\xa9\xe8\x86\xaa\xe7\x84\ \xa8\xe5\x85\xa7\xe5\x81\xa5\xe2\x82\xa5\xe1\x7f\xa3\xe1\x7b\x9e\ \xdd\x76\x99\xd8\x78\x9b\xda\x77\x9a\xd9\x79\x9c\xda\x7a\x9d\xdb\ \x6f\x91\xd1\x70\x93\xd2\x7c\x9f\xdd\x77\x9a\xd8\x6c\x8f\xce\x6c\ \x8e\xce\x78\x9b\xda\x76\x99\xd8\x6b\x8d\xcc\x6d\x90\xcf\x77\x9a\ \xd8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x18\x22\x65\x84\xbd\ \x69\x8b\xca\x68\x89\xc6\x5b\x76\xa7\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\xbf\xf4\xa6\xc9\ \xf9\xaf\xd1\xfc\xb9\xd7\xfc\xba\xd8\xfb\xa4\xc6\xf8\xad\xcf\xfb\ \xa3\xc7\xf7\x9a\xc0\xf3\x90\xb5\xec\x8d\xb3\xea\x99\xbf\xf2\xab\ \xcd\xfb\xa9\xcb\xf9\x9b\xc0\xf3\x97\xbd\xf2\x8f\xb4\xeb\xd3\xe3\ \xfa\xff\xff\xff\xd1\xe2\xf9\x8e\xb4\xeb\x96\xbb\xf1\x99\xbf\xf3\ \xa6\xc8\xf7\x9b\xbe\xf2\x9e\xc3\xf5\x95\xba\xf1\x94\xba\xf1\x8f\ \xb4\xec\xbd\xd4\xf6\xf7\xfa\xfe\xba\xd2\xf5\x8d\xb3\xec\x92\xb8\ \xf0\x92\xb7\xef\x9d\xc2\xf5\x95\xb9\xf0\xa0\xc3\xf5\x91\xb7\xef\ \x91\xb6\xef\x82\xa5\xe0\x81\xa3\xdc\x85\xa9\xe3\x8f\xb4\xee\x8e\ \xb4\xee\x8e\xb3\xee\x9d\xbf\xf3\x8a\xad\xe7\x9a\xbe\xf2\x8d\xb3\ \xee\x8d\xb2\xed\xc6\xd9\xf6\xbd\xd2\xf5\x8b\xb0\xed\x8b\xb0\xec\ \x8a\xb0\xec\x8a\xaf\xec\x98\xbb\xf1\x86\xaa\xe5\x8f\xb3\xec\x89\ \xaf\xec\x89\xae\xec\xc4\xd6\xf4\xfc\xfc\xfc\xba\xcf\xf2\x88\xad\ \xeb\x87\xac\xeb\x86\xac\xeb\x8c\xb0\xec\x7f\xa3\xe0\x89\xad\xe9\ \x86\xab\xeb\x86\xab\xea\xc0\xd3\xf2\xf9\xf9\xf9\xb7\xcc\xf1\x84\ \xaa\xea\x84\xa9\xea\x83\xa9\xe9\x88\xac\xe9\x86\xaa\xe8\x81\xa6\ \xe7\x83\xa8\xe9\xbd\xd0\xf0\xf6\xf6\xf6\xb4\xc9\xef\x82\xa7\xe9\ \x81\xa7\xe9\x81\xa6\xe9\x7f\xa4\xe5\x84\xa7\xe5\x7d\xa2\xe1\x7c\ \xa1\xe2\x80\xa5\xe7\x81\xa6\xe8\x80\xa6\xe8\xbb\xcd\xee\xf3\xf3\ \xf3\xb2\xc7\xed\x80\xa5\xe8\x7f\xa4\xe7\x7b\xa0\xe2\x79\x9b\xda\ \x7f\xa3\xe4\x78\x9d\xe0\x7d\xa1\xe4\xad\xd0\xf2\xb5\xd8\xf4\xac\ \xcf\xf2\x7c\xa0\xe3\x78\x9c\xdf\x7b\xa0\xe0\x7a\x9f\xe1\x79\x9e\ \xe1\x77\x9b\xde\x79\x9d\xe0\x7a\x9f\xe2\x76\x9b\xde\x7a\x9e\xe1\ \x76\x9a\xdc\x70\x93\xd4\x79\x9e\xe0\x7c\xa1\xe3\x7c\xa1\xe4\x7b\ \xa0\xe3\x78\x9c\xde\x6c\x8e\xcf\x62\x84\xc4\x64\x86\xc6\x63\x85\ \xc5\x9f\x45\x3a\xce\x00\x00\x00\x3d\x74\x52\x4e\x53\x00\x00\x00\ \x03\x69\xbe\xf8\xf1\xb4\x4e\x27\xcc\xb1\x15\x39\xf9\xed\x1e\x0d\ \xef\xd1\x85\x57\xdb\xbf\x13\xef\x2b\xfb\x16\xf1\xf0\xd3\xaa\x87\ \x1e\xf9\xec\x05\x6a\xfe\xfa\x3d\x4e\xf3\xe5\x30\x02\x20\x2c\x4c\ \xc3\xf2\xf0\xb9\x41\x39\x29\x24\x1c\x15\x5b\x94\x69\x27\x00\x00\ \x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\ \x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\xfc\ \x00\x00\x01\x0e\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\x66\x16\ \x56\x36\x5b\x76\x0e\x4e\x06\x28\xe0\xe2\xb6\xb3\x77\x70\x74\xb0\ \x77\xe2\xe1\x05\xf3\xf9\xf8\x9d\x5d\x5c\xdd\xdc\xdd\x3d\x5c\x3c\ \x05\x04\x19\x18\x18\x85\x84\xbd\xbc\x7d\x7c\xfd\xfc\x03\x02\x83\ \x82\x43\x44\x80\x02\xa2\xa1\x61\xe1\x11\x91\x51\xd1\x31\xb1\x71\ \xf1\x09\x89\x62\x0c\x8c\xe2\x49\xf1\xc9\x29\x29\xa9\x69\xe9\x19\ \x99\x59\x59\xd9\x12\x0c\x92\x39\xb9\x59\x59\x79\xf9\x05\xfe\x85\ \x45\xc5\x25\xa5\x65\x52\x0c\xd2\xe5\x15\x25\xa5\x95\x55\xd5\x35\ \xb5\x75\xf5\xf5\x0d\x8d\x32\x0c\xb2\x4d\xcd\xf5\x0d\x2d\xad\x6d\ \xed\x1d\x9d\x5d\x5d\xdd\x3d\x72\x0c\x8c\xf2\xbd\x7d\xdd\xfd\xfd\ \x13\x26\x4e\x9a\x3c\x65\xea\xb4\xe9\x0a\x0c\x8c\x8a\x33\x66\xce\ \x9a\x3d\x67\xee\xbc\xf9\x0b\x16\x2c\x5c\xb4\x58\x89\x81\x51\x59\ \x65\xc9\xd2\x65\x0b\x96\xaf\x58\xb9\x60\xd5\xea\x35\xaa\x6a\x0c\ \x8c\x4c\xea\x1a\x6b\xd7\xad\xdf\xb0\x71\xc3\xa6\xcd\x5b\x34\xb5\ \x98\x80\x02\x4c\xda\x3a\x5b\xb7\x6d\xdf\xb1\x73\xd7\x6e\x5d\x3d\ \x26\x26\x06\x7d\x26\x03\x43\x23\x63\x93\x3d\x7b\xf7\x99\x9a\x99\ \x5b\x18\x1a\x30\x30\x30\x31\x31\x19\x5a\x5a\x59\x83\xb0\x0d\x90\ \x0d\x00\x42\xb1\x52\x67\xa1\xd4\x59\x8d\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x8f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x04\x00\x00\x00\xd9\x73\xb2\x7f\ \x00\x00\x00\x02\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x03\x33\x49\x44\x41\x54\x48\xc7\x9d\x94\x6b\ \x48\x93\x51\x18\xc7\x9f\xd7\x79\x49\x67\xd3\x9c\x43\x33\x88\xb6\ \x2e\x9a\x30\x67\x68\x68\x0a\x59\x5a\x56\x7e\x88\x4c\x4b\xa8\x88\ \x08\x8a\xea\x43\x52\x48\x60\x61\x7d\xe8\x22\x4a\x7e\xb0\x48\x23\ \xa2\x88\x28\x2d\x43\x82\xec\x4a\xb7\xd9\x94\xec\x22\x5a\x5a\x51\ \xb3\x5c\xcd\xeb\xd8\x98\xee\xbe\xbd\xaf\xff\x3e\x48\xb5\xcb\xbb\ \xa9\x9d\xf3\xe9\xfc\xcf\xff\xf9\xbd\xe7\x39\xcf\xf3\x1e\x02\xb9\ \x4f\x2e\x63\x8b\xc0\x53\xf1\x9c\xc4\xb8\x56\x78\x29\x9e\xcb\x6b\ \x57\x1e\x34\x06\x02\xdc\x3a\xdd\xf2\x34\x20\x60\x51\xe1\x88\xfe\ \xe8\x6a\x7f\xe1\x3b\xa4\xda\xe1\xfc\xb2\x80\x00\x12\x3f\x7a\xd3\ \xfd\x81\x42\x79\x8f\x4f\xaa\xe7\xdd\x6a\x4a\x0c\x08\x00\x6d\x3b\ \xe9\xe0\x1a\xaa\xf8\x00\x97\xf6\x98\x6d\x15\xd7\x89\x99\x02\x40\ \xf2\xaf\xda\x51\x5d\x81\xcc\x5b\x4f\x8b\x52\xf7\xe9\xcc\x73\xd6\ \xf9\xf8\x7d\x84\xe0\xea\x66\x3b\xda\x5b\xbd\xbf\xf4\xb0\xc1\x81\ \x26\x25\x45\x4f\x09\x00\xc9\x8a\xf4\x76\xab\xa3\x6e\x9f\xbb\x56\ \xb9\xc6\x68\xb4\x4c\x6c\x28\xe7\xb9\x19\x1e\x49\xd2\xf2\xda\x06\ \x8d\x26\x46\xf4\x57\x09\xe9\xea\xb2\xa3\xb3\x8f\x96\x4e\x0b\x00\ \xda\x7a\x7a\x1c\x4e\x3c\xb9\xf3\x67\xdd\x54\xed\x60\x4d\x38\x7e\ \x93\x82\xa6\x09\xa0\xa4\xb7\x6a\x0b\x4c\xa6\xe3\x79\x20\xd0\xfe\ \xc4\xe1\x61\x1b\x7e\x18\x62\x72\x79\xbd\xfc\x15\xdf\x75\x6e\x0c\ \x0e\xf4\xf6\x52\x28\x31\xaa\x17\x4e\x8c\xa3\xb2\x99\xc2\xa6\x0d\ \x00\x51\xea\x1b\xb5\x19\x2e\xae\xa9\xe6\xf2\x01\xab\xdd\x82\x3e\ \x43\x74\x81\x1f\xa7\x1f\x39\x68\xe7\x05\x23\xec\xd0\xeb\x9f\x68\ \x1d\x18\xc3\x99\x66\x12\xce\x08\x00\xa2\xcc\x0e\xb5\x09\x2e\xdc\ \xc3\x37\xa8\x0d\xa2\x4d\x7e\x7d\x7e\x37\x42\xb6\x5f\x34\xc0\x0a\ \x33\xea\x71\xaa\xd9\xb7\x81\xa6\x04\x80\x28\xa3\xd3\xdc\x81\x4f\ \x68\xe7\x44\x45\x01\x5c\xfe\x36\x84\x29\x65\xcf\x5e\x4e\x28\xd1\ \x0f\x0e\x97\x94\x09\x25\x33\x04\x50\x68\x86\xf2\x19\x9c\x68\x81\ \x11\x76\xf4\xb2\x79\x03\xfe\x92\x08\x22\xde\x91\xbc\x3c\x39\x2b\ \x92\xfa\x4d\x3d\x55\x57\x4b\xd5\xbf\x44\x02\x79\x82\xa2\x8c\xe1\ \xb7\xf2\x73\x73\xbf\xef\xc5\x15\xc8\xcb\x41\xa0\xa4\xe4\x7a\xae\ \x08\x85\xe6\xc5\xa2\x69\xa7\xa0\x28\x2d\x45\x3e\xe6\x7e\xff\xb3\ \x8e\x7b\xb8\x0a\x87\x90\xf9\x98\xcf\xcb\xc0\xed\x34\x8a\x05\x82\ \x72\x81\x98\xeb\x4c\x3c\xc6\x46\xf4\xb8\xf4\x05\xa3\x4f\x27\xf5\ \x78\x61\xc8\xa0\x5c\x24\xe3\x54\xf5\xc1\x91\x10\x52\xed\xfb\xb6\ \x7f\x31\x6e\x80\xac\x54\xc9\x2b\x79\x24\x47\x2e\xb2\xd0\x17\xea\ \x6d\x1f\xcd\xfe\x67\x93\x54\x49\x8f\x2c\xa2\xf9\x04\x0a\xa3\x7e\ \xb6\xff\x60\x6b\xbd\x0f\x20\x2b\x4d\xac\x0c\x12\x1a\x4c\xe1\x91\ \x62\xc6\x48\x9f\xad\x96\xc5\xba\x41\xf7\xbb\x8a\xd7\xa6\xcc\x8b\ \x26\xd0\x3b\xbb\x34\x4c\xc2\x0d\x1d\x6e\x3d\x3f\xa9\xff\xad\x42\ \x70\xe3\x2c\xe1\x47\x95\x2a\x6a\x50\x6b\x25\x23\x59\x6e\x7b\x86\ \x13\xb1\x07\x07\x38\x2b\xfd\xb4\x39\xc5\x9a\x1a\x3d\x13\x5e\xe9\ \x55\x05\x62\x56\x5a\xd2\x47\x88\x40\xcb\x46\xd6\x22\x4e\xc7\xf7\ \x74\x48\xde\xaf\x42\x36\x9b\x18\x0b\x4a\x69\xdf\x88\xd4\x4c\x8f\ \x3e\x48\x2a\x12\x47\xb8\x7a\x40\xf2\xdd\x22\xc9\x20\xb8\x13\x98\ \xe0\x29\x78\xc9\x0f\x7b\x84\x20\xb8\x8e\x48\x70\x7f\x16\xb1\xfb\ \x3c\x52\x70\xca\xc2\x29\x41\x91\x7b\x37\xe9\x62\x28\x33\xa4\xd2\ \xd5\xf1\x75\x8c\x4e\x6d\x3a\xaf\xe7\xd2\x8b\x73\xda\x66\xef\x8a\ \x27\xeb\x3c\x8f\x14\x12\x22\x96\xd8\x6a\x71\x0e\xc5\x10\xb7\xfa\ \xff\x71\x40\x31\xd5\xd9\xec\x59\xd4\x21\x87\x5d\xb8\xd9\xab\x91\ \x64\xeb\x65\x9a\xb9\xa3\xb1\x37\x02\x85\x83\x40\x92\xf2\x38\xad\ \x6c\x48\x5a\xc1\xdb\x48\xff\x33\x7e\x03\xe5\xf4\x89\xbc\x1c\x29\ \xc7\xbe\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\xf0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x08\x79\x49\x44\x41\x54\x68\xde\xed\x99\x7f\x6c\x54\x55\x16\xc7\ \x3f\xe7\xde\x37\x85\xd6\x62\xa1\x9d\x56\x5c\xda\x82\xb0\xea\x82\ \xb8\xed\x2a\xb4\xc8\x76\x25\x8d\x6e\x8b\x3f\xc0\x88\x4a\x0a\x1b\ \x96\x20\xfb\x23\x46\x36\x10\x95\xb6\x68\xb2\xf5\xc7\x6e\xa8\x6b\ \x40\xc3\xaa\xbb\xcb\xa2\x20\x22\xb8\xb0\x89\x9b\xec\x1f\x92\x10\ \xad\x9d\x36\xa0\x09\x6e\x63\xd6\xe0\x46\x12\x20\x15\x14\xd7\x4a\ \x11\xa4\x33\xf3\xde\x9b\x77\xf7\x8f\x79\xf3\x3a\xc3\xb4\xe5\x47\ \x49\x1a\xb3\x9c\xe4\xcc\x7d\x3f\xee\x3b\xef\xfb\x3d\xe7\xdc\x73\ \xef\xbb\x23\xc6\x18\xbe\xcb\xa2\x46\x1a\xc0\x65\x02\x23\x0d\xe0\ \x32\x81\x91\x06\x70\x99\xc0\x48\x03\xf8\xbf\x27\x60\x5d\x0a\x23\ \x37\xce\x9c\xf5\x53\x85\xd9\x0e\x84\x87\x6b\x4b\x44\x10\x11\x94\ \xdf\x8a\x92\xe0\x9a\xaf\xff\xdc\xd7\xfe\xde\xfc\x4b\x46\xa0\xa2\ \xaa\x6a\x9e\x42\x76\x01\xa3\x86\x03\x5a\xa5\x83\xcc\x06\x9d\xde\ \x67\x5e\xfa\xb3\xc3\x22\x50\x59\x55\xb5\x10\x23\xdb\x80\xd0\xd8\ \x82\x02\xee\x5f\x70\x2f\x63\xc6\x8c\x39\x7f\x4f\x03\x08\x48\xf2\ \x27\xab\x05\x41\xfc\xf3\x53\xa7\x4e\xf1\xf7\xb7\xde\xc2\x71\x9c\ \x0c\x3b\x17\x4d\xa0\x62\x46\xf5\x52\x44\x5e\x01\xf4\xb8\x71\x63\ \x59\xb2\x78\x31\x05\x05\x57\x0e\x0d\x3a\x89\x0a\x91\x14\xd0\x80\ \x41\x1a\xf8\x7e\xe0\xfd\x2d\xe4\xe7\xe7\x53\x58\x58\x48\xcf\xd7\ \x3d\xc3\x27\x50\x31\xa3\xea\x21\x44\x5e\x02\xa4\xa8\xb0\x90\x85\ \xf7\xdf\xc7\xa8\x9c\x1c\x62\xd1\x58\xd0\xa7\xaf\xaf\x8f\x13\x27\ \x4e\x30\xa1\xb4\x14\x25\x02\xd2\x0f\x66\x50\x8f\x1b\x38\x79\xb2\ \x97\x82\x82\x02\xb4\xb6\x92\xfd\x83\x48\x09\x5a\x09\x96\xd6\x19\ \x58\x2e\xb8\x0a\x55\xce\xa8\x7a\x14\x91\x97\x01\x09\x87\xc3\xdc\ \x7b\xcf\x7c\x2c\xcb\x22\x16\x8f\x07\xda\xdb\xdb\xcb\x07\xef\xef\ \xa3\xac\x74\x02\x1d\xed\xed\xc4\xed\x38\xb6\x6d\xfb\xea\x60\x3b\ \x36\x8e\x7f\x9e\x6a\xed\x78\x9c\xb6\x77\xdf\xc5\x89\xc7\x79\xe7\ \x9d\x77\x88\xc5\xa2\xd8\x8e\x93\xbc\xef\xb7\x22\x82\x3e\x8b\xc0\ \x05\x45\xa0\xb2\x6a\xd6\x6f\x8d\xc8\x53\x00\xc5\xe1\x30\x77\xd4\ \xd7\x01\x10\x8d\x46\x83\x81\x16\x8b\x45\xf9\xf7\x47\x1f\xf1\xcc\ \xd3\x4f\x53\x56\x56\x46\x71\x38\xcc\xdf\x76\xee\x62\x66\x75\x15\ \x4a\xd4\xa0\x9e\xff\xe0\x83\xf7\x79\xe0\xbe\xfb\xa8\xab\xab\xa3\ \xb3\xb3\x93\xcd\x5b\xb6\x30\xbb\xa6\x26\xe9\x71\x3f\x0a\x4a\xa9\ \xac\x08\x9c\x37\x81\xca\x99\xd5\xcf\x1a\x68\x04\x28\x29\x2e\xa6\ \x76\xce\xad\x18\x63\x88\xdb\x71\x84\x7e\xf0\xff\x39\x70\x20\x00\ \x0f\x50\x57\x57\x87\x01\xde\xdc\xf1\x26\x3f\x9a\x31\x03\xa5\xa4\ \x3f\xb7\x45\x10\x63\xd8\xbf\x7f\x3f\x0d\x0b\x17\x52\x57\x97\x74\ \x48\x4d\x4d\x0d\x00\xaf\x6e\xde\x4c\xf5\xac\x59\x68\xad\x03\x07\ \x5d\x70\x04\x44\x44\x2a\x66\x54\x6d\x30\xb0\x42\x04\x4a\x4a\x4a\ \xf8\xf1\x2d\xb3\x32\xc0\xa7\xf2\xfb\xe8\x67\x47\x79\x70\xd9\x32\ \x26\x4e\x9c\x98\x61\xa3\xbe\xae\x0e\x63\x0c\xdb\x77\xec\xa0\xa2\ \xb2\x12\xa5\x14\x22\x82\x31\x86\x8f\xba\xba\x58\xd4\xd0\x10\x80\ \x4f\x49\x4d\x4d\x0d\x1f\x7f\xfc\x31\x3d\x3d\x3d\x14\x16\x15\x02\ \x82\xd2\x0a\x6d\x5d\xc0\x18\x10\x11\x55\x51\x55\xb5\x49\x94\xac\ \xd0\x5a\x71\xf5\xf8\xf1\xcc\xbc\xf9\x66\x12\x09\xcf\xcf\x63\x07\ \xc7\x71\x70\xfc\xe3\xc2\xa2\x42\xfe\xba\x69\x13\x47\x8e\x1c\xc9\ \xb2\x35\xb7\xbe\x9e\xc5\x8b\x16\xd1\xf5\xe1\x87\xd8\xb6\x4d\xdc\ \xb6\xf9\xd7\xfe\xfd\x2c\x6a\x68\xa0\xbe\xbe\x3e\xab\x7f\x47\x47\ \x07\x7b\xf7\xed\x23\x2f\xff\x0a\x1c\xc7\xc5\x75\x1d\xb4\x64\x0f\ \x62\x19\xec\x93\xb2\xb6\xb6\xd6\xfa\x26\x1a\x7b\x5d\x44\x1a\x44\ \x84\x92\xe2\x62\x6e\x98\x36\x0d\xa5\x94\x5f\x55\x08\x52\x27\xfd\ \x38\xee\xd8\x1c\x3d\x7c\x98\xb5\x6b\xd7\x66\x45\x02\x60\xf7\xee\ \xdd\x6c\x7d\xfd\x75\x04\x58\xb2\x64\x09\x73\xe7\xce\xcd\xea\x13\ \xe9\xe8\x60\xe3\xc6\x8d\xfc\xb0\xb2\x22\x99\x3e\xfe\x58\x39\xf0\ \xc9\x27\x44\xa3\x51\xde\x78\x6d\xab\x0c\x99\x42\xd3\xa7\x4f\xcf\ \x19\x7d\x65\xc1\x4e\xad\xf5\x3d\x22\x42\x71\x71\x98\x6b\xa7\x4c\ \xc1\x75\xdd\x60\x62\x49\xa5\x4d\xc6\x6c\x09\x28\x11\xae\x2e\x2d\ \xa5\x79\xcd\x1a\x5a\x07\x20\x91\x0e\x78\x40\xf0\x91\x08\x7f\xfa\ \xcb\x9f\x99\x7e\xe3\x8d\x78\x9e\x87\xe7\x99\xe0\x3d\x4a\xd4\xb9\ \x23\x30\x7b\xf6\xec\x5c\x57\xeb\xb7\x04\xa9\x57\x22\x84\x8b\x8a\ \x28\x2d\x2d\x4d\x1b\x7c\xfe\x54\x4f\x36\x78\xd2\xce\x1d\xdb\xe6\ \xf8\x17\x5f\xf0\x87\xd6\xd6\x01\x23\x31\x90\x44\x22\x11\x5e\x7a\ \xf9\x65\xa6\xde\x30\x0d\xa5\x74\x96\x83\xba\x3f\xeb\xc6\xb6\x6d\ \x5e\xdd\xb8\x29\x88\x40\xc6\x18\xa8\xad\xad\xcd\x37\x56\xe8\x6d\ \x4b\xe9\x7a\x4b\x6b\xc2\x45\x45\x5c\x75\x55\x09\x8e\xeb\x24\x6b\ \xb1\xeb\xe0\xba\xc9\x9a\x9c\xcc\xfd\x7e\xb5\xfd\xd6\xf5\x55\x94\ \x22\x5c\x52\x4c\x63\x73\x13\xdd\xdd\xdd\xe7\x04\xdf\x1e\x89\xf0\ \xc7\x17\x5f\x64\xca\x75\xd7\xe2\x25\x3c\x12\xae\x43\x22\xe1\xe2\ \x26\x5c\x5c\x37\xa9\x4a\xa9\xac\x2a\x94\x41\xc0\x31\x6c\xd5\x5a\ \xcf\xd1\x96\xa6\x60\x6c\x01\xe3\x0a\xc7\x05\x0f\xa7\x80\x39\x8e\ \x13\x5c\x73\x5c\x37\x00\x9d\x70\x5d\x12\xae\x8b\x93\x48\x6a\xea\ \x85\x85\x45\x45\x34\x36\x36\x0e\x49\xa2\xbd\xbd\x9d\x0d\x1b\x36\ \x30\xf9\xfb\x93\xc1\x78\xb8\x9e\x8b\xeb\x25\x70\xdd\x04\x09\x37\ \x41\x22\xe1\x92\x48\xb8\xe8\x73\xcd\x03\x2a\x64\xe9\x54\x1e\xbb\ \x8e\xc3\xa9\x53\xa7\xc8\x1d\x3d\x1a\x95\xaa\xc3\x64\xae\x1c\x39\ \x7b\xe5\x88\xa4\xe5\x6b\xea\xbe\xa2\x2f\x1a\xe5\xd3\x83\x07\x29\ \x2f\x2f\x1f\x90\xc0\x99\xbe\x33\x18\x0c\x9e\x67\x30\xc6\x0d\x6c\ \x2b\x7f\xed\x91\x74\xa0\x8b\xe7\x79\x43\xcf\x03\xa3\xe0\xe7\x9e\ \xd6\x6f\x8b\xc8\x2d\xc6\x18\xfa\xfa\xfa\x88\x46\xa3\x84\x42\x21\ \x46\x85\x42\x58\xa1\x50\xb2\x2a\xa8\x6c\xc0\x03\x29\xc0\xf1\x63\ \x9f\xb3\x6a\xd5\x4a\x6e\xbf\xed\xb6\x41\x23\x70\xe7\x1d\x77\x62\ \x3c\xc3\xa6\x57\x5f\x61\xf2\x94\xc9\x18\x63\xf0\x3c\x8f\x44\x22\ \x81\xe7\x79\xc1\xb8\xd3\x96\x0e\x48\x0d\x98\x42\x7b\xf6\xec\xf9\ \xc6\x8b\xc7\xeb\x94\xd6\xef\x69\xad\xb1\x7c\xc5\x18\x6c\xd7\x21\ \x1a\x8b\xd2\x17\x4d\x92\x8a\xc5\x62\xc4\xed\x78\x30\x06\x82\x54\ \xf3\xd5\xb6\x6d\xbe\x38\x7a\x8c\xd5\x8f\x3d\xc6\xed\xb7\xdd\x7e\ \xce\x31\x70\xd7\x5d\x77\xb1\x7c\xd9\x83\x1c\xfc\xf4\x20\xb1\x58\ \x0c\x37\xe1\x82\x80\xb6\x34\x96\xd5\x8f\x45\x9f\x6b\x31\xd7\xd6\ \xd6\xf6\xed\xd8\xbc\xbc\x3b\x2d\xad\x77\x6b\x4b\x13\xa8\xff\xb0\ \xf6\xe7\x01\x01\xf0\x3d\x95\xf2\x56\x4a\x5d\xd7\xe1\xbf\xc7\x8f\ \xb3\xa6\xb9\x99\x39\x73\xe6\x64\x81\xdd\xbb\x77\x2f\x87\x0e\x1d\ \xca\xba\x7e\xf7\xdd\x77\xf3\xab\x5f\xfc\x92\xcf\x8f\x1d\x0b\xf2\ \x3d\x05\x3a\x5d\x87\x24\x00\xb0\x73\xe7\xce\x68\x5e\x4e\xce\x3d\ \xda\xd2\xff\x48\x8f\xc4\x40\xc6\xb4\xf6\x3d\xe4\xab\x52\x42\x6f\ \xcf\x09\x9e\x6a\x79\x32\x58\xd3\xa4\x4b\x67\x67\x27\x6b\x5b\xd7\ \xb2\xba\x71\xf5\xa0\x24\x96\x2f\x5b\xce\xd1\xee\xa3\x41\xd5\x09\ \xde\x93\xca\x88\x73\x11\xf0\x49\xd8\xdf\x7c\xf5\xf5\x03\x96\xa5\ \xdf\xcc\x02\x6d\x65\x82\x4e\xf7\xcc\xd7\x5f\xf5\xf0\xbb\x67\x9e\ \xa1\xba\xba\x3a\xcb\x66\x47\x47\x07\xcf\xad\x7b\x8e\xb2\x49\xe5\ \x84\xaf\x2a\xa6\xb1\xa9\x91\x43\x87\xb3\x49\xcc\x9b\x37\x8f\xa5\ \x4b\x97\xd2\x7d\xa4\x3b\x33\x12\x96\x46\x5b\x99\x90\x87\x5c\x0b\ \xb5\xb5\xb5\xb9\xd3\xaf\x9f\xfa\x33\x4b\xab\xcd\x19\xa0\x07\x89\ \xc4\x99\xd3\xdf\xb2\x6a\xe5\x4a\x6e\xba\xe9\xa6\x01\xc1\xaf\x5b\ \xbf\x8e\xf2\x89\xe5\xe4\x84\x42\xe4\xe5\xe6\x32\xfe\x7b\xe3\x69\ \x6a\x6a\xe2\xf0\xe1\xc3\x59\xfd\xe7\xcf\x9b\xcf\xad\x3f\xb9\x95\ \x58\x2c\x96\x96\xc6\xea\xfc\x52\x28\x5d\x5a\x5a\x5a\xbc\x1d\xdb\ \xb6\x2f\xb7\x94\x7e\x69\xc0\xf4\x49\xd3\x82\xb1\x05\x6c\xd9\xbc\ \x85\x2f\xbf\xfc\x32\xc3\x46\x24\x12\x61\xfd\xfa\xf5\x4c\xbc\x66\ \x22\x21\xbf\x92\x69\xad\xc9\xcd\xcd\x65\x42\xd9\x04\x9a\xd7\x34\ \x67\x91\xe8\xea\xea\xa2\xa3\x33\x42\xfe\x98\x7c\xb4\x56\x58\x5a\ \x5d\x58\x0a\xa5\x8b\x31\xc6\x6c\xdd\xbc\x65\x85\xb2\xac\xe7\x06\ \x1d\x13\x96\x26\x37\x2f\x97\x2b\xae\xbc\x82\x47\x1e\x7d\x24\x20\ \x11\x89\x44\x78\xfe\x85\xe7\x99\x34\x65\x52\x06\xf8\xd4\xf3\x79\ \x79\xb9\x94\x4f\x2a\xe3\xf1\x27\xd6\x04\x24\xba\xba\xba\x68\x6d\ \x5d\xcb\x0f\xa6\x5e\xcf\xa8\x9c\x50\x56\xc4\xd3\x45\x2e\xf4\x0f\ \x8e\x5f\x3f\xfc\xd0\x93\x02\x2d\xe9\xdb\x1f\xea\xac\xfa\x1f\x8f\ \xc7\x39\x7d\xf2\x34\x0b\x16\x2c\x60\xdb\x1b\xdb\xb8\x66\xca\x35\ \x58\x69\x1f\x25\x03\x6d\x9b\x38\xb6\x4d\xf7\x91\xcf\x68\x68\x58\ \xc4\xb6\x37\xb6\x31\x75\xda\x75\x84\x42\xa1\x01\xe7\x96\xa6\xd5\ \x8f\xcb\x45\x13\x00\x78\x78\xe5\x6f\x1a\x95\xf0\xec\x80\x7b\x37\ \x4a\xa1\x94\xc2\xb6\x6d\xfa\xce\x9c\x21\x1c\x0e\x63\x85\xac\x60\ \x35\x39\xe0\x24\xe8\x2f\x97\x63\xb1\x38\x27\x7b\x7b\x29\x2e\x09\ \x63\x59\x56\x00\xf8\x6c\x19\x36\x01\x80\x55\x8f\xac\x5a\x21\x4a\ \x36\x88\x88\x28\xa5\x18\x3d\x7a\x74\x32\x35\x94\x46\x69\x15\x10\ \x51\x2a\x09\x3a\x05\x5e\xa5\x2d\x3b\x32\xf7\x80\x00\x4c\xf0\xa5\ \x66\x8c\xc1\x78\x06\xcf\x18\x8c\xf1\x30\xc6\xe0\xba\x2e\xc6\x98\ \x0c\x02\x17\xbd\x2f\xf4\xc2\xfa\x17\x5e\x5c\xdd\xb4\x3a\x8a\xb0\ \x51\x89\x28\xcf\x4b\x90\x9b\x9b\x4b\x28\x64\xa1\x95\xee\x27\xa0\ \x95\x3f\xf9\x29\xc4\xff\x94\x94\x60\x8b\x25\xb5\x4f\x44\x1a\x68\ \xcf\x07\x9d\x7e\xec\x91\x48\x78\x18\xe3\x64\xe1\xb8\xe8\x08\xa4\ \xa4\xf9\x89\xe6\xc5\x4a\xc9\x6b\x22\x62\x65\xed\x6b\x0e\xa1\xc9\ \xef\x8b\x8b\x93\xf4\x08\x0c\x7b\x77\xba\xf5\xf7\xad\xdb\x95\xd2\ \x0b\x2d\xad\x4f\x9f\xcf\x6c\xad\xb5\x1a\x16\x78\x60\xcf\x25\x8d\ \x40\x4a\x76\xed\x5a\xa8\x0f\x1c\xb8\x21\x74\x49\x8c\x0d\x2d\x76\ \x4b\x4b\x8b\x77\xc9\x09\x8c\x94\x7c\xe7\xff\xe0\xb8\x4c\x60\xa4\ \xe5\x32\x81\x91\x96\xcb\x04\x46\x5a\xfe\x07\x7b\x86\x8e\xdb\xf5\ \xbb\x63\xd4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\x85\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x07\x4c\x49\x44\x41\x54\x78\x5e\xa5\x97\x7b\x4c\x94\xd9\ \x19\xc6\x9f\x19\xbe\xb9\x03\x02\x85\x41\xe4\x52\x56\x2d\x68\x8b\ \xab\x50\x70\x09\x15\xff\x40\x2b\x5b\xa9\xb6\x71\x63\x56\x17\xb7\ \x10\x6c\xd8\x4b\xdb\xdd\x6d\x37\x69\xd3\x06\x89\x36\xd6\x45\x63\ \x4d\xd3\x74\xab\x6b\xd7\x46\xab\xa9\x7f\xac\xa1\x6b\x8d\xed\x7a\ \x09\x6b\xad\x17\x5c\x57\x5c\x8a\xab\x28\x14\x10\x06\x81\x01\x86\ \xb9\x38\x77\x66\x4e\xdf\xf7\xcb\x37\xc9\x64\x32\x30\x26\xfd\xc1\ \x9b\x93\xc0\x7c\xcf\xfb\x9c\xf7\x7c\xe7\xcc\x7b\x54\x42\x08\xcc\ \xc7\xf0\xf0\xb0\xda\xe7\xf3\x95\x59\xad\xd6\xcd\x81\x80\x6f\x23\ \x54\xea\x45\x5a\xad\x7e\x81\xd1\x64\xd2\x25\x25\x25\xa9\x21\x3f\ \x1f\x0e\x01\x08\x1a\xf4\x06\x3b\xe9\x75\xeb\xf5\xfa\x4b\x2a\x95\ \xea\x53\x00\xdd\x05\x05\x05\x61\xcc\xc3\x9c\x06\xc6\xc6\xc6\xbe\ \x36\x35\x35\xf5\xdb\x91\x91\x91\xf5\x93\x93\x93\x86\xc2\xe2\x52\ \xa8\x24\x09\x76\xdb\x14\xfc\x5a\x23\xb4\x5a\x2d\x92\x0d\x5a\x2c\ \x30\xe8\xa1\xd7\x4a\x90\x10\x46\xc8\xef\xc5\xf8\x93\x27\x50\xab\ \x55\x10\x22\x0c\x32\xe1\x35\x9b\xcd\x97\x33\x32\x32\xde\xcd\xc9\ \xc9\xe9\x43\x1c\xd4\x88\x61\x7a\x7a\x5a\xff\xe0\xc1\x83\xa3\xed\ \xed\xed\xbd\xa7\x4e\x9d\xda\x44\x89\x0c\x15\x15\x15\x18\x1d\xb5\ \xc0\x69\x9b\x44\xe9\xf2\xc5\xf0\xa5\x64\x60\x08\x7a\xf4\x05\x34\ \xb0\x42\x07\x87\x90\x10\xd0\x48\x30\xa6\xb8\x50\x5a\x51\x8c\xaa\ \xea\xb5\x58\xb3\xa6\x9a\x27\x61\x38\x7b\xf6\xec\xa6\x73\xe7\xce\ \xf5\x3e\x7a\xf4\xe8\x28\x6b\x23\x16\xae\x40\x74\x38\x9d\xce\x9f\ \xef\xdd\xbb\x57\xd4\xd7\xd7\x8b\x23\x47\x8e\x88\xde\xde\x5e\xf1\ \xb0\xaf\x57\x74\x7e\xd6\x29\xce\x9e\x6f\x17\xa7\x4f\xff\x55\x9c\ \x39\x73\x46\x90\x39\xb1\xaf\x6d\xbf\x68\xfe\xd1\x4f\x44\x63\x53\ \x83\xf8\xe7\xc9\x22\xf1\xf8\x4a\x96\x98\x7c\xb4\x46\xcc\x38\x5d\ \xc2\xe1\x70\xca\x9f\x69\x6b\x6b\x13\x4d\x4d\x4d\xe2\xd0\xa1\x43\ \x82\xb5\x63\xf3\xa9\x11\x83\xd7\xeb\xdd\x35\x38\x38\x08\x97\xcb\ \x85\xab\x57\xaf\x82\x04\xf0\x71\xfb\xc7\x54\x7a\x3b\x0a\xf3\x96\ \xe0\x85\x17\x2a\x41\xef\x03\x68\x79\x20\x42\xb3\x10\x01\x1f\xdc\ \xf4\xd9\x99\x90\x1e\xc6\x15\x95\xd0\x65\x64\xc2\xe7\x6d\xc0\xc8\ \xe3\xdb\xc8\xcf\xcf\x87\xdb\xed\x86\xdf\xef\x07\x4d\x44\xd6\x4e\ \xb8\x04\xb4\xe6\x3a\x9a\x3d\x4c\x26\x93\x9c\x88\xcd\x4c\x4c\x58\ \x11\x0a\x85\x20\x49\x12\x92\x93\x93\xe5\xd1\x6e\xb7\xcb\x63\x30\ \x18\xa4\xb5\x96\x30\xed\xce\x42\xd8\xb3\x19\x9e\x87\xab\x60\x4a\ \xce\x87\x46\x6a\x85\xcb\x69\x45\x79\x79\x39\x8c\x46\x23\x58\xd3\ \x62\xb1\xe8\x10\x43\xd2\xee\xdd\xbb\x11\x4d\x47\x47\xc7\x3b\xf4\ \x90\x61\xe3\xc6\x8d\x98\x9d\x9d\xc5\x13\x7a\xa9\x98\xdc\xdc\x5c\ \xa8\xd5\x6a\x84\xc3\x61\x04\x02\x01\x10\x5c\x25\x5e\x67\xd9\x9c\ \x0a\xc3\xf4\x19\x0b\x42\x69\x0e\xdc\xfb\x72\x10\x3e\xdb\x18\x1c\ \x96\x9b\xf0\x61\x05\x76\xfe\xf0\x35\xa4\xa7\xa7\xa3\xab\xab\xcb\ \x51\x52\x52\x72\x00\x51\x48\x88\x81\x66\xe4\xa1\xad\x97\xc1\x0f\ \x34\x34\x34\xa0\xb9\xb9\x59\xae\x42\x5f\x5f\x1f\x7a\x7a\x7a\x38\ \x21\x97\x5f\x0e\xda\x9e\xb2\x21\x83\xc1\x00\xbb\x55\x87\xff\xde\ \x7f\x8a\xec\x1c\x33\xd2\xd3\x76\x22\x2f\xbf\x12\x95\x35\x79\x5c\ \x7e\xd9\xa4\xc3\xe1\x60\xe3\x1e\x10\xf3\x19\x60\x41\x37\x08\x9e\ \x25\x27\xe1\xa5\xa0\xbd\x8c\x65\xcb\x96\xb1\x39\x39\x21\xc1\x5b\ \x0c\x74\x0e\xf0\xc8\x26\x78\x94\x2b\x24\x84\xe0\xca\xc9\x89\x6d\ \x36\x1b\x3c\x1e\x0f\x6b\x45\x69\x27\x36\xe0\x8d\x63\x0a\x0c\x8b\ \xf2\x4b\xf5\xf4\xe9\x53\x39\x18\x36\x18\x09\x7e\x3f\x78\x39\xd8\ \x00\x8f\xf1\xb4\x13\xbd\x84\x2c\x10\x65\xe0\xff\x25\xb1\xb6\x3a\ \xce\xb9\xe0\xc1\x3c\x04\x43\x41\x7c\x3e\x7e\x0b\xf7\xac\xdd\x38\ \x76\xe3\x77\xf8\xd9\x47\x8d\x68\x3e\xb3\x1d\xef\x5e\xf8\x31\x6e\ \x58\xae\x21\x01\x89\xde\x81\xc4\x15\x38\xf0\xc5\x7b\xe8\x1a\xe8\ \x84\xe4\x16\x78\xa7\xfc\x97\x38\x79\xe7\x30\xec\x7e\x27\x06\x6c\ \xfd\x78\xaf\x73\x1f\x8e\xbe\xf8\x67\x40\x00\xba\xb0\x16\x31\xf0\ \xd2\x24\xac\x00\x33\x83\x39\xb8\x32\xf6\x2f\xdc\x99\xbc\x03\xa8\ \x80\x90\x98\xc5\xb4\x67\x12\x2f\x95\xbd\x8a\x08\x81\x50\x00\xad\ \xb7\x5b\xf1\x37\xcb\xdf\x21\xa9\x25\xc4\xd7\x4e\x6c\x60\x08\x71\ \xf0\x85\xfd\xf8\xb0\xef\x18\x18\x41\xa1\xd7\x18\x50\x6c\x2e\xc1\ \xea\xc2\x6a\x14\x65\x2d\x87\x0c\x04\xdc\x41\x0f\xb6\xe5\x6f\x45\ \x1c\x78\xa7\x0c\x25\x32\xc0\xdf\x72\x03\xf1\xde\xe0\x2f\x6c\xdd\ \xb0\xf9\x6d\x88\x50\xbb\xf8\x7b\x48\xd1\x2f\xc0\x88\x6d\x10\x4c\ \x8a\x2e\x05\x66\x63\x36\xde\x5e\xf9\x16\xfe\x31\xfe\x09\x2c\xfe\ \x51\x44\xa3\x9c\xa4\x03\x09\x0d\x68\x34\x9a\x3e\xde\xb7\x11\xc6\ \x67\xad\x98\x0a\xda\xf0\x7c\xda\x0a\x7c\x50\x75\x18\x2b\xbf\xb2\ \x12\xd9\xa6\x1c\xd4\x14\xd6\x82\xc9\x59\x90\x87\xd6\x0d\x07\xf0\ \x97\x2d\x1f\xe1\xf5\x55\x6f\xe0\x0f\xff\x79\x1f\xc7\x06\x4e\xe0\ \x83\xd1\x13\x88\x86\x35\x75\x3a\x5d\x5f\x42\x03\xd4\x4c\xf4\xf3\ \x09\x17\x41\x40\x60\xf7\x50\x1b\xd6\x5f\xa9\x43\x73\xe7\xeb\xf8\ \xfe\xe2\x2d\xd8\xb5\xfa\xd7\x48\x52\xd6\x58\x4a\xd2\x20\xc2\xe5\ \xa1\xcb\x18\xf7\x8e\x81\xb9\xeb\xea\xc6\x6d\x5f\x37\x22\x90\x26\ \x57\xa0\x3f\xa1\x81\xed\xdb\xb7\x4f\x78\x08\x28\x64\x4b\x59\x70\ \x2b\x1b\x23\x2c\xc2\x38\x7c\xff\x8f\xd0\x49\x3a\xc4\xe3\x8d\x6f\ \xbe\x09\xad\x5a\x8b\x08\xa7\x67\xda\x11\x81\x35\x59\x3b\xa1\x01\ \xa5\x5c\x4f\xa0\xf0\x6f\xcf\x2d\x0c\xf9\x86\x11\x21\x4b\x97\x89\ \x4f\x86\xce\xc7\xed\x2b\xf8\x1d\xd8\xb6\xf4\xe5\x48\xe9\x60\x9d\ \x9d\x06\xa3\x9c\xa2\x8a\x66\x62\x03\x5c\xae\x7e\x28\x58\x43\x24\ \xa2\x82\x4c\xb2\x94\x8c\x5f\x94\xfe\x0a\xdf\x2e\xf8\x0e\x62\x5b\ \xb9\xcf\x2c\x37\xc1\x6c\x5d\xbc\x15\x1b\x16\xae\x83\x59\x6b\x46\ \x63\xfa\xcb\x71\x34\x13\x1b\x60\xba\xa0\x50\x6d\x58\x0d\x15\xfd\ \xf0\x6f\xc3\x92\x1f\x20\x59\x93\x0c\xa3\xc6\xc8\x5b\x0a\x11\x7c\ \x41\x2f\x4e\xf7\x9c\xc4\x95\xe1\x0e\x5c\x1b\xbf\x86\xb2\xf4\x55\ \xd8\x6a\xde\x8c\xa9\xb0\x2d\x8e\x66\x62\x03\xbc\x15\x6f\x72\xa3\ \xc1\x2c\x94\xcc\x78\x29\x73\x13\xf2\x8c\xb9\xf8\x96\xb9\x0a\xad\ \x9f\xb7\x60\xe7\xa5\x7a\xbc\x75\xa1\x11\x6f\xb7\xbf\x8a\x83\x17\ \x5a\x71\xe9\xe1\x79\x3c\x9e\x19\x44\xdb\x8d\xdf\x60\xff\xdd\xfd\ \xd8\x7f\xff\x20\xde\xb7\x7c\x88\x2a\x7d\x39\x18\xd2\xe2\x1d\x70\ \xf3\x59\x0d\x70\xf3\x70\x9d\x5a\x29\x01\x85\xd7\x16\x35\xa0\x2a\ \xb3\x12\x1d\xe3\x9f\xa2\xc7\xd6\x83\xa0\x08\x22\x84\x30\x84\x4a\ \x00\x10\xe8\x7c\x7c\x15\x32\x02\x11\x50\x99\x56\x81\x02\x6d\x2e\ \x18\xd6\x4a\x4d\x4d\xbd\xfe\xcc\x06\xea\xea\xea\x66\xa8\xdb\x19\ \x82\x82\xa4\x92\xd0\xfc\x5c\x13\x96\xa6\x2e\x95\x97\x23\x96\x75\ \x45\x75\x88\x66\x69\xca\x12\xfc\xb4\xe0\x4d\x44\x60\x2d\xd6\x7c\ \x66\x03\xca\x43\xf7\x10\x85\x51\x32\xa0\x94\xd6\xf6\x40\xe5\x41\ \xd4\x17\x37\x60\x4b\xf1\x2b\xd8\xfc\x8d\x6d\x58\x5b\xb4\x01\x6b\ \x97\xac\x43\x49\xf6\xf3\xf8\x53\xdd\x71\x1c\xaf\x39\x8e\xdf\x97\ \x1d\x82\x49\x6d\x84\x02\x77\xda\x5f\x62\x0e\xd4\x71\xce\x6b\x35\ \x45\x2a\xb5\x65\x1d\x7c\x7a\xf1\xfa\x45\xc3\x55\xa8\xfd\x6a\x1d\ \xd6\x15\xbe\x88\xf5\x45\xdf\xc5\xea\xe7\xaa\xe5\x2f\x9e\x57\x56\ \x36\x22\x3f\x35\x1f\x0b\x8d\x0b\xa3\xdb\x3b\xb0\x46\x7f\x7f\xff\ \x75\xd2\x5c\xc4\xba\x2a\x62\x2e\x03\x9c\x5c\x0f\x20\x93\xc2\xdc\ \xd2\xd2\x72\x6d\x74\x74\xf4\x2e\x9f\x60\x13\x13\x13\x3c\x0b\xb9\ \xd3\x99\x8b\xe5\x59\x5f\x8f\x24\x95\xbb\x25\xba\x4d\x81\x9f\xa5\ \x89\xf4\xec\xd9\xb3\xe7\x16\x00\x76\x66\xa6\xc8\xa2\x3c\xda\x58\ \x03\x50\x9c\xf1\x3f\xf4\x1c\x24\xa4\xad\xad\xad\x6d\xb9\x78\xf1\ \xe2\x11\x6a\xab\xed\x20\x66\x66\x66\xb8\xc1\xe4\x91\x4f\x36\xee\ \xf3\xd9\x18\x27\xe3\x76\x9e\x67\xca\x37\x2b\x10\xdc\xa8\x3a\xe9\ \x56\x74\x82\xd6\x7e\x1f\x19\x67\xcd\xe8\x90\xe2\xde\x0d\x15\x67\ \x69\x14\xa9\x4a\xa4\xf0\x48\xcd\x67\xea\x8e\x1d\x3b\x96\xd5\xd4\ \xd4\x94\x51\x83\xba\x84\x9a\xcf\x54\x7a\xce\x44\x18\x09\x90\x86\ \x97\xfa\x3d\x0f\x25\x72\x51\xe7\x3c\x44\x57\xb1\x1e\xba\xda\x3d\ \xa4\xbf\xb9\x00\x70\x38\xa3\x46\x76\x68\x17\x44\xac\x81\xd8\xa5\ \x88\x18\x31\x29\x61\x8c\x9a\x81\x8e\x42\x43\x91\xc4\x1a\xca\x06\ \x94\x6f\xc8\x14\x7e\x0a\x9f\x12\x1e\x0a\x37\x85\x43\x49\xec\xa2\ \x7c\xe1\x44\xb7\xe3\x58\x33\x9c\x44\x17\x95\x5c\x1b\x15\x12\x6b\ \x28\xc9\x67\x29\x02\x1c\x8a\x09\xaf\x62\x22\x28\xe6\x49\xf2\x3f\ \x6f\xbf\xd0\x39\x93\x06\xd0\xcd\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x06\x33\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x05\xa7\x49\x44\x41\x54\x58\xc3\xed\x97\x59\ \x6c\x94\x65\x14\x86\x9f\x33\x4b\x67\x68\x67\xe9\x22\x4b\xdb\xe9\ \x74\xda\xb1\x05\x51\xa1\x28\xd4\x4a\x27\xe9\x88\x41\x44\x94\x28\ \xae\x31\x5e\xb8\x6f\xc8\xa2\x5e\x88\x8a\x42\xa3\x21\x78\x51\x53\ \x23\x41\x4d\x34\x8a\x31\x2e\xa9\x89\x44\x89\xa8\x17\x3a\xb5\x22\ \x54\x85\x56\x10\x6c\x69\x0b\xed\x4c\x29\x85\x96\xae\xf3\x4f\xab\ \x9d\x99\xcf\x0b\xda\xda\x4e\xe9\x82\x26\x72\xe3\x97\x9c\xab\xf3\ \x9d\xf3\xbe\x79\xff\xf7\x3b\x27\xbf\x28\xa5\xb8\x90\x47\x77\x41\ \xd1\xff\x27\x00\x18\x26\x4a\x96\x89\x58\x4c\x33\x67\xee\x32\xa7\ \xa6\x3a\x7a\x6b\x6a\xae\xbb\xb5\xaf\xef\xd8\x54\x9a\x7e\x2e\x92\ \x65\xbc\xf8\xe2\xaf\x15\x9c\x0e\xd7\xd7\x2f\x5f\xa9\x54\xef\x79\ \x2b\x50\x26\x62\xd1\xc3\x6e\x91\x68\x91\xd9\x39\xdd\x2d\xfd\xfd\ \xdf\xee\x14\x71\x4d\x06\xbe\x53\xc4\x15\x86\xef\xe2\x1d\x29\x39\ \x98\x0c\x85\x61\xf8\xb2\x4c\xc4\x72\x5e\x04\x06\x0b\x76\x8b\xd9\ \xe8\x29\xd8\xf8\x24\x8b\xee\x7b\x18\xeb\x5c\x57\xe6\x00\x94\x97\ \x89\x64\x4d\x40\x3a\x6b\x00\xca\x6d\x97\x65\x67\x5e\x79\xdf\x43\ \x78\x5e\xda\x88\x98\x8d\x1e\x60\xf7\x78\x24\x74\xe7\x02\x8f\x0c\ \x81\xbf\xb8\x0e\xcb\xe9\x7e\xa8\x3a\xc4\xd5\xc5\x5b\xb0\xce\x71\ \x3a\x23\xe0\xfb\x50\x24\x3b\xb6\x6e\x87\x88\x3b\x0c\x3e\xeb\x25\ \x99\xce\x45\x6b\x9f\x44\x5f\xdf\x44\xdc\xef\x4d\x5c\xb3\xe3\x2d\ \xc4\x6c\xf4\x44\xc6\x21\x31\x86\xc0\x1f\xf0\x89\x98\x8d\x9e\x85\ \x6b\xee\x26\xee\x4c\x14\x2d\x18\x44\x0b\x06\xe9\xdf\xb7\x9f\x82\ \x17\x8a\xb1\xce\xce\x70\x46\xc1\xb7\x43\xc4\x3d\x54\xf3\xa6\x48\ \x4e\x10\xbe\xb7\xcc\x71\x3a\x17\xae\x5d\xcf\x40\xcd\x71\x34\x4d\ \x23\x78\xe6\x0c\xea\x60\x03\x4b\xde\xdd\x8e\x98\x8d\x9e\x3f\xe0\ \x93\x49\x09\x44\x21\x5d\x6f\x33\xa3\x42\x11\xb4\xa0\x46\x48\x1b\ \x8c\x60\x90\x9e\x8a\x4a\xf2\x9f\xd9\x80\xc5\x9d\x9e\xd1\x0d\x15\ \xdb\x44\x72\x4b\x44\x66\x37\xc2\x1e\xa3\x3b\x3d\x6d\xd1\xea\xd5\ \x84\xaa\x6b\xfe\xae\xd1\x34\x82\x9d\x9d\x18\x12\x92\xd0\x59\xe2\ \x88\x42\x7a\x2c\x9e\xc4\x4e\xc2\xf7\x44\x5c\x0a\x7c\x36\x47\x52\ \xe6\x65\x37\x2c\x25\xaa\x19\x63\x28\xeb\xb0\x5f\x3d\x8f\x9d\x25\ \xa5\x1c\x6f\x38\xd1\xd6\x03\xba\x19\x59\xa9\x29\xf7\xaf\x7d\x9c\ \xbe\xfd\xb5\x48\x4c\xbf\x94\xa2\x7c\x7e\x7c\x65\x2b\x9d\x0d\x27\ \x9b\x04\xbc\xf7\x2a\xd5\x38\x21\x81\x41\x49\x5d\x06\x28\xb7\xa5\ \x27\x3a\x2f\x5f\xe6\xe5\xcf\x8e\x18\x95\x44\xb0\x16\xce\xe7\xfd\ \x6d\xdb\x09\x29\xc5\xfd\x8f\x3d\x4c\x5f\xe5\x11\x0c\x31\xbd\xec\ \xf3\x5c\xec\xff\xe0\x63\x3a\x8f\xb5\xfa\xc3\x50\xf4\x68\x0c\xf8\ \xb8\x04\x00\xde\x16\xc9\x8a\x80\xcf\x96\x66\x77\xce\xbb\x76\x31\ \x7d\x27\x07\x86\x73\x0a\x08\xeb\x74\x58\x16\x5f\x4a\x24\x1a\x25\ \xb8\xf7\x08\x26\xa5\x90\xa1\xa6\x7a\x3d\xd6\x9c\x14\xaa\xbe\xf8\ \x86\xae\xa6\x76\xbf\x1e\xbc\x0f\x2a\x75\xfc\x5c\x38\x32\xd1\x32\ \x7a\x43\x24\x5b\x81\xcf\x96\x6a\xcf\xc8\xf3\x2e\x44\x6b\x0c\x8d\ \x22\x31\xa0\xd3\xa1\x00\x43\x34\x8a\x1e\x88\xcf\xcc\xc4\x9c\xed\ \x26\x2e\x35\x81\x1f\x4b\x4a\xe9\x6c\x3c\x1d\x10\xf0\x3e\xa6\xd4\ \xb8\x03\x4c\x26\xdb\x86\xa5\x22\xd9\x7a\x28\xb7\xcf\xb2\x39\xf2\ \x3c\xf3\x09\x1e\xed\x3e\x9b\x30\x18\x98\xe6\x70\x60\x4a\x4d\x43\ \x67\x30\xf0\x67\x34\x42\xc7\x91\x23\xe8\x8d\x2d\x1c\x3b\xd4\x4a\ \xcf\xa9\xde\xe6\x08\x14\xad\x9f\x00\x7c\x4a\x04\x00\x5e\x17\x71\ \x47\xc0\x97\x38\xcb\xe6\xb8\xe2\xba\xc5\xf4\xd6\x75\x83\x4e\x47\ \xc8\xef\x27\xd4\xdc\x0c\x83\x3d\xa6\x5f\x3b\x9b\xda\xdf\x5a\xe8\ \x3e\xd5\xdb\xac\x07\xef\x1a\xa5\x1a\x26\xeb\x6d\x98\x14\x1d\xe8\ \xe7\xec\x7b\x0d\x2b\xe8\x6b\x69\x44\xdb\x5b\x33\x9c\x9b\x36\xe2\ \x9e\x5e\x74\x44\x10\x22\xc0\xc0\x54\x1a\x4f\x45\x81\xad\x22\xd9\ \x3a\x28\x4f\x9c\x65\x77\x2c\x9c\xe7\x40\xfb\xe6\x30\x70\xd6\x03\ \x43\x95\x32\x18\x00\x09\xcb\x2e\xe7\x97\x83\x01\xba\x4e\x76\x35\ \x47\xa1\x68\xc3\xbf\xf9\x04\x5b\x07\x4d\x98\x98\x9a\x98\x51\x38\ \x3f\x93\xf0\x57\xbf\x8e\x02\x0f\x8f\x90\x71\x24\x09\xc3\x0d\x0b\ \xd8\x53\xd5\x48\xd7\xc9\xce\x80\x80\x77\xc3\x3f\x31\xe1\xcb\x67\ \x97\x8e\x2f\x39\x2d\xd9\xe9\xcd\x73\xc1\x97\x07\x86\x73\x0a\x88\ \x00\x6d\xd7\x2f\x40\x10\x2e\xfa\xea\xc0\xd8\x6f\x79\xe3\x55\xf8\ \xaa\xea\xe9\x38\x71\xc6\x0f\x78\x37\x9e\xcf\x33\x2c\x16\x71\x09\ \x94\x27\xa7\xa7\x38\x97\x2d\xc8\xc1\xb0\x6b\xdf\xa8\x7c\x04\x38\ \x7d\x63\x21\x4f\x1c\xa8\x45\x01\xdb\xaf\x9c\xcb\x8c\x2f\xbe\x1f\ \x33\xd7\xc3\xb7\x2c\xe1\xeb\x5f\x0e\xd3\x11\x38\xe5\x57\x50\xb4\ \xe9\x1c\x83\x68\xcc\x2e\x78\xce\x6e\xce\x11\xf0\x25\x67\xcc\x74\ \xae\xc8\x9f\x8f\x75\xd7\x3e\xa6\xc1\x70\x98\x81\xde\x5b\x96\xf2\ \x7c\x75\x03\xf6\x96\xf6\xee\x84\x96\xf6\x9e\x67\xab\x8e\xd2\xbb\ \xea\x7a\xcc\x23\xee\x4d\x03\xac\x9f\x7d\xcb\x8a\x82\x45\x24\x3b\ \xd3\x9d\x26\x8b\xa5\xfc\xcd\xbc\xbc\xdc\x49\x15\xd8\x34\x23\xf1\ \xa8\x2d\xcb\x91\x73\xa7\xdb\x8d\xf5\xa3\xcf\x47\xe5\x14\xd0\x7a\ \xdb\x0a\xd6\x57\x56\xa1\x0b\xb4\x74\xe6\xc2\x62\x80\xc3\xb0\xcf\ \x90\x91\x66\x7f\xed\xaa\x2b\x98\xf1\xe9\xae\x61\x2f\x0c\x1d\xed\ \x9e\xdb\xf9\x39\x2c\x34\x1f\xa8\xfe\x7d\x75\x6d\xed\xdc\x09\x15\ \x00\xd5\x1a\xea\x09\xd2\x9f\x72\x11\x46\x53\x1c\x46\x18\x8e\xae\ \x3b\x56\xb2\xa9\xb2\x1a\x7d\xa0\xa5\x23\x17\x0a\x4a\x95\xaa\x29\ \x55\xaa\xe6\x52\xc8\x57\x81\x96\xce\xcd\x95\xd5\x74\xdd\x79\xf3\ \xa8\x1a\xa3\x29\x8e\x50\x72\x12\xcd\x55\xd5\x84\xda\xda\xfc\x63\ \xe1\x94\x1a\x15\x9b\xc1\x52\x0c\x15\x5b\xe2\xe3\x55\xdd\x9a\x07\ \x95\x66\x8a\x53\x1a\x28\xff\x5d\xab\xd4\xa3\x4e\x87\x5a\x09\xed\ \xeb\x20\x37\xb6\x6e\x1d\xe4\xde\x04\xed\x8f\x3b\x1d\xca\x7f\xd7\ \x2a\xa5\x81\xd2\x4c\x71\xaa\x6e\xcd\x43\x6a\x4b\x42\xbc\x2a\x86\ \x8a\xcd\x60\x89\xad\x1b\xcf\x84\x16\x81\xdd\xc6\x84\x78\xcf\xed\ \x0f\xdc\x43\x7c\x47\x17\xdb\x2a\xf6\xd2\xd0\x14\x68\x4b\x87\xc2\ \x57\x95\xaa\x3b\x97\xa3\x9f\x12\xc9\x39\x01\x7b\xe6\x64\x66\x4c\ \x7f\xc4\x53\x40\x28\x25\x89\xb2\x77\x3e\x60\x40\x0b\xfd\xa0\x60\ \xf9\x26\xa5\x82\x53\x7a\x05\x23\x49\x30\xd7\xe5\x31\xea\x0c\xd4\ \xfd\x56\xdf\x9a\x04\x9e\x92\x49\xc6\xeb\xd3\x22\xee\x6e\xa8\x58\ \x5a\x90\x9f\x4a\xa8\x8f\xda\x83\x87\xc6\x05\x1f\xc7\x03\x83\x66\ \x54\x2a\xa8\x60\xf9\x40\x30\xf4\x53\x77\xa0\xf5\xe8\x4c\x28\x9c\ \x0c\x1c\xa0\x44\xa9\x86\xe9\xe0\x89\x74\xf7\x1e\xd7\x2b\x2a\x27\ \x02\x9f\x50\x81\xff\xea\x5c\xf0\x3f\xa3\xff\x09\xfc\x05\xa1\x1f\ \x94\x07\xa7\x00\xae\xf3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x06\x54\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1d\x0d\ \x0d\x01\x6e\x1d\x39\xfc\x00\x00\x05\xb5\x49\x44\x41\x54\x58\xc3\ \xbd\x97\x5b\x8c\x56\x57\x15\x80\xbf\xb5\xf7\x3e\x97\x7f\xe6\x9f\ \x0b\x03\x43\x61\x6e\x15\x70\xe8\x40\x13\x10\xa7\x08\x96\x8e\x8d\ \x4c\x99\x36\x2d\xad\x50\x9b\xd6\xa4\xa1\x91\x6a\x6a\x7c\xf1\xc5\ \x58\x9f\xb4\x1a\x13\x93\x7a\x49\xf4\xc1\xc6\xb4\x89\x1a\x6b\x28\ \x4d\x4a\xab\x89\x0f\xb4\x95\x78\x09\x31\x26\x88\x11\x8c\xd5\x08\ \xbd\x90\x32\xad\x21\x94\x38\xc0\xfc\xe7\xfc\xe7\xec\x8b\x0f\xff\ \x3f\xc3\xcc\x74\x6a\x87\xe9\xe0\x4e\x56\xce\x3e\x27\x59\x6b\x7d\ \x67\xad\xb5\xd7\xde\x1b\x3e\xc0\x08\x21\x10\x42\xf8\x20\x26\x90\ \xc5\x2a\x5e\xbf\xfb\xfb\xd1\xee\x91\x0d\x87\x4b\xaf\xec\x91\xe3\ \x67\xef\x7a\xf5\xb9\xcf\xdb\xc5\xd8\x51\x8b\xfe\x7b\x67\xbf\x31\ \x30\xb0\x7c\x67\x6f\xef\xb2\x31\xe0\x6b\x8b\xb5\xa3\x17\xa3\xd4\ \x77\xdb\x63\xb7\x6e\xdf\xb2\xe6\xc9\x5d\xb7\x6d\x56\x7d\x3d\x1d\ \x8c\xbf\x35\x71\x8b\x5d\x7d\xc7\xef\x2e\xfc\xfd\x97\x67\xae\x79\ \x04\x56\x7f\xe2\xd1\x65\x5d\xed\xe9\xd3\x7b\xee\x1a\xd6\xb5\x5a\ \xce\xe5\xc9\x8c\x4f\xdf\x7e\x83\x6e\x6f\x8d\x7e\x31\xf8\xc0\xcf\ \xbb\xae\x29\xc0\x75\x37\x7f\x09\x82\x7d\xf2\xfe\x4f\x6d\xeb\x77\ \xde\x91\x67\x19\x79\x96\xe3\xbc\x65\xef\xce\x35\xfd\x81\xf0\xd4\ \xe0\x67\x9e\xbe\x76\x00\xc1\xdb\xcf\x8d\x6c\x1b\xba\xaf\x7b\x65\ \x27\x59\x96\xcf\x92\x55\xdd\x09\x37\x0d\x2d\xbf\x97\x10\x1e\xb9\ \x1a\x9b\x0b\x5e\x05\x2b\x86\x1f\x5e\xdf\xb3\x7a\xe5\x5f\x1e\xde\ \xbf\xbb\x15\x99\xa1\x16\x66\x9b\x7b\xe6\xf0\x99\xda\x85\x8b\x76\ \xeb\xa9\x67\xf7\xbd\xb2\x64\x00\x5d\x9b\x1f\x8c\xa3\x38\xfe\xe3\ \xfe\x87\xee\x19\xee\xe8\xea\x98\xe3\x38\xcc\x7a\xbd\x34\xe9\x39\ \xf4\xdb\xb7\x4f\x06\x64\xdb\xa9\x83\xfb\xf2\xa5\x49\x41\x70\xdf\ \xba\xe5\xe3\x9b\x86\x93\x4a\x72\x25\xec\x79\x46\x96\x65\xd3\xef\ \x79\x53\x22\x55\xf0\xd1\xf5\x6d\x9b\x08\xe1\x3b\x4b\x12\x81\xce\ \x1b\xef\x1b\xed\xef\x5f\xfd\xd2\x9d\xbb\x3f\xa9\xa6\x9b\xde\x8c\ \xb0\x87\x79\x66\x4a\x29\xfe\x70\x32\x0b\xe7\x2f\xba\x7b\x4e\x1d\ \xdc\xf7\xeb\x45\x03\x74\x6c\xd8\xb3\x3c\x49\xd3\x13\x7b\xf6\x8c\ \xf5\x26\x95\x74\x4e\x54\xe6\xa4\x7f\xce\x28\x9d\xe2\xf7\x7f\xab\ \x9f\x77\x5e\x36\x9f\x7a\xf6\xa1\xb7\xae\x1a\xa0\xfd\x86\xbb\x41\ \xe4\xf9\x1d\x3b\x3e\xb6\xb7\x77\xa0\x77\x1e\x45\x99\xd6\x9e\xda\ \x0f\xe6\xee\x0b\xef\x5c\x84\x93\xaf\x17\x47\x50\x32\xf6\xda\xa1\ \x2f\xf8\xf9\xfc\xbc\x67\x0d\x84\xe0\x1f\xe9\xed\x5d\xb5\x77\xf9\ \xca\x15\x8d\x1c\xe7\x75\x8a\x7a\x49\x69\x3d\xce\x81\xf3\x57\xc4\ \x7b\xb0\x2e\x60\xad\xa7\x28\x2c\x79\x5e\x27\xcb\x72\xaa\x49\x41\ \x77\xb5\x18\xf5\x45\xf6\xe8\x7b\xf9\x99\xb7\x15\xb7\xae\xbb\x7d\ \x28\xad\x24\xcf\x6f\x19\xfe\x48\xe4\x3d\x04\x0f\x88\x02\x51\x88\ \x28\x40\x21\x22\x4d\x7e\x21\x20\x84\x20\xf8\x10\xf0\x3e\xe0\x5c\ \xc0\x96\x8e\xa2\x5e\xd0\x59\x55\xbc\xf3\x9f\xfc\xd6\xea\xba\xb1\ \x97\x26\x4e\xbd\x3c\xfe\xbe\x11\x68\x59\x33\x1a\x0b\xfe\xc0\xd0\ \xc6\xa1\x96\xa9\xbf\x72\x01\x7c\x10\x42\x50\x84\xa0\x40\x34\x01\ \x0d\xd2\x14\x34\x01\x45\x40\xe3\x51\xf8\x20\xb8\x20\x58\x17\xa8\ \x4d\x66\xac\xef\x4d\x22\xf1\xc5\x81\xeb\xef\x7c\xbc\xfd\x7d\x01\ \x42\xf0\xdf\xee\x1b\xe8\xdf\x92\x54\xaa\x38\x37\xc3\x31\x8a\x20\ \x1a\xc4\x34\x44\x99\x2b\x73\x31\x88\x32\x33\x60\x34\x21\x08\xa2\ \x0c\x9d\xed\x55\x56\x75\xb5\x30\xd8\xd7\xba\x36\xf8\xf2\x89\xff\ \x99\x82\xb4\x7f\x64\x57\xc7\xb2\xce\x1f\xf5\x7f\x68\x50\x10\x8d\ \xd2\x51\x53\x0c\x4a\x47\xe8\x19\x73\xa5\x1a\xcf\x28\x8a\xa8\x24\ \x09\x91\x89\xd0\x5a\xa3\x45\x1a\xb5\xe9\x03\x79\x96\xf3\xea\x1b\ \xff\xe6\xf8\xc9\xd3\x8c\x9f\x1d\xa7\x7d\x59\xd7\xa6\xea\xba\x3b\ \x5e\x9f\x38\xfd\x9b\x13\xef\x5a\x05\x9d\x83\xa3\xed\x65\x69\xff\ \xd1\xbb\x6e\x43\x4f\x90\x84\xb4\xd2\x42\x9a\x54\x88\xd3\x94\x24\ \xad\x90\x24\x29\x71\x9c\x10\x45\x11\xda\x44\x28\xd5\xa8\x07\xeb\ \x3c\xf5\xa2\xc4\x5a\x8b\x2d\x4b\xca\xa2\xa0\x28\x72\xea\x79\x4e\ \x9e\x67\xe4\x59\x8d\x3c\xab\x91\xd5\x26\xa9\x76\xb4\xd1\x33\xb8\ \xf1\xd2\x75\xab\xba\x3f\xfc\xc2\x37\xef\x3d\x07\x60\xa6\x00\x36\ \x8e\x6c\xdf\x53\xed\xef\xeb\x39\x73\xec\x34\xde\x02\x3a\x82\x28\ \x46\xc5\x09\x3a\x4e\xd1\x49\x8a\x0b\x1a\x21\x42\x24\x42\x94\x41\ \x94\x60\x34\x28\x93\xe0\x5c\x13\x20\x2e\x68\x91\x16\xea\x79\x46\ \x3d\x4f\xc9\xf3\x94\x3c\x4b\x49\x6b\x09\x2d\x1d\x15\xd6\xee\xba\ \xb1\x2d\x9f\x64\x2d\x30\x1b\x60\x52\xc7\xaf\xd9\x37\xde\xbc\x7c\ \xe1\xec\x3f\xab\x65\x9e\xd3\xe8\x34\x01\xf0\xe0\x1d\x69\x25\x61\ \xf4\xfe\x2f\x13\x1c\x98\xc8\x60\xb4\x41\xa9\x46\x00\x7d\x08\x38\ \xeb\x28\xa3\x92\x24\x24\x1c\xfd\xd5\x0f\xc9\x6a\x25\x3a\x6e\x45\ \xc5\xad\xe8\xa4\x8a\x4e\xda\x30\x79\x2b\xe7\xfe\xf4\xaf\xa3\x6b\ \x47\xb6\x1e\x9f\xf2\x3b\x0d\x70\xe2\xa9\xc7\x8e\xee\xfd\xec\x57\ \xdb\x5e\xb9\x54\x13\x5b\x16\xcd\x04\x85\xa9\x1c\x69\xa5\xcb\x32\ \xa9\xa4\x60\x03\x71\x1c\x61\x8c\x41\xa9\x46\x0d\x7b\xef\xb1\xd6\ \xa2\x4b\x8d\xc3\x63\xbd\x84\x10\xaf\x30\xce\x24\x04\x95\x84\x10\ \x52\xbc\x33\x54\x5b\xaa\xbc\xf8\xdd\xfd\x41\x66\xec\xa6\xd3\x00\ \x00\x2f\xfc\xec\x71\x98\xa7\xc3\x56\xfa\x6f\x0e\xe8\x88\x38\x89\ \x51\x06\xe2\x38\x26\x32\x06\xad\x1b\x00\xce\x7b\xca\xd2\xa2\x54\ \x81\xc5\xa3\x92\x16\x2e\x1c\x3b\xf4\xae\xce\xf7\x36\x20\x07\xbf\ \x32\xeb\x9b\x61\x21\x43\x54\x10\x1d\x61\xe2\x18\xe3\x20\x4d\x92\ \x66\x14\x1a\x8b\xc8\x59\x47\xa1\x4b\x04\x10\x1c\x2a\xa9\x2e\xc8\ \xec\xd5\x00\x80\x8e\xd0\x91\x21\x56\x90\x24\x11\x69\x92\x10\x45\ \x06\x10\xca\xb2\x04\x11\x9c\xf7\x38\x2f\xa8\xa4\x75\x89\x01\x50\ \x60\x22\xd0\x1a\x0d\x18\x63\x88\xe3\x06\x04\x02\x22\x82\x73\x8e\ \x52\x6b\x44\x02\x12\x2f\x35\x80\x28\x50\x86\x20\x82\x34\x1d\x8a\ \x28\xb4\xd6\x20\xa0\x94\x30\x5d\x58\x22\x48\xdc\xba\xe0\xeb\xd2\ \x82\x00\x42\x70\xcd\x6b\x98\xc7\x7b\x70\xce\x61\xad\x25\xaf\xd7\ \x11\x84\xd2\x5a\x9c\xf3\x78\x1f\xf0\x04\xc4\x24\x0b\x8e\xc0\x82\ \x8e\x64\xdd\xdd\x5d\xb4\x2d\xef\xc4\xa6\x11\xf5\xd4\x90\xc5\x8a\ \xcb\x06\x2e\x8a\x67\x42\x1c\x97\x35\x64\xb1\xa2\xa8\x18\x6c\x25\ \xa2\x77\xfd\x00\x47\x26\xc2\x82\xce\x9b\x0b\x8a\xc0\x13\x87\x9f\ \x09\xdf\xfb\xc1\x4f\xfe\x7c\xe4\xe0\x8f\x6f\x3a\x3f\x7e\x0e\x51\ \x1a\x51\x06\xa5\x4d\xb3\x23\xea\xe6\xd3\x50\x5d\xd6\xc9\xd0\xce\ \xed\xc7\x8e\xd7\x97\x30\x05\x77\xaf\x48\xc3\x4f\xb3\xfa\xd6\x03\ \x5f\xfc\xba\xbc\xf9\xd7\xf3\x48\xd3\xf1\x15\x80\x68\xfa\x1b\xb5\ \x8c\x07\x76\x8c\x85\x07\x57\x2e\xfa\xde\xfb\xff\x1d\xff\x05\xb8\ \x42\x64\xb8\xde\xd7\x88\x06\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x06\xa1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\xd6\ \x50\x4c\x54\x45\x00\x00\x00\x2a\x2a\x2a\x3a\x3a\x3a\x00\x00\x00\ \x00\x00\x00\x39\x39\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x41\x41\x41\x36\x36\x36\xa0\xa0\xa0\x3a\x3a\x3a\x3e\x3e\ \x3e\x3d\x3d\x3d\x80\x80\x80\x81\x81\x81\x38\x38\x38\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x05\x05\x05\xff\xff\xff\x00\x00\x00\x00\ \x00\x00\x96\x96\x96\x00\x00\x00\x47\x48\x46\x00\x00\x00\xfd\xfd\ \xfd\x31\x31\x30\x00\x00\x00\xfc\xfc\xfc\x1e\x20\x1e\x00\x00\x00\ \xc5\xc5\xc4\x11\x11\x11\x04\x04\x04\x1d\x20\x20\x05\x05\x05\x3d\ \x3e\x3e\x1f\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xba\xc0\xc1\ \xbf\xc4\xc5\xbc\xc1\xc2\xf9\xf9\xf9\xfd\xfd\xfd\xc4\xc4\xc4\xba\ \xba\xba\xf3\xf3\xf3\xf1\xf1\xf1\xf4\xf4\xf4\xbc\xbc\xbc\xc6\xc6\ \xc6\x26\x26\x26\x1a\x1a\x1a\x0e\x0e\x0e\x0a\x0a\x0a\x00\x00\x00\ \x97\x96\x96\x6b\x71\x72\x6e\x73\x74\x01\x01\x01\x11\x11\x11\x1d\ \x1d\x1d\x2a\x2a\x2a\xb6\xb6\xb6\xc0\xc0\xc0\x93\x93\x93\xfb\xfb\ \xfb\xfc\xfc\xfc\x59\x59\x59\x5f\x60\x60\x83\x83\x83\x82\x81\x81\ \xfa\xfa\xfa\xa4\xa4\xa4\xbf\xbf\xbf\xb8\xb8\xb8\xb4\xb4\xb4\x39\ \x39\x39\x69\x69\x69\x3d\x3d\x3d\x33\x33\x33\x3b\x3b\x3b\x1f\x1f\ \x1f\xaa\xaa\xaa\xa0\xa0\xa0\xa1\xa1\xa1\xa9\xa9\xa9\xa8\xa8\xa8\ \x29\x29\x29\x37\x37\x37\x30\x30\x30\x67\x67\x67\x35\x35\x35\x3c\ \x3c\x3c\x40\x40\x40\x9f\x9f\x9f\xe5\xe5\xe5\xdc\xdc\xdc\xe1\xe1\ \xe1\xca\xca\xca\x2e\x2e\x2e\x38\x38\x38\x3a\x3a\x3a\x41\x41\x41\ \x2d\x2d\x2d\xee\xee\xee\xa3\xa3\xa3\xc2\xc2\xc2\xbe\xbe\xbe\xbd\ \xbd\xbd\xc7\xc7\xc7\x3f\x3f\x3f\x36\x36\x36\x43\x43\x43\xd4\xd4\ \xd4\x6c\x6c\x6c\x71\x71\x71\x73\x73\x73\x62\x62\x62\x3e\x3e\x3e\ \x9e\x9e\x9e\xae\xae\xae\x1b\x1b\x1b\x12\x12\x12\x32\x32\x32\x45\ \x45\x45\x2f\x2f\x2f\xf0\xf0\xf0\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\ \xf7\xf8\xf8\xf8\x46\x46\x46\xef\xef\xef\xf2\xf2\xf2\x9b\x9b\x9b\ \xe2\xe3\xe4\xe4\xe4\xe5\xe3\xe4\xe5\xe4\xe6\xe6\xe5\xe6\xe7\xe6\ \xe7\xe8\xe8\xe9\xe9\xe9\xe9\xe9\xe9\xea\xea\xea\xea\xea\xea\xeb\ \xeb\xea\xed\xed\xeb\xed\xed\x47\x47\x47\x31\x31\x31\xde\xdf\xe0\ \xe1\xe2\xe4\xe3\xe4\xe4\xe4\xe5\xe6\xeb\xec\xec\xec\xed\xed\xed\ \xee\xee\x27\x27\x27\x48\x48\x48\xdf\xe0\xe1\xe6\xe7\xe7\xe7\xe8\ \xe9\xe8\xe9\xea\xed\xef\xef\xee\xef\xef\xef\xf0\xf0\x25\x25\x25\ \x49\x49\x49\x9c\x9c\x9c\xe2\xe3\xe3\xe5\xe6\xe8\xea\xea\xeb\xf0\ \xf1\xf1\xf1\xf2\xf2\x24\x24\x24\x34\x34\x34\x9d\x9d\x9d\xe4\xe5\ \xe5\xed\xed\xed\xf3\xf4\xf4\x23\x23\x23\xee\xf0\xf0\xf5\xf6\xf6\ \x20\x20\x20\x1c\x1c\x1c\xf6\xf7\xf7\x18\x18\x18\xf6\xf5\xf5\x16\ \x16\x16\xfd\xfd\xfc\x17\x17\x17\xf4\xf5\xf5\xf7\xf6\xf6\xfe\xfe\ \xfe\xa2\xa2\xa2\xf7\xf8\xf8\xe4\xe4\xe4\x44\x44\x44\xb7\xb7\xb7\ \x9f\x9f\x9e\x96\x96\x96\x92\x92\x92\xa6\xa6\xa7\x42\x42\x42\x2c\ \x2c\x2c\x97\x97\x96\xe2\xe2\xe1\x2b\x2b\x2b\x94\x94\x94\xd8\xd8\ \xd7\x28\x28\x28\xad\xad\xad\x8e\x8e\x8e\xce\xcf\xce\x8f\x8f\x8f\ \x5b\x5e\x5e\x42\x43\x43\x4b\x4b\x4b\x53\x53\x53\x5b\x5b\x5b\x68\ \x68\x68\x6b\x6b\x6b\x6f\x6f\x6f\x70\x70\x70\xfe\xfd\xfd\xc3\xc4\ \xc3\x5c\x5f\x5f\xe6\xe6\xe6\x87\x87\x87\xea\xa3\x34\xf2\x00\x00\ \x00\x32\x74\x52\x4e\x53\x00\x00\x04\x2a\x2b\x04\x27\x2c\x1c\x21\ \x40\xf3\xfe\xf3\x40\xf3\xfe\xfe\xf3\x54\x5e\x5d\x2d\xfe\x5b\x5a\ \xfe\x44\x99\x15\xfe\x8c\x16\xfe\x80\x13\xfb\x75\x0f\x75\x0d\xb6\ \xc6\x06\x2f\x48\x49\x3f\x23\x02\x14\x48\x2d\xe8\x00\x00\x00\x01\ \x62\x4b\x47\x44\x17\x0b\xd6\x98\x8f\x00\x00\x00\x09\x70\x48\x59\ \x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\ \x02\xfa\x49\x44\x41\x54\x38\xcb\x75\x93\xf7\x57\xd3\x50\x14\xc7\ \xe3\x5e\xb8\x51\xdc\x7b\x6f\xaf\x9a\x4a\x1a\x15\x28\x28\xa0\x34\ \x80\x38\x01\x19\xd5\x2a\xe2\x28\x60\x15\x2d\xc8\x28\x2a\xd0\xa4\ \xb5\xc5\x05\x62\x85\xaa\x50\x44\x90\x22\x8e\x56\x91\x2a\x0a\xce\ \xe2\x56\x14\xf7\xde\xfa\x1f\xf8\x5e\x4a\xc5\xe3\x39\xdc\x1f\x72\ \x4e\xf2\xf9\xe4\x7d\xdf\xbb\xb9\x21\x08\x47\xb5\x6c\xd5\x9a\xaf\ \x36\x44\x33\xd5\x16\x60\xda\xf4\x19\xa4\xa0\x5d\x73\x42\xfb\x99\ \xae\x94\x90\x9e\x35\xbb\xc3\xff\xa0\x63\xa7\x39\x6e\xee\x1e\x22\ \x91\xc8\xc9\xd3\x6b\xae\x97\xa7\x93\x48\x34\xcf\xc3\xdb\xc7\xb7\ \x73\x17\x87\xd0\xb5\xdb\x7c\xd7\x05\x7e\x62\x8a\xf1\x0f\x08\x5c\ \x18\x18\xe0\xcf\x50\x41\x8b\x16\x2f\x59\xda\xbd\x87\x43\x58\xb6\ \x3c\x38\x24\x74\x45\x58\x78\x44\x58\xa4\x44\x22\x89\x0c\x8b\x08\ \x97\xac\x5c\x25\x0d\x5d\xbd\xc6\x21\x44\xad\x95\x02\x44\xaf\x5b\ \xdf\x54\x1b\x36\x02\xc8\x82\x63\x1c\x42\x6c\xdc\x26\x90\x6f\xde\ \x12\x8f\x6b\x2b\x5f\xf1\xdb\x28\x90\x29\x12\x1c\x42\x4c\xa2\x0c\ \xe4\xdb\x93\x92\x93\x93\x53\x52\x52\x83\x95\x4a\xa5\x42\xe9\x97\ \xb6\xc3\x7d\xe7\xae\x9e\xce\xce\xce\xbd\x7a\x13\x44\x7a\x46\x26\ \xc8\x55\x2c\xc7\xa9\xd5\x9a\x70\x68\x2a\x17\xfe\xda\x87\x20\x64\ \xbb\xa5\x20\xd7\x6a\x55\x2a\xa1\x4e\x97\x05\x7b\xf6\xee\xdb\x7f\ \x20\x3b\xe7\x60\xee\x21\xfd\xe1\xbc\x3c\x3d\x16\x7c\xf3\x0d\xc0\ \x73\xa1\x8e\xce\x82\x23\x47\x8f\x15\x64\xe7\xe4\xea\x0b\x8d\x46\ \x63\x51\x51\x1e\x16\x8e\x17\x23\x81\xe7\x14\x12\x4e\x14\x94\x94\ \x9e\x44\xb8\xa8\xcc\xa4\x2d\x2f\x37\x61\xe1\x54\x45\x08\x20\x8c\ \x02\x28\xf6\x34\x9c\x39\x5b\x7a\x0e\x61\x53\xb9\xd9\x2c\xb4\x58\ \xcc\x58\x38\x5f\x71\x01\x30\xd6\x51\x14\x5b\x09\x17\x73\xf5\x79\ \x55\x08\x5b\xd0\xad\xd5\x4a\x61\xe1\x12\x12\x54\x18\x53\x34\x57\ \x09\x25\x85\x46\xf9\x65\xb4\x5f\x2b\xcd\xb2\xd5\x1c\x8b\x85\x2b\ \xfc\x0a\x08\xd3\x58\xc8\x31\x9a\xb4\x42\x8b\x95\xae\xc6\xa7\xd6\ \x68\xb0\x70\x15\x09\x28\x80\x46\xaf\xa8\xd3\x40\x8f\x96\xd7\xd1\ \x2c\xa7\xd6\x90\x64\x50\x10\x89\x05\x37\xb4\x49\x21\x0e\x60\x39\ \x4d\x34\x54\x69\xcd\x3a\x2b\x57\xa3\x41\x54\x2c\x16\x07\x61\xa1\ \xb6\xc2\x00\xf6\x05\xb0\x50\x86\xe2\xaf\xa9\x49\x9e\x33\x8c\x18\ \x0b\xd7\x51\x1f\x50\x0b\x70\x02\x19\x01\xe5\x16\xba\x5a\x8d\x31\ \x83\x38\x73\x03\x0b\x37\x8b\xa5\x80\x12\xf0\x02\xe2\x70\x30\x53\ \xb7\x6e\x93\xfc\xdb\x02\x81\xc0\x66\xe3\x23\xf2\x33\x41\x87\x8f\ \xa0\xd6\x30\x75\x60\xa1\xb9\x3b\x48\x70\x70\x21\xde\x64\x86\xac\ \x51\x20\x99\x08\xd0\xa1\x20\xcc\x19\xfb\x27\xbd\xdb\x97\x20\x7c\ \xee\xf1\x02\x8b\x85\x3a\xa0\x38\x0d\x89\x02\x04\x70\xff\x41\xd6\ \xc3\x47\xfd\x1e\xf7\x47\x8d\x7a\x52\xff\x8f\x60\xad\xc1\x3b\x10\ \x08\xe0\x29\x1e\x89\x67\x03\x06\xa2\x6f\x11\xd7\x80\xfa\x80\x0c\ \x35\x29\xae\x03\x9a\x4f\x40\xc2\x73\xb0\x0d\x7a\x31\x78\x08\x1a\ \xb9\x97\xca\x86\xbf\x53\xf4\x0a\x0b\x38\xc1\x06\xaf\x61\xe8\x9b\ \x61\xc3\xf1\x4c\x36\x44\x29\x7c\xeb\x0d\x09\x31\xb1\xa1\x51\x8a\ \x5a\x5e\x60\xb0\xf0\xd6\x65\xc4\xc8\x51\xfc\xd0\xbe\x7b\x9f\xf8\ \xe1\xe3\xa7\xd4\xcf\x5f\x92\xbe\x7e\x8b\x02\x1a\x77\x81\xf9\x0e\ \xe0\xf7\x63\xf4\x18\xfb\x54\x8f\xfd\x69\x48\x4f\x37\x18\x0c\x52\ \xa9\xd4\xe0\xed\xc8\xa2\x7f\xfd\x1e\x37\xde\xce\x5b\xfc\xfb\x9f\ \x4e\x98\x38\xa9\xb1\x26\x4f\x99\x6a\x7f\xf4\x07\x1a\xbd\x62\x18\ \x89\x36\x0d\x39\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x01\x74\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x6f\ \x50\x4c\x54\x45\xff\xff\xff\xaa\xaa\xaa\xba\xb6\xb2\xb9\xb5\xb1\ \xba\xb7\xb2\xba\xb6\xb1\xbb\xb7\xb3\xbc\xb5\xb1\xcc\xcc\x99\xbb\ \xb7\xb2\xc3\xc0\xbb\xba\xb7\xb2\xb8\xb8\xb0\xbc\xb8\xb3\xbb\xb7\ \xb2\xbf\xb5\xb5\xba\xb7\xb2\xc2\xbf\xbb\xbe\xba\xb5\xba\xb5\xb0\ \xbc\xbc\xae\xba\xb6\xb2\xc2\xbe\xba\xbb\xb6\xb2\x80\x80\x80\xb9\ \xb6\xb1\xb9\xb5\xb0\xbc\xb7\xb1\xbb\xb5\xb2\xc3\xbf\xbb\xc2\xbf\ \xbb\xba\xb6\xb1\xc6\xc3\xc0\xcc\xc9\xc6\xcb\xc8\xc5\xc9\xc6\xc2\ \xff\xff\xff\x0e\xcb\x1d\xa2\x00\x00\x00\x1d\x74\x52\x4e\x53\x00\ \x03\x77\x80\x60\x7d\xfc\x48\x05\xe0\xf9\xb2\x3d\xf4\xf4\x18\xa6\ \xf7\xf4\x6b\x13\xf1\xfe\xd3\x02\x62\xfd\x2e\x53\x35\x79\xe2\x65\ \x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\ \x9b\x78\x00\x00\x00\x49\x49\x44\x41\x54\x18\xd3\x63\x60\xa0\x0a\ \x60\x64\x62\x86\x00\x16\x98\x08\x2b\x9b\x2c\x10\xc8\xc9\xb3\xc3\ \x04\x38\x38\x15\x14\x15\x15\xb9\xb8\x11\x9a\x78\x78\x95\x14\x95\ \xf9\xf8\x91\x8c\x11\x10\x54\x14\x12\x46\x36\x57\x44\x54\x4c\x5c\ \x02\xc5\x26\x49\x29\x69\x34\xbb\x65\xa8\xe3\x05\x08\x00\x00\xea\ \x47\x03\x64\xf9\x6c\x82\xed\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\x0d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ \x00\x00\x85\x49\x44\x41\x54\x28\xcf\x63\xfc\xcf\x80\x1f\x30\x31\ \x50\x4d\x81\x8f\x37\x01\x05\x8c\x5b\x02\xb6\x78\x48\xe2\xb5\x42\ \xc4\x8d\xfd\x96\x5f\x5e\x23\x13\x4e\x05\xe2\xac\xaa\x3c\x9c\xad\ \xe7\xaf\xf8\x18\xe3\x74\x24\x3b\x83\x0a\x8f\x94\x06\xf3\x11\xbf\ \xa9\x5e\xec\x38\x7c\xf1\x97\xe1\xeb\x2f\x86\x9f\xff\x8f\x6d\xfb\ \x09\x13\x61\x41\x96\xfe\xc0\xf0\xf4\x3b\xc3\x6a\xa6\xfc\x8d\x1f\ \x10\x62\x48\x0a\xee\x7d\xfd\xf6\xea\x6f\xcc\x96\x63\xb8\x1c\xf9\ \xf3\x4b\xc7\x53\x75\x74\x69\x06\x06\x86\xff\x50\xe8\xab\xf8\x9f\ \x01\x1b\x64\xa4\x7d\x64\x01\x00\x9a\x21\x34\x7d\xf9\xdf\x91\x38\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x6d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x23\ \x50\x4c\x54\x45\xbd\x7f\x04\xff\xff\xff\xbd\x7f\x04\xbd\x7f\x04\ \xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\ \x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\ \x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\ \xbe\x80\x07\xd4\xaa\x55\xd4\xab\x58\xc0\x85\x0f\xf5\xec\xcc\xf5\ \xeb\xca\xdf\xc1\x7f\xfb\xf6\xd9\xfb\xf5\xd5\xdf\xc0\x7c\xc4\x8c\ \x1d\xfa\xf4\xd9\xf6\xe7\x9e\xf6\xe5\x96\xfb\xf2\xd4\xc6\x90\x24\ \xe6\xce\x98\xfb\xf3\xd1\xbd\x7f\x04\xfa\xf0\xc2\xe8\xd1\x9a\xcc\ \x9c\x39\xfc\xf4\xd6\xf4\xe0\x82\xf3\xdb\x70\xfb\xf2\xcc\xcc\x9b\ \x38\xef\xde\xb2\xf8\xeb\xae\xf3\xdc\x74\xf3\xd8\x65\xf8\xe8\xa2\ \xf0\xdf\xae\xd4\xa9\x52\xfb\xf1\xc6\xf2\xd8\x64\xf2\xd5\x59\xf1\ \xd3\x51\xfa\xef\xbd\xd7\xb0\x5d\xc0\x85\x0e\xf4\xe7\xbb\xf6\xe0\ \x84\xf2\xd4\x56\xf2\xd4\x57\xf2\xd3\x52\xf1\xd2\x4d\xf1\xd0\x47\ \xf4\xda\x6b\xf7\xe9\xbc\xc1\x87\x13\xde\xbc\x73\xf9\xed\xb8\xf1\ \xd0\x46\xf1\xd1\x49\xf1\xd1\x4a\xf1\xcf\x43\xf0\xce\x3e\xf0\xcd\ \x3a\xf9\xec\xb2\xdf\xbf\x77\xc4\x8c\x1b\xf8\xeb\xbb\xf1\xd2\x4c\ \xf0\xce\x40\xf0\xcf\x41\xf0\xcf\x42\xf0\xce\x3d\xf1\xcf\x44\xfa\ \xed\xbf\xc6\x90\x22\xe6\xcb\x8c\xf9\xec\xb1\xf9\xeb\xaf\xf9\xeb\ \xb0\xe9\xd2\x98\xff\xff\xff\x05\xf9\xa6\x9b\x00\x00\x00\x14\x74\ \x52\x4e\x53\x00\x00\x03\x7b\x1e\x8d\x90\x3c\x45\xa5\xae\x63\x66\ \xcc\x84\x1b\x21\x8a\x4b\xb4\x28\xe9\x61\x53\x00\x00\x00\x01\x62\ \x4b\x47\x44\x01\xff\x02\x2d\xde\x00\x00\x00\xac\x49\x44\x41\x54\ \x18\xd3\x55\xcd\xd5\x1a\x82\x50\x10\x85\xd1\x03\xa8\x88\x1d\xd8\ \x5d\x63\x77\x27\x76\x8b\x05\x76\xbc\xff\x5b\xd8\x8a\xff\xcd\xfe\ \x66\xdd\x0c\x42\xaf\x70\xfc\x39\x18\xf6\xb9\x69\x1a\xff\x03\xc2\ \x60\x24\x84\x20\x32\x99\x2d\x26\x91\x00\xc4\x56\x9b\xdd\x21\xf9\ \x01\xe9\x74\xb9\x3d\x5e\x9f\xf4\x0b\x94\x3f\x00\x10\x0c\xc9\x3e\ \x20\x0f\x47\xa2\x00\xb1\x78\x42\xf1\x06\x65\x32\x95\x06\xc8\x64\ \x73\x34\xfe\x04\x22\x5f\x28\x66\x00\x4a\xe5\x4a\x55\xf5\x00\x75\ \xad\xde\x60\x9a\x4c\xab\xdd\xe9\xf6\xfa\x9a\x3b\x68\x07\xc3\xd1\ \x78\x02\x30\x9d\xb1\xf3\x85\x04\x43\xe4\x72\xb5\xe6\xf8\x0d\xcf\ \x6d\x59\x76\xb7\x3f\xe8\x10\x75\x3c\x9d\xbf\x5d\xae\x7a\x44\x52\ \x20\x48\xaf\xbb\x7f\xfe\xef\x06\x13\x98\x1a\xab\xa8\xf5\xcf\xdc\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x78\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdb\x03\x1e\x00\ \x11\x07\x8e\xf6\xaa\x83\x00\x00\x04\xd9\x49\x44\x41\x54\x58\xc3\ \xcd\x96\x5b\x6c\x54\x55\x14\x86\xbf\xbd\xe7\xd2\x43\x3b\xb4\x40\ \x69\x2d\x81\x08\x8a\xf2\x20\x89\x48\x14\x82\x09\x4f\x90\x26\x48\ \x4c\x30\x44\x89\x0f\x6a\x78\xf6\x92\x18\x79\x11\x8d\xcf\x04\x89\ \x6f\xca\x45\x23\x89\xaf\x2a\x6f\x34\x16\x88\x97\x18\x24\x21\x52\ \x84\x48\x05\x83\x24\x74\x5a\xa6\x15\x5a\x4b\x3b\x97\x73\x66\xce\ \x39\x7b\xf9\xb0\xcf\xdc\x60\x4a\x87\x51\xa2\x2b\x59\x39\x67\xf6\ \xec\xec\xf5\xef\xff\xff\xd7\xde\x07\xfe\xe3\x50\xb5\x3f\x1c\xc7\ \x59\xe1\x79\x5e\xef\x83\x2c\xe8\x38\xce\x4d\xcf\xf3\xc6\xe6\xfa\ \x7f\x8b\x3c\xe0\x00\xb6\xd4\x16\x8c\x37\x42\x71\x23\x93\x41\x6b\ \x8d\x52\xaa\x2e\xd1\x1a\x05\xe8\xf2\xef\x32\x85\x4a\x55\x9e\x77\ \xd1\x1a\x85\x00\x5d\x9d\x9d\x77\x8d\x37\x04\xa0\x63\x9a\xce\x64\ \xb5\x90\x52\x76\x55\x05\xb6\x70\xe5\xdd\x96\xab\x7f\x42\xce\xd7\ \x15\x14\x8d\xc0\xcc\x0b\x60\x61\x02\x76\xfe\xd8\xc7\xea\x2e\x18\ \xcd\x5a\xf4\x88\x2d\x68\x04\x62\x0a\xd6\x2c\x86\xe1\xbf\x20\xa9\ \xed\x98\x11\x88\x69\x28\x85\x30\xf8\x5c\x8e\xbc\x3f\x5f\xe9\x7b\ \x31\xa0\x35\x09\x0d\xcf\xaf\x84\xe5\x0b\x61\xd2\x85\x9e\x05\xe0\ \x86\xb0\x32\x05\x5f\x5d\x83\xf5\xdd\xb0\xe3\x11\x3b\xbf\xaf\x03\ \x8a\x21\x5c\x9f\x81\xcf\x2f\x47\x92\x28\x55\x91\xe4\xbe\x01\x80\ \x22\x14\x38\x38\x0c\x62\xec\x8e\x0d\x20\x12\x01\x54\x70\x75\x1a\ \x6e\xb9\x70\xbb\x68\xeb\xe8\x48\x92\x92\x01\x94\xc6\xd6\x6f\x11\ \x80\x6b\x34\xdf\xf4\x4f\x46\x2b\x47\x3b\xa9\x18\x41\x95\x9d\x57\ \xff\x8e\xae\x2e\x60\x14\x5a\xff\x03\x09\x52\x71\xd8\x76\x6a\x29\ \xcb\xda\x6d\x0d\x27\x06\x37\x0b\xe0\x05\x10\x8f\x81\x1f\xc2\xaa\ \x4e\x98\x29\xc2\x94\x07\x71\x0d\x81\xb1\x7e\xe8\x6c\xb3\x73\x4f\ \xec\x28\x51\xf2\xe7\x67\x61\x0e\x0f\x28\x12\x0a\x0e\x6c\x86\xd3\ \x37\xe0\xf1\xc5\x90\x9e\x85\x65\x29\x38\x3a\x0c\xbb\x9f\xb0\x46\ \xfd\xec\x12\x1c\xd9\x0a\x67\x32\xb0\x6e\x29\x7c\x3f\x06\x79\x1f\ \xbe\x1d\x2b\xfb\xa0\x45\x06\x50\x0a\x5f\xe0\xb5\x93\x91\x02\x02\ \x12\xb1\x1d\x57\xf0\xd1\x79\xab\x7d\x42\xc3\x8b\x03\x76\x8e\x00\ \xb1\xc8\x07\xa6\xb2\x8c\x42\xca\xc6\xb9\x1f\x00\xf9\x40\x31\xb8\ \x7d\x26\x92\x35\xd2\x5e\xab\x1a\xad\x55\x4d\x42\xe3\x6e\x57\x11\ \x9b\xd6\x1b\x73\x01\x69\x7c\x0e\x24\x61\xdb\x40\x17\x31\x6d\x9d\ \xbf\x76\x89\xdd\xe1\x95\x69\x4b\x7d\xd6\x87\xee\x36\x98\x28\x40\ \x32\x66\x59\xf1\x42\x58\xdf\x03\x57\x6f\xc3\x62\x07\xae\xcf\xc2\ \xc9\x17\x02\x82\xa0\x05\x06\x34\x8a\xb8\x86\x2f\xfa\xe1\xd7\x29\ \xe8\x76\x6c\x2b\x4e\xba\x80\x40\x2e\x80\x82\x0f\x9b\xfa\xe0\xda\ \x0c\xcc\x94\xa0\xb7\x1d\xa6\x3d\x78\xb2\x1b\x2e\x4c\xc2\x64\xc2\ \xb2\x30\x5f\x37\xcc\xe9\x81\xc0\xc0\xab\x27\xab\x43\xcb\xda\x21\ \x93\xb7\x0c\x14\x02\x3b\x76\xf4\x37\x78\xaa\x07\xd2\x59\xeb\x89\ \x32\xf1\x71\x0d\xf9\x68\x4e\x4b\x1e\xc8\x05\x9a\xc1\xed\xf9\xaa\ \xee\x77\x9e\x03\x77\xe8\x5c\xef\x81\xea\xbb\x18\x8d\xd6\xdc\x33\ \x1a\x4b\xa0\x14\x05\x3f\xba\x88\xb4\xae\xbf\xfd\x6a\x9e\xc6\x08\ \x5a\xab\x8a\xdb\xcb\xb7\x66\x79\xd7\x2d\xb7\xa1\xa0\xe8\x48\x52\ \x3d\xe9\x14\xb6\x17\x51\xd6\x04\xd1\x33\x16\xab\xad\xa0\xa3\xff\ \x40\xd1\xdc\x3d\x30\x27\x80\x54\x12\xfa\x8f\xb7\xb3\x6e\x29\x8c\ \x65\xad\xeb\xcb\xe4\xea\xa8\x23\xbd\xd0\xea\x3f\x9a\xb5\xe6\x8b\ \x47\x2d\x1b\x1a\x18\xd8\x21\x18\x63\x10\x91\x3a\x0f\xc4\xe3\xf1\ \xe6\x00\xa0\x84\x64\x0c\x36\x3d\x04\xab\xd7\x80\x1b\xd8\x56\x73\ \x12\x30\x9e\x87\xe1\x29\xd8\xfa\xb0\x3d\x1d\xbb\x56\xc2\x8a\x14\ \x8c\xe5\xac\x19\x67\x7d\x80\x90\x52\x29\x20\x0c\x43\x8c\x31\x15\ \xc9\x3a\x52\xa9\x26\x01\xa0\xf0\x43\x18\x18\x81\x29\xd7\xee\x38\ \x10\xcb\x40\x5b\xcc\x9e\xfb\xdf\x8d\x55\x6f\xc9\x47\x3b\x85\x6b\ \xb3\x8a\x78\x29\x4b\xf6\x56\x86\x7e\xed\x92\xf7\x15\x22\x06\x63\ \x0c\x6d\x6d\x6d\x38\x8e\x23\xbe\xa0\x80\xc2\xbd\x24\xd9\x22\x22\ \xe2\xba\x05\x11\xdf\x15\x09\x8b\x36\xc5\x17\x31\x25\x11\x09\xa2\ \x0c\x6b\xd2\x44\x19\xca\xef\x97\x2e\x34\xfc\x0e\x34\xc6\x98\xf4\ \xe8\x88\x3c\xb3\xe1\xe9\xb7\xbb\x16\x2d\x4a\xce\xcb\x80\x93\x50\ \x6c\x3b\xee\xb0\xbc\x03\x96\x38\x70\x79\xda\xee\xde\x88\x3d\xff\ \x43\x81\x55\x0b\x6d\xef\x4f\x17\xed\x78\x6f\x87\x62\x62\x24\xc5\ \xe0\xda\x6a\xef\x8b\x08\xc6\x18\xc9\x64\x6e\xa8\x77\xf6\xec\xf9\ \xe0\xdc\xcf\x43\x1f\x03\x41\x13\x12\xd8\xcf\xab\x03\x9b\xe1\x54\ \x1a\x5e\x5e\x63\xa9\x2f\x85\x70\x71\x12\x9e\xed\x03\xdf\xc0\xb1\ \x3f\x60\xe7\x63\xd0\x1e\x87\x4b\x53\x70\x7b\x41\x75\xb9\xa8\x38\ \xe3\xe3\x19\xb5\xff\xc3\xfd\xfb\x8f\x7d\x7d\x6c\x1f\x10\x36\xe9\ \x01\xc1\x37\xf0\xca\x09\xdb\x4d\x82\xbd\x13\x62\x51\x07\x7c\x79\ \xd5\xce\x4a\x6a\xe1\xdc\xcd\xa8\xdd\x34\x74\x79\x49\x76\xd7\x17\ \xe7\xf0\xa7\x87\x8e\x1c\xfc\xe4\xd0\x5e\xca\x3d\x3a\x4f\x44\x1e\ \xf0\x44\x4c\xd1\xa6\x94\xa2\xf4\x1b\x78\x40\xac\xfe\xa1\x2b\x85\ \xe9\x3f\xe5\xec\xe9\x1f\x44\x44\xc4\xf7\x7d\x93\x4e\x8f\xc8\x7b\ \xef\xbf\x7b\xb8\x99\xa2\x77\x03\xf0\x3c\x29\x16\x8b\x52\x2c\x16\ \xc5\xf7\x7d\xf1\x7d\x5f\x82\x20\xa8\x64\x18\x86\x12\x86\x16\x40\ \x18\x86\x52\x28\x14\x64\x7c\x7c\x5c\x7e\x3a\x73\x46\x44\xc4\x8c\ \x8c\x5c\x97\x37\xde\x7c\x7d\x1f\x75\xdf\x69\xff\x12\x80\x72\xf1\ \x5a\x00\xae\xeb\xca\xc4\xc4\x84\x0c\x0d\x0d\x99\xd1\xd1\xb4\xec\ \xda\xf5\xd2\xde\x56\x8a\x57\x00\xb4\x12\x39\xaf\x24\x67\x7f\xb9\ \x28\x1b\x37\x6e\x78\x0b\xfb\x71\xd4\x54\xd4\x99\x30\x91\x48\xa4\ \x95\x52\x5b\x5b\x41\x1e\x45\xae\xa7\xb7\xf7\x3c\x0d\xdc\xfe\xbf\ \x8d\xbf\x01\xa9\xc1\x50\x19\xd4\x42\xcf\xb9\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x13\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1d\x0d\ \x3b\x2b\x3c\xba\x61\x5f\x00\x00\x05\x74\x49\x44\x41\x54\x58\xc3\ \xd5\x96\x4d\x6c\x5d\x47\x19\x86\x9f\x6f\x7e\xce\xcf\xb5\x63\xbb\ \xb1\x63\x12\x13\x93\x16\xd2\x52\x0a\x05\xab\x6a\x23\x95\xb4\x11\ \x54\x61\x57\x76\x48\x15\xa5\x65\x55\x55\x2a\xa2\x20\x8a\x2a\xa4\ \xaa\x74\x83\xc4\x02\x89\xb0\x41\x42\x45\x08\x24\x90\x42\x61\xc1\ \x22\xd0\x26\x0a\xa4\x40\xab\x24\x85\xd8\x75\x63\xe2\x86\xd8\x4d\ \x5c\x35\x8e\x13\x27\xbe\x76\x70\x7c\xff\xce\xcf\x0c\x8b\x7b\xed\ \x34\xe6\xba\x3e\x8e\x90\x10\x9f\x34\x77\x46\x3a\x73\xde\xef\x99\ \xf7\x3b\x33\x77\xe0\xff\x25\xbc\xf7\xe2\xbd\x97\x02\xf3\xf0\xde\ \x17\xd6\x5d\x57\x10\x20\x49\x73\xf9\xdb\x3f\xcb\x27\x7e\x7e\xf0\ \x9d\x7b\xde\x78\x7b\x0e\x68\x25\xf0\x2b\x3f\xf8\x56\x3f\xb8\xa5\ \x83\x67\x1f\xf9\xe4\xf1\x2f\xdc\x3b\xf0\x80\x88\xac\x4b\x52\x08\ \xe0\xe1\xef\xbc\xa2\x8c\x96\xfc\x9b\x5f\x1d\x42\x5a\xaf\xac\xad\ \xec\x39\x70\x78\xd2\xed\x7b\xfa\x41\x53\x04\xc0\x14\x01\x78\xfb\ \x9d\x0b\x08\x30\x73\xe5\xb6\x42\xb6\x1e\xf8\xcb\x38\x3f\xfa\xc6\ \x9e\x42\x75\x28\x04\x90\x37\x96\x10\x81\x6a\xb5\xb6\xf6\xba\x5b\ \xe9\x44\x20\x4f\x2a\x85\x40\x37\x04\x80\x40\xa5\x52\x5d\x77\xae\ \x12\xc1\xfd\xd7\x01\xb2\x3a\x02\x54\x2a\x6d\x1c\x58\x65\xb4\x56\ \x82\x4b\x6b\x45\x64\x8b\x03\x88\x32\xa2\xb5\xa5\x5a\xc0\x01\xa3\ \x15\x3a\x28\x15\xfa\xb8\x37\x02\x80\x89\x7b\xda\x3b\xb0\x2a\xac\ \xd1\xd8\xb8\xe7\xe6\x1c\x58\x3e\x40\x44\x6e\x5c\x80\x88\x60\x3b\ \x7a\x0b\x01\x84\xd6\x10\x74\xf6\xb5\x7d\xd6\x4e\x7f\x65\xb4\xf7\ \xeb\xfb\x1f\x4c\x73\x7d\x70\xe6\xf2\xd5\x8e\xdc\x81\x68\x83\x28\ \x8d\x88\x46\x94\x41\xb4\xe6\xde\xed\x65\x04\x69\x0a\x88\xac\x08\ \x79\x3c\x78\x8f\x73\x1e\xa3\x15\xc3\xd3\x9b\x49\x93\x14\xef\xb2\ \x95\xe6\x5c\x4e\x68\x15\x03\x5b\xba\x8f\x7e\x69\xcf\xe0\xe7\xbf\ \xf6\xc8\x67\xd3\x1b\x1c\x50\x59\x75\xe7\x96\xae\xae\x8e\x1d\x3d\ \xa0\xc4\x03\x69\xab\xb5\x9e\x2b\xcd\x52\xcd\x21\x4a\xa1\x94\xd0\ \x62\x68\xad\xac\xd9\x9c\xf3\x24\x49\xc2\xae\xed\xf3\x78\xef\x58\ \x7d\x22\x97\x4a\x31\xbd\x03\xb7\xef\x9e\x9a\x5d\xb8\x0f\x38\x76\ \x03\xc0\xf8\xa9\x93\xbf\x6b\x34\xea\xdf\xdf\x79\x5b\xff\xd6\x4d\ \x9d\xa5\xf7\x25\x56\x18\x63\x31\xc6\xa0\x8d\x41\x21\x80\x20\x4a\ \x21\xfe\xba\x03\xde\x39\x72\x27\x38\x07\xf3\xff\xaa\x91\x65\x29\ \x59\x96\xe2\x9c\x5b\xd9\x29\x77\xdc\x1a\x70\xf8\xd0\xcb\x4b\x03\ \x1f\xea\x3d\xbb\xac\xaf\x97\x07\xd7\xde\xfb\x7b\x43\x75\x6e\xfb\ \xc7\xd5\xb9\xcb\x8f\x75\x75\xf7\x48\x96\x3b\x9c\xf3\x4d\xfb\x95\ \xbe\xde\x8b\x86\x56\xef\x51\x78\x14\x20\x38\x2f\x78\xd7\x74\x21\ \x77\x9e\x3c\xcf\xc9\x32\x47\x92\x24\x28\x81\x7b\xee\xba\x95\xd7\ \x5e\x3b\xc6\x99\x89\x89\x27\xc7\x5e\xd9\x77\xf4\x3f\x00\x00\x92\ \xf2\xe4\x59\x1f\xf5\x77\xa5\x49\xe3\xfe\xb8\xf3\x16\x44\x19\x94\ \x32\x88\xb6\xad\xde\xa0\x96\xc7\xcb\x50\xa2\x01\xc1\xb7\x20\x72\ \xe7\xf1\x1e\xb6\xf5\xf5\xf0\xb1\xc1\x7e\xfa\x7a\x36\xa1\xbc\xe7\ \xe0\xa1\x3f\x32\x75\x76\x72\x7f\x75\xea\xc8\x0b\x6b\xee\x82\x56\ \x3c\x37\x7f\x79\xf6\xa1\xee\x5b\xfa\x87\x94\xd9\x8a\xf6\x0a\xed\ \x35\x1e\x0d\x62\x41\xec\x8a\x1b\xd6\x6a\x3a\xe3\x80\x4d\xa5\x00\ \x11\x8f\xcf\x1d\x59\x96\x92\x34\x12\xce\xbd\x77\x89\x63\x23\x93\ \xd4\x6a\x55\xb2\x6a\x99\xf2\xc5\xe9\x73\xe0\x9f\x5a\x9d\xac\xed\ \x81\x11\x6d\xdf\xfd\x89\x20\x0a\x87\x3f\xfe\x99\x07\x4a\xa5\xce\ \x6e\x4a\xa5\x12\x51\x1c\x13\x47\x31\x61\x18\x12\x84\x01\xd6\x18\ \x10\xa1\x52\x4b\xb9\x56\xa9\x93\x24\xcd\x9a\xa7\x49\x42\xd2\xa8\ \xd3\xa8\xd7\xa8\xd7\x6b\xa4\xf5\x25\x2e\x9c\x39\x9e\xd6\x6a\xd5\ \x3d\x8d\x99\x13\x6f\xac\xce\xa5\xdb\x01\x64\x8b\xe7\xe7\x28\x6d\ \x2b\x67\x69\xf5\xe1\xae\xbe\x1d\x38\x2c\x5e\x2c\x0e\x43\x8e\x21\ \x75\x8a\x46\x26\x24\x19\x38\x14\x46\x5b\xb4\xb1\x68\x6d\x50\x4a\ \xad\x6c\x53\xa5\x84\xf2\xf9\x93\x5c\x2d\x5f\x79\xa1\x71\x71\xf8\ \xd7\xed\x72\xb5\x05\x00\x30\x5d\x83\x23\xf5\xea\xd2\x50\xcf\xe6\ \xee\x3b\xbb\x7b\x3f\x4c\x14\x97\x88\xe2\x12\x61\x14\x11\x85\x01\ \x61\x10\x10\x04\x01\xd6\x5a\x8c\xd5\x18\xad\x51\x4a\x37\x77\x47\ \x6b\x7f\x56\x16\xde\x65\xea\xf4\x5b\x7f\xf6\x9e\x27\xf3\xa5\x99\ \xb6\x7f\xcf\x6a\x2d\x80\xc6\xf4\x31\xbc\xe7\x89\xc9\x53\xc3\x17\ \x94\xd4\x09\xc3\x88\x28\x0c\x89\xa3\x90\x38\x8a\x28\x95\xe2\xeb\ \x2d\x8e\x89\xe3\x88\x28\x0a\x89\xa2\x90\x30\x8a\x31\x26\x65\xe2\ \xad\xa3\x65\xe7\xfc\xe3\x8d\x8b\xc3\x6e\xad\x3c\x6b\x3a\x00\x90\ \x2f\x9e\xaf\x49\xc7\xc0\xc9\xc5\xf9\x8b\x8f\xdd\x7e\xf7\x7d\x12\ \x06\xad\x24\x61\x48\x18\x86\x84\x81\xc5\x5a\x83\x31\x1a\x51\x72\ \xfd\x93\x12\xc7\x89\x23\xfb\x59\xb8\x3c\xfb\x68\x32\x3b\x7a\xe2\ \x83\x72\x7c\x20\x40\x13\x62\x7a\x2a\xf1\x1d\x9d\xca\x64\xbb\x77\ \xec\xfc\x34\x61\xd0\x74\x21\x8a\x02\xc2\x30\xc4\x5a\xdb\xb4\x5e\ \x04\xbc\xc7\xe3\x39\x3d\x7a\x88\x33\x23\xc7\x7f\x92\x5c\x19\xdf\ \xb7\x9e\xbe\x5a\x6f\x02\x80\xf7\xd9\xf3\xa7\x8e\xbf\xfa\xe6\xec\ \xa5\xd3\x58\x6b\x08\xac\x25\x0a\x43\x4a\x71\x44\x29\x8e\x88\xa2\ \x80\xa0\xe5\xc6\xc2\xd5\x29\xde\x7c\xf5\xc0\xb8\xf7\xf9\xb7\x8b\ \x68\x17\x02\x48\x66\xc7\x92\x3c\x4d\xbe\x72\xe4\xb7\x2f\x56\x1b\ \xf9\x12\x5a\x6b\xac\x35\x2b\x35\xb7\xc6\xa2\xb5\x26\xa3\xc1\x9f\ \x5e\xfa\x71\x3d\xad\xd7\xbe\x9c\x96\x27\x0a\xdd\x4a\xd6\x2d\xc1\ \x72\xb8\x5a\x79\x2e\x73\x76\xae\x3c\x3f\xfd\xc5\xbb\x77\x3d\x84\ \xd5\x16\xa3\x9b\xaf\x67\x59\x46\xe2\x32\x5e\xfe\xcd\x0f\x79\x77\ \x6c\xe4\x5b\xf9\xb5\x0b\x7f\x28\xaa\x5b\x18\x00\x40\x77\x6e\x1d\ \x99\x3f\x3f\x39\x64\xfb\xba\xef\xfc\xc8\xe0\x5d\x38\xe7\xc9\xb2\ \x9c\x34\xcb\x18\x19\x3d\xc4\xeb\x2f\xbd\xf8\x7b\x15\x74\x3d\xe3\ \xea\x0b\x85\x35\x0b\x5f\x9d\xde\x07\xd1\x6b\x03\x33\xf6\xf8\xf7\ \x7e\x36\xb0\x63\xf3\x47\x01\xb8\x54\xb9\xc4\x2f\x9e\x7b\x74\xa6\ \xb6\x58\x19\x72\xf5\x85\x2b\x1b\xd5\xdc\x70\xa8\x78\xf3\xde\xfe\ \x4f\xed\xca\x9f\xf9\xe5\xa8\x7f\xf6\x57\x63\x7e\xfb\xae\xcf\xe5\ \x62\x3b\xf6\xde\x8c\xd6\x86\x4a\xb0\x1c\x3e\xab\x9d\xab\x2d\x56\ \x3b\x1b\x5d\x66\xf7\xc4\xa9\xa3\x9c\xfd\xeb\xe1\x1f\xf8\x64\xe9\ \xa7\x37\xa3\x55\xe8\x52\xda\x2e\xc4\xc4\xcf\x07\x9a\xfb\x67\xc7\ \x47\x33\x31\xa5\xef\xd2\x58\xbc\x59\xa9\xff\x6d\xfc\x1b\xf1\xb5\ \x4c\x52\x5f\x15\x9b\x78\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x06\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1c\x10\ \x28\x08\x53\x70\x06\xf9\x00\x00\x05\x88\x49\x44\x41\x54\x58\xc3\ \xed\x96\x7f\x8c\x1d\x55\x15\xc7\x3f\xe7\xde\x99\xf7\x76\xf7\xbd\ \xdd\xad\x94\x50\x2c\x18\x29\x6d\x13\x4d\x40\x13\xff\x60\xf5\x2f\ \x69\x04\xf1\x0f\x53\x88\x91\x96\x36\x16\x34\xc4\x54\xff\x01\x25\ \xb5\x89\xd6\x1f\x31\x21\xd1\x94\xa8\x31\x16\x42\x24\x4a\xb1\x6a\ \x40\x48\x0a\x69\x48\x5a\x5c\x91\x14\x02\x28\xb4\xb4\xb4\x62\xe9\ \xb6\x6b\x6c\x6b\xb7\xdb\xee\x2e\xdb\xdd\x7d\x6f\xe6\xce\xcc\xbd\ \xc7\x3f\x66\x76\xd9\x5a\x6c\xbb\x04\xfa\x17\x27\x39\x99\x37\xc9\ \xcc\xf9\x7e\xee\x39\xdf\x7b\xdf\xc0\x07\x31\x87\x98\x4a\xb2\x79\ \xfb\x07\x47\xbf\xf8\x9d\xfb\x5f\xbc\xfc\xbd\xaa\x69\x2e\xf4\x41\ \x55\x95\x5f\x3c\xba\x7b\x47\x51\x14\xdb\x76\x1d\x18\x1a\x58\xb2\ \x62\xf3\x57\x97\xae\xd8\x7c\xf1\x00\x00\xdd\xfa\x97\xd7\xaf\xab\ \xf5\x34\xb8\xeb\x8e\xbe\xe6\x55\x0b\xea\x0f\xfb\x3c\xf9\xe3\xd5\ \x5f\x7a\xb0\xf7\xa2\x00\x88\x08\xa7\x4e\x9d\xa4\xed\xa1\xe7\x92\ \x26\x1b\xee\xbe\x89\xe5\xd7\x2f\x5e\x45\xe1\x5e\x5b\x74\xcb\xa6\ \xcf\x5c\x8c\x0e\xe0\xd3\x09\x5a\x49\x4a\xbb\x9d\xd2\x4a\x33\x6e\ \xbc\xe1\x13\xac\x5f\xbb\x6c\xd1\xfc\xee\x68\xe7\xa2\x5b\x36\x6d\ \x58\xfc\xe5\x87\xec\xfb\x0b\xe0\x26\x69\xb7\x1d\x69\xe2\x48\x53\ \x47\xd2\x76\x5c\x7a\x59\x2f\xeb\xbf\x79\x63\xd4\x77\xcd\xe5\xf7\ \xaa\x2f\xfa\x97\xac\xd8\x7c\xe5\xfb\x0b\x90\x38\x9c\xcb\x70\x69\ \x46\xea\x32\xd2\x34\x23\xf3\x9e\xe5\x5f\xf8\x24\x6b\x96\x5f\x73\ \x7d\x57\xdd\xec\x59\x7a\xdb\x96\x9b\xe7\x0c\xa0\xaa\xa2\xaa\x72\ \x4e\x80\xac\x45\x3b\xc9\x70\x2e\xc7\xb9\x9c\xac\xba\x3a\x97\xd3\ \x4e\x1c\x57\x5e\x31\x8f\xb5\xb7\x5e\x3b\xff\xea\x85\xcd\x27\x97\ \xae\xfc\xdd\xfd\x4b\x6f\xdb\xd2\x79\x3e\x00\xa9\xc4\xf9\xe5\x23\ \x3b\x5e\xde\xf9\xea\xc1\xbe\x17\x76\x1f\x46\x8c\x05\x14\xcd\x13\ \x42\x9e\x10\x8a\x04\xcd\x53\x42\x91\xb2\xf1\x57\x3f\x43\x55\xd1\ \x19\xf2\xf2\xfd\xb7\x33\x60\x80\x7d\x07\xc7\x78\x6e\xf7\x89\xfd\ \xde\xb3\x6a\xe0\xb1\x35\xfb\xcf\x0b\xf0\xf1\x9b\xd6\xe9\x0f\xd7\ \xad\x66\xbc\xe5\x40\x4c\x99\x08\x2a\x82\x52\xa5\x56\xaf\xc8\x2c\ \xf1\x92\x00\x55\x25\x84\x12\x20\x84\x40\xf0\x9e\x56\xbb\xe0\xcf\ \x7f\x1f\x4e\x46\xc6\xdd\x3a\x44\x1e\x18\x78\x74\xcd\x3b\x03\x00\ \x5c\xf2\xa9\xaf\xe9\xfa\xbb\x57\x31\x91\xe4\x44\x71\x4c\x14\x45\ \x58\x1b\x61\xac\xc5\x18\x8b\x31\x06\x11\x83\xc8\x99\x53\x9a\xbd\ \xf2\x10\xa6\xc5\x03\x21\x78\xbc\xf7\x10\x02\xfb\x0e\x4f\xf1\xfa\ \xe0\xc4\x53\x82\xdc\x39\xf0\xd8\xed\xa3\xef\x6c\x42\xf5\x4c\xb6\ \x52\xd2\x34\xc7\xb9\x02\xe7\x3c\x59\xe6\xc9\xf3\x50\xa5\x52\x14\ \x81\xbc\x50\x0a\x5f\x66\x5e\x4c\x67\x98\x79\x2e\xcb\x3c\x59\x5e\ \x54\x35\x72\xda\xa9\xe3\xaa\x05\x86\xcf\x5e\xdb\x7d\x73\xa3\xc3\ \xec\x5d\xb2\xf2\x91\x65\xb3\x01\xa2\xb7\x5b\x11\x98\x6a\x25\x14\ \xc1\xa0\x18\x54\xab\x2b\x8a\xb1\x8a\x51\xc5\xa8\x20\xa2\x88\x48\ \xe9\x81\x59\xad\x2f\x33\xe0\x7d\xc0\x17\xe5\xea\x7d\x51\x60\x45\ \x69\xb7\x12\xc6\x47\xc6\xe0\xf4\xf0\x15\x45\xd1\xdb\xbf\xf8\xd6\ \xdf\xfc\x14\xf8\xd1\xe1\xc7\xef\x2c\xfe\x07\x20\x45\x4c\x0c\x12\ \x81\x04\x54\x14\x44\xb1\xd3\x1e\x00\xa4\xb2\x40\x39\x7b\x08\x0a\ \x1a\xc0\x87\xf2\xbe\xc8\x03\xed\x76\xc6\xe4\x64\x8b\x89\x89\x29\ \x86\x86\x47\x69\x4d\xb5\x70\x69\x4a\x9a\x26\xb8\xf4\x84\x89\x9b\ \x97\x7d\xaf\x36\xef\x23\x7d\xc0\x0d\x67\x00\xbc\xf1\xe6\x51\x1a\ \x8d\x6e\x7a\x7a\x7b\x69\x76\x37\xe9\xec\x84\x5a\x5d\x88\x63\xc1\ \x5a\x45\x8c\x20\x95\x19\x43\x50\xbc\x0f\x14\xde\x93\xe7\x1e\x97\ \xe5\xb4\x5a\x29\xce\x39\xb2\xcc\x91\x3b\x87\x73\x29\x21\x80\x18\ \x53\xbe\x6b\x04\x1b\x59\x22\xab\x84\xc2\x9d\x39\x02\x08\x8c\x9f\ \x6e\x91\x38\x70\x85\xa5\xed\x84\xce\x2e\xa8\x77\x28\xb5\x9a\x27\ \xb2\x16\x6b\x2d\xc6\x08\xd3\x3d\x98\xdd\xf6\xc2\x2b\xc6\x58\x6c\ \x14\x61\xbd\xc7\xdb\x02\x63\x2d\x62\xcc\x8c\x81\xbb\xba\xba\xc8\ \x1b\xf3\xbd\x0b\xf1\x4f\xc4\xe7\x3f\x3e\x0b\x00\x11\x44\x0c\xc6\ \x96\x85\xa2\xb8\x46\x1c\x47\xc4\x71\x4c\x1c\x95\x00\x22\x52\x7a\ \x60\x66\xf6\x1e\x11\x5f\xed\x08\xb0\x21\x60\x2b\xf1\x69\x61\x1b\ \x59\x1a\xdd\x0d\x46\xc7\xd3\x23\xb9\x2f\xd6\x1c\xeb\xff\xfe\xce\ \xb3\x4c\x08\xa1\x9c\x2b\x8a\x11\xc1\xda\x88\x28\x8a\x88\xa3\x88\ \x5a\x5c\xfe\x8e\xac\x45\xaa\x0e\x94\x00\x01\xef\xab\x7b\x20\x68\ \xa8\xba\x64\x31\xd5\x96\xed\xe8\xaa\x93\xbc\x35\xc5\xc9\xe1\xf1\ \xc7\x15\xb3\x76\x68\xe7\xc6\xb7\xce\xda\x05\x7b\x47\xda\xf6\x5b\ \xf7\xdc\xcb\x84\x36\xe9\xea\xec\xa6\xf1\xa1\x1e\x9a\x3d\xdd\x34\ \x9a\x4d\x3a\xea\x75\xea\xf5\x1a\x51\xd5\x81\x90\x16\x68\x28\xdd\ \xef\x7d\x98\x39\x17\x82\x06\xbc\xaf\xda\x6d\x04\x63\x0d\xb5\x4e\ \xcb\xa1\x7f\x0e\x4c\x4d\x4c\xb4\xee\x12\x31\x0f\x0f\xbf\xb4\xe9\ \xac\x83\x28\x02\x70\xb9\xd1\x85\x0b\x2e\xfd\xdb\x3f\x9e\x79\xae\ \x2f\x49\x33\x44\xaa\xe3\x21\xe4\xe0\x33\xd4\xe7\x68\xc8\x68\xce\ \xeb\xe6\x1b\xdf\x7d\x10\x9f\x15\xa8\x2a\x62\xaa\xd6\x87\x80\x35\ \xa6\x5a\x35\xd4\x3a\x6b\x8c\x8c\x1d\xe1\xcd\xbd\xfb\x5e\xf5\x85\ \xae\x1e\xd9\xf5\xdb\x81\xff\x77\x14\x47\x00\xd7\x7d\xb8\x23\xfc\ \x49\xf5\xd3\x7f\xb8\xef\x1e\xce\x15\x1d\x3d\xcb\x34\xaa\x45\x58\ \x15\x7c\x08\x95\xb8\xe2\x83\x47\x8a\x72\xe5\x5a\x0f\xec\x79\xe1\ \xaf\xe1\xe4\xd1\xe3\xf7\x21\xf6\x07\x63\x7b\x7e\x9f\x9f\xab\xe6\ \x8c\x07\x56\xc8\x39\xff\x08\xcb\xb0\x11\x51\x2d\x86\x20\x18\xef\ \x61\xd6\x18\x4c\x3d\xe2\xc4\xf0\x41\x5e\xd9\xf1\xf4\x7f\x9c\xf3\ \xb7\x9f\x7e\x63\xeb\xb3\xe7\x2f\x78\x86\x09\x2f\x20\x6c\x4c\x14\ \xc7\x54\xa6\x2f\xc5\x0d\xb8\xba\xf2\xfc\xf6\x27\x18\xdc\xb5\x7b\ \xab\x48\xfc\xf5\xc9\x43\xdb\x47\x2f\xb4\xe4\xdc\x00\xaa\x7d\x2e\ \x36\x50\xf8\x40\x88\x0c\x83\xa7\x8e\xf0\xec\x96\x87\xda\xad\x91\ \xb1\x6f\x4b\xd4\xf1\xeb\xc9\x43\xdb\xe7\x54\x72\x4e\x00\x6a\xca\ \x3d\xad\x22\x4c\xc5\x81\x67\xfa\x9f\x60\xdf\xd3\xdb\x5e\xd3\xa0\ \xab\x93\x63\x2f\x1d\x98\x93\xf2\x5c\x01\x54\x95\x8f\x7e\xee\x2b\ \x8c\x99\x9c\x7f\x9f\x18\x60\xc7\xe6\x07\xc2\xe8\xe0\xbf\x7e\x2e\ \xc6\x6c\x48\x8f\xbd\x9c\xbd\x1b\x71\x98\xf5\x3d\x70\xbe\x38\xde\ \x52\x59\xb9\x61\xe3\xe9\x50\xe4\xdd\xbb\x9e\xdc\x76\x5c\x7d\xb8\ \xc3\x0d\xbd\xd2\xff\x6e\x85\xa7\xe3\x82\x3f\x4a\x17\x36\x44\x87\ \x8e\x1e\xff\xfc\xf0\xfe\x03\xab\x45\xec\xc7\xde\x0b\xf1\x0f\x02\ \xe0\xbf\xbf\x46\x34\x5d\xfd\x94\x94\xb2\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x06\x05\x01\ \x20\x15\xb8\xe0\x48\xab\x00\x00\x08\x6f\x49\x44\x41\x54\x58\xc3\ \xcd\x97\x6b\x70\x54\xe5\x19\xc7\x7f\xef\xee\xd9\xdd\x6c\x76\x37\ \xe4\xb2\xd9\xb0\x21\x97\x4d\xb2\x41\x01\xb9\x88\x0e\x97\xa9\x94\ \x16\x6c\x2d\x9d\x06\x5b\x14\x53\xbc\xe1\xa8\xb4\x8a\xb1\x53\x2b\ \x15\xd1\x4a\x5b\xab\x53\x40\x6a\x69\x6b\x45\x8d\x9f\x3a\xd3\xe2\ \x50\x82\x8c\x15\xa6\x45\x2e\xf6\x16\x2c\x10\x03\x8a\x95\x4b\x28\ \x04\xcc\x86\x5c\x76\x37\xc9\x9e\xbd\x9d\xdb\xdb\x0f\x10\x9a\x84\ \x70\x19\x3f\xf5\x3f\xf3\xcc\x99\xf3\x9e\x77\xce\xff\xff\x5c\xde\ \xe7\x39\x07\xae\x0e\x3f\x20\xae\xb2\xc7\x77\x0d\xef\x19\x15\xf6\ \x91\x0b\x6e\xb7\xbb\xcc\x30\x8c\x30\x10\xa8\xa9\xa9\x79\xb9\xe1\ \xb1\xc7\x7e\x77\xae\xb3\xb3\x21\x1a\x8b\xb5\x00\x05\x40\x70\x88\ \x5d\x37\x65\xf2\x94\xe6\xfb\xef\xbb\xf7\x67\xc7\x4f\x9c\xa8\x48\ \xa5\x52\xed\xc0\xb8\x11\x7b\x2e\x31\xb7\xdb\x6d\x37\x0c\x63\xe0\ \x72\xa2\xbe\x2c\xa5\x94\xbb\x77\xef\x91\x8f\x3f\xd6\x20\x27\xdf\ \x30\xd9\x2a\x2f\x2b\xb7\x36\x6f\xde\x2c\x47\xe2\x9d\x77\xde\x91\ \x63\x4b\xc6\x5a\xb3\x66\xce\xb2\xbe\xd7\xd0\x20\x77\xee\xdc\x29\ \xaf\x05\xc0\xbc\x41\x32\x65\x14\x01\x73\x16\x2d\x5a\x84\xcb\xe9\ \xa2\xb6\x36\x8c\x65\x9a\xa2\x3a\x54\x45\x53\x53\x13\x13\x27\x4d\ \x62\xd7\x7b\xef\xe1\x70\x3a\xf9\xfa\x82\x05\x6c\xf8\xe5\x06\xae\ \xbf\xfe\x3a\xd1\xd3\xd3\x4b\x71\x71\x80\x37\x1b\x1b\x69\x6c\x6c\ \x64\xd1\x1d\x77\xb0\xb0\xae\x0e\xdd\x30\x86\xbd\x58\x00\x79\x79\ \x79\x97\xac\x0d\xc5\x92\x95\x4f\xad\xfc\x43\x3c\x16\x93\xa1\x50\ \x48\x1c\x38\x78\x00\x2d\xab\x21\x84\x20\x12\x89\xa0\x1b\x26\xc2\ \xae\x30\xae\x34\x88\xae\xeb\xf4\xc5\xa2\x94\x95\x95\x91\xc9\x64\ \xf0\x7a\xbd\xcc\x9a\x39\x13\xaf\xd7\xcb\xb1\x13\xc7\xa9\x1d\x3f\ \x9e\xa5\x4b\x97\x62\x9a\xe6\xf0\x62\xf1\xf9\x10\x42\xcc\x07\xf6\ \x00\xd8\x86\x3c\xb3\x3d\xfc\xd0\xc3\xaf\xdf\x5e\x57\x27\x6b\x6a\ \xaa\xc5\xb6\x6d\xdb\xe8\xe9\xee\xa1\xbf\xbf\x9f\x54\x3a\x85\xcb\ \xe5\x22\x10\x08\xf0\xcd\x85\xdf\xe0\xa6\x1b\xa7\x93\x4c\xa9\x38\ \x9d\x4e\xfa\xfa\xfa\x50\x55\x95\xae\xae\x2e\x9a\xb6\x6e\xa5\x74\ \x5c\x19\x8b\xef\x5c\xcc\xa1\xd6\x56\x12\xaa\x8a\x10\x02\x61\xb3\ \x5d\xb4\x91\x18\xba\xf2\x9d\x59\x33\x67\xfa\x36\x6f\xd9\x22\xb6\ \xef\xd8\x81\xae\x1b\xc4\x62\x31\x74\x5d\x47\xcb\x6a\xe8\x86\x81\ \xc7\xeb\x61\xda\xb4\x29\xcc\x9b\xf7\x25\xdc\x39\xb9\x68\x9a\x86\ \x61\x18\x08\x21\xb0\xa4\xc5\xf4\x1b\xa7\x73\xe8\x50\x2b\xa7\x4e\ \x9d\x62\xf1\x9d\x8b\x59\xbb\x66\x0d\x0e\x87\x03\x9b\x10\x17\x6d\ \x24\x06\x6b\x40\x59\xf4\xad\x45\x2f\x04\x02\x01\xf9\xb5\xf2\x32\ \x51\x1b\x0e\xb3\x7b\xf7\x6e\xf6\xbe\xbf\x17\x35\xa9\x12\x1c\x1b\ \xc4\x9d\x93\xc3\xb9\x48\x84\xe7\x9f\x7f\x01\xb7\xdb\x8d\xa1\xeb\ \xb8\xdd\x6e\x00\x0c\xc3\x40\x4a\x49\x28\x54\x49\x38\x1c\xc6\xef\ \xf7\xa3\xe9\x3a\x6d\x27\x4e\x90\x48\x24\xf0\x78\x3c\x23\x13\x2e\ \x87\xd5\x80\xdf\x5f\xf4\xc8\x92\x6f\xdf\xbd\xf1\xd8\xb1\xa3\x68\ \x89\x3e\x72\xbd\x1e\xd4\xac\xc9\x91\x23\x9f\x90\x97\xe7\xc3\xa1\ \x28\x54\x56\x86\x48\xa7\xd3\xb8\x73\x73\x51\xec\x76\x54\x55\x25\ \xc7\xed\x46\x4d\x24\xa8\xae\xae\xa6\x79\xdf\x3e\x2a\xca\xcb\x70\ \x0a\x13\x45\x71\x60\xda\x1c\x4c\x98\x38\x91\xb1\xa5\xa5\xfc\x70\ \xc5\x0a\x0c\xc3\x44\xff\xec\x1c\x9f\xad\x7d\x91\xc3\xd1\xde\x8d\ \x4b\xde\x7e\x7b\xf9\x81\x1b\x6e\x38\x2f\xa0\x36\x1c\x3e\x1d\x2c\ \xcc\xab\xa8\xf2\x09\x51\x3e\xae\x94\xc2\x40\x10\x4f\x51\x09\xff\ \x3c\x7c\x94\x7d\x2d\x87\x28\xf6\x17\xf3\x95\x5b\x6f\xa5\xb7\xb7\ \x17\x35\xa9\x62\xb7\x2b\x04\x02\x01\x0a\x0b\x0a\x68\x69\x69\x21\ \x1a\x8b\xa1\x98\x19\x0a\x48\x13\xae\xaa\xc0\x1f\x28\xc1\xe7\x1f\ \xcb\xdb\xbb\x9b\xe9\xe8\xee\xe5\xe0\xc1\x83\xa8\x6a\x94\xd4\x9f\ \x6e\x21\xf9\xfb\x0a\x7a\x5a\x8f\x60\xf3\x78\x76\xce\x68\x6b\xbb\ \x4d\x01\x4a\x1d\x0e\x67\xe5\x18\x3d\x8e\x2b\x9e\x24\x9d\xea\x24\ \xde\x9d\x4f\xdc\xe5\x23\x27\xde\x47\xa2\x2f\x4e\x41\x7e\x3e\x89\ \x44\x82\xfd\xfb\xf7\xb3\x76\xfd\x3a\x6c\xc2\xc6\xaa\x95\x4f\x33\ \x7b\xf6\x6c\xe2\xf1\x38\x67\xdb\xdb\x99\xe8\xcd\x92\x6b\xcf\x92\ \x39\xd5\x47\x4a\x0d\x90\x3a\x7b\x14\x77\x5f\x27\xed\xed\x31\x5a\ \x5b\x0f\x13\xea\xab\x27\xee\x1c\xe0\xd1\x93\xa7\x59\xdb\x1b\x23\ \xaa\xaa\x5f\xfd\xbb\xdd\x7e\x8f\x02\xe4\xd8\x15\x85\x7c\x2b\xc9\ \x18\x8f\x8d\xf1\xc1\x42\x1c\xb9\x5e\x4e\x77\x74\x51\x55\x94\x47\ \x59\x89\x9f\x59\xb3\x67\xb3\xec\x91\xef\xb2\xfa\x27\x3f\xc6\xe5\ \x72\x01\xb0\xe7\xfd\xbd\x74\x75\x77\xf3\x66\x63\x23\xb1\xee\x08\ \xf6\x6c\x0f\x25\x25\x05\xd4\x8c\xf3\x23\x33\x03\x44\x3a\xfa\x98\ \x58\x98\x4f\xb3\xdb\x47\x74\xff\x1d\x94\x57\xa5\x58\xf4\x23\x0f\ \xd1\xbe\x24\xeb\xa7\x66\xcd\xba\x93\x9a\xbd\xc3\x92\x52\x01\xfe\ \x13\x8f\xc7\xd3\xa5\xb7\xdc\x94\x33\x21\x73\x52\x84\x4b\x0b\x10\ \x76\x07\x4a\xd6\x43\x4b\x4f\x0a\x47\x5e\x80\x85\x0b\x17\x52\x5e\ \x5e\x0e\x80\x25\x25\x02\x10\x42\x30\xb6\xa4\x84\xfa\xfa\x7a\xde\ \x7d\x77\x3b\xfe\xe2\x00\xd5\x45\x0a\x35\x45\xb9\xb8\x84\x0b\x9f\ \xcd\xe0\x88\x52\x8a\x10\x27\xf8\xe2\x14\xc9\xbc\xef\x7b\xc8\x68\ \x16\x41\x5f\x17\x2f\xad\x14\xf6\xbe\xb4\xf3\x17\xd3\xee\xcf\xbe\ \x65\x07\xf0\x7a\x3c\xfb\x92\xce\x31\x4b\x67\xce\x99\x2b\x83\x5e\ \x45\x98\x42\x41\x54\x4e\xa6\xbb\x78\x2a\xb9\x5e\x2f\xcb\x97\x2f\ \xc7\xb4\xac\xf3\x67\x7a\x84\x05\x83\x41\x4e\x9e\x6c\x23\xe3\x2d\ \x61\xfa\xc4\xf1\xe4\x48\x8d\xdc\x02\x3f\xe9\xca\x19\x6c\xfd\x77\ \x3f\x1b\x96\x0f\xb0\xaa\xd1\xc5\xc9\xcf\x4c\x8c\x54\x84\x1d\xeb\ \xa0\xa7\x5f\xd9\x7d\xf3\x83\xd9\x06\x40\xbb\x78\x30\xc6\xe4\x8d\ \x09\x97\x96\x06\xd7\x8f\x0f\x87\xe7\x55\x86\x42\xbe\x9c\x9c\x1c\ \xc6\x4f\x98\xc8\x7d\xf7\xde\x83\xae\xeb\xe7\x1b\x89\x10\x17\xbd\ \x1f\x34\x00\x87\xc3\xc1\xa6\x4d\x9b\xd8\xb5\x6b\x17\x9e\x1c\x27\ \x42\xd8\x91\xe9\xe3\x3c\xb8\x20\xce\x1f\xf7\x0a\xde\xfa\x73\x9c\ \x44\xa2\x97\x9d\xeb\x92\x94\x85\xe7\x50\x3c\x67\xcf\xfd\xc0\x36\ \x20\x31\xda\x30\xba\x45\x4a\x29\xb3\xd9\xac\x54\x93\x49\xa9\xaa\ \xaa\x4c\x26\x93\x32\x95\x4a\xc9\x74\x3a\x2d\x33\x99\x8c\xcc\x66\ \xb3\x52\xd3\x34\xa9\x69\x9a\xd4\x75\x5d\x6a\x9a\x26\x0d\xc3\xb8\ \x38\x6c\x32\xd1\x0f\xa5\xfc\x68\xbe\x7c\x73\xcd\x02\x59\x5e\x51\ \x2d\x8b\x4b\x4a\xe5\x9e\x5f\x29\x32\xb2\xa3\x52\x1e\xf9\xe4\x53\ \x09\xdc\x35\x38\x89\x6d\xa3\x08\x70\x02\x64\x35\x0d\xa4\x1c\x35\ \xec\x83\x9e\x0b\x21\x90\x17\xf6\x0c\x36\xa4\x4c\xe2\x0c\x56\xfb\ \x4f\x69\x3e\x56\xcc\x4f\x37\xb6\xa1\x19\x92\xdf\x3c\xda\xc3\xa4\ \xb0\x97\xe3\x39\xaf\xe3\xc9\xcd\x01\x48\x02\xe6\xe5\x04\xfc\xaf\ \x43\x09\x01\xd7\x40\x7e\x7e\x4d\x62\x1a\x29\x8c\x93\xcf\x72\x3a\ \x5a\xcc\x7d\xcf\x7c\x8c\x25\xe1\xe9\xc5\x5d\xdc\x36\xdb\xce\x47\ \x72\x03\xee\xdc\x7c\xf2\xf3\xf3\x01\xd2\xa3\xcd\x82\xe1\x02\x06\ \xf3\x3d\xf4\x7e\x08\xe9\x70\x72\x01\xc2\x86\x76\xfc\x29\xd2\x56\ \x01\x8b\x9f\xd8\x8f\x34\x34\xea\xe7\xf4\xb0\xac\x4e\xe7\x80\xba\ \x1a\x5c\x65\xf8\xf2\xf2\x06\x05\x70\x55\x01\x17\x58\x87\x79\x3d\ \x34\xdc\xc3\xa2\x61\xb3\xa1\x1e\x79\x12\xe1\xf4\x53\xf7\x68\x33\ \x99\x74\x9a\x59\xd7\xab\xbc\xf8\x50\x92\x7f\x45\x1f\x62\x80\x09\ \xe4\xe6\xba\x09\x85\x42\x97\x50\x5c\x35\x02\x43\xc9\x46\x4b\x81\ \xcd\x6e\x27\xf1\xe9\x6a\xc6\x14\x14\x73\xe7\xf2\xed\xf4\x46\xfb\ \xa9\x1a\x9b\xe5\x8d\x1f\xc4\x38\xdc\x7b\x1b\x6d\x89\xd9\x38\x1d\ \x76\x42\xa1\x10\x96\x65\x61\x8d\xe0\x51\xb8\x02\x46\xf3\x7e\xe8\ \xd5\x66\x57\xe8\x3f\xf6\x32\xf9\x3e\xc9\x92\xc7\xb7\xd2\x76\x46\ \x25\xdf\x6b\xb1\xe9\x99\x1e\x8e\x76\x57\xb3\xf5\xe3\x9b\x09\xf8\ \x7b\xa8\xaa\x08\x32\x30\x30\x40\x26\x93\x91\x19\xdd\x14\x40\xea\ \xaa\x02\xc4\x90\xd9\x3d\xb2\xda\x07\xaf\xd9\x74\x92\x4c\xf4\x20\ \x0d\xcf\x1f\xe0\x83\x8f\xc1\xa9\xc0\xe6\xe7\xba\xc8\x88\x52\xfe\ \x72\x66\x19\x93\x26\x14\x31\x6d\xda\x34\xa6\x4c\x99\x82\x65\x99\ \xf2\xec\xd9\xb3\xe2\x81\x25\xf5\x4f\xe4\x17\x14\x7c\xd8\x17\x8f\ \x5f\x3d\x02\x8c\x08\xf9\x20\xce\x8b\xb1\xa1\x46\xdb\xc9\x8e\x59\ \x42\xbf\xd1\x8d\xae\xb7\xb3\x65\x75\x0f\x3e\xaf\x9b\x5f\xff\xe3\ \x6e\x8a\x8b\x15\x82\xc1\x20\x93\x27\x4f\xc6\x30\x74\xd9\xd1\xd1\ \x21\x9e\x5c\xb1\xe2\xb9\x03\xfb\x0f\xbe\x02\x5c\xfc\x58\xbc\x72\ \x0a\x46\xdc\x4b\x29\xb1\xd9\x6c\x48\x29\xb1\xdb\x6d\xc4\xbb\x3e\ \xa2\xbf\xa7\x95\x65\xb7\x3b\xb8\xeb\x0b\x36\xa6\x56\x1b\x2c\x6b\ \xbc\x95\xa9\xd3\x8b\xa8\xad\x0d\x33\x77\xee\x5c\x4c\xc3\x20\xd2\ \x19\x11\xeb\x5e\x5a\xb7\xb6\x69\x4b\xd3\xcf\xb9\x70\xfe\xaf\x49\ \xc0\x68\xc4\x83\xd1\x50\x13\x09\x5a\x3e\x78\x8f\xd2\xa2\x18\x29\ \x35\x4d\x6e\xc5\x03\xfc\x35\x73\x23\xf7\x2e\x75\x30\x7f\xfe\x7c\ \x00\x0c\x5d\x27\xd2\x19\xe1\xb5\x37\x5e\x7b\xfd\xd5\xdf\x6e\x5c\ \xc5\x90\x2f\xa1\x2b\x61\x9e\x94\x52\xa6\x2e\xb4\x5d\x4d\xd3\x64\ \x36\x9b\x1d\xd6\x72\x0d\xc3\x94\x5b\x9b\x36\xcb\xc2\xc2\x22\xf9\ \xb7\xed\x1b\x64\x3a\x99\x90\xba\x69\xc9\x68\x34\x26\x9b\x9b\x9b\ \xa5\x94\x52\x6a\x5a\xd6\x6a\x6f\x3f\x2d\x9f\x79\xf6\xe9\xd7\xae\ \x44\x76\xf9\x22\xbc\x4c\x61\x4a\x29\x51\x14\x3b\x2e\xa7\xc2\xb9\ \xce\x0e\x1c\x4e\x17\x96\x65\xa1\xeb\x1a\xa6\x69\x60\xb3\xd9\x91\ \xd2\x92\x91\x48\x44\xac\x5b\xff\xd2\x9a\x57\x5f\x79\xf5\xd9\x6b\ \xf1\xfa\x92\x08\xa4\x47\x89\xc0\xa0\x19\x86\x21\x4d\xd3\x94\xa6\ \x69\x4a\xcb\xb2\xa4\x69\x9a\x32\x93\xc9\xc8\xee\xee\x6e\xd9\xda\ \xda\x6a\x9d\x6e\x3f\x2d\xeb\xeb\xef\x5a\xc5\xd5\x1a\xdd\x95\x04\ \x7c\x1e\xa8\xe9\xac\xdc\xdf\x7a\x58\xce\x98\x39\xe3\x71\x46\xf9\ \xef\xbc\xa6\x14\x38\x1c\x8e\x33\x17\xfe\x5c\x3e\x2f\xd4\xe2\x40\ \xe0\x43\x46\x54\xfb\xff\x2d\xfe\x0b\xd8\x1e\x7a\xb6\x27\x17\x6f\ \x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x40\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1c\x11\ \x27\x1e\x21\xfe\xc5\x50\x00\x00\x05\xa1\x49\x44\x41\x54\x58\xc3\ \xed\x96\x6f\x68\x9d\x57\x1d\xc7\x3f\xe7\xcf\xf3\xdc\xe7\xde\xdc\ \xe4\xa6\x09\x5d\x4c\xd3\xad\x4d\x93\xac\xb6\x04\x22\x6d\x5f\xcc\ \xce\xa1\xfb\x23\x93\x31\x89\x56\xb7\x16\xf4\x45\x1d\x88\x30\x10\ \x45\x10\x36\x41\xd6\xe1\x1b\x91\xa2\xe0\xe6\x0b\x5f\x64\x73\x8d\ \x56\x41\x18\x22\x45\x2a\x1d\xa2\x5d\xb0\xab\x5b\x60\xa2\x6e\x1d\ \x65\x6d\x59\x5b\xb3\xa4\x5d\xf3\xef\xfe\x7b\xee\x73\xce\xf9\xf9\ \xe2\xde\x94\xa4\x71\x9a\xb8\xd6\x37\xfa\x85\xc3\x73\x5e\x3c\xe7\ \xfc\x3e\xe7\xf7\xef\x1c\xf8\xbf\x6e\x92\xbe\xfe\xc3\x89\x9e\x5f\ \x9d\x3c\xb7\xf7\x37\xa7\x2e\x44\xeb\x59\x67\x3f\xa8\xe1\xa1\x47\ \x7f\x82\xc0\xc1\x8b\xef\xce\x3d\xd3\xdf\x7b\x67\x71\xec\xd8\xdf\ \x26\x44\xe4\x1e\xa5\xd4\x9a\xd6\xeb\x0f\x62\x7c\xdb\xbe\x1f\x97\ \x7c\x56\x3b\xda\xdf\x93\x7b\xfe\xe0\xe7\x77\x15\x7d\x3e\xcf\xc4\ \xe4\xd9\x8f\xfd\x57\x3c\xb0\xed\x33\x3f\xfa\x28\x3e\xfd\xd9\xe8\ \x7d\x3b\xfa\x47\x1f\xde\x4d\x40\x33\x97\x7a\xae\xcc\x4c\xb3\xd6\ \xd3\xff\x47\x00\x03\x8f\x8c\x69\xc9\xd2\x27\xbb\xda\xcd\xa1\x2f\ \x1f\xb8\xdb\x6e\xde\xd2\xc3\x62\xb5\x8e\x08\x28\xc0\xa7\x0b\xeb\ \xda\x6f\x5d\x00\x83\xfb\x8f\xf4\x49\x56\xfb\xe9\x9e\x9d\x1b\x3f\ \xb1\xef\xa1\x11\x94\x35\x94\xcb\x55\x44\x04\x68\x01\xd4\x17\x6f\ \x0d\xc0\xd0\x81\xf1\xd1\xc4\xca\xd8\xe8\x27\xb7\x77\x6f\x1f\xba\ \x8d\x7a\x96\xa1\xb2\xac\x65\x16\x04\x41\x29\x85\x6f\x94\x6f\x2e\ \xc0\xd0\x81\xf1\x3c\x22\x87\xb7\xf4\x14\x1e\x7f\xf8\xe3\xb7\x93\ \x4b\x0c\x95\x6a\x1d\xa5\x14\x0a\x05\xad\x78\x8b\x34\xa7\x3e\xfd\ \xd7\x00\x22\xa2\x00\x94\x52\xf2\x6f\x01\x86\xf6\x8f\x0f\x6b\xe4\ \xe7\x7b\x47\xba\x87\x47\xb6\x6f\x40\xc4\x91\xa6\x01\xad\x34\x4a\ \xeb\x15\x00\x4b\x14\x21\xab\xb2\x61\xc7\xa7\x45\xd9\x04\x1d\xe5\ \xd1\x36\x8f\x8a\xf2\xa0\x34\x04\xcf\xe7\xbe\xfa\x2c\xf7\xec\x1e\ \x3c\x2d\x22\x77\x35\x0f\xf1\xcf\x4f\x0d\x22\x8f\x97\xda\xcc\xe1\ \x7b\x77\x75\xe5\x4b\x1d\x11\x5a\x1b\x8c\x31\x68\x6d\xd0\xba\x05\ \xa0\xf4\x0d\x19\x2f\x14\x72\x11\x12\x02\x41\x02\xc1\x07\x42\xf0\ \x04\xef\xf1\xde\xe1\xbd\x47\x24\xf0\xdc\x91\xe3\xbc\xf9\xdb\xc3\ \x4a\x29\xb5\xda\x03\x43\xfb\x8f\x74\x4b\x08\x63\x03\xbd\xd1\xe8\ \xc8\x60\x01\x6b\x1c\x69\xaa\x30\x06\x8c\x05\x63\x14\xda\x28\xb4\ \x08\x5a\xcb\x0a\x00\x11\x98\xaf\x34\x08\x21\x5c\x37\xea\x9c\xc7\ \xbb\x0c\xe7\x32\x5c\x96\xa1\x95\x30\x73\xf5\xda\xf5\x75\x2b\x00\ \x06\xf7\xbf\x70\x6f\x64\xc2\xf8\xf0\x1d\xa6\x6f\x63\xa7\x90\xa6\ \x0d\xbc\x8f\xb0\x41\x61\xad\x22\xa0\x11\x11\x0c\x20\xa2\x10\x14\ \x5a\x2d\xcf\x03\x41\x42\xc0\x07\x85\xf7\xe0\x1d\x38\x17\x70\x2e\ \x90\x35\x02\x59\xe6\x49\x22\x0d\xe2\x57\x26\xe1\xc0\x23\x63\x16\ \x78\xba\x94\x6b\x3c\x71\xe7\x26\x74\x6c\x33\x6a\x75\x4b\x1c\x81\ \x97\x96\x61\x0c\xa2\xa4\x69\x2b\x28\xd0\x1a\x25\x06\x51\x9a\x95\ \x41\x50\x88\x40\x10\x8d\x97\x26\x88\x73\x42\xe6\x02\x8d\xcc\x53\ \x88\xcd\x6a\x00\x15\xfc\xf1\xde\xce\xec\xfe\x0f\x75\x78\x5c\x0a\ \xbe\xa1\x88\xe2\x1c\x22\x4d\xc3\x28\x41\x69\x41\x19\xd0\x41\xa1\ \x45\x23\xa2\x5b\x25\xb8\x34\x96\x8a\x51\x23\xad\x6f\x08\x0a\x1f\ \x14\xce\x43\xe6\x02\x1a\x45\xa9\x2d\xbf\x1a\x20\xf8\x06\xe2\x1d\ \xb3\x73\x65\xe2\x38\xc2\x18\x4b\x10\x8d\x28\x0b\x2a\x80\x0e\x68\ \x0d\xda\x80\xb1\x9a\x20\x0a\x23\x0a\xd0\x28\x65\x50\xba\x75\xa5\ \x84\x80\x22\x80\x04\x44\x14\x71\x14\x53\x4c\x2c\x95\x32\xf8\xb4\ \xc1\xd4\xcc\x3c\xaf\x4c\xbe\x05\x12\x6e\x00\x70\x8d\x4f\x5d\xbc\ \xe2\x9e\x8a\xc4\x3d\x59\x9d\x7d\xc7\xb4\x15\xf2\x6c\xe8\xda\x40\ \x67\x67\x27\x1d\x25\x28\x62\xb1\x11\x28\x65\xb0\xc6\x10\x5b\x4b\ \x92\x8b\x88\xa2\x08\x6b\x4d\xb3\x2c\x01\x1f\x02\x99\xf3\xa4\x28\ \x82\x13\xde\x9b\xab\x30\x75\x65\x8e\x4a\x79\x91\x6a\xa5\x4c\xb5\ \x52\xc6\xda\x08\xb8\xc1\x03\x17\x8e\x7d\xc3\x01\xdf\xde\xfc\xc0\ \xa1\x13\x49\xe7\xa6\x71\xa3\xd2\x3b\xae\xcd\x96\xa9\xa5\x30\x5f\ \xf1\xb4\x15\x1d\x85\x36\xdf\x1c\x05\x47\x3e\x49\xc8\x27\x39\x92\ \x44\x88\xe3\x98\xc8\x02\x4a\xe1\x7d\xa0\xd1\x70\xd4\xd3\x06\xf5\ \x7a\x4a\xad\xe6\x30\xc6\x62\x6d\x84\xb5\x4d\xcf\x62\x59\x11\x82\ \x15\xd7\xf1\xa5\x97\x0e\x9d\xac\x55\xaa\x1f\x29\xd7\xdc\x2f\x0b\ \x1d\xed\x24\x85\x04\xa3\xcd\xf5\x1e\xb0\x34\xac\x35\x44\x91\x25\ \x8e\x23\x92\x24\x26\x9f\xcf\x53\xc8\xe7\x49\x92\x1c\x71\xbc\xe4\ \x19\xbb\x6c\x8d\x45\xb7\xe6\xda\xd8\x15\x21\x58\xf5\x1e\x98\x3a\ \xf9\xbd\xd9\xac\x5e\x7b\x74\xfa\xef\xd3\x8f\x2d\x2c\xcc\x96\x73\ \xc5\xb8\xd9\x78\x94\x46\xeb\x66\xd9\x69\xad\xd1\x5a\x63\x8c\x21\ \xb2\x4b\x10\x4d\xe3\xb9\x42\x8e\xb8\x10\x13\x17\x62\x72\xc5\x1c\ \x49\x31\x21\xdf\x91\xa7\xd0\x51\xa0\x50\x2a\x52\xe8\x2c\xb2\xb5\ \x7f\x33\xe7\xe5\xfc\xea\x3e\xb0\xa4\xe9\x53\xcf\x02\x3c\xef\x77\ \x3f\x36\x51\x9e\x9f\x3b\x3a\x38\xbc\x73\x4f\x7b\x54\x02\xb9\xb1\ \xb1\x37\xf3\xbe\x59\xff\x02\x56\xf3\xfd\x27\x0e\x92\xd6\xea\xa0\ \x63\x94\x89\x50\x3a\x02\x13\x01\x1a\x91\x40\xcf\x6d\xdd\x0c\x6c\ \xdb\x32\xb1\x95\xad\xef\x0f\xb0\xa4\xab\x93\xcf\x9d\xed\x1a\xf9\ \xe2\xde\xbf\x9e\x3e\xfd\x9d\x4d\x03\xd3\xdf\x1c\xde\xb5\x57\x87\ \x10\xf0\xde\xe3\xbd\xc7\x79\x47\xd6\xc8\x40\x68\xde\x84\x16\xd2\ \x7a\xca\xdc\xdb\xaf\xbc\xef\x8b\xe4\x6b\x22\x3c\x05\xd7\x3b\xe1\ \x9a\x9f\x2e\xa5\x9d\x9f\xbd\xaf\xad\xd4\x76\x64\xcf\xfd\x0f\xf6\ \xf5\x6d\xdc\x46\x62\x23\x72\xb9\x1c\xb9\xb8\x59\x09\x28\x45\x88\ \x35\x3f\xf8\xd6\x97\x98\x7b\xeb\xe5\x35\xef\x6b\xd6\xfa\x63\x7a\ \xe5\xcc\x79\x95\xdf\xf4\xc2\x85\x37\xfe\x3c\x94\x9a\xc6\x8e\x8d\ \xb7\xf7\xa3\x9c\x10\x24\xe0\x7c\xc0\x65\x8e\x86\x82\xc9\x97\x8f\ \x53\xbf\x7a\xe1\xe9\xb5\xee\xbb\xae\x47\xe9\xc2\xd9\xe3\xef\x85\ \x20\xfb\xde\xfc\xc3\xef\xbe\x72\xec\xe8\x33\xd5\xcb\xb5\x69\x6a\ \x69\x83\x6a\xb5\xd6\x1c\x69\xda\xec\x56\xeb\xd0\xfa\xfe\x06\x1a\ \xd7\xce\x91\xcd\xbf\x33\xe9\xa4\xfd\xc5\x73\xaf\x9f\xbe\xdb\x75\ \xb5\xf5\x96\xba\x7b\x71\xb5\x94\xcc\x28\xde\x78\xed\xf7\xa4\x33\ \x6f\xdf\x1a\x0f\x2c\x57\xed\xe2\xa9\x33\x59\x3d\xbd\xeb\xf5\x17\ \x7f\x71\xf8\xc4\xaf\xc7\xc2\x8c\x2c\x52\x8f\x15\xb1\x8d\x6f\xad\ \x07\x96\xcb\x2d\x5c\xf2\x6e\xf1\xf2\x89\xb4\x16\xfd\xf1\xd2\x5f\ \x5e\x7b\xa0\xfb\xc3\x7d\xed\xa1\x5c\x59\x98\x39\xf3\xea\x77\x6f\ \xb9\x07\x96\x2b\x9d\x7a\xf5\x25\x2d\x7a\xc7\xd4\x9f\x26\xbf\xf0\ \xee\xe5\xe9\x07\x6f\xc6\x9e\xff\x3b\xfa\x07\x84\xc6\x8b\x43\xd1\ \x28\xff\xe7\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x01\xd6\xb8\ \x00\ \x01\x00\x00\x00\x13\x01\x00\x00\x04\x00\x30\x42\x41\x53\x45\x8b\ \x19\x94\xb1\x00\x01\xb6\x24\x00\x00\x00\x3a\x44\x53\x49\x47\x07\ \xf1\x96\x36\x00\x01\xb6\x60\x00\x00\x20\x58\x47\x44\x45\x46\x2f\ \x6c\x30\x10\x00\x01\xa1\x04\x00\x00\x00\xd4\x47\x50\x4f\x53\x25\ \x6f\x1b\x55\x00\x01\xa1\xd8\x00\x00\x09\x18\x47\x53\x55\x42\xe0\ \x48\xf4\xcb\x00\x01\xaa\xf0\x00\x00\x0b\x32\x4f\x53\x2f\x32\x73\ \xe0\xd2\xd4\x00\x00\x01\xb8\x00\x00\x00\x60\x63\x6d\x61\x70\xec\ \xf6\xc9\x12\x00\x00\x11\x2c\x00\x00\x0a\x20\x63\x76\x74\x20\x00\ \xff\x0b\xb1\x00\x00\x1d\x04\x00\x00\x00\x22\x66\x70\x67\x6d\x06\ \x59\x9c\x37\x00\x00\x1b\x4c\x00\x00\x01\x73\x67\x61\x73\x70\xff\ \xff\x00\x03\x00\x01\xa0\xfc\x00\x00\x00\x08\x67\x6c\x79\x66\xb9\ \xc0\x62\x98\x00\x00\x24\xb4\x00\x01\x1f\x0c\x68\x65\x61\x64\xfb\ \xc5\xf9\x07\x00\x00\x01\x3c\x00\x00\x00\x36\x68\x68\x65\x61\x06\ \x57\x04\xa4\x00\x00\x01\x74\x00\x00\x00\x24\x68\x6d\x74\x78\xd3\ \xb9\x11\x81\x00\x00\x02\x18\x00\x00\x0f\x14\x6c\x6f\x63\x61\x39\ \xbf\x81\x42\x00\x00\x1d\x28\x00\x00\x07\x8c\x6d\x61\x78\x70\x05\ \xe9\x02\x33\x00\x00\x01\x98\x00\x00\x00\x20\x6e\x61\x6d\x65\x96\ \x68\xea\xc9\x00\x01\x43\xc0\x00\x00\x3c\xdf\x70\x6f\x73\x74\x84\ \x48\x04\xa9\x00\x01\x80\xa0\x00\x00\x20\x5c\x70\x72\x65\x70\x08\ \x7e\xe6\x86\x00\x00\x1c\xc0\x00\x00\x00\x41\x00\x01\x00\x00\x00\ \x01\x04\x5a\x61\xad\x38\x4a\x5f\x0f\x3c\xf5\x00\x09\x03\xe8\x00\ \x00\x00\x00\xcd\x15\xa0\x77\x00\x00\x00\x00\xcd\x16\x10\xf8\xff\ \xbb\xfe\x70\x02\xc1\x03\xe8\x00\x01\x00\x09\x00\x02\x00\x00\x00\ \x00\x00\x00\x00\x01\x00\x00\x03\xd8\xfe\xef\x00\x00\x02\x58\xff\ \xbb\xff\x97\x02\xc1\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x03\xc5\x00\x01\x00\x00\x03\xc5\x00\x54\x00\ \x10\x00\x6a\x00\x06\x00\x01\x00\x00\x00\x00\x00\x0a\x00\x00\x02\ \x00\x01\x73\x00\x03\x00\x01\x00\x03\x02\x57\x02\xbc\x00\x05\x00\ \x00\x02\x8a\x02\x58\x00\x00\x00\x4b\x02\x8a\x02\x58\x00\x00\x01\ \x5e\x00\x32\x01\x20\x00\x00\x02\x0b\x07\x09\x03\x04\x03\x02\x02\ \x04\x20\x00\x00\x07\x00\x00\x18\x01\x00\x00\x00\x00\x00\x00\x00\ \x00\x41\x44\x42\x45\x00\x20\x00\x00\xfb\x02\x02\xee\xff\x06\x00\ \x00\x03\xd8\x01\x11\x60\x00\x01\x93\x00\x00\x00\x00\x01\xe0\x02\ \x94\x00\x00\x00\x20\x00\x03\x02\x58\x00\x23\x00\x00\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x09\x02\x58\x00\x54\x02\ \x58\x00\x37\x02\x58\x00\x41\x02\x58\x00\x5e\x02\x58\x00\x6c\x02\ \x58\x00\x2c\x02\x58\x00\x40\x02\x58\x00\x4a\x02\x58\x00\x3b\x02\ \x58\x00\x44\x02\x58\x00\x6b\x02\x58\x00\x41\x02\x58\x00\x42\x02\ \x58\x00\x26\x02\x58\x00\x4a\x02\x58\x00\x24\x02\x58\x00\x46\x02\ \x58\x00\x32\x02\x58\x00\x1f\x02\x58\x00\x40\x02\x58\x00\x0f\x02\ \x58\x00\x04\x02\x58\x00\x12\x02\x58\x00\x10\x02\x58\x00\x38\x02\ \x58\x00\x3d\x02\x58\x00\x48\x02\x58\x00\x43\x02\x58\x00\x2f\x02\ \x58\x00\x37\x02\x58\x00\x52\x02\x58\x00\x34\x02\x58\x00\x48\x02\ \x58\x00\x4f\x02\x58\x00\x2a\x02\x58\x00\x4c\x02\x58\x00\x3e\x02\ \x58\x00\x24\x02\x58\x00\x48\x02\x58\x00\x2f\x02\x58\x00\x48\x02\ \x58\x00\x2f\x02\x58\x00\x74\x02\x58\x00\x35\x02\x58\x00\x31\x02\ \x58\x00\x3e\x02\x58\x00\x1f\x02\x58\x00\x04\x02\x58\x00\x25\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\xff\xfd\x02\x58\x00\x09\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x41\x02\ \x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x02\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\ \x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x03\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x3b\x02\ \x58\x00\x44\x02\x58\x00\x6b\x02\x58\x00\x6b\x02\x58\x00\x6b\x02\ \x58\x00\x6b\x02\x58\x00\x6b\x02\x58\x00\x37\x02\x58\x00\x6b\x02\ \x58\x00\x21\x02\x58\x00\x41\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x1e\x02\x58\x00\x13\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\ \x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x40\x02\ \x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\ \x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\ \x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\ \x58\x00\x38\x02\x58\x00\x38\x02\x58\x00\x38\x02\x58\x00\x38\x02\ \x58\x00\x02\x02\x58\x00\x49\x02\x58\x00\x3a\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x10\x02\x58\x00\x06\x02\x58\x00\x43\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\ \x58\x00\x1a\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\ \x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\ \x58\xff\xee\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x06\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x2a\x02\x58\x00\x4c\x02\x58\x00\x4c\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x0d\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x24\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\xff\xd2\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x0c\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x74\x02\x58\x00\x65\x02\ \x58\x00\x74\x02\x58\x00\x6a\x02\x58\x00\x6a\x02\x58\x00\x42\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x3d\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\ \x58\x00\x04\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x46\x02\x58\x00\x2f\x02\x58\x00\x48\x02\x58\x00\x2a\x02\ \x58\x00\x48\x02\x58\x00\x2f\x02\x58\x00\x48\x02\x58\x00\x34\x02\ \x58\x00\x36\x02\x58\x00\x37\x02\x58\x00\x2f\x02\x58\x00\x3c\x02\ \x58\x00\x20\x02\x58\x00\x34\x02\x58\x00\x32\x02\x58\x00\x1f\x02\ \x58\x00\x04\x02\x58\x00\x1d\x02\x58\x00\x0f\x02\x58\x00\x07\x02\ \x58\x00\x0b\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x17\x02\x58\x00\x38\x02\x58\x00\x52\x02\x58\x00\x33\x02\ \x58\x00\x2a\x02\x58\x00\x23\x02\x58\x00\x2e\x02\x58\x00\x3c\x02\ \x58\x00\x3e\x02\x58\x00\x3d\x02\x58\x00\x35\x02\x58\x00\x38\x02\ \x58\x00\x52\x02\x58\x00\x33\x02\x58\x00\x2a\x02\x58\x00\x23\x02\ \x58\x00\x2e\x02\x58\x00\x3c\x02\x58\x00\x3e\x02\x58\x00\x3d\x02\ \x58\x00\x35\x02\x58\x00\xb8\x02\x58\x00\xb6\x02\x58\x00\xb8\x02\ \x58\x00\xb6\x02\x58\xff\xff\x02\x58\x00\xc8\x02\x58\x00\xc8\x02\ \x58\x00\x62\x02\x58\x00\x67\x02\x58\x00\xd7\x02\x58\x00\x53\x02\ \x58\x00\xb8\x02\x58\x00\xca\x02\x58\x00\x34\x02\x58\x00\x46\x02\ \x58\x00\xca\x02\x58\x00\x46\x02\x58\x00\xaf\x02\x58\x00\xc0\x02\ \x58\x00\x2b\x02\x58\x00\x3c\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x50\x02\x58\x00\x14\x02\x58\x00\x50\x02\x58\x00\x14\x02\ \x58\x00\xb8\x02\x58\x00\x88\x02\x58\x00\x3c\x02\x58\x00\xb5\x02\ \x58\x00\x7e\x02\x58\x00\xc9\x02\x58\x00\x69\x02\x58\x00\x6a\x02\ \x58\x00\x69\x02\x58\x00\x4a\x02\x58\x00\xeb\x02\x58\x00\x4a\x02\ \x58\x00\xeb\x02\x58\x00\x40\x02\x58\x00\x59\x02\x58\x00\x59\x02\ \x58\x00\x47\x02\x58\x00\x30\x02\x58\x00\x13\x02\x58\x00\x13\x02\ \x58\x00\x65\x02\x58\xff\xf3\x02\x58\xff\xf7\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x54\x02\x58\x00\x7c\x02\ \x58\x00\x7c\x02\x58\x00\x40\x02\x58\x00\x98\x02\x58\x00\xc4\x02\ \x58\x00\x9e\x02\x58\x00\xa5\x02\x58\x00\xa1\x02\x58\x00\xa5\x02\ \x58\x00\xa2\x02\x58\x00\xb1\x02\x58\x00\xa6\x02\x58\x00\xa4\x02\ \x58\x00\xd6\x02\x58\x00\xc7\x02\x58\x00\xed\x02\x58\x00\xe3\x02\ \x58\x00\x98\x02\x58\x00\xc4\x02\x58\x00\x9e\x02\x58\x00\xa5\x02\ \x58\x00\xa1\x02\x58\x00\xa5\x02\x58\x00\xa2\x02\x58\x00\xb1\x02\ \x58\x00\xa6\x02\x58\x00\xa4\x02\x58\x00\xd6\x02\x58\x00\xc7\x02\ \x58\x00\xed\x02\x58\x00\xe3\x02\x58\x00\x98\x02\x58\x00\xc4\x02\ \x58\x00\x9c\x02\x58\x00\xa5\x02\x58\x00\xa1\x02\x58\x00\xa5\x02\ \x58\x00\xa2\x02\x58\x00\xb1\x02\x58\x00\xa6\x02\x58\x00\xa4\x02\ \x58\x00\xd6\x02\x58\x00\xc7\x02\x58\x00\xed\x02\x58\x00\xe3\x02\ \x58\x00\x98\x02\x58\x00\xc4\x02\x58\x00\x9e\x02\x58\x00\xa5\x02\ \x58\x00\xa1\x02\x58\x00\xa5\x02\x58\x00\xa2\x02\x58\x00\xb1\x02\ \x58\x00\xa6\x02\x58\x00\xa4\x02\x58\x00\xd6\x02\x58\x00\xc7\x02\ \x58\x00\xed\x02\x58\x00\xe3\x02\x58\x00\x9a\x02\x58\x00\x80\x02\ \x58\x00\x85\x02\x58\x00\x9a\x02\x58\x00\x9a\x02\x58\x00\xaa\x02\ \x58\x00\x80\x02\x58\x00\x94\x02\x58\x00\xb7\x02\x58\x00\x85\x02\ \x58\x00\x9c\x02\x58\x00\xa9\x02\x58\x00\x85\x02\x58\x00\xa0\x02\ \x58\x00\xb6\x02\x58\x00\x73\x02\x58\x00\x9c\x02\x58\x00\x85\x02\ \x58\x00\x9a\x02\x58\x00\x80\x02\x58\x00\xd6\x02\x58\x00\x91\x02\ \x58\x00\x96\x02\x58\x00\x90\x02\x58\x00\x76\x02\x58\x00\x53\x02\ \x58\x00\x7c\x02\x58\x00\x81\x02\x58\x00\x97\x02\x58\x00\x94\x02\ \x58\x00\x94\x02\x58\x00\x94\x02\x58\x00\x80\x02\x58\x00\x80\x02\ \x58\x00\x9c\x02\x58\x00\x24\x02\x58\x00\x40\x02\x58\x00\x43\x02\ \x58\x00\x1f\x02\x58\x00\x2d\x02\x58\x00\x60\x02\x58\x00\x2e\x02\ \x58\x00\x4f\x02\x58\x00\x43\x02\x58\x00\x1b\x02\x58\x00\x15\x02\ \x58\x00\x5b\x02\x58\x00\x16\x02\x58\x00\x43\x02\x58\x00\x4f\x02\ \x58\x00\x58\x02\x58\x00\x24\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x12\x02\x58\x00\x1f\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x18\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x11\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x54\x02\x58\x00\x46\x02\ \x58\x00\xb8\x02\x58\x00\x46\x02\x58\x00\x74\x02\x58\x00\x62\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x56\x02\ \x58\x00\x46\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x46\x02\ \x58\x00\x0e\x02\x58\xff\xf3\x02\x58\x00\x3e\x02\x58\x00\x3c\x02\ \x58\x00\x93\x02\x58\x00\x21\x02\x58\x00\x0e\x02\x58\x00\x0c\x02\ \x58\x00\x3b\x02\x58\x00\x19\x02\x58\x00\x4b\x02\x58\x00\x1a\x02\ \x58\x00\x0d\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\xb6\x02\x58\x00\x87\x02\x58\x00\x62\x02\x58\x00\x93\x02\ \x58\x00\x17\x02\x58\x00\x17\x02\x58\x00\x39\x02\x58\x00\x39\x02\ \x58\x00\x17\x02\x58\x00\x17\x02\x58\x00\x12\x02\x58\x00\x12\x02\ \x58\xff\xe3\x02\x58\xff\xe3\x02\x58\xff\xf0\x02\x58\x00\x35\x02\ \x58\x00\x4e\x02\x58\x00\xe5\x02\x58\x00\x70\x02\x58\x00\xb8\x02\ \x58\x00\xca\x02\x58\x00\xea\x02\x58\x00\xd1\x02\x58\x00\x8f\x02\ \x58\x00\xda\x02\x58\x00\x8a\x02\x58\x00\x8a\x02\x58\x00\xe0\x02\ \x58\x00\xa2\x02\x58\x00\xda\x02\x58\x00\x8f\x02\x58\x00\xe0\x02\ \x58\x00\x81\x02\x58\x00\x70\x02\x58\x00\xa2\x02\x58\x00\x99\x02\ \x58\x00\xbb\x02\x58\x00\xaf\x02\x58\x00\xca\x02\x58\x00\xc7\x02\ \x58\x00\xd6\x02\x58\x00\x8f\x02\x58\x00\x8a\x02\x58\x00\xda\x02\ \x58\x00\xe1\x02\x58\x00\x8a\x02\x58\x00\x84\x02\x58\x00\x81\x02\ \x58\x00\x82\x02\x58\x00\xa2\x02\x58\x00\x9f\x02\x58\x00\x99\x02\ \x58\x00\xa3\x02\x58\x00\xca\x02\x58\x00\xd7\x02\x58\x00\x70\x02\ \x58\x00\x83\x02\x58\x00\xdb\x02\x58\x00\xdb\x02\x58\x00\xbb\x02\ \x58\x00\xbb\x02\x58\x00\xaf\x02\x58\x00\xa3\x02\x58\x00\x8a\x02\ \x58\x00\x84\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\xe8\x02\ \x58\x00\xf4\x02\x58\x01\x22\x02\x58\x00\xca\x02\x58\x00\x83\x02\ \x58\x00\xc5\x02\x58\x00\xc5\x02\x58\x00\xc4\x02\x58\x00\xd6\x02\ \x58\x00\xd3\x02\x58\x00\xa1\x02\x58\x00\xa2\x02\x58\x00\x8b\x02\ \x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\ \x58\x00\x84\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\xa1\x02\ \x58\x00\x8e\x02\x58\x00\xa1\x02\x58\x00\x8e\x02\x58\x00\xa1\x02\ \x58\x00\x8e\x02\x58\x00\x99\x02\x58\x00\x8e\x02\x58\x00\xa1\x02\ \x58\x00\xa4\x02\x58\x00\xa1\x02\x58\x00\xa4\x02\x58\x00\xa1\x02\ \x58\x00\xa4\x02\x58\x00\x9a\x02\x58\x00\x93\x02\x58\x00\x99\x02\ \x58\x00\x8e\x02\x58\x00\xfd\x02\x58\x00\xd6\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\x21\x02\ \x58\x00\x21\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\x12\x02\ \x58\x00\x12\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\ \x58\x00\xa3\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\x4b\x02\ \x58\x00\x4b\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\x00\x5e\x02\x58\x00\xe7\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\x00\xe7\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\x00\xe7\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\x00\xe7\x02\x58\x00\xe7\x02\x58\x00\xe7\x02\x58\xff\xbb\x02\ \x58\x00\xa3\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\x00\xa3\x02\x58\xff\xbb\x02\x58\x00\xa3\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x01\x2c\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x02\x0d\x02\x58\x00\x00\x02\x58\x01\x2c\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x01\x2c\x02\x58\x00\x00\x02\x58\x00\x00\x00\x00\x00\x03\x00\ \x00\x00\x03\x00\x00\x02\x14\x00\x01\x00\x00\x00\x00\x00\x1c\x00\ \x03\x00\x01\x00\x00\x02\x14\x00\x06\x01\xf8\x00\x00\x00\x09\x00\ \xf7\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x03\x01\xe8\x01\xed\x02\x17\x02\x78\x02\x8b\x01\xce\x01\xec\x02\ \x01\x02\x02\x02\x0b\x02\x96\x01\xe4\x01\xf8\x01\xe3\x02\x07\x01\ \xcf\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x01\xd5\x01\xd6\x01\ \xd7\x01\xd8\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\x9d\x01\xea\x02\ \x15\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\ \x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x00\x1d\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x02\x05\x02\x08\x02\x06\x02\xa3\x00\x00\x00\ \x3c\x00\x3f\x00\x50\x00\x5a\x00\x8e\x00\x97\x00\xc3\x00\xea\x00\ \xe9\x00\xeb\x00\xed\x00\xec\x00\xf0\x01\x01\x01\x0b\x01\x0a\x01\ \x0c\x01\x0e\x01\x27\x01\x26\x01\x28\x01\x2a\x01\x41\x01\x48\x01\ \x47\x01\x49\x01\x4b\x01\x4a\x01\x75\x01\x74\x01\x76\x01\x78\x02\ \x0c\x02\x76\x02\x7c\x02\x79\x02\x0e\x01\xff\x02\x0f\x01\x6d\x02\ \x12\x02\x10\x02\x13\x02\xce\x02\xd7\x02\xa2\x00\x4e\x00\xa3\x02\ \xa7\x02\xa0\x02\x9e\x02\x9f\x02\x7a\x02\xa8\x02\xa9\x02\xae\x02\ \xaf\x02\xa6\x02\xaa\x02\x54\x02\x56\x00\x00\x00\xff\x01\x57\x01\ \xeb\x01\xe9\x02\xa5\x02\xab\x02\x7d\x02\xa4\x02\xac\x01\xf6\x01\ \xf7\x01\xe7\x03\x21\x00\x38\x00\x3b\x00\x96\x00\xa4\x01\x58\x01\ \xfa\x01\xfb\x01\xf0\x01\xf1\x01\xee\x01\xef\x02\x99\x02\xc6\x01\ \x92\x00\xdd\x02\x88\x02\x7b\x01\xf4\x01\xf5\x01\xad\x01\xae\x02\ \x0d\x01\xfe\x01\xf2\x01\xf3\x02\x8c\x00\x3a\x00\x5b\x00\x39\x00\ \x5d\x00\x59\x00\x76\x00\x77\x00\x79\x00\x75\x00\x94\x00\x95\x00\ \x00\x00\x93\x00\xc0\x00\xc1\x00\xbf\x01\x32\x02\xcf\x02\xd6\x02\ \xd8\x02\xd9\x02\xdc\x02\xda\x02\xdd\x02\xdb\x02\xde\x02\xd0\x00\ \x04\x08\x0c\x00\x00\x01\x1a\x01\x00\x00\x07\x00\x1a\x00\x00\x00\ \x0d\x00\x2f\x00\x39\x00\x40\x00\x5a\x00\x60\x00\x7a\x00\x7e\x00\ \xbf\x00\xc4\x00\xd1\x00\xd6\x00\xdf\x00\xe4\x00\xf1\x00\xf6\x01\ \x31\x01\x49\x01\x65\x01\x7e\x01\x80\x01\x8f\x01\x92\x01\xa1\x01\ \xb0\x01\xdc\x01\xe7\x01\xeb\x02\x1b\x02\x37\x02\x43\x02\x52\x02\ \x54\x02\x59\x02\x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8e\x02\ \x9e\x02\xb0\x02\xb3\x02\xb8\x02\xbc\x02\xbf\x02\xcc\x02\xdd\x02\ \xe3\x03\x04\x03\x0c\x03\x0f\x03\x13\x03\x1b\x03\x24\x03\x28\x03\ \x2e\x03\x31\x03\xc0\x1d\x43\x1d\x49\x1d\x4d\x1d\x50\x1d\x52\x1d\ \x58\x1d\x5b\x1d\x9c\x1d\xa0\x1d\xbb\x1e\x0f\x1e\x21\x1e\x25\x1e\ \x2b\x1e\x3b\x1e\x49\x1e\x63\x1e\x6f\x1e\x85\x1e\x8f\x1e\x93\x1e\ \x97\x1e\x9e\x1e\xf9\x20\x07\x20\x15\x20\x1a\x20\x1e\x20\x22\x20\ \x26\x20\x30\x20\x33\x20\x3a\x20\x44\x20\x71\x20\x79\x20\x7f\x20\ \x89\x20\x8e\x20\x94\x20\xa1\x20\xa4\x20\xa7\x20\xac\x20\xb2\x20\ \xb5\x20\xba\x21\x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\ \x54\x21\x5e\x21\x93\x22\x02\x22\x06\x22\x0f\x22\x12\x22\x15\x22\ \x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\x65\x25\x9f\x25\xa0\x25\ \xb3\x25\xb7\x25\xbd\x25\xc1\x25\xc6\x25\xca\x26\x11\x26\x6a\x27\ \x13\x27\x52\xfb\x02\xff\xff\x00\x00\x00\x00\x00\x0d\x00\x20\x00\ \x30\x00\x3a\x00\x41\x00\x5b\x00\x61\x00\x7b\x00\xa0\x00\xc0\x00\ \xc5\x00\xd2\x00\xd7\x00\xe0\x00\xe5\x00\xf2\x00\xf7\x01\x34\x01\ \x4c\x01\x68\x01\x80\x01\x8f\x01\x92\x01\xa0\x01\xaf\x01\xcd\x01\ \xe6\x01\xea\x02\x18\x02\x37\x02\x43\x02\x50\x02\x54\x02\x58\x02\ \x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8c\x02\x9e\x02\xb0\x02\ \xb2\x02\xb7\x02\xbb\x02\xbe\x02\xc6\x02\xd8\x02\xe1\x03\x00\x03\ \x06\x03\x0f\x03\x12\x03\x1b\x03\x23\x03\x26\x03\x2e\x03\x31\x03\ \xc0\x1d\x43\x1d\x47\x1d\x4d\x1d\x4f\x1d\x52\x1d\x56\x1d\x5b\x1d\ \x9c\x1d\xa0\x1d\xbb\x1e\x0c\x1e\x20\x1e\x24\x1e\x2a\x1e\x36\x1e\ \x42\x1e\x5a\x1e\x6c\x1e\x80\x1e\x8e\x1e\x92\x1e\x97\x1e\x9e\x1e\ \xa0\x20\x07\x20\x12\x20\x18\x20\x1c\x20\x20\x20\x26\x20\x30\x20\ \x32\x20\x39\x20\x44\x20\x70\x20\x74\x20\x7d\x20\x80\x20\x8d\x20\ \x94\x20\xa1\x20\xa4\x20\xa6\x20\xab\x20\xb1\x20\xb5\x20\xb9\x21\ \x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\x53\x21\x5b\x21\ \x90\x22\x02\x22\x06\x22\x0f\x22\x11\x22\x15\x22\x19\x22\x1e\x22\ \x2b\x22\x48\x22\x60\x22\x64\x25\x00\x25\xa0\x25\xb2\x25\xb6\x25\ \xbc\x25\xc0\x25\xc6\x25\xc9\x26\x10\x26\x6a\x27\x13\x27\x52\xfb\ \x01\xff\xff\x00\x01\xff\xf5\x00\x00\x01\x9f\x00\x00\xff\xc3\x00\ \x00\xff\xbd\x00\x00\x00\x00\xff\x78\x00\x00\xff\xc1\x00\x00\x00\ \x09\x00\x00\x00\x55\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\xff\ \x59\x00\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\ \x66\xfe\x0c\xff\x4e\xff\x4d\xff\x4a\xff\x43\xff\x40\xff\x37\xff\ \x2e\xff\x21\xff\x1d\xff\x0e\xff\xae\x00\x00\x00\x00\x00\x0e\x00\ \x0d\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe8\xff\xe7\xff\ \xe0\xff\xd9\x00\x00\xff\xd5\xff\xd3\xfe\xe6\xe5\x14\x00\x00\xe5\ \x10\x00\x00\xe5\x13\x00\x00\xe5\x11\xe4\xbd\xe4\xbc\xe4\xb5\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xe2\xdc\xe2\x1b\x00\x00\xe3\x1b\x00\x00\x00\ \x00\x00\x00\x00\x00\xe1\xc1\xe2\x5c\xe2\x95\xe1\xbb\xe2\x44\x00\ \x00\xe1\xac\x00\x00\xe1\xaa\xe1\xa7\xe1\xdf\xe1\xdd\xe1\xdb\xe1\ \xda\x00\x00\xe1\xd2\xe1\xd0\xe1\xcd\xe1\x9d\xe0\xfa\xe0\xf4\xe0\ \xf1\xe1\x87\xe1\x83\xe1\x3d\xe1\x37\xe1\x22\xe0\xa7\xe0\xa6\xe0\ \xa0\x00\x00\xe0\x74\x00\x00\xe0\x89\xe0\x7f\xe0\x5c\xe0\x42\xe0\ \x3a\xde\x25\xdd\x16\xdd\x08\xdd\x06\xdd\x02\xdd\x00\xdc\xf1\x00\ \x00\xdc\xb2\xdc\x5b\xdb\xb1\xdb\x67\x06\xac\x00\x01\x00\x00\x00\ \x00\x01\x16\x00\x00\x01\x32\x00\x00\x01\x3c\x00\x00\x01\x44\x01\ \x4a\x00\x00\x01\x86\x00\x00\x01\x9c\x00\x00\x01\xaa\x00\x00\x01\ \xc0\x02\x34\x02\x5e\x02\x90\x00\x00\x00\x00\x00\x00\x02\xb6\x02\ \xb8\x02\xba\x02\xd8\x02\xda\x02\xdc\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x02\xc8\x02\xca\x00\x00\x00\x00\x00\x00\x02\xc6\x02\ \xd0\x02\xd4\x02\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x02\xe0\x00\ \x00\x00\x00\x00\x00\x00\x00\x02\xdc\x00\x00\x02\xde\x00\x00\x02\ \xde\x00\x00\x00\x00\x00\x00\x00\x00\x02\xda\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xf0\x02\xfe\x03\x10\x03\x16\x03\x20\x03\x22\x00\ \x00\x00\x00\x03\x20\x00\x00\x03\xd0\x03\xd6\x03\xda\x03\xde\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd8\x00\x00\x03\xd8\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd0\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xb4\x00\x00\x03\ \xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x9e\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x03\x01\xe8\x01\xed\x02\x17\x02\ \x78\x02\x8b\x01\xce\x01\xec\x02\x01\x02\x02\x02\x0b\x02\x96\x01\ \xe4\x01\xf8\x01\xe3\x02\x07\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\ \x9d\x01\xea\x02\x15\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x02\x05\x02\x08\x02\x06\x02\xa3\x03\x21\x01\xe9\x02\x7c\x02\ \x79\x02\x77\x02\x7a\x02\x0a\x02\x0e\x02\xd7\x02\x10\x02\x54\x01\ \xf6\x02\xa5\x01\xf9\x02\x12\x02\xd8\x02\x76\x02\xa0\x02\x1e\x02\ \x1f\x02\xce\x02\xa8\x02\x0f\x01\xfe\x02\xdd\x02\x1d\x02\x56\x01\ \xf7\x02\x8d\x02\x8e\x02\x8f\x01\xeb\x00\x3f\x00\x4e\x00\x50\x00\ \x59\x00\x5a\x00\x5b\x00\x5d\x00\x75\x00\x76\x00\x77\x00\x79\x00\ \xe6\x00\x8e\x02\x98\x00\xa3\x00\xbf\x00\xc0\x00\xc1\x00\xc3\x00\ \xdb\x00\xe7\x01\x6d\x00\xf0\x00\xff\x01\x01\x01\x0a\x01\x0b\x01\ \x0c\x01\x0e\x01\x26\x01\x27\x01\x28\x01\x2a\x01\x9b\x01\x41\x02\ \x99\x01\x57\x01\x74\x01\x75\x01\x76\x01\x78\x01\x90\x01\x9c\x01\ \x92\x00\x3d\x00\xee\x00\x3e\x00\xef\x00\x4d\x00\xfe\x00\x51\x01\ \x02\x00\x52\x01\x03\x00\x54\x01\x05\x00\x53\x01\x04\x00\x55\x01\ \x06\x00\x58\x01\x09\x00\x5e\x01\x0f\x00\x5f\x01\x10\x00\x60\x01\ \x11\x00\x69\x01\x1a\x00\x5c\x01\x0d\x00\x6a\x01\x1b\x00\x6b\x01\ \x1c\x00\x6c\x01\x1d\x00\x6d\x01\x1e\x00\x71\x01\x22\x00\x74\x01\ \x25\x00\x78\x01\x29\x00\x7a\x01\x2b\x00\x7b\x01\x2c\x00\x80\x01\ \x30\x00\x7c\x01\x32\x00\x81\x01\x33\x00\x82\x01\x34\x01\x35\x00\ \x83\x01\x36\x00\x85\x01\x39\x00\x84\x01\x37\x00\x86\x01\x38\x00\ \x8a\x01\x3d\x00\x8c\x01\x3f\x00\x8f\x01\x42\x00\x8d\x01\x40\x01\ \x46\x00\x98\x01\x4c\x00\x99\x01\x4d\x00\x9a\x01\x4e\x00\xa4\x01\ \x58\x00\xac\x01\x60\x00\xae\x01\x61\x00\xad\x01\x62\x00\xb2\x01\ \x66\x00\xb3\x01\x67\x00\xb5\x01\x69\x00\xb4\x01\x68\x00\xbb\x01\ \x6f\x00\xba\x01\x6e\x00\xc2\x01\x77\x00\xc4\x01\x79\x00\xc5\x01\ \x7a\x00\xc6\x01\x7b\x00\xc7\x01\x7c\x00\xcf\x01\x84\x00\xd8\x01\ \x8d\x00\xdc\x01\x91\x00\xdd\x00\xe2\x01\x97\x00\xe4\x01\x99\x00\ \xe3\x01\x98\x00\xa5\x01\x59\x00\xd0\x01\x85\x00\x40\x00\xf1\x00\ \x7d\x01\x2d\x00\x9b\x01\x4f\x00\xc8\x01\x7d\x00\xc9\x01\x7e\x00\ \xca\x01\x7f\x00\xcb\x01\x80\x00\xcc\x01\x81\x00\x6e\x01\x1f\x00\ \xab\x01\x5f\x00\xb6\x01\x6a\x00\xbc\x01\x70\x02\x60\x02\x68\x02\ \x6d\x02\x6f\x02\xd9\x02\xdc\x02\xda\x02\xde\x02\xd6\x02\xdb\x02\ \x62\x02\x69\x02\x6e\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xfe\x02\ \xff\x03\x01\x02\x58\x02\x5a\x02\x5b\x02\x61\x02\x63\x02\x66\x02\ \x6a\x02\x6b\x00\x56\x01\x07\x00\x57\x01\x08\x00\x6f\x01\x20\x00\ \x72\x01\x23\x00\x73\x01\x24\x00\x87\x01\x3a\x00\x88\x01\x3b\x00\ \x89\x01\x3c\x00\x8b\x01\x3e\x00\x90\x01\x43\x00\x91\x01\x44\x00\ \x92\x01\x45\x00\xaf\x01\x63\x00\xb0\x01\x64\x00\xb1\x01\x65\x00\ \xb7\x01\x6b\x00\xb8\x01\x6c\x00\xbd\x01\x71\x00\xbe\x01\x72\x00\ \xd6\x01\x8b\x00\xd7\x01\x8c\x00\xd9\x01\x8e\x00\xde\x01\x93\x00\ \xe5\x01\x9a\x00\x41\x00\xf2\x00\x42\x00\xf3\x00\x43\x00\xf4\x00\ \x44\x00\xf5\x00\x45\x00\xf6\x00\x46\x00\xf7\x00\x47\x00\xf8\x00\ \x48\x00\xf9\x00\x49\x00\xfa\x00\x4a\x00\xfb\x00\x4b\x00\xfc\x00\ \x4c\x00\xfd\x00\x61\x01\x12\x00\x62\x01\x13\x00\x63\x01\x14\x00\ \x64\x01\x15\x00\x65\x01\x16\x00\x66\x01\x17\x00\x67\x01\x18\x00\ \x68\x01\x19\x00\x7e\x01\x2e\x00\x7f\x01\x2f\x00\x9c\x01\x50\x00\ \x9d\x01\x51\x00\x9e\x01\x52\x00\x9f\x01\x53\x00\xa0\x01\x54\x00\ \xa1\x01\x55\x00\xa2\x01\x56\x00\xa6\x01\x5a\x00\xa7\x01\x5b\x00\ \xa8\x01\x5c\x00\xa9\x01\x5d\x00\xaa\x01\x5e\x00\xcd\x01\x82\x00\ \xce\x01\x83\x00\xd1\x01\x86\x00\xd2\x01\x87\x00\xd3\x01\x88\x00\ \xd4\x01\x89\x00\xd5\x01\x8a\x00\xda\x01\x8f\x00\xdf\x01\x94\x00\ \xe0\x01\x95\x00\xe1\x01\x96\x01\xfc\x01\xfa\x01\xfb\x01\xfd\x01\ \xee\x01\xef\x01\xf2\x01\xf0\x01\xf1\x01\xf3\x02\x0c\x02\x0d\x01\ \xff\x02\x1c\x02\x5f\x02\x26\x02\x27\x02\x64\x02\x82\x02\x7b\x02\ \xae\x02\x97\x02\x9a\x02\xab\x02\xb8\x02\xc6\xb8\x00\x00\x2c\x4b\ \xb8\x00\x09\x50\x58\xb1\x01\x01\x8e\x59\xb8\x01\xff\x85\xb8\x00\ \x44\x1d\xb9\x00\x09\x00\x03\x5f\x5e\x2d\xb8\x00\x01\x2c\x20\x20\ \x45\x69\x44\xb0\x01\x60\x2d\xb8\x00\x02\x2c\xb8\x00\x01\x2a\x21\ \x2d\xb8\x00\x03\x2c\x20\x46\xb0\x03\x25\x46\x52\x58\x23\x59\x20\ \x8a\x20\x8a\x49\x64\x8a\x20\x46\x20\x68\x61\x64\xb0\x04\x25\x46\ \x20\x68\x61\x64\x52\x58\x23\x65\x8a\x59\x2f\x20\xb0\x00\x53\x58\ \x69\x20\xb0\x00\x54\x58\x21\xb0\x40\x59\x1b\x69\x20\xb0\x00\x54\ \x58\x21\xb0\x40\x65\x59\x59\x3a\x2d\xb8\x00\x04\x2c\x20\x46\xb0\ \x04\x25\x46\x52\x58\x23\x8a\x59\x20\x46\x20\x6a\x61\x64\xb0\x04\ \x25\x46\x20\x6a\x61\x64\x52\x58\x23\x8a\x59\x2f\xfd\x2d\xb8\x00\ \x05\x2c\x4b\x20\xb0\x03\x26\x50\x58\x51\x58\xb0\x80\x44\x1b\xb0\ \x40\x44\x59\x1b\x21\x21\x20\x45\xb0\xc0\x50\x58\xb0\xc0\x44\x1b\ \x21\x59\x59\x2d\xb8\x00\x06\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\ \x20\x20\x45\x7d\x69\x18\x44\xb0\x01\x60\x2d\xb8\x00\x07\x2c\xb8\ \x00\x06\x2a\x2d\xb8\x00\x08\x2c\x4b\x20\xb0\x03\x26\x53\x58\xb0\ \x40\x1b\xb0\x00\x59\x8a\x8a\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\ \x80\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\ \x00\xc0\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\ \xb8\x01\x00\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\ \x21\xb8\x01\x40\x8a\x8a\x1b\x8a\x23\x59\x20\xb8\x00\x03\x26\x53\ \x58\xb0\x03\x25\x45\xb8\x01\x80\x50\x58\x23\x21\xb8\x01\x80\x23\ \x21\x1b\xb0\x03\x25\x45\x23\x21\x23\x21\x59\x1b\x21\x59\x44\x2d\ \xb8\x00\x09\x2c\x4b\x53\x58\x45\x44\x1b\x21\x21\x59\x2d\x00\xb0\ \x00\x2b\x00\xb2\x01\x01\x02\x2b\x01\xb2\x02\x01\x02\x2b\x01\xb7\ \x02\x25\x1e\x18\x13\x0c\x00\x08\x2b\x00\xb7\x01\x2e\x26\x20\x18\ \x10\x00\x08\x2b\x00\xb2\x03\x07\x07\x2b\xb0\x00\x20\x45\x7d\x69\ \x18\x44\x4b\xb0\x60\x52\x58\xb0\x01\x1b\xb0\x00\x59\xb0\x01\x8e\ \x00\x00\x00\x00\x14\x00\x73\x00\x96\x00\x00\x00\x0c\xff\x48\x00\ \x0c\x01\xf0\x00\x0c\x02\x42\x00\x0c\x02\x7b\x00\x0c\x02\x8c\x00\ \x0c\x02\xbd\x00\x0c\x00\x00\x00\x00\x00\x4c\x00\x4c\x00\x4c\x00\ \x4c\x00\x90\x00\xf6\x01\x42\x01\x88\x01\xc6\x01\xfc\x02\x58\x02\ \x92\x02\xc8\x03\x04\x03\x54\x03\x7a\x03\xce\x04\x1c\x04\x66\x04\ \xae\x05\x14\x05\x64\x05\xce\x05\xfa\x06\x32\x06\x68\x06\xc8\x07\ \x24\x07\x62\x07\x98\x08\x16\x08\x8a\x08\xd4\x09\x4c\x09\xa6\x09\ \xf8\x0a\xbe\x0b\x16\x0b\x54\x0b\xa6\x0b\xf6\x0c\x34\x0c\xb8\x0d\ \x0e\x0d\x58\x0d\xca\x0e\x42\x0e\x8e\x0e\xf6\x0f\x44\x0f\x98\x0f\ \xd2\x10\x44\x10\xa2\x11\x00\x11\x36\x11\x42\x11\x4e\x11\x5a\x11\ \x66\x11\x72\x11\x7e\x11\x8a\x11\x96\x11\xa2\x11\xae\x11\xba\x11\ \xc6\x11\xd2\x11\xde\x11\xea\x11\xf8\x12\x04\x12\x10\x12\x1c\x12\ \x28\x12\x36\x12\xaa\x13\x04\x13\x74\x13\x80\x13\x8c\x13\x98\x13\ \xa4\x13\xb0\x13\xbc\x13\xc8\x13\xd4\x13\xdc\x13\xe8\x13\xf4\x14\ \x00\x14\x0c\x14\x18\x14\x24\x14\x30\x14\x3c\x14\x48\x14\x54\x14\ \x60\x14\x6c\x14\x78\x14\x84\x14\x90\x14\x9e\x15\x02\x15\x0e\x15\ \x1a\x15\x26\x15\x32\x15\x3e\x15\x4a\x15\x56\x15\x62\x15\x6e\x15\ \x7a\x15\xe0\x15\xec\x15\xf8\x16\x04\x16\x10\x16\x1c\x16\x28\x16\ \x34\x16\x40\x16\x4c\x16\x58\x16\x64\x16\xc8\x16\xd4\x16\xe0\x16\ \xec\x16\xf8\x17\x04\x17\x10\x17\x1c\x17\x2a\x17\x36\x17\x74\x17\ \x80\x17\x8c\x17\x98\x17\xa4\x17\xb0\x17\xbc\x17\xc8\x17\xd4\x17\ \xe0\x17\xec\x17\xf8\x18\x04\x18\x10\x18\x1c\x18\x28\x18\x34\x18\ \x40\x18\x4c\x18\x58\x18\x64\x18\x70\x18\x7c\x18\x88\x18\x96\x19\ \x16\x19\x70\x19\xd6\x19\xe2\x19\xee\x19\xfa\x1a\x06\x1a\x12\x1a\ \x80\x1a\x8c\x1a\x98\x1a\xa4\x1a\xb0\x1a\xbe\x1a\xca\x1a\xd6\x1a\ \xe2\x1a\xee\x1a\xfa\x1b\x06\x1b\x12\x1b\x1e\x1b\x92\x1b\x9e\x1b\ \xaa\x1b\xb6\x1b\xc2\x1b\xce\x1b\xda\x1b\xe6\x1b\xf2\x1b\xfe\x1c\ \x0a\x1c\x16\x1c\x22\x1c\x2e\x1c\x3a\x1c\x46\x1c\x52\x1c\x5e\x1c\ \x6a\x1c\x76\x1c\x82\x1c\x8e\x1c\xf4\x1d\x4e\x1d\x5a\x1d\x66\x1d\ \x72\x1d\x7e\x1d\x8a\x1d\x96\x1d\xa2\x1d\xae\x1d\xba\x1d\xc6\x1d\ \xd2\x1d\xde\x1d\xea\x1d\xf6\x1e\x02\x1e\x0e\x1e\x1a\x1e\x26\x1e\ \x32\x1e\x3e\x1e\x4a\x1e\xa4\x1e\xe6\x1f\x3e\x1f\x4a\x1f\x56\x1f\ \x62\x1f\x6e\x1f\x7a\x1f\x86\x1f\x92\x1f\x9e\x1f\xaa\x1f\xb6\x1f\ \xc2\x1f\xce\x1f\xda\x1f\xe6\x1f\xf2\x20\x00\x20\x0c\x20\x18\x20\ \x24\x20\x30\x20\x3e\x20\xda\x21\x94\x22\x22\x22\x2e\x22\x3a\x22\ \x46\x22\x52\x22\x5e\x22\x6a\x22\x76\x22\x82\x23\x14\x23\x20\x23\ \x2c\x23\x38\x23\x44\x23\x50\x23\x5c\x23\x68\x23\x74\x23\x80\x23\ \x8c\x23\x98\x23\xa4\x23\xb0\x23\xbc\x23\xc8\x23\xd6\x24\x56\x24\ \x62\x24\x6e\x24\x7a\x24\x86\x24\x92\x24\x9e\x24\xaa\x24\xb6\x24\ \xc2\x24\xce\x25\x3e\x25\x4a\x25\x56\x25\x62\x25\x6e\x25\x7a\x25\ \x86\x25\x92\x25\x9e\x25\xaa\x25\xb6\x26\x24\x26\x74\x26\x9c\x26\ \xa8\x26\xb4\x27\x04\x27\x10\x27\x1c\x27\x28\x27\x34\x27\x40\x27\ \x50\x27\x5c\x27\xb4\x27\xc0\x27\xcc\x27\xd8\x27\xe4\x27\xf0\x27\ \xfc\x28\x08\x28\x14\x28\x86\x28\x92\x28\x9e\x28\xaa\x28\xb6\x28\ \xc2\x28\xce\x28\xda\x28\xe6\x28\xf2\x28\xfe\x29\x0a\x29\x16\x29\ \x22\x29\x2e\x29\x3a\x29\x48\x29\xc8\x2a\x68\x2a\xd0\x2a\xdc\x2a\ \xe8\x2a\xf4\x2b\x00\x2b\x0c\x2b\x84\x2b\x90\x2b\x9c\x2b\xa8\x2b\ \xb4\x2b\xc2\x2b\xce\x2b\xda\x2b\xe6\x2b\xf2\x2b\xfe\x2c\x0a\x2c\ \x16\x2c\x22\x2c\x9e\x2c\xaa\x2c\xb6\x2c\xc2\x2c\xce\x2c\xda\x2c\ \xe6\x2c\xf2\x2c\xfe\x2d\x0a\x2d\x16\x2d\x22\x2d\x2e\x2d\x3a\x2d\ \x46\x2d\x52\x2d\x5e\x2d\x6a\x2d\x76\x2d\x82\x2d\x8e\x2d\x9a\x2d\ \xa6\x2e\x26\x2e\x8e\x2e\x9a\x2e\xa6\x2e\xb2\x2e\xbe\x2e\xca\x2e\ \xd6\x2e\xe2\x2e\xee\x2e\xfa\x2f\x06\x2f\x12\x2f\x1e\x2f\x2a\x2f\ \x36\x2f\x42\x2f\x4e\x2f\x5a\x2f\x66\x2f\x72\x2f\x7e\x2f\x8a\x30\ \x0e\x30\x86\x30\xc2\x31\x3c\x31\xb2\x32\x28\x32\x72\x32\xcc\x33\ \x24\x33\xb0\x34\x04\x34\x88\x34\xd2\x35\x1a\x35\x56\x35\xc2\x36\ \x1c\x36\x66\x36\xe6\x37\x68\x37\x70\x37\x7c\x37\x88\x37\x94\x37\ \xa0\x37\xac\x37\xb8\x37\xc4\x37\xd0\x37\xdc\x37\xe8\x37\xf4\x38\ \x00\x38\x0c\x38\x18\x38\x24\x38\x32\x38\x3e\x38\x4a\x38\x56\x38\ \x62\x38\x70\x39\x14\x39\x1c\x39\x28\x39\x34\x39\x40\x39\x4c\x39\ \x58\x39\x64\x39\x70\x3a\x1a\x3a\x8a\x3a\xc2\x3b\x16\x3b\x80\x3b\ \xd2\x3c\x34\x3c\xaa\x3c\xe0\x3d\x64\x3d\xda\x3e\x4a\x3e\x82\x3e\ \xd4\x3f\x36\x3f\x7a\x3f\xd4\x3f\xdc\x40\x08\x40\x10\x40\x7c\x40\ \xa4\x40\xc8\x40\xd4\x40\xe0\x41\x3a\x41\x70\x41\x9e\x41\xf0\x42\ \x42\x42\x58\x42\x66\x42\x8c\x42\xb0\x42\xbe\x42\xcc\x42\xd6\x42\ \xe4\x42\xfc\x43\x14\x43\x22\x43\x30\x43\x38\x43\x40\x43\x54\x43\ \x68\x43\x7c\x43\x84\x43\x8e\x43\xb4\x43\xc8\x43\xec\x44\x0e\x44\ \x2c\x44\x4a\x44\xaa\x45\x0a\x45\x24\x45\x36\x45\x50\x45\x6e\x45\ \xa4\x45\xd4\x46\x26\x46\xaa\x46\xdc\x47\x64\x47\xe6\x48\x5c\x48\ \xb0\x49\x36\x49\xb0\x4a\x3a\x4a\xb0\x4a\xd8\x4a\xec\x4a\xf4\x4b\ \x56\x4b\x60\x4b\x6a\x4b\x74\x4b\x7e\x4b\x88\x4b\x92\x4b\x9c\x4b\ \xa6\x4b\xb0\x4b\xba\x4b\xc4\x4b\xce\x4b\xd8\x4b\xe2\x4b\xec\x4b\ \xf6\x4c\x00\x4c\x0a\x4c\x14\x4c\x1e\x4c\x28\x4c\x32\x4c\x3c\x4c\ \x46\x4c\x50\x4c\x5a\x4c\x64\x4c\x6e\x4c\xb2\x4c\xd6\x4d\x12\x4d\ \x6c\x4d\xa6\x4d\xfa\x4e\x58\x4e\x86\x4e\xf2\x4f\x50\x4f\x70\x4f\ \x92\x4f\xb6\x4f\xe0\x4f\xea\x4f\xf4\x4f\xfe\x50\x08\x50\x12\x50\ \x1c\x50\x26\x50\x30\x50\x3a\x50\x44\x50\x4e\x50\x58\x50\x62\x50\ \x6c\x50\x74\x50\x7c\x50\x84\x50\xd6\x51\x30\x51\x68\x51\xc6\x52\ \x0c\x52\x4e\x52\xea\x53\x28\x53\x5c\x53\xa6\x53\xe8\x54\x1a\x54\ \x70\x54\xae\x54\xea\x55\x44\x55\xa2\x55\xde\x56\x30\x56\x7a\x56\ \xbc\x56\xf2\x57\x56\x57\xa6\x57\xf8\x58\x26\x58\x80\x58\xd8\x59\ \x1e\x59\x7a\x59\xec\x5a\x28\x5a\x76\x5a\xda\x5b\x44\x5b\xa6\x5c\ \x24\x5c\x8c\x5c\xee\x5d\x9c\x5e\x22\x5e\xd2\x5f\x38\x5f\xa8\x60\ \x3a\x60\x9c\x61\x14\x61\x78\x61\xdc\x61\xf8\x62\x00\x62\x08\x62\ \x18\x62\xcc\x62\xdc\x62\xec\x62\xfc\x63\x0c\x63\x1c\x63\x2c\x63\ \x3c\x63\x4c\x63\x5c\x63\x80\x63\x94\x63\xc2\x64\x02\x64\x0c\x64\ \x18\x64\x4a\x64\x7c\x64\xc0\x65\x04\x65\x42\x65\x6a\x65\xae\x65\ \xe8\x65\xf4\x66\x0a\x66\x6c\x66\xe8\x67\x5c\x67\xce\x68\x14\x68\ \x3e\x68\x7c\x68\xea\x69\x2a\x69\x4e\x69\xbe\x6a\x28\x6a\x46\x6a\ \x6a\x6a\x8a\x6a\xae\x6a\xc0\x6a\xd4\x6b\x32\x6b\x52\x6b\x6a\x6b\ \x88\x6b\xa0\x6b\xcc\x6b\xe2\x6c\x06\x6c\x1e\x6c\x50\x6c\x7c\x6c\ \xe2\x6d\x12\x6d\x5a\x6d\x8e\x6d\xa2\x6d\xae\x6d\xb6\x6d\xbe\x6d\ \xe2\x6e\x06\x6e\x0e\x6e\x16\x6e\x1e\x6e\x26\x6e\x3a\x6e\x42\x6e\ \x4a\x6e\x52\x6e\x66\x6e\x6e\x6e\x76\x6e\x7e\x6e\x86\x6e\x8e\x6e\ \x96\x6e\x9e\x6e\xa6\x6e\xae\x6e\xc0\x6e\xd2\x6e\xe6\x6e\xfa\x6f\ \x18\x6f\x38\x6f\x74\x6f\xb0\x6f\xc4\x6f\xd8\x70\x04\x70\x2c\x70\ \x4a\x70\x68\x70\x9c\x70\xd0\x70\xfc\x71\x26\x71\x58\x71\x8a\x71\ \xac\x71\xce\x71\xec\x72\x0c\x72\x2e\x72\x50\x72\x78\x72\x9e\x72\ \xc6\x72\xe4\x73\x18\x73\x44\x73\x72\x73\xa0\x73\xd2\x74\x08\x74\ \x2e\x74\x42\x74\x84\x74\xc6\x75\x04\x75\x44\x75\x8a\x75\xd2\x76\ \x14\x76\x56\x76\x7c\x76\xa2\x76\xc8\x76\xee\x77\x2a\x77\x64\x77\ \xb0\x77\xfc\x78\x2e\x78\x5c\x78\x8e\x78\xbc\x79\x04\x79\x48\x79\ \xa0\x79\xf8\x7a\x34\x7a\x6c\x7a\x82\x7a\xae\x7a\xae\x7a\xae\x7a\ \xae\x7a\xae\x7a\xc2\x7a\xd6\x7a\xe8\x7a\xfc\x7b\x2a\x7b\x5a\x7b\ \x82\x7b\xac\x7b\xe8\x7c\x26\x7c\x58\x7c\x8e\x7c\xa4\x7c\xba\x7c\ \xd0\x7c\xe6\x7c\xfe\x7d\x14\x7d\x2c\x7d\x42\x7d\x58\x7d\x6e\x7d\ \x84\x7d\x9a\x7d\xb2\x7d\xc8\x7d\xe0\x7d\xf6\x7e\x10\x7e\x28\x7e\ \x48\x7e\x68\x7e\x82\x7e\xa2\x7e\xc2\x7e\xda\x7e\xf4\x7f\x0c\x7f\ \x2c\x7f\x4c\x7f\x66\x7f\x86\x7f\xa6\x7f\xbe\x7f\xdc\x7f\xf8\x80\ \x14\x80\x32\x80\x50\x80\x6c\x80\x88\x80\xa4\x80\xc2\x80\xde\x80\ \xfa\x81\x18\x81\x36\x81\x52\x81\x6e\x81\x8a\x81\xb2\x81\xd6\x81\ \xfa\x82\x20\x82\x46\x82\x6c\x82\x92\x82\xba\x82\xe2\x83\x0a\x83\ \x32\x83\x58\x83\x7e\x83\xa0\x83\xc2\x83\xe8\x84\x0a\x84\x2c\x84\ \x48\x84\x66\x84\x86\x84\xa8\x84\xd2\x84\xf6\x85\x24\x85\x4e\x85\ \x6e\x85\x9c\x85\xc6\x85\xe6\x86\x14\x86\x3e\x86\x5e\x86\x8c\x86\ \xb8\x86\xd8\x87\x0a\x87\x36\x87\x56\x87\x8a\x87\xbc\x87\xe2\x88\ \x1e\x88\x56\x88\x7c\x88\xc0\x89\x0e\x89\x46\x89\x9a\x89\xba\x89\ \xdc\x89\xfe\x8a\x20\x8a\x36\x8a\x4c\x8a\x86\x8a\x9a\x8a\xac\x8a\ \xc0\x8a\xd2\x8a\xe6\x8a\xfa\x8b\x0e\x8b\x22\x8b\x3c\x8b\x54\x8b\ \x6e\x8b\x86\x8b\x9a\x8b\xac\x8b\xbe\x8b\xd0\x8b\xe4\x8b\xf8\x8c\ \x0c\x8c\x20\x8c\x34\x8c\x48\x8c\x5c\x8c\x70\x8c\x84\x8c\x96\x8c\ \xa8\x8c\xba\x8c\xce\x8d\x08\x8d\x82\x8e\x7e\x8e\x92\x8e\xa6\x8e\ \xba\x8e\xce\x8e\xe2\x8e\xf8\x8f\x14\x8f\x2a\x8f\x40\x8f\x54\x8f\ \x70\x8f\x86\x00\x05\x00\x23\x00\x00\x02\x35\x02\x94\x00\x03\x00\ \x06\x00\x09\x00\x0f\x00\x15\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x0a\x00\ \x01\xf4\xb8\x00\x0c\xdc\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \xb8\x00\x10\xdc\x30\x31\x13\x21\x11\x21\x13\x27\x11\x21\x11\x07\ \x17\x2f\x01\x23\x0f\x01\x13\x3f\x01\x23\x1f\x01\x23\x02\x12\xfd\ \xee\xc1\x5e\x01\x4c\x5e\x0a\x27\x29\x04\x29\x27\x54\x2a\x20\x98\ \x1f\x2b\x02\x94\xfd\x6c\x01\x54\xba\xfe\x8d\x01\x73\xba\xf9\x4d\ \x62\x62\x4d\x01\x43\x5f\x3b\x3b\x5f\x00\x00\x00\x02\x00\x09\x00\ \x00\x02\x4f\x02\x8c\x00\x09\x00\x11\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xbb\x00\ \x0a\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x11\xd0\x30\x31\x01\x27\x2e\x01\ \x27\x23\x0e\x01\x0f\x01\x17\x23\x07\x23\x13\x33\x13\x23\x01\x6e\ \x0f\x0d\x1a\x0d\x04\x0c\x1a\x0d\x0f\xa7\xc5\x28\x96\xcb\xb0\xcb\ \x9c\x01\x0e\x3c\x31\x6e\x33\x34\x6d\x31\x3c\x73\x9b\x02\x8c\xfd\ \x74\x00\x00\x00\x03\x00\x54\x00\x00\x02\x2d\x02\x8c\x00\x15\x00\ \x1e\x00\x26\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\ \x1b\xb9\x00\x15\x00\x03\x3e\x59\xba\x00\x25\x00\x15\x00\x00\x11\ \x12\x39\xb8\x00\x25\x2f\xb9\x00\x1e\x00\x01\xf4\xba\x00\x0c\x00\ \x25\x00\x1e\x11\x12\x39\xb8\x00\x00\x10\xb9\x00\x1d\x00\x01\xf4\ \xb8\x00\x15\x10\xb9\x00\x26\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\ \x02\x15\x14\x0e\x02\x07\x15\x1e\x01\x15\x14\x0e\x02\x2b\x01\x13\ \x32\x36\x35\x34\x26\x2b\x01\x15\x13\x32\x35\x34\x26\x2b\x01\x15\ \x54\xcc\x33\x57\x40\x25\x0d\x1c\x2a\x1d\x46\x48\x26\x44\x5b\x35\ \xdf\xc5\x36\x30\x31\x34\x33\x40\x76\x39\x3d\x40\x02\x8c\x0f\x26\ \x3e\x2f\x16\x2c\x26\x1e\x07\x04\x0d\x4a\x42\x32\x48\x2f\x17\x01\ \x85\x2b\x25\x25\x20\x95\xfe\xed\x59\x2b\x27\xab\x00\x00\x00\x00\ \x01\x00\x37\xff\xf4\x02\x39\x02\x98\x00\x1e\x00\x39\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\ \xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\ \x14\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x37\x17\x06\x23\x22\ \x2e\x02\x37\x30\x54\x72\x41\x3f\x61\x21\x51\x17\x36\x23\x23\x3a\ \x2b\x18\x5c\x4a\x23\x39\x18\x51\x52\x7c\x3f\x70\x54\x31\x01\x42\ \x51\x7f\x58\x2e\x33\x20\x5b\x15\x1a\x1d\x36\x4e\x31\x65\x6f\x20\ \x1a\x59\x60\x2b\x54\x7d\x00\x00\x02\x00\x41\x00\x00\x02\x2c\x02\ \x8c\x00\x0c\x00\x19\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\ \x18\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x37\x32\x3e\x02\x35\ \x34\x2e\x02\x2b\x01\x11\x41\xb1\x47\x74\x52\x2d\x2d\x51\x70\x44\ \xb9\xa9\x26\x3f\x2d\x19\x19\x2d\x3f\x26\x15\x02\x8c\x26\x4f\x7a\ \x54\x54\x7c\x51\x28\x77\x16\x31\x50\x3b\x3a\x4f\x2f\x14\xfe\x62\ \x00\x00\x00\x00\x01\x00\x5e\x00\x00\x02\x16\x02\x8c\x00\x0b\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\ \x07\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\ \x01\xf4\xb8\x00\x0b\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\ \x15\x21\x15\x33\x15\x23\x15\x21\x15\x21\x5e\x01\xae\xfe\xe5\xf0\ \xf0\x01\x25\xfe\x48\x02\x8c\x7c\x83\x7b\x96\x7c\x00\x00\x00\x00\ \x01\x00\x6c\x00\x00\x02\x1a\x02\x8c\x00\x09\x00\x43\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\ \xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x07\x00\x09\x00\ \x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\x01\xf4\x30\x31\ \x13\x21\x15\x21\x15\x33\x15\x23\x15\x23\x6c\x01\xae\xfe\xe5\xf1\ \xf1\x93\x02\x8c\x7c\x97\x7c\xfd\x00\x00\x00\x00\x01\x00\x2c\xff\ \xf4\x02\x23\x02\x98\x00\x23\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xb8\x00\x05\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1f\x10\xb9\x00\x14\x00\x01\xf4\ \xba\x00\x19\x00\x1f\x00\x05\x11\x12\x39\xb8\x00\x19\x2f\xb9\x00\ \x1a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x37\x35\x23\x35\x33\ \x11\x0e\x01\x23\x22\x2e\x02\x2c\x2f\x51\x6e\x3f\x42\x5d\x20\x51\ \x15\x32\x27\x20\x36\x28\x17\x4d\x4e\x13\x22\x0b\x5f\xe3\x21\x6c\ \x3f\x3f\x6d\x51\x2e\x01\x42\x52\x7f\x57\x2e\x33\x20\x5b\x15\x1a\ \x1d\x36\x4e\x31\x65\x6f\x0a\x0a\x70\x78\xfe\xd4\x1f\x30\x2b\x54\ \x7d\x00\x00\x00\x01\x00\x40\x00\x00\x02\x18\x02\x8c\x00\x0b\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xba\x00\x09\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\ \x09\x2f\xb9\x00\x02\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x04\xd0\ \xb8\x00\x0b\x10\xb8\x00\x07\xd0\x30\x31\x13\x33\x15\x33\x35\x33\ \x11\x23\x11\x23\x11\x23\x40\x93\xb2\x93\x93\xb2\x93\x02\x8c\xfb\ \xfb\xfd\x74\x01\x10\xfe\xf0\x00\x01\x00\x4a\x00\x00\x02\x0e\x02\ \x8c\x00\x0b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x00\x10\ \xb8\x00\x09\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\x23\x11\x33\ \x15\x21\x4a\x98\x98\x01\xc4\x98\x98\xfe\x3c\x7c\x01\x94\x7c\x7c\ \xfe\x6c\x7c\x00\x01\x00\x3b\xff\xf4\x02\x04\x02\x8c\x00\x14\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\ \x00\x03\x3e\x59\xb9\x00\x02\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\ \x06\x00\x01\xf4\x30\x31\x37\x16\x33\x32\x36\x35\x11\x23\x35\x21\ \x11\x14\x0e\x02\x23\x22\x2e\x02\x27\x90\x3a\x42\x33\x32\xff\x01\ \x92\x19\x3a\x5d\x43\x1b\x3a\x38\x34\x15\xbb\x48\x33\x44\x01\x27\ \x7b\xfe\x52\x30\x55\x40\x25\x0b\x1a\x29\x1e\x00\x01\x00\x44\x00\ \x00\x02\x52\x02\x8c\x00\x0c\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\ \x03\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x33\x13\x33\x03\x13\x23\x03\x07\x15\ \x23\x44\x95\x03\xc1\xa2\xc3\xd6\xa3\x8a\x4c\x95\x02\x8c\xfe\xf5\ \x01\x0b\xfe\xfc\xfe\x78\x01\x13\x64\xaf\x00\x00\x01\x00\x6b\x00\ \x00\x02\x20\x02\x8c\x00\x05\x00\x2b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x02\x00\ \x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x6b\x93\x01\x22\xfe\x4b\ \x02\x8c\xfd\xf0\x7c\x00\x00\x00\x01\x00\x41\x00\x00\x02\x17\x02\ \x8c\x00\x1d\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x12\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xd0\xb8\x00\x1d\x10\xb8\x00\ \x09\xd0\xb8\x00\x00\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x10\xd0\ \x30\x31\x13\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\x35\x34\x3e\x02\ \x37\x23\x0f\x01\x23\x2f\x01\x23\x1e\x03\x1d\x01\x23\x41\x93\x42\ \x16\x03\x16\x3f\x93\x77\x04\x06\x06\x03\x03\x33\x32\x41\x32\x31\ \x04\x03\x06\x06\x04\x75\x02\x8c\xe7\x5a\x5a\xe7\xfd\x74\xd5\x1b\ \x4f\x54\x4f\x1a\xb3\x9b\x9b\xb3\x1a\x4f\x54\x4f\x1b\xd5\x00\x00\ \x01\x00\x42\x00\x00\x02\x16\x02\x8c\x00\x13\x00\x59\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\ \xba\x00\x02\x00\x01\x00\x0b\x11\x12\x39\xb9\x00\x04\x00\x01\xf4\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xba\x00\x0c\x00\x0b\x00\x01\x11\ \x12\x39\xb8\x00\x01\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0b\x10\ \xb8\x00\x12\xd0\x30\x31\x13\x33\x13\x17\x33\x2e\x01\x3d\x01\x33\ \x11\x23\x03\x27\x23\x1e\x01\x1d\x01\x23\x42\x96\x8a\x38\x04\x05\ \x10\x8d\x96\x8a\x38\x04\x05\x10\x8d\x02\x8c\xfe\xbb\x8f\x34\x80\ \x39\xe7\xfd\x74\x01\x45\x8e\x36\x7c\x3a\xe7\x00\x02\x00\x26\xff\ \xf4\x02\x32\x02\x98\x00\x13\x00\x1f\x00\x35\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb9\x00\ \x14\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x1a\x00\x01\xf4\x30\x31\ \x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x3a\x61\ \x45\x26\x26\x45\x61\x3a\x3a\x61\x45\x26\x26\x45\x61\x3a\x33\x3c\ \x3c\x33\x33\x3c\x3c\x0c\x2f\x58\x7e\x50\x50\x7d\x55\x2d\x2d\x56\ \x7d\x4f\x50\x7e\x58\x2f\x7f\x73\x63\x62\x6e\x6e\x62\x63\x73\x00\ \x02\x00\x4a\x00\x00\x02\x37\x02\x8c\x00\x0e\x00\x16\x00\x47\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\ \x3e\x59\xba\x00\x0c\x00\x0e\x00\x00\x11\x12\x39\xb8\x00\x0c\x2f\ \xb8\x00\x00\x10\xb9\x00\x15\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\ \x16\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\ \x01\x15\x23\x13\x32\x35\x34\x26\x2b\x01\x15\x4a\xee\x35\x5d\x45\ \x28\x29\x46\x5c\x34\x5b\x93\xe5\x77\x3c\x3b\x52\x02\x8c\x15\x31\ \x51\x3b\x39\x54\x36\x1a\xdd\x01\x52\x68\x33\x2a\xc5\x00\x00\x00\ \x02\x00\x24\xff\x4e\x02\x44\x02\x98\x00\x0b\x00\x2a\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\ \x3e\x59\xbb\x00\x27\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x1c\x10\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x14\x10\xb8\x00\x24\xd0\x30\x31\x01\x22\x06\x15\x14\x16\ \x33\x32\x36\x35\x34\x26\x13\x0e\x01\x23\x22\x2e\x02\x27\x2e\x01\ \x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x1e\x01\x33\x32\ \x36\x37\x01\x29\x34\x3a\x3a\x34\x33\x3b\x3b\xe8\x11\x30\x1f\x30\ \x50\x41\x30\x0f\x58\x68\x26\x44\x60\x3b\x3a\x60\x44\x26\x5e\x51\ \x11\x43\x23\x0f\x1b\x0b\x02\x19\x6e\x62\x63\x73\x73\x63\x62\x6e\ \xfd\x4a\x09\x0c\x1a\x2e\x41\x26\x19\xab\x88\x50\x7d\x55\x2d\x2d\ \x56\x7d\x4f\x81\xa9\x1d\x23\x1b\x08\x05\x00\x00\x02\x00\x46\x00\ \x00\x02\x48\x02\x8c\x00\x07\x00\x17\x00\x53\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xba\x00\ \x0a\x00\x0c\x00\x0d\x11\x12\x39\xb8\x00\x0a\x2f\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x0d\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x0c\x10\ \xb8\x00\x08\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x13\x33\ \x32\x35\x34\x26\x2b\x01\x13\x27\x23\x15\x23\x11\x33\x32\x1e\x02\ \x15\x14\x06\x07\x13\xd9\x48\x77\x3c\x3b\x48\xca\x7d\x4d\x93\xe7\ \x34\x5b\x45\x28\x40\x34\x93\x01\x60\x61\x30\x26\xfd\xe9\xeb\xeb\ \x02\x8c\x14\x2f\x4e\x3a\x48\x5d\x17\xfe\xfb\x00\x01\x00\x32\xff\ \xf4\x02\x27\x02\x98\x00\x2f\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x06\x00\x2c\x00\x16\x11\x12\x39\xb8\x00\x16\x10\ \xb9\x00\x1d\x00\x01\xf4\xba\x00\x20\x00\x16\x00\x2c\x11\x12\x39\ \x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x2e\x03\ \x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\ \x16\x1f\x01\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x87\x25\x57\ \x2b\x33\x2f\x0e\x1a\x25\x18\x54\x1b\x33\x26\x17\x23\x3f\x58\x35\ \x3c\x70\x2d\x4b\x22\x42\x2a\x2b\x2f\x3c\x2f\x4f\x41\x4b\x22\x40\ \x5e\x3d\x42\x81\x35\xb7\x1e\x26\x22\x1d\x0f\x16\x11\x0f\x09\x24\ \x0a\x20\x2b\x39\x24\x28\x47\x35\x1e\x2c\x2a\x5d\x19\x1b\x1f\x1c\ \x1e\x1e\x11\x22\x18\x54\x45\x29\x49\x37\x21\x2f\x2f\x00\x00\x00\ \x01\x00\x1f\x00\x00\x02\x39\x02\x8c\x00\x07\x00\x33\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\ \xb8\x00\x02\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\ \x13\x23\x35\x21\x15\x23\x11\x23\xe2\xc3\x02\x1a\xc3\x94\x02\x10\ \x7c\x7c\xfd\xf0\x00\x00\x00\x00\x01\x00\x40\xff\xf4\x02\x18\x02\ \x8c\x00\x11\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\ \x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x33\x11\x14\x16\x33\x32\x36\ \x35\x11\x33\x11\x14\x06\x23\x22\x26\x35\x40\x93\x2c\x2f\x2f\x2d\ \x8e\x73\x77\x78\x76\x02\x8c\xfe\x60\x3b\x3e\x3e\x3b\x01\xa0\xfe\ \x6f\x80\x87\x87\x80\x00\x00\x00\x01\x00\x0f\x00\x00\x02\x49\x02\ \x8c\x00\x0d\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\ \x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x13\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x0f\x9c\x4e\x0f\x17\x0e\x04\x0f\x18\x0e\ \x4d\x96\xc4\xb1\x02\x8c\xfe\xd0\x36\x65\x36\x36\x65\x36\x01\x30\ \xfd\x74\x00\x00\x01\x00\x04\x00\x00\x02\x54\x02\x8c\x00\x21\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x03\x3e\x59\xbb\x00\x1c\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x20\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x01\x10\ \xb8\x00\x14\xd0\xb8\x00\x20\x10\xb8\x00\x17\xd0\x30\x31\x13\x33\ \x13\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\ \x04\x96\x15\x01\x02\x01\x03\x08\x13\x08\x2d\x59\x2b\x08\x12\x08\ \x04\x02\x01\x02\x13\x8c\x51\x9a\x29\x06\x0a\x02\x03\x03\x09\x06\ \x27\x97\x02\x8c\xfe\xa5\x2a\x52\x2a\x2a\x52\x2a\xb5\xb5\x28\x54\ \x2a\x2a\x53\x29\x01\x5b\xfd\x74\xcd\x1f\x41\x1d\x1d\x41\x1f\xcd\ \x00\x00\x00\x00\x01\x00\x12\x00\x00\x02\x46\x02\x8c\x00\x19\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\ \x00\x03\x3e\x59\xba\x00\x00\x00\x18\x00\x02\x11\x12\x39\xba\x00\ \x06\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x0b\xd0\ \xba\x00\x0d\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x18\x10\xb8\x00\ \x0f\xd0\xba\x00\x14\x00\x18\x00\x02\x11\x12\x39\x30\x31\x13\x03\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x13\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xd0\xb3\xa5\x3f\x0b\x18\x0f\x04\ \x0c\x15\x0b\x3a\x9e\xb3\xbe\xa4\x47\x0e\x18\x0e\x04\x0c\x18\x0c\ \x44\x9d\x01\x4f\x01\x3d\x7b\x17\x33\x1f\x1f\x33\x17\x7b\xfe\xbc\ \xfe\xb8\x85\x1a\x33\x1e\x1e\x33\x1a\x85\x00\x00\x01\x00\x10\x00\ \x00\x02\x48\x02\x8c\x00\x0f\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\x07\ \x00\x0e\x00\x01\x11\x12\x39\x30\x31\x37\x03\x33\x17\x1e\x01\x17\ \x33\x3e\x01\x3f\x01\x33\x03\x15\x23\xe2\xd2\x9e\x42\x0e\x1e\x0f\ \x04\x10\x1e\x0f\x42\x9a\xd2\x94\xdc\x01\xb0\x9d\x26\x48\x27\x27\ \x48\x26\x9d\xfe\x50\xdc\x00\x00\x01\x00\x38\x00\x00\x02\x23\x02\ \x8c\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x38\x01\x32\xfe\ \xeb\x01\xca\xfe\xcf\x01\x35\xfe\x15\x59\x01\xb8\x7b\x59\xfe\x49\ \x7c\x00\x00\x00\x02\x00\x3d\xff\xf4\x02\x17\x01\xfc\x00\x1d\x00\ \x29\x00\x80\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\ \x0f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\ \x00\x19\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x0f\x00\x13\x11\x12\ \x39\xb8\x00\x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\xb8\ \x00\x19\x10\xb9\x00\x21\x00\x01\xf4\xba\x00\x0b\x00\x08\x00\x21\ \x11\x12\x39\xba\x00\x15\x00\x13\x00\x0f\x11\x12\x39\xb8\x00\x15\ \x10\xb9\x00\x24\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\ \xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x01\x23\x22\x06\x07\x27\x3e\ \x01\x33\x32\x16\x15\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x36\x37\x35\x0e\x03\x3d\x24\x4f\x7c\x58\x04\x33\ \x33\x24\x49\x2a\x34\x33\x75\x40\x68\x78\x78\x0b\x04\x26\x5a\x30\ \x26\x3c\x2a\x17\x8d\x25\x20\x21\x3a\x1a\x37\x48\x2a\x11\x8a\x2a\ \x3f\x2c\x1b\x05\x22\x26\x19\x15\x60\x1d\x26\x6e\x72\xfe\xe4\x38\ \x1d\x27\x17\x29\x36\x2b\x18\x17\x1b\x14\x52\x03\x0e\x15\x1c\x00\ \x02\x00\x48\xff\xf4\x02\x29\x02\xbd\x00\x16\x00\x21\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x10\x11\x12\x39\xba\x00\ \x14\x00\x10\x00\x06\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x10\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x06\x10\ \xb9\x00\x1f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x21\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x36\x35\x34\x23\ \x22\x07\x48\x93\x04\x1d\x49\x24\x2e\x4b\x33\x1c\x24\x3c\x4d\x2a\ \x23\x45\x1f\x04\x0c\x73\x93\x15\x2d\x14\x29\x38\x5b\x2f\x2d\x02\ \xbd\xac\x4e\x1b\x1e\x24\x41\x5d\x39\x40\x64\x45\x24\x22\x20\x36\ \x8d\x12\x0f\x45\x4d\x86\x2e\x00\x01\x00\x43\xff\xf4\x02\x24\x01\ \xfc\x00\x1c\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\ \x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x07\x26\x23\x22\x06\x15\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x43\x2f\x4f\x68\x39\x3b\x5f\ \x20\x44\x37\x37\x40\x50\x4d\x3e\x27\x42\x1a\x3c\x2d\x6d\x33\x3b\ \x64\x4b\x2a\xf8\x3e\x61\x42\x23\x26\x1d\x5b\x27\x4c\x41\x41\x4c\ \x1c\x13\x5d\x26\x23\x23\x42\x61\x00\x00\x00\x00\x02\x00\x2f\xff\ \xf4\x02\x10\x02\xbd\x00\x16\x00\x23\x00\x83\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\ \xba\x00\x08\x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\ \x05\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\ \x0e\x10\xb9\x00\x1d\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1e\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x27\x35\x33\x11\x23\x27\x23\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x2f\x24\x3b\x4c\x29\x2b\x3a\x1a\x05\x93\x78\x0b\x03\x1c\x48\x26\ \x2f\x4d\x37\x1e\x97\x32\x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\xf8\ \x3d\x60\x43\x24\x1d\x18\x4d\xa9\xfd\x43\x33\x1b\x24\x24\x43\x60\ \x3f\x4a\x44\x15\x19\xc9\x12\x0f\x44\x00\x00\x00\x02\x00\x37\xff\ \xf4\x02\x22\x01\xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\ \x23\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x18\x10\xb9\x00\x11\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x21\x1e\x01\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x2e\x02\x25\x34\x26\x23\x22\x06\x07\x37\ \x2b\x48\x5d\x32\x39\x58\x3a\x1e\x04\x02\xfe\xb2\x08\x51\x37\x22\ \x3d\x21\x30\x2a\x68\x32\x3a\x64\x4a\x2b\x01\x66\x2e\x33\x28\x3e\ \x0a\xf8\x3d\x60\x43\x24\x24\x40\x57\x33\x14\x24\x09\x38\x31\x11\ \x11\x58\x1b\x1f\x23\x43\x60\x74\x2a\x34\x2e\x30\x00\x00\x00\x00\ \x01\x00\x52\x00\x00\x02\x49\x02\xc9\x00\x18\x00\x56\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\ \x59\xb8\x00\x15\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x0f\x10\xb8\ \x00\x06\xd0\xb8\x00\x0f\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x09\ \xd0\x30\x31\x01\x26\x23\x22\x06\x1d\x01\x33\x15\x23\x11\x23\x11\ \x23\x35\x37\x35\x34\x3e\x02\x33\x32\x16\x17\x02\x2d\x31\x37\x30\ \x2d\xab\xab\x93\x83\x83\x1a\x36\x54\x3a\x2b\x4b\x20\x02\x42\x13\ \x2a\x2d\x0e\x73\xfe\x83\x01\x7d\x6d\x06\x0d\x2b\x4a\x37\x20\x10\ \x0b\x00\x00\x00\x03\x00\x34\xff\x2d\x02\x3c\x01\xfc\x00\x0f\x00\ \x44\x00\x50\x00\xb2\x00\xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\ \xb9\x00\x22\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\ \x1b\xb9\x00\x25\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x24\ \x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x40\x2f\x1b\xb9\x00\x40\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x40\x10\xb9\ \x00\x03\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\xb8\x00\x12\ \xd0\xb8\x00\x0a\x10\xb9\x00\x37\x00\x01\xf4\xb8\x00\x2f\xdc\xb9\ \x00\x45\x00\x01\xf4\xba\x00\x31\x00\x45\x00\x2f\x11\x12\x39\xb8\ \x00\x31\x10\xb8\x00\x19\xd0\xb8\x00\x25\x10\xb9\x00\x26\x00\x01\ \xf4\xb8\x00\x24\x10\xb9\x00\x27\x00\x01\xf4\xb8\x00\x22\x10\xb9\ \x00\x4b\x00\x01\xf4\x30\x31\x17\x14\x16\x33\x32\x36\x35\x34\x26\ \x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x37\x35\x2e\x01\x35\x34\x36\ \x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\x1e\x01\ \x15\x14\x0e\x02\x23\x22\x27\x0e\x01\x15\x14\x16\x3b\x01\x32\x16\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x13\x32\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\xac\x43\x3b\x3c\x4a\x2c\x2b\x3e\x1b\x23\x0e\x13\ \x10\x78\x4d\x14\x1e\x21\x1a\x1b\x26\x23\x3a\x4d\x2a\x2e\x24\xc9\ \x65\x09\x0e\x20\x37\x4b\x2b\x20\x24\x0b\x0b\x28\x2c\x5c\x62\x67\ \x2a\x4c\x6e\x43\x30\x53\x3c\x22\xe9\x1f\x2d\x2d\x1f\x1f\x2b\x2b\ \x3e\x1c\x1d\x23\x1a\x18\x0f\x03\x03\x0c\x17\x24\x3d\x26\x04\x0d\ \x28\x20\x19\x32\x12\x04\x12\x41\x2c\x2d\x43\x2d\x17\x0c\x6b\x0b\ \x23\x14\x2b\x3e\x29\x14\x0a\x08\x10\x0c\x14\x12\x3a\x43\x27\x42\ \x2f\x1b\x0f\x1f\x30\x01\x6b\x29\x29\x28\x29\x29\x28\x29\x29\x00\ \x01\x00\x48\x00\x00\x02\x1c\x02\xbd\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x03\x00\x08\x00\x0d\x11\x12\x39\xb8\x00\x08\x10\ \xb9\x00\x11\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x03\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x06\x07\x11\x23\x48\x93\x08\x0f\x23\x29\x31\x1c\x54\ \x4d\x93\x20\x29\x1e\x2d\x1a\x93\x02\xbd\xac\x5f\x0e\x1b\x15\x0c\ \x6c\x5e\xfe\xce\x01\x1f\x32\x2e\x1a\x1a\xfe\xb5\x00\x00\x00\x00\ \x02\x00\x4f\x00\x00\x01\xbb\x02\xee\x00\x05\x00\x11\x00\x3b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\ \x3e\x59\xb8\x00\x00\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x21\x11\x23\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x4f\x01\x5a\x93\ \xc7\x01\x0a\x2b\x37\x37\x2b\x2b\x37\x37\x01\xf0\xfe\x10\x01\x7d\ \xbc\x30\x29\x29\x33\x33\x29\x29\x30\x00\x00\x00\x02\x00\x2a\xff\ \x3c\x01\xbb\x02\xee\x00\x13\x00\x1f\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x14\xdc\xb8\x00\x1a\xdc\x30\x31\x13\x21\x11\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x11\x23\x25\ \x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x4f\x01\x5a\x15\x35\ \x59\x43\x2e\x4b\x20\x2b\x1e\x31\x16\x35\x27\xc7\x01\x0a\x2b\x37\ \x37\x2b\x2b\x37\x37\x01\xf0\xfe\x2e\x2d\x52\x3e\x25\x13\x0f\x69\ \x0e\x0a\x33\x36\x01\x65\xbc\x30\x29\x29\x33\x33\x29\x29\x30\x00\ \x01\x00\x4c\x00\x00\x02\x49\x02\xbd\x00\x0c\x00\x6d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\ \x3e\x59\xba\x00\x02\x00\x00\x00\x0c\x11\x12\x39\xba\x00\x09\x00\ \x00\x00\x08\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\ \x02\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x33\x37\x33\ \x07\x13\x23\x27\x07\x15\x23\x4c\x93\x04\xb6\xa1\xbc\xcb\x9f\x82\ \x49\x93\x02\xbd\xfe\x6b\xc8\xcc\xfe\xdc\xca\x4d\x7d\x00\x00\x00\ \x01\x00\x3e\xff\xf4\x02\x20\x02\xbd\x00\x15\x00\x35\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x15\x00\x01\xf4\ \x30\x31\x13\x21\x11\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x03\x23\ \x22\x26\x35\x11\x23\x3e\x01\x23\x0d\x17\x1d\x0f\x11\x26\x17\x21\ \x14\x22\x22\x26\x17\x5e\x5f\x90\x02\xbd\xfd\xff\x17\x1f\x13\x08\ \x07\x09\x6c\x06\x0a\x07\x04\x6f\x5f\x01\x87\x00\x01\x00\x24\x00\ \x00\x02\x3d\x01\xfc\x00\x20\x00\xa3\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\ \xba\x00\x02\x00\x20\x00\x00\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\ \x09\xd0\xb8\x00\x0c\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\x09\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\ \xb8\x00\x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x33\x17\x33\ \x3e\x01\x33\x32\x16\x17\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x23\x22\x07\x11\x23\x11\x34\x23\x22\x06\x07\x11\x23\x24\x6e\x0b\ \x04\x0e\x31\x2b\x21\x2d\x09\x0e\x35\x2a\x34\x3a\x8a\x1c\x1b\x13\ \x71\x1d\x0e\x14\x0b\x8a\x01\xf0\x3e\x1f\x2b\x29\x28\x22\x2f\x55\ \x4b\xfe\xa4\x01\x51\x2e\x30\xfe\xb1\x01\x51\x2e\x18\x18\xfe\xb1\ \x00\x00\x00\x00\x01\x00\x48\x00\x00\x02\x1c\x01\xfc\x00\x14\x00\ \x65\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\ \x14\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\ \x00\x0b\x00\x03\x3e\x59\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\ \xb8\x00\x06\x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\ \x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x16\x15\ \x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\x48\x78\x0b\x04\x20\ \x53\x38\x54\x4e\x93\x20\x29\x1e\x2d\x1a\x93\x01\xf0\x42\x20\x2e\ \x6c\x5e\xfe\xce\x01\x1f\x32\x2e\x1a\x1a\xfe\xb5\x00\x00\x00\x00\ \x02\x00\x2f\xff\xf4\x02\x29\x01\xfc\x00\x13\x00\x1f\x00\x35\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xb9\x00\x17\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x1d\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\ \x2f\x2a\x47\x5b\x31\x31\x5b\x47\x2a\x2a\x47\x5b\x31\x31\x5b\x47\ \x2a\x97\x33\x33\x33\x33\x33\x33\x33\x33\xf8\x3e\x61\x42\x23\x23\ \x42\x61\x3e\x3e\x61\x42\x23\x23\x42\x61\x3e\x41\x4c\x4c\x41\x41\ \x4c\x4c\x00\x00\x02\x00\x48\xff\x48\x02\x29\x01\xfc\x00\x15\x00\ \x20\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\ \x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\ \x1b\xb9\x00\x02\x00\x05\x3e\x59\xba\x00\x05\x00\x09\x00\x13\x11\ \x12\x39\xba\x00\x15\x00\x13\x00\x09\x11\x12\x39\xb8\x00\x15\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x19\x00\x01\xf4\ \xb8\x00\x09\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\ \x20\x00\x01\xf4\x30\x31\x17\x15\x23\x11\x33\x17\x33\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x27\x37\x1e\x01\x33\x32\x36\ \x35\x34\x23\x22\x07\xdb\x93\x78\x0b\x03\x1e\x4e\x28\x2e\x4a\x34\ \x1b\x24\x3c\x4d\x2a\x44\x38\x05\x15\x2d\x13\x2a\x38\x5b\x2f\x2d\ \x27\x91\x02\xa8\x32\x1b\x23\x24\x42\x5d\x39\x40\x63\x45\x24\x36\ \x63\x12\x0f\x45\x4d\x86\x2e\x00\x02\x00\x2f\xff\x48\x02\x10\x01\ \xfc\x00\x16\x00\x23\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\x3e\x59\xba\x00\x08\x00\ \x05\x00\x12\x11\x12\x39\xba\x00\x0f\x00\x12\x00\x05\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0f\x10\xb9\x00\ \x1d\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x2f\x24\x3b\x4c\ \x29\x2a\x41\x1f\x04\x0c\x73\x93\x06\x1a\x46\x23\x2f\x4d\x37\x1e\ \x97\x32\x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\xf8\x3d\x60\x43\x24\ \x1e\x21\x33\xfd\x58\x99\x4c\x19\x20\x24\x43\x60\x3f\x4a\x44\x15\ \x19\xc9\x12\x0f\x44\x00\x00\x00\x01\x00\x74\x00\x00\x02\x24\x01\ \xfc\x00\x12\x00\x54\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\ \x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\ \x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xba\x00\x02\x00\x11\x00\x00\ \x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x02\ \x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\ \x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x11\x23\x74\x78\x0c\x03\ \x25\x68\x3c\x21\x29\x16\x1e\x17\x25\x1c\x2e\x59\x20\x93\x01\xf0\ \x6c\x3d\x3b\x0a\x0a\x7b\x07\x07\x36\x43\xfe\xfe\x00\x00\x00\x00\ \x01\x00\x35\xff\xf4\x02\x1c\x01\xfc\x00\x2f\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x2c\x00\x13\x11\x12\x39\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xba\x00\x1d\x00\x13\x00\ \x2c\x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x27\ \x2e\x03\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\ \x15\x14\x1e\x02\x17\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x77\ \x2b\x57\x32\x33\x2c\x49\x3c\x21\x3f\x32\x1f\x20\x3b\x55\x35\x42\ \x6d\x27\x42\x22\x48\x27\x2f\x27\x14\x22\x2f\x1a\x25\x42\x32\x1e\ \x20\x3d\x5b\x3c\x43\x80\x30\x9c\x1b\x20\x16\x14\x17\x1d\x11\x09\ \x19\x23\x2e\x1e\x22\x3a\x28\x17\x2b\x19\x58\x14\x1b\x14\x13\x0b\ \x12\x0e\x0d\x07\x0a\x19\x22\x30\x20\x22\x3a\x2b\x19\x2c\x20\x00\ \x01\x00\x31\xff\xf4\x02\x26\x02\x74\x00\x19\x00\x4d\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\ \x03\x10\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x14\x10\xb9\x00\x0d\x00\x01\xf4\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\ \x2e\x02\x35\xae\x7d\x84\x13\x79\xd2\xd2\x32\x36\x1d\x30\x16\x1a\ \x21\x51\x30\x3b\x52\x33\x16\x01\x7d\x6d\x06\x84\x84\x73\xae\x39\ \x2f\x0a\x08\x6a\x0a\x11\x20\x39\x50\x31\x00\x00\x01\x00\x3e\xff\ \xf4\x02\x0d\x01\xf0\x00\x14\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xba\x00\ \x02\x00\x06\x00\x13\x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0f\x00\ \x01\xf4\xb8\x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x21\x23\ \x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\ \x37\x11\x33\x02\x0d\x78\x0b\x04\x21\x50\x36\x55\x4c\x93\x1e\x2a\ \x1c\x2b\x1a\x93\x47\x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\x18\ \x21\x01\x46\x00\x01\x00\x1f\x00\x00\x02\x39\x01\xf0\x00\x0d\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\ \x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\x30\x31\x13\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x1f\x94\x4e\x0c\x16\ \x0b\x04\x0b\x15\x0c\x4e\x8d\xb6\xa9\x01\xf0\xea\x26\x4c\x27\x27\ \x4c\x26\xea\xfe\x10\x00\x00\x00\x01\x00\x04\x00\x00\x02\x54\x01\ \xf0\x00\x21\x00\x74\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\ \x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xba\x00\x06\x00\x00\ \x00\x21\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x0f\xd0\xba\x00\x1c\ \x00\x00\x00\x17\x11\x12\x39\x30\x31\x13\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\ \x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x04\x90\x1e\x05\x07\ \x05\x03\x05\x0a\x08\x1f\x67\x21\x07\x0c\x05\x04\x05\x06\x05\x1e\ \x86\x4d\xaa\x1c\x05\x09\x05\x04\x03\x07\x08\x1b\xa7\x01\xf0\xe6\ \x25\x48\x26\x26\x4a\x23\xa4\xa4\x25\x48\x26\x26\x48\x25\xe6\xfe\ \x10\xa5\x23\x47\x28\x1b\x44\x33\xa5\x00\x00\x00\x01\x00\x25\x00\ \x00\x02\x32\x01\xf0\x00\x19\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xba\x00\ \x13\x00\x01\x00\x19\x11\x12\x39\xb8\x00\x13\x10\xb8\x00\x00\xd0\ \xb8\x00\x13\x10\xb8\x00\x0d\xd0\xb8\x00\x07\xd0\x30\x31\x13\x27\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xd1\xa1\x9e\x33\x0b\x1c\x0d\x04\ \x0a\x15\x0a\x2c\x9a\xa2\xac\x9e\x39\x0e\x1d\x0e\x04\x0b\x18\x0b\ \x31\x9a\x01\x02\xee\x50\x15\x2b\x15\x15\x2c\x14\x50\xff\xf1\x52\ \x15\x2c\x15\x15\x2b\x16\x52\x00\x01\x00\x1f\xff\x3e\x02\x3b\x01\ \xf0\x00\x1c\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\ \x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xb8\x00\x18\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x0d\x00\x07\x00\x06\x11\x12\x39\x30\x31\ \x17\x16\x33\x32\x36\x3f\x01\x03\x33\x17\x1e\x01\x17\x33\x3e\x01\ \x3f\x01\x33\x03\x0e\x03\x23\x22\x26\x27\x37\x5d\x13\x14\x2b\x31\ \x0c\x0a\xd7\x92\x53\x0e\x18\x0c\x04\x0a\x18\x0b\x49\x8b\xc4\x12\ \x2a\x36\x47\x2f\x16\x26\x10\x1a\x48\x06\x24\x1d\x1a\x01\xe3\xd5\ \x23\x4b\x27\x25\x4b\x25\xd5\xfe\x0b\x2f\x47\x2f\x18\x05\x05\x70\ \x00\x00\x00\x00\x01\x00\x46\x00\x00\x02\x1d\x01\xf0\x00\x09\x00\ \x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\ \x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\x37\x01\ \x23\x35\x21\x15\x01\x21\x15\x21\x46\x01\x04\xe4\x01\xaf\xfe\xfc\ \x01\x0c\xfe\x29\x4f\x01\x2e\x73\x4e\xfe\xd1\x73\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x36\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x47\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x48\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x2d\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x7d\x02\x26\x00\x04\x00\x00\x00\x06\x02\xf2\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x02\ \x8c\x02\x26\x00\x04\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x76\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x53\x03\ \x7a\x02\x26\x00\x04\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x7a\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x95\x02\x26\x00\x04\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\xc5\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x03\ \x36\x02\x26\x00\x04\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\ \xfc\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\x9f\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x16\x00\x00\x00\x00\xff\xff\x00\x09\x00\ \x00\x02\x4f\x03\x9f\x02\x26\x00\x04\x00\x00\x00\x06\x03\x18\x00\ \x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\xce\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x1a\x00\x00\x00\x00\xff\xff\x00\x09\x00\ \x00\x02\x4f\x03\xc6\x02\x26\x00\x04\x00\x00\x00\x06\x03\x1c\x00\ \x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x03\x36\x02\x26\x00\ \x04\x00\x00\x00\x26\x02\xea\x00\x00\x00\x06\x02\xfc\x00\x00\x00\ \x02\x00\x09\xff\x21\x02\x65\x02\x8c\x00\x09\x00\x28\x00\x65\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\ \x00\x03\x3e\x59\xbb\x00\x25\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\ \x00\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x04\x00\ \x01\xf4\x30\x31\x01\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x01\x0e\ \x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x27\x23\x07\x23\x13\x33\ \x13\x0e\x03\x15\x14\x16\x33\x32\x36\x37\x01\x6e\x0f\x0d\x1a\x0d\ \x04\x0c\x19\x0e\x0f\x01\x80\x14\x3b\x1a\x30\x42\x10\x18\x1d\x0c\ \x28\x27\xc5\x28\x96\xcb\xb0\xcb\x15\x21\x17\x0d\x17\x10\x0b\x14\ \x08\x01\x0e\x3c\x31\x6e\x33\x34\x6d\x31\x3c\xfe\x36\x0f\x14\x31\ \x2d\x17\x29\x21\x19\x07\x9b\x9b\x02\x8c\xfd\x74\x02\x11\x1a\x1e\ \x0f\x13\x13\x09\x05\x00\x00\x00\x02\xff\xfd\x00\x00\x02\x53\x02\ \x8c\x00\x06\x00\x16\x00\x66\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\ \x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\ \x00\x0a\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x14\x00\x04\x2b\xb8\ \x00\x0e\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x07\ \x00\x01\xf4\xb8\x00\x01\x10\xb8\x00\x11\xd0\x30\x31\x01\x11\x23\ \x0e\x01\x0f\x01\x05\x15\x21\x35\x23\x07\x23\x13\x21\x15\x23\x15\ \x33\x15\x23\x15\x01\x37\x03\x0d\x1c\x0c\x1c\x01\x70\xfe\xe4\x76\ \x2d\x97\xd1\x01\x7c\x91\x76\x76\x01\x07\x01\x16\x31\x5d\x2b\x5d\ \x8b\x7c\x95\x95\x02\x8c\x7c\x81\x7c\x97\x00\x00\x03\x00\x09\x00\ \x00\x02\x30\x02\x8c\x00\x0c\x00\x14\x00\x2c\x00\x63\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x08\xd0\xb8\x00\ \x07\xd0\xb8\x00\x0d\xd0\xb8\x00\x24\x10\xb9\x00\x13\x00\x01\xf4\ \xba\x00\x15\x00\x0d\x00\x07\x11\x12\x39\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x22\xd0\xb8\x00\x21\xd0\x30\x31\ \x25\x32\x36\x35\x34\x26\x2b\x01\x15\x33\x15\x23\x15\x11\x33\x32\ \x35\x34\x26\x2b\x01\x17\x1e\x01\x15\x14\x0e\x02\x2b\x01\x35\x23\ \x35\x37\x11\x33\x32\x1e\x02\x15\x14\x06\x07\x01\x29\x3c\x3e\x3d\ \x3d\x42\x6a\x6a\x35\x67\x33\x33\x36\xbb\x46\x48\x27\x43\x5c\x35\ \xe1\x4b\x4b\xce\x33\x57\x3f\x24\x34\x39\x69\x36\x34\x34\x2f\x40\ \x47\x46\x01\x24\x51\x24\x20\xb8\x0e\x4f\x45\x34\x4b\x31\x18\xaf\ \x41\x06\x01\x96\x10\x25\x3c\x2c\x29\x4a\x0e\xff\xff\x00\x37\xff\ \x23\x02\x39\x02\x98\x02\x26\x00\x06\x00\x00\x00\x06\x03\x00\x30\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x39\x03\x36\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xe2\x36\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x39\x03\x36\x02\x26\x00\x06\x00\x00\x00\x06\x02\xe4\x36\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x39\x03\x36\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xf6\x36\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x39\x03\x57\x02\x26\x00\x06\x00\x00\x00\x06\x02\xec\x36\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x2c\x03\x36\x02\x26\x00\ \x07\x00\x00\x00\x06\x02\xf6\xfe\x00\x00\x00\xff\xff\x00\x41\xff\ \x03\x02\x2c\x02\x8c\x02\x26\x00\x07\x00\x00\x00\x06\x02\xfc\xf7\ \x00\x00\x00\xff\xff\x00\x41\xff\x43\x02\x2c\x02\x8c\x02\x26\x00\ \x07\x00\x00\x00\x06\x03\x04\xf7\x00\x00\x00\xff\xff\x00\x02\x00\ \x00\x02\x32\x02\x8c\x02\x06\x00\xe6\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe0\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe2\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe4\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf6\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x48\x02\x26\x00\x08\x00\x00\x00\x06\x02\xee\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x2d\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe8\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xea\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x57\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xec\x16\x00\x00\x00\xff\xff\x00\x5e\xff\ \x03\x02\x16\x02\x8c\x02\x26\x00\x08\x00\x00\x00\x06\x02\xfc\x15\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x76\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf0\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x47\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe6\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x69\x03\x7a\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x0e\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x30\x03\x7a\x02\x26\x00\x08\x00\x00\x00\x06\x03\x10\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x3f\x03\x95\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x12\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\xc5\x02\x26\x00\x08\x00\x00\x00\x06\x03\x14\x16\ \x00\x00\x00\xff\xff\x00\x5e\xff\x03\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x26\x02\xe4\x16\x00\x00\x06\x02\xfc\x15\x00\x00\ \x01\x00\x5e\xff\x21\x02\x2a\x02\x8c\x00\x23\x00\x5e\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\ \x59\xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x05\x00\x01\ \x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x02\x00\x01\xf4\xb8\ \x00\x22\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\ \x33\x15\x23\x15\x21\x15\x23\x0e\x03\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x21\x5e\x01\xae\xfe\ \xe5\xf0\xf0\x01\x25\x05\x11\x1f\x18\x0e\x1a\x10\x0a\x12\x08\x21\ \x13\x3b\x1a\x30\x43\x0f\x17\x1c\x0d\xfe\xc0\x02\x8c\x7c\x83\x7b\ \x96\x7c\x01\x10\x19\x20\x10\x14\x12\x09\x05\x4a\x0f\x14\x31\x2d\ \x17\x28\x21\x19\x08\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x36\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe4\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\xf4\x02\x23\x03\x36\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xea\x1e\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x57\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xec\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\x1b\x02\x23\x02\x98\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xfe\x22\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x36\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xf6\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\xf4\x02\x23\x03\x2d\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xe8\x1e\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x47\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe6\x1e\x00\x00\x00\xff\ \xff\x00\x40\x00\x00\x02\x18\x03\x36\x02\x26\x00\x0b\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x40\xff\x03\x02\x18\x02\ \x8c\x02\x26\x00\x0b\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x2e\x02\x18\x02\x8c\x02\x26\x00\x0b\x00\x00\x00\ \x06\x03\x03\x00\x00\x00\x00\x00\x02\x00\x03\x00\x00\x02\x55\x02\ \x8c\x00\x03\x00\x17\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\ \x2f\x1b\xb9\x00\x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x14\x2f\x1b\xb9\x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x14\x10\ \xb8\x00\x13\xdc\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xdc\xb8\x00\ \x00\x10\xb8\x00\x05\xd0\xb8\x00\x03\x10\xb9\x00\x08\x00\x01\xf4\ \xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x13\x10\xb8\x00\x0f\xd0\ \xb8\x00\x13\x10\xb8\x00\x16\xd0\x30\x31\x01\x23\x15\x33\x37\x23\ \x11\x23\x11\x23\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x35\x33\ \x15\x33\x01\x85\xb2\xb2\xd0\x3d\x93\xb2\x93\x3d\x3d\x93\xb2\x93\ \x3d\x01\xe6\x55\x55\xfe\x1a\x01\x10\xfe\xf0\x01\xe6\x41\x05\x60\ \x5f\x5f\x5f\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x36\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x47\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x48\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x2d\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x57\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xec\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x76\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x4a\xff\x03\x02\x0e\x02\x8c\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\x00\x01\x00\x4a\xff\ \x21\x02\x0e\x02\x8c\x00\x23\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xbb\x00\x11\ \x00\x01\x00\x18\x00\x04\x2b\xb8\x00\x22\x10\xb9\x00\x00\x00\x01\ \xf4\xb8\x00\x04\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x00\x10\xb8\x00\x08\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\ \x23\x11\x33\x15\x23\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\ \x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x23\x4a\x98\x98\x01\xc4\ \x98\x98\x98\x29\x22\x1a\x0f\x0b\x13\x07\x22\x14\x3b\x1a\x18\x29\ \x1f\x12\x0f\x16\x1a\x0b\xc0\x7c\x01\x94\x7c\x7c\xfe\x6c\x7c\x11\ \x2f\x1a\x14\x12\x09\x05\x4a\x0f\x14\x0c\x18\x23\x17\x18\x28\x21\ \x18\x08\x00\xff\xff\x00\x3b\xff\xf4\x02\x04\x03\x36\x02\x26\x00\ \x0d\x00\x00\x00\x06\x02\xe4\x16\x00\x00\x00\xff\xff\x00\x44\xff\ \x1b\x02\x52\x02\x8c\x02\x26\x00\x0e\x00\x00\x00\x06\x02\xfe\x17\ \x00\x00\x00\xff\xff\x00\x6b\x00\x00\x02\x20\x03\x36\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xe2\x98\x00\x00\x00\xff\xff\x00\x6b\x00\ \x00\x02\x20\x02\xdd\x02\x26\x00\x0f\x00\x00\x00\x07\x03\x1f\x00\ \x80\xff\xdb\xff\xff\x00\x6b\xff\x1b\x02\x20\x02\x8c\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xfe\x20\x00\x00\x00\xff\xff\x00\x6b\x00\ \x00\x02\x27\x02\x8c\x02\x26\x00\x0f\x00\x00\x00\x07\x02\xeb\x00\ \x99\xfe\xd0\xff\xff\x00\x6b\xff\x03\x02\x20\x02\x8c\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xfc\x20\x00\x00\x00\xff\xff\x00\x37\xff\ \x03\x02\x20\x03\x2d\x02\x26\x00\x0f\x00\x00\x00\x26\x02\xe8\x98\ \x00\x00\x06\x02\xfc\x20\x00\xff\xff\x00\x6b\xff\x43\x02\x20\x02\ \x8c\x02\x26\x00\x0f\x00\x00\x00\x06\x03\x04\x20\x00\x00\x00\x00\ \x01\x00\x21\x00\x00\x02\x20\x02\x8c\x00\x0d\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xba\x00\x03\x00\x01\x00\x07\x11\x12\x39\ \xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\x0c\xd0\ \xb8\x00\x09\xd0\x30\x31\x25\x15\x21\x35\x07\x35\x37\x11\x33\x11\ \x37\x15\x07\x15\x02\x20\xfe\x4b\x4a\x4a\x93\xce\xce\x7c\x7c\xc6\ \x29\x72\x29\x01\x54\xfe\xf4\x71\x72\x71\x92\xff\xff\x00\x41\xff\ \x03\x02\x17\x02\x8c\x02\x26\x00\x10\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xe2\x06\x00\x00\x00\xff\xff\x00\x42\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x11\x00\x00\x00\x06\x02\xf6\x06\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x47\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xe6\x06\x00\x00\x00\xff\xff\x00\x42\xff\ \x1b\x02\x16\x02\x8c\x02\x26\x00\x11\x00\x00\x00\x06\x02\xfe\x00\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x57\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xec\x06\x00\x00\x00\xff\xff\x00\x42\xff\ \x03\x02\x16\x02\x8c\x02\x26\x00\x11\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x42\xff\x43\x02\x16\x02\x8c\x02\x26\x00\ \x11\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe0\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe4\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x47\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x48\x02\x26\x00\x12\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x2d\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xea\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf6\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\x03\x02\x32\x02\x98\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x76\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\x7a\x02\x26\x00\ \x12\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x7a\x02\x26\x00\x12\x00\x00\x00\x06\x03\x10\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x95\x02\x26\x00\ \x12\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\xc5\x02\x26\x00\x12\x00\x00\x00\x06\x03\x14\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\x03\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\xfc\x00\x00\x00\ \x03\x00\x1e\xff\xd7\x02\x43\x02\xb5\x00\x08\x00\x10\x00\x2a\x00\ \x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\ \x00\x03\x3e\x59\xba\x00\x10\x00\x19\x00\x26\x11\x12\x39\xb8\x00\ \x10\x10\xb8\x00\x00\xd0\xb8\x00\x19\x10\xb9\x00\x02\x00\x01\xf4\ \xba\x00\x08\x00\x19\x00\x26\x11\x12\x39\xb8\x00\x08\x10\xb8\x00\ \x09\xd0\xb8\x00\x26\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x08\x10\ \xb8\x00\x11\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\xb8\x00\x10\x10\ \xb8\x00\x1e\xd0\xb8\x00\x09\x10\xb8\x00\x28\xd0\x30\x31\x37\x16\ \x33\x32\x36\x35\x34\x26\x2f\x01\x26\x23\x22\x06\x15\x14\x17\x01\ \x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x07\x27\x37\x2e\x01\x35\x34\ \x3e\x02\x33\x32\x17\x37\x17\xed\x1a\x25\x33\x3c\x02\x02\x26\x1c\ \x29\x33\x3c\x06\x01\x3c\x19\x1a\x26\x45\x61\x3a\x52\x3b\x33\x4e\ \x40\x1b\x1d\x26\x45\x61\x3a\x55\x3f\x35\x4e\x92\x1f\x73\x63\x11\ \x21\x0e\x6c\x24\x6e\x62\x2c\x24\x01\x27\x2a\x6b\x42\x50\x7e\x58\ \x2f\x2c\x49\x32\x5d\x2b\x72\x46\x50\x7d\x55\x2d\x30\x4d\x32\x00\ \x02\x00\x13\x00\x00\x02\x53\x02\x8c\x00\x14\x00\x21\x00\x4f\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x05\x10\ \xb9\x00\x08\x00\x01\xf4\xb8\x00\x0f\x10\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x1a\xd0\xb8\x00\x08\x10\xb8\x00\x1c\xd0\x30\x31\x13\x34\ \x3e\x02\x33\x21\x15\x23\x15\x33\x15\x23\x15\x33\x15\x21\x22\x2e\ \x02\x37\x14\x1e\x02\x3b\x01\x11\x23\x22\x0e\x02\x13\x2a\x4a\x65\ \x3b\x01\x22\xa0\x79\x79\xaa\xfe\xcc\x3a\x62\x48\x28\x97\x0f\x1c\ \x28\x19\x10\x10\x19\x28\x1c\x0f\x01\x49\x54\x7a\x4f\x26\x7b\x84\ \x7b\x96\x7c\x28\x51\x7c\x54\x3b\x51\x31\x15\x01\x9e\x14\x2f\x4e\ \x00\x00\x00\x00\x02\x00\x26\xff\xf4\x02\x53\x03\x10\x00\x0b\x00\ \x2c\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\ \x24\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\ \x00\x1a\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\x24\x10\ \xb9\x00\x06\x00\x01\xf4\xba\x00\x12\x00\x1a\x00\x24\x11\x12\x39\ \xb8\x00\x12\x10\xb8\x00\x26\xd0\x30\x31\x25\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x1e\x01\x15\x14\x06\x07\x1e\x01\x15\ \x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x17\x3e\x01\ \x35\x34\x26\x27\x01\x2c\x33\x3c\x3c\x33\x33\x3c\x3c\x01\x3d\x0b\ \x12\x3e\x30\x24\x29\x26\x45\x61\x3a\x3a\x61\x45\x26\x26\x45\x61\ \x3a\x42\x38\x1b\x20\x0a\x05\x73\x73\x63\x62\x6e\x6e\x62\x63\x73\ \x02\x9d\x0e\x29\x19\x33\x3c\x0c\x2b\x7f\x52\x50\x7e\x58\x2f\x2f\ \x58\x7e\x50\x50\x7d\x55\x2d\x1f\x06\x1a\x1d\x0e\x17\x09\x00\xff\ \xff\x00\x26\xff\xf4\x02\x53\x03\x36\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\ \x36\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x26\xff\xf4\x02\x53\x03\x76\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\ \x47\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x26\xff\x03\x02\x53\x03\x10\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\x00\x02\x00\x26\xff\x21\x02\x32\x02\ \x98\x00\x26\x00\x32\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\ \x2f\x1b\xb9\x00\x13\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\ \x03\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x1d\xd0\xb8\x00\x09\x10\ \xb9\x00\x27\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x2d\x00\x01\xf4\ \x30\x31\x05\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x2e\x03\x35\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\ \x01\xae\x13\x3b\x1a\x30\x43\x28\x17\x3c\x59\x3b\x1c\x26\x45\x61\ \x3a\x3a\x61\x45\x26\x19\x2e\x40\x27\x26\x20\x1a\x11\x0a\x11\x08\ \x60\x33\x3c\x3c\x33\x33\x3c\x3c\xbc\x0f\x14\x31\x2d\x27\x3c\x14\ \x06\x3b\x5c\x75\x41\x50\x7d\x55\x2d\x2d\x56\x7d\x4f\x43\x69\x51\ \x38\x11\x11\x35\x17\x14\x12\x09\x05\xe5\x73\x63\x62\x6e\x6e\x62\ \x63\x73\x00\xff\xff\x00\x46\x00\x00\x02\x48\x03\x36\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xe2\x03\x00\x00\x00\xff\xff\x00\x46\x00\ \x00\x02\x48\x03\x36\x02\x26\x00\x15\x00\x00\x00\x06\x02\xf6\x03\ \x00\x00\x00\xff\xff\x00\x46\xff\x1b\x02\x48\x02\x8c\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xfe\x14\x00\x00\x00\xff\xff\x00\x46\xff\ \x03\x02\x48\x02\x8c\x02\x26\x00\x15\x00\x00\x00\x06\x02\xfc\x14\ \x00\x00\x00\xff\xff\x00\x46\xff\x03\x02\x48\x03\x2d\x02\x26\x00\ \x15\x00\x00\x00\x26\x02\xe8\x03\x00\x00\x06\x02\xfc\x14\x00\xff\ \xff\x00\x46\xff\x43\x02\x48\x02\x8c\x02\x26\x00\x15\x00\x00\x00\ \x06\x03\x04\x14\x00\x00\x00\xff\xff\x00\x32\xff\xf4\x02\x27\x03\ \x36\x02\x26\x00\x16\x00\x00\x00\x06\x02\xe2\x07\x00\x00\x00\xff\ \xff\x00\x32\xff\xf4\x02\x27\x03\x36\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xe4\x07\x00\x00\x00\xff\xff\x00\x32\xff\xf4\x02\x27\x03\ \x36\x02\x26\x00\x16\x00\x00\x00\x06\x02\xf6\x07\x00\x00\x00\xff\ \xff\x00\x32\xff\x23\x02\x27\x02\x98\x02\x26\x00\x16\x00\x00\x00\ \x06\x03\x00\x04\x00\x00\x00\xff\xff\x00\x32\xff\x1b\x02\x27\x02\ \x98\x02\x26\x00\x16\x00\x00\x00\x06\x02\xfe\x0a\x00\x00\x00\xff\ \xff\x00\x32\xff\xf4\x02\x27\x03\x57\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xec\x07\x00\x00\x00\xff\xff\x00\x32\xff\x03\x02\x27\x02\ \x98\x02\x26\x00\x16\x00\x00\x00\x06\x02\xfc\x0a\x00\x00\x00\x00\ \x01\x00\x40\xff\xf4\x02\x35\x02\x98\x00\x2a\x00\x68\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x29\x2f\x1b\xb9\x00\x29\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\ \x59\xbb\x00\x21\x00\x01\x00\x20\x00\x04\x2b\xba\x00\x09\x00\x21\ \x00\x20\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x25\x00\x01\xf4\xba\x00\x1d\x00\x25\x00\x13\ \x11\x12\x39\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x1e\x03\ \x15\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\ \x26\x2f\x01\x37\x2e\x01\x23\x22\x06\x15\x11\x23\x40\x1b\x3a\x5b\ \x40\x57\x71\x10\x48\x16\x2a\x21\x14\x15\x2b\x40\x2b\x38\x4c\x15\ \x4c\x11\x1d\x0b\x10\x15\x33\x33\x0a\x4b\x08\x25\x1d\x2d\x28\x97\ \x01\xba\x2e\x51\x3c\x23\x65\x52\x7a\x0c\x20\x2b\x39\x25\x28\x46\ \x33\x1d\x26\x1a\x59\x13\x0f\x28\x20\x1e\x33\x0f\x56\x7d\x17\x24\ \x3d\x3e\xfe\x5a\x00\x00\x00\xff\xff\x00\x1f\x00\x00\x02\x39\x03\ \x36\x02\x26\x00\x17\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\ \xff\x00\x1f\xff\x23\x02\x39\x02\x8c\x02\x26\x00\x17\x00\x00\x00\ \x06\x03\x00\x00\x00\x00\x00\xff\xff\x00\x1f\xff\x1b\x02\x39\x02\ \x8c\x02\x26\x00\x17\x00\x00\x00\x06\x02\xfe\x00\x00\x00\x00\xff\ \xff\x00\x1f\xff\x03\x02\x39\x02\x8c\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x1f\xff\x43\x02\x39\x02\ \x8c\x02\x26\x00\x17\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x36\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x47\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x48\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x2d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x7d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf2\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf4\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x36\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\xad\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x06\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \xce\x02\x26\x00\x18\x00\x00\x00\x06\x03\x08\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\xce\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x0a\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \xce\x02\x26\x00\x18\x00\x00\x00\x06\x03\x0c\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x03\x02\x18\x02\x8c\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x76\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\x00\ \x01\x00\x40\xff\x21\x02\x18\x02\x8c\x00\x28\x00\x52\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x0d\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\x3e\ \x59\xbb\x00\x16\x00\x01\x00\x1d\x00\x04\x2b\xb8\x00\x25\x10\xb9\ \x00\x05\x00\x01\xf4\xb8\x00\x25\x10\xb8\x00\x0e\xd0\x30\x31\x13\ \x33\x11\x14\x16\x33\x32\x36\x35\x11\x33\x11\x14\x06\x07\x0e\x03\ \x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\ \x02\x37\x2e\x01\x35\x40\x93\x2c\x2e\x2f\x2e\x8e\x3e\x3e\x1d\x24\ \x15\x08\x1a\x10\x0a\x12\x07\x22\x13\x3b\x1a\x30\x43\x0f\x15\x16\ \x06\x6a\x68\x02\x8c\xfe\x60\x3b\x3e\x3e\x3b\x01\xa0\xfe\x6f\x5e\ \x77\x1d\x0e\x1a\x19\x18\x0a\x14\x12\x09\x05\x4a\x0f\x14\x31\x2d\ \x17\x26\x1e\x16\x06\x07\x88\x76\x00\x00\x00\x00\x01\x00\x40\xff\ \xf4\x02\x94\x03\x24\x00\x22\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x10\x2f\x1b\xb9\x00\x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x19\ \x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x15\x00\x01\ \xf4\x30\x31\x01\x1e\x01\x15\x14\x0e\x02\x07\x11\x14\x06\x23\x22\ \x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x35\x11\x33\x3e\x03\x35\ \x34\x26\x27\x02\x77\x0b\x12\x13\x21\x2e\x1a\x73\x77\x78\x76\x93\ \x2c\x2f\x2f\x2d\x46\x0f\x1d\x18\x0e\x0a\x05\x03\x24\x0e\x29\x19\ \x1c\x2b\x1f\x13\x05\xfe\xa5\x80\x87\x87\x80\x01\x91\xfe\x60\x3b\ \x3e\x3e\x3b\x01\xa0\x01\x05\x0d\x17\x14\x0e\x17\x09\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x94\x03\x36\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x94\x03\ \x36\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x94\x03\x76\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x94\x03\ \x47\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x03\x02\x94\x03\x24\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x03\ \x36\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x03\x36\x02\x26\x00\x1a\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x03\ \x36\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x03\x48\x02\x26\x00\x1a\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x36\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x36\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x36\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x48\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x57\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xec\x00\x00\x00\x00\xff\ \xff\x00\x10\xff\x03\x02\x48\x02\x8c\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x76\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x47\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x38\x00\x00\x02\x23\x03\ \x36\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xe2\x0e\x00\x00\x00\xff\ \xff\x00\x38\x00\x00\x02\x23\x03\x36\x02\x26\x00\x1d\x00\x00\x00\ \x06\x02\xf6\x0e\x00\x00\x00\xff\xff\x00\x38\x00\x00\x02\x23\x03\ \x57\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xec\x0e\x00\x00\x00\xff\ \xff\x00\x38\xff\x03\x02\x23\x02\x8c\x02\x26\x00\x1d\x00\x00\x00\ \x06\x02\xfc\x0a\x00\x00\x00\x00\x02\x00\x02\x00\x00\x02\x32\x02\ \x8c\x00\x10\x00\x21\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\ \x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x0f\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x03\x10\xb8\x00\x1d\xd0\ \xb8\x00\x00\x10\xb8\x00\x1f\xd0\x30\x31\x13\x23\x35\x37\x11\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x37\x32\x3e\x02\x35\x34\x2e\ \x02\x2b\x01\x15\x33\x15\x23\x15\x47\x45\x45\xb2\x46\x74\x52\x2d\ \x2d\x50\x71\x43\xba\xa9\x26\x3f\x2d\x19\x19\x2d\x3f\x26\x15\x6b\ \x6b\x01\x2d\x42\x05\x01\x18\x26\x4f\x7a\x54\x54\x7c\x51\x28\x77\ \x16\x31\x50\x3b\x3a\x4f\x2f\x14\xa1\x47\xb6\x00\x02\x00\x49\x00\ \x00\x02\x36\x02\x8c\x00\x10\x00\x18\x00\x39\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xbb\x00\ \x11\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x16\x00\ \x04\x2b\x30\x31\x13\x33\x15\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\ \x01\x15\x23\x37\x32\x35\x34\x26\x2b\x01\x15\x49\x93\x5b\x35\x5d\ \x45\x28\x29\x46\x5c\x34\x5b\x93\xe5\x77\x3c\x3b\x52\x02\x8c\x63\ \x15\x31\x50\x3b\x3a\x53\x36\x1a\x7b\xf0\x68\x33\x29\xc4\x00\x00\ \x02\x00\x3a\xff\xf4\x02\x30\x02\x98\x00\x06\x00\x22\x00\x43\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\ \x3e\x59\xbb\x00\x1c\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x14\x10\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x1f\x00\x01\xf4\ \x30\x31\x13\x1e\x01\x33\x32\x36\x37\x01\x3e\x01\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x37\x21\x2e\x01\x23\x22\ \x06\x07\xd0\x05\x35\x2a\x27\x37\x09\xfe\xe1\x22\x5b\x3f\x37\x5b\ \x42\x24\x25\x42\x5d\x38\x38\x5c\x42\x24\x03\x01\x60\x06\x3b\x36\ \x23\x32\x14\x01\x07\x4b\x4b\x4c\x4b\x01\x47\x20\x29\x2d\x57\x7d\ \x50\x50\x7e\x57\x2e\x2d\x56\x7d\x4f\x16\x1a\x53\x55\x1d\x14\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xdf\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xe5\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe1\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe3\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xce\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe5\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xd8\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xed\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xad\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe7\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xda\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe9\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xf0\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xf1\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xf5\x08\x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x01\ \xfc\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xfc\x0a\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xf0\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xef\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x50\x02\ \xfc\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x0d\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x2d\x02\xfc\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x0f\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x32\x03\ \x21\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x11\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x03\x42\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x13\x08\x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x02\ \xe5\x02\x26\x00\x1e\x00\x00\x00\x26\x02\xe3\x08\x00\x00\x06\x02\ \xfc\x0a\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x03\x2a\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x15\x08\x00\x00\x00\xff\xff\x00\x3d\xff\ \xf4\x02\x17\x03\x2a\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x17\x08\ \x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x03\x67\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x19\x08\x00\x00\x00\xff\xff\x00\x3d\xff\ \xf4\x02\x17\x03\x42\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x1b\x08\ \x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x02\xda\x02\x26\x00\ \x1e\x00\x00\x00\x26\x02\xe9\x08\x00\x00\x06\x02\xfc\x0a\x00\x00\ \x02\x00\x3d\xff\x2e\x02\x2b\x01\xfc\x00\x31\x00\x3d\x00\x85\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\x00\x2d\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x05\x3e\x59\xba\x00\x05\x00\x0f\x00\x2d\x11\x12\x39\xb8\x00\ \x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x20\x10\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x13\x10\xb8\x00\x28\xd0\xb8\x00\ \x2d\x10\xb9\x00\x35\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x39\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x01\x23\x22\x06\x07\x27\ \x3e\x01\x33\x32\x16\x15\x11\x0e\x01\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x35\x0e\x03\x3d\x24\x4f\ \x7c\x58\x04\x33\x33\x24\x49\x2a\x34\x33\x75\x40\x68\x78\x31\x27\ \x1a\x10\x0a\x12\x07\x1f\x14\x3a\x17\x2d\x3d\x0e\x15\x18\x09\x0c\ \x04\x26\x5a\x30\x26\x3c\x2a\x17\x8d\x25\x20\x21\x3a\x1a\x37\x48\ \x2a\x11\x8a\x2a\x3f\x2c\x1b\x05\x22\x26\x19\x15\x60\x1d\x26\x6e\ \x72\xfe\xe4\x0e\x30\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\ \x25\x1e\x16\x06\x3a\x1d\x27\x17\x29\x36\x2b\x18\x17\x1b\x14\x52\ \x03\x0e\x15\x1c\x00\x00\x00\x00\x03\x00\x10\xff\xf4\x02\x51\x01\ \xfc\x00\x30\x00\x39\x00\x45\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xbb\x00\ \x31\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x03\x00\x0d\x00\x2c\x11\ \x12\x39\xb8\x00\x03\x2f\xb8\x00\x0d\x10\xb9\x00\x06\x00\x01\xf4\ \xba\x00\x10\x00\x26\x00\x0d\x11\x12\x39\xb8\x00\x26\x10\xb9\x00\ \x1f\x00\x01\xf4\xba\x00\x29\x00\x26\x00\x0d\x11\x12\x39\xb8\x00\ \x13\x10\xb9\x00\x36\x00\x01\xf4\xb8\x00\x2c\x10\xb9\x00\x3c\x00\ \x01\xf4\xb8\x00\x03\x10\xb9\x00\x43\x00\x01\xf4\x30\x31\x37\x34\ \x36\x37\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x17\x3e\ \x01\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x27\x0e\x01\x23\x22\x2e\x02\x25\x34\x2e\ \x02\x23\x22\x06\x0f\x01\x14\x33\x32\x36\x37\x2e\x01\x2f\x01\x0e\ \x01\x10\x6f\x72\x03\x19\x1d\x14\x39\x1a\x34\x2a\x50\x2b\x2c\x37\ \x11\x1a\x3a\x2c\x26\x3a\x27\x14\x05\x02\xe3\x08\x30\x23\x15\x25\ \x14\x32\x1d\x48\x20\x36\x47\x1a\x27\x43\x22\x22\x33\x23\x12\x01\ \xcc\x05\x0c\x14\x0f\x19\x25\x05\xd1\x2e\x0e\x21\x0e\x06\x06\x02\ \x01\x31\x2b\x8a\x4d\x53\x16\x23\x24\x12\x10\x60\x19\x1e\x28\x21\ \x25\x24\x26\x41\x57\x31\x14\x22\x0a\x33\x33\x0c\x0e\x5e\x17\x18\ \x2a\x23\x29\x24\x18\x28\x37\xbc\x15\x24\x1c\x10\x31\x34\x91\x30\ \x11\x11\x10\x27\x13\x15\x0b\x29\x00\x00\x00\x00\x02\x00\x06\xff\ \xf4\x02\x29\x02\xbd\x00\x0a\x00\x29\x00\xa5\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0f\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\ \xbb\x00\x1f\x00\x01\x00\x22\x00\x04\x2b\xba\x00\x1b\x00\x18\x00\ \x0e\x11\x12\x39\xb8\x00\x1b\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\x08\x00\ \x01\xf4\xba\x00\x0b\x00\x0e\x00\x18\x11\x12\x39\xb8\x00\x0b\x10\ \xb9\x00\x0a\x00\x01\xf4\xb8\x00\x22\x10\xb8\x00\x21\xd0\xb8\x00\ \x22\x10\xb8\x00\x26\xd0\xb8\x00\x1f\x10\xb8\x00\x27\xd0\x30\x31\ \x37\x1e\x01\x33\x32\x36\x35\x34\x23\x22\x07\x27\x3e\x01\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x23\x07\x23\x11\x23\x35\ \x37\x35\x33\x15\x33\x15\x23\x15\xdb\x15\x2d\x14\x29\x38\x5b\x2f\ \x2d\x04\x1d\x49\x24\x2e\x4b\x33\x1c\x24\x3c\x4d\x2a\x23\x45\x1f\ \x04\x0c\x73\x42\x42\x93\xb6\xb6\x8d\x12\x0f\x40\x48\x7c\x2e\x6d\ \x1b\x1e\x22\x3f\x59\x37\x3e\x60\x42\x23\x22\x20\x36\x02\x2c\x41\ \x05\x4b\x4a\x47\x2f\x00\x00\xff\xff\x00\x43\xff\x23\x02\x24\x01\ \xfc\x02\x26\x00\x20\x00\x00\x00\x06\x02\xff\x29\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x24\x02\xe5\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xe1\x29\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x24\x02\ \xe5\x02\x26\x00\x20\x00\x00\x00\x06\x02\xe3\x29\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x24\x02\xe5\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xf5\x29\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x24\x02\ \xee\x02\x26\x00\x20\x00\x00\x00\x06\x02\xeb\x29\x00\x00\x00\xff\ \xff\x00\x1a\xff\xf4\x02\x78\x03\x02\x02\x26\x00\x21\xeb\x00\x00\ \x07\x03\x1f\x01\x1d\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x10\x02\ \xbd\x02\x26\x00\x21\x00\x00\x00\x06\x02\xfc\x09\x00\x00\x00\xff\ \xff\x00\x2f\xff\x43\x02\x10\x02\xbd\x02\x26\x00\x21\x00\x00\x00\ \x06\x03\x04\x09\x00\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x52\x02\ \xbd\x00\x0b\x00\x2a\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x1e\ \x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x27\x2f\x1b\xb9\x00\x27\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\x0d\x00\ \x01\x00\x29\x00\x04\x2b\xba\x00\x21\x00\x1e\x00\x14\x11\x12\x39\ \xb8\x00\x21\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x1e\x10\xb9\x00\ \x02\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x08\x00\x01\xf4\xba\x00\ \x10\x00\x14\x00\x1e\x11\x12\x39\xb8\x00\x10\x10\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xd0\xb8\x00\x0d\x10\xb8\x00\ \x24\xd0\xb8\x00\x29\x10\xb8\x00\x25\xd0\x30\x31\x01\x26\x23\x22\ \x06\x15\x14\x16\x33\x32\x36\x37\x13\x07\x11\x23\x27\x23\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x27\x35\x23\x35\ \x33\x35\x33\x15\x33\x01\x7d\x27\x2a\x2a\x3c\x32\x2e\x19\x2a\x14\ \xd5\x42\x78\x0b\x03\x1c\x48\x26\x2f\x4d\x37\x1e\x24\x3b\x4c\x29\ \x2b\x3a\x1a\x05\x9b\x9b\x93\x42\x01\x4f\x21\x3e\x42\x45\x3f\x15\ \x19\x01\x98\x05\xfd\xd3\x33\x1b\x24\x22\x41\x5c\x3b\x3a\x5d\x41\ \x22\x1d\x18\x4d\x2c\x47\x4a\x4a\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xe5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xdf\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xe1\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xe5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe3\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xf5\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xd8\x02\x26\x00\x22\x00\x00\x00\x06\x02\xed\x0c\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xad\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xe7\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xda\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe9\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xee\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xeb\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \x03\x02\x22\x01\xfc\x02\x26\x00\x22\x00\x00\x00\x06\x02\xfc\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xf0\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xef\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xce\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe5\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x55\x02\xfc\x02\x26\x00\ \x22\x00\x00\x00\x06\x03\x0d\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x32\x02\xfc\x02\x26\x00\x22\x00\x00\x00\x06\x03\x0f\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x37\x03\x21\x02\x26\x00\ \x22\x00\x00\x00\x06\x03\x11\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x03\x42\x02\x26\x00\x22\x00\x00\x00\x06\x03\x13\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\x03\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x26\x02\xe3\x0d\x00\x00\x06\x02\xfc\x0d\x00\x00\ \x02\x00\x37\xff\x2e\x02\x22\x01\xfc\x00\x31\x00\x38\x00\x5e\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\ \x05\x3e\x59\xbb\x00\x38\x00\x01\x00\x2a\x00\x04\x2b\xb8\x00\x0f\ \x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x2e\x00\x01\ \xf4\xb8\x00\x22\x10\xb9\x00\x35\x00\x01\xf4\x30\x31\x25\x0e\x03\ \x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x36\ \x37\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\ \x14\x06\x07\x21\x1e\x01\x33\x32\x36\x37\x27\x34\x26\x23\x22\x06\ \x07\x02\x0e\x21\x2b\x18\x09\x19\x12\x0a\x11\x08\x1e\x13\x3a\x18\ \x2d\x3b\x25\x14\x11\x13\x0b\x3a\x64\x4a\x2b\x2b\x48\x5d\x32\x39\ \x58\x3a\x1e\x04\x02\xfe\xb2\x08\x51\x37\x22\x3d\x21\x41\x2e\x33\ \x28\x3e\x0a\x2e\x17\x24\x1e\x1b\x0f\x14\x12\x07\x05\x42\x0f\x12\ \x2e\x2d\x25\x3a\x11\x04\x01\x23\x43\x60\x3e\x3d\x60\x43\x24\x24\ \x40\x57\x33\x14\x24\x09\x38\x31\x11\x11\xa8\x2a\x34\x2e\x30\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xe5\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xe3\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xda\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe9\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xee\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xeb\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xdc\x02\x26\x00\x24\x00\x00\x00\x06\x03\x20\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xe5\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xf5\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xad\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe7\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xce\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xe5\x04\x00\x00\x00\xff\xff\xff\xee\x00\x00\x02\x1c\x03\ \x66\x02\x26\x00\x25\x00\x00\x00\x07\x02\xe4\xff\x6a\x00\x30\xff\ \xff\x00\x48\xff\x03\x02\x1c\x02\xbd\x02\x26\x00\x25\x00\x00\x00\ \x06\x02\xfc\x07\x00\x00\x00\xff\xff\x00\x48\xff\x2e\x02\x1c\x02\ \xbd\x02\x26\x00\x25\x00\x00\x00\x06\x03\x03\x07\x00\x00\x00\x00\ \x01\x00\x06\x00\x00\x02\x1c\x02\xbd\x00\x1e\x00\x87\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0f\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\ \x3e\x59\xbb\x00\x14\x00\x01\x00\x17\x00\x04\x2b\xba\x00\x00\x00\ \x05\x00\x13\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x0e\x00\x01\xf4\ \xb8\x00\x00\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\ \x16\xd0\xb8\x00\x17\x10\xb8\x00\x1b\xd0\xb8\x00\x14\x10\xb8\x00\ \x1c\xd0\x30\x31\x13\x3e\x03\x33\x32\x16\x15\x11\x23\x11\x34\x26\ \x23\x22\x06\x07\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\ \x15\xd3\x0f\x23\x29\x31\x1c\x54\x4d\x93\x20\x29\x1e\x2d\x1a\x93\ \x42\x42\x93\xb6\xb6\x01\x9e\x0e\x1b\x15\x0c\x6c\x5e\xfe\xe2\x01\ \x0b\x32\x2e\x1a\x1a\xfe\xc9\x02\x2c\x41\x05\x4b\x4a\x47\x2f\xff\ \xff\x00\x4f\x00\x00\x01\xab\x02\xe5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xdf\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xf6\x02\ \xe5\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe1\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xfb\x02\xe5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe3\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x02\x04\x02\ \xce\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe5\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x02\x15\x02\xd8\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xed\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xe3\x02\ \xad\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe7\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xec\x02\xda\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe9\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xfb\x02\ \xe5\x02\x26\x01\x32\x00\x00\x00\x06\x02\xf5\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xc1\x02\xf0\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xef\x2d\x00\x00\x00\xff\xff\x00\x4f\xff\x03\x01\xbb\x02\ \xee\x02\x26\x00\x26\x00\x00\x00\x06\x02\xfc\x2d\x00\x00\x00\x00\ \x02\x00\x4f\xff\x2e\x01\xce\x02\xee\x00\x1a\x00\x26\x00\x67\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x05\x3e\x59\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x02\x10\xb8\x00\x1b\xdc\ \xb8\x00\x21\xdc\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x16\xc7\x01\ \x5a\x28\x1f\x19\x11\x0a\x11\x08\x1f\x14\x3a\x17\x2d\x3d\x0d\x14\ \x17\x09\x2a\x43\x2b\x37\x37\x2b\x2b\x37\x37\x01\x7d\x73\xfe\x10\ \x0f\x2f\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\x16\ \x08\x02\x39\x30\x29\x29\x33\x33\x29\x29\x30\x00\x01\x00\x4f\xff\ \x2e\x01\xce\x01\xf0\x00\x1a\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xbb\x00\x0a\ \x00\x01\x00\x11\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x01\x16\xc7\ \x01\x5a\x28\x1f\x19\x11\x0a\x11\x08\x1f\x14\x3a\x17\x2d\x3d\x0d\ \x14\x17\x09\x2a\x01\x7d\x73\xfe\x10\x0f\x2f\x17\x14\x12\x07\x05\ \x42\x0f\x12\x2e\x2d\x16\x25\x1e\x16\x08\x00\x00\x01\x00\x4f\x00\ \x00\x01\xa9\x01\xf0\x00\x05\x00\x2f\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb8\x00\x00\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x23\x4f\x01\ \x5a\x93\xc7\x01\xf0\xfe\x10\x01\x7d\x00\x00\xff\xff\x00\x2a\xff\ \x3c\x01\xfb\x02\xe5\x02\x26\x01\x9d\x00\x00\x00\x06\x02\xe3\x2d\ \x00\x00\x00\xff\xff\x00\x4c\xff\x1b\x02\x49\x02\xbd\x02\x26\x00\ \x28\x00\x00\x00\x06\x02\xfe\x18\x00\x00\x00\x00\x01\x00\x4c\x00\ \x00\x02\x49\x01\xf0\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xba\x00\ \x02\x00\x0b\x00\x00\x11\x12\x39\xba\x00\x09\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x13\x33\x15\x3f\x01\x33\x07\x13\x23\x27\ \x07\x15\x23\x4c\x93\x03\xb7\xa1\xbc\xcb\x9f\x81\x4a\x93\x01\xf0\ \xc5\x01\xc4\xcc\xfe\xdc\xc3\x48\x7b\x00\x00\xff\xff\x00\x3e\xff\ \xf4\x02\x20\x03\x6d\x02\x26\x00\x29\x00\x00\x00\x06\x02\xe2\xde\ \x37\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x20\x03\x02\x02\x26\x00\ \x29\x00\x00\x00\x07\x03\x1f\x00\x9c\x00\x00\xff\xff\x00\x0d\xff\ \xf4\x02\x39\x02\xbd\x02\x26\x00\x29\xcf\x00\x00\x07\x02\xeb\x00\ \xab\xfe\xce\xff\xff\x00\x3e\xff\x1b\x02\x20\x02\xbd\x02\x26\x00\ \x29\x00\x00\x00\x06\x02\xfe\x3e\x00\x00\x00\xff\xff\x00\x3e\xff\ \x03\x02\x20\x02\xbd\x02\x26\x00\x29\x00\x00\x00\x06\x02\xfc\x3e\ \x00\x00\x00\xff\xff\x00\x3e\xff\x03\x02\x20\x03\x81\x02\x26\x00\ \x29\x00\x00\x00\x27\x02\xe7\xff\xe4\x00\xd4\x00\x06\x02\xfc\x3e\ \x00\x00\x00\xff\xff\x00\x3e\xff\x43\x02\x20\x02\xbd\x02\x26\x00\ \x29\x00\x00\x00\x06\x03\x04\x3e\x00\x00\x00\x00\x01\x00\x3e\xff\ \xf4\x02\x20\x02\xbd\x00\x1d\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xba\x00\x09\x00\ \x05\x00\x0f\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x0c\xd0\xb8\x00\ \x0f\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x14\xd0\ \xb8\x00\x11\xd0\xb8\x00\x05\x10\xb9\x00\x1a\x00\x01\xf4\x30\x31\ \x25\x0e\x03\x23\x22\x26\x3d\x01\x07\x35\x37\x35\x23\x35\x21\x15\ \x37\x15\x07\x15\x14\x1e\x02\x33\x32\x36\x37\x02\x20\x14\x22\x22\ \x26\x17\x5e\x5f\x71\x71\x90\x01\x23\x94\x94\x0d\x17\x1d\x0f\x11\ \x26\x17\x0f\x06\x0a\x07\x04\x6f\x5f\x52\x3f\x75\x40\xbf\x74\xea\ \x50\x75\x51\xa1\x17\x1f\x13\x08\x07\x09\x00\xff\xff\x00\x24\xff\ \x03\x02\x3d\x01\xfc\x02\x26\x00\x2a\x00\x00\x00\x06\x02\xfc\x03\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xe5\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xe1\x0f\x00\x00\x00\xff\xff\x00\x48\x00\ \x00\x02\x1c\x02\xe5\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xf5\x0f\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xce\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xe5\x0f\x00\x00\x00\xff\xff\x00\x48\xff\ \x1b\x02\x1c\x01\xfc\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xfe\x06\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xee\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xeb\x0f\x00\x00\x00\xff\xff\x00\x48\xff\ \x03\x02\x1c\x01\xfc\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xfc\x06\ \x00\x00\x00\xff\xff\x00\x48\xff\x43\x02\x1c\x01\xfc\x02\x26\x00\ \x2b\x00\x00\x00\x06\x03\x04\x06\x00\x00\x00\x00\x02\xff\xd2\x00\ \x00\x02\x84\x02\xb9\x00\x11\x00\x26\x00\x6d\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\ \xba\x00\x0b\x00\x05\x00\x03\x2b\xb8\x00\x15\x10\xb9\x00\x1e\x00\ \x01\xf4\xba\x00\x26\x00\x15\x00\x23\x11\x12\x39\xb8\x00\x26\x10\ \xb9\x00\x21\x00\x01\xf4\x30\x31\x03\x36\x37\x0e\x01\x23\x22\x26\ \x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\x25\x3e\x01\x33\x32\x16\ \x15\x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\x11\x33\x17\x2e\ \x69\x07\x05\x0a\x05\x29\x32\x35\x2a\x39\x3d\x57\x58\x01\x66\x1d\ \x47\x32\x4a\x45\x93\x19\x1e\x18\x21\x16\x93\x78\x0b\x01\x70\x2f\ \x5b\x01\x01\x32\x2a\x2e\x37\x55\x4b\x52\x7d\x28\x8e\x1f\x2d\x6b\ \x5d\xfe\xcc\x01\x21\x31\x2d\x1a\x18\xfe\xb3\x01\xf0\x40\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xe5\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xe3\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xce\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe5\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xd8\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xad\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe7\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xda\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xe9\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xd4\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xf3\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xf5\x00\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x29\x01\ \xfc\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xf0\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x48\x02\ \xfc\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x0d\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xfc\x02\x26\x00\x2c\x00\x00\x00\ \x06\x03\x0f\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x2a\x03\ \x21\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x11\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x03\x42\x02\x26\x00\x2c\x00\x00\x00\ \x06\x03\x13\x00\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x29\x02\ \xe5\x02\x26\x00\x2c\x00\x00\x00\x26\x02\xe3\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x03\x00\x2f\xff\xe7\x02\x29\x02\x0b\x00\x08\x00\ \x10\x00\x2a\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\ \xb9\x00\x26\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\ \x1b\xb9\x00\x19\x00\x03\x3e\x59\xba\x00\x10\x00\x19\x00\x26\x11\ \x12\x39\xb8\x00\x10\x10\xb8\x00\x00\xd0\xb8\x00\x19\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x08\x00\x26\x00\x19\x11\x12\x39\xb8\x00\ \x08\x10\xb8\x00\x09\xd0\xb8\x00\x26\x10\xb9\x00\x0b\x00\x01\xf4\ \xb8\x00\x08\x10\xb8\x00\x11\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\ \xb8\x00\x10\x10\xb8\x00\x1e\xd0\xb8\x00\x09\x10\xb8\x00\x28\xd0\ \x30\x31\x37\x16\x33\x32\x36\x35\x34\x26\x2f\x01\x26\x23\x22\x06\ \x15\x14\x17\x25\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x07\x27\x37\ \x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x37\x17\xf0\x1a\x22\x33\x33\ \x03\x04\x24\x19\x22\x33\x33\x07\x01\x1e\x1d\x21\x2a\x47\x5b\x31\ \x4c\x3f\x2c\x37\x2e\x1c\x21\x2a\x47\x5b\x31\x4c\x3e\x2d\x37\x7b\ \x15\x51\x41\x11\x1e\x0e\x41\x14\x51\x41\x23\x19\xec\x21\x58\x37\ \x3e\x61\x42\x23\x28\x35\x2a\x38\x20\x58\x37\x3e\x61\x42\x23\x27\ \x36\x2b\x00\x00\x03\x00\x0c\xff\xf4\x02\x50\x01\xfc\x00\x0b\x00\ \x34\x00\x3d\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2a\ \x2f\x1b\xb9\x00\x2a\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\xbb\x00\x35\x00\x01\x00\ \x1f\x00\x04\x2b\xb8\x00\x30\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x09\x00\x01\xf4\xba\x00\x14\x00\x2a\x00\x11\x11\ \x12\x39\xb8\x00\x2a\x10\xb9\x00\x23\x00\x01\xf4\xba\x00\x2d\x00\ \x2a\x00\x11\x11\x12\x39\xb8\x00\x17\x10\xb9\x00\x3a\x00\x01\xf4\ \x30\x31\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x34\ \x3e\x02\x33\x32\x16\x17\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\ \x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x27\x0e\x01\ \x23\x22\x2e\x02\x25\x34\x2e\x02\x23\x22\x06\x07\x90\x1e\x20\x1b\ \x1d\x1d\x1b\x20\x1e\x84\x1d\x33\x44\x26\x2b\x3c\x12\x14\x3e\x25\ \x25\x3a\x27\x14\x03\x03\xde\x08\x2f\x23\x14\x22\x14\x32\x1d\x46\ \x1f\x27\x43\x16\x16\x3a\x2d\x26\x43\x32\x1c\x01\xd0\x05\x0b\x13\ \x0e\x1a\x22\x05\xf8\x41\x4d\x4d\x41\x41\x4d\x4d\x41\x3e\x61\x42\ \x23\x2f\x27\x2a\x2c\x26\x41\x57\x31\x14\x1b\x11\x33\x33\x0c\x0e\ \x5e\x17\x18\x28\x25\x26\x27\x23\x42\x61\x6d\x15\x24\x1c\x10\x31\ \x34\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x49\x02\x7e\x00\x0b\x00\ \x2d\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\ \x24\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\ \x00\x1a\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\x24\x10\ \xb9\x00\x06\x00\x01\xf4\xba\x00\x12\x00\x1a\x00\x24\x11\x12\x39\ \xb8\x00\x12\x10\xb8\x00\x27\xd0\x30\x31\x25\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x1e\x01\x15\x14\x06\x07\x1e\x01\x15\ \x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x3e\ \x01\x35\x34\x26\x27\x01\x2c\x33\x33\x33\x33\x33\x33\x33\x01\x32\ \x0b\x13\x3c\x2e\x22\x28\x2a\x47\x5b\x31\x31\x5b\x47\x2a\x2a\x47\ \x5b\x31\x1b\x35\x19\x1e\x24\x0a\x06\x6b\x4c\x41\x41\x4c\x4c\x41\ \x41\x4c\x02\x13\x0e\x29\x19\x33\x3a\x0c\x21\x5f\x3d\x3e\x61\x42\ \x23\x23\x42\x61\x3e\x3e\x61\x42\x23\x0b\x0b\x06\x19\x1f\x0e\x18\ \x08\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x49\x02\xe5\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x49\x02\xe5\x02\x26\x01\x59\x00\x00\x00\x06\x02\xdf\x00\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x49\x02\xf0\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x49\x02\xce\x02\x26\x01\x59\x00\x00\x00\x06\x02\xe5\x00\ \x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x49\x02\x7e\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\x02\x00\x2f\xff\ \x2e\x02\x29\x01\xfc\x00\x26\x00\x32\x00\x5c\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x05\x3e\x59\xb8\ \x00\x03\x10\xb8\x00\x17\xd0\xb8\x00\x24\x10\xb9\x00\x1d\x00\x01\ \xf4\xb8\x00\x03\x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x0d\x10\xb9\ \x00\x30\x00\x01\xf4\x30\x31\x17\x34\x36\x37\x2e\x03\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\x01\x15\x14\x16\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x26\x03\x14\x16\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\xd6\x25\x12\x2d\x51\x3c\x24\x2a\x46\x5b\x32\ \x31\x5c\x46\x2a\x19\x2e\x40\x27\x24\x1e\x1a\x10\x0a\x12\x07\x1f\ \x14\x3a\x17\x2d\x3d\x10\x33\x33\x33\x33\x33\x33\x33\x33\x77\x26\ \x38\x0f\x05\x28\x42\x5a\x39\x3e\x61\x42\x23\x23\x42\x61\x3e\x32\ \x4c\x3c\x2d\x11\x11\x2e\x16\x14\x12\x07\x05\x42\x0f\x12\x2e\x01\ \x9c\x41\x4c\x4c\x41\x41\x4c\x4c\x00\x00\x00\xff\xff\x00\x74\x00\ \x00\x02\x24\x02\xe5\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xe1\x27\ \x00\x00\x00\xff\xff\x00\x65\xff\x1b\x02\x24\x01\xfc\x02\x26\x00\ \x2f\x00\x00\x00\x06\x02\xfe\xa0\x00\x00\x00\xff\xff\x00\x74\x00\ \x00\x02\x24\x02\xe5\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xf5\x27\ \x00\x00\x00\xff\xff\x00\x6a\xff\x03\x02\x24\x01\xfc\x02\x26\x00\ \x2f\x00\x00\x00\x06\x02\xfc\xa0\x00\x00\x00\xff\xff\x00\x6a\xff\ \x03\x02\x24\x02\xad\x02\x26\x00\x2f\x00\x00\x00\x26\x02\xe7\x27\ \x00\x00\x06\x02\xfc\xa0\x00\xff\xff\x00\x42\xff\x43\x02\x24\x01\ \xfc\x02\x26\x00\x2f\x00\x00\x00\x06\x03\x04\xa0\x00\x00\x00\xff\ \xff\x00\x35\xff\xf4\x02\x1c\x02\xe5\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xe1\x0c\x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x1c\x02\ \xe5\x02\x26\x00\x30\x00\x00\x00\x06\x02\xe3\x0c\x00\x00\x00\xff\ \xff\x00\x35\xff\xf4\x02\x1c\x02\xe5\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xf5\x0c\x00\x00\x00\xff\xff\x00\x35\xff\x23\x02\x1c\x01\ \xfc\x02\x26\x00\x30\x00\x00\x00\x06\x02\xff\x0b\x00\x00\x00\xff\ \xff\x00\x35\xff\x1b\x02\x1c\x01\xfc\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xfe\x07\x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x1c\x02\ \xee\x02\x26\x00\x30\x00\x00\x00\x06\x02\xeb\x0c\x00\x00\x00\xff\ \xff\x00\x35\xff\x03\x02\x1c\x01\xfc\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xfc\x07\x00\x00\x00\x00\x01\x00\x3d\xff\xf4\x02\x3b\x02\ \xc9\x00\x39\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x39\x2f\ \x1b\xb9\x00\x39\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xb9\x00\x22\x00\x01\xf4\xba\ \x00\x0f\x00\x05\x00\x22\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x34\ \x00\x01\xf4\xba\x00\x25\x00\x1b\x00\x34\x11\x12\x39\x30\x31\x13\ \x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x15\x14\x1e\x04\x15\ \x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\ \x04\x35\x34\x3e\x02\x35\x34\x26\x23\x22\x06\x15\x11\x23\x3d\x1c\ \x38\x56\x39\x30\x48\x2e\x17\x13\x17\x13\x17\x22\x29\x22\x17\x16\ \x2c\x41\x2b\x2a\x3f\x22\x31\x17\x2a\x14\x14\x17\x17\x22\x29\x22\ \x17\x13\x16\x13\x1c\x19\x29\x26\x93\x01\xef\x2e\x50\x3b\x21\x1d\ \x2f\x3d\x20\x24\x31\x27\x21\x13\x11\x18\x18\x1b\x25\x33\x24\x22\ \x3c\x2c\x1a\x13\x12\x64\x0f\x0d\x17\x14\x13\x1c\x18\x1a\x22\x2e\ \x21\x1e\x2c\x28\x2b\x1d\x1a\x23\x3c\x33\xfe\x1a\x00\x00\x00\xff\ \xff\x00\x31\xff\xf4\x02\x26\x03\x02\x02\x26\x00\x31\x00\x00\x00\ \x07\x03\x1f\x00\x84\x00\x00\xff\xff\x00\x31\xff\x23\x02\x26\x02\ \x74\x02\x26\x00\x31\x00\x00\x00\x06\x02\xff\x49\x00\x00\x00\xff\ \xff\x00\x31\xff\x1b\x02\x26\x02\x74\x02\x26\x00\x31\x00\x00\x00\ \x06\x02\xfe\x44\x00\x00\x00\xff\xff\x00\x31\xff\x03\x02\x26\x02\ \x74\x02\x26\x00\x31\x00\x00\x00\x06\x02\xfc\x44\x00\x00\x00\xff\ \xff\x00\x31\xff\x43\x02\x26\x02\x74\x02\x26\x00\x31\x00\x00\x00\ \x06\x03\x04\x44\x00\x00\x00\xff\xff\x00\x31\xff\xf4\x02\x26\x03\ \x64\x02\x26\x00\x31\x00\x00\x00\x07\x02\xed\xff\xde\x00\x8c\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xe5\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xdf\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xe5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe1\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xe5\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xe3\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xce\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe5\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xd8\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xed\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xad\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe7\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xda\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xe9\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xf0\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf1\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x10\x02\xd4\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xf3\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xe5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf5\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x03\x39\x02\x26\x00\x32\x00\x00\x00\ \x06\x03\x05\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x03\ \x50\x02\x26\x00\x32\x00\x00\x00\x06\x03\x07\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x03\x50\x02\x26\x00\x32\x00\x00\x00\ \x06\x03\x09\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x03\ \x50\x02\x26\x00\x32\x00\x00\x00\x06\x03\x0b\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\x03\x02\x0d\x01\xf0\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xfc\x13\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xf0\x02\x26\x00\x32\x00\x00\x00\x06\x02\xef\xfd\x00\x00\x00\x00\ \x01\x00\x3e\xff\x2e\x02\x21\x01\xf0\x00\x28\x00\x88\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xb8\x00\x0d\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\ \x10\xb8\x00\x15\xd0\xba\x00\x17\x00\x1e\x00\x1a\x11\x12\x39\xb8\ \x00\x1a\x10\xb9\x00\x23\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x26\ \x00\x01\xf4\x30\x31\x21\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\ \x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x02\x0d\x32\ \x26\x1a\x10\x0a\x12\x07\x1f\x14\x3a\x17\x2d\x3d\x0e\x15\x17\x0a\ \x0c\x04\x21\x50\x36\x55\x4c\x93\x1e\x2a\x1c\x2b\x1a\x93\x0f\x2f\ \x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\x15\x07\x49\ \x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\x18\x21\x01\x46\x00\x00\ \x01\x00\x3e\xff\xf4\x02\x6e\x02\x88\x00\x23\x00\x61\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x09\x00\x0d\x00\x1a\x11\x12\x39\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x09\x10\xb9\x00\x19\x00\x01\xf4\x30\x31\x01\x1e\ \x01\x15\x14\x06\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x11\ \x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x3e\x03\x35\x34\x26\x27\ \x02\x51\x0b\x12\x38\x29\x78\x0b\x04\x21\x50\x36\x55\x4c\x93\x1e\ \x2a\x1c\x2b\x1a\x31\x0e\x1d\x17\x0f\x0a\x05\x02\x88\x0e\x29\x19\ \x31\x39\x0c\xfe\x3e\x47\x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\ \x18\x21\x01\x46\x01\x05\x0d\x17\x14\x0e\x18\x08\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x6e\x02\xe5\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xe1\xfb\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x6e\x02\ \xe5\x02\x26\x01\x85\x00\x00\x00\x06\x02\xdf\xfb\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x6e\x02\xf0\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xef\xfb\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x6e\x02\ \xce\x02\x26\x01\x85\x00\x00\x00\x06\x02\xe5\xfb\x00\x00\x00\xff\ \xff\x00\x3e\xff\x03\x02\x6e\x02\x88\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xfc\x08\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x02\ \xe5\x02\x26\x00\x34\x00\x00\x00\x06\x02\xdf\x01\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x02\xe5\x02\x26\x00\x34\x00\x00\x00\ \x06\x02\xe1\x01\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x02\ \xe5\x02\x26\x00\x34\x00\x00\x00\x06\x02\xe3\x01\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x02\xd8\x02\x26\x00\x34\x00\x00\x00\ \x06\x02\xed\x01\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xe5\x02\x26\x00\x36\x00\x00\x00\x06\x02\xdf\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xe5\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xe1\x07\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xe5\x02\x26\x00\x36\x00\x00\x00\x06\x02\xe3\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xd8\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xed\x07\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xee\x02\x26\x00\x36\x00\x00\x00\x06\x02\xeb\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x0b\x02\x48\x01\xf0\x02\x26\x00\x36\x00\x00\x00\ \x07\x02\xfc\x00\xba\x00\x08\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xf0\x02\x26\x00\x36\x00\x00\x00\x06\x02\xef\x06\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xce\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xe5\x07\x00\x00\x00\xff\xff\x00\x46\x00\x00\x02\x1d\x02\ \xe5\x02\x26\x00\x37\x00\x00\x00\x06\x02\xe1\x17\x00\x00\x00\xff\ \xff\x00\x46\x00\x00\x02\x1d\x02\xe5\x02\x26\x00\x37\x00\x00\x00\ \x06\x02\xf5\x17\x00\x00\x00\xff\xff\x00\x46\x00\x00\x02\x1d\x02\ \xee\x02\x26\x00\x37\x00\x00\x00\x06\x02\xeb\x17\x00\x00\x00\xff\ \xff\x00\x46\xff\x03\x02\x1d\x01\xf0\x02\x26\x00\x37\x00\x00\x00\ \x06\x02\xfc\x12\x00\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x26\x02\ \xe4\x00\x10\x00\x34\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\x00\x2f\ \x2f\x1b\xb9\x00\x2f\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\ \x09\x00\x04\x2b\xb8\x00\x19\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\ \x26\x00\x2f\x00\x19\x11\x12\x39\xb8\x00\x26\x10\xb9\x00\x06\x00\ \x01\xf4\xba\x00\x11\x00\x2f\x00\x19\x11\x12\x39\xb8\x00\x11\x10\ \xb8\x00\x29\xd0\xb8\x00\x11\x10\xb8\x00\x32\xd0\xb8\x00\x2c\xd0\ \x30\x31\x25\x32\x36\x35\x3c\x01\x27\x2e\x01\x23\x22\x06\x15\x14\ \x1e\x02\x13\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x2e\x01\x27\x07\x27\x37\x26\x27\x37\x1e\x01\ \x17\x37\x17\x01\x2c\x34\x3d\x01\x1a\x38\x20\x36\x3f\x13\x20\x2c\ \x83\x40\x4f\x23\x41\x5f\x3c\x33\x5a\x43\x28\x24\x3e\x4f\x2c\x24\ \x42\x18\x0e\x31\x23\x95\x26\x78\x2b\x33\x40\x26\x49\x22\x88\x26\ \x6b\x4c\x4b\x09\x11\x08\x1d\x19\x3a\x3c\x1e\x2d\x1e\x10\x01\xf3\ \x3c\xa6\x72\x3c\x66\x4a\x2a\x22\x3e\x59\x37\x36\x54\x3a\x1f\x1a\ \x1d\x2d\x49\x20\x4b\x41\x3c\x1c\x17\x59\x11\x29\x18\x45\x41\x00\ \x02\x00\x48\xff\x48\x02\x29\x02\xbd\x00\x16\x00\x24\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\ \x00\x03\x3e\x59\xba\x00\x05\x00\x08\x00\x12\x11\x12\x39\xba\x00\ \x15\x00\x12\x00\x08\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x08\x10\ \xb9\x00\x22\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x24\x00\x01\xf4\ \x30\x31\x17\x23\x11\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x26\x27\x17\x35\x1e\x01\x33\x32\x3e\x02\x35\x34\ \x26\x23\x22\x07\xdb\x93\x93\x04\x1e\x47\x26\x2e\x4a\x33\x1c\x25\ \x3c\x4d\x28\x25\x3c\x1a\x03\x14\x2e\x13\x14\x23\x1b\x10\x2c\x30\ \x2e\x2d\xb8\x03\x75\xae\x4c\x1b\x1e\x24\x42\x5d\x39\x40\x63\x45\ \x24\x1f\x17\x51\xb4\x12\x0f\x11\x24\x37\x26\x43\x43\x2e\x00\x00\ \x01\x00\x2a\xff\x3c\x01\xa9\x01\xf0\x00\x13\x00\x35\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\ \xb9\x00\x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x13\x21\x11\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\ \x32\x36\x35\x11\x23\x4f\x01\x5a\x15\x35\x59\x43\x2e\x4b\x20\x2b\ \x1e\x31\x16\x35\x27\xc7\x01\xf0\xfe\x2e\x2d\x52\x3e\x25\x13\x0f\ \x69\x0e\x0a\x33\x36\x01\x65\x00\x02\x00\x48\xff\xf4\x02\x22\x01\ \xfc\x00\x1d\x00\x29\x00\x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xba\x00\x05\x00\x19\ \x00\x0f\x11\x12\x39\xb8\x00\x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\ \x00\x01\xf4\xba\x00\x15\x00\x19\x00\x0f\x11\x12\x39\xb8\x00\x19\ \x10\xb9\x00\x21\x00\x01\xf4\xb8\x00\x15\x10\xb9\x00\x24\x00\x01\ \xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x01\x14\x0e\ \x02\x07\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x11\ \x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x07\x34\x26\x23\x22\x06\x07\ \x15\x3e\x03\x02\x22\x24\x4f\x7c\x58\x04\x33\x33\x24\x49\x2a\x34\ \x33\x75\x40\x68\x78\x78\x0b\x04\x26\x5a\x30\x25\x3d\x2a\x17\x8d\ \x25\x20\x21\x3a\x1a\x37\x48\x2a\x11\x01\x67\x2a\x3f\x2d\x1b\x05\ \x22\x26\x1a\x15\x61\x1d\x26\x6e\x72\x01\x1c\x38\x1d\x27\x17\x29\ \x36\x2b\x18\x17\x1b\x14\x52\x03\x0e\x15\x1c\x00\x02\x00\x2f\xff\ \xf4\x02\x10\x01\xfc\x00\x0c\x00\x23\x00\x7f\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1b\x00\x1f\x00\x12\x11\x12\x39\ \xb8\x00\x1b\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x16\x00\x1f\x00\ \x12\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\ \x12\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\ \x37\x35\x2e\x01\x23\x22\x06\x07\x34\x3e\x02\x33\x32\x16\x17\x33\ \x37\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\xc6\x32\x2e\x19\ \x2a\x14\x14\x29\x16\x29\x3b\x97\x24\x3b\x4e\x2a\x26\x43\x1e\x04\ \x0c\x73\x78\x0b\x03\x1b\x4b\x24\x2f\x4d\x37\x1e\xfa\x4a\x44\x15\ \x19\xc9\x12\x0f\x44\x48\x3d\x60\x43\x24\x1e\x21\x33\xfe\x10\x33\ \x1b\x24\x24\x43\x60\x00\x00\x00\x02\x00\x48\xff\xf4\x02\x29\x01\ \xfc\x00\x0b\x00\x22\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1e\x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xb8\x00\x1e\x10\ \xb9\x00\x02\x00\x01\xf4\xba\x00\x1a\x00\x1e\x00\x11\x11\x12\x39\ \xb8\x00\x1a\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x15\x00\x11\x00\ \x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x25\x34\x23\x22\x06\x07\ \x15\x1e\x01\x33\x32\x36\x37\x14\x0e\x02\x23\x22\x26\x27\x23\x07\ \x23\x11\x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x01\x92\x5e\x1a\x2b\ \x14\x14\x2c\x14\x29\x3a\x97\x24\x3c\x4e\x2a\x22\x46\x1e\x04\x0c\ \x73\x78\x0b\x03\x1b\x4e\x2b\x2e\x4a\x33\x1c\xf8\x8c\x15\x19\xc9\ \x12\x0f\x44\x52\x41\x64\x45\x24\x22\x20\x36\x01\xf0\x33\x1b\x24\ \x24\x41\x5c\x00\x01\x00\x34\xff\xf4\x02\x15\x01\xfc\x00\x1d\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\ \x00\x03\x3e\x59\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\ \x12\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\ \x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\ \x1e\x02\x02\x15\x2c\x4b\x67\x3a\x35\x69\x2b\x3c\x1a\x3d\x25\x41\ \x51\x49\x3c\x20\x3a\x1f\x44\x20\x68\x3f\x39\x63\x4b\x2b\xf8\x3e\ \x61\x42\x23\x23\x26\x5d\x13\x1c\x4c\x41\x41\x4c\x13\x14\x5b\x1d\ \x26\x23\x42\x61\x00\x00\x00\x00\x02\x00\x36\xff\xf4\x02\x21\x01\ \xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xbb\x00\x1d\x00\x01\x00\ \x10\x00\x04\x2b\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x18\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\ \x26\x27\x37\x1e\x01\x33\x32\x36\x37\x21\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x07\x2e\x01\x23\x22\x06\x15\x02\x21\x2b\x4a\x64\ \x3a\x32\x68\x2a\x30\x21\x3d\x22\x37\x4e\x0b\xfe\xb2\x02\x04\x20\ \x3e\x5b\x3b\x30\x5a\x44\x29\x95\x09\x37\x2a\x32\x35\xf8\x3e\x60\ \x43\x23\x1f\x1b\x58\x11\x11\x31\x38\x09\x24\x14\x33\x57\x40\x24\ \x24\x43\x60\x07\x30\x2e\x34\x2a\x00\x00\x00\x00\x02\x00\x37\xff\ \xf4\x02\x22\x01\xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\ \x23\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x07\x00\ \x01\xf4\xb8\x00\x18\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x36\x37\x21\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x37\ \x04\x02\x01\x4f\x0a\x41\x36\x22\x42\x1f\x31\x2b\x67\x32\x3b\x61\ \x45\x26\x29\x46\x5d\x33\x3a\x58\x3c\x1e\x86\x31\x32\x2b\x3b\x07\ \xe4\x14\x24\x09\x36\x31\x12\x11\x5c\x1b\x1c\x24\x43\x60\x3d\x3c\ \x61\x43\x24\x24\x41\x58\x13\x2b\x35\x2d\x33\x00\x02\x00\x2f\xff\ \x3c\x02\x10\x01\xfc\x00\x20\x00\x2f\x00\x8d\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x05\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x1d\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x07\x00\x1d\x00\ \x14\x11\x12\x39\xba\x00\x17\x00\x1d\x00\x14\x11\x12\x39\xb8\x00\ \x0a\x10\xb9\x00\x21\x00\x01\xf4\xb8\x00\x07\x10\xb9\x00\x24\x00\ \x01\xf4\xb8\x00\x17\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x14\x10\ \xb9\x00\x28\x00\x01\xf4\x30\x31\x17\x1e\x01\x33\x32\x36\x3f\x01\ \x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x17\x33\x37\x33\ \x11\x14\x06\x23\x22\x26\x27\x13\x32\x36\x37\x35\x2e\x01\x23\x22\ \x0e\x02\x15\x14\x16\x7f\x23\x4d\x1f\x37\x39\x04\x03\x19\x49\x23\ \x2f\x4d\x37\x1e\x23\x3b\x4e\x2b\x4e\x39\x04\x0c\x73\x82\x80\x2a\ \x6a\x2c\xd8\x18\x2b\x14\x14\x2a\x17\x13\x24\x1c\x11\x36\x2c\x14\ \x11\x2f\x23\x40\x18\x1c\x24\x41\x59\x36\x39\x5d\x41\x24\x3f\x33\ \xfe\x20\x65\x6f\x18\x1c\x01\x13\x16\x1a\xb0\x12\x0f\x11\x21\x30\ \x1f\x3e\x42\x00\x01\x00\x3c\xff\x48\x02\x10\x01\xf0\x00\x14\x00\ \x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\ \x00\x06\x00\x03\x3e\x59\xba\x00\x03\x00\x0a\x00\x06\x11\x12\x39\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x05\x23\x35\x37\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x02\x10\x93\x08\x1d\x53\x38\x54\x4d\ \x93\x20\x29\x1e\x2d\x1a\x93\xb8\x97\x5f\x1d\x2d\x6c\x5e\x01\x32\ \xfe\xe1\x32\x2e\x1a\x1a\x01\x4b\x00\x00\x00\x00\x01\x00\x20\xff\ \xf4\x02\x39\x01\xf0\x00\x20\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x10\x2f\x1b\xb9\x00\x10\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\ \xba\x00\x02\x00\x17\x00\x00\x11\x12\x39\xba\x00\x09\x00\x10\x00\ \x0c\x11\x12\x39\xb8\x00\x0c\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x09\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\ \x01\xf4\xb8\x00\x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x21\x23\ \x27\x23\x0e\x01\x23\x22\x26\x27\x0e\x01\x23\x22\x26\x35\x11\x33\ \x11\x14\x33\x32\x37\x11\x33\x11\x14\x33\x32\x36\x37\x11\x33\x02\ \x39\x6e\x0b\x04\x0e\x31\x2c\x20\x2d\x09\x0e\x35\x2a\x34\x3a\x8a\ \x1c\x1a\x14\x71\x1d\x0e\x14\x0b\x8a\x3e\x1f\x2b\x29\x28\x21\x30\ \x55\x4b\x01\x5c\xfe\xaf\x2e\x30\x01\x4f\xfe\xaf\x2e\x18\x18\x01\ \x4f\x00\x00\x00\x01\x00\x34\xff\xf4\x01\xe4\x01\xf0\x00\x12\x00\ \x54\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x11\x11\x12\x39\xb8\ \x00\x06\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x10\ \x00\x01\xf4\x30\x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x37\x11\x33\x01\xe4\x78\x0c\x03\x25\x68\x3c\ \x21\x29\x16\x1e\x17\x25\x1c\x2e\x59\x20\x93\x6c\x3c\x3c\x0a\x0a\ \x7c\x08\x07\x36\x43\x01\x02\x00\x01\x00\x32\xff\x7c\x02\x27\x01\ \xfc\x00\x19\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\ \xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x03\x3e\x59\xb9\x00\x08\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x07\x10\xb8\x00\x03\xd0\xb8\x00\x14\x10\xb9\x00\ \x0d\x00\x01\xf4\x30\x31\x25\x33\x15\x23\x07\x23\x35\x23\x35\x33\ \x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x01\ \xaa\x7d\x84\x13\x79\xd2\xd2\x32\x36\x1d\x30\x16\x1a\x21\x51\x30\ \x3b\x52\x33\x16\x73\x73\x84\x84\x73\xae\x39\x2f\x0a\x08\x6a\x0a\ \x11\x1f\x39\x51\x31\x00\x00\x00\x01\x00\x1f\x00\x00\x02\x39\x01\ \xf0\x00\x0d\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xba\x00\x06\x00\x0c\x00\x00\ \x11\x12\x39\x30\x31\x21\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\ \x23\x13\x33\x02\x39\x94\x4e\x0c\x16\x0b\x04\x0b\x15\x0c\x4e\x8d\ \xb6\xa9\xea\x26\x4c\x27\x27\x4c\x26\xea\x01\xf0\x00\x00\x00\x00\ \x01\x00\x04\x00\x00\x02\x54\x01\xf0\x00\x21\x00\x69\x00\xb8\x00\ \x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\ \x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\ \x00\x01\x00\x03\x3e\x59\xba\x00\x06\x00\x20\x00\x01\x11\x12\x39\ \xba\x00\x10\x00\x16\x00\x15\x11\x12\x39\xba\x00\x1b\x00\x16\x00\ \x01\x11\x12\x39\x30\x31\x21\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\ \x01\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x13\x33\x17\x1e\ \x01\x17\x33\x3e\x01\x3f\x01\x33\x02\x54\x90\x1e\x05\x07\x05\x03\ \x05\x0a\x08\x1f\x67\x21\x07\x0c\x05\x04\x05\x06\x05\x1e\x86\x4d\ \xaa\x1c\x05\x09\x05\x04\x03\x07\x08\x1b\xa7\xe6\x25\x48\x26\x26\ \x4a\x23\xa4\xa4\x25\x48\x26\x26\x48\x25\xe6\x01\xf0\xa5\x23\x47\ \x28\x1b\x44\x33\xa5\x00\x00\x00\x01\x00\x1d\x00\x00\x02\x39\x02\ \xc9\x00\x1c\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\ \xb9\x00\x18\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\ \x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\ \x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x18\x10\xb9\x00\x02\ \x00\x01\xf4\xba\x00\x0d\x00\x07\x00\x18\x11\x12\x39\xb8\x00\x0d\ \x10\xb8\x00\x06\xd0\x30\x31\x01\x26\x23\x22\x06\x0f\x01\x13\x23\ \x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x13\x3e\x03\x33\x32\x16\ \x17\x07\x01\xfc\x14\x11\x29\x2e\x0c\x12\xd7\x92\x53\x0e\x18\x0c\ \x04\x0a\x18\x0b\x49\x8b\xcc\x12\x29\x35\x45\x2e\x16\x24\x11\x1b\ \x02\x4f\x06\x28\x1d\x2d\xfe\x1d\xd5\x23\x4b\x27\x25\x4b\x25\xd5\ \x02\x09\x2e\x48\x31\x19\x05\x05\x70\x00\x00\x00\x01\x00\x0f\xff\ \x48\x02\x0c\x01\xf0\x00\x0c\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xba\x00\ \x02\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\x05\x23\x11\x23\ \x07\x23\x37\x03\x33\x17\x37\x35\x33\x02\x0c\x93\x04\xb6\xa1\xbc\ \xcb\x9f\x81\x4a\x93\xb8\x01\x7d\xc5\xcc\x01\x24\xc3\x48\x7b\x00\ \x03\x00\x07\x00\x00\x02\x45\x02\xf1\x00\x19\x00\x1d\x00\x29\x00\ \x84\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\ \x1a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\ \xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\ \xf4\xb8\x00\x10\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x16\xd0\xb8\ \x00\x10\x10\xb8\x00\x19\xd0\xb8\x00\x1a\x10\xb8\x00\x24\xdc\xb8\ \x00\x1e\xdc\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\ \x23\x22\x06\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x25\x33\ \x11\x23\x13\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x49\x13\ \x2c\x46\x32\x1f\x33\x11\x1b\x0c\x1b\x0c\x1b\x1e\x5a\x5a\x93\x42\ \x42\x01\x4e\x93\x93\x48\x2d\x39\x39\x2d\x2c\x39\x39\x02\x0a\x27\ \x46\x34\x1e\x0c\x06\x6c\x05\x05\x21\x26\x1e\x73\xfe\x83\x01\x7d\ \x6d\x05\x01\xfe\x10\x02\xf1\x33\x29\x29\x33\x33\x29\x29\x33\x00\ \x02\x00\x0b\xff\xf4\x02\x5a\x02\xc9\x00\x19\x00\x2b\x00\x82\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\ \x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\ \x00\x10\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x16\xd0\xb8\x00\x10\ \x10\xb8\x00\x19\xd0\xb8\x00\x1d\x10\xb9\x00\x28\x00\x01\xf4\x30\ \x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x1d\ \x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x01\x0e\x01\x23\x22\x2e\ \x02\x35\x11\x33\x11\x14\x16\x33\x3a\x01\x37\x4d\x13\x2c\x46\x32\ \x1f\x33\x11\x1b\x0c\x1b\x0c\x1b\x1e\x5a\x5a\x93\x42\x42\x02\x0d\ \x0c\x24\x1a\x26\x34\x1f\x0e\x93\x12\x09\x04\x07\x07\x02\x0a\x27\ \x46\x34\x1e\x0c\x06\x6c\x05\x05\x21\x26\x1e\x73\xfe\x83\x01\x7d\ \x6d\x05\xfe\x11\x05\x07\x18\x2b\x3d\x26\x02\x23\xfd\xd7\x17\x12\ \x02\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x01\xfc\x02\x06\x01\ \x9f\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xdf\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xe5\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe1\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe3\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xce\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe5\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xd8\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xed\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xad\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe7\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xda\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe9\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xf0\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xf1\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xf5\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \x03\x02\x10\x01\xfc\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xfc\x10\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xf0\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xef\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x56\x02\xfc\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x0d\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x33\x02\xfc\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x0f\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x38\x03\x21\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x11\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\x42\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x13\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \x03\x02\x10\x02\xe5\x02\x26\x01\x9f\x00\x00\x00\x26\x02\xe3\x0e\ \x00\x00\x06\x02\xfc\x0f\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\ \x2a\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x15\x0e\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x10\x03\x2a\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x17\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\ \x67\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x19\x0e\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x10\x03\x42\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x1b\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x10\x02\ \xda\x02\x26\x01\x9f\x00\x00\x00\x26\x02\xe9\x0e\x00\x00\x06\x02\ \xfc\x0f\x00\x00\x02\x00\x2f\xff\x2e\x02\x24\x01\xfc\x00\x0c\x00\ \x37\x00\xa6\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\ \x12\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\ \x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\ \x1b\xb9\x00\x26\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x33\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x30\x00\x33\x00\x12\x11\x12\x39\xb8\x00\x30\ \x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x15\x00\x12\x00\x33\x11\x12\ \x39\xb8\x00\x15\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x12\x10\xb9\ \x00\x0a\x00\x01\xf4\xb8\x00\x26\x10\xb9\x00\x1f\x00\x01\xf4\xb8\ \x00\x19\x10\xb8\x00\x2e\xd0\x30\x31\x37\x14\x16\x33\x32\x36\x37\ \x35\x2e\x01\x23\x22\x06\x07\x34\x3e\x02\x33\x32\x16\x17\x33\x37\ \x33\x11\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\ \x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\x2e\x02\xc6\x32\ \x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\x97\x24\x3b\x4e\x2a\x26\x43\ \x1e\x04\x0c\x73\x32\x26\x19\x11\x0a\x13\x07\x1e\x13\x3a\x18\x2d\ \x3d\x0e\x15\x18\x0a\x0d\x03\x1b\x4b\x24\x2f\x4d\x37\x1e\xfa\x4a\ \x44\x15\x19\xc9\x12\x0f\x44\x48\x3d\x60\x43\x24\x1e\x21\x33\xfe\ \x10\x0f\x2f\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\ \x15\x07\x35\x1b\x24\x24\x43\x60\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x01\xfc\x02\x06\x01\xa4\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xe5\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe3\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xda\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe9\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xee\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xeb\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xdc\x02\x26\x01\ \xa4\x00\x00\x00\x06\x03\x20\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xe5\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xf5\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xad\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe7\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xce\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe5\x09\ \x00\x00\x00\x00\x03\x00\x17\xff\xf4\x02\x4a\x02\x98\x00\x0a\x00\ \x15\x00\x41\x00\x90\x00\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\ \x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x05\x00\x33\x00\x21\x11\x12\x39\xba\x00\x0d\ \x00\x21\x00\x33\x11\x12\x39\xb8\x00\x0d\x10\xb8\x00\x2b\xd0\xb8\ \x00\x08\xd0\xb8\x00\x33\x10\xb8\x00\x13\xdc\xb8\x00\x05\x10\xb8\ \x00\x1e\xd0\xb8\x00\x19\xd0\xb8\x00\x1c\x10\xb9\x00\x1b\x00\x01\ \xf4\xb8\x00\x0d\x10\xb9\x00\x3b\x00\x01\xf4\xb8\x00\x19\x10\xb8\ \x00\x3e\xd0\x30\x31\x37\x14\x16\x33\x32\x37\x2e\x01\x27\x0e\x01\ \x13\x14\x17\x3e\x01\x35\x34\x26\x23\x22\x06\x05\x0e\x01\x07\x16\ \x17\x07\x26\x27\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x1e\x01\x17\ \x3e\x01\x37\xa2\x31\x28\x20\x20\x23\x3f\x1a\x0e\x0f\x2d\x13\x1c\ \x25\x12\x17\x13\x18\x01\x7b\x0f\x2c\x20\x33\x28\x23\x44\x46\x25\ \x59\x37\x33\x4e\x35\x1b\x11\x1d\x26\x15\x14\x16\x16\x2a\x3c\x25\ \x4a\x53\x16\x23\x2c\x17\x18\x3d\x20\x12\x1c\x09\xb7\x25\x2e\x17\ \x1e\x43\x24\x11\x24\x01\x23\x22\x29\x14\x2e\x1f\x17\x1c\x27\xa0\ \x3c\x6d\x33\x20\x09\x77\x10\x2f\x1d\x22\x1e\x33\x43\x26\x20\x35\ \x2b\x24\x0f\x26\x47\x1f\x23\x3e\x2f\x1b\x50\x44\x1f\x33\x2c\x26\ \x12\x1f\x3b\x1a\x20\x4a\x2c\x00\x03\x00\x38\xff\xf4\x02\x20\x02\ \x87\x00\x13\x00\x27\x00\x33\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x0a\x10\ \xb9\x00\x14\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x1e\x00\x01\xf4\ \xba\x00\x28\x00\x1e\x00\x14\x11\x12\x39\xb8\x00\x28\x2f\xb8\x00\ \x2e\xdc\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x03\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x3e\x02\ \x35\x34\x2e\x02\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x01\x2c\x37\x5a\x40\x23\x23\x40\x5a\x37\x37\x5a\x40\x23\x23\x40\ \x5a\x37\x18\x29\x1e\x12\x12\x1e\x29\x18\x18\x29\x1e\x12\x12\x1e\ \x29\x18\x20\x2b\x2b\x20\x20\x2b\x2b\x0c\x2b\x54\x7c\x51\x51\x7a\ \x53\x29\x29\x53\x7a\x51\x51\x7c\x54\x2b\x02\x21\x14\x31\x52\x3e\ \x3e\x53\x33\x16\x16\x33\x53\x3e\x3e\x52\x31\x14\xfe\xe1\x29\x23\ \x23\x29\x29\x23\x23\x29\x00\x00\x01\x00\x52\x00\x00\x02\x19\x02\ \x7b\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\ \x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\x37\x33\x11\x02\ \x19\xfe\x39\xa4\x83\x38\x4f\x23\x6c\x77\x77\x77\x01\x6f\x5b\x0a\ \x1c\x14\xfd\xfc\x00\x00\x00\x00\x01\x00\x33\x00\x00\x02\x17\x02\ \x87\x00\x21\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\ \x1b\xb9\x00\x20\x00\x03\x3e\x59\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x00\xd0\xba\x00\x05\x00\x11\x00\x20\x11\x12\x39\xb8\x00\x11\x10\ \xb9\x00\x08\x00\x01\xf4\x30\x31\x37\x3e\x03\x35\x34\x26\x23\x22\ \x06\x07\x27\x3e\x03\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x3e\x01\ \x3b\x01\x15\x21\x3a\x44\x70\x50\x2c\x36\x32\x26\x3f\x1b\x4f\x19\ \x31\x37\x3d\x25\x32\x52\x3b\x21\x26\x41\x54\x2e\x1b\x3f\x19\x97\ \xfe\x23\x54\x39\x63\x56\x4c\x22\x2f\x31\x27\x1a\x4f\x19\x26\x19\ \x0d\x1d\x35\x4a\x2e\x28\x53\x53\x53\x28\x03\x05\x7c\x00\x00\x00\ \x01\x00\x2a\xff\xf4\x02\x13\x02\x87\x00\x2d\x00\x53\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2a\x2f\x1b\xb9\x00\x2a\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x0b\x00\x19\x00\x2a\x11\x12\x39\ \xb8\x00\x0b\x2f\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\ \x12\x00\x01\xf4\xba\x00\x22\x00\x0b\x00\x0c\x11\x12\x39\x30\x31\ \x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\x35\x32\x36\x35\x34\ \x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\ \x15\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x6e\x20\x4f\x2c\x34\ \x43\x12\x2c\x4a\x38\x5e\x4d\x32\x2c\x26\x40\x21\x4a\x2f\x6b\x3e\ \x34\x56\x3e\x22\x40\x39\x3c\x52\x29\x45\x5c\x32\x52\x76\x25\xab\ \x1c\x24\x27\x24\x15\x22\x17\x0d\x68\x2f\x26\x21\x25\x1e\x1a\x5a\ \x26\x2b\x17\x2d\x40\x2a\x32\x45\x16\x04\x10\x4d\x3e\x2c\x45\x2f\ \x19\x31\x29\x00\x02\x00\x23\x00\x00\x02\x2e\x02\x7b\x00\x09\x00\ \x14\x00\x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x11\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x09\xd0\xb8\x00\x0e\x10\xb8\x00\x0b\xd0\xb8\x00\x09\x10\xb8\x00\ \x10\xd0\xb8\x00\x00\x10\xb8\x00\x13\xd0\x30\x31\x01\x35\x34\x36\ \x37\x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\ \x33\x01\x55\x03\x02\x04\x10\x24\x11\x60\x01\x7d\x50\x89\xfe\xce\ \x01\x09\xb2\x50\x01\x08\x6b\x1e\x4f\x1e\x1b\x36\x1b\x8a\x70\x98\ \x98\x65\x01\x7e\xfe\x8d\x00\x00\x01\x00\x2e\xff\xf4\x02\x14\x02\ \x7b\x00\x24\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xbb\x00\x17\x00\x01\x00\x09\x00\ \x04\x2b\xb8\x00\x21\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x14\x00\ \x21\x00\x10\x11\x12\x39\xb8\x00\x14\x10\xb8\x00\x0f\xd0\xb8\x00\ \x10\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x23\x22\x0e\x02\x07\x27\x13\x21\x15\x21\x07\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x70\x20\x49\x2d\ \x36\x45\x41\x33\x10\x19\x18\x1a\x10\x41\x11\x01\x85\xfe\xfa\x0b\ \x16\x26\x18\x2c\x4f\x3c\x23\x29\x45\x5a\x31\x53\x73\x27\xaa\x1a\ \x25\x32\x31\x30\x32\x03\x08\x0c\x09\x2a\x01\x41\x7c\x77\x08\x07\ \x18\x30\x4a\x33\x35\x52\x39\x1e\x33\x26\x00\x00\x02\x00\x3c\xff\ \xf4\x02\x21\x02\x87\x00\x0f\x00\x32\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\x3e\x59\xbb\x00\ \x08\x00\x01\x00\x1b\x00\x04\x2b\xb8\x00\x25\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x18\x00\x25\x00\x2f\x11\x12\x39\xb8\x00\x18\x10\ \xb9\x00\x0b\x00\x01\xf4\xb8\x00\x2f\x10\xb9\x00\x13\x00\x01\xf4\ \x30\x31\x25\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x1e\x03\x13\ \x2e\x01\x23\x22\x0e\x02\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x01\x3a\x13\ \x23\x1b\x10\x34\x2a\x1c\x3c\x1d\x06\x17\x1e\x24\xa4\x14\x3c\x20\ \x1d\x35\x29\x1a\x02\x22\x53\x24\x2a\x47\x35\x1e\x25\x3f\x52\x2e\ \x31\x5c\x48\x2c\x2e\x4d\x62\x35\x44\x66\x20\x62\x0c\x19\x27\x1b\ \x31\x2b\x1c\x22\x26\x33\x1f\x0d\x01\x81\x12\x1b\x15\x2f\x4c\x38\ \x21\x24\x18\x30\x4a\x32\x32\x4e\x38\x1d\x24\x4c\x77\x54\x59\x82\ \x54\x29\x2d\x1f\x00\x00\x00\x00\x01\x00\x3e\x00\x00\x02\x1b\x02\ \x7b\x00\x0f\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x07\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x21\x35\x21\x15\ \x0e\x03\x07\x23\xc1\x04\x17\x2b\x44\x32\xfe\xc1\x01\xdd\x3c\x4a\ \x2a\x12\x04\x94\x4f\x85\x79\x73\x3f\x7c\x5a\x43\x75\x7d\x8f\x5d\ \x00\x00\x00\x00\x03\x00\x3d\xff\xf4\x02\x1c\x02\x87\x00\x0d\x00\ \x18\x00\x3e\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\ \xb9\x00\x27\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x3a\x2f\ \x1b\xb9\x00\x3a\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x27\x10\xb9\x00\x13\x00\x01\xf4\xba\x00\x0b\x00\x03\x00\x13\x11\ \x12\x39\xb8\x00\x0b\x2f\xb8\x00\x2f\xd0\xb8\x00\x2f\x2f\xb8\x00\ \x0e\xdc\xb8\x00\x0b\x10\xb8\x00\x1e\xdc\x30\x31\x37\x14\x16\x33\ \x32\x36\x35\x34\x2e\x02\x27\x0e\x01\x37\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\x07\x34\x3e\x02\x37\x35\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\ \x22\x2e\x02\xbc\x42\x31\x2d\x37\x16\x29\x38\x22\x1b\x23\x9b\x30\ \x2e\x2c\x23\x31\x46\xe2\x13\x21\x2b\x19\x28\x35\x20\x39\x50\x2f\ \x30\x4d\x36\x1d\x35\x26\x19\x2c\x20\x12\x20\x3d\x5a\x3a\x37\x58\ \x3e\x21\xb3\x2a\x2f\x27\x28\x16\x1e\x19\x15\x0d\x14\x32\xa0\x2b\ \x32\x25\x2d\x24\x25\x27\x2c\xe3\x1d\x2f\x26\x1e\x0c\x04\x1c\x47\ \x33\x28\x41\x2e\x18\x19\x2d\x41\x27\x2d\x46\x18\x04\x0c\x1f\x28\ \x33\x20\x26\x40\x2f\x1b\x19\x2e\x40\x00\x00\x00\x02\x00\x35\xff\ \xf4\x02\x1a\x02\x87\x00\x0f\x00\x32\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x03\x3e\x59\xbb\x00\ \x00\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x18\x00\x2f\x00\x25\x11\ \x12\x39\xb8\x00\x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x25\x10\ \xb9\x00\x08\x00\x01\xf4\xb8\x00\x2f\x10\xb9\x00\x13\x00\x01\xf4\ \x30\x31\x01\x32\x36\x37\x2e\x03\x23\x22\x0e\x02\x15\x14\x16\x07\ \x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x01\x1a\x1c\ \x3c\x1d\x06\x17\x1f\x24\x13\x13\x23\x1b\x10\x34\x63\x14\x3c\x20\ \x1d\x35\x29\x1a\x02\x23\x53\x23\x2a\x48\x35\x1e\x25\x3f\x52\x2e\ \x31\x5d\x48\x2b\x2e\x4c\x63\x34\x44\x66\x21\x01\x56\x1c\x23\x25\ \x33\x1f\x0d\x0c\x19\x27\x1b\x31\x2b\xbe\x12\x1b\x15\x2f\x4d\x38\ \x21\x25\x18\x30\x4a\x32\x31\x4f\x38\x1d\x24\x4c\x77\x54\x59\x82\ \x54\x29\x2e\x1e\x00\x00\x00\x00\x03\x00\x38\xff\xf4\x02\x20\x02\ \x4e\x00\x13\x00\x27\x00\x33\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x0a\x10\ \xb9\x00\x14\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x1e\x00\x01\xf4\ \xba\x00\x28\x00\x1e\x00\x14\x11\x12\x39\xb8\x00\x28\x2f\xb8\x00\ \x2e\xdc\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x03\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x3e\x02\ \x35\x34\x2e\x02\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x01\x2c\x37\x5a\x40\x23\x23\x40\x5a\x37\x37\x5a\x40\x23\x23\x40\ \x5a\x37\x18\x29\x1e\x12\x12\x1e\x29\x18\x18\x29\x1e\x12\x12\x1e\ \x29\x18\x20\x2b\x2b\x20\x20\x2b\x2b\x0c\x28\x4e\x72\x49\x49\x6f\ \x4b\x26\x26\x4b\x6f\x49\x49\x72\x4e\x28\x01\xe9\x12\x2a\x47\x35\ \x35\x49\x2d\x14\x14\x2d\x49\x35\x35\x47\x2a\x12\xfe\xfe\x29\x23\ \x22\x2a\x2a\x22\x23\x29\x00\x00\x01\x00\x52\x00\x00\x02\x19\x02\ \x42\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x03\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\x37\x33\x11\x02\ \x19\xfe\x39\xa4\x83\x38\x4f\x23\x6c\x77\x77\x77\x01\x36\x5b\x0a\ \x1c\x14\xfe\x35\x00\x00\x00\x00\x01\x00\x33\x00\x00\x02\x17\x02\ \x4e\x00\x21\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\ \x1b\xb9\x00\x20\x00\x03\x3e\x59\xb9\x00\x1b\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x11\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x1b\x10\ \xb8\x00\x1e\xd0\x30\x31\x37\x3e\x03\x35\x34\x26\x23\x22\x06\x07\ \x27\x3e\x03\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x3e\x01\x3b\x01\ \x15\x21\x3a\x46\x70\x4f\x2b\x36\x32\x26\x3f\x1b\x4f\x19\x31\x37\ \x3d\x25\x32\x52\x3b\x21\x20\x37\x4c\x2c\x1b\x3f\x19\x7d\xfe\x23\ \x54\x2d\x52\x49\x42\x1c\x30\x31\x27\x1a\x50\x19\x25\x19\x0d\x1d\ \x35\x4c\x2e\x24\x46\x43\x41\x20\x03\x05\x7c\x00\x01\x00\x2a\xff\ \xa6\x02\x13\x02\x4e\x00\x2f\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x2c\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\x0b\x00\x04\x2b\xb8\ \x00\x19\x10\xb9\x00\x12\x00\x01\xf4\xba\x00\x22\x00\x0b\x00\x0c\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\ \x35\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\ \x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\ \x6e\x20\x4f\x2c\x34\x43\x12\x2c\x4a\x38\x5e\x4d\x32\x2c\x26\x40\ \x21\x4a\x2f\x6b\x3e\x34\x56\x3e\x22\x40\x39\x1e\x34\x26\x16\x29\ \x45\x5c\x32\x52\x76\x25\x5d\x1c\x25\x2b\x29\x16\x23\x18\x0d\x68\ \x32\x2a\x21\x28\x1e\x1a\x5a\x26\x2b\x18\x2e\x41\x2a\x34\x49\x17\ \x04\x08\x1c\x27\x33\x20\x2e\x48\x31\x1a\x31\x29\x00\x00\x00\x00\ \x02\x00\x23\xff\xb2\x02\x2e\x02\x42\x00\x09\x00\x14\x00\x3c\x00\ \xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x09\x3e\x59\xbb\x00\x14\x00\x01\x00\x0a\x00\x04\x2b\xb8\ \x00\x14\x10\xb8\x00\x00\xd0\xba\x00\x04\x00\x11\x00\x0d\x11\x12\ \x39\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\x30\x31\x25\x35\x34\x36\x37\ \x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\x33\ \x01\x55\x03\x02\x04\x10\x23\x11\x61\x01\x7d\x50\x89\xfe\xce\x01\ \x09\xb2\x50\xc3\x77\x1f\x4e\x1f\x1c\x37\x1b\x95\x70\xa1\xa1\x65\ \x01\x8a\xfe\x81\x00\x00\x00\x00\x01\x00\x2e\xff\xa6\x02\x14\x02\ \x42\x00\x24\x00\x44\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x21\x00\x04\ \x2b\xbb\x00\x17\x00\x01\x00\x09\x00\x04\x2b\xba\x00\x14\x00\x21\ \x00\x10\x11\x12\x39\xb8\x00\x14\x10\xb8\x00\x0f\xd0\xb8\x00\x10\ \x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x35\ \x34\x26\x23\x22\x0e\x02\x07\x27\x13\x21\x15\x21\x07\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x70\x20\x49\x2d\x36\ \x45\x41\x33\x10\x19\x18\x1a\x10\x41\x11\x01\x85\xfe\xfa\x0b\x16\ \x26\x18\x2c\x4f\x3c\x23\x29\x45\x5a\x31\x53\x73\x27\x5c\x1a\x26\ \x36\x36\x35\x32\x03\x08\x0c\x09\x2a\x01\x49\x7b\x80\x09\x06\x17\ \x32\x4c\x35\x37\x55\x3b\x1f\x33\x26\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x21\x02\x87\x02\x06\x01\xd5\x00\x00\x00\x01\x00\x3e\xff\ \xb2\x02\x1b\x02\x42\x00\x0f\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x09\x3e\x59\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x09\xd0\x30\x31\x17\x3e\x03\x37\x21\x35\x21\x15\x0e\ \x03\x07\x23\xc1\x04\x17\x2b\x44\x32\xfe\xc1\x01\xdd\x3c\x4a\x2a\ \x12\x04\x94\x4e\x52\x8a\x7f\x79\x41\x7b\x5a\x44\x7a\x82\x96\x60\ \x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x1c\x02\x87\x02\x06\x01\ \xd7\x00\x00\x00\x02\x00\x35\xff\xa6\x02\x1a\x02\x4e\x00\x0f\x00\ \x32\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\ \x25\x00\x09\x3e\x59\xbb\x00\x13\x00\x01\x00\x2f\x00\x04\x2b\xbb\ \x00\x00\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x18\x00\x2f\x00\x25\ \x11\x12\x39\xb8\x00\x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x25\ \x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x01\x32\x36\x37\x2e\x03\x23\ \x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x01\x1a\x1c\x3e\x1d\x05\x17\x1f\x26\x14\x13\x23\ \x1b\x10\x34\x63\x14\x3c\x20\x1c\x33\x28\x1c\x04\x23\x53\x23\x2a\ \x48\x35\x1e\x25\x3f\x52\x2e\x31\x5d\x48\x2b\x2e\x4c\x63\x34\x44\ \x66\x21\x01\x09\x1e\x25\x2a\x39\x23\x0e\x0c\x1a\x2a\x1d\x36\x34\ \xbf\x12\x1c\x14\x2f\x4e\x3a\x22\x24\x1a\x34\x4f\x35\x33\x52\x38\ \x1e\x24\x4c\x77\x54\x5f\x8a\x59\x2b\x2d\x1f\x00\x01\x00\xb8\xff\ \xf4\x01\xa0\x00\xdf\x00\x0f\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb8\x00\x05\xdc\x30\ \x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x23\x22\x26\xb8\ \x11\x1e\x2b\x1a\x1a\x2b\x1e\x11\x40\x34\x34\x40\x69\x19\x2b\x20\ \x12\x12\x20\x2b\x19\x32\x43\x43\x00\x00\x00\x00\x01\x00\xb6\xff\ \x27\x01\xad\x00\xd7\x00\x12\x00\x0b\x00\xba\x00\x0c\x00\x04\x00\ \x03\x2b\x30\x31\x17\x36\x35\x06\x23\x22\x2e\x02\x35\x34\x36\x33\ \x32\x16\x15\x14\x06\x07\xb6\x82\x04\x07\x15\x27\x1e\x12\x41\x2f\ \x3e\x3e\x6a\x68\x83\x2d\x61\x01\x0d\x1a\x26\x19\x2f\x38\x5b\x51\ \x60\x84\x20\xff\xff\x00\xb8\xff\xf4\x01\xa0\x02\x22\x02\x27\x01\ \xe3\x00\x00\x01\x43\x00\x06\x01\xe3\x00\x00\xff\xff\x00\xb6\xff\ \x27\x01\xad\x02\x22\x02\x27\x01\xe3\x00\x00\x01\x43\x00\x06\x01\ \xe4\x00\x00\x00\x03\xff\xff\xff\xf4\x02\x59\x00\xb4\x00\x0b\x00\ \x17\x00\x23\x00\x48\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\ \x1b\xb9\x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\ \x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x09\x10\xb9\x00\x03\ \x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x1b\xd0\x30\x31\x27\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\ \x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\ \x26\x01\x32\x2a\x2a\x32\x32\x2a\x2a\x32\xd1\x32\x2a\x2a\x32\x32\ \x2a\x2a\x32\xd1\x32\x2a\x2a\x32\x32\x2a\x2a\x32\x54\x29\x37\x37\ \x29\x29\x37\x37\x29\x29\x37\x37\x29\x29\x37\x37\x29\x29\x37\x37\ \x29\x29\x37\x37\x00\x00\x00\x00\x02\x00\xc8\xff\xf4\x01\x90\x02\ \x9e\x00\x05\x00\x11\x00\x2d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xb8\x00\x09\xdc\xb8\x00\ \x05\xdc\x30\x31\x13\x27\x33\x07\x03\x23\x07\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\xe8\x05\x92\x05\x14\x60\x34\x39\x2b\x2b\ \x39\x39\x2b\x2b\x39\x02\x19\x85\x85\xfe\xe6\xa5\x2d\x37\x37\x2d\ \x2d\x39\x39\x00\x02\x00\xc8\xff\x52\x01\x90\x01\xfc\x00\x05\x00\ \x11\x00\x1c\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\ \x0f\x00\x07\x3e\x59\xb8\x00\x09\xdc\xb8\x00\x04\xdc\x30\x31\x05\ \x17\x23\x37\x13\x33\x37\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\ \x16\x01\x70\x05\x92\x05\x14\x60\x34\x39\x2b\x2b\x39\x39\x2b\x2b\ \x39\x29\x85\x85\x01\x1a\xa5\x2d\x37\x37\x2d\x2d\x39\x39\x00\x00\ \x02\x00\x62\xff\xf4\x01\xf1\x02\xaa\x00\x1d\x00\x29\x00\x2a\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x03\x3e\ \x59\xbb\x00\x11\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x27\x10\xb8\ \x00\x21\xdc\xb8\x00\x00\xdc\x30\x31\x37\x26\x3e\x04\x35\x34\x26\ \x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x04\x17\ \x07\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xda\x06\x11\x1e\ \x27\x22\x18\x2a\x20\x1f\x30\x17\x52\x24\x62\x3c\x2b\x4b\x37\x20\ \x18\x24\x28\x22\x14\x03\xa0\x39\x2b\x2b\x39\x39\x2b\x2b\x39\xff\ \x21\x35\x2a\x22\x20\x20\x13\x20\x1f\x1a\x14\x4b\x28\x32\x14\x29\ \x3d\x29\x21\x30\x28\x22\x25\x2b\x1d\xa5\x2d\x37\x37\x2d\x2d\x39\ \x39\x00\x00\x00\x02\x00\x67\xff\x46\x01\xf6\x01\xfc\x00\x1d\x00\ \x29\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\ \x27\x00\x07\x3e\x59\xbb\x00\x0a\x00\x01\x00\x11\x00\x04\x2b\xb8\ \x00\x27\x10\xb8\x00\x21\xdc\xb8\x00\x1d\xdc\x30\x31\x25\x16\x0e\ \x04\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\ \x34\x3e\x04\x27\x37\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\ \x01\x7f\x05\x10\x1f\x27\x22\x18\x2a\x20\x20\x30\x17\x51\x24\x62\ \x3c\x2b\x4b\x37\x20\x18\x24\x28\x22\x14\x03\xa0\x38\x2c\x2b\x38\ \x38\x2b\x2c\x38\xf1\x22\x34\x2a\x22\x20\x21\x12\x1f\x20\x1a\x14\ \x4a\x29\x32\x14\x28\x3e\x29\x21\x30\x28\x22\x25\x2b\x1d\xa5\x2d\ \x37\x37\x2d\x2d\x39\x39\x00\x00\x01\x00\xd7\x01\x2f\x01\x81\x02\ \xad\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x27\x33\x0f\x01\x23\xdc\x05\xaa\x05\x23\x5a\x02\x1c\x91\x91\ \xed\x00\x00\xff\xff\x00\x53\x01\x2f\x02\x06\x02\xad\x02\x27\x01\ \xec\xff\x7c\x00\x00\x00\x07\x01\xec\x00\x85\x00\x00\x00\x00\x00\ \x01\x00\xb8\x01\x22\x01\x8d\x02\xb9\x00\x11\x00\x0b\x00\xba\x00\ \x05\x00\x0b\x00\x03\x2b\x30\x31\x01\x0e\x01\x07\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x35\x34\x36\x37\x01\x8d\x35\x37\x04\x0a\ \x0b\x28\x33\x36\x2a\x38\x3d\x57\x58\x02\x6b\x18\x44\x30\x03\x31\ \x2a\x2e\x37\x54\x4c\x52\x7d\x28\x00\x00\x00\x00\x01\x00\xca\x01\ \x22\x01\x9f\x02\xb9\x00\x10\x00\x0b\x00\xba\x00\x04\x00\x0a\x00\ \x03\x2b\x30\x31\x13\x36\x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x07\xca\x69\x07\x0b\x09\x29\x33\x36\x2a\x39\x3c\ \x56\x58\x01\x70\x2f\x5c\x03\x32\x2a\x2e\x37\x55\x4b\x52\x7d\x28\ \x00\x00\x00\xff\xff\x00\x34\x01\x22\x02\x12\x02\xb9\x02\x27\x01\ \xee\xff\x7c\x00\x00\x00\x07\x01\xee\x00\x85\x00\x00\x00\x00\xff\ \xff\x00\x46\x01\x22\x02\x24\x02\xb9\x02\x27\x01\xef\xff\x7c\x00\ \x00\x00\x07\x01\xef\x00\x85\x00\x00\x00\x00\xff\xff\x00\xca\xff\ \x1a\x01\x9f\x00\xb1\x02\x07\x01\xef\x00\x00\xfd\xf8\x00\x00\xff\ \xff\x00\x46\xff\x1a\x02\x24\x00\xb1\x02\x27\x01\xef\xff\x7c\xfd\ \xf8\x00\x07\x01\xef\x00\x85\xfd\xf8\x00\x00\x00\x01\x00\xaf\x00\ \x19\x01\x98\x01\xdf\x00\x06\x00\x0b\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\x30\x31\x37\x35\x37\x17\x07\x17\x07\xaf\xab\x3e\x7f\x7f\ \x3e\xb3\x92\x9a\x37\xac\xac\x37\x00\x00\x00\x00\x01\x00\xc0\x00\ \x19\x01\xa9\x01\xdf\x00\x06\x00\x0b\x00\xba\x00\x02\x00\x05\x00\ \x03\x2b\x30\x31\x25\x27\x37\x17\x15\x07\x27\x01\x3f\x7f\x3e\xab\ \xab\x3e\xfc\xac\x37\x9a\x92\x9a\x37\x00\x00\xff\xff\x00\x2b\x00\ \x19\x02\x1d\x01\xdf\x02\x27\x01\xf4\xff\x7c\x00\x00\x00\x07\x01\ \xf4\x00\x85\x00\x00\x00\x00\xff\xff\x00\x3c\x00\x19\x02\x2e\x01\ \xdf\x02\x27\x01\xf5\xff\x7c\x00\x00\x00\x07\x01\xf5\x00\x85\x00\ \x00\x00\x00\xff\xff\x00\x46\x01\x16\x02\x12\x01\x7e\x02\x06\x02\ \x97\x00\x00\xff\xff\x00\x46\x01\x16\x02\x12\x01\x7e\x02\x06\x02\ \x97\x00\x00\x00\x01\x00\x50\x00\xc7\x02\x08\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x50\x01\xb8\xfe\x48\x01\x36\x6f\x00\x00\x01\x00\x14\x00\ \xc7\x02\x44\x01\x36\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x14\x02\x30\xfd\xd0\x01\ \x36\x6f\x00\x00\x01\x00\x50\x00\xc7\x02\x08\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x50\x01\xb8\xfe\x48\x01\x36\x6f\x00\xff\xff\x00\x14\x00\ \xc7\x02\x44\x01\x36\x02\x06\x01\xfb\x00\x00\xff\xff\x00\xb8\x00\ \xec\x01\xa0\x01\xd7\x02\x07\x01\xe3\x00\x00\x00\xf8\x00\x00\x00\ \x01\x00\x88\x00\x65\x01\xd0\x01\xa7\x00\x13\x00\x0b\x00\xba\x00\ \x0a\x00\x00\x00\x03\x2b\x30\x31\x25\x22\x2e\x02\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x01\x2c\x23\x3c\x2c\x19\x19\x2c\ \x3c\x23\x23\x3c\x2c\x19\x19\x2c\x3c\x65\x18\x2c\x3a\x23\x22\x3b\ \x2c\x18\x18\x2c\x3b\x22\x23\x3a\x2c\x18\x00\x00\x01\x00\x3c\xff\ \x5c\x02\x1c\xff\xca\x00\x03\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\ \x01\x00\x04\x2b\x30\x31\x05\x15\x21\x35\x02\x1c\xfe\x20\x36\x6e\ \x6e\x00\x00\x00\x01\x00\xb5\xff\x4d\x01\xda\x02\xdf\x00\x10\x00\ \x0b\x00\xba\x00\x06\x00\x00\x00\x03\x2b\x30\x31\x05\x2e\x01\x35\ \x34\x36\x37\x17\x0e\x01\x15\x14\x1e\x02\x17\x07\x01\x88\x62\x71\ \x71\x62\x52\x59\x51\x14\x29\x40\x2d\x52\xb3\x57\xe4\x8e\x8e\xe4\ \x57\x41\x57\xbb\x76\x3b\x69\x60\x59\x2b\x41\x00\x01\x00\x7e\xff\ \x4d\x01\xa3\x02\xdf\x00\x0f\x00\x0b\x00\xba\x00\x09\x00\x0f\x00\ \x03\x2b\x30\x31\x17\x3e\x03\x35\x34\x26\x27\x37\x1e\x01\x15\x14\ \x06\x07\x7e\x2d\x40\x29\x14\x51\x59\x52\x62\x71\x71\x62\x72\x2b\ \x59\x60\x69\x3b\x76\xbb\x57\x41\x57\xe4\x8e\x8e\xe4\x57\x00\x00\ \x01\x00\xc9\xff\x68\x01\xf0\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x02\x00\ \x04\x2b\x30\x31\x13\x21\x15\x23\x11\x33\x15\x21\xc9\x01\x27\xb7\ \xb7\xfe\xd9\x02\xc4\x4e\xfd\x40\x4e\x00\x00\x00\x01\x00\x69\xff\ \x68\x01\x90\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\x00\x00\x01\x00\ \x05\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\x01\x00\x04\x2b\x30\x31\ \x05\x11\x23\x35\x21\x11\x21\x35\x01\x1f\xb6\x01\x27\xfe\xd9\x4a\ \x02\xc0\x4e\xfc\xa4\x4e\x00\x00\x01\x00\x6a\xff\x68\x01\xf0\x02\ \xc4\x00\x37\x00\x2b\x00\xbb\x00\x33\x00\x01\x00\x34\x00\x04\x2b\ \xbb\x00\x19\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x0b\x00\x01\x00\ \x0a\x00\x04\x2b\xba\x00\x27\x00\x0a\x00\x0b\x11\x12\x39\x30\x31\ \x17\x34\x3e\x02\x35\x34\x2e\x02\x27\x35\x3e\x03\x35\x34\x2e\x02\ \x35\x34\x36\x3b\x01\x15\x23\x22\x0e\x02\x15\x14\x16\x15\x14\x06\ \x07\x15\x1e\x01\x15\x14\x06\x15\x14\x1e\x02\x3b\x01\x15\x23\x22\ \x26\xe9\x03\x04\x03\x0c\x20\x35\x28\x28\x35\x20\x0c\x03\x04\x03\ \x5a\x60\x4d\x29\x1f\x28\x16\x09\x05\x2e\x36\x36\x2e\x05\x09\x16\ \x28\x1f\x29\x4d\x60\x5a\x0a\x1b\x2a\x27\x27\x18\x0d\x1a\x15\x0d\ \x01\x56\x01\x0d\x15\x1a\x0d\x17\x28\x27\x2b\x1a\x51\x3d\x4e\x06\ \x10\x1b\x15\x28\x4e\x2d\x39\x33\x09\x04\x09\x33\x39\x2e\x4c\x29\ \x15\x1b\x10\x06\x4e\x3d\x00\x00\x01\x00\x69\xff\x68\x01\xef\x02\ \xc4\x00\x37\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\x35\x00\x04\x2b\ \xbb\x00\x1a\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x27\x00\x01\x00\ \x28\x00\x04\x2b\xba\x00\x0c\x00\x28\x00\x27\x11\x12\x39\x30\x31\ \x17\x32\x3e\x02\x35\x34\x26\x35\x34\x36\x37\x35\x2e\x01\x35\x34\ \x36\x35\x34\x2e\x02\x2b\x01\x35\x33\x32\x16\x15\x14\x0e\x02\x15\ \x14\x1e\x02\x17\x15\x0e\x03\x15\x14\x1e\x02\x15\x14\x06\x2b\x01\ \x35\x92\x1f\x27\x16\x09\x04\x2e\x36\x36\x2e\x04\x09\x16\x27\x1f\ \x29\x4d\x60\x5a\x03\x05\x03\x0c\x20\x35\x29\x29\x35\x20\x0c\x03\ \x05\x03\x5a\x60\x4d\x4a\x06\x10\x1b\x15\x29\x4c\x2e\x39\x33\x09\ \x04\x09\x33\x39\x2d\x4e\x28\x15\x1b\x10\x06\x4e\x3d\x51\x1a\x2b\ \x27\x28\x17\x0d\x1a\x15\x0d\x01\x56\x01\x0d\x15\x1a\x0d\x18\x27\ \x27\x2a\x1b\x51\x3d\x4e\x00\x00\x01\x00\x4a\xff\x60\x02\x0e\x02\ \xc6\x00\x03\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0f\x3e\x59\xb8\x00\x00\xdc\x30\x31\x17\x23\x01\ \x33\xc5\x7b\x01\x49\x7b\xa0\x03\x66\x00\x00\x00\x01\x00\xeb\xff\ \x06\x01\x6d\x02\xee\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xeb\x82\x82\x02\xee\xfc\x18\x00\ \x01\x00\x4a\xff\x60\x02\x0e\x02\xc6\x00\x03\x00\x18\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x02\xdc\x30\x31\x13\x33\x01\x23\x4a\x7b\x01\x49\x7b\x02\xc6\ \xfc\x9a\x00\x00\x02\x00\xeb\xff\x06\x01\x6d\x02\xee\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x05\x00\x03\x2b\xba\x00\x03\x00\ \x07\x00\x03\x2b\x30\x31\x13\x33\x11\x23\x17\x11\x23\x11\xeb\x82\ \x82\x82\x82\x02\xee\xfe\x4a\x6c\xfe\x3a\x01\xc6\x00\x00\x00\x00\ \x01\x00\x40\x00\x5b\x02\x18\x02\x36\x00\x0e\x00\x2f\x00\xb8\x00\ \x0e\x2f\xba\x00\x01\x00\x0e\x00\x05\x11\x12\x39\xb8\x00\x01\x10\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\ \x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x0c\xd0\x30\x31\x3f\x01\x27\x37\ \x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\x78\x61\x99\x17\xa2\ \x0c\x4e\x0c\xa2\x17\x99\x61\x40\x74\x74\x87\x9d\x44\x47\x2b\xb2\ \xb2\x2b\x47\x44\x9d\x2c\x8e\x8e\x00\x00\x00\x00\x01\x00\x59\xff\ \xb0\x01\xff\x02\xc8\x00\x0b\x00\x2d\x00\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x09\xd0\xb8\x00\x08\xd0\ \xb8\x00\x01\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x07\xd0\ \xb8\x00\x02\xd0\x30\x31\x13\x07\x35\x17\x27\x33\x07\x37\x15\x27\ \x13\x23\xfa\xa1\xa1\x09\x76\x09\xa1\xa1\x09\x76\x01\xb6\x08\x76\ \x09\xad\xad\x09\x76\x08\xfd\xfa\x00\x00\x00\x00\x01\x00\x59\xff\ \xb0\x01\xff\x02\xc8\x00\x15\x00\x57\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x0e\xd0\xb8\x00\x0f\xd0\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb8\x00\x0c\xd0\xb8\x00\x0b\xd0\xb8\x00\x04\xd0\xb8\x00\ \x06\x10\xb8\x00\x09\xd0\xb8\x00\x0a\xd0\xb8\x00\x05\xd0\xb8\x00\ \x14\x10\xb8\x00\x11\xd0\xb8\x00\x10\xd0\xb8\x00\x15\xd0\x30\x31\ \x37\x17\x27\x37\x07\x35\x17\x27\x33\x07\x37\x15\x27\x17\x07\x37\ \x15\x27\x17\x23\x37\x07\x59\xa1\x09\x09\xa1\xa1\x09\x76\x09\xa1\ \xa1\x09\x09\xa1\xa1\x09\x76\x09\xa1\xca\x0c\x7e\x7e\x0c\x76\x09\ \xad\xad\x09\x76\x0c\x7e\x7e\x0c\x76\x09\xad\xad\x09\x00\x00\x00\ \x02\x00\x47\xff\xac\x02\x11\x02\xb2\x00\x0d\x00\x41\x00\x4f\x00\ \xbb\x00\x2b\x00\x01\x00\x25\x00\x04\x2b\xbb\x00\x3e\x00\x01\x00\ \x11\x00\x04\x2b\xba\x00\x2e\x00\x25\x00\x11\x11\x12\x39\xba\x00\ \x13\x00\x3e\x00\x2b\x11\x12\x39\xba\x00\x1d\x00\x2e\x00\x13\x11\ \x12\x39\xb8\x00\x1d\x10\xb8\x00\x00\xd0\xba\x00\x38\x00\x13\x00\ \x2e\x11\x12\x39\xb8\x00\x38\x10\xb8\x00\x07\xd0\x30\x31\x13\x14\ \x1e\x02\x17\x36\x35\x34\x2e\x02\x27\x06\x37\x2e\x01\x23\x22\x15\ \x14\x1e\x04\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\ \x27\x37\x16\x33\x32\x36\x35\x34\x2e\x04\x35\x34\x36\x37\x2e\x01\ \x35\x34\x36\x33\x32\x16\x17\xc3\x20\x33\x3e\x1d\x24\x20\x32\x3d\ \x1e\x25\xdd\x17\x38\x1b\x36\x28\x3d\x47\x3d\x28\x2b\x29\x0b\x0c\ \x19\x30\x48\x2f\x37\x6a\x22\x54\x33\x3c\x1f\x1d\x27\x3b\x45\x3b\ \x27\x2c\x26\x0e\x0f\x5d\x55\x3a\x5c\x20\x01\x51\x18\x21\x1b\x19\ \x10\x16\x26\x18\x21\x1b\x18\x0f\x16\xa0\x14\x1c\x27\x12\x1b\x1b\ \x20\x2d\x40\x2d\x2c\x41\x18\x10\x26\x17\x22\x3a\x2a\x18\x29\x2b\ \x4b\x33\x18\x13\x13\x1c\x1a\x1e\x2d\x40\x2f\x26\x43\x17\x11\x28\ \x1a\x44\x55\x29\x18\x00\x00\x00\x02\x00\x30\xff\xb0\x02\x0e\x02\ \x8c\x00\x03\x00\x10\x00\x25\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x0d\x3e\x59\x30\x31\x01\x33\x11\x23\ \x03\x23\x22\x2e\x02\x35\x34\x3e\x02\x3b\x01\x01\x7c\x92\x92\x34\ \x28\x31\x57\x42\x26\x26\x41\x56\x31\x2a\x02\x8c\xfd\x24\x01\x15\ \x1d\x3b\x57\x39\x3f\x55\x35\x16\x00\x00\x00\x00\x03\x00\x13\xff\ \xf7\x02\x45\x02\x8f\x00\x13\x00\x27\x00\x45\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \xb8\x00\x2d\xd0\xb9\x00\x34\x00\x01\xf4\xb8\x00\x19\x10\xb8\x00\ \x41\xd0\xb9\x00\x3a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x17\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x13\x2d\x4d\x66\x39\x39\x66\x4d\x2d\x2d\ \x4d\x66\x39\x39\x66\x4d\x2d\x40\x1f\x39\x50\x31\x31\x50\x39\x1f\ \x1f\x39\x50\x31\x31\x50\x39\x1f\x38\x1c\x30\x3f\x22\x27\x35\x14\ \x37\x0b\x17\x0e\x25\x27\x26\x21\x13\x1b\x0e\x2f\x17\x37\x21\x26\ \x3f\x2e\x1a\x01\x45\x4e\x7a\x55\x2d\x2d\x55\x7a\x4e\x4e\x7b\x57\ \x2e\x2e\x57\x7b\x4e\x3e\x64\x48\x27\x27\x48\x64\x3e\x3d\x64\x47\ \x26\x26\x47\x64\x3e\x2c\x47\x32\x1b\x1d\x14\x3d\x0b\x0d\x3d\x2d\ \x33\x3c\x0d\x0b\x44\x13\x17\x1c\x33\x49\x00\x00\x04\x00\x13\xff\ \xf7\x02\x45\x02\x8f\x00\x0e\x00\x16\x00\x2a\x00\x3e\x00\x55\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x03\ \x3e\x59\xbb\x00\x0f\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1c\x10\ \xb9\x00\x3a\x00\x01\xf4\xb8\x00\x01\xd0\xb8\x00\x26\x10\xb9\x00\ \x30\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\x00\x01\x10\xb9\x00\x14\x00\ \x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\ \x23\x37\x32\x35\x34\x26\x2b\x01\x15\x25\x34\x3e\x02\x33\x32\x1e\ \x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\x3e\ \x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xb1\x80\x20\x38\x2a\x18\x19\ \x2a\x38\x1f\x18\x68\x79\x3c\x1f\x1d\x11\xfe\xfa\x2d\x4d\x66\x39\ \x39\x66\x4d\x2d\x2d\x4d\x66\x39\x39\x66\x4d\x2d\x40\x1f\x39\x50\ \x31\x31\x50\x39\x1f\x1f\x39\x50\x31\x31\x50\x39\x1f\x01\xf8\x0e\ \x1e\x32\x24\x25\x36\x24\x11\x5b\xa7\x40\x1d\x1a\x77\x13\x4e\x7a\ \x55\x2d\x2d\x55\x7a\x4e\x4e\x7b\x57\x2e\x2e\x57\x7b\x4e\x3e\x64\ \x48\x27\x27\x48\x64\x3e\x3d\x64\x47\x26\x26\x47\x64\x00\x00\x00\ \x04\x00\x65\x01\x37\x01\xf1\x02\xcb\x00\x13\x00\x27\x00\x35\x00\ \x3e\x00\x3d\x00\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\xbb\x00\ \x0a\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x32\x00\ \x04\x2b\xb8\x00\x1e\x10\xb8\x00\x29\xd0\xb8\x00\x32\x10\xb8\x00\ \x2f\xd0\xb8\x00\x14\x10\xb8\x00\x34\xd0\xb8\x00\x31\xd0\x30\x31\ \x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x27\x33\x32\x16\x15\x14\x06\x07\x17\x23\x27\x23\x15\x23\x37\x32\ \x36\x35\x34\x26\x2b\x01\x15\x01\x2b\x29\x48\x36\x1f\x1f\x36\x48\ \x29\x29\x48\x36\x1f\x1f\x36\x48\x29\x1f\x35\x27\x15\x15\x27\x35\ \x1f\x20\x34\x27\x15\x15\x27\x34\x31\x59\x23\x2e\x11\x12\x2a\x3c\ \x1e\x1d\x3a\x4e\x10\x0f\x0f\x0f\x15\x01\x37\x1e\x36\x4a\x2c\x2c\ \x4a\x36\x1e\x1e\x36\x4a\x2c\x2c\x4a\x36\x1e\x31\x16\x28\x38\x23\ \x23\x38\x28\x16\x16\x28\x38\x23\x23\x38\x28\x16\xfd\x20\x22\x11\ \x1d\x08\x4d\x3c\x3c\x64\x11\x0b\x0b\x0f\x36\x00\x02\xff\xf3\x01\ \x6a\x02\x52\x02\xa4\x00\x13\x00\x1b\x00\x51\x00\xb8\x00\x1a\x2f\ \xbb\x00\x16\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x16\x10\xb8\x00\x00\xd0\xb8\x00\x16\x10\ \xb8\x00\x06\xd0\xb8\x00\x01\xd0\xb8\x00\x1a\x10\xb8\x00\x13\xd0\ \xb8\x00\x09\xd0\xb8\x00\x06\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x0f\xd0\xb8\x00\x15\x10\xb8\x00\x18\xd0\x30\x31\x01\x33\x1f\x01\ \x33\x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\ \x27\x23\x35\x33\x15\x23\x15\x23\x01\x13\x67\x22\x15\x04\x14\x22\ \x67\x54\x0b\x04\x35\x3a\x36\x04\x0b\x54\xd1\x4f\xfd\x4e\x60\x02\ \xa4\x5e\x47\x47\x5e\xfe\xc6\x60\x73\x94\x94\x73\x60\xe3\x57\x57\ \xe3\x00\x00\x00\x02\xff\xf7\x01\x5e\x02\x52\x02\xaf\x00\x28\x00\ \x3c\x00\x5b\x00\xb8\x00\x00\x2f\xbb\x00\x13\x00\x01\x00\x1a\x00\ \x04\x2b\xbb\x00\x2d\x00\x01\x00\x36\x00\x04\x2b\xb8\x00\x00\x10\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x13\x10\xb8\x00\x29\xd0\xb8\x00\ \x29\x2f\xb8\x00\x13\x10\xb8\x00\x2f\xd0\xb8\x00\x2f\x2f\xb8\x00\ \x2a\xd0\xb8\x00\x00\x10\xb8\x00\x3c\xd0\xb8\x00\x32\xd0\xb8\x00\ \x2f\x10\xb9\x00\x35\x00\x01\xf4\xb8\x00\x38\xd0\x30\x31\x13\x22\ \x26\x27\x37\x1e\x01\x33\x32\x35\x34\x26\x2f\x01\x2e\x01\x35\x34\ \x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x1f\x01\ \x1e\x01\x15\x14\x0e\x02\x13\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\ \x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\x6b\x21\x37\x1c\x32\x11\ \x23\x15\x1d\x10\x12\x2a\x17\x25\x3d\x38\x20\x38\x15\x2c\x11\x21\ \x11\x0f\x0e\x11\x12\x29\x1e\x20\x11\x20\x2e\x8b\x67\x22\x15\x04\ \x14\x22\x67\x54\x0b\x04\x35\x3a\x36\x04\x0b\x54\x01\x5e\x18\x19\ \x3c\x10\x15\x15\x0c\x0b\x09\x15\x0b\x2a\x26\x29\x3b\x17\x11\x3d\ \x0b\x11\x0d\x09\x0a\x0b\x08\x14\x0e\x27\x25\x14\x25\x1d\x11\x01\ \x46\x5e\x47\x47\x5e\xfe\xc6\x60\x73\x94\x94\x73\x60\x00\x00\x00\ \x02\x00\x1f\xff\x6d\x02\x26\x02\x84\x00\x36\x00\x40\x00\x3f\x00\ \xbb\x00\x20\x00\x01\x00\x27\x00\x04\x2b\xbb\x00\x31\x00\x01\x00\ \x16\x00\x04\x2b\xbb\x00\x3a\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\ \x3e\x00\x01\x00\x10\x00\x04\x2b\xba\x00\x02\x00\x06\x00\x31\x11\ \x12\x39\xb8\x00\x02\x10\xb9\x00\x3d\x00\x01\xf4\x30\x31\x25\x23\ \x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x35\x34\x2e\ \x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x07\x14\x16\ \x33\x32\x36\x37\x35\x0e\x01\x02\x26\x4e\x0b\x04\x13\x3c\x29\x1b\ \x2f\x22\x13\x23\x41\x5c\x39\x10\x20\x32\x21\x23\x46\x38\x23\x24\ \x3b\x4c\x29\x2d\x3b\x1d\x2a\x2a\x54\x36\x3c\x6f\x56\x33\x30\x52\ \x6d\x3d\x39\x53\x35\x1a\xe9\x1c\x19\x16\x23\x11\x46\x39\x64\x33\ \x1c\x23\x16\x26\x33\x1d\x28\x3b\x29\x19\x07\x10\x1c\x32\x27\x17\ \x22\x4a\x75\x52\x4e\x73\x4d\x25\x15\x11\x49\x19\x1d\x30\x63\x97\ \x66\x66\x93\x60\x2e\x26\x42\x59\x34\xa7\x17\x19\x13\x11\x5c\x0b\ \x24\x00\x00\x00\x02\x00\x1f\xff\xe7\x02\x26\x02\x98\x00\x36\x00\ \x40\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x31\x2f\x1b\xb9\x00\ \x31\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\ \x00\x27\x00\x03\x3e\x59\xbb\x00\x3a\x00\x01\x00\x06\x00\x04\x2b\ \xbb\x00\x10\x00\x01\x00\x3e\x00\x04\x2b\xba\x00\x02\x00\x06\x00\ \x31\x11\x12\x39\xb8\x00\x31\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\ \x27\x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x3d\x00\ \x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x07\x14\x16\x33\x32\x36\x37\x35\x0e\x01\x02\x26\x4e\ \x0b\x04\x13\x3c\x29\x1b\x2f\x22\x13\x23\x41\x5c\x39\x10\x1f\x2f\ \x1f\x23\x48\x3a\x25\x24\x3b\x4c\x29\x2d\x3b\x1d\x2a\x2a\x54\x36\ \x3c\x6f\x56\x33\x32\x54\x6f\x3e\x37\x50\x34\x19\xe9\x1c\x19\x16\ \x23\x11\x46\x39\xa4\x32\x1b\x23\x16\x26\x33\x1d\x28\x3b\x28\x19\ \x08\x07\x15\x25\x1d\x11\x1c\x3e\x64\x48\x3f\x5e\x3e\x1e\x14\x12\ \x49\x19\x1d\x2a\x54\x80\x57\x5c\x84\x54\x28\x22\x3c\x4f\x2d\x97\ \x16\x1a\x14\x11\x5b\x0b\x23\x00\x02\x00\x46\x00\x00\x02\x16\x02\ \x8a\x00\x1b\x00\x1f\x00\x8b\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\ \x2f\x1b\xb9\x00\x08\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0c\x2f\x1b\xb9\x00\x0c\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\x00\x02\x00\ \x01\x00\x01\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x05\x00\x04\x2b\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\xb8\x00\x0e\xd0\xb8\x00\x05\x10\ \xb8\x00\x1e\xd0\xb8\x00\x11\xd0\xb8\x00\x02\x10\xb8\x00\x1f\xd0\ \xb8\x00\x12\xd0\xb8\x00\x01\x10\xb8\x00\x19\xd0\xb8\x00\x15\xd0\ \x30\x31\x37\x23\x35\x33\x37\x23\x35\x33\x37\x33\x07\x33\x37\x33\ \x07\x33\x15\x23\x07\x33\x15\x23\x07\x23\x37\x23\x07\x23\x13\x37\ \x23\x07\x90\x4a\x55\x0e\x4f\x5b\x15\x54\x14\x68\x15\x54\x14\x4f\ \x5b\x0d\x54\x5f\x17\x55\x16\x67\x17\x55\xde\x0e\x68\x0d\xbb\x5e\ \x6e\x5e\xa5\xa5\xa5\xa5\x5e\x6e\x5e\xbb\xbb\xbb\x01\x19\x6e\x6e\ \x00\x00\x00\x00\x01\x00\x54\x01\x17\x02\x04\x02\xc8\x00\x0e\x00\ \x14\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\x30\x31\x13\x37\x27\x37\x17\x37\x33\x17\x37\x17\x07\ \x17\x07\x27\x07\x87\x52\x85\x17\x8e\x0c\x4e\x0c\x8e\x17\x85\x52\ \x40\x65\x65\x01\x43\x8c\x38\x48\x20\x99\x99\x20\x48\x38\x8c\x2c\ \x7e\x7e\x00\x00\x01\x00\x7c\x00\xc7\x01\xdc\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x7c\x01\x60\xfe\xa0\x01\x36\x6f\x00\xff\xff\x00\x7c\x00\ \xc7\x01\xdc\x01\x36\x02\x06\x02\x19\x00\x00\x00\x03\x00\x40\xff\ \x8d\x02\x14\x02\xee\x00\x06\x00\x0d\x00\x38\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x18\x00\x04\x2b\xbb\x00\x2d\x00\x01\x00\x07\x00\ \x04\x2b\x30\x31\x25\x32\x36\x35\x34\x26\x2f\x01\x22\x06\x15\x14\ \x16\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x07\x27\x37\x2e\x01\x27\ \x37\x1e\x01\x17\x37\x2e\x03\x35\x34\x3e\x02\x3b\x01\x37\x17\x07\ \x1e\x01\x17\x07\x2e\x01\x27\x01\x3d\x24\x26\x1f\x19\x2b\x21\x24\ \x1d\x18\x53\x1f\x3e\x31\x1f\x1f\x3c\x59\x39\x1c\x57\x1c\x27\x4c\ \x1d\x40\x1b\x32\x1a\x15\x1f\x3c\x30\x1e\x1f\x39\x51\x32\x0c\x19\ \x58\x1a\x22\x37\x17\x49\x11\x1d\x0f\x99\x18\x15\x11\x18\x0b\xf9\ \x17\x17\x0e\x15\x09\x1e\x0b\x1c\x28\x36\x25\x25\x40\x2f\x1b\x95\ \x0a\x97\x0a\x23\x18\x64\x10\x18\x08\x72\x0c\x1c\x28\x35\x25\x26\ \x3e\x2b\x18\x84\x0a\x89\x0b\x24\x17\x54\x0b\x11\x06\x00\x00\xff\ \xff\x00\x98\x01\xac\x01\xc0\x02\xfc\x02\x07\x02\x38\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xc4\x01\xb8\x01\x80\x02\xf0\x02\x07\x02\ \x39\x00\x00\x01\xb8\x00\x00\xff\xff\x00\x9e\x01\xb8\x01\xb1\x02\ \xfc\x02\x07\x02\x3a\x00\x02\x01\xb8\x00\x00\xff\xff\x00\xa5\x01\ \xac\x01\xb2\x02\xfc\x02\x07\x02\x3b\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa1\x01\xb8\x01\xd2\x02\xf0\x02\x07\x02\x3c\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xa5\x01\xac\x01\xb4\x02\xf0\x02\x07\x02\ \x3d\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xa2\x01\xac\x01\xb5\x02\ \xfc\x02\x07\x02\x3e\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xb1\x01\ \xb8\x01\xb9\x02\xf0\x02\x07\x02\x3f\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa6\x01\xac\x01\xb2\x02\xfc\x02\x07\x02\x40\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xa4\x01\xac\x01\xb7\x02\xfc\x02\x07\x02\ \x41\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xd6\x01\x5f\x01\x91\x03\ \x5c\x02\x07\x02\x42\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xc7\x01\ \x5f\x01\x82\x03\x5c\x02\x07\x02\x43\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xed\x01\xb0\x01\x6b\x02\x31\x02\x07\x02\x44\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xe3\x01\x36\x01\x75\x02\x31\x02\x07\x02\ \x45\x00\x00\x01\xb8\x00\x00\xff\xff\x00\x98\xff\x4b\x01\xc0\x00\ \x9b\x02\x07\x02\x38\x00\x00\xff\x57\x00\x00\xff\xff\x00\xc4\xff\ \x57\x01\x80\x00\x8f\x02\x07\x02\x39\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\x9e\xff\x57\x01\xb1\x00\x9b\x02\x07\x02\x3a\x00\x02\xff\ \x57\x00\x00\xff\xff\x00\xa5\xff\x4b\x01\xb2\x00\x9b\x02\x07\x02\ \x3b\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa1\xff\x57\x01\xd2\x00\ \x8f\x02\x07\x02\x3c\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa5\xff\ \x4b\x01\xb4\x00\x8f\x02\x07\x02\x3d\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xa2\xff\x4b\x01\xb5\x00\x9b\x02\x07\x02\x3e\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xb1\xff\x57\x01\xb9\x00\x8f\x02\x07\x02\ \x3f\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa6\xff\x4b\x01\xb2\x00\ \x9b\x02\x07\x02\x40\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa4\xff\ \x4b\x01\xb7\x00\x9b\x02\x07\x02\x41\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xd6\xfe\xfe\x01\x91\x00\xfb\x02\x07\x02\x42\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xc7\xfe\xfe\x01\x82\x00\xfb\x02\x07\x02\ \x43\x00\x00\xff\x57\x00\x00\xff\xff\x00\xed\xff\x4f\x01\x6b\xff\ \xd0\x02\x07\x02\x44\x00\x00\xff\x57\x00\x00\xff\xff\x00\xe3\xfe\ \xd5\x01\x75\xff\xd0\x02\x07\x02\x45\x00\x00\xff\x57\x00\x00\x00\ \x02\x00\x98\xff\xf4\x01\xc0\x01\x44\x00\x13\x00\x1f\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\ \x59\xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x14\x00\x01\xf4\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\x01\x2c\x20\x36\x28\x16\x16\x28\x36\x20\x20\x36\x28\ \x16\x16\x28\x36\x20\x13\x1d\x1d\x13\x13\x1d\x1d\x0c\x18\x2c\x3f\ \x27\x27\x3d\x2b\x17\x17\x2b\x3d\x27\x27\x3f\x2c\x18\x4f\x28\x33\ \x33\x24\x24\x33\x33\x28\x00\x00\x01\x00\xc4\x00\x00\x01\x80\x01\ \x38\x00\x0a\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x03\x3e\x59\xbb\x00\x07\x00\x01\x00\x00\x00\x04\ \x2b\x30\x31\x25\x23\x35\x3e\x03\x37\x33\x11\x23\x01\x15\x51\x13\ \x1c\x18\x16\x0c\x53\x6b\xd4\x40\x03\x06\x08\x0b\x08\xfe\xc8\x00\ \x01\x00\x9c\x00\x00\x01\xaf\x01\x44\x00\x17\x00\x2c\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\x59\xbb\ \x00\x0e\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x14\ \x00\x01\xf4\xb8\x00\x00\xd0\x30\x31\x37\x3e\x03\x35\x34\x26\x23\ \x22\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x06\x07\x33\x15\x21\xab\ \x1f\x35\x27\x17\x16\x16\x1d\x1a\x3e\x1d\x40\x29\x3c\x46\x32\x1f\ \x5c\xfe\xfc\x37\x14\x28\x25\x20\x0d\x13\x16\x23\x38\x1d\x24\x3a\ \x33\x23\x40\x1d\x57\x00\x00\x00\x01\x00\xa5\xff\xf4\x01\xb2\x01\ \x44\x00\x2a\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\ \xb9\x00\x27\x00\x03\x3e\x59\xbb\x00\x17\x00\x01\x00\x10\x00\x04\ \x2b\xba\x00\x0a\x00\x09\x00\x03\x2b\xb8\x00\x27\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x1f\x00\x09\x00\x0a\x11\x12\x39\x30\x31\x37\ \x1e\x01\x33\x32\x36\x35\x34\x26\x23\x35\x32\x36\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\x1e\x01\ \x15\x14\x0e\x02\x23\x22\x26\x27\xce\x10\x2d\x15\x11\x19\x23\x26\ \x1d\x20\x14\x13\x11\x22\x0f\x2a\x17\x44\x29\x19\x2b\x20\x13\x18\ \x1e\x23\x1f\x15\x24\x31\x1b\x1f\x46\x23\x60\x0b\x12\x0e\x0f\x11\ \x12\x37\x0e\x12\x0c\x0f\x10\x09\x3e\x12\x18\x0d\x17\x21\x14\x1b\ \x21\x0b\x0a\x26\x1c\x16\x25\x1a\x0f\x10\x1a\x00\x02\x00\xa1\x00\ \x00\x01\xd2\x01\x38\x00\x05\x00\x10\x00\x38\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xbb\x00\x10\ \x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x02\x00\x01\x00\x0d\x00\x04\ \x2b\xb8\x00\x10\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\ \xd0\x30\x31\x25\x35\x37\x23\x0f\x01\x17\x23\x15\x23\x35\x23\x35\ \x37\x33\x15\x33\x01\x41\x06\x04\x22\x21\xd2\x33\x5e\xa0\x78\x86\ \x33\x7f\x16\x63\x3e\x3b\x42\x3d\x3d\x33\xc8\xb9\x00\x00\x00\x00\ \x01\x00\xa5\xff\xf4\x01\xb4\x01\x38\x00\x20\x00\x44\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\ \x00\x0f\x00\x01\x00\x10\x00\x04\x2b\xbb\x00\x15\x00\x01\x00\x09\ \x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x12\ \x00\x09\x00\x15\x11\x12\x39\xb8\x00\x12\x10\xb8\x00\x0d\xd0\x30\ \x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x37\ \x33\x15\x23\x07\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\ \x27\xce\x11\x2b\x16\x12\x1a\x19\x13\x0f\x16\x0e\x2b\x0e\xd5\x85\ \x04\x08\x18\x0b\x32\x3b\x14\x24\x31\x1d\x22\x44\x23\x60\x0b\x12\ \x12\x11\x12\x12\x08\x08\x1d\xa1\x58\x23\x03\x03\x33\x2e\x17\x28\ \x1e\x11\x10\x1a\x00\x00\x00\x00\x02\x00\xa2\xff\xf4\x01\xb5\x01\ \x44\x00\x09\x00\x26\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0d\ \x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x1b\ \x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x10\x00\x1b\x00\x23\x11\x12\ \x39\xb8\x00\x10\x10\xb9\x00\x07\x00\x01\xf4\x30\x31\x25\x32\x36\ \x35\x34\x23\x22\x07\x1e\x01\x37\x2e\x01\x23\x22\x06\x07\x3e\x01\ \x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x35\x34\x3e\x02\x33\x32\ \x16\x17\x01\x33\x11\x13\x26\x19\x14\x05\x1c\x64\x0d\x1c\x12\x26\ \x22\x04\x10\x27\x18\x2e\x36\x13\x21\x2e\x1b\x48\x4e\x15\x29\x3d\ \x29\x20\x36\x17\x43\x11\x0f\x1f\x13\x1a\x12\x9b\x0b\x0c\x2e\x22\ \x0e\x0f\x30\x2e\x17\x29\x1e\x12\x5d\x4a\x22\x3d\x2e\x1c\x17\x12\ \x00\x00\x00\x00\x01\x00\xb1\x00\x00\x01\xb9\x01\x38\x00\x0f\x00\ \x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\ \x10\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x23\x35\x21\x15\x0e\ \x03\x07\x23\xe9\x02\x0d\x16\x20\x15\x92\x01\x08\x1d\x23\x15\x09\ \x02\x70\x22\x38\x35\x34\x1e\x57\x38\x20\x3b\x3c\x42\x27\x00\x00\ \x03\x00\xa6\xff\xf4\x01\xb2\x01\x44\x00\x0b\x00\x16\x00\x36\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\ \x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x11\x00\x04\x2b\xb8\x00\x34\ \x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x34\x00\x11\x11\x12\ \x39\xba\x00\x14\x00\x23\x00\x03\x11\x12\x39\x30\x31\x25\x14\x16\ \x33\x32\x36\x35\x34\x26\x27\x0e\x01\x37\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\x07\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\ \x32\x16\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\ \x01\x04\x17\x11\x11\x17\x1f\x17\x0c\x0e\x35\x13\x12\x0f\x0d\x11\ \x18\x7f\x26\x17\x17\x1d\x14\x22\x2d\x1a\x36\x48\x1e\x17\x0d\x16\ \x11\x09\x14\x23\x31\x1e\x3c\x4a\x57\x0e\x11\x10\x0d\x10\x12\x07\ \x06\x16\x60\x0c\x14\x0c\x10\x0d\x0b\x0e\x0f\x7a\x1f\x22\x0c\x04\ \x0f\x1c\x1e\x15\x21\x18\x0d\x31\x2a\x1a\x1c\x0b\x04\x07\x0f\x13\ \x1a\x12\x12\x21\x19\x0f\x35\x00\x02\x00\xa4\xff\xf4\x01\xb7\x01\ \x44\x00\x09\x00\x27\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\ \x2f\x1b\xb9\x00\x24\x00\x03\x3e\x59\xbb\x00\x1a\x00\x01\x00\x08\ \x00\x04\x2b\xbb\x00\x02\x00\x01\x00\x12\x00\x04\x2b\xba\x00\x10\ \x00\x1a\x00\x24\x11\x12\x39\xb8\x00\x10\x10\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x24\x10\xb9\x00\x0d\x00\x01\xf4\x30\x31\x25\x14\x33\ \x32\x36\x37\x2e\x01\x23\x22\x07\x1e\x01\x33\x32\x36\x37\x06\x23\ \x22\x26\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\ \x26\x27\x01\x02\x25\x0b\x18\x0b\x06\x1c\x0e\x23\x33\x0d\x1d\x12\ \x26\x21\x04\x21\x2e\x2d\x36\x13\x21\x2e\x1b\x23\x38\x27\x14\x15\ \x2a\x3d\x28\x21\x36\x16\xd4\x1f\x0a\x08\x1b\x13\x9c\x0b\x0b\x2d\ \x21\x1b\x2f\x2f\x17\x29\x1e\x12\x19\x2c\x3e\x25\x21\x3d\x2f\x1b\ \x16\x13\x00\x00\x01\x00\xd6\xff\xa7\x01\x91\x01\xa4\x00\x0d\x00\ \x0b\x00\xba\x00\x03\x00\x0b\x00\x03\x2b\x30\x31\x37\x34\x36\x37\ \x17\x0e\x01\x15\x14\x16\x17\x07\x2e\x01\xd6\x39\x33\x4f\x29\x2a\ \x2a\x29\x4f\x33\x39\xa6\x4f\x77\x38\x30\x30\x67\x37\x38\x67\x30\ \x30\x38\x77\x00\x01\x00\xc7\xff\xa7\x01\x82\x01\xa4\x00\x0d\x00\ \x0b\x00\xba\x00\x0b\x00\x03\x00\x03\x2b\x30\x31\x25\x14\x06\x07\ \x27\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x01\x82\x39\x33\x4f\x29\ \x2a\x2a\x29\x4f\x33\x39\xa6\x50\x77\x38\x30\x30\x67\x38\x37\x67\ \x30\x30\x38\x77\x00\x00\x00\x00\x01\x00\xed\xff\xf8\x01\x6b\x00\ \x79\x00\x0b\x00\x1a\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xed\x24\x1b\x1b\x24\ \x24\x1b\x1b\x24\x38\x1b\x26\x26\x1b\x1c\x24\x24\x00\x00\x00\x00\ \x01\x00\xe3\xff\x7e\x01\x75\x00\x79\x00\x10\x00\x1a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x17\x3e\x01\x35\x23\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\x07\xe3\x26\x27\x04\x19\x26\x26\x1b\ \x22\x25\x40\x3c\x4b\x0c\x23\x1d\x1f\x1d\x1a\x22\x32\x2f\x39\x50\ \x11\x00\x00\xff\xff\x00\x98\x01\x38\x01\xc0\x02\x88\x02\x07\x02\ \x38\x00\x00\x01\x44\x00\x00\xff\xff\x00\xc4\x01\x44\x01\x80\x02\ \x7c\x02\x07\x02\x39\x00\x00\x01\x44\x00\x00\xff\xff\x00\x9e\x01\ \x44\x01\xb1\x02\x88\x02\x07\x02\x3a\x00\x02\x01\x44\x00\x00\xff\ \xff\x00\xa5\x01\x38\x01\xb2\x02\x88\x02\x07\x02\x3b\x00\x00\x01\ \x44\x00\x00\xff\xff\x00\xa1\x01\x44\x01\xd2\x02\x7c\x02\x07\x02\ \x3c\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa5\x01\x38\x01\xb4\x02\ \x7c\x02\x07\x02\x3d\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa2\x01\ \x38\x01\xb5\x02\x88\x02\x07\x02\x3e\x00\x00\x01\x44\x00\x00\xff\ \xff\x00\xb1\x01\x44\x01\xb9\x02\x7c\x02\x07\x02\x3f\x00\x00\x01\ \x44\x00\x00\xff\xff\x00\xa6\x01\x38\x01\xb2\x02\x88\x02\x07\x02\ \x40\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa4\x01\x38\x01\xb7\x02\ \x88\x02\x07\x02\x41\x00\x00\x01\x44\x00\x00\xff\xff\x00\xd6\x00\ \xad\x01\x91\x02\xaa\x02\x07\x02\x42\x00\x00\x01\x06\x00\x00\xff\ \xff\x00\xc7\x00\xad\x01\x82\x02\xaa\x02\x07\x02\x43\x00\x00\x01\ \x06\x00\x00\xff\xff\x00\xed\x00\xfe\x01\x6b\x01\x7f\x02\x07\x02\ \x44\x00\x00\x01\x06\x00\x00\xff\xff\x00\xe3\x00\x84\x01\x75\x01\ \x7f\x02\x07\x02\x45\x00\x00\x01\x06\x00\x00\xff\xff\x00\x9a\x00\ \xfc\x01\xc5\x02\x55\x02\x06\x02\x57\x00\x00\xff\xff\x00\x80\x00\ \xfc\x01\xc4\x02\x55\x02\x06\x02\x74\x00\x00\xff\xff\x00\x85\x00\ \xfc\x01\xd3\x02\x55\x02\x06\x02\x65\x00\x00\x00\x02\x00\x9a\x00\ \xfc\x01\xc5\x02\x55\x00\x18\x00\x22\x00\x39\x00\xb8\x00\x11\x2f\ \xbb\x00\x1c\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\ \x05\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x20\x00\x04\x2b\xba\x00\ \x12\x00\x0c\x00\x16\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1f\x00\ \x01\xf4\x30\x31\x13\x34\x36\x37\x26\x23\x22\x06\x07\x27\x3e\x01\ \x33\x32\x16\x1d\x01\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\ \x33\x32\x36\x37\x35\x0e\x01\x9a\x5c\x67\x03\x35\x14\x2e\x19\x25\ \x21\x4c\x28\x41\x4a\x55\x07\x02\x16\x33\x1b\x30\x39\x64\x15\x11\ \x10\x1d\x0c\x36\x29\x01\x5f\x35\x3a\x0a\x2b\x0f\x0e\x43\x14\x18\ \x49\x4e\xba\x21\x12\x17\x3a\x32\x0e\x0f\x0e\x0c\x35\x07\x1a\x00\ \x02\x00\x9a\x00\xfc\x01\xde\x02\xd2\x00\x13\x00\x1e\x00\x54\x00\ \xb8\x00\x12\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\ \x01\x00\x0f\x3e\x59\xbb\x00\x17\x00\x01\x00\x0e\x00\x04\x2b\xbb\ \x00\x06\x00\x01\x00\x1c\x00\x04\x2b\xba\x00\x03\x00\x06\x00\x0e\ \x11\x12\x39\xba\x00\x10\x00\x0e\x00\x06\x11\x12\x39\xb8\x00\x10\ \x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x1e\x00\x01\ \xf4\x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\ \x23\x22\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x36\x35\x34\x23\x22\ \x07\x9a\x68\x02\x12\x2f\x17\x3f\x47\x18\x28\x33\x1c\x30\x29\x02\ \x09\x51\x68\x0d\x1a\x0d\x1a\x23\x38\x1d\x1c\x02\xd2\x70\x31\x11\ \x13\x5c\x4b\x2a\x43\x2d\x18\x2b\x23\x5f\x0b\x08\x2a\x32\x55\x1c\ \x00\x00\x00\x00\x01\x00\xaa\x00\xfc\x01\xd2\x02\x55\x00\x1c\x00\ \x17\x00\xbb\x00\x11\x00\x01\x00\x18\x00\x04\x2b\xbb\x00\x05\x00\ \x01\x00\x0b\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\ \x07\x26\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\xaa\x1f\x33\x43\x25\x22\x35\x12\x30\x19\x1a\x27\x2f\ \x2f\x24\x14\x20\x0e\x29\x1a\x40\x1d\x26\x40\x30\x1b\x01\xa8\x29\ \x40\x2d\x17\x15\x11\x40\x13\x30\x2a\x29\x31\x0f\x09\x41\x15\x14\ \x17\x2c\x40\x00\x02\x00\x80\x00\xfc\x01\xc4\x02\xd2\x00\x14\x00\ \x21\x00\x54\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xbb\x00\x18\x00\x01\x00\x12\ \x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xba\x00\x08\ \x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\ \x39\xb8\x00\x0e\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x08\x10\xb9\ \x00\x1c\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x27\ \x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\x33\x32\ \x36\x37\x35\x2e\x01\x23\x22\x06\x80\x18\x28\x33\x1b\x1c\x25\x11\ \x03\x67\x54\x08\x02\x12\x30\x18\x40\x4c\x6b\x1f\x1d\x10\x1a\x0c\ \x0d\x1c\x0e\x17\x24\x01\xa8\x28\x41\x2c\x18\x13\x10\x31\x6f\xfe\ \x32\x20\x11\x17\x5b\x52\x2f\x2a\x0b\x10\x82\x0b\x09\x2a\x00\x00\ \x02\x00\x94\x00\xfc\x01\xd1\x02\x55\x00\x1b\x00\x22\x00\x21\x00\ \xbb\x00\x11\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x1c\x00\x04\x2b\x30\x31\ \x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\ \x32\x37\x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\ \x94\x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\x32\x22\x26\ \x27\x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\x27\x05\x01\ \xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\x0e\x16\x06\x23\x1f\x15\x3d\ \x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\x20\x00\x00\x01\x00\xb7\x01\ \x04\x01\xfc\x02\xda\x00\x18\x00\x38\x00\xb8\x00\x0a\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x09\x3e\x59\xbb\ \x00\x15\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x0f\xd0\x30\ \x31\x01\x2e\x01\x23\x22\x1d\x01\x33\x15\x23\x15\x23\x35\x23\x35\ \x37\x35\x34\x3e\x02\x33\x32\x16\x17\x01\xe8\x0e\x23\x13\x3c\x6f\ \x6f\x67\x4a\x4a\x11\x25\x39\x27\x1d\x33\x15\x02\x7d\x05\x07\x33\ \x09\x51\xf8\xf8\x4d\x04\x09\x1c\x30\x24\x14\x0b\x07\x00\x00\x00\ \x03\x00\x85\x00\x7a\x01\xe4\x02\x55\x00\x0e\x00\x42\x00\x4e\x00\ \x64\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x3e\x00\x04\x2b\xbb\x00\x21\ \x00\x01\x00\x49\x00\x04\x2b\xbb\x00\x38\x00\x01\x00\x09\x00\x04\ \x2b\xbb\x00\x43\x00\x01\x00\x2e\x00\x04\x2b\xba\x00\x12\x00\x09\ \x00\x38\x11\x12\x39\xb8\x00\x12\x10\xb8\x00\x0d\xd0\xb8\x00\x2e\ \x10\xb8\x00\x31\xd0\xb8\x00\x19\xd0\xb8\x00\x23\x10\xb9\x00\x26\ \x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\x35\x34\x26\x2b\x01\ \x22\x26\x27\x06\x07\x34\x37\x35\x2e\x01\x35\x34\x36\x37\x35\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\x1e\x01\x15\x14\x0e\ \x02\x23\x22\x26\x27\x0e\x01\x15\x14\x16\x3b\x01\x32\x16\x15\x14\ \x06\x23\x22\x2e\x02\x37\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\ \x16\xda\x2c\x25\x26\x31\x1e\x1b\x28\x12\x17\x09\x15\x55\x34\x0e\ \x14\x16\x13\x14\x19\x18\x27\x34\x1c\x1e\x1a\x87\x41\x05\x08\x15\ \x26\x32\x1e\x0a\x15\x0d\x07\x06\x19\x1d\x3c\x42\x47\x6c\x5c\x20\ \x38\x28\x17\x9d\x14\x1c\x1c\x14\x13\x1b\x1b\xdd\x12\x11\x15\x10\ \x0e\x09\x02\x02\x0d\x20\x27\x1a\x03\x08\x1b\x15\x10\x21\x0c\x02\ \x0d\x2b\x1d\x1e\x2d\x1e\x0f\x08\x4b\x07\x16\x0b\x1d\x2a\x1b\x0d\ \x04\x03\x05\x09\x08\x0d\x0b\x26\x2d\x35\x42\x09\x14\x20\xf3\x19\ \x1a\x19\x1a\x1a\x19\x1a\x19\x00\x01\x00\x9c\x01\x04\x01\xd5\x02\ \xd2\x00\x14\x00\x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xbb\ \x00\x06\x00\x01\x00\x0f\x00\x04\x2b\xba\x00\x03\x00\x06\x00\x14\ \x11\x12\x39\xb8\x00\x03\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\ \x33\x15\x07\x3e\x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\ \x06\x07\x15\x23\x9c\x68\x05\x12\x35\x24\x39\x32\x68\x14\x19\x12\ \x1a\x10\x68\x02\xd2\x70\x3c\x11\x1e\x48\x3e\xcb\xbe\x1f\x1c\x10\ \x0e\xdb\x00\x00\x02\x00\xa9\x01\x04\x01\x9d\x02\xf6\x00\x05\x00\ \x11\x00\x2a\x00\xb8\x00\x03\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb9\x00\x04\x00\x01\xf4\xb8\ \x00\x00\x10\xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x33\x11\ \x23\x35\x23\x37\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\xa9\ \xe5\x68\x7d\xb0\x1e\x26\x26\x1e\x1d\x27\x27\x02\x4d\xfe\xb7\xf8\ \x7e\x21\x1d\x1b\x23\x23\x1b\x1d\x21\x00\x00\x00\x02\x00\x85\x00\ \x84\x01\x91\x02\xf6\x00\x13\x00\x1f\x00\x34\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xbb\x00\x0e\ \x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\ \xf4\xb8\x00\x00\x10\xb8\x00\x14\xdc\xb8\x00\x1a\xdc\x30\x31\x13\ \x33\x11\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x3d\ \x01\x23\x37\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x9d\xe5\ \x0e\x24\x3c\x2e\x1d\x30\x14\x1e\x13\x1d\x0c\x22\x1a\x7e\xb0\x1e\ \x26\x26\x1e\x1d\x27\x27\x02\x4d\xfe\xce\x1e\x37\x29\x19\x0d\x0a\ \x49\x09\x06\x1f\x23\xe5\x7e\x21\x1d\x1b\x23\x23\x1b\x1d\x21\x00\ \x01\x00\xa0\x01\x04\x01\xf6\x02\xd2\x00\x0c\x00\x53\x00\xb8\x00\ \x08\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\ \x1b\xb9\x00\x04\x00\x09\x3e\x59\xba\x00\x0a\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x0a\x10\xb9\x00\x02\x00\x01\xf4\xba\x00\x09\x00\ \x08\x00\x04\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x33\x11\x33\x37\x33\x07\x17\x23\x27\x07\x15\x23\xa0\x68\x02\ \x72\x71\x7c\x85\x70\x51\x2d\x68\x02\xd2\xfe\xfe\x7d\x88\xc1\x7d\ \x2c\x51\x00\x00\x01\x00\xb6\x00\xfc\x01\xd2\x02\xd2\x00\x11\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0f\x3e\x59\xbb\x00\x05\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x00\ \x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x26\x3d\x01\x23\xb6\xac\x1c\x17\x0a\ \x14\x0e\x11\x17\x25\x1c\x44\x3c\x44\x02\xd2\xfe\xb0\x1e\x16\x06\ \x05\x50\x06\x07\x4b\x3f\xfb\x00\x01\x00\x73\x01\x04\x01\xdf\x02\ \x55\x00\x1e\x00\x54\x00\xb8\x00\x1e\x2f\xb8\x00\x17\x2f\xb8\x00\ \x10\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x09\x3e\x59\xbb\x00\x0b\x00\x01\x00\x13\x00\x04\x2b\xbb\x00\x1a\ \x00\x01\x00\x06\x00\x04\x2b\xba\x00\x02\x00\x1e\x00\x01\x11\x12\ \x39\xb8\x00\x02\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb9\x00\x1c\ \x00\x01\xf4\xb8\x00\x15\xd0\x30\x31\x13\x33\x17\x33\x3e\x01\x33\ \x32\x17\x3e\x01\x33\x32\x16\x1d\x01\x23\x35\x34\x23\x22\x07\x15\ \x23\x35\x34\x23\x22\x07\x15\x23\x73\x4e\x08\x02\x0a\x20\x1d\x2e\ \x0c\x08\x24\x1d\x23\x27\x63\x0f\x10\x0c\x50\x11\x0f\x0c\x62\x02\ \x4d\x29\x14\x1d\x36\x16\x20\x3a\x31\xe6\xdf\x1a\x1e\xdb\xdf\x1a\ \x1e\xdb\x00\x00\x01\x00\x9c\x01\x04\x01\xd5\x02\x55\x00\x14\x00\ \x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0f\x00\x04\x2b\xba\x00\x02\x00\x14\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\ \x9c\x55\x07\x03\x15\x35\x25\x38\x33\x68\x14\x19\x12\x1a\x10\x68\ \x02\x4d\x2a\x14\x1e\x48\x3e\xcb\xbe\x1f\x1c\x10\x0e\xdb\x00\x00\ \x02\x00\x85\x00\xfc\x01\xd3\x02\x55\x00\x13\x00\x1f\x00\x17\x00\ \xbb\x00\x17\x00\x01\x00\x0f\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1d\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\ \x22\x06\x85\x1b\x2f\x3c\x21\x21\x3c\x2f\x1b\x1b\x2f\x3c\x21\x21\ \x3c\x2f\x1b\x6a\x1d\x20\x20\x1d\x1d\x20\x20\x1d\x01\xa8\x29\x40\ \x2d\x17\x17\x2d\x40\x29\x29\x40\x2c\x17\x17\x2c\x40\x29\x29\x31\ \x31\x29\x2a\x30\x30\x00\x00\x00\x02\x00\x9a\x00\x8c\x01\xde\x02\ \x55\x00\x14\x00\x1f\x00\x54\x00\xb8\x00\x01\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\xbb\x00\x09\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x18\x00\x01\x00\x11\x00\x04\ \x2b\xba\x00\x05\x00\x09\x00\x11\x11\x12\x39\xba\x00\x14\x00\x11\ \x00\x09\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x15\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x1f\x00\x01\xf4\x30\x31\x25\x15\x23\x11\x33\ \x17\x33\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x35\x34\x23\x22\x07\x01\x02\x68\x55\x07\x02\ \x14\x33\x1a\x3f\x46\x18\x28\x33\x1c\x17\x27\x13\x04\x0d\x1a\x0d\ \x1a\x23\x38\x1d\x1c\xeb\x5f\x01\xc1\x20\x11\x17\x5c\x4b\x2a\x43\ \x2d\x18\x11\x11\x45\x0b\x08\x2a\x32\x55\x1c\x00\x02\x00\x80\x00\ \x8c\x01\xc4\x02\x55\x00\x14\x00\x21\x00\x54\x00\xb8\x00\x0d\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\ \x59\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x18\x00\x01\ \x00\x12\x00\x04\x2b\xba\x00\x09\x00\x05\x00\x12\x11\x12\x39\xba\ \x00\x0f\x00\x12\x00\x1f\x11\x12\x39\xb8\x00\x0f\x10\xb9\x00\x1b\ \x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x1c\x00\x01\xf4\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\ \x23\x22\x26\x37\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x80\x18\x28\x33\x1b\x1c\x2a\x14\x03\x08\x51\x67\x04\x11\x2d\x17\ \x40\x4c\x6b\x1f\x1d\x10\x1a\x0c\x0d\x1c\x0e\x17\x24\x01\xa8\x28\ \x41\x2c\x18\x14\x16\x22\xfe\x3f\x62\x31\x0f\x14\x5b\x52\x2f\x2a\ \x0b\x10\x82\x0b\x09\x2a\x00\x00\x01\x00\xd6\x01\x04\x01\xef\x02\ \x55\x00\x12\x00\x36\x00\xb8\x00\x11\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0d\x00\x04\x2b\xba\x00\x02\x00\x11\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x15\x23\xd6\x56\ \x08\x03\x16\x40\x23\x16\x1b\x0e\x14\x10\x18\x13\x1a\x35\x13\x68\ \x02\x4d\x48\x29\x27\x08\x06\x56\x05\x04\x22\x2c\xa8\x00\x00\x00\ \x01\x00\x91\x00\xfc\x01\xcc\x02\x55\x00\x29\x00\x2b\x00\xbb\x00\ \x03\x00\x01\x00\x26\x00\x04\x2b\xbb\x00\x11\x00\x01\x00\x18\x00\ \x04\x2b\xba\x00\x06\x00\x26\x00\x18\x11\x12\x39\xba\x00\x1b\x00\ \x11\x00\x03\x11\x12\x39\x30\x31\x13\x1e\x01\x33\x32\x36\x35\x34\ \x26\x27\x2e\x03\x35\x34\x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\ \x06\x15\x14\x16\x17\x1e\x03\x15\x14\x06\x23\x22\x26\x27\xc0\x1b\ \x35\x1e\x1d\x1a\x30\x1f\x14\x27\x21\x14\x50\x46\x2b\x44\x1a\x2f\ \x15\x2c\x18\x1a\x16\x2d\x1f\x14\x29\x21\x15\x52\x4e\x2a\x53\x1e\ \x01\x6b\x11\x12\x0d\x0c\x0f\x12\x09\x06\x11\x17\x1f\x15\x2e\x3a\ \x1b\x10\x3d\x0d\x0e\x0c\x0b\x0e\x11\x08\x06\x10\x16\x21\x16\x2d\ \x3e\x1b\x14\x00\x01\x00\x96\x00\xfc\x01\xd3\x02\xa3\x00\x18\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\ \x00\x0d\x3e\x59\xbb\x00\x0d\x00\x01\x00\x13\x00\x04\x2b\xb8\x00\ \x06\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\x10\xb8\x00\x03\xd0\ \xb8\x00\x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x16\x33\x32\x37\x17\x0e\x01\x23\x22\x2e\ \x02\x35\xdb\x45\x4a\x0d\x57\x81\x81\x20\x23\x1f\x1b\x12\x14\x33\ \x1f\x28\x38\x22\x10\x01\xfc\x4d\x04\x56\x56\x51\x6e\x24\x1d\x0b\ \x4a\x07\x0b\x15\x26\x35\x21\x00\x01\x00\x90\x00\xfc\x01\xc8\x02\ \x4d\x00\x14\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\ \xb9\x00\x0b\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\ \x1b\xb9\x00\x14\x00\x09\x3e\x59\xbb\x00\x0f\x00\x01\x00\x06\x00\ \x04\x2b\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\xb8\x00\x02\x10\ \xb8\x00\x12\xd0\x30\x31\x01\x23\x27\x23\x0e\x01\x23\x22\x26\x3d\ \x01\x33\x15\x14\x16\x33\x32\x36\x37\x35\x33\x01\xc8\x55\x08\x02\ \x16\x35\x23\x39\x32\x68\x13\x19\x12\x1a\x10\x68\x01\x04\x2d\x18\ \x1d\x48\x3d\xcc\xbf\x1f\x1b\x0d\x14\xd8\x00\x00\x01\x00\x76\x01\ \x04\x01\xdc\x02\x4d\x00\x0d\x00\x33\x00\xb8\x00\x0c\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\ \xb8\x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x33\x17\x1e\ \x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x76\x68\x30\x08\x0d\x08\ \x02\x08\x0c\x08\x30\x63\x75\x78\x02\x4d\x97\x1a\x32\x1a\x1a\x32\ \x1a\x97\xfe\xb7\x00\x00\x00\x00\x01\x00\x53\x01\x04\x01\xe2\x02\ \x4d\x00\x21\x00\x5a\x00\xb8\x00\x17\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\x59\xb8\x00\x17\ \x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x0a\x10\xb9\ \x00\x1c\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x20\xd0\x30\x31\x13\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\ \x23\x53\x66\x13\x03\x03\x04\x02\x03\x07\x05\x13\x47\x15\x05\x06\ \x04\x03\x03\x03\x04\x12\x5e\x31\x78\x11\x03\x07\x02\x03\x02\x04\ \x05\x0f\x77\x02\x4d\x94\x19\x30\x19\x19\x32\x17\x64\x64\x19\x30\ \x19\x19\x30\x19\x94\xfe\xb7\x66\x17\x2f\x1a\x11\x2c\x23\x66\x00\ \x01\x00\x7c\x01\x04\x01\xda\x02\x4d\x00\x18\x00\x4b\x00\xb8\x00\ \x0f\x2f\xb8\x00\x17\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x09\x3e\x59\xba\x00\x12\x00\x0f\x00\x0b\x11\ \x12\x39\xb8\x00\x12\x10\xb8\x00\x00\xd0\xb8\x00\x12\x10\xb8\x00\ \x0d\xd0\xb8\x00\x06\xd0\x30\x31\x13\x27\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x26\x27\x23\x0e\x01\x0f\x01\ \x23\xeb\x68\x6f\x1f\x07\x12\x08\x03\x05\x0e\x06\x1a\x6c\x69\x6f\ \x6f\x22\x12\x13\x02\x08\x0e\x07\x1d\x6c\x01\xaf\x9e\x33\x0e\x1d\ \x0e\x0e\x1d\x0e\x33\xaa\x9f\x33\x1c\x1d\x0e\x1d\x0e\x33\x00\x00\ \x01\x00\x81\x00\x85\x01\xd6\x02\x4d\x00\x1d\x00\x41\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x09\x3e\x59\ \xbb\x00\x03\x00\x01\x00\x19\x00\x04\x2b\xba\x00\x0e\x00\x19\x00\ \x12\x11\x12\x39\xb8\x00\x0e\x10\xb8\x00\x07\xd0\x30\x31\x37\x1e\ \x01\x33\x32\x36\x3f\x01\x03\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\ \x01\x33\x03\x0e\x03\x23\x22\x26\x27\x37\xae\x05\x0c\x05\x19\x1a\ \x07\x05\x82\x68\x2f\x08\x0b\x07\x02\x06\x0b\x06\x28\x63\x74\x0c\ \x1c\x22\x2e\x1e\x10\x15\x0b\x12\xda\x02\x03\x17\x11\x11\x01\x3f\ \x88\x17\x2e\x19\x17\x2f\x18\x88\xfe\xb7\x20\x30\x1f\x10\x04\x03\ \x4e\x00\x00\x00\x01\x00\x97\x01\x04\x01\xd4\x02\x4d\x00\x09\x00\ \x34\x00\xb8\x00\x09\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x09\x3e\x59\xb8\x00\x09\x10\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\ \x00\x05\xd0\x30\x31\x13\x37\x23\x35\x21\x15\x07\x33\x15\x21\x97\ \xa7\x93\x01\x23\xa7\xad\xfe\xc3\x01\x3b\xc1\x51\x37\xc1\x51\x00\ \x03\x00\x94\x00\xfc\x01\xd1\x02\xee\x00\x1b\x00\x22\x00\x26\x00\ \x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x0f\x3e\x59\xbb\x00\x11\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x05\ \x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x1c\x00\x04\ \x2b\xb8\x00\x23\x10\xb8\x00\x25\xdc\x30\x31\x13\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x03\x33\x17\x23\x94\ \x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\x32\x22\x26\x27\ \x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\x27\x05\x2b\x6a\ \x3b\x4b\x01\xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\x0e\x16\x06\x23\ \x1f\x15\x3d\x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\x20\x01\x23\x6f\ \x00\x00\x00\x00\x03\x00\x94\x00\xfc\x01\xd1\x02\xee\x00\x1b\x00\ \x22\x00\x26\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\ \xb9\x00\x25\x00\x0f\x3e\x59\xbb\x00\x11\x00\x01\x00\x17\x00\x04\ \x2b\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\ \x00\x1c\x00\x04\x2b\xb8\x00\x25\x10\xb8\x00\x23\xdc\x30\x31\x13\ \x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\ \x37\x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x37\ \x23\x37\x33\x94\x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\ \x32\x22\x26\x27\x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\ \x27\x05\x56\x4c\x3b\x6b\x01\xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\ \x0e\x16\x06\x23\x1f\x15\x3d\x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\ \x20\xb4\x6f\x00\x02\x00\x94\x00\xfc\x01\xce\x02\x55\x00\x1a\x00\ \x21\x00\x21\x00\xbb\x00\x1e\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\ \x0e\x00\x01\x00\x07\x00\x04\x2b\xbb\x00\x1b\x00\x01\x00\x03\x00\ \x04\x2b\x30\x31\x13\x34\x36\x37\x33\x2e\x01\x23\x22\x06\x07\x27\ \x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x16\ \x33\x32\x36\x37\x94\x02\x02\xd2\x07\x29\x21\x14\x26\x14\x23\x1d\ \x40\x20\x4c\x5d\x1b\x2d\x3b\x20\x26\x39\x26\x12\x58\x1c\x20\x1a\ \x25\x05\x01\x9b\x0e\x16\x06\x23\x1e\x0b\x0b\x3f\x13\x13\x5c\x51\ \x28\x3f\x2d\x18\x18\x2b\x3a\x0d\x1b\x21\x1c\x20\x00\x00\x00\x00\ \x02\x00\x80\x00\xfc\x01\xc4\x02\x55\x00\x0c\x00\x20\x00\x54\x00\ \xb8\x00\x19\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\ \x16\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\x00\x04\x2b\xbb\ \x00\x12\x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x1a\x00\x1e\x00\x12\ \x11\x12\x39\xb8\x00\x1a\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x15\ \x00\x12\x00\x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x07\x00\x01\ \xf4\x30\x31\x13\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x07\x34\x3e\x02\x33\x32\x17\x33\x37\x33\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\xeb\x21\x1b\x0f\x1b\x0c\x0d\x1d\x0e\x16\x24\x6b\x18\ \x28\x34\x1c\x32\x26\x03\x09\x50\x54\x08\x02\x11\x32\x18\x3f\x4c\ \x01\xa9\x2f\x2a\x0b\x10\x82\x0b\x09\x2a\x2f\x28\x41\x2c\x18\x29\ \x21\xfe\xb7\x20\x11\x17\x5b\x00\x02\x00\x80\x00\x86\x01\xc4\x02\ \x55\x00\x21\x00\x2e\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\ \x00\x04\x2b\xbb\x00\x14\x00\x01\x00\x29\x00\x04\x2b\xbb\x00\x22\ \x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x07\x00\x0a\x00\x14\x11\x12\ \x39\xba\x00\x18\x00\x14\x00\x0a\x11\x12\x39\xb8\x00\x07\x10\xb9\ \x00\x25\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x26\x00\x01\xf4\x30\ \x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\ \x27\x37\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x15\x14\x16\xb8\x17\ \x32\x14\x24\x22\x02\x02\x11\x2c\x17\x1f\x33\x25\x14\x19\x29\x34\ \x1a\x18\x2c\x13\x02\x08\x53\x5b\x54\x1b\x48\x1d\x92\x0f\x1b\x0c\ \x0d\x1d\x0e\x17\x24\x22\xed\x0c\x0c\x1c\x16\x26\x0f\x11\x18\x2b\ \x3b\x23\x25\x3e\x2c\x18\x13\x14\x1f\xfe\xbc\x40\x43\x11\x13\xb5\ \x0d\x10\x71\x0b\x09\x29\x29\x26\x2a\x00\x00\x00\x02\x00\x9c\x01\ \x8e\x01\xbd\x02\xae\x00\x13\x00\x1f\x00\x17\x00\xbb\x00\x0a\x00\ \x01\x00\x1a\x00\x04\x2b\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2d\ \x1e\x35\x27\x17\x17\x27\x35\x1e\x1e\x35\x27\x16\x16\x27\x35\x1e\ \x1e\x25\x25\x1e\x1e\x25\x25\x01\x8e\x15\x27\x34\x20\x1f\x35\x27\ \x15\x15\x27\x35\x1f\x20\x34\x27\x15\x46\x29\x21\x20\x29\x29\x20\ \x21\x29\x00\x00\x02\x00\x24\x00\x3f\x02\x34\x02\x53\x00\x1e\x00\ \x2a\x00\x17\x00\xbb\x00\x22\x00\x01\x00\x1b\x00\x04\x2b\xbb\x00\ \x0b\x00\x01\x00\x28\x00\x04\x2b\x30\x31\x3f\x01\x26\x35\x34\x36\ \x37\x27\x37\x17\x36\x33\x32\x17\x37\x17\x07\x16\x15\x14\x06\x07\ \x17\x07\x27\x0e\x01\x23\x22\x27\x07\x13\x14\x16\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\x24\x51\x22\x11\x10\x50\x49\x59\x30\x36\x34\ \x32\x59\x49\x51\x22\x12\x11\x52\x49\x5a\x17\x34\x1a\x37\x2e\x5a\ \x69\x32\x24\x24\x32\x32\x24\x24\x32\x89\x52\x2e\x41\x20\x37\x16\ \x52\x4a\x5a\x19\x19\x5a\x4a\x52\x2d\x40\x21\x37\x17\x52\x4a\x5b\ \x0c\x0c\x18\x5b\x01\x0b\x2d\x35\x35\x2d\x2d\x35\x35\x00\x00\x00\ \x01\x00\x40\xff\x92\x02\x0b\x02\xe9\x00\x2c\x00\x47\x00\xb8\x00\ \x11\x2f\xb8\x00\x27\x2f\xb8\x00\x26\xdc\xb9\x00\x03\x00\x01\xf4\ \xb8\x00\x11\x10\xb8\x00\x12\xdc\xba\x00\x05\x00\x12\x00\x26\x11\ \x12\x39\xb8\x00\x0f\xd0\xb8\x00\x12\x10\xb9\x00\x19\x00\x01\xf4\ \xba\x00\x1c\x00\x26\x00\x12\x11\x12\x39\xb8\x00\x26\x10\xb8\x00\ \x29\xd0\x30\x31\x01\x2e\x01\x23\x22\x15\x14\x1e\x04\x15\x14\x06\ \x07\x15\x23\x35\x2e\x01\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\ \x04\x35\x34\x36\x37\x35\x33\x15\x1e\x01\x17\x01\xb8\x23\x3f\x29\ \x45\x2b\x41\x4b\x41\x2b\x56\x54\x62\x31\x68\x26\x40\x30\x55\x30\ \x24\x26\x2b\x41\x4c\x41\x2b\x58\x4c\x62\x34\x4d\x1f\x01\xc1\x19\ \x19\x2e\x12\x18\x18\x1c\x2b\x3e\x2d\x3f\x5d\x0e\x95\x92\x05\x29\ \x21\x64\x1d\x21\x18\x15\x15\x1c\x1a\x1c\x2a\x3e\x2e\x41\x56\x0c\ \x83\x82\x07\x2b\x20\x00\x00\x00\x01\x00\x43\x00\x00\x02\x26\x02\ \x87\x00\x2a\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x0b\x00\ \x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x23\xd0\x30\x31\x25\x15\x21\x35\ \x3e\x01\x35\x34\x27\x23\x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x17\x33\x15\x23\x1e\ \x01\x15\x14\x06\x07\x15\x02\x26\xfe\x1d\x34\x42\x03\x70\x54\x08\ \x0b\x22\x3c\x54\x32\x3e\x59\x23\x4f\x14\x2c\x1d\x30\x37\x08\x05\ \xa9\x92\x01\x01\x19\x1d\x7c\x7c\x5b\x14\x4f\x36\x0d\x0e\x56\x05\ \x14\x28\x14\x2f\x4c\x35\x1d\x2a\x27\x50\x15\x15\x2e\x30\x12\x24\ \x12\x5b\x07\x0e\x07\x24\x34\x1b\x04\x00\x00\x00\x01\x00\x1f\x00\ \x00\x02\x39\x02\x7b\x00\x1d\x00\x6c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x0b\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\ \x00\x13\x00\x09\x11\x12\x39\xb8\x00\x05\x10\xb8\x00\x0b\xd0\xb9\ \x00\x0e\x00\x01\xf4\xb8\x00\x19\xd0\xb8\x00\x18\xdc\xb8\x00\x0f\ \xd0\xb9\x00\x12\x00\x01\xf4\xb8\x00\x15\xd0\xb8\x00\x0b\x10\xb8\ \x00\x1c\xd0\x30\x31\x13\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\ \x03\x33\x15\x23\x15\x33\x15\x23\x15\x23\x35\x23\x35\x33\x35\x23\ \x35\x33\x03\xb6\x3d\x0e\x1c\x0f\x04\x0e\x1d\x0e\x3d\x93\xa3\x89\ \xaa\xaa\xaa\x93\xa9\xa9\xa9\x89\xa3\x02\x7b\x85\x21\x42\x20\x21\ \x42\x20\x85\xfe\xdb\x46\x37\x46\x93\x93\x46\x37\x46\x01\x25\x00\ \x01\x00\x2d\xff\xf4\x02\x47\x02\x87\x00\x31\x00\x6d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\ \xba\x00\x28\x00\x24\x00\x03\x2b\xb8\x00\x28\x10\xb9\x00\x2b\x00\ \x01\xf4\xb8\x00\x08\xd0\xb8\x00\x28\x10\xb8\x00\x0b\xd0\xb8\x00\ \x24\x10\xb8\x00\x11\xd0\xb8\x00\x24\x10\xb9\x00\x21\x00\x01\xf4\ \xb8\x00\x14\xd0\xb8\x00\x17\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x03\x10\xb9\x00\x2e\x00\x01\xf4\x30\x31\x25\x0e\x01\x23\x22\x2e\ \x02\x27\x23\x35\x37\x26\x34\x35\x3c\x01\x37\x23\x35\x37\x3e\x01\ \x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x33\x15\x21\x15\x1c\ \x01\x17\x33\x15\x23\x1e\x01\x33\x32\x36\x37\x02\x47\x29\x64\x3d\ \x33\x58\x47\x32\x0c\x40\x37\x01\x01\x37\x40\x19\x96\x6c\x33\x5f\ \x25\x51\x17\x34\x20\x33\x42\x0e\xfd\xfe\xf9\x01\xde\xd2\x10\x42\ \x31\x23\x36\x17\x50\x2d\x2f\x1d\x39\x55\x38\x45\x04\x07\x0c\x07\ \x07\x0c\x07\x44\x05\x70\x7a\x28\x26\x4f\x13\x18\x3e\x39\x4a\x15\ \x08\x0e\x07\x4b\x37\x3a\x1c\x1a\x00\x00\x00\x00\x02\x00\x60\xff\ \xd7\x02\x0b\x02\x8f\x00\x06\x00\x24\x00\x5c\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0b\x3e\x59\xbb\x00\x21\ \x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x20\x00\x04\ \x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\x00\x2f\xb8\x00\x21\ \x10\xb8\x00\x06\xd0\xb8\x00\x06\x2f\xb8\x00\x0a\x10\xb8\x00\x0d\ \xd0\xb8\x00\x0d\x2f\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\xb8\x00\x17\ \xd0\xb8\x00\x17\x2f\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\ \x01\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\ \x01\x17\x07\x26\x27\x11\x3e\x01\x37\x01\x37\x24\x24\x25\x23\xd4\ \x1d\x44\x22\x51\x31\x4f\x38\x1f\x20\x3a\x4e\x2f\x51\x27\x3f\x16\ \x43\x1e\x1b\x15\x24\x0f\x01\xb0\x10\x40\x2d\x2d\x41\x0f\x45\x19\ \x1d\x05\x5f\x5f\x06\x28\x41\x58\x36\x35\x56\x3f\x29\x08\x61\x5d\ \x04\x1d\x17\x5a\x18\x03\xfe\xf0\x04\x13\x0c\x00\x01\x00\x2e\xff\ \xa0\x02\x26\x02\x98\x00\x2b\x00\x42\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x26\x2f\x1b\xb9\x00\x26\x00\x0d\x3e\x59\xbb\x00\x16\x00\x01\ \x00\x10\x00\x04\x2b\xbb\x00\x08\x00\x01\x00\x09\x00\x04\x2b\xb8\ \x00\x26\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x1c\ \xd0\xb8\x00\x08\x10\xb8\x00\x20\xd0\x30\x31\x01\x2e\x01\x23\x22\ \x06\x0f\x01\x33\x15\x23\x07\x0e\x03\x23\x22\x26\x27\x37\x16\x17\ \x3e\x03\x3f\x01\x23\x35\x37\x33\x37\x3e\x03\x33\x32\x1e\x02\x17\ \x02\x0a\x0b\x1c\x11\x26\x27\x06\x07\x73\x7f\x17\x06\x17\x2d\x47\ \x36\x21\x32\x0d\x14\x19\x1d\x14\x1c\x13\x0e\x06\x11\x57\x4b\x18\ \x05\x08\x1e\x32\x49\x34\x0a\x1b\x1b\x18\x08\x02\x17\x05\x07\x2b\ \x23\x37\x6b\xbd\x2d\x4e\x3a\x21\x09\x07\x6c\x07\x02\x01\x0c\x20\ \x36\x2b\x92\x65\x06\x2b\x37\x4e\x32\x18\x03\x05\x07\x04\x00\x00\ \x03\x00\x4f\xff\x92\x02\x33\x02\xe9\x00\x07\x00\x0d\x00\x34\x00\ \xb1\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x16\xd0\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x14\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x24\x10\xb9\x00\x07\x00\ \x01\xf4\xb8\x00\x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xd0\xb8\x00\ \x00\x10\xb8\x00\x0d\xd0\xb8\x00\x14\x10\xb8\x00\x11\xd0\xb8\x00\ \x14\x10\xb8\x00\x13\xdc\xb8\x00\x17\xd0\xb8\x00\x16\x10\xb8\x00\ \x19\xd0\xb8\x00\x24\x10\xb8\x00\x21\xd0\xb8\x00\x24\x10\xb8\x00\ \x23\xdc\xb8\x00\x04\x10\xb9\x00\x28\x00\x01\xf4\xb8\x00\x23\x10\ \xb8\x00\x29\xd0\xb8\x00\x28\x10\xb8\x00\x2b\xd0\xb8\x00\x04\x10\ \xb8\x00\x31\xd0\xb8\x00\x03\x10\xb8\x00\x32\xd0\xb8\x00\x32\x2f\ \x30\x31\x25\x1e\x01\x17\x13\x26\x2b\x01\x07\x0e\x01\x15\x14\x17\ \x05\x0e\x01\x0f\x01\x23\x37\x26\x27\x07\x23\x37\x2e\x01\x35\x34\ \x3e\x02\x3f\x01\x33\x07\x33\x32\x16\x17\x37\x33\x07\x1e\x01\x17\ \x07\x26\x27\x03\x36\x37\x01\x32\x09\x13\x0b\x32\x0e\x0e\x0b\x34\ \x26\x28\x24\x01\x2d\x26\x5a\x36\x0c\x32\x0c\x15\x12\x0d\x32\x0e\ \x4b\x59\x22\x3f\x58\x37\x0c\x32\x0c\x08\x08\x10\x08\x0c\x32\x0d\ \x1a\x32\x15\x51\x0e\x11\x30\x32\x25\x76\x05\x07\x02\x01\xaa\x03\ \x10\x16\x65\x4b\x66\x37\x52\x29\x2e\x04\x63\x63\x03\x03\x69\x79\ \x20\x99\x76\x46\x71\x54\x34\x09\x67\x62\x01\x01\x64\x71\x0a\x1f\ \x16\x4f\x0b\x0b\xfe\x68\x09\x2b\x00\x00\x00\x00\x01\x00\x43\x00\ \x00\x02\x26\x02\x87\x00\x31\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x0a\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x24\x00\x01\x00\x27\x00\x04\x2b\ \xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\ \x08\xd0\xb8\x00\x08\x2f\xb8\x00\x27\x10\xb8\x00\x0d\xd0\xb8\x00\ \x24\x10\xb8\x00\x0f\xd0\xb8\x00\x0f\x2f\xb8\x00\x17\x10\xb9\x00\ \x1e\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x2a\xd0\xb8\x00\x06\x10\ \xb8\x00\x2c\xd0\x30\x31\x25\x15\x21\x35\x3e\x01\x37\x23\x35\x37\ \x33\x2e\x01\x27\x23\x35\x37\x26\x35\x34\x3e\x02\x33\x32\x16\x17\ \x07\x2e\x01\x23\x22\x06\x15\x1c\x01\x17\x33\x15\x23\x1e\x01\x17\ \x33\x15\x23\x0e\x01\x07\x15\x02\x26\xfe\x1d\x2d\x3f\x08\x70\x4f\ \x1c\x03\x08\x05\x5b\x43\x03\x22\x3c\x54\x32\x3e\x59\x23\x4f\x14\ \x2c\x1d\x30\x37\x01\xb5\xa2\x03\x07\x03\x95\x92\x04\x19\x17\x7c\ \x7c\x5b\x11\x41\x2c\x45\x05\x0c\x18\x0c\x45\x05\x0f\x0e\x2f\x4c\ \x35\x1d\x2a\x27\x50\x15\x15\x2e\x30\x05\x0a\x05\x4b\x0c\x18\x0c\ \x4a\x1a\x29\x16\x04\x00\x00\x00\x05\x00\x1b\x00\x00\x02\x3c\x02\ \x7b\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x2b\x00\xe1\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\ \x3e\x59\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\x26\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x03\x10\xb8\x00\x08\xd0\xba\x00\x09\x00\x15\x00\x23\x11\ \x12\x39\xb8\x00\x00\x10\xb8\x00\x0a\xd0\xb8\x00\x26\x10\xb8\x00\ \x0c\xd0\xb8\x00\x23\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x10\xd0\xb8\x00\x03\x10\xb8\x00\x11\xd0\xb8\x00\x04\x10\ \xb8\x00\x13\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\x04\x10\ \xb8\x00\x1b\xd0\xb8\x00\x03\x10\xb8\x00\x1d\xd0\xb8\x00\x1d\x2f\ \xb8\x00\x00\x10\xb8\x00\x1f\xd0\xb8\x00\x26\x10\xb8\x00\x21\xd0\ \xb8\x00\x21\x2f\xb8\x00\x26\x10\xb8\x00\x29\xd0\x30\x31\x01\x23\ \x17\x33\x17\x23\x17\x33\x27\x33\x27\x23\x27\x33\x27\x23\x05\x15\ \x33\x15\x23\x15\x23\x27\x23\x15\x23\x35\x23\x35\x37\x35\x23\x35\ \x37\x35\x33\x17\x33\x35\x33\x15\x33\x15\x01\x91\x3b\x10\x2f\x06\ \x21\x2a\x04\xe1\x3b\x10\x2f\x06\x21\x2a\x04\x01\x47\x45\x45\x88\ \x59\x4b\x6a\x46\x46\x46\x46\x88\x59\x4b\x6a\x45\x01\x56\x30\x3a\ \x7f\xb9\x30\x3a\x7e\xb8\x30\x3a\xec\xec\xec\xec\x34\x06\x30\x34\ \x06\xeb\xeb\xeb\xeb\x3a\x00\x00\x03\x00\x15\x00\x00\x02\x3b\x02\ \x7b\x00\x05\x00\x0b\x00\x21\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\x04\x00\ \x01\x00\x07\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x05\x00\x04\x2b\ \xb8\x00\x1b\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x04\x10\xb8\x00\ \x0d\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\x07\x10\xb8\x00\ \x18\xd0\xb8\x00\x07\x10\xb8\x00\x20\xd0\x30\x31\x01\x32\x36\x37\ \x23\x15\x35\x15\x33\x2e\x01\x23\x05\x23\x0e\x03\x2b\x01\x15\x23\ \x11\x23\x35\x37\x35\x33\x32\x1e\x02\x17\x33\x01\x06\x2c\x36\x0b\ \x8f\x8e\x0a\x36\x2c\x01\x35\x3d\x08\x2b\x3f\x50\x2c\x2c\x8b\x44\ \x44\xb7\x2c\x50\x3f\x2a\x08\x3e\x01\x33\x26\x23\x49\xec\x48\x26\ \x22\xa3\x2b\x3e\x29\x13\xd7\x01\x7c\x55\x05\xa5\x11\x27\x3f\x2d\ \x00\x00\x00\x00\x03\x00\x5b\x00\x00\x02\x32\x02\x8b\x00\x03\x00\ \x10\x00\x2d\x00\x56\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x22\x00\x01\x00\x07\x00\x04\ \x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb9\x00\x1a\x00\x01\ \xf4\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x22\x10\xb8\x00\x13\xdc\xb8\ \x00\x27\xd0\xb8\x00\x13\x10\xb9\x00\x2d\x00\x01\xf4\xb8\x00\x29\ \xd0\xb8\x00\x2d\x10\xb8\x00\x2c\xdc\x30\x31\x37\x21\x15\x21\x01\ \x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x13\x15\x07\x11\ \x23\x27\x23\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x33\x32\x16\x17\ \x27\x35\x23\x35\x33\x35\x33\x15\x68\x01\xa3\xfe\x5d\x01\x09\x12\ \x22\x15\x1f\x32\x2a\x23\x17\x23\x13\xc1\x48\x64\x09\x03\x16\x3b\ \x23\x4e\x5d\x1e\x32\x3f\x20\x25\x2f\x17\x04\x9a\x9a\x79\x4a\x4a\ \x01\x68\x0e\x0c\x2b\x26\x30\x2c\x10\x14\x01\x61\x44\x06\xfe\x6e\ \x24\x15\x19\x62\x5c\x2a\x42\x2f\x18\x13\x14\x43\x0f\x4a\x31\x31\ \x00\x00\x00\x00\x04\x00\x16\x00\x00\x02\x3b\x02\x7b\x00\x08\x00\ \x0d\x00\x12\x00\x35\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x2e\ \x2f\x1b\xb9\x00\x2e\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x24\x2f\x1b\xb9\x00\x24\x00\x03\x3e\x59\xbb\x00\x09\x00\x01\x00\ \x22\x00\x04\x2b\xb8\x00\x2e\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\ \x10\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\xdc\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x06\x10\xb8\x00\x14\xd0\xb8\x00\x00\x10\xb8\x00\ \x1a\xd0\xb8\x00\x0b\x10\xb8\x00\x1c\xd0\xb8\x00\x0b\x10\xb8\x00\ \x26\xd0\xb8\x00\x00\x10\xb8\x00\x29\xd0\xb8\x00\x06\x10\xb8\x00\ \x2a\xd0\xb8\x00\x10\x10\xb8\x00\x2d\xd0\xb8\x00\x10\x10\xb8\x00\ \x34\xd0\x30\x31\x01\x36\x34\x35\x34\x26\x27\x23\x15\x17\x32\x37\ \x23\x15\x35\x15\x33\x26\x23\x05\x23\x16\x14\x15\x1c\x01\x07\x33\ \x15\x23\x0e\x03\x2b\x01\x15\x23\x11\x23\x35\x37\x35\x23\x35\x37\ \x35\x33\x32\x1e\x02\x17\x33\x01\x77\x01\x01\x01\x92\x22\x3e\x1e\ \x7e\x7d\x1b\x40\x01\x35\x3b\x01\x01\x3b\x46\x0c\x2e\x3c\x48\x27\ \x2c\x8b\x43\x43\x43\x43\xb7\x28\x48\x3b\x2d\x0c\x47\x01\x94\x05\ \x08\x05\x08\x0d\x06\x2d\x61\x27\x27\xec\x24\x24\x5e\x07\x0d\x07\ \x05\x08\x05\x3a\x22\x31\x20\x10\xd7\x01\x5a\x34\x05\x2e\x34\x05\ \x81\x0e\x1e\x31\x23\x00\x00\x00\x01\x00\x43\xff\x92\x02\x1a\x02\ \xe9\x00\x26\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x26\x00\ \x04\x2b\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb8\x00\x12\x10\xb8\x00\ \x15\xd0\xb8\x00\x12\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x08\x10\ \xb9\x00\x22\x00\x01\xf4\x30\x31\x01\x33\x11\x0e\x01\x07\x15\x23\ \x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\x17\x07\x2e\ \x01\x23\x22\x06\x15\x14\x16\x33\x32\x37\x35\x23\x01\x4b\xce\x1f\ \x49\x29\x62\x32\x53\x3c\x22\x21\x3c\x53\x33\x62\x2a\x4b\x1d\x51\ \x17\x34\x20\x42\x46\x4a\x41\x22\x14\x4c\x01\x6a\xfe\xd4\x1b\x24\ \x07\x66\x66\x08\x31\x51\x71\x47\x45\x6f\x54\x35\x0a\x68\x65\x07\ \x28\x1f\x50\x16\x19\x71\x65\x68\x6c\x0d\x7a\x00\x02\x00\x4f\xff\ \x92\x02\x33\x02\xe0\x00\x06\x00\x24\x00\x7b\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x0b\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\ \xb8\x00\x17\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0d\x10\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\ \xb8\x00\x19\xdc\xb8\x00\x00\x10\xb8\x00\x21\xd0\xb8\x00\x06\x10\ \xb8\x00\x22\xd0\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\x01\ \x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\ \x17\x07\x2e\x01\x27\x11\x36\x37\x01\x43\x30\x31\x32\x2f\xf0\x21\ \x4f\x2f\x51\x35\x5a\x41\x24\x23\x40\x5a\x37\x51\x2a\x4e\x1f\x51\ \x10\x22\x14\x2b\x23\x02\x0e\x11\x6a\x54\x55\x6a\x12\x1e\x24\x2d\ \x08\x65\x64\x06\x30\x52\x72\x4a\x47\x72\x54\x34\x08\x5d\x5b\x05\ \x27\x20\x4f\x0d\x14\x05\xfe\x5a\x0a\x28\x00\x00\x01\x00\x58\x00\ \x00\x02\x0b\x02\x7b\x00\x1c\x00\x70\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0b\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x1c\ \x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x19\xd0\xb8\x00\x16\xd0\xb8\ \x00\x04\xd0\xb8\x00\x16\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\x07\ \xd0\xb8\x00\x12\x10\xb8\x00\x10\xd0\xb9\x00\x0d\x00\x01\xf4\xb8\ \x00\x0a\xd0\xb8\x00\x0a\x2f\x30\x31\x01\x23\x1e\x01\x17\x33\x15\ \x23\x0e\x01\x07\x17\x23\x27\x23\x35\x33\x32\x37\x23\x35\x37\x33\ \x2e\x01\x2b\x01\x35\x21\x02\x0b\x95\x1c\x25\x08\x4c\x4a\x08\x49\ \x36\xbb\xa3\xa4\x56\x4a\x74\x18\xd6\x51\x83\x0d\x45\x38\x4a\x01\ \xb3\x02\x31\x11\x32\x1f\x4a\x40\x51\x14\xe0\xc9\x75\x47\x44\x06\ \x1f\x18\x75\x00\x01\x00\x24\xff\xf1\x02\x27\x02\x7b\x00\x23\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x1f\x00\x10\x00\ \x19\x11\x12\x39\xb8\x00\x1f\x10\xb8\x00\x22\xd0\xb8\x00\x11\xd0\ \xb8\x00\x1f\x10\xb8\x00\x14\xd0\xb8\x00\x1e\xd0\xb8\x00\x15\xd0\ \xb8\x00\x1e\x10\xb8\x00\x1b\xd0\xb8\x00\x18\xd0\x30\x31\x25\x3e\ \x03\x35\x34\x26\x27\x37\x16\x15\x14\x0e\x02\x27\x35\x07\x35\x37\ \x35\x07\x35\x37\x35\x33\x15\x37\x15\x07\x15\x37\x15\x07\x15\x01\ \x0c\x1f\x39\x2c\x1a\x01\x03\x79\x08\x3b\x6f\xa0\x64\x55\x55\x55\ \x55\x93\xa0\xa0\xa0\xa0\x7d\x03\x15\x22\x2c\x1b\x05\x0e\x0b\x1c\ \x20\x13\x44\x69\x45\x22\x03\xe8\x29\x51\x29\x37\x29\x51\x29\xc6\ \x7e\x4d\x51\x4d\x37\x4d\x51\x4d\xa7\x00\x00\x00\x02\x00\x11\x00\ \x1c\x02\x47\x02\x70\x00\x03\x00\x07\x00\x0b\x00\xba\x00\x07\x00\ \x03\x00\x03\x2b\x30\x31\x3f\x01\x17\x07\x01\x07\x27\x37\x11\xba\ \x33\xa2\x01\xeb\xba\x33\xa2\x65\xad\x2f\xc7\x02\x0b\xae\x30\xc7\ \x00\x00\x00\xff\xff\x00\x11\x00\x1c\x02\x47\x02\x70\x02\x06\x02\ \x88\x00\x00\xff\xff\x00\x11\x00\x1c\x02\x47\x02\x70\x02\x06\x02\ \x88\x00\x00\xff\xff\x00\x12\xff\xf4\x02\x48\x02\x88\x02\x27\x02\ \x38\xff\x81\x01\x44\x00\x26\x02\x88\x01\x00\x00\x07\x02\x38\x00\ \x80\x00\x00\x00\x07\x00\x1f\xff\xf4\x02\x46\x02\x87\x00\x0d\x00\ \x19\x00\x1d\x00\x2b\x00\x37\x00\x47\x00\x53\x00\x76\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x38\x2f\x1b\xb9\x00\x38\x00\x03\x3e\ \x59\xbb\x00\x24\x00\x01\x00\x32\x00\x04\x2b\xbb\x00\x0e\x00\x01\ \x00\x00\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x14\x00\x01\xf4\xb8\ \x00\x1e\x10\xb9\x00\x2c\x00\x01\xf4\xb8\x00\x24\x10\xb8\x00\x40\ \xd0\xb8\x00\x2c\x10\xb8\x00\x48\xd0\xb8\x00\x32\x10\xb8\x00\x4e\ \xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x0e\x02\ \x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x0d\x01\x27\x25\ \x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x0e\x02\x27\x32\x36\ \x35\x34\x26\x23\x22\x06\x15\x14\x16\x05\x22\x2e\x02\x35\x34\x36\ \x33\x32\x16\x15\x14\x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\x9e\x36\x49\x49\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\ \x1b\x11\x11\x1a\x1a\x01\xb9\xfe\x2a\x13\x01\xc3\xfe\x7e\x36\x49\ \x49\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\x1b\x11\x11\x1a\x1a\x01\ \x2e\x1b\x2f\x22\x14\x4a\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\x1b\ \x11\x11\x1a\x1a\x01\x84\x48\x3c\x3c\x43\x43\x3c\x1e\x31\x22\x13\ \x3f\x1e\x27\x27\x1a\x1a\x27\x27\x1e\x20\x94\x2c\xc6\xfd\xf3\x48\ \x3c\x3c\x43\x43\x3c\x1e\x31\x22\x13\x3e\x1f\x27\x27\x19\x1a\x26\ \x27\x1f\x3e\x13\x22\x31\x1e\x3c\x43\x43\x3c\x1e\x31\x22\x13\x3e\ \x1f\x27\x27\x19\x1a\x26\x27\x1f\x00\x00\x00\xff\xff\x00\x11\x00\ \x00\x02\x51\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x06\x02\x3c\x7f\x00\x00\x00\xff\xff\x00\x11\x00\ \x00\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3a\x00\x80\x00\x00\xff\xff\x00\x18\x00\ \x00\x02\x52\x02\x88\x02\x27\x02\x3b\xff\x81\x01\x44\x00\x26\x02\ \x88\x07\x00\x00\x07\x02\x3c\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x88\x02\x27\x02\x3a\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x88\x02\x27\x02\x3b\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x3d\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x3f\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\x00\x01\x00\x46\x00\ \x5e\x02\x12\x02\x36\x00\x0b\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\x30\x31\x13\x23\x35\x33\x35\x33\x15\x33\x15\x23\ \x15\x23\xf6\xb0\xb0\x6c\xb0\xb0\x6c\x01\x16\x68\xb8\xb8\x68\xb8\ \x00\x00\x00\x00\x01\x00\x46\x01\x16\x02\x12\x01\x7e\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x46\x01\xcc\xfe\x34\x01\x7e\x68\x00\x00\x01\x00\x54\x00\ \x70\x02\x04\x02\x23\x00\x0b\x00\x29\x00\xba\x00\x05\x00\x09\x00\ \x03\x2b\xba\x00\x0a\x00\x09\x00\x05\x11\x12\x39\xb8\x00\x0a\x10\ \xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x07\xd0\xb8\x00\x04\xd0\ \x30\x31\x3f\x01\x27\x37\x17\x37\x17\x07\x17\x07\x27\x07\x54\x8e\ \x8e\x49\x8f\x8f\x49\x8e\x8e\x49\x8f\x8f\xba\x8f\x90\x4a\x90\x90\ \x4a\x90\x8f\x4a\x90\x90\x00\x00\x03\x00\x46\x00\x49\x02\x12\x02\ \x4b\x00\x0b\x00\x17\x00\x1b\x00\x25\x00\xbb\x00\x19\x00\x01\x00\ \x1a\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x00\xdc\xb8\x00\x06\xdc\ \xb8\x00\x1a\x10\xb8\x00\x0f\xdc\xb8\x00\x15\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x03\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x03\x21\x15\x21\x01\x2c\x23\x2e\x2e\x23\ \x23\x2e\x2e\x74\x2e\x23\x23\x2e\x2e\x23\x23\x2e\x95\x01\xcc\xfe\ \x34\x01\xb1\x2b\x22\x22\x2b\x2b\x22\x22\x2b\xfe\xe5\x22\x2b\x2b\ \x22\x22\x2b\x2b\x01\x0a\x68\xff\xff\x00\xb8\x00\xec\x01\xa0\x01\ \xd7\x02\x07\x01\xe3\x00\x00\x00\xf8\x00\x00\xff\xff\x00\x46\x00\ \xa3\x02\x12\x01\xf2\x02\x26\x02\x97\x00\x74\x00\x06\x02\x97\x00\ \x8d\x00\x00\x00\x01\x00\x74\x00\x1f\x01\xf6\x02\x79\x00\x07\x00\ \x3b\x00\xbb\x00\x00\x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\xba\x00\ \x04\x00\x00\x00\x07\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x05\xd0\ \xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x25\x15\x05\ \x15\x05\x15\x25\x74\x01\x82\xfe\xf7\x01\x09\xfe\x7e\x01\x7f\xfa\ \x85\xa6\x04\xa6\x85\xfa\x00\x00\x01\x00\x62\x00\x1f\x01\xe4\x02\ \x79\x00\x07\x00\x3b\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\ \x01\xf4\xba\x00\x04\x00\x07\x00\x00\x11\x12\x39\xb8\x00\x07\x10\ \xb8\x00\x05\xd0\xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x01\x05\x35\x25\x35\x25\x35\x05\x01\xe4\xfe\x7e\x01\x09\xfe\xf7\ \x01\x82\x01\x19\xfa\x85\xa6\x04\xa6\x85\xfa\x00\x02\x00\x46\x00\ \x00\x02\x12\x02\x30\x00\x03\x00\x0d\x00\x4e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x04\ \x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\xba\x00\x09\x00\x04\x00\x0d\x11\x12\x39\xb8\x00\x09\x10\xb8\ \x00\x05\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x0c\ \xd0\xb9\x00\x0b\x00\x01\xf4\x30\x31\x37\x21\x15\x21\x11\x25\x15\ \x0f\x01\x15\x1f\x01\x15\x25\x46\x01\xcc\xfe\x34\x01\xcc\xac\x8b\ \x8b\xac\xfe\x34\x68\x68\x01\xa2\x8e\x79\x2e\x22\x04\x22\x2e\x79\ \x8e\x00\x00\x00\x02\x00\x46\x00\x00\x02\x12\x02\x30\x00\x03\x00\ \x0d\x00\x4e\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x03\x3e\x59\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\ \x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x08\x00\x0d\x00\x04\ \x11\x12\x39\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x08\x10\xb8\x00\x0c\xd0\xb9\x00\x0b\x00\x01\xf4\x30\ \x31\x37\x21\x15\x21\x01\x05\x35\x3f\x01\x35\x2f\x01\x35\x05\x46\ \x01\xcc\xfe\x34\x01\xcc\xfe\x34\xac\x8b\x8b\xac\x01\xcc\x68\x68\ \x01\x28\x8e\x79\x2e\x22\x04\x22\x2e\x79\x8e\x00\x02\x00\x46\x00\ \x00\x02\x12\x02\x36\x00\x0b\x00\x0f\x00\x44\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xbb\x00\x03\ \x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\ \x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x00\x10\xb8\x00\x08\xd0\xb8\ \x00\x0e\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x0b\xdc\x30\x31\x13\ \x23\x35\x33\x35\x33\x15\x33\x15\x23\x15\x23\x07\x21\x15\x21\xf6\ \xb0\xb0\x6c\xb0\xb0\x6c\xb0\x01\xcc\xfe\x34\x01\x26\x68\xa8\xa8\ \x68\x88\x36\x68\x00\x00\x00\x00\x01\x00\x56\x01\x12\x02\x02\x02\ \x9e\x00\x09\x00\x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x02\xdc\xba\x00\x05\x00\x00\ \x00\x02\x11\x12\x39\xb8\x00\x09\xd0\x30\x31\x13\x33\x13\x23\x2f\ \x01\x23\x0f\x01\x23\xf1\x76\x9b\x79\x2e\x2d\x04\x2d\x2e\x79\x02\ \x9e\xfe\x74\x80\x87\x87\x80\x00\x01\x00\x46\x00\x28\x02\x12\x02\ \x6c\x00\x13\x00\x47\x00\xbb\x00\x07\x00\x01\x00\x0d\x00\x04\x2b\ \xb8\x00\x0d\x10\xb8\x00\x0e\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x0e\x10\xb8\x00\x03\xd0\xb8\x00\x0d\x10\xb8\x00\ \x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xdc\xb8\x00\x07\x10\xb8\x00\ \x0a\xd0\xb8\x00\x00\x10\xb8\x00\x13\xdc\x30\x31\x37\x23\x35\x33\ \x37\x23\x35\x21\x37\x33\x07\x33\x15\x23\x07\x33\x15\x21\x07\x23\ \x9f\x59\x93\x49\xdc\x01\x15\x48\x5d\x47\x59\x93\x49\xdc\xfe\xeb\ \x48\x5d\xa2\x67\x82\x67\x7a\x7a\x67\x82\x67\x7a\x00\x00\x00\x00\ \x01\x00\x34\x00\xea\x02\x24\x01\xaa\x00\x17\x00\x27\x00\xbb\x00\ \x03\x00\x01\x00\x14\x00\x04\x2b\xbb\x00\x0f\x00\x01\x00\x08\x00\ \x04\x2b\xb8\x00\x03\x10\xb8\x00\x0b\xd0\xb8\x00\x0f\x10\xb8\x00\ \x17\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x34\x20\x54\x2f\x1f\x2e\ \x27\x23\x15\x15\x26\x0e\x58\x20\x54\x2f\x1f\x2e\x27\x23\x15\x14\ \x27\x0e\x01\x13\x4e\x43\x18\x1c\x18\x28\x2a\x29\x4e\x43\x18\x1c\ \x18\x28\x2a\xff\xff\x00\x34\x00\x77\x02\x24\x02\x1e\x02\x26\x02\ \xa3\x00\x74\x00\x06\x02\xa3\x00\x8d\x00\x00\x00\x01\x00\x46\x00\ \x5e\x02\x12\x01\x7e\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x13\x21\x11\x23\x35\x21\x46\x01\xcc\x6c\ \xfe\xa0\x01\x7e\xfe\xe0\xb8\x00\x01\x00\x0e\xff\xf4\x02\x4a\x01\ \xf0\x00\x26\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\ \x1b\xb9\x00\x22\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x10\x10\xb9\x00\x0d\ \x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\x12\xd0\xb8\x00\x22\x10\xb9\ \x00\x1b\x00\x01\xf4\x30\x31\x25\x34\x3e\x02\x35\x23\x14\x06\x07\ \x27\x3e\x01\x35\x23\x35\x37\x21\x15\x23\x0e\x02\x14\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x01\x69\x01\x02\x02\ \x77\x08\x07\x93\x0e\x0b\x60\x4a\x01\xf2\x50\x02\x03\x01\x16\x16\ \x05\x0a\x08\x12\x0d\x25\x1a\x2a\x38\x23\x0f\x9e\x0b\x31\x3e\x45\ \x1f\x59\xc8\x64\x09\x66\xc3\x53\x6e\x06\x74\x21\x49\x40\x31\x09\ \x1a\x13\x02\x02\x6c\x06\x09\x18\x2d\x3e\x00\x00\x03\xff\xf3\x00\ \x79\x02\x65\x02\x13\x00\x1f\x00\x2a\x00\x36\x00\x5a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\xbb\ \x00\x23\x00\x01\x00\x19\x00\x04\x2b\xbb\x00\x2b\x00\x01\x00\x00\ \x00\x04\x2b\xbb\x00\x08\x00\x01\x00\x31\x00\x04\x2b\xba\x00\x1c\ \x00\x19\x00\x0f\x11\x12\x39\xb8\x00\x1c\x10\xb8\x00\x20\xd0\xb8\ \x00\x0b\xd0\xb8\x00\x0f\x10\xb9\x00\x29\x00\x01\xf4\xb8\x00\x1c\ \x10\xb8\x00\x2e\xd0\x30\x31\x37\x22\x2e\x02\x35\x34\x36\x33\x32\ \x16\x17\x33\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\ \x27\x23\x0e\x01\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\ \x32\x36\x37\x2e\x01\x23\x22\x06\x15\x14\x16\x82\x1e\x34\x27\x16\ \x5a\x49\x2f\x40\x17\x04\x23\x4c\x33\x22\x3b\x2c\x1a\x1a\x2f\x3e\ \x24\x35\x51\x28\x04\x17\x41\x99\x17\x30\x22\x22\x26\x2b\x24\x36\ \xde\x17\x24\x0e\x11\x27\x16\x1a\x1a\x1f\x93\x1c\x2f\x3d\x22\x5e\ \x68\x2c\x28\x35\x2f\x1d\x33\x46\x29\x35\x51\x38\x1d\x2e\x40\x26\ \x2e\xcb\x2f\x2e\x30\x20\x29\x2e\xaa\x1b\x1f\x25\x1e\x21\x1a\x1a\ \x28\x00\x00\x00\x01\x00\x3e\xff\x3c\x02\x4b\x01\xf0\x00\x27\x00\ \x73\x00\xb8\x00\x27\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\ \x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x20\x10\xb9\x00\ \x05\x00\x01\xf4\xba\x00\x1d\x00\x09\x00\x20\x11\x12\x39\xb8\x00\ \x1d\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\x12\x00\ \x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x0e\ \x03\x15\x14\x16\x33\x3a\x01\x37\x17\x0e\x01\x23\x22\x26\x27\x23\ \x0e\x01\x23\x22\x26\x27\x1e\x01\x17\x23\x3e\x93\x23\x22\x1d\x30\ \x17\x94\x02\x03\x03\x02\x14\x0f\x05\x07\x06\x12\x0d\x25\x18\x31\ \x39\x0d\x04\x14\x3e\x25\x14\x25\x0e\x01\x04\x06\x95\x01\xf0\xfe\ \xe1\x36\x2a\x22\x2b\x01\x32\x2c\x60\x5d\x54\x1f\x17\x12\x02\x6d\ \x05\x07\x30\x2e\x2c\x2d\x09\x10\x3c\x63\x37\x00\x02\x00\x3c\xff\ \xf4\x02\x1d\x02\xa0\x00\x0d\x00\x2f\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xbb\x00\ \x25\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x28\x00\x1b\x00\x25\x11\x12\x39\xb8\x00\x28\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x11\x10\xb9\x00\x2c\x00\x01\xf4\ \x30\x31\x25\x32\x3e\x02\x37\x2e\x01\x23\x22\x06\x15\x14\x16\x03\ \x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x35\x34\x26\x23\x22\x06\x07\x01\x10\x13\ \x24\x1f\x19\x08\x15\x33\x1b\x2a\x37\x2e\x73\x29\x58\x35\x3a\x57\ \x3b\x1d\x2a\x4c\x68\x3f\x28\x47\x36\x1f\x20\x39\x4e\x2f\x23\x44\ \x19\x33\x3b\x1d\x32\x17\x6b\x0e\x21\x35\x26\x21\x1b\x36\x39\x2c\ \x2b\x01\xeb\x23\x27\x2c\x4f\x70\x44\x56\x8c\x64\x37\x1c\x33\x49\ \x2d\x33\x56\x3d\x22\x20\x1d\x11\x54\x60\x17\x16\x00\x00\x00\x00\ \x01\x00\x93\xff\x62\x01\xd4\x03\x17\x00\x27\x00\x17\x00\xbb\x00\ \x03\x00\x01\x00\x23\x00\x04\x2b\xbb\x00\x10\x00\x01\x00\x16\x00\ \x04\x2b\x30\x31\x17\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x07\x26\x23\x22\x06\x15\x14\x1e\x02\x15\ \x14\x0e\x02\x23\x22\x26\x27\x37\xa1\x08\x11\x0b\x27\x18\x0c\x0e\ \x0c\x0f\x29\x4a\x3b\x11\x20\x08\x0f\x0c\x17\x27\x18\x0c\x0d\x0c\ \x0f\x29\x49\x3b\x12\x1f\x08\x0e\x2c\x02\x02\x3e\x47\x39\x70\x70\ \x74\x3e\x35\x5a\x42\x26\x05\x02\x6b\x04\x3e\x47\x39\x70\x70\x74\ \x3e\x35\x5a\x42\x26\x05\x03\x6a\x00\x00\x00\x00\x01\x00\x21\xff\ \xb0\x02\x59\x03\x34\x00\x0e\x00\x15\x00\xba\x00\x07\x00\x09\x00\ \x03\x2b\xb8\x00\x09\x10\xb9\x00\x04\x00\x01\xf4\x30\x31\x25\x1e\ \x01\x17\x33\x36\x37\x13\x33\x03\x23\x03\x07\x27\x37\x01\x32\x06\ \x0a\x05\x04\x06\x09\x9d\x62\xd8\x66\x96\x4a\x1a\xae\x92\x14\x2a\ \x14\x2b\x27\x02\xa2\xfc\x7c\x01\x9b\x1f\x45\x47\x00\x00\x00\x00\ \x02\x00\x0e\x00\x00\x02\x4a\x02\x8c\x00\x05\x00\x0b\x00\x45\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x03\xd0\xb8\x00\x01\x10\xb9\x00\x08\x00\ \x01\xf4\x30\x31\x37\x13\x33\x13\x15\x21\x25\x2f\x01\x23\x0f\x01\ \x0e\xc6\xb1\xc5\xfd\xc4\x01\x9b\x45\x39\x04\x37\x44\x59\x02\x33\ \xfd\xcd\x59\x7c\xdc\xc3\xc3\xdc\x00\x00\x00\x00\x01\x00\x0c\x00\ \x00\x02\x4c\x02\x98\x00\x2d\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x2c\ \x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x17\x00\x01\ \xf4\xb8\x00\x1b\xd0\xb8\x00\x0c\x10\xb9\x00\x23\x00\x01\xf4\xb8\ \x00\x01\x10\xb8\x00\x2b\xd0\x30\x31\x37\x33\x35\x2e\x03\x35\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x15\x33\x15\x23\x35\ \x3e\x01\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x16\x17\x15\x23\ \x0c\x6c\x10\x20\x1b\x11\x27\x47\x64\x3e\x3e\x64\x47\x27\x11\x1b\ \x20\x10\x6c\xf4\x29\x24\x10\x1f\x2d\x1d\x1d\x2d\x1f\x10\x24\x29\ \xf4\x77\x04\x10\x30\x3b\x47\x29\x44\x70\x51\x2d\x2d\x51\x70\x44\ \x29\x47\x3b\x30\x10\x04\x77\x6a\x30\x70\x4d\x2a\x48\x33\x1d\x1d\ \x33\x48\x2a\x4d\x70\x30\x6a\x00\x01\x00\x3b\xff\x88\x02\x2e\x02\ \x7b\x00\x0d\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0b\x3e\x59\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\ \x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\xba\x00\x07\x00\x0a\ \x00\x04\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x00\xd0\xb8\x00\x04\ \x10\xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\x30\x31\x01\ \x03\x35\x21\x15\x21\x15\x17\x07\x15\x21\x15\x21\x35\x01\x09\xc4\ \x01\xd1\xfe\xe2\xa7\xae\x01\x3d\xfe\x0d\x01\x01\x01\x23\x57\x7c\ \x04\xfa\xf9\x04\x7c\x57\x00\x00\x01\x00\x19\xff\x88\x02\x3f\x02\ \x7b\x00\x07\x00\x22\x00\xb8\x00\x06\x2f\xb8\x00\x03\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb9\ \x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x21\x11\x23\x19\ \x02\x26\x93\xff\x00\x93\x02\x7b\xfd\x0d\x02\x73\xfd\x8d\x00\x00\ \x02\x00\x4b\xff\xf4\x02\x1c\x02\xd0\x00\x09\x00\x2c\x00\x59\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x00\x00\x0d\x00\x1d\x11\x12\x39\xb8\x00\x1d\x10\ \xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x25\x00\x01\xf4\ \xb8\x00\x10\xd0\xb8\x00\x00\x10\xb8\x00\x17\xd0\xb8\x00\x0d\x10\ \xb9\x00\x29\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x23\x22\ \x06\x15\x13\x0e\x01\x23\x22\x26\x27\x0e\x01\x07\x27\x3e\x01\x37\ \x35\x34\x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x15\x14\x16\x33\ \x32\x36\x37\x01\x3c\x2c\x2b\x15\x11\x14\x1d\xe0\x21\x54\x35\x45\ \x6b\x11\x0b\x18\x0c\x37\x1a\x30\x17\x1c\x33\x44\x29\x49\x58\x18\ \x31\x4e\x36\x2d\x20\x1d\x2e\x12\x01\x6e\x2a\x58\x36\x20\x1f\x34\ \x40\xfe\x50\x1d\x30\x49\x4a\x08\x0d\x08\x5a\x10\x1e\x0f\xdc\x3f\ \x5c\x3b\x1d\x5a\x50\x2f\x52\x4e\x4c\x28\x19\x32\x2a\x1c\x10\x00\ \x02\x00\x1a\xff\xf4\x02\x3e\x02\x94\x00\x20\x00\x32\x00\x43\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\ \x3e\x59\xbb\x00\x32\x00\x01\x00\x1b\x00\x04\x2b\xb8\x00\x0a\x10\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x29\x00\x01\xf4\ \x30\x31\x37\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\ \x35\x34\x3e\x02\x33\x32\x1e\x02\x1d\x01\x21\x22\x1d\x01\x14\x16\ \x01\x32\x3d\x01\x34\x27\x2e\x01\x23\x22\x06\x07\x0e\x01\x1d\x01\ \x14\x33\xa4\x1a\x47\x29\x35\x5e\x23\x26\x29\x71\x44\x39\x63\x4b\ \x2b\x2b\x4b\x63\x39\x39\x63\x4b\x2b\xfe\x62\x04\x05\x01\x17\x06\ \x0a\x1a\x46\x26\x29\x47\x1a\x03\x05\x04\x44\x1d\x1f\x3d\x33\x3c\ \x48\x35\x5b\x7a\x46\x46\x7a\x5b\x35\x35\x5b\x7a\x46\x08\x04\xe0\ \x06\x09\x01\x05\x06\xe0\x0c\x0a\x1a\x1c\x1f\x1b\x05\x0c\x05\xdc\ \x06\x00\x00\x00\x01\x00\x0d\xff\xef\x02\x38\x02\x09\x00\x09\x00\ \x0d\x00\xbb\x00\x04\x00\x01\x00\x05\x00\x04\x2b\x30\x31\x37\x01\ \x17\x07\x21\x15\x21\x17\x07\x01\x0d\x01\x16\x46\x96\x01\x65\xfe\ \x9b\x96\x46\xfe\xea\xfe\x01\x0b\x4f\x84\x74\x84\x4f\x01\x0b\x00\ \x01\x00\x1f\xff\xe6\x02\x39\x02\x11\x00\x09\x00\x15\x00\xba\x00\ \x00\x00\x04\x00\x03\x2b\xba\x00\x06\x00\x04\x00\x00\x11\x12\x39\ \x30\x31\x09\x01\x07\x27\x11\x23\x11\x07\x27\x01\x01\x2e\x01\x0b\ \x4f\x84\x74\x84\x4f\x01\x0b\x02\x11\xfe\xea\x45\x96\xfe\x9a\x01\ \x66\x96\x45\x01\x16\x00\x00\x00\x01\x00\x1f\xff\xef\x02\x4a\x02\ \x09\x00\x09\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x03\x00\x04\x2b\ \x30\x31\x25\x01\x27\x37\x21\x35\x21\x27\x37\x01\x02\x4a\xfe\xea\ \x45\x96\xfe\x9a\x01\x66\x96\x45\x01\x16\xfa\xfe\xf5\x4f\x84\x74\ \x84\x4f\xfe\xf5\x00\x00\x00\x00\x01\x00\x1f\xff\xe6\x02\x39\x02\ \x11\x00\x09\x00\x15\x00\xba\x00\x04\x00\x00\x00\x03\x2b\xba\x00\ \x06\x00\x00\x00\x04\x11\x12\x39\x30\x31\x05\x01\x37\x17\x11\x33\ \x11\x37\x17\x01\x01\x2a\xfe\xf5\x4f\x84\x74\x84\x4f\xfe\xf5\x1a\ \x01\x16\x46\x96\x01\x65\xfe\x9b\x96\x46\xfe\xea\x00\x00\x00\x00\ \x01\x00\xb6\x00\x8e\x01\xa2\x01\x7f\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x15\x23\xb6\xec\xec\x01\ \x7f\xf1\x00\x00\x01\x00\x87\x00\x62\x01\xd1\x01\xab\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x37\x17\x07\ \x87\xa5\xa5\xa5\x01\x06\xa5\xa5\xa4\x00\x00\x00\x03\x00\x62\x00\ \x3a\x01\xf6\x01\xd3\x00\x0b\x00\x1f\x00\x33\x00\x27\x00\xbb\x00\ \x20\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x16\x00\x01\x00\x2a\x00\ \x04\x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\x2a\x10\xb8\x00\ \x06\xd0\x30\x31\x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x07\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x01\x2c\x1d\x25\x25\x1d\x1d\x25\x25\x1d\x2b\x4a\x36\x1f\x1f\x36\ \x4a\x2b\x2b\x4a\x36\x1f\x1f\x36\x4a\x2b\x1a\x2d\x22\x13\x13\x22\ \x2d\x1a\x1a\x2d\x22\x13\x13\x22\x2d\xc1\x28\x1d\x1e\x28\x28\x1e\ \x1d\x28\x87\x1e\x36\x4b\x2d\x2d\x4b\x37\x1e\x1e\x37\x4b\x2d\x2d\ \x4b\x36\x1e\x4a\x13\x22\x30\x1d\x1d\x30\x22\x13\x13\x22\x30\x1d\ \x1d\x30\x22\x13\x00\x00\x00\x00\x02\x00\x93\x00\x66\x01\xc5\x01\ \x9d\x00\x03\x00\x09\x00\x15\x00\xba\x00\x00\x00\x08\x00\x03\x2b\ \xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\x30\x31\x25\x35\x23\x15\ \x27\x37\x33\x15\x07\x23\x01\x75\xb1\x31\x42\xf0\x38\xfa\x97\xb5\ \xb5\xcd\x39\xf4\x43\x00\x00\x00\x01\x00\x17\x00\x15\x02\x41\x02\ \x21\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x37\x01\x33\x01\x15\x21\x17\x01\x13\x04\x01\x13\xfd\xd6\x17\x02\ \x0a\xfd\xf6\x02\x00\x00\x00\x00\x02\x00\x17\x00\x15\x02\x41\x02\ \x21\x00\x02\x00\x08\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\x07\x00\ \x04\x2b\x30\x31\x25\x27\x0f\x01\x01\x33\x01\x15\x21\x01\x9c\x70\ \x6f\xa6\x01\x13\x04\x01\x13\xfd\xd6\x74\xdf\xdf\x5d\x02\x0a\xfd\ \xf6\x02\x00\x00\x01\x00\x39\x00\x05\x02\x46\x02\x2e\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x01\x15\ \x01\x23\x39\x02\x02\x0b\xfd\xf5\x02\x02\x2e\xfe\xee\x04\xfe\xed\ \x00\x00\x00\x00\x02\x00\x39\x00\x05\x02\x46\x02\x2e\x00\x02\x00\ \x08\x00\x29\x00\xba\x00\x04\x00\x07\x00\x03\x2b\xba\x00\x00\x00\ \x07\x00\x04\x11\x12\x39\xba\x00\x01\x00\x07\x00\x04\x11\x12\x39\ \xba\x00\x02\x00\x07\x00\x04\x11\x12\x39\x30\x31\x01\x27\x15\x03\ \x33\x01\x15\x01\x23\x01\x77\xde\x60\x02\x02\x0b\xfd\xf5\x02\x01\ \x1a\x6f\xdf\x01\x84\xfe\xee\x04\xfe\xed\x00\x00\x01\x00\x17\x00\ \x13\x02\x41\x02\x1f\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\ \x03\x2b\x30\x31\x13\x35\x21\x15\x01\x23\x17\x02\x2a\xfe\xed\x04\ \x02\x1d\x02\x02\xfd\xf6\x00\x00\x02\x00\x17\x00\x12\x02\x41\x02\ \x1f\x00\x02\x00\x08\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x00\x00\ \x04\x2b\xba\x00\x05\x00\x00\x00\x03\x11\x12\x39\x30\x31\x13\x17\ \x37\x25\x21\x15\x01\x23\x01\xbd\x6f\x70\xfe\x7b\x02\x2a\xfe\xed\ \x04\xfe\xed\x01\xbf\xde\xde\x60\x02\xfd\xf5\x02\x0b\x00\x00\x00\ \x01\x00\x12\x00\x05\x02\x1f\x02\x2e\x00\x05\x00\x0b\x00\xba\x00\ \x02\x00\x03\x00\x03\x2b\x30\x31\x13\x01\x33\x11\x23\x01\x12\x02\ \x0b\x02\x02\xfd\xf5\x01\x1c\x01\x12\xfd\xd7\x01\x13\x00\x00\x00\ \x02\x00\x12\x00\x05\x02\x1f\x02\x2e\x00\x02\x00\x08\x00\x33\x00\ \xba\x00\x08\x00\x03\x00\x03\x2b\xba\x00\x00\x00\x03\x00\x08\x11\ \x12\x39\xba\x00\x01\x00\x03\x00\x08\x11\x12\x39\xba\x00\x02\x00\ \x03\x00\x08\x11\x12\x39\xba\x00\x06\x00\x03\x00\x08\x11\x12\x39\ \x30\x31\x25\x35\x07\x01\x23\x01\x35\x01\x33\x01\xbf\xde\x01\x3e\ \x02\xfd\xf5\x02\x0b\x02\xaa\xdf\x6f\xfe\xeb\x01\x13\x04\x01\x12\ \x00\x00\x00\x00\x02\xff\xe3\xff\xf6\x02\x75\x02\xa3\x00\x03\x00\ \x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\ \x00\x08\x10\xb9\x00\x00\x00\x01\xf4\x30\x31\x25\x11\x21\x11\x03\ \x37\x21\x11\x07\x21\x02\x1d\xfe\x00\x3a\x4a\x02\x48\x41\xfd\xaf\ \x30\x02\x1a\xfd\xe6\x02\x32\x41\xfd\x9e\x4b\x00\x02\xff\xe3\xff\ \xf6\x02\xc1\x03\x2d\x00\x12\x00\x1f\x00\x58\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\ \x00\x0c\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x0f\ \x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\ \xf4\x30\x31\x01\x0e\x01\x0f\x01\x2e\x01\x27\x37\x1e\x01\x17\x33\ \x3e\x01\x37\x21\x11\x21\x13\x0e\x01\x07\x11\x07\x21\x11\x37\x21\ \x3e\x01\x37\x02\x1d\x35\x5b\x22\x8a\x1c\x42\x2e\x5d\x23\x31\x14\ \x04\x1d\x52\x31\xfe\x5f\x02\x00\xa4\x13\x26\x13\x41\xfd\xaf\x4a\ \x01\xca\x1b\x38\x1d\x02\x15\x52\xcb\x7c\x10\x4c\x80\x44\x3d\x37\ \x6f\x39\x64\xb9\x53\xfd\xe6\x02\xae\x12\x28\x17\xfd\xb4\x4b\x02\ \x6c\x41\x27\x45\x1e\x00\x00\x00\x01\xff\xf0\xff\xec\x02\x70\x02\ \xb0\x00\x15\x00\x15\x00\xba\x00\x0f\x00\x00\x00\x03\x2b\xba\x00\ \x0a\x00\x00\x00\x0f\x11\x12\x39\x30\x31\x17\x2e\x03\x27\x37\x1e\ \x01\x17\x33\x3e\x03\x37\x17\x0e\x03\x07\x8d\x10\x21\x26\x2c\x1a\ \x5d\x28\x3d\x18\x04\x1b\x47\x54\x5f\x33\x5a\x32\x62\x59\x4e\x1e\ \x14\x2a\x4d\x48\x47\x25\x3d\x3e\x7d\x3f\x5a\xaa\x9a\x84\x34\x4e\ \x30\x7a\x99\xb7\x6c\x00\x00\x00\x01\x00\x35\xff\xe4\x02\x2d\x02\ \xb6\x00\x28\x00\x17\x00\xb8\x00\x09\x2f\xba\x00\x05\x00\x24\x00\ \x03\x2b\xb8\x00\x09\x10\xb8\x00\x20\xd0\x30\x31\x37\x34\x3e\x02\ \x33\x32\x16\x17\x11\x33\x1e\x03\x17\x1e\x03\x15\x14\x06\x07\x27\ \x3e\x01\x35\x34\x2e\x02\x27\x11\x14\x06\x23\x22\x2e\x02\x35\x1a\ \x2e\x3e\x24\x14\x20\x06\x4f\x04\x0a\x0f\x18\x13\x23\x30\x1d\x0d\ \x1f\x12\x31\x08\x06\x0f\x1c\x29\x1a\x6b\x5b\x15\x28\x1f\x14\x3a\ \x1b\x30\x24\x15\x07\x05\x02\x04\x09\x0d\x0e\x11\x0d\x18\x2f\x30\ \x35\x1e\x2a\x50\x1a\x14\x17\x2a\x1b\x16\x2c\x25\x1e\x09\xfe\x97\ \x62\x65\x0a\x15\x20\x00\x00\x00\x02\x00\x4e\xff\xf6\x02\x0a\x02\ \x9e\x00\x05\x00\x0f\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\ \x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xbb\x00\x02\x00\x01\x00\x0a\ \x00\x04\x2b\xb8\x00\x04\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x1b\ \x01\x33\x13\x03\x23\x3f\x02\x2f\x01\x23\x0f\x01\x1f\x01\x4e\xa2\ \x78\xa2\xa2\x78\x3e\x36\x2d\x2d\x36\x04\x36\x2d\x2d\x36\x01\x4a\ \x01\x54\xfe\xac\xfe\xac\x7b\x79\x60\x60\x79\x79\x60\x60\x79\x00\ \x01\x00\xe5\x01\x63\x01\x8e\x02\xae\x00\x04\x00\x0b\x00\xba\x00\ \x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x0f\x01\x23\xfb\x93\x1a\ \x2f\x60\x02\xae\x91\xba\x00\xff\xff\x00\x70\x01\x63\x02\x04\x02\ \xae\x02\x26\x02\xc7\x8b\x00\x00\x06\x02\xc7\x76\x00\x00\x00\xff\ \xff\x00\xb8\x01\x22\x01\x8d\x02\xb9\x02\x06\x01\xee\x00\x00\xff\ \xff\x00\xca\x01\x22\x01\x9f\x02\xb9\x02\x06\x01\xef\x00\x00\x00\ \x01\x00\xea\x01\xf9\x01\x89\x02\xf3\x00\x0d\x00\x13\x00\xba\x00\ \x00\x00\x0d\x00\x03\x2b\xba\x00\x07\x00\x06\x00\x03\x2b\x30\x31\ \x13\x32\x36\x35\x34\x26\x23\x35\x36\x16\x15\x14\x06\x27\xea\x32\ \x24\x24\x32\x51\x4e\x4e\x51\x02\x32\x26\x1e\x1e\x26\x36\x03\x45\ \x38\x38\x45\x03\x00\x00\x00\x00\x01\x00\xd1\x01\xf9\x01\x70\x02\ \xf3\x00\x0d\x00\x13\x00\xba\x00\x06\x00\x07\x00\x03\x2b\xba\x00\ \x0d\x00\x00\x00\x03\x2b\x30\x31\x01\x22\x06\x15\x14\x16\x33\x15\ \x06\x26\x35\x34\x36\x17\x01\x70\x32\x25\x25\x32\x51\x4e\x4e\x51\ \x02\xba\x26\x1e\x1e\x26\x36\x03\x45\x38\x38\x45\x03\x00\x00\xff\ \xff\x00\x8f\x02\x3e\x01\x7e\x02\xe5\x02\x06\x02\xdf\x00\x00\xff\ \xff\x00\xda\x02\x3e\x01\xc9\x02\xe5\x02\x06\x02\xe1\x00\x00\xff\ \xff\x00\x8a\x02\x3e\x01\xce\x02\xe5\x02\x06\x02\xe3\x00\x00\xff\ \xff\x00\x8a\x02\x3e\x01\xce\x02\xe5\x02\x06\x02\xf5\x00\x00\x00\ \x01\x00\xe0\x01\x79\x01\x78\x02\xe4\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x03\x23\xe0\x98\x1f\x5a\ \x02\xe4\xfe\x95\x00\x00\x00\xff\xff\x00\xa2\x02\x50\x01\xb6\x02\ \xad\x02\x06\x02\xe7\x00\x00\xff\xff\x00\xda\x02\x3e\x01\xc9\x02\ \xe5\x02\x06\x02\xe1\x00\x00\xff\xff\x00\x8f\x02\x3e\x01\x7e\x02\ \xe5\x02\x06\x02\xdf\x00\x00\x00\x01\x00\xe0\xfe\xf7\x01\x78\x00\ \x62\x00\x03\x00\x0b\x00\xba\x00\x03\x00\x00\x00\x03\x2b\x30\x31\ \x01\x23\x13\x33\x01\x78\x98\x1f\x5a\xfe\xf7\x01\x6b\x00\x00\xff\ \xff\x00\x81\x02\x3f\x01\xd7\x02\xce\x02\x06\x02\xe5\x00\x00\xff\ \xff\x00\x70\x02\x3b\x01\xe8\x02\xd8\x02\x06\x02\xed\x00\x00\xff\ \xff\x00\xa2\x02\x50\x01\xb6\x02\xad\x02\x06\x02\xe7\x00\x00\xff\ \xff\x00\x99\x02\x3e\x01\xbf\x02\xda\x02\x06\x02\xe9\x00\x00\xff\ \xff\x00\xbb\x02\x24\x01\x9d\x02\xf0\x02\x06\x02\xf1\x00\x00\xff\ \xff\x00\xaf\x02\x3d\x02\x13\x02\xd4\x02\x06\x02\xf3\x00\x00\xff\ \xff\x00\xca\x02\x39\x01\x8e\x02\xee\x02\x06\x02\xeb\x00\x00\xff\ \xff\x00\xc7\xff\x23\x01\x83\x00\x04\x02\x06\x02\xff\x02\x00\xff\ \xff\x00\xd6\xff\x2e\x01\xa5\x00\x02\x02\x06\x03\x01\x00\x00\x00\ \x01\x00\x8f\x02\x3e\x01\x7e\x02\xe5\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\x8f\x96\x59\x6b\ \x02\xe5\xa7\x00\x01\x00\x8a\x02\xbe\x01\x77\x03\x36\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\ \x8a\x9c\x51\x75\x03\x36\x78\x00\x01\x00\xda\x02\x3e\x01\xc9\x02\ \xe5\x00\x03\x00\x0b\x00\xba\x00\x02\x00\x00\x00\x03\x2b\x30\x31\ \x01\x23\x37\x33\x01\x45\x6b\x59\x96\x02\x3e\xa7\x00\x00\x00\x00\ \x01\x00\xe1\x02\xbe\x01\xce\x03\x36\x00\x03\x00\x0b\x00\xba\x00\ \x02\x00\x00\x00\x03\x2b\x30\x31\x01\x23\x37\x33\x01\x56\x75\x51\ \x9c\x02\xbe\x78\x00\x00\x00\x00\x01\x00\x8a\x02\x3e\x01\xce\x02\ \xe5\x00\x07\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x04\x10\xb8\x00\x03\xdc\xb8\x00\x06\xd0\x30\x31\x13\x33\ \x17\x23\x27\x23\x07\x23\xee\x7c\x64\x6b\x35\x04\x35\x6b\x02\xe5\ \xa7\x5f\x5f\x00\x01\x00\x84\x02\xbe\x01\xd4\x03\x36\x00\x07\x00\ \x19\x00\xbb\x00\x02\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x04\xdc\xb8\x00\x07\xd0\x30\x31\x13\x37\x33\x17\x23\x27\ \x23\x07\x84\x60\x90\x60\x71\x35\x04\x35\x02\xbe\x78\x78\x3d\x3d\ \x00\x00\x00\x00\x01\x00\x81\x02\x3f\x01\xd7\x02\xce\x00\x18\x00\ \x27\x00\xbb\x00\x08\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x0f\x10\ \xb8\x00\x14\xdc\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\ \x0f\x10\xb8\x00\x17\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x23\x81\ \x09\x3e\x2e\x12\x1f\x19\x16\x0b\x10\x14\x07\x4b\x09\x3e\x2e\x13\ \x1e\x1a\x16\x0a\x10\x14\x07\x4b\x02\x3f\x49\x46\x10\x14\x10\x17\ \x1d\x48\x47\x11\x13\x11\x17\x1e\x00\x00\x00\x00\x01\x00\x82\x02\ \xbf\x01\xd6\x03\x47\x00\x17\x00\x2b\x00\xbb\x00\x11\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\xb8\x00\x00\x10\ \xb8\x00\x08\xd0\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x14\xd0\x30\x31\x01\x22\x2e\x02\x23\x22\x06\x07\x23\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x01\x6b\x14\x22\x1d\x19\ \x0c\x0d\x14\x05\x4b\x08\x3c\x27\x14\x22\x1d\x19\x0c\x0d\x14\x05\ \x4b\x08\x3c\x02\xbf\x0e\x11\x0e\x14\x19\x45\x43\x0e\x11\x0e\x14\ \x19\x45\x43\x00\x01\x00\xa2\x02\x50\x01\xb6\x02\xad\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\xa2\x01\x14\xfe\xec\x02\xad\x5d\x00\x00\x01\x00\x9f\x02\ \xd0\x01\xb9\x03\x2d\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x9f\x01\x1a\xfe\xe6\x03\ \x2d\x5d\x00\x00\x01\x00\x99\x02\x3e\x01\xbf\x02\xda\x00\x11\x00\ \x19\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x0c\xdc\xb8\x00\x06\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\ \x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x25\x37\x24\x12\x01\ \x52\x04\x1f\x1e\x1e\x1f\x04\x52\x01\x12\x24\x37\x02\x3e\x1a\x2b\ \x39\x1e\x20\x2b\x2b\x20\x1e\x39\x2b\x1a\x00\x00\x01\x00\xa3\x02\ \xbe\x01\xb5\x03\x36\x00\x0d\x00\x19\x00\xbb\x00\x07\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x04\xdc\xb8\x00\x0a\xd0\ \x30\x31\x01\x22\x26\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\ \x01\x2c\x42\x41\x06\x51\x05\x19\x1a\x1a\x19\x05\x51\x06\x41\x02\ \xbe\x42\x36\x14\x1a\x1a\x14\x36\x42\x00\x00\x00\x01\x00\xca\x02\ \x39\x01\x8e\x02\xee\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\ \x00\x00\x04\x2b\x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x2c\x2b\x37\x37\x2b\x2b\x37\x37\x02\x39\x30\x29\x29\ \x33\x33\x29\x29\x30\x00\x00\x00\x01\x00\xd7\x02\xbd\x01\x81\x03\ \x57\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x25\x30\x30\x25\x25\x30\x30\x02\xbd\x2b\x22\x22\x2b\x2b\x22\x22\ \x2b\x00\x00\x00\x02\x00\x70\x02\x3b\x01\xe8\x02\xd8\x00\x0b\x00\ \x17\x00\x1d\x00\xbb\x00\x00\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\ \x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\xbf\x23\x2c\x2c\x23\x23\x2b\x2b\ \xb7\x23\x2b\x2b\x23\x23\x2c\x2c\x02\x3b\x2d\x22\x21\x2d\x2d\x21\ \x22\x2d\x2d\x22\x21\x2d\x2d\x21\x22\x2d\x00\x00\x02\x00\x83\x02\ \xbc\x01\xd5\x03\x48\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\ \x06\x10\xb8\x00\x12\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xc9\x1f\x27\x27\x1f\x1f\x27\x27\xa7\x1f\x27\x27\x1f\x1f\x27\x27\ \x02\xbc\x28\x1e\x1e\x28\x28\x1e\x1e\x28\x28\x1e\x1e\x28\x28\x1e\ \x1e\x28\x00\x00\x01\x00\xdb\x02\x2d\x01\x94\x02\xf0\x00\x0f\x00\ \x1b\x00\xbb\x00\x00\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\x13\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\xfe\x12\x1a\x24\x2b\ \x11\x5c\x4c\x16\x26\x33\x1c\x02\x67\x03\x0d\x0e\x0e\x11\x02\x4a\ \x03\x31\x28\x1a\x25\x19\x0d\x02\x00\x00\x00\x00\x01\x00\xdb\x02\ \xb3\x01\x94\x03\x76\x00\x0f\x00\x19\x00\xba\x00\x00\x00\x0f\x00\ \x03\x2b\xb8\x00\x00\x10\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x13\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\ \x07\xfe\x12\x1a\x24\x2b\x11\x5c\x4c\x16\x26\x33\x1c\x02\xed\x04\ \x0c\x0e\x0e\x11\x03\x49\x02\x31\x28\x1a\x25\x19\x0e\x02\x00\x00\ \x02\x00\xbb\x02\x24\x01\x9d\x02\xf0\x00\x0b\x00\x17\x00\x17\x00\ \xba\x00\x0c\x00\x00\x00\x03\x2b\xb8\x00\x0c\x10\xb8\x00\x12\xdc\ \xb8\x00\x06\xdc\x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\ \x33\x3e\x3e\x33\x33\x3e\x3e\x33\x11\x18\x18\x11\x11\x18\x18\x02\ \x24\x37\x2f\x2f\x37\x37\x2f\x2f\x37\x37\x1a\x15\x15\x1a\x1a\x15\ \x15\x1a\x00\x00\x02\x00\xbb\x02\xb9\x01\x9d\x03\x7d\x00\x0b\x00\ \x17\x00\x17\x00\xba\x00\x0c\x00\x00\x00\x03\x2b\xb8\x00\x0c\x10\ \xb8\x00\x12\xdc\xb8\x00\x06\xdc\x30\x31\x01\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\ \x14\x16\x01\x2c\x33\x3e\x3e\x33\x33\x3e\x3e\x33\x11\x17\x17\x11\ \x11\x18\x18\x02\xb9\x35\x2d\x2d\x35\x35\x2d\x2d\x35\x37\x17\x14\ \x14\x17\x17\x14\x14\x17\x00\x00\x02\x00\xaf\x02\x3d\x02\x13\x02\ \xd4\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x00\x00\x01\x00\x02\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x13\x33\x07\x23\x37\x33\x07\x23\xf3\x75\x5f\x5a\ \xef\x75\x5f\x5b\x02\xd4\x97\x97\x97\x00\x00\x00\x02\x00\xa3\x02\ \xbe\x02\x13\x03\x36\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x01\x00\ \x01\x00\x03\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x03\x10\xb8\x00\x06\xd0\x30\x31\x13\x37\x33\x07\x37\x33\x07\x23\ \xa3\x3f\x7d\x59\x90\x7d\x5a\x63\x02\xbe\x78\x78\x78\x78\x00\x00\ \x01\x00\x8a\x02\x3e\x01\xce\x02\xe5\x00\x07\x00\x19\x00\xbb\x00\ \x03\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\ \xb8\x00\x01\xd0\x30\x31\x13\x33\x17\x33\x37\x33\x07\x23\x8a\x6b\ \x35\x04\x35\x6b\x64\x7c\x02\xe5\x60\x60\xa7\x00\x01\x00\x84\x02\ \xbe\x01\xd4\x03\x36\x00\x07\x00\x19\x00\xbb\x00\x06\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x06\x10\xb8\x00\x07\xdc\xb8\x00\x04\xd0\ \x30\x31\x01\x07\x23\x27\x33\x17\x33\x37\x01\xd4\x60\x90\x60\x71\ \x35\x04\x35\x03\x36\x78\x78\x3d\x3d\x00\x00\x00\x02\x00\x45\x02\ \x3d\x01\xa9\x02\xd4\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x03\x00\ \x01\x00\x01\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x03\x10\xb8\x00\x06\xd0\x30\x31\x01\x23\x27\x33\x07\x23\x27\x33\ \x01\xa9\x5a\x5f\x75\x66\x5b\x5f\x75\x02\x3d\x97\x97\x97\x00\x00\ \x02\x00\x45\x02\xbe\x01\xb5\x03\x36\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x02\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x01\x27\x33\x17\ \x2b\x01\x27\x33\x01\x52\x59\x7d\x3f\xb3\x63\x5a\x7d\x02\xbe\x78\ \x78\x78\x00\x00\x01\x00\xe8\x02\x20\x01\x61\x02\xf4\x00\x0f\x00\ \x15\x00\xbb\x00\x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x0f\xdc\x30\x31\x01\x06\x07\x36\x33\x32\x16\x15\x14\x06\ \x23\x22\x35\x34\x36\x37\x01\x61\x38\x06\x02\x05\x15\x20\x1f\x16\ \x42\x30\x33\x02\xc7\x14\x27\x01\x1c\x18\x1a\x1f\x53\x2a\x43\x14\ \x00\x00\x00\x00\x01\x00\xf4\x02\x1d\x01\x6d\x02\xf1\x00\x0f\x00\ \x15\x00\xbb\x00\x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x0f\xdc\x30\x31\x13\x36\x37\x06\x23\x22\x26\x35\x34\x36\ \x33\x32\x15\x14\x06\x07\xf4\x38\x06\x02\x06\x15\x1f\x1f\x16\x42\ \x30\x33\x02\x4a\x15\x27\x01\x1b\x18\x1b\x1e\x53\x2a\x43\x14\x00\ \x01\x01\x22\x01\xab\x01\xd7\x02\x7e\x00\x0f\x00\x15\x00\xbb\x00\ \x00\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xdc\ \x30\x31\x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\ \x07\x01\x22\x1e\x25\x0a\x06\x65\x0b\x12\x1b\x2e\x3e\x23\x01\xe6\ \x05\x19\x20\x0e\x18\x08\x2c\x0e\x29\x19\x21\x30\x1f\x11\x02\x00\ \x01\x00\xca\xff\x03\x01\x8e\xff\xb8\x00\x0b\x00\x0d\x00\xbb\x00\ \x06\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x01\x2c\x2b\x37\x37\x2b\x2b\x37\x37\xfd\ \x30\x29\x29\x33\x33\x29\x29\x30\x00\x00\x00\x00\x02\x00\x83\xff\ \x28\x01\xd5\xff\xb4\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\ \x06\x10\xb8\x00\x12\xd0\x30\x31\x17\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xc9\x1f\x27\x27\x1f\x1f\x27\x27\xa7\x1f\x27\x27\x1f\x1f\x27\x27\ \xd8\x28\x1e\x1d\x29\x29\x1d\x1e\x28\x28\x1e\x1d\x29\x29\x1d\x1e\ \x28\x00\x00\x00\x01\x00\xc5\xff\x1b\x01\x81\xff\xd6\x00\x10\x00\ \x1b\x00\xbb\x00\x0f\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x0f\x10\ \xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\x05\x1e\x01\x15\ \x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x37\x01\x08\x44\x35\ \x1d\x30\x40\x24\x0b\x24\x2f\x15\x17\x1c\x2a\x07\x27\x26\x1a\x25\ \x19\x0d\x02\x3b\x04\x10\x11\x0e\x11\x06\x36\x00\x01\x00\xc5\xff\ \x23\x01\x81\x00\x04\x00\x11\x00\x1d\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x11\xd0\xb8\x00\x0b\xdc\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x25\x33\x07\x1e\x01\x15\x14\x0e\x02\x07\ \x27\x3e\x01\x35\x34\x26\x27\x01\x05\x56\x14\x1a\x20\x1d\x30\x40\ \x24\x0b\x24\x2f\x19\x22\x04\x2f\x08\x23\x1f\x1a\x25\x1a\x0d\x02\ \x3b\x04\x14\x14\x0d\x15\x08\x00\x01\x00\xc4\xff\x23\x01\x80\x00\ \x04\x00\x11\x00\x1d\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\ \x02\x10\xb8\x00\x11\xd0\xb8\x00\x0b\xdc\xb9\x00\x0a\x00\x01\xf4\ \x30\x31\x25\x33\x07\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\ \x34\x26\x27\x01\x04\x56\x14\x19\x21\x1d\x31\x40\x23\x0b\x23\x2f\ \x18\x22\x04\x2f\x08\x23\x1f\x1a\x25\x1a\x0d\x02\x3b\x04\x14\x14\ \x0d\x15\x08\x00\x01\x00\xd6\xff\x2e\x01\xa5\x00\x02\x00\x14\x00\ \x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x03\x3e\x59\xbb\x00\x0b\x00\x01\x00\x12\x00\x04\x2b\x30\x31\x17\ \x34\x3e\x02\x37\x33\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x26\xd6\x0f\x15\x18\x0a\x53\x36\x1a\x10\x0a\x12\x07\x1f\ \x14\x3a\x17\x2d\x3d\x77\x16\x26\x1f\x17\x07\x2a\x2d\x14\x12\x07\ \x05\x42\x0f\x12\x2e\x00\x00\x00\x01\x00\xd3\xff\x21\x01\xae\x00\ \x02\x00\x17\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x0d\x00\x04\ \x2b\x30\x31\x25\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x01\x78\x1b\x1f\x1a\x10\x0a\ \x12\x08\x22\x14\x3b\x1a\x18\x29\x1f\x12\x10\x16\x1a\x0b\x02\x16\ \x2f\x17\x14\x12\x09\x05\x4a\x0f\x14\x0c\x18\x23\x17\x18\x29\x22\ \x19\x07\x00\x00\x01\x00\xa1\xff\x2e\x01\xb7\xff\xb9\x00\x11\x00\ \x0d\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x23\ \x33\x22\x12\x01\x52\x03\x1c\x1a\x1a\x1c\x03\x52\x01\x12\x22\x33\ \xd2\x17\x26\x33\x1b\x19\x22\x22\x19\x1b\x33\x26\x17\x00\x00\x00\ \x01\x00\xa2\xff\x43\x01\xb6\xff\xa1\x00\x03\x00\x0d\x00\xbb\x00\ \x00\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x05\x21\x35\x21\x01\xb6\ \xfe\xec\x01\x14\xbd\x5e\x00\x00\x03\x00\x8b\x02\x3b\x01\xcd\x03\ \x39\x00\x0b\x00\x17\x00\x1b\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x1a\xdc\xb9\x00\x19\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x25\x21\x15\x21\ \xc9\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\ \xfe\xf8\x01\x14\xfe\xec\x02\x3b\x23\x1a\x1a\x24\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\xfe\x45\x00\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xad\x00\x03\x00\x0f\x00\x1b\x00\x2b\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\ \xb9\x00\x01\x00\x01\xf4\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\ \x0a\x10\xb8\x00\x16\xd0\x30\x31\x13\x21\x15\x21\x17\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x9f\x01\x1a\xfe\xe6\x2a\x1b\x23\x23\x1b\x1b\x23\ \x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\x03\xad\x45\xac\x24\x1a\x1a\ \x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x00\x00\ \x03\x00\x8b\x02\x3b\x01\xcd\x03\x50\x00\x03\x00\x0f\x00\x1b\x00\ \x25\x00\xba\x00\x00\x00\x02\x00\x03\x2b\xbb\x00\x04\x00\x01\x00\ \x0a\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x33\x07\x23\x07\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x3b\x7e\x73\x5e\x1f\x1b\x23\x23\x1b\x1b\x23\x23\xab\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\x50\x6f\xa6\x23\x1a\x1a\x24\x24\ \x1a\x1a\x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xce\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\ \xb8\x00\x00\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x33\x07\x23\x07\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x32\x9a\x76\x75\x18\x1b\x23\x23\x1b\x1b\x23\x23\xab\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\xce\x78\x9a\x24\x1a\x1a\x23\x23\ \x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x03\x00\x8b\x02\ \x3b\x01\xcd\x03\x50\x00\x07\x00\x13\x00\x1f\x00\x2b\x00\xbb\x00\ \x08\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x0e\x10\xb8\x00\x06\xdc\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x08\x10\xb8\x00\x14\xd0\xb8\x00\ \x0e\x10\xb8\x00\x1a\xd0\x30\x31\x13\x33\x17\x33\x37\x33\x07\x23\ \x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x98\x64\x2e\x04\x2e\x64\x56\x7c\ \x25\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\ \x03\x50\x3a\x3a\x6f\xa6\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\ \x1a\x24\x24\x1a\x1a\x23\x00\x00\x03\x00\x84\x02\xbc\x01\xd4\x03\ \xce\x00\x0b\x00\x17\x00\x1f\x00\x2b\x00\xbb\x00\x06\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x19\xdc\xb9\x00\x1e\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x13\x07\x23\x27\ \x33\x17\x33\x37\xc9\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\ \x1b\x1b\x23\x23\x2a\x60\x90\x60\x71\x35\x04\x35\x02\xbc\x24\x1a\ \x1a\x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x01\x12\ \x78\x78\x3c\x3c\x00\x00\x00\x00\x03\x00\x8b\x02\x3b\x01\xcd\x03\ \x50\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\x04\x00\x01\x00\ \x0a\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x01\xdc\xb8\x00\x03\xdc\ \xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\ \x30\x31\x01\x23\x27\x33\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x70\ \x5e\x73\x7e\x72\x1b\x23\x23\x1b\x1b\x23\x23\xe1\x1b\x23\x23\x1b\ \x1b\x23\x23\x02\xe1\x6f\xfe\xeb\x23\x1a\x1a\x24\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\x00\x00\x00\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xce\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x00\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x13\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x77\x75\x76\x9a\x69\x1b\x23\x23\x1b\x1b\x23\x23\xe1\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\x56\x78\xfe\xee\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x00\x00\x00\ \x02\x00\xa1\x02\x3e\x02\x48\x02\xfc\x00\x07\x00\x0b\x00\x19\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\ \x0b\xd0\xb8\x00\x08\xdc\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\ \x25\x33\x07\x23\xf2\x74\x51\x5a\x2f\x04\x2f\x5a\x01\x3a\x6d\x5f\ \x52\x02\xbe\x80\x41\x41\xbe\x76\x00\x00\x00\x00\x02\x00\x8e\x02\ \xbe\x02\x53\x03\x7a\x00\x03\x00\x0b\x00\x19\x00\xbb\x00\x08\x00\ \x01\x00\x05\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x03\xd0\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x27\x33\x17\x23\x27\x23\x07\x23\ \x01\xe1\x72\x63\x53\xb0\x7e\x5f\x68\x34\x04\x34\x68\x03\x7a\x78\ \x2e\x72\x37\x37\x00\x00\x00\x00\x02\x00\xa1\x02\x3e\x02\x25\x02\ \xfc\x00\x07\x00\x0b\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x04\x10\xb8\x00\x09\xd0\xb8\x00\x0b\xdc\x30\x31\ \x13\x33\x17\x23\x27\x23\x07\x23\x25\x23\x27\x33\xf2\x74\x51\x5a\ \x2f\x04\x2f\x5a\x01\x84\x52\x5f\x6d\x02\xbe\x80\x41\x41\x48\x76\ \x00\x00\x00\x00\x02\x00\x8e\x02\xbe\x02\x1a\x03\x7a\x00\x03\x00\ \x0b\x00\x19\x00\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\ \x08\x10\xb8\x00\x01\xd0\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\ \x07\x33\x17\x23\x27\x23\x07\x23\x02\x1a\x54\x62\x71\xe8\x7e\x5f\ \x68\x34\x04\x34\x68\x03\x02\x78\x4a\x72\x37\x37\x00\x00\x00\x00\ \x02\x00\xa1\x02\x3e\x02\x2a\x03\x21\x00\x07\x00\x17\x00\x25\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\ \x17\xd0\xb9\x00\x08\x00\x01\xf4\xb8\x00\x0e\xdc\xb9\x00\x0f\x00\ \x01\xf4\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x25\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\xf2\x74\x51\x5a\x2f\ \x04\x2f\x5a\x01\x0b\x0e\x10\x1b\x26\x0e\x52\x41\x13\x1f\x2a\x18\ \x02\xbe\x80\x41\x41\x68\x03\x0c\x0d\x0e\x11\x02\x3e\x02\x2a\x23\ \x19\x21\x15\x0c\x03\x00\x00\x00\x02\x00\x8e\x02\xbe\x02\x29\x03\ \x95\x00\x0d\x00\x15\x00\x25\x00\xbb\x00\x12\x00\x01\x00\x0f\x00\ \x04\x2b\xb8\x00\x12\x10\xb8\x00\x0d\xd0\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x06\x07\x27\x33\x17\x23\x27\x23\ \x07\x23\x01\xaa\x0e\x12\x1b\x26\x0d\x52\x41\x43\x31\xc8\x7e\x5f\ \x68\x34\x04\x34\x68\x03\x1d\x03\x0b\x0d\x0e\x10\x03\x3c\x02\x2d\ \x21\x2c\x27\x04\x42\x72\x37\x37\x00\x00\x00\x00\x02\x00\x99\x02\ \x3d\x01\xbf\x03\x42\x00\x07\x00\x1d\x00\x39\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x16\xdc\xb8\x00\ \x1b\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\ \x01\xf4\xb8\x00\x0b\x10\xb8\x00\x12\xd0\xb8\x00\x16\x10\xb8\x00\ \x1d\xd0\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x37\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\ \xe9\x86\x50\x5f\x32\x04\x32\x5f\x01\x07\x33\x21\x14\x1d\x17\x13\ \x0b\x1c\x07\x40\x07\x33\x21\x14\x1d\x17\x14\x0a\x1c\x07\x02\xac\ \x6f\x3b\x3b\x93\x3c\x36\x0c\x0e\x0c\x26\x3b\x37\x0c\x0e\x0c\x26\ \x00\x00\x00\x00\x02\x00\x8e\x02\xbe\x01\xca\x03\xc5\x00\x07\x00\ \x1d\x00\x39\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x16\xdc\xb8\x00\x08\xd0\xb8\x00\x16\x10\xb8\x00\ \x1b\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\ \x01\xf4\xb8\x00\x0b\x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x17\x23\ \x27\x23\x07\x23\x37\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\ \x01\x23\x22\x2e\x02\x23\x22\x07\xed\x7e\x5f\x68\x34\x04\x34\x68\ \x09\x06\x33\x22\x14\x1f\x19\x16\x0a\x1b\x09\x3f\x06\x33\x22\x14\ \x1f\x1a\x15\x0a\x1c\x08\x03\x30\x72\x37\x37\x96\x3b\x36\x0c\x0d\ \x0c\x25\x3b\x36\x0c\x0e\x0c\x26\x00\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x2a\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x02\xdc\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x37\x6a\x59\x4a\x2e\x23\x33\x22\ \x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\x33\x03\x2a\ \x76\x76\x17\x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\x00\x00\ \x02\x00\xa4\x02\xbe\x01\xb4\x03\x9f\x00\x03\x00\x11\x00\x19\x00\ \xbb\x00\x0b\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0b\x10\xb8\x00\ \x02\xdc\xb8\x00\x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x3f\x6f\x65\x4a\x2d\ \x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x9f\x77\ \x6a\x42\x36\x18\x1e\x1e\x18\x36\x42\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x2a\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x00\xdc\xb8\x00\ \x03\xdc\x30\x31\x01\x23\x27\x33\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x5a\x4a\x59\x6a\x0b\x23\x33\x22\ \x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\x33\x02\xb4\ \x76\xec\x17\x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\x00\x00\ \x02\x00\xa4\x02\xbe\x01\xb4\x03\x9f\x00\x03\x00\x11\x00\x19\x00\ \xbb\x00\x0b\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0b\x10\xb8\x00\ \x00\xdc\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\x17\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x59\x4a\x65\x6f\x13\ \x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x28\x77\ \xe1\x42\x36\x18\x1e\x1e\x18\x36\x42\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x67\x00\x11\x00\x21\x00\x25\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb9\x00\ \x12\x00\x01\xf4\xb8\x00\x18\xdc\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\ \x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x2c\ \x23\x33\x22\x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\ \x33\x4f\x0e\x10\x1b\x26\x0d\x52\x42\x13\x1f\x2b\x18\x02\x3e\x17\ \x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\xae\x03\x0b\x0e\x0e\ \x10\x03\x3e\x03\x2a\x23\x18\x21\x15\x0c\x03\x00\x02\x00\xa4\x02\ \xbe\x01\xb4\x03\xce\x00\x0f\x00\x1d\x00\x25\x00\xbb\x00\x17\x00\ \x01\x00\x10\x00\x04\x2b\xb8\x00\x17\x10\xb8\x00\x0f\xdc\xb9\x00\ \x00\x00\x01\xf4\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\ \x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x17\ \x22\x26\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x00\x0e\ \x13\x1c\x26\x0e\x52\x40\x12\x1f\x2a\x18\x20\x41\x42\x05\x43\x06\ \x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x55\x03\x0b\x0d\x0e\x10\x03\ \x3d\x03\x2d\x21\x16\x1f\x15\x0b\x02\x68\x42\x36\x18\x1e\x1e\x18\ \x36\x42\x00\x00\x02\x00\x9a\x02\x3e\x01\xbe\x03\x42\x00\x11\x00\ \x27\x00\x39\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x09\x10\xb8\x00\x20\xdc\xb8\x00\x25\xdc\xb9\x00\x15\x00\x01\xf4\ \xb8\x00\x20\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x15\x10\xb8\x00\ \x1c\xd0\xb8\x00\x20\x10\xb8\x00\x27\xd0\x30\x31\x01\x22\x2e\x02\ \x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\x3e\x01\x33\x32\ \x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\x01\ \x2c\x23\x33\x22\x12\x01\x45\x05\x1f\x22\x22\x1f\x05\x45\x01\x12\ \x22\x33\xb5\x07\x33\x21\x14\x1d\x17\x13\x0b\x1c\x07\x40\x07\x33\ \x21\x14\x1d\x17\x14\x0a\x1c\x07\x02\x3e\x13\x21\x2b\x18\x14\x1e\ \x1e\x14\x18\x2b\x21\x13\x92\x3c\x36\x0c\x0e\x0c\x26\x3b\x37\x0c\ \x0e\x0c\x26\x00\x02\x00\x93\x02\xbe\x01\xc0\x03\xc6\x00\x0d\x00\ \x25\x00\x39\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x07\x10\xb8\x00\x1d\xdc\xb8\x00\x0e\xd0\xb8\x00\x1d\x10\xb8\x00\ \x22\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x11\x10\xb8\x00\x19\xd0\x30\x31\x01\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x27\x3e\x01\x33\x32\x1e\ \x02\x33\x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\ \x01\x2c\x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\xda\ \x07\x35\x21\x11\x1d\x1a\x17\x0a\x0d\x14\x04\x42\x07\x35\x21\x11\ \x1e\x19\x17\x0a\x0d\x15\x03\x02\xbe\x42\x36\x18\x1e\x1e\x18\x36\ \x42\x96\x3b\x37\x0c\x0f\x0c\x13\x14\x3b\x37\x0c\x0e\x0c\x13\x13\ \x00\x00\x00\x00\x02\x00\x99\x02\x3d\x01\xbf\x03\x42\x00\x07\x00\ \x19\x00\x23\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x08\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x14\xdc\ \xb8\x00\x0e\xd0\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x37\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\xe9\x86\x50\ \x5f\x32\x04\x32\x5f\x93\x20\x2f\x20\x11\x01\x45\x04\x1b\x1d\x1d\ \x1b\x04\x45\x01\x11\x20\x2f\x02\xac\x6f\x3b\x3b\x92\x12\x20\x29\ \x18\x14\x1a\x1a\x14\x18\x29\x20\x12\x00\x00\x00\x02\x00\x8e\x02\ \xbe\x01\xca\x03\xc5\x00\x07\x00\x15\x00\x23\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x08\xdc\xb9\x00\ \x0f\x00\x01\xf4\xb8\x00\x12\xdc\xb8\x00\x0c\xd0\x30\x31\x13\x33\ \x17\x23\x27\x23\x07\x23\x37\x22\x26\x27\x33\x1e\x01\x33\x32\x36\ \x37\x33\x0e\x01\xed\x7e\x5f\x68\x34\x04\x34\x68\x9e\x41\x42\x05\ \x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x30\x72\x37\x37\x94\ \x3d\x36\x17\x1a\x1a\x17\x36\x3d\x00\x00\x00\x00\x01\x00\xfd\x02\ \x24\x01\x5b\x03\x02\x00\x04\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x00\x00\x04\x2b\x30\x31\x01\x27\x33\x0f\x01\x01\x02\x05\x5e\x02\ \x18\x02\x24\xde\x45\x99\x00\x00\x01\x00\xd6\x02\x21\x01\x93\x02\ \xdc\x00\x0f\x00\x1b\x00\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0e\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x01\x2e\x01\x35\x34\x3e\x02\x37\x17\x0e\x01\x15\x14\x17\x07\x01\ \x4f\x43\x36\x1d\x31\x40\x24\x0b\x24\x2f\x2b\x1c\x02\x21\x06\x27\ \x26\x19\x26\x19\x0e\x02\x3b\x04\x11\x11\x1a\x0a\x36\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x02\x9d\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x45\x02\ \xe2\xfd\x1e\x01\x71\x8a\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x03\x21\x11\x21\x45\x02\xe2\xfd\x1e\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xe7\xfe\x70\x01\x71\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x11\x23\xe7\x8a\x8a\x03\ \xe8\xfa\x88\x00\x01\x00\xa3\xfe\x70\x01\xb5\x03\xe8\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\ \xa3\x01\x12\xfe\xee\x03\xe8\xfa\x88\x00\x00\x00\x03\x00\x21\x00\ \xe7\x02\x37\x01\x71\x00\x03\x00\x07\x00\x0b\x00\x2d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\ \xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x15\x23\x37\x33\ \x15\x23\x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\ \x71\x8a\x8a\x8a\x8a\x8a\x00\x00\x03\x00\x21\x00\xa3\x02\x37\x01\ \xb5\x00\x03\x00\x07\x00\x0b\x00\x2b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\x11\x23\ \x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\xb5\xfe\xee\x01\x12\xfe\ \xee\x01\x12\xfe\xee\x00\x00\x00\x03\x00\xe7\xff\x6f\x01\x71\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x21\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x37\x33\x15\x23\x11\x33\ \x15\x23\x11\x33\x15\x23\xe7\x8a\x8a\x8a\x8a\x8a\x8a\x4d\xde\x02\ \x2b\xde\x02\x2b\xde\x00\x00\x00\x03\x00\xa3\xff\x6f\x01\xb5\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x21\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x37\x21\x15\x21\x11\x21\ \x15\x21\x11\x21\x15\x21\xa3\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\ \x12\xfe\xee\x4d\xde\x02\x2b\xde\x02\x2b\xde\x00\x04\x00\x12\x00\ \xe7\x02\x45\x01\x71\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x3d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\xb8\x00\x01\x10\xb8\x00\ \x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\x30\x31\x13\x33\x15\x23\ \x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x12\x71\x71\x96\ \x71\x71\x96\x71\x71\x96\x71\x71\x01\x71\x8a\x8a\x8a\x8a\x8a\x8a\ \x8a\x00\x00\x00\x04\x00\x12\x00\xa3\x02\x45\x01\xb5\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x3b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\ \xb8\x00\x01\x10\xb8\x00\x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\ \x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\ \x11\x23\x12\x71\x71\x96\x71\x71\x96\x71\x71\x96\x71\x71\x01\xb5\ \xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x00\x00\ \x04\x00\xe7\xff\x57\x01\x71\x03\x01\x00\x03\x00\x07\x00\x0b\x00\ \x0f\x00\x2b\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xbb\x00\ \x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\ \x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x37\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xe7\x8a\ \x8a\x8a\x8a\x8a\x8a\x8a\x8a\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\ \xb6\xbc\x00\x00\x04\x00\xa3\xff\x57\x01\xb5\x03\x01\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x2b\x00\xbb\x00\x01\x00\x01\x00\x02\x00\ \x04\x2b\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x05\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \x30\x31\x37\x21\x15\x21\x11\x21\x15\x21\x11\x21\x15\x21\x11\x21\ \x15\x21\xa3\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\ \x12\xfe\xee\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\xb6\xbc\x00\x00\ \x01\x00\xe7\xfe\x70\x02\x9d\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x11\x23\ \xe7\x01\xb6\xfe\xd4\x8a\x01\x71\x8a\xfd\x89\x00\x01\x00\xe7\xfe\ \x70\x02\x9d\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x21\x11\x21\x11\x23\xe7\x01\xb6\xfe\xd4\x8a\ \x01\xb5\xfe\xee\xfd\xcd\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x01\ \x71\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x13\x21\x15\x23\x11\x21\xa3\x01\xfa\xe8\xfe\xee\x01\x71\ \x8a\xfd\x89\x00\x01\x00\xa3\xfe\x70\x02\x9d\x01\xb5\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x23\ \x11\x21\xa3\x01\xfa\xe8\xfe\xee\x01\xb5\xfe\xee\xfd\xcd\x00\x00\ \x01\xff\xbb\xfe\x70\x01\x71\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\ \x45\x01\xb6\x8a\xfe\xd4\x01\x71\xfc\xff\x02\x77\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\x71\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x45\x01\ \xb6\x8a\xfe\xd4\x01\xb5\xfc\xbb\x02\x33\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x03\x21\x11\x21\x11\x23\x45\x01\xfa\xfe\ \xee\xe8\x01\x71\xfc\xff\x02\x77\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\x00\x00\x05\x00\ \x03\x2b\x30\x31\x03\x21\x11\x21\x11\x23\x45\x01\xfa\xfe\xee\xe8\ \x01\xb5\xfc\xbb\x02\x33\x00\x00\x01\x00\xe7\x00\xe7\x02\x9d\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x33\x11\x21\x15\x21\xe7\x8a\x01\x2c\xfe\x4a\x03\xe8\ \xfd\x89\x8a\x00\x01\x00\xe7\x00\xa3\x02\x9d\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x11\x21\xe7\x8a\x01\x2c\xfe\x4a\x03\xe8\xfd\xcd\xfe\xee\x00\x00\ \x01\x00\xa3\x00\xe7\x02\x9d\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x21\x11\x33\x15\x21\ \xa3\x01\x12\xe8\xfe\x06\x03\xe8\xfd\x89\x8a\x00\x01\x00\xa3\x00\ \xa3\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x13\x21\x11\x33\x11\x21\xa3\x01\x12\xe8\xfe\x06\ \x03\xe8\xfd\xcd\xfe\xee\x00\x00\x01\xff\xbb\x00\xe7\x01\x71\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x45\x01\x2c\x8a\xfe\x4a\x01\x71\ \x02\x77\xfc\xff\x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x01\x71\x03\ \xe8\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\ \x03\x21\x11\x33\x11\x21\x45\x01\x2c\x8a\xfe\x4a\x01\xb5\x02\x33\ \xfc\xbb\x00\x00\x01\xff\xbb\x00\xe7\x01\xb5\x03\xe8\x00\x05\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x05\x00\x04\x2b\x30\x31\x03\x33\ \x11\x21\x11\x21\x45\xe8\x01\x12\xfe\x06\x01\x71\x02\x77\xfc\xff\ \x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x01\xb5\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x05\x00\x03\x2b\x30\x31\x03\x33\x11\x21\ \x11\x21\x45\xe8\x01\x12\xfe\x06\x01\xb5\x02\x33\xfc\xbb\x00\x00\ \x01\x00\xe7\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\ \x11\x23\xe7\x8a\x01\x2c\xfe\xd4\x8a\x03\xe8\xfd\x89\x8a\xfd\x89\ \x00\x00\x00\x00\x01\x00\xe7\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x11\x21\x11\x23\xe7\x8a\x01\x2c\xfe\xd4\x8a\x03\xe8\xfd\xcd\xfe\ \xee\xfd\xcd\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x08\xd0\x30\x31\x13\x21\x11\x33\x15\x21\x11\x23\x11\x23\ \xa3\x01\x12\xe8\xfe\xd4\x8a\x44\x03\xe8\xfd\x89\x8a\xfd\x89\x02\ \x77\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\x11\x21\x15\x23\x11\x21\ \xa3\x44\x8a\x01\x2c\xe8\xfe\xee\x01\x71\x02\x77\xfd\x89\x8a\xfd\ \x89\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x21\ \x11\x33\x15\x23\x11\x21\xa3\x01\x12\xe8\xe8\xfe\xee\x03\xe8\xfd\ \x89\x8a\xfd\x89\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x09\x00\x13\x00\xba\x00\x03\x00\x04\x00\x03\x2b\xb8\x00\ \x04\x10\xb8\x00\x08\xd0\x30\x31\x13\x21\x11\x33\x11\x21\x11\x23\ \x11\x23\xa3\x01\x12\xe8\xfe\xd4\x8a\x44\x03\xe8\xfd\xcd\xfe\xee\ \xfd\xcd\x02\x33\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x09\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\x11\x21\x11\x23\ \x11\x21\xa3\x44\x8a\x01\x2c\xe8\xfe\xee\x01\xb5\x02\x33\xfd\xcd\ \xfe\xee\xfd\xcd\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\ \x13\x21\x11\x33\x11\x23\x11\x21\xa3\x01\x12\xe8\xe8\xfe\xee\x03\ \xe8\xfd\xcd\xfe\xee\xfd\xcd\x00\x01\xff\xbb\xfe\x70\x01\x71\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x45\x01\x2c\x8a\x8a\xfe\ \xd4\x01\x71\x02\x77\xfa\x88\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\x71\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x01\x00\x06\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x45\x01\x2c\x8a\ \x8a\xfe\xd4\x01\xb5\x02\x33\xfa\x88\x02\x33\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\x03\x33\ \x11\x21\x11\x23\x11\x23\x11\x21\x45\xe8\x01\x12\x44\x8a\xfe\xd4\ \x01\x71\x02\x77\xfc\xff\xfd\x89\x02\x77\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x11\x21\x11\x23\x45\x01\x2c\x8a\x44\xfe\xee\xe8\ \x01\x71\x02\x77\xfd\x89\xfc\xff\x02\x77\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x21\x11\x23\x45\xe8\ \x01\x12\xfe\xee\xe8\x01\x71\x02\x77\xfa\x88\x02\x77\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x33\x11\x21\x11\x23\x11\x23\x11\x21\x45\xe8\x01\x12\x44\x8a\ \xfe\xd4\x01\xb5\x02\x33\xfc\xbb\xfd\xcd\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x33\x11\x21\x11\x23\x45\x01\x2c\x8a\x44\xfe\ \xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfc\xbb\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x06\x00\x03\x2b\x30\x31\x03\x33\x11\x21\x11\x21\x11\x23\ \x45\xe8\x01\x12\xfe\xee\xe8\x01\xb5\x02\x33\xfa\x88\x02\x33\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x01\x71\x00\x07\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x45\x02\xe2\xfe\xd4\x8a\ \xfe\xd4\x01\x71\x8a\xfd\x89\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x09\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x11\x23\x11\x21\ \x45\x01\xb6\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\xb5\x44\x8a\xfd\x89\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x09\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\ \x35\x21\x11\x21\x11\x23\x11\x21\x45\x01\x2c\x01\xb6\xfe\xd4\x8a\ \xfe\xd4\x01\x71\x44\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x11\x21\ \x11\x23\x11\x21\x45\x02\xe2\xfe\xd4\x8a\xfe\xd4\x01\xb5\xfe\xee\ \xfd\xcd\x02\x33\x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\ \x71\x00\x07\x00\x15\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x23\x11\x21\ \x11\x23\x45\x02\xe2\xe8\xfe\xee\xe8\x01\x71\x8a\xfd\x89\x02\x77\ \x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x09\x00\ \x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\ \x15\x33\x15\x23\x11\x21\x11\x23\x45\x01\xfa\xe8\xe8\xfe\xee\xe8\ \x01\xb5\x44\x8a\xfd\x89\x02\x33\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x09\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\x30\x31\x03\x33\x35\x21\x11\x23\x11\x21\x11\x23\ \x45\xe8\x01\xfa\xe8\xfe\xee\xe8\x01\x71\x44\xfe\xee\xfd\xcd\x02\ \x77\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x07\x00\ \x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x03\x21\x11\x23\x11\x21\x11\x23\x45\x02\xe2\xe8\ \xfe\xee\xe8\x01\xb5\xfe\xee\xfd\xcd\x02\x33\x00\x01\xff\xbb\x00\ \xe7\x02\x9d\x03\xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x45\x01\x2c\x8a\x01\x2c\xfd\x1e\x01\x71\ \x02\x77\xfd\x89\x8a\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x09\x00\x0d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\x45\x01\x2c\x8a\ \x01\x2c\xfe\xd4\xfe\x4a\x01\xb5\x02\x33\xfd\x89\x8a\x44\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x09\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x11\x21\x35\x21\x45\x01\x2c\x8a\x01\x2c\xfe\x4a\xfe\xd4\x01\x71\ \x02\x77\xfd\xcd\xfe\xee\x44\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x07\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x11\x21\ \x45\x01\x2c\x8a\x01\x2c\xfd\x1e\x01\xb5\x02\x33\xfd\xcd\xfe\xee\ \x00\x00\x00\x00\x01\xff\xbb\x00\xe7\x02\x9d\x03\xe8\x00\x07\x00\ \x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x03\x33\x11\x21\x11\x33\x15\x21\x45\xe8\ \x01\x12\xe8\xfd\x1e\x01\x71\x02\x77\xfd\x89\x8a\x00\x00\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x09\x00\x0d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x33\ \x15\x23\x15\x21\x45\xe8\x01\x12\xe8\xe8\xfe\x06\x01\xb5\x02\x33\ \xfd\x89\x8a\x44\x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x09\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\ \x30\x31\x03\x33\x11\x21\x11\x33\x11\x21\x35\x23\x45\xe8\x01\x12\ \xe8\xfe\x06\xe8\x01\x71\x02\x77\xfd\xcd\xfe\xee\x44\x00\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x07\x00\x13\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x21\x45\xe8\x01\x12\xe8\xfd\x1e\x01\ \xb5\x02\x33\xfd\xcd\xfe\xee\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x45\x01\ \x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\x89\x8a\ \xfd\x89\x02\x77\x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x15\x00\xba\x00\x01\x00\x0a\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x45\x01\x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\ \xd4\x01\xb5\x02\x33\xfd\x89\x8a\xfd\x89\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\x0a\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x11\x21\x11\x23\x11\x21\x45\x01\ \x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\xcd\xfe\ \xee\xfd\xcd\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x11\x21\x11\x23\x11\x21\x45\x01\x2c\x8a\ \x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\ \xcd\x02\x33\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x1d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x33\ \x11\x21\x11\x33\x15\x21\x11\x23\x11\x21\x45\xe8\x01\x12\xe8\xfe\ \xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\x89\x8a\xfd\x89\x02\x77\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x23\x11\x21\x11\x23\x45\x01\x2c\x8a\x01\x2c\xe8\xfe\xee\xe8\ \x01\x71\x02\x77\xfd\x89\x8a\xfd\x89\x02\x77\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x11\x21\ \x11\x23\x45\xe8\x01\x12\xe8\xe8\xfe\xee\xe8\x01\x71\x02\x77\xfd\ \x89\x8a\xfd\x89\x02\x77\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x0c\x10\xb8\x00\x08\xd0\ \x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x15\x23\x11\x23\x11\x21\ \x45\xe8\x01\x12\xe8\xe8\x44\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\x89\ \x8a\x44\xfd\xcd\x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x06\x10\xb8\x00\x0a\xd0\ \x30\x31\x03\x33\x11\x21\x11\x33\x11\x21\x11\x23\x11\x23\x35\x23\ \x45\xe8\x01\x12\xe8\xfe\xd4\x8a\x44\xe8\x01\x71\x02\x77\xfd\xcd\ \xfe\xee\xfd\xcd\x02\x33\x44\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \x30\x31\x03\x21\x11\x33\x11\x33\x15\x33\x15\x23\x11\x21\x11\x23\ \x45\x01\x2c\x8a\x44\xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\xcd\ \x44\x8a\xfd\x89\x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x07\x00\x08\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x03\x33\x35\x33\x11\x33\x11\x21\x11\x23\x11\x21\x11\x23\ \x45\xe8\x44\x8a\x01\x2c\xe8\xfe\xee\xe8\x01\x71\x44\x02\x33\xfd\ \xcd\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x21\x11\x23\x11\x21\x45\xe8\x01\x12\ \xe8\xfe\xd4\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x11\x23\x11\x21\x11\x23\x45\x01\x2c\x8a\x01\x2c\xe8\xfe\ \xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\x02\x33\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x11\x21\x11\x23\x45\xe8\ \x01\x12\xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\x89\x8a\xfd\x89\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\ \x0a\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x33\x11\x23\x11\x21\ \x11\x23\x45\xe8\x01\x12\xe8\xe8\xfe\xee\xe8\x01\x71\x02\x77\xfd\ \xcd\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x23\x11\x21\x11\x23\x45\xe8\x01\x12\ \xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\x02\ \x33\x00\x00\x00\x02\x00\x4b\x00\xe7\x02\x0d\x01\x71\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x33\x15\x23\x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\ \x71\x8a\x8a\x8a\x00\x00\x00\x00\x02\x00\x4b\x00\xa3\x02\x0d\x01\ \xb5\x00\x03\x00\x07\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x13\x33\x11\x23\x01\x33\x11\x23\x4b\x96\x96\x01\x2c\x96\ \x96\x01\xb5\xfe\xee\x01\x12\xfe\xee\x00\x00\x00\x02\x00\xe7\xff\ \xb5\x01\x71\x02\xa3\x00\x03\x00\x07\x00\x13\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\x30\x31\x37\x33\ \x15\x23\x11\x33\x15\x23\xe7\x8a\x8a\x8a\x8a\xaf\xfa\x02\xee\xfa\ \x00\x00\x00\x00\x02\x00\xa3\xff\xb5\x01\xb5\x02\xa3\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\x30\x31\x37\x21\x15\x21\x11\x21\x15\x21\xa3\x01\ \x12\xfe\xee\x01\x12\xfe\xee\xaf\xfa\x02\xee\xfa\x00\x00\x00\x00\ \x02\xff\xbb\x00\x5e\x02\x9d\x01\xfa\x00\x03\x00\x07\x00\x17\x00\ \xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x45\x02\ \xe2\xfd\x1e\x02\xe2\xfd\x1e\x01\xfa\x89\x8a\x89\x00\x00\x00\x00\ \x02\x00\x5e\xfe\x70\x01\xfa\x03\xe8\x00\x03\x00\x07\x00\x1b\x00\ \xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x23\x01\x33\ \x11\x23\x5e\x89\x89\x01\x13\x89\x89\x03\xe8\xfa\x88\x05\x78\xfa\ \x88\x00\x00\x00\x01\x00\xe7\xfe\x70\x02\x9d\x01\xfa\x00\x09\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x00\ \x10\xb9\x00\x02\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\x21\x15\ \x21\x11\x23\xe7\x01\xb6\xfe\xd4\x01\x2c\xfe\xd4\x8a\x01\xfa\x89\ \x8a\x89\xfe\x12\x00\x00\x00\x00\x01\x00\x5e\xfe\x70\x02\x9d\x01\ \x71\x00\x0a\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\x03\x00\x04\x2b\ \xb8\x00\x02\x10\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb8\x00\x07\xd0\ \x30\x31\x13\x33\x21\x15\x23\x11\x23\x11\x23\x11\x23\x5e\x89\x01\ \xb6\xa3\x89\x8a\x89\x01\x71\x8a\xfd\x89\x02\x77\xfd\x89\x00\x00\ \x02\x00\x5e\xfe\x70\x02\x9d\x01\xfa\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x02\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x11\x23\x01\x21\x15\ \x23\x11\x23\x5e\x02\x3f\xfe\x4a\x89\x01\x13\x01\x2c\xa3\x89\x01\ \xfa\x89\xfc\xff\x02\x77\x89\xfe\x12\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\x71\x01\xfa\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x08\x00\x01\xf4\x30\ \x31\x03\x21\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\xb6\x8a\xfe\ \xd4\x01\x2c\xfe\xd4\x01\xfa\xfc\x76\x01\xee\x89\x8a\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xfa\x01\x71\x00\x09\x00\x15\x00\xbb\x00\ \x07\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\ \x30\x31\x25\x23\x11\x23\x11\x23\x35\x21\x11\x23\x01\x71\x8a\x89\ \xa3\x02\x3f\x89\xe7\xfd\x89\x02\x77\x8a\xfc\xff\x00\x00\x00\x00\ \x02\xff\xbb\xfe\x70\x01\xfa\x01\xfa\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x04\x00\x01\xf4\x30\x31\x03\x21\x11\x23\x11\x21\x15\x21\x11\ \x23\x11\x23\x45\x02\x3f\x89\xfe\x4a\x01\x2c\x89\xa3\x01\xfa\xfc\ \x76\x03\x01\x8a\xfd\x89\x01\xee\x00\x00\x00\x00\x01\x00\xe7\x00\ \x5e\x02\x9d\x03\xe8\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x08\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\x30\ \x31\x13\x33\x11\x21\x15\x21\x15\x21\x15\x21\xe7\x8a\x01\x2c\xfe\ \xd4\x01\x2c\xfe\x4a\x03\xe8\xfe\x12\x89\x8a\x89\x00\x00\x00\x00\ \x01\x00\x5e\x00\xe7\x02\x9d\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x13\x33\x11\x33\x11\x33\x11\x33\x15\x21\x5e\x89\x8a\x89\ \xa3\xfd\xc1\x03\xe8\xfd\x89\x02\x77\xfd\x89\x8a\x00\x00\x00\x00\ \x02\x00\x5e\x00\x5e\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\ \x59\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x08\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x01\x33\x11\ \x33\x15\x21\x5e\x89\x01\xb6\xfd\xc1\x01\x13\x89\xa3\xfe\xd4\x03\ \xe8\xfc\xff\x89\x03\x8a\xfe\x12\x89\x00\x00\x00\x01\xff\xbb\x00\ \x5e\x01\x71\x03\xe8\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x08\x00\x01\xf4\x30\ \x31\x03\x21\x11\x33\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\xfe\ \x4a\x01\x2c\xfe\xd4\x01\xfa\x01\xee\xfc\x76\x89\x8a\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x01\xfa\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x21\x45\xa3\x89\x8a\ \x89\xfd\xc1\x01\x71\x02\x77\xfd\x89\x02\x77\xfc\xff\x00\x00\x00\ \x02\xff\xbb\x00\x5e\x01\xfa\x03\xe8\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x06\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x27\x21\x11\x33\x11\x21\x11\x33\x11\ \x33\x11\x21\x45\x01\xb6\x89\xfd\xc1\xa3\x89\xfe\xd4\xe7\x03\x01\ \xfc\x76\x01\x9c\x01\xee\xfd\x89\x00\x00\x00\x00\x01\x00\xe7\xfe\ \x70\x02\x9d\x03\xe8\x00\x0b\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x08\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\x30\ \x31\x13\x33\x11\x21\x15\x21\x15\x21\x15\x21\x11\x23\xe7\x8a\x01\ \x2c\xfe\xd4\x01\x2c\xfe\xd4\x8a\x03\xe8\xfe\x12\x89\x8a\x89\xfe\ \x12\x00\x00\x00\x02\x00\x5e\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0b\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\ \x01\x33\x11\x33\x15\x23\x11\x23\x01\x33\x11\x23\x01\x71\x89\xa3\ \xa3\x89\xfe\xed\x89\x89\x03\xe8\xfd\x89\x8a\xfd\x89\x05\x78\xfa\ \x88\x00\x00\x00\x03\x00\x5e\xfe\x70\x02\x9d\x03\xe8\x00\x03\x00\ \x09\x00\x0f\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x07\x3e\x59\xbb\x00\x0b\x00\x01\x00\x0c\x00\x04\ \x2b\xb8\x00\x06\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x33\x11\ \x23\x01\x33\x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\x5e\x89\x89\ \x01\x13\x89\xa3\xfe\xd4\x01\x2c\xa3\x89\x03\xe8\xfa\x88\x05\x78\ \xfe\x12\x89\x8a\x89\xfe\x12\x00\x01\xff\xbb\xfe\x70\x01\x71\x03\ \xe8\x00\x0b\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x09\x00\x01\x00\x06\x00\x04\ \x2b\xb8\x00\x00\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x03\x21\x11\ \x33\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\x8a\xfe\xd4\ \x01\x2c\xfe\xd4\x01\xfa\x01\xee\xfa\x88\x01\xee\x89\x8a\x00\x00\ \x02\xff\xbb\xfe\x70\x01\xfa\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\ \xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x33\ \x11\x23\x11\x23\x01\x33\x11\x23\x45\xa3\x89\x89\xa3\x01\xb6\x89\ \x89\x01\x71\x02\x77\xfa\x88\x02\x77\x03\x01\xfa\x88\x00\x00\x00\ \x03\xff\xbb\xfe\x70\x01\xfa\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x07\x3e\x59\xbb\x00\x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x0a\ \x10\xb9\x00\x0e\x00\x01\xf4\x30\x31\x01\x33\x11\x23\x01\x21\x11\ \x23\x11\x23\x11\x33\x11\x33\x11\x21\x01\x71\x89\x89\xfe\x4a\x01\ \x2c\x89\xa3\xa3\x89\xfe\xd4\x03\xe8\xfa\x88\x02\x77\xfd\x89\x01\ \xee\x01\x9c\x01\xee\xfd\x89\x00\x02\xff\xbb\xfe\x70\x02\x9d\x01\ \xfa\x00\x07\x00\x0b\x00\x30\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\ \x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\xbb\x00\x01\x00\x01\x00\x02\ \x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x08\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x27\x21\x15\x21\x11\x23\x11\x21\x11\ \x21\x15\x21\x45\x02\xe2\xfe\xd4\x8a\xfe\xd4\x02\xe2\xfd\x1e\xe7\ \x89\xfe\x12\x01\xee\x01\x9c\x89\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\x71\x00\x0b\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x15\x23\x11\x23\x11\x23\x11\x23\ \x11\x23\x45\x02\xe2\xa3\x89\x8a\x89\xa3\x01\x71\x8a\xfd\x89\x02\ \x77\xfd\x89\x02\x77\x00\x00\x00\x03\xff\xbb\xfe\x70\x02\x9d\x01\ \xfa\x00\x05\x00\x0b\x00\x0f\x00\x38\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xbb\x00\x01\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x06\xd0\xb8\x00\x04\ \x10\xb8\x00\x08\xd0\xb8\x00\x0c\x10\xb9\x00\x0e\x00\x01\xf4\x30\ \x31\x27\x21\x11\x23\x11\x23\x25\x21\x15\x23\x11\x23\x01\x21\x15\ \x21\x45\x01\x2c\x89\xa3\x01\xb6\x01\x2c\xa3\x89\xfe\x4a\x02\xe2\ \xfd\x1e\xe7\xfd\x89\x01\xee\x89\x89\xfe\x12\x03\x8a\x89\x00\x00\ \x02\xff\xbb\x00\x5e\x02\x9d\x03\xe8\x00\x07\x00\x0b\x00\x3d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\ \x3e\x59\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb9\x00\x06\x00\x01\xf4\xb8\x00\x07\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x15\x21\x15\x21\x15\x21\x45\x01\x2c\x8a\x01\x2c\xfd\x1e\ \x02\xe2\xfd\x1e\x01\xfa\x01\xee\xfe\x12\x89\x8a\x89\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x00\xd0\ \xb8\x00\x09\x10\xb8\x00\x04\xd0\x30\x31\x03\x33\x11\x33\x11\x33\ \x11\x33\x11\x33\x15\x21\x45\xa3\x89\x8a\x89\xa3\xfd\x1e\x01\x71\ \x02\x77\xfd\x89\x02\x77\xfd\x89\x8a\x00\x00\x00\x03\xff\xbb\x00\ \x5e\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x0f\x00\x45\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\ \xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x08\x10\xb9\x00\ \x04\x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\x0a\xd0\xb8\x00\x0b\xd0\ \x30\x31\x03\x33\x11\x33\x11\x21\x01\x33\x11\x33\x15\x21\x05\x21\ \x15\x21\x45\xa3\x89\xfe\xd4\x01\xb6\x89\xa3\xfe\xd4\xfe\x4a\x02\ \xe2\xfd\x1e\x01\xfa\x01\xee\xfd\x89\x02\x77\xfe\x12\x89\x8a\x89\ \x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x13\x00\ \x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\ \x00\x07\x3e\x59\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x04\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\ \xb8\x00\x09\x10\xb8\x00\x10\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\ \xb8\x00\x13\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x15\x21\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\x01\x2c\ \xfe\xd4\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x2c\xfe\xd4\x01\xfa\x01\ \xee\xfe\x12\x89\x8a\x89\xfe\x12\x01\xee\x89\x8a\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x13\x00\x2d\x00\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x00\xd0\ \xb8\x00\x09\x10\xb8\x00\x04\xd0\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\ \xb8\x00\x0a\x10\xb8\x00\x12\xd0\x30\x31\x03\x33\x11\x33\x11\x33\ \x11\x33\x11\x33\x15\x23\x11\x23\x11\x23\x11\x23\x11\x23\x45\xa3\ \x89\x8a\x89\xa3\xa3\x89\x8a\x89\xa3\x01\x71\x02\x77\xfd\x89\x02\ \x77\xfd\x89\x8a\xfd\x89\x02\x77\xfd\x89\x02\x77\x00\x00\x00\x00\ \x04\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x11\x00\ \x17\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\ \x00\x0e\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x0e\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\ \x10\xd0\xb8\x00\x11\xd0\xb8\x00\x07\x10\xb8\x00\x12\xd0\xb8\x00\ \x0a\x10\xb8\x00\x14\xd0\x30\x31\x03\x33\x11\x33\x11\x21\x15\x21\ \x11\x23\x11\x23\x01\x33\x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\ \x45\xa3\x89\xfe\xd4\x01\x2c\x89\xa3\x01\xb6\x89\xa3\xfe\xd4\x01\ \x2c\xa3\x89\x01\xfa\x01\xee\xfd\x89\x8a\xfd\x89\x01\xee\x03\x8a\ \xfe\x12\x89\x8a\x89\xfe\x12\x00\x01\x00\xe7\xfe\x70\x02\x9d\x01\ \x71\x00\x0f\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x33\x34\x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\x11\x23\ \xe7\x3a\x64\x86\x4d\x45\x45\x30\x54\x3f\x24\x8a\x4c\x87\x64\x3a\ \x8a\x24\x3f\x54\x30\xfe\x70\x00\x01\xff\xbb\xfe\x70\x01\x71\x01\ \x71\x00\x0f\x00\x0d\x00\xbb\x00\x0a\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x01\x23\x11\x34\x2e\x02\x2b\x01\x35\x33\x32\x1e\x02\x15\ \x01\x71\x8a\x24\x3f\x54\x30\x45\x45\x4c\x87\x64\x3a\xfe\x70\x01\ \x90\x30\x54\x3f\x24\x8a\x3a\x64\x87\x4c\x00\x00\x01\xff\xbb\x00\ \xe7\x01\x71\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\x08\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x01\x14\x0e\x02\x2b\x01\x35\x33\x32\x3e\ \x02\x35\x11\x33\x01\x71\x3a\x64\x87\x4c\x45\x45\x30\x54\x3f\x24\ \x8a\x02\x58\x4d\x86\x64\x3a\x8a\x24\x3f\x54\x30\x01\x90\x00\x00\ \x01\x00\xe7\x00\xe7\x02\x9d\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\ \x08\x00\x01\x00\x09\x00\x04\x2b\x30\x31\x13\x33\x11\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x35\xe7\x8a\x24\x3f\x54\x30\x45\x45\ \x4d\x86\x64\x3a\x03\xe8\xfe\x70\x30\x54\x3f\x24\x8a\x3a\x64\x86\ \x4d\x00\x00\x00\x01\xff\xbb\xfe\xf3\x02\x9d\x03\x65\x00\x05\x00\ \x0b\x00\xba\x00\x00\x00\x03\x00\x03\x2b\x30\x31\x01\x33\x15\x01\ \x23\x35\x02\x13\x8a\xfd\xa8\x8a\x03\x65\x8a\xfc\x18\x8a\x00\x00\ \x01\xff\xbb\xfe\xf3\x02\x9d\x03\x65\x00\x05\x00\x0b\x00\xba\x00\ \x05\x00\x02\x00\x03\x2b\x30\x31\x05\x15\x23\x01\x35\x33\x02\x9d\ \x8a\xfd\xa8\x8a\x83\x8a\x03\xe8\x8a\x00\x00\x00\x01\xff\xbb\xfe\ \xf3\x02\x9d\x03\x65\x00\x0f\x00\x2f\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\xba\x00\x00\x00\x06\x00\x02\x11\x12\x39\xba\x00\x08\x00\ \x06\x00\x02\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x09\xd0\xb8\x00\ \x02\x10\xb8\x00\x0e\xd0\x30\x31\x01\x13\x33\x15\x09\x01\x15\x23\ \x0b\x01\x23\x35\x09\x01\x35\x33\x01\x2c\xe7\x8a\xfe\xfd\x01\x03\ \x8a\xe7\xe7\x8a\x01\x03\xfe\xfd\x8a\x01\xe3\x01\x82\x8a\xfe\x51\ \xfe\x51\x8a\x01\x82\xfe\x7e\x8a\x01\xaf\x01\xaf\x8a\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x01\x71\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x45\x01\ \xb6\xfe\x4a\x01\x71\x8a\x00\x00\x01\x00\xe7\x00\xe7\x01\x71\x03\ \xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x33\x11\x23\xe7\x8a\x8a\x03\xe8\xfc\xff\x00\x01\x00\xe7\x00\ \xe7\x02\x9d\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\xe7\x01\xb6\xfe\x4a\x01\ \x71\x8a\x00\x00\x01\x00\xe7\xfe\x70\x01\x71\x01\x71\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x11\x23\ \xe7\x8a\x8a\x01\x71\xfc\xff\x00\x01\xff\xbb\x00\xa3\x01\x71\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x03\x21\x11\x21\x45\x01\xb6\xfe\x4a\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xa3\x00\xe7\x01\xb5\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\xa3\x01\x12\xfe\ \xee\x03\xe8\xfc\xff\x00\x00\x00\x01\x00\xe7\x00\xa3\x02\x9d\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x21\x11\x21\xe7\x01\xb6\xfe\x4a\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xa3\xfe\x70\x01\xb5\x01\x71\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\xa3\x01\x12\xfe\ \xee\x01\x71\xfc\xff\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x01\ \xb5\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x35\x21\x11\x21\x35\x21\x45\x01\x2c\x01\xb6\xfe\ \x4a\xfe\xd4\x01\x71\x44\xfe\xee\x44\x00\x00\x00\x01\x00\xa3\xfe\ \x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x06\x00\ \x03\x2b\x30\x31\x13\x33\x11\x33\x11\x33\x11\x21\xa3\x44\x8a\x44\ \xfe\xee\x01\x71\x02\x77\xfd\x89\xfc\xff\x00\x00\x01\xff\xbb\x00\ \xa3\x02\x9d\x01\xb5\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x45\x01\ \xb6\x01\x2c\xfe\xd4\xfe\x4a\x01\xb5\x44\x8a\x44\x00\x00\x00\x00\ \x01\x00\xa3\xfe\x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x13\x21\x11\x23\x11\x23\x11\x23\ \xa3\x01\x12\x44\x8a\x44\x03\xe8\xfc\xff\xfd\x89\x02\x77\x00\x00\ \x01\x00\x00\x01\x2c\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\xff\ \xb5\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x15\x21\x15\x21\x02\x58\xfd\xa8\x4b\x7d\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x00\x32\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x35\x21\x15\x21\x02\x58\xfd\xa8\x32\xfa\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x00\xaf\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x11\x21\x02\x58\xfd\xa8\ \xaf\xfe\x89\x00\x01\x00\x00\xff\x38\x02\x58\x01\x2c\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x01\xa9\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\x01\xa9\xfd\x8f\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x02\x26\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x02\x26\xfd\x12\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x02\xa3\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\x02\xa3\xfc\x95\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x0d\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x0d\xfd\xf3\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\xc2\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\xc2\xfe\x3e\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x01\x77\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x01\x77\xfe\x89\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x00\xe1\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x33\x11\x23\xe1\xe1\x03\x20\xfc\x18\x00\x00\ \x01\x00\x00\xff\x38\x00\x96\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\x96\x96\x03\x20\ \xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x4b\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\ \x4b\x4b\x03\x20\xfc\x18\x00\x00\x01\x01\x2c\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\ \x04\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\x06\x00\x0a\x00\ \x0e\x00\x2f\x00\xba\x00\x08\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x08\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xb8\x00\ \x08\x10\xb8\x00\x0b\xd0\xba\x00\x0e\x00\x01\x00\x08\x11\x12\x39\ \x30\x31\x15\x17\x23\x11\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x1e\x1e\x01\x4a\x1e\xfe\xd4\x1e\x02\x3a\xfe\xd4\x1e\x01\x0e\ \x96\x32\x01\xf4\x32\xfd\xda\x03\xe8\xfc\x4a\x32\x03\xe8\xfe\x3e\ \x32\x00\x00\x00\x08\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\ \x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\x1e\x00\x77\x00\ \xba\x00\x10\x00\x01\x00\x03\x2b\xba\x00\x04\x00\x01\x00\x10\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\x08\x00\x01\x00\ \x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\xba\x00\x0c\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x0d\xd0\xb8\x00\ \x10\x10\xb8\x00\x13\xd0\xba\x00\x16\x00\x01\x00\x10\x11\x12\x39\ \xb8\x00\x10\x10\xb8\x00\x17\xd0\xba\x00\x1a\x00\x01\x00\x10\x11\ \x12\x39\xb8\x00\x10\x10\xb8\x00\x1b\xd0\xba\x00\x1e\x00\x01\x00\ \x10\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x13\x23\x03\x35\x01\ \x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\ \x15\x03\x33\x17\x15\x1e\x1e\xb4\x1e\x96\x01\x4a\x1e\xfe\xd4\x01\ \xe0\x1e\xfe\x3e\x1e\x02\x3a\xfe\x3e\x1e\x01\xa4\xfe\xd4\x1e\x01\ \x0e\x96\x1e\x78\x96\x32\xfa\x32\xfe\xd4\x01\xf4\x32\xfd\xda\x02\ \xee\x32\xfc\xe0\x03\xe8\xfc\x4a\x32\x03\xe8\xfd\x44\x32\x02\xee\ \xfe\x3e\x32\x01\xf4\xc8\x32\x00\x10\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\ \x1e\x00\x22\x00\x26\x00\x2a\x00\x2e\x00\x32\x00\x36\x00\x3a\x00\ \x3e\x01\x07\x00\xba\x00\x20\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\ \x08\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\ \xba\x00\x0c\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x0d\xd0\xba\x00\x10\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\ \xb8\x00\x11\xd0\xba\x00\x14\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x01\x10\xb8\x00\x15\xd0\xba\x00\x18\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x01\x10\xb8\x00\x19\xd0\xba\x00\x1c\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x1d\xd0\xb8\x00\x20\x10\xb8\x00\ \x23\xd0\xba\x00\x26\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\ \xb8\x00\x27\xd0\xba\x00\x2a\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x20\x10\xb8\x00\x2b\xd0\xba\x00\x2e\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x20\x10\xb8\x00\x2f\xd0\xba\x00\x32\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x33\xd0\xba\x00\x36\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x37\xd0\xba\x00\x3a\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x3b\xd0\xba\x00\ \x3e\x00\x01\x00\x20\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x17\ \x23\x27\x35\x13\x23\x03\x35\x13\x23\x03\x35\x01\x23\x01\x35\x01\ \x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\x15\x03\x33\x13\ \x15\x03\x33\x17\x15\x27\x33\x17\x15\x1e\x1e\x69\x1e\x4b\xb4\x1e\ \x96\xff\x1e\xe1\x01\x4a\x1e\xfe\xd4\x01\x95\x1e\xfe\x89\x01\xe0\ \x1e\xfe\x3e\x02\x2b\x1e\xfd\xf3\x1e\x02\x3a\xfd\xf3\x1e\x01\xef\ \xfe\x3e\x1e\x01\xa4\xfe\x89\x1e\x01\x59\xfe\xd4\x1e\x01\x0e\xe1\ \x1e\xc3\x96\x1e\x78\x4b\x1e\x2d\x96\x32\x7d\x32\xaf\xfa\x32\xfe\ \xd4\x01\x77\x32\xfe\x57\x01\xf4\x32\xfd\xda\x02\x71\x32\xfd\x5d\ \x02\xee\x32\xfc\xe0\x03\x6b\x32\xfc\x63\x03\xe8\xfc\x4a\x32\x03\ \xe8\xfc\xc7\x32\x03\x6b\xfd\x44\x32\x02\xee\xfd\xc1\x32\x02\x71\ \xfe\x3e\x32\x01\xf4\xfe\xbb\x32\x01\x77\xc8\x32\xfa\x4b\x32\x00\ \x01\x00\x00\x02\xa3\x02\x58\x03\x20\x00\x03\x00\x0d\x00\xb8\x00\ \x02\x2f\xb9\x00\x01\x00\x01\xf4\x30\x31\x11\x21\x15\x21\x02\x58\ \xfd\xa8\x03\x20\x7d\x00\x00\x00\x01\x02\x0d\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x33\x11\x23\x02\x0d\x4b\x4b\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x01\x2c\x01\x2c\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x2c\xfe\xd4\ \x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x01\x2c\xff\x38\x02\x58\x01\ \x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x00\x00\ \x01\x00\x00\x01\x2c\x01\x2c\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x2c\xfe\xd4\ \x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\x00\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\x03\x20\xfe\x0c\ \xfe\x0c\x00\x00\x02\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\ \x07\x00\x0b\x00\xb8\x00\x06\x2f\xb8\x00\x00\xdc\x30\x31\x01\x11\ \x21\x11\x01\x11\x21\x11\x01\x2c\xfe\xd4\x02\x58\xfe\xd4\x03\x20\ \xfe\x0c\x01\xf4\xfe\x0c\xfe\x0c\x01\xf4\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\ \x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\ \x03\x20\xfe\x0c\xfe\x0c\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\x03\x20\xfc\x18\ \x01\xf4\x00\x00\x01\x01\x2c\x01\x2c\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x01\x21\x11\x21\ \x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\x02\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x07\x00\x0b\x00\xb8\x00\x02\x2f\ \xb8\x00\x04\xdc\x30\x31\x11\x21\x11\x21\x01\x21\x11\x21\x01\x2c\ \xfe\xd4\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x03\xe8\xfe\x0c\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x05\x00\ \x0b\x00\xb8\x00\x04\x2f\xb8\x00\x03\xdc\x30\x31\x11\x21\x11\x21\ \x11\x21\x01\x2c\x01\x2c\xfd\xa8\x01\x2c\x01\xf4\xfc\x18\x00\x00\ \x00\x00\x22\x01\x9e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x45\x00\ \x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x0f\x00\x45\x00\x01\x00\ \x00\x00\x00\x00\x02\x00\x04\x00\x54\x00\x01\x00\x00\x00\x00\x00\ \x03\x00\x23\x00\x58\x00\x01\x00\x00\x00\x00\x00\x04\x00\x14\x00\ \x7b\x00\x01\x00\x00\x00\x00\x00\x05\x00\x41\x00\x8f\x00\x01\x00\ \x00\x00\x00\x00\x06\x00\x12\x00\xd0\x00\x01\x00\x00\x00\x00\x00\ \x07\x00\x60\x00\xe2\x00\x01\x00\x00\x00\x00\x00\x08\x00\x1a\x01\ \x42\x00\x01\x00\x00\x00\x00\x00\x09\x00\x0c\x01\x5c\x00\x01\x00\ \x00\x00\x00\x00\x0b\x00\x19\x01\x68\x00\x01\x00\x00\x00\x00\x00\ \x0d\x11\xd9\x01\x81\x00\x01\x00\x00\x00\x00\x00\x0e\x00\x24\x13\ \x5a\x00\x01\x00\x00\x00\x00\x01\x00\x00\x16\x13\x7e\x00\x01\x00\ \x00\x00\x00\x01\x01\x00\x0b\x13\x94\x00\x01\x00\x00\x00\x00\x01\ \x02\x00\x0b\x13\x9f\x00\x01\x00\x00\x00\x00\x01\x03\x00\x15\x13\ \xaa\x00\x03\x00\x01\x04\x09\x00\x00\x00\x8a\x13\xbf\x00\x03\x00\ \x01\x04\x09\x00\x01\x00\x1e\x14\x49\x00\x03\x00\x01\x04\x09\x00\ \x02\x00\x08\x14\x67\x00\x03\x00\x01\x04\x09\x00\x03\x00\x46\x14\ \x6f\x00\x03\x00\x01\x04\x09\x00\x04\x00\x28\x14\xb5\x00\x03\x00\ \x01\x04\x09\x00\x05\x00\x82\x14\xdd\x00\x03\x00\x01\x04\x09\x00\ \x06\x00\x24\x15\x5f\x00\x03\x00\x01\x04\x09\x00\x07\x00\xc0\x15\ \x83\x00\x03\x00\x01\x04\x09\x00\x08\x00\x34\x16\x43\x00\x03\x00\ \x01\x04\x09\x00\x09\x00\x18\x16\x77\x00\x03\x00\x01\x04\x09\x00\ \x0b\x00\x32\x16\x8f\x00\x03\x00\x01\x04\x09\x00\x0d\x23\xb6\x16\ \xc1\x00\x03\x00\x01\x04\x09\x00\x0e\x00\x48\x3a\x77\x00\x03\x00\ \x01\x04\x09\x01\x00\x00\x2c\x3a\xbf\x00\x03\x00\x01\x04\x09\x01\ \x01\x00\x16\x3a\xeb\x00\x03\x00\x01\x04\x09\x01\x02\x00\x16\x3b\ \x01\x00\x03\x00\x01\x04\x09\x01\x03\x00\x2a\x3b\x17\x43\x6f\x70\ \x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\x20\x32\x30\x31\ \x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\ \x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x2e\x20\x41\x6c\ \x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\ \x64\x2e\x53\x6f\x75\x72\x63\x65\x20\x43\x6f\x64\x65\x20\x50\x72\ \x6f\x42\x6f\x6c\x64\x31\x2e\x30\x31\x37\x3b\x41\x44\x42\x45\x3b\ \x53\x6f\x75\x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\x2d\x42\x6f\ \x6c\x64\x3b\x41\x44\x4f\x42\x45\x53\x6f\x75\x72\x63\x65\x20\x43\ \x6f\x64\x65\x20\x50\x72\x6f\x20\x42\x6f\x6c\x64\x56\x65\x72\x73\ \x69\x6f\x6e\x20\x31\x2e\x30\x31\x37\x3b\x50\x53\x20\x56\x65\x72\ \x73\x69\x6f\x6e\x20\x31\x2e\x30\x30\x30\x3b\x68\x6f\x74\x63\x6f\ \x6e\x76\x20\x31\x2e\x30\x2e\x37\x30\x3b\x6d\x61\x6b\x65\x6f\x74\ \x66\x2e\x6c\x69\x62\x32\x2e\x35\x2e\x35\x39\x30\x30\x53\x6f\x75\ \x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\x2d\x42\x6f\x6c\x64\x53\ \x6f\x75\x72\x63\x65\x20\x69\x73\x20\x61\x20\x74\x72\x61\x64\x65\ \x6d\x61\x72\x6b\x20\x6f\x66\x20\x41\x64\x6f\x62\x65\x20\x53\x79\ \x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\ \x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\ \x20\x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\ \x74\x68\x65\x72\x20\x63\x6f\x75\x6e\x74\x72\x69\x65\x73\x2e\x41\ \x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\ \x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x50\x61\x75\x6c\x20\x44\x2e\ \x20\x48\x75\x6e\x74\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ \x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\x20\x32\x30\ \x31\x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\ \x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x28\x68\ \x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\ \x63\x6f\x6d\x2f\x29\x2c\x20\x77\x69\x74\x68\x20\x52\x65\x73\x65\ \x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\x20\x27\ \x53\x6f\x75\x72\x63\x65\x27\x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\ \x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\x64\x2e\x20\x53\x6f\ \x75\x72\x63\x65\x20\x69\x73\x20\x61\x20\x74\x72\x61\x64\x65\x6d\ \x61\x72\x6b\x20\x6f\x66\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\ \x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\ \x64\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\ \x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\ \x68\x65\x72\x20\x63\x6f\x75\x6e\x74\x72\x69\x65\x73\x2e\x0d\x0a\ \x0d\x0a\x54\x68\x69\x73\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x20\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x64\ \x20\x75\x6e\x64\x65\x72\x20\x74\x68\x65\x20\x53\x49\x4c\x20\x4f\ \x70\x65\x6e\x20\x46\x6f\x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\x65\ \x2c\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x31\x2e\x0d\x0a\ \x0d\x0a\x54\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x69\ \x73\x20\x63\x6f\x70\x69\x65\x64\x20\x62\x65\x6c\x6f\x77\x2c\x20\ \x61\x6e\x64\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x61\x76\x61\x69\ \x6c\x61\x62\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x20\x46\x41\x51\ \x20\x61\x74\x3a\x20\x68\x74\x74\x70\x3a\x2f\x2f\x73\x63\x72\x69\ \x70\x74\x73\x2e\x73\x69\x6c\x2e\x6f\x72\x67\x2f\x4f\x46\x4c\x0d\ \x0a\x0d\x0a\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\ \x53\x49\x4c\x20\x4f\x50\x45\x4e\x20\x46\x4f\x4e\x54\x20\x4c\x49\ \x43\x45\x4e\x53\x45\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\ \x31\x20\x2d\x20\x32\x36\x20\x46\x65\x62\x72\x75\x61\x72\x79\x20\ \x32\x30\x30\x37\x0d\x0a\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x0d\x0a\x0d\x0a\x50\x52\x45\x41\x4d\x42\x4c\x45\x0d\x0a\x54\ \x68\x65\x20\x67\x6f\x61\x6c\x73\x20\x6f\x66\x20\x74\x68\x65\x20\ \x4f\x70\x65\x6e\x20\x46\x6f\x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\ \x65\x20\x28\x4f\x46\x4c\x29\x20\x61\x72\x65\x20\x74\x6f\x20\x73\ \x74\x69\x6d\x75\x6c\x61\x74\x65\x20\x77\x6f\x72\x6c\x64\x77\x69\ \x64\x65\x20\x64\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x20\x6f\ \x66\x20\x63\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x76\x65\x20\ \x66\x6f\x6e\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x73\x2c\x20\x74\ \x6f\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x66\x6f\ \x6e\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x65\x66\x66\x6f\ \x72\x74\x73\x20\x6f\x66\x20\x61\x63\x61\x64\x65\x6d\x69\x63\x20\ \x61\x6e\x64\x20\x6c\x69\x6e\x67\x75\x69\x73\x74\x69\x63\x20\x63\ \x6f\x6d\x6d\x75\x6e\x69\x74\x69\x65\x73\x2c\x20\x61\x6e\x64\x20\ \x74\x6f\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x20\x66\x72\x65\ \x65\x20\x61\x6e\x64\x20\x6f\x70\x65\x6e\x20\x66\x72\x61\x6d\x65\ \x77\x6f\x72\x6b\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x66\x6f\ \x6e\x74\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x73\x68\x61\x72\x65\ \x64\x20\x61\x6e\x64\x20\x69\x6d\x70\x72\x6f\x76\x65\x64\x20\x69\ \x6e\x20\x70\x61\x72\x74\x6e\x65\x72\x73\x68\x69\x70\x20\x77\x69\ \x74\x68\x20\x6f\x74\x68\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\ \x65\x20\x4f\x46\x4c\x20\x61\x6c\x6c\x6f\x77\x73\x20\x74\x68\x65\ \x20\x6c\x69\x63\x65\x6e\x73\x65\x64\x20\x66\x6f\x6e\x74\x73\x20\ \x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x73\x74\x75\x64\ \x69\x65\x64\x2c\x20\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x61\x6e\ \x64\x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\ \x66\x72\x65\x65\x6c\x79\x20\x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\ \x73\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x73\ \x6f\x6c\x64\x20\x62\x79\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\ \x73\x2e\x20\x54\x68\x65\x20\x66\x6f\x6e\x74\x73\x2c\x20\x69\x6e\ \x63\x6c\x75\x64\x69\x6e\x67\x20\x61\x6e\x79\x20\x64\x65\x72\x69\ \x76\x61\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x2c\x20\x63\x61\ \x6e\x20\x62\x65\x20\x62\x75\x6e\x64\x6c\x65\x64\x2c\x20\x65\x6d\ \x62\x65\x64\x64\x65\x64\x2c\x20\x72\x65\x64\x69\x73\x74\x72\x69\ \x62\x75\x74\x65\x64\x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\ \x64\x20\x77\x69\x74\x68\x20\x61\x6e\x79\x20\x73\x6f\x66\x74\x77\ \x61\x72\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x68\x61\ \x74\x20\x61\x6e\x79\x20\x72\x65\x73\x65\x72\x76\x65\x64\x20\x6e\ \x61\x6d\x65\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x75\x73\x65\ \x64\x20\x62\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\ \x77\x6f\x72\x6b\x73\x2e\x20\x54\x68\x65\x20\x66\x6f\x6e\x74\x73\ \x20\x61\x6e\x64\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x73\ \x2c\x20\x68\x6f\x77\x65\x76\x65\x72\x2c\x20\x63\x61\x6e\x6e\x6f\ \x74\x20\x62\x65\x20\x72\x65\x6c\x65\x61\x73\x65\x64\x20\x75\x6e\ \x64\x65\x72\x20\x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x74\x79\ \x70\x65\x20\x6f\x66\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\ \x68\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65\x6e\x74\x20\x66\ \x6f\x72\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x6d\x61\ \x69\x6e\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\ \x63\x65\x6e\x73\x65\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\ \x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x6f\x63\x75\ \x6d\x65\x6e\x74\x20\x63\x72\x65\x61\x74\x65\x64\x20\x75\x73\x69\ \x6e\x67\x20\x74\x68\x65\x20\x66\x6f\x6e\x74\x73\x20\x6f\x72\x20\ \x74\x68\x65\x69\x72\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\ \x73\x2e\x0d\x0a\x0d\x0a\x44\x45\x46\x49\x4e\x49\x54\x49\x4f\x4e\ \x53\x0d\x0a\x22\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x74\x68\x65\ \x20\x73\x65\x74\x20\x6f\x66\x20\x66\x69\x6c\x65\x73\x20\x72\x65\ \x6c\x65\x61\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\ \x29\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\ \x65\x6e\x73\x65\x20\x61\x6e\x64\x20\x63\x6c\x65\x61\x72\x6c\x79\ \x20\x6d\x61\x72\x6b\x65\x64\x20\x61\x73\x20\x73\x75\x63\x68\x2e\ \x20\x54\x68\x69\x73\x20\x6d\x61\x79\x20\x69\x6e\x63\x6c\x75\x64\ \x65\x20\x73\x6f\x75\x72\x63\x65\x20\x66\x69\x6c\x65\x73\x2c\x20\ \x62\x75\x69\x6c\x64\x20\x73\x63\x72\x69\x70\x74\x73\x20\x61\x6e\ \x64\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\ \x0d\x0a\x0d\x0a\x22\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x22\x20\x72\x65\x66\x65\x72\x73\x20\ \x74\x6f\x20\x61\x6e\x79\x20\x6e\x61\x6d\x65\x73\x20\x73\x70\x65\ \x63\x69\x66\x69\x65\x64\x20\x61\x73\x20\x73\x75\x63\x68\x20\x61\ \x66\x74\x65\x72\x20\x74\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\ \x68\x74\x20\x73\x74\x61\x74\x65\x6d\x65\x6e\x74\x28\x73\x29\x2e\ \x0d\x0a\x0d\x0a\x22\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x56\x65\ \x72\x73\x69\x6f\x6e\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\ \x20\x74\x68\x65\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\ \x6f\x66\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\ \x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x61\x73\x20\x64\ \x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x62\x79\x20\x74\x68\ \x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\ \x65\x72\x28\x73\x29\x2e\x0d\x0a\x0d\x0a\x22\x4d\x6f\x64\x69\x66\ \x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x22\x20\x72\x65\x66\ \x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x65\x72\x69\x76\ \x61\x74\x69\x76\x65\x20\x6d\x61\x64\x65\x20\x62\x79\x20\x61\x64\ \x64\x69\x6e\x67\x20\x74\x6f\x2c\x20\x64\x65\x6c\x65\x74\x69\x6e\ \x67\x2c\x20\x6f\x72\x20\x73\x75\x62\x73\x74\x69\x74\x75\x74\x69\ \x6e\x67\x20\x2d\x2d\x20\x69\x6e\x20\x70\x61\x72\x74\x20\x6f\x72\ \x20\x69\x6e\x20\x77\x68\x6f\x6c\x65\x20\x2d\x2d\x20\x61\x6e\x79\ \x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ \x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x4f\x72\x69\x67\x69\x6e\ \x61\x6c\x20\x56\x65\x72\x73\x69\x6f\x6e\x2c\x20\x62\x79\x20\x63\ \x68\x61\x6e\x67\x69\x6e\x67\x20\x66\x6f\x72\x6d\x61\x74\x73\x20\ \x6f\x72\x20\x62\x79\x20\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\ \x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\ \x74\x6f\x20\x61\x20\x6e\x65\x77\x20\x65\x6e\x76\x69\x72\x6f\x6e\ \x6d\x65\x6e\x74\x2e\x0d\x0a\x0d\x0a\x22\x41\x75\x74\x68\x6f\x72\ \x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x64\x65\x73\x69\x67\x6e\x65\x72\x2c\x20\x65\x6e\x67\x69\x6e\x65\ \x65\x72\x2c\x20\x70\x72\x6f\x67\x72\x61\x6d\x6d\x65\x72\x2c\x20\ \x74\x65\x63\x68\x6e\x69\x63\x61\x6c\x20\x77\x72\x69\x74\x65\x72\ \x20\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x70\x65\x72\x73\x6f\x6e\ \x20\x77\x68\x6f\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x74\x6f\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\ \x74\x77\x61\x72\x65\x2e\x0d\x0a\x0d\x0a\x50\x45\x52\x4d\x49\x53\ \x53\x49\x4f\x4e\x20\x26\x20\x43\x4f\x4e\x44\x49\x54\x49\x4f\x4e\ \x53\x0d\x0a\x50\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x69\x73\ \x20\x68\x65\x72\x65\x62\x79\x20\x67\x72\x61\x6e\x74\x65\x64\x2c\ \x20\x66\x72\x65\x65\x20\x6f\x66\x20\x63\x68\x61\x72\x67\x65\x2c\ \x20\x74\x6f\x20\x61\x6e\x79\x20\x70\x65\x72\x73\x6f\x6e\x20\x6f\ \x62\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x63\x6f\x70\x79\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x2c\x20\x74\x6f\x20\x75\x73\x65\x2c\x20\x73\x74\ \x75\x64\x79\x2c\x20\x63\x6f\x70\x79\x2c\x20\x6d\x65\x72\x67\x65\ \x2c\x20\x65\x6d\x62\x65\x64\x2c\x20\x6d\x6f\x64\x69\x66\x79\x2c\ \x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x2c\x20\x61\ \x6e\x64\x20\x73\x65\x6c\x6c\x20\x6d\x6f\x64\x69\x66\x69\x65\x64\ \x20\x61\x6e\x64\x20\x75\x6e\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\ \x63\x6f\x70\x69\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\ \x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x73\x75\x62\ \x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\ \x6f\x77\x69\x6e\x67\x20\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\ \x3a\x0d\x0a\x0d\x0a\x31\x29\x20\x4e\x65\x69\x74\x68\x65\x72\x20\ \x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x20\x6e\x6f\x72\x20\x61\x6e\x79\x20\x6f\x66\x20\x69\x74\x73\ \x20\x69\x6e\x64\x69\x76\x69\x64\x75\x61\x6c\x20\x63\x6f\x6d\x70\ \x6f\x6e\x65\x6e\x74\x73\x2c\x20\x69\x6e\x20\x4f\x72\x69\x67\x69\ \x6e\x61\x6c\x20\x6f\x72\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\ \x56\x65\x72\x73\x69\x6f\x6e\x73\x2c\x20\x6d\x61\x79\x20\x62\x65\ \x20\x73\x6f\x6c\x64\x20\x62\x79\x20\x69\x74\x73\x65\x6c\x66\x2e\ \x0d\x0a\x0d\x0a\x32\x29\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\ \x6f\x72\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\ \x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6d\x61\x79\x20\x62\x65\ \x20\x62\x75\x6e\x64\x6c\x65\x64\x2c\x20\x72\x65\x64\x69\x73\x74\ \x72\x69\x62\x75\x74\x65\x64\x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\ \x6f\x6c\x64\x20\x77\x69\x74\x68\x20\x61\x6e\x79\x20\x73\x6f\x66\ \x74\x77\x61\x72\x65\x2c\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\ \x74\x68\x61\x74\x20\x65\x61\x63\x68\x20\x63\x6f\x70\x79\x20\x63\ \x6f\x6e\x74\x61\x69\x6e\x73\x20\x74\x68\x65\x20\x61\x62\x6f\x76\ \x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6e\x6f\x74\x69\ \x63\x65\x20\x61\x6e\x64\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\ \x6e\x73\x65\x2e\x20\x54\x68\x65\x73\x65\x20\x63\x61\x6e\x20\x62\ \x65\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x20\x65\x69\x74\x68\x65\ \x72\x20\x61\x73\x20\x73\x74\x61\x6e\x64\x2d\x61\x6c\x6f\x6e\x65\ \x20\x74\x65\x78\x74\x20\x66\x69\x6c\x65\x73\x2c\x20\x68\x75\x6d\ \x61\x6e\x2d\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x68\x65\x61\x64\ \x65\x72\x73\x20\x6f\x72\x20\x69\x6e\x20\x74\x68\x65\x20\x61\x70\ \x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x6d\x61\x63\x68\x69\x6e\ \x65\x2d\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x6d\x65\x74\x61\x64\ \x61\x74\x61\x20\x66\x69\x65\x6c\x64\x73\x20\x77\x69\x74\x68\x69\ \x6e\x20\x74\x65\x78\x74\x20\x6f\x72\x20\x62\x69\x6e\x61\x72\x79\ \x20\x66\x69\x6c\x65\x73\x20\x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\ \x73\x20\x74\x68\x6f\x73\x65\x20\x66\x69\x65\x6c\x64\x73\x20\x63\ \x61\x6e\x20\x62\x65\x20\x65\x61\x73\x69\x6c\x79\x20\x76\x69\x65\ \x77\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x75\x73\x65\x72\x2e\ \x0d\x0a\x0d\x0a\x33\x29\x20\x4e\x6f\x20\x4d\x6f\x64\x69\x66\x69\ \x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\ \x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\ \x6d\x61\x79\x20\x75\x73\x65\x20\x74\x68\x65\x20\x52\x65\x73\x65\ \x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\x28\x73\ \x29\x20\x75\x6e\x6c\x65\x73\x73\x20\x65\x78\x70\x6c\x69\x63\x69\ \x74\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x70\x65\x72\x6d\x69\x73\ \x73\x69\x6f\x6e\x20\x69\x73\x20\x67\x72\x61\x6e\x74\x65\x64\x20\ \x62\x79\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\ \x64\x69\x6e\x67\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\ \x6f\x6c\x64\x65\x72\x2e\x20\x54\x68\x69\x73\x20\x72\x65\x73\x74\ \x72\x69\x63\x74\x69\x6f\x6e\x20\x6f\x6e\x6c\x79\x20\x61\x70\x70\ \x6c\x69\x65\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x70\x72\x69\x6d\ \x61\x72\x79\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x61\x73\ \x20\x70\x72\x65\x73\x65\x6e\x74\x65\x64\x20\x74\x6f\x20\x74\x68\ \x65\x20\x75\x73\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x34\x29\x20\x54\ \x68\x65\x20\x6e\x61\x6d\x65\x28\x73\x29\x20\x6f\x66\x20\x74\x68\ \x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\ \x65\x72\x28\x73\x29\x20\x6f\x72\x20\x74\x68\x65\x20\x41\x75\x74\ \x68\x6f\x72\x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\ \x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x73\x68\x61\x6c\ \x6c\x20\x6e\x6f\x74\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\ \x20\x70\x72\x6f\x6d\x6f\x74\x65\x2c\x20\x65\x6e\x64\x6f\x72\x73\ \x65\x20\x6f\x72\x20\x61\x64\x76\x65\x72\x74\x69\x73\x65\x20\x61\ \x6e\x79\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x6f\x20\x61\ \x63\x6b\x6e\x6f\x77\x6c\x65\x64\x67\x65\x20\x74\x68\x65\x20\x63\ \x6f\x6e\x74\x72\x69\x62\x75\x74\x69\x6f\x6e\x28\x73\x29\x20\x6f\ \x66\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\ \x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x61\x6e\x64\x20\x74\x68\ \x65\x20\x41\x75\x74\x68\x6f\x72\x28\x73\x29\x20\x6f\x72\x20\x77\ \x69\x74\x68\x20\x74\x68\x65\x69\x72\x20\x65\x78\x70\x6c\x69\x63\ \x69\x74\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x70\x65\x72\x6d\x69\ \x73\x73\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x35\x29\x20\x54\x68\x65\ \x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\ \x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x6f\x72\x20\x75\x6e\x6d\x6f\ \x64\x69\x66\x69\x65\x64\x2c\x20\x69\x6e\x20\x70\x61\x72\x74\x20\ \x6f\x72\x20\x69\x6e\x20\x77\x68\x6f\x6c\x65\x2c\x20\x6d\x75\x73\ \x74\x20\x62\x65\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x65\x6e\x74\x69\x72\x65\x6c\x79\x20\x75\x6e\x64\x65\x72\x20\ \x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x2c\x20\x61\x6e\ \x64\x20\x6d\x75\x73\x74\x20\x6e\x6f\x74\x20\x62\x65\x20\x64\x69\ \x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x75\x6e\x64\x65\x72\x20\ \x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x6c\x69\x63\x65\x6e\x73\ \x65\x2e\x20\x54\x68\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65\ \x6e\x74\x20\x66\x6f\x72\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\ \x72\x65\x6d\x61\x69\x6e\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\ \x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x64\x6f\x65\x73\x20\x6e\ \x6f\x74\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x63\x72\x65\x61\x74\x65\x64\ \x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x2e\x0d\x0a\x0d\x0a\x54\x45\x52\ \x4d\x49\x4e\x41\x54\x49\x4f\x4e\x0d\x0a\x54\x68\x69\x73\x20\x6c\ \x69\x63\x65\x6e\x73\x65\x20\x62\x65\x63\x6f\x6d\x65\x73\x20\x6e\ \x75\x6c\x6c\x20\x61\x6e\x64\x20\x76\x6f\x69\x64\x20\x69\x66\x20\ \x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x62\x6f\x76\x65\ \x20\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\ \x6e\x6f\x74\x20\x6d\x65\x74\x2e\x0d\x0a\x0d\x0a\x44\x49\x53\x43\ \x4c\x41\x49\x4d\x45\x52\x0d\x0a\x54\x48\x45\x20\x46\x4f\x4e\x54\ \x20\x53\x4f\x46\x54\x57\x41\x52\x45\x20\x49\x53\x20\x50\x52\x4f\ \x56\x49\x44\x45\x44\x20\x22\x41\x53\x20\x49\x53\x22\x2c\x20\x57\ \x49\x54\x48\x4f\x55\x54\x20\x57\x41\x52\x52\x41\x4e\x54\x59\x20\ \x4f\x46\x20\x41\x4e\x59\x20\x4b\x49\x4e\x44\x2c\x20\x45\x58\x50\ \x52\x45\x53\x53\x20\x4f\x52\x20\x49\x4d\x50\x4c\x49\x45\x44\x2c\ \x20\x49\x4e\x43\x4c\x55\x44\x49\x4e\x47\x20\x42\x55\x54\x20\x4e\ \x4f\x54\x20\x4c\x49\x4d\x49\x54\x45\x44\x20\x54\x4f\x20\x41\x4e\ \x59\x20\x57\x41\x52\x52\x41\x4e\x54\x49\x45\x53\x20\x4f\x46\x20\ \x4d\x45\x52\x43\x48\x41\x4e\x54\x41\x42\x49\x4c\x49\x54\x59\x2c\ \x20\x46\x49\x54\x4e\x45\x53\x53\x20\x46\x4f\x52\x20\x41\x20\x50\ \x41\x52\x54\x49\x43\x55\x4c\x41\x52\x20\x50\x55\x52\x50\x4f\x53\ \x45\x20\x41\x4e\x44\x20\x4e\x4f\x4e\x49\x4e\x46\x52\x49\x4e\x47\ \x45\x4d\x45\x4e\x54\x20\x4f\x46\x20\x43\x4f\x50\x59\x52\x49\x47\ \x48\x54\x2c\x20\x50\x41\x54\x45\x4e\x54\x2c\x20\x54\x52\x41\x44\ \x45\x4d\x41\x52\x4b\x2c\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\x20\ \x52\x49\x47\x48\x54\x2e\x20\x49\x4e\x20\x4e\x4f\x20\x45\x56\x45\ \x4e\x54\x20\x53\x48\x41\x4c\x4c\x20\x54\x48\x45\x20\x43\x4f\x50\ \x59\x52\x49\x47\x48\x54\x20\x48\x4f\x4c\x44\x45\x52\x20\x42\x45\ \x20\x4c\x49\x41\x42\x4c\x45\x20\x46\x4f\x52\x20\x41\x4e\x59\x20\ \x43\x4c\x41\x49\x4d\x2c\x20\x44\x41\x4d\x41\x47\x45\x53\x20\x4f\ \x52\x20\x4f\x54\x48\x45\x52\x20\x4c\x49\x41\x42\x49\x4c\x49\x54\ \x59\x2c\x20\x49\x4e\x43\x4c\x55\x44\x49\x4e\x47\x20\x41\x4e\x59\ \x20\x47\x45\x4e\x45\x52\x41\x4c\x2c\x20\x53\x50\x45\x43\x49\x41\ \x4c\x2c\x20\x49\x4e\x44\x49\x52\x45\x43\x54\x2c\x20\x49\x4e\x43\ \x49\x44\x45\x4e\x54\x41\x4c\x2c\x20\x4f\x52\x20\x43\x4f\x4e\x53\ \x45\x51\x55\x45\x4e\x54\x49\x41\x4c\x20\x44\x41\x4d\x41\x47\x45\ \x53\x2c\x20\x57\x48\x45\x54\x48\x45\x52\x20\x49\x4e\x20\x41\x4e\ \x20\x41\x43\x54\x49\x4f\x4e\x20\x4f\x46\x20\x43\x4f\x4e\x54\x52\ \x41\x43\x54\x2c\x20\x54\x4f\x52\x54\x20\x4f\x52\x20\x4f\x54\x48\ \x45\x52\x57\x49\x53\x45\x2c\x20\x41\x52\x49\x53\x49\x4e\x47\x20\ \x46\x52\x4f\x4d\x2c\x20\x4f\x55\x54\x20\x4f\x46\x20\x54\x48\x45\ \x20\x55\x53\x45\x20\x4f\x52\x20\x49\x4e\x41\x42\x49\x4c\x49\x54\ \x59\x20\x54\x4f\x20\x55\x53\x45\x20\x54\x48\x45\x20\x46\x4f\x4e\ \x54\x20\x53\x4f\x46\x54\x57\x41\x52\x45\x20\x4f\x52\x20\x46\x52\ \x4f\x4d\x20\x4f\x54\x48\x45\x52\x20\x44\x45\x41\x4c\x49\x4e\x47\ \x53\x20\x49\x4e\x20\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\ \x46\x54\x57\x41\x52\x45\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ \x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\ \x2f\x6c\x65\x67\x61\x6c\x2e\x68\x74\x6d\x6c\x54\x79\x70\x6f\x67\ \x72\x61\x70\x68\x69\x63\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\ \x73\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x61\x41\x6c\x74\x65\ \x72\x6e\x61\x74\x65\x20\x67\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\ \x20\x64\x6f\x6c\x6c\x61\x72\x20\x73\x69\x67\x6e\x00\x43\x00\x6f\ \x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ \x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\x20\x00\x32\x00\x30\ \x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\ \x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\ \x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\ \x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x41\ \x00\x6c\x00\x6c\x00\x20\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x73\x00\x20\x00\x52\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\ \x00\x65\x00\x64\x00\x2e\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\ \x00\x65\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x50\ \x00\x72\x00\x6f\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x31\x00\x2e\ \x00\x30\x00\x31\x00\x37\x00\x3b\x00\x41\x00\x44\x00\x42\x00\x45\ \x00\x3b\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\ \x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\ \x00\x6f\x00\x6c\x00\x64\x00\x3b\x00\x41\x00\x44\x00\x4f\x00\x42\ \x00\x45\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\ \x00\x43\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x50\x00\x72\x00\x6f\ \x00\x20\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\ \x00\x31\x00\x37\x00\x3b\x00\x50\x00\x53\x00\x20\x00\x56\x00\x65\ \x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\ \x00\x30\x00\x30\x00\x30\x00\x3b\x00\x68\x00\x6f\x00\x74\x00\x63\ \x00\x6f\x00\x6e\x00\x76\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x2e\ \x00\x37\x00\x30\x00\x3b\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6f\ \x00\x74\x00\x66\x00\x2e\x00\x6c\x00\x69\x00\x62\x00\x32\x00\x2e\ \x00\x35\x00\x2e\x00\x35\x00\x39\x00\x30\x00\x30\x00\x53\x00\x6f\ \x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\ \x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\x00\x6f\x00\x6c\x00\x64\ \x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x69\ \x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\ \x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\ \x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\x73\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\ \x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\ \x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x2e\ \x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\ \x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\ \x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\ \x00\x65\x00\x64\x00\x50\x00\x61\x00\x75\x00\x6c\x00\x20\x00\x44\ \x00\x2e\x00\x20\x00\x48\x00\x75\x00\x6e\x00\x74\x00\x68\x00\x74\ \x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\x00\x77\x00\x77\ \x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x2e\x00\x63\ \x00\x6f\x00\x6d\x00\x2f\x00\x74\x00\x79\x00\x70\x00\x65\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\x20\x00\x32\ \x00\x30\x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\ \x00\x65\x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ \x00\x73\x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\ \x00\x6f\x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x28\ \x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\ \x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\ \x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x29\x00\x2c\x00\x20\ \x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x20\ \x00\x27\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x27\ \x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x52\x00\x69\ \x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\x65\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\ \x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\ \x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\ \x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\x6f\ \x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x75\ \x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\ \x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\ \x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x49\x00\x4c\x00\x20\ \x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x00\x2c\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\ \x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x31\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\ \x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x6f\x00\x77\x00\x2c\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\ \x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x61\ \x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\x46\x00\x41\ \x00\x51\x00\x20\x00\x61\x00\x74\x00\x3a\x00\x20\x00\x68\x00\x74\ \x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x73\x00\x63\x00\x72\ \x00\x69\x00\x70\x00\x74\x00\x73\x00\x2e\x00\x73\x00\x69\x00\x6c\ \x00\x2e\x00\x6f\x00\x72\x00\x67\x00\x2f\x00\x4f\x00\x46\x00\x4c\ \x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x0d\ \x00\x0a\x00\x53\x00\x49\x00\x4c\x00\x20\x00\x4f\x00\x50\x00\x45\ \x00\x4e\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x4c\ \x00\x49\x00\x43\x00\x45\x00\x4e\x00\x53\x00\x45\x00\x20\x00\x56\ \x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\ \x00\x2e\x00\x31\x00\x20\x00\x2d\x00\x20\x00\x32\x00\x36\x00\x20\ \x00\x46\x00\x65\x00\x62\x00\x72\x00\x75\x00\x61\x00\x72\x00\x79\ \x00\x20\x00\x32\x00\x30\x00\x30\x00\x37\x00\x0d\x00\x0a\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x52\ \x00\x45\x00\x41\x00\x4d\x00\x42\x00\x4c\x00\x45\x00\x0d\x00\x0a\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x67\x00\x6f\x00\x61\x00\x6c\ \x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x20\x00\x28\x00\x4f\x00\x46\x00\x4c\x00\x29\ \x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x73\x00\x74\x00\x69\x00\x6d\x00\x75\x00\x6c\x00\x61\x00\x74\ \x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6c\x00\x64\x00\x77\ \x00\x69\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x76\x00\x65\ \x00\x6c\x00\x6f\x00\x70\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\ \x00\x62\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x72\ \x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\x20\ \x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\ \x00\x72\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x66\x00\x66\ \x00\x6f\x00\x72\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x61\x00\x63\x00\x61\x00\x64\x00\x65\x00\x6d\x00\x69\x00\x63\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\ \x00\x67\x00\x75\x00\x69\x00\x73\x00\x74\x00\x69\x00\x63\x00\x20\ \x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x75\x00\x6e\x00\x69\x00\x74\ \x00\x69\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x76\ \x00\x69\x00\x64\x00\x65\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\ \x00\x65\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x72\x00\x61\x00\x6d\ \x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x69\x00\x6e\ \x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x79\ \x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\x61\x00\x72\ \x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\ \x00\x6d\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x65\x00\x64\x00\x20\ \x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x6e\ \x00\x65\x00\x72\x00\x73\x00\x68\x00\x69\x00\x70\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\ \x00\x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\ \x00\x68\x00\x65\x00\x20\x00\x4f\x00\x46\x00\x4c\x00\x20\x00\x61\ \x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\ \x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\x74\x00\x75\ \x00\x64\x00\x69\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6d\x00\x6f\ \x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x6c\x00\x79\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\ \x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ \x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x6d\x00\x73\x00\x65\x00\x6c\x00\x76\ \x00\x65\x00\x73\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x69\ \x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x72\ \x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ \x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x63\ \x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x62\x00\x75\ \x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x65\ \x00\x6d\x00\x62\x00\x65\x00\x64\x00\x64\x00\x65\x00\x64\x00\x2c\ \x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\ \x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\ \x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\ \x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\x74\x00\x68\ \x00\x61\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x72\ \x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\ \x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x61\x00\x72\ \x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ \x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x64\x00\x65\ \x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\ \x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x65\ \x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x73\x00\x2c\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x65\x00\x76\ \x00\x65\x00\x72\x00\x2c\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x6e\ \x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\ \x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x75\ \x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x6c\ \x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x65\x00\x71\x00\x75\ \x00\x69\x00\x72\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ \x00\x66\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\ \x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x6d\ \x00\x61\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\ \x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\ \x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x64\ \x00\x6f\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ \x00\x61\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x63\ \x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\ \x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x73\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x64\ \x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\ \x00\x65\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\ \x00\x45\x00\x46\x00\x49\x00\x4e\x00\x49\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x22\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\ \x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x73\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x72\ \x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ \x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\ \x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x61\x00\x6e\ \x00\x64\x00\x20\x00\x63\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x6c\ \x00\x79\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\ \x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\ \x00\x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\ \x00\x61\x00\x79\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ \x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x75\x00\x72\x00\x63\ \x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\ \x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x73\ \x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ \x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x52\x00\x65\ \x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\ \x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\ \x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x73\x00\x70\ \x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\x00\x20\ \x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\ \x00\x67\x00\x68\x00\x74\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\ \x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x28\x00\x73\x00\x29\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4f\x00\x72\ \x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\ \x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\ \x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\ \x00\x6c\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\ \x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ \x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\ \x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\ \x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\x00\x72\x00\x65\ \x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x72\x00\x69\ \x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x6d\ \x00\x61\x00\x64\x00\x65\x00\x20\x00\x62\x00\x79\x00\x20\x00\x61\ \x00\x64\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\ \x00\x2c\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x69\ \x00\x6e\x00\x67\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\ \x00\x75\x00\x62\x00\x73\x00\x74\x00\x69\x00\x74\x00\x75\x00\x74\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\x69\ \x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\ \x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\ \x00\x6c\x00\x65\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\x61\x00\x6e\ \x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ \x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\ \x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x63\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x73\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x79\x00\x20\x00\x70\ \x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\ \x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x65\ \x00\x77\x00\x20\x00\x65\x00\x6e\x00\x76\x00\x69\x00\x72\x00\x6f\ \x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x0d\x00\x0a\ \x00\x0d\x00\x0a\x00\x22\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\ \x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x65\ \x00\x72\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x67\x00\x69\x00\x6e\ \x00\x65\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x6f\ \x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x2c\ \x00\x20\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x63\ \x00\x61\x00\x6c\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x65\ \x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\ \x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\x00\x20\x00\x63\x00\x6f\ \x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\ \x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x45\x00\x52\x00\x4d\x00\x49\ \x00\x53\x00\x53\x00\x49\x00\x4f\x00\x4e\x00\x20\x00\x26\x00\x20\ \x00\x43\x00\x4f\x00\x4e\x00\x44\x00\x49\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x50\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\ \x00\x73\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\x62\x00\x79\ \x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x64\ \x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x20\x00\x6f\ \x00\x66\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x67\x00\x65\ \x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x6e\x00\x20\ \x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\ \x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x73\ \x00\x74\x00\x75\x00\x64\x00\x79\x00\x2c\x00\x20\x00\x63\x00\x6f\ \x00\x70\x00\x79\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x67\ \x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x64\ \x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x79\ \x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\x74\ \x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x2c\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x6c\ \x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x75\x00\x6e\ \x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\ \x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x73\x00\x75\ \x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6c\ \x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\ \x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x73\x00\x3a\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x31\x00\x29\ \x00\x20\x00\x4e\x00\x65\x00\x69\x00\x74\x00\x68\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x20\x00\x61\ \x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x69\x00\x74\ \x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x76\x00\x69\ \x00\x64\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\ \x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\ \x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\ \x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\ \x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ \x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\ \x00\x79\x00\x20\x00\x69\x00\x74\x00\x73\x00\x65\x00\x6c\x00\x66\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x32\x00\x29\x00\x20\ \x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x6c\x00\x65\ \x00\x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\ \x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\ \x00\x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\ \x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\ \x00\x70\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\ \x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x65\x00\x61\ \x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x20\ \x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\x6f\ \x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x74\ \x00\x69\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ \x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\ \x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\ \x00\x65\x00\x73\x00\x65\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ \x00\x62\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ \x00\x64\x00\x65\x00\x64\x00\x20\x00\x65\x00\x69\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x74\ \x00\x61\x00\x6e\x00\x64\x00\x2d\x00\x61\x00\x6c\x00\x6f\x00\x6e\ \x00\x65\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x66\ \x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x68\x00\x75\ \x00\x6d\x00\x61\x00\x6e\x00\x2d\x00\x72\x00\x65\x00\x61\x00\x64\ \x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x68\x00\x65\x00\x61\ \x00\x64\x00\x65\x00\x72\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\ \x00\x70\x00\x70\x00\x72\x00\x6f\x00\x70\x00\x72\x00\x69\x00\x61\ \x00\x74\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x63\x00\x68\x00\x69\ \x00\x6e\x00\x65\x00\x2d\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\ \x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x61\ \x00\x64\x00\x61\x00\x74\x00\x61\x00\x20\x00\x66\x00\x69\x00\x65\ \x00\x6c\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\ \x00\x69\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ \x00\x6f\x00\x72\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\ \x00\x79\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\ \x00\x20\x00\x66\x00\x69\x00\x65\x00\x6c\x00\x64\x00\x73\x00\x20\ \x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\ \x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x76\x00\x69\ \x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x33\x00\x29\x00\x20\ \x00\x4e\x00\x6f\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\ \x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\ \x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x75\x00\x73\x00\x65\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x6c\x00\x65\x00\x73\ \x00\x73\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\x69\x00\x63\ \x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x74\ \x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\x69\ \x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x73\x00\x70\x00\x6f\ \x00\x6e\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x43\x00\x6f\ \x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ \x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x65\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x61\x00\x70\ \x00\x70\x00\x6c\x00\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x72\x00\x69\ \x00\x6d\x00\x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x61\ \x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x65\x00\x6e\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\x00\x73\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x34\x00\x29\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\ \x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\ \x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\ \x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\ \x00\x74\x00\x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x73\x00\x68\x00\x61\ \x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\x6f\x00\x74\ \x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x72\ \x00\x73\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x64\ \x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x73\x00\x65\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x65\x00\x78\ \x00\x63\x00\x65\x00\x70\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x61\x00\x63\x00\x6b\x00\x6e\x00\x6f\x00\x77\x00\x6c\x00\x65\ \x00\x64\x00\x67\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x28\x00\x73\x00\x29\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x69\x00\x72\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\x69\ \x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ \x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x35\x00\x29\x00\x20\x00\x54\x00\x68\ \x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\ \x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\ \x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x6d\ \x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x2c\ \x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\ \x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x6d\x00\x75\ \x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x69\ \x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x72\x00\x65\ \x00\x6c\x00\x79\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\ \x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\ \x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\ \x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\ \x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\ \x00\x72\x00\x65\x00\x71\x00\x75\x00\x69\x00\x72\x00\x65\x00\x6d\ \x00\x65\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x72\x00\x65\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x20\ \x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\ \x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x20\ \x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\ \x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\ \x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\ \x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\ \x00\x65\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x45\ \x00\x52\x00\x4d\x00\x49\x00\x4e\x00\x41\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\ \x00\x62\x00\x65\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x73\x00\x20\ \x00\x6e\x00\x75\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x64\ \x00\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x69\x00\x66\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\x6f\x00\x76\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\ \x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x74\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\x00\x49\x00\x53\ \x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x45\x00\x52\x00\x0d\ \x00\x0a\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\ \x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\ \x00\x52\x00\x45\x00\x20\x00\x49\x00\x53\x00\x20\x00\x50\x00\x52\ \x00\x4f\x00\x56\x00\x49\x00\x44\x00\x45\x00\x44\x00\x20\x00\x22\ \x00\x41\x00\x53\x00\x20\x00\x49\x00\x53\x00\x22\x00\x2c\x00\x20\ \x00\x57\x00\x49\x00\x54\x00\x48\x00\x4f\x00\x55\x00\x54\x00\x20\ \x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\x00\x4e\x00\x54\x00\x59\ \x00\x20\x00\x4f\x00\x46\x00\x20\x00\x41\x00\x4e\x00\x59\x00\x20\ \x00\x4b\x00\x49\x00\x4e\x00\x44\x00\x2c\x00\x20\x00\x45\x00\x58\ \x00\x50\x00\x52\x00\x45\x00\x53\x00\x53\x00\x20\x00\x4f\x00\x52\ \x00\x20\x00\x49\x00\x4d\x00\x50\x00\x4c\x00\x49\x00\x45\x00\x44\ \x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\x00\x55\x00\x44\ \x00\x49\x00\x4e\x00\x47\x00\x20\x00\x42\x00\x55\x00\x54\x00\x20\ \x00\x4e\x00\x4f\x00\x54\x00\x20\x00\x4c\x00\x49\x00\x4d\x00\x49\ \x00\x54\x00\x45\x00\x44\x00\x20\x00\x54\x00\x4f\x00\x20\x00\x41\ \x00\x4e\x00\x59\x00\x20\x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\ \x00\x4e\x00\x54\x00\x49\x00\x45\x00\x53\x00\x20\x00\x4f\x00\x46\ \x00\x20\x00\x4d\x00\x45\x00\x52\x00\x43\x00\x48\x00\x41\x00\x4e\ \x00\x54\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\x00\x54\x00\x59\ \x00\x2c\x00\x20\x00\x46\x00\x49\x00\x54\x00\x4e\x00\x45\x00\x53\ \x00\x53\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\x20\ \x00\x50\x00\x41\x00\x52\x00\x54\x00\x49\x00\x43\x00\x55\x00\x4c\ \x00\x41\x00\x52\x00\x20\x00\x50\x00\x55\x00\x52\x00\x50\x00\x4f\ \x00\x53\x00\x45\x00\x20\x00\x41\x00\x4e\x00\x44\x00\x20\x00\x4e\ \x00\x4f\x00\x4e\x00\x49\x00\x4e\x00\x46\x00\x52\x00\x49\x00\x4e\ \x00\x47\x00\x45\x00\x4d\x00\x45\x00\x4e\x00\x54\x00\x20\x00\x4f\ \x00\x46\x00\x20\x00\x43\x00\x4f\x00\x50\x00\x59\x00\x52\x00\x49\ \x00\x47\x00\x48\x00\x54\x00\x2c\x00\x20\x00\x50\x00\x41\x00\x54\ \x00\x45\x00\x4e\x00\x54\x00\x2c\x00\x20\x00\x54\x00\x52\x00\x41\ \x00\x44\x00\x45\x00\x4d\x00\x41\x00\x52\x00\x4b\x00\x2c\x00\x20\ \x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\x00\x52\ \x00\x20\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x2e\x00\x20\ \x00\x49\x00\x4e\x00\x20\x00\x4e\x00\x4f\x00\x20\x00\x45\x00\x56\ \x00\x45\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x48\x00\x41\x00\x4c\ \x00\x4c\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\x43\x00\x4f\ \x00\x50\x00\x59\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x20\ \x00\x48\x00\x4f\x00\x4c\x00\x44\x00\x45\x00\x52\x00\x20\x00\x42\ \x00\x45\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x4c\x00\x45\ \x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\x4e\x00\x59\ \x00\x20\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x2c\x00\x20\ \x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\x00\x45\x00\x53\x00\x20\ \x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\x00\x52\ \x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\ \x00\x54\x00\x59\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\ \x00\x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\x41\x00\x4e\ \x00\x59\x00\x20\x00\x47\x00\x45\x00\x4e\x00\x45\x00\x52\x00\x41\ \x00\x4c\x00\x2c\x00\x20\x00\x53\x00\x50\x00\x45\x00\x43\x00\x49\ \x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x44\x00\x49\ \x00\x52\x00\x45\x00\x43\x00\x54\x00\x2c\x00\x20\x00\x49\x00\x4e\ \x00\x43\x00\x49\x00\x44\x00\x45\x00\x4e\x00\x54\x00\x41\x00\x4c\ \x00\x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x43\x00\x4f\x00\x4e\ \x00\x53\x00\x45\x00\x51\x00\x55\x00\x45\x00\x4e\x00\x54\x00\x49\ \x00\x41\x00\x4c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\ \x00\x45\x00\x53\x00\x2c\x00\x20\x00\x57\x00\x48\x00\x45\x00\x54\ \x00\x48\x00\x45\x00\x52\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x41\ \x00\x4e\x00\x20\x00\x41\x00\x43\x00\x54\x00\x49\x00\x4f\x00\x4e\ \x00\x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\x4e\x00\x54\ \x00\x52\x00\x41\x00\x43\x00\x54\x00\x2c\x00\x20\x00\x54\x00\x4f\ \x00\x52\x00\x54\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\ \x00\x48\x00\x45\x00\x52\x00\x57\x00\x49\x00\x53\x00\x45\x00\x2c\ \x00\x20\x00\x41\x00\x52\x00\x49\x00\x53\x00\x49\x00\x4e\x00\x47\ \x00\x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x2c\x00\x20\x00\x4f\ \x00\x55\x00\x54\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x54\x00\x48\ \x00\x45\x00\x20\x00\x55\x00\x53\x00\x45\x00\x20\x00\x4f\x00\x52\ \x00\x20\x00\x49\x00\x4e\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\ \x00\x54\x00\x59\x00\x20\x00\x54\x00\x4f\x00\x20\x00\x55\x00\x53\ \x00\x45\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\ \x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\ \x00\x41\x00\x52\x00\x45\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x46\ \x00\x52\x00\x4f\x00\x4d\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\ \x00\x52\x00\x20\x00\x44\x00\x45\x00\x41\x00\x4c\x00\x49\x00\x4e\ \x00\x47\x00\x53\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x54\x00\x48\ \x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x53\ \x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\x00\x52\x00\x45\x00\x2e\ \x00\x0d\x00\x0a\x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\ \x00\x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\ \x00\x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x2f\x00\x6c\x00\x65\x00\x67\x00\x61\ \x00\x6c\x00\x2e\x00\x68\x00\x74\x00\x6d\x00\x6c\x00\x54\x00\x79\ \x00\x70\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x70\x00\x68\x00\x69\ \x00\x63\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\ \x00\x61\x00\x74\x00\x65\x00\x73\x00\x41\x00\x6c\x00\x74\x00\x65\ \x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x41\ \x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\ \x00\x20\x00\x67\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\ \x00\x61\x00\x74\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x6c\x00\x6c\ \x00\x61\x00\x72\x00\x20\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x00\ \x02\x00\x00\x00\x00\x00\x00\xff\xb5\x00\x32\x00\x00\x00\x01\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\ \xc5\x00\x00\x01\x02\x01\x03\x00\x03\x00\x24\x00\x25\x00\x26\x00\ \x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\ \x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\ \x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x44\x00\ \x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\ \x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\ \x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\ \x5d\x00\xad\x00\xc9\x00\xc7\x00\xae\x00\x62\x01\x04\x01\x05\x00\ \x63\x01\x06\x01\x07\x01\x08\x01\x09\x01\x0a\x01\x0b\x01\x0c\x01\ \x0d\x01\x0e\x01\x0f\x01\x10\x01\x11\x01\x12\x01\x13\x00\x90\x01\ \x14\x00\x64\x00\xfd\x01\x15\x00\xff\x01\x16\x01\x17\x01\x18\x01\ \x19\x01\x1a\x00\xcb\x00\x65\x00\xc8\x01\x1b\x00\xca\x01\x1c\x01\ \x1d\x01\x1e\x01\x1f\x01\x20\x01\x21\x01\x22\x01\x23\x01\x24\x01\ \x25\x01\x26\x01\x27\x01\x28\x00\xf8\x01\x29\x01\x2a\x01\x2b\x01\ \x2c\x01\x2d\x01\x2e\x01\x2f\x01\x30\x01\x31\x00\xcf\x00\xcc\x00\ \xcd\x01\x32\x00\xce\x01\x33\x01\x34\x00\xfa\x01\x35\x01\x36\x01\ \x37\x01\x38\x01\x39\x01\x3a\x01\x3b\x01\x3c\x01\x3d\x01\x3e\x01\ \x3f\x01\x40\x01\x41\x00\xe2\x01\x42\x01\x43\x01\x44\x00\x66\x01\ \x45\x01\x46\x01\x47\x01\x48\x00\xd3\x00\xd0\x00\xd1\x00\xaf\x00\ \x67\x01\x49\x01\x4a\x01\x4b\x01\x4c\x01\x4d\x01\x4e\x01\x4f\x01\ \x50\x01\x51\x01\x52\x01\x53\x00\x91\x00\xb0\x01\x54\x01\x55\x01\ \x56\x01\x57\x01\x58\x01\x59\x01\x5a\x01\x5b\x01\x5c\x01\x5d\x01\ \x5e\x01\x5f\x01\x60\x01\x61\x01\x62\x00\xe4\x01\x63\x01\x64\x01\ \x65\x01\x66\x01\x67\x01\x68\x01\x69\x01\x6a\x01\x6b\x01\x6c\x00\ \xd6\x00\xd4\x00\xd5\x01\x6d\x00\x68\x01\x6e\x01\x6f\x01\x70\x01\ \x71\x01\x72\x01\x73\x01\x74\x01\x75\x01\x76\x01\x77\x01\x78\x01\ \x79\x01\x7a\x01\x7b\x01\x7c\x01\x7d\x01\x7e\x01\x7f\x01\x80\x01\ \x81\x01\x82\x01\x83\x01\x84\x00\xeb\x01\x85\x00\xbb\x01\x86\x01\ \x87\x01\x88\x01\x89\x01\x8a\x00\xe6\x01\x8b\x01\x8c\x00\xe9\x00\ \xed\x01\x8d\x00\x6a\x00\x69\x00\x6b\x00\x6d\x00\x6c\x01\x8e\x01\ \x8f\x00\x6e\x01\x90\x01\x91\x01\x92\x01\x93\x01\x94\x01\x95\x01\ \x96\x01\x97\x01\x98\x01\x99\x01\x9a\x01\x9b\x01\x9c\x01\x9d\x00\ \xa0\x01\x9e\x00\x6f\x00\xfe\x01\x9f\x01\x00\x01\xa0\x01\xa1\x01\ \xa2\x01\xa3\x01\x01\x00\x71\x00\x70\x00\x72\x01\xa4\x00\x73\x01\ \xa5\x01\xa6\x01\xa7\x01\xa8\x01\xa9\x01\xaa\x01\xab\x01\xac\x01\ \xad\x01\xae\x01\xaf\x01\xb0\x01\xb1\x00\xf9\x01\xb2\x01\xb3\x01\ \xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x00\x75\x00\ \x74\x00\x76\x01\xbb\x00\x77\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\ \xc0\x01\xc1\x01\xc2\x00\xd7\x01\xc3\x01\xc4\x01\xc5\x01\xc6\x01\ \xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\xcc\x00\xe3\x01\xcd\x01\ \xce\x01\xcf\x00\x78\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x00\ \x7a\x00\x79\x00\x7b\x00\x7d\x00\x7c\x01\xd5\x01\xd6\x01\xd7\x01\ \xd8\x01\xd9\x01\xda\x01\xdb\x01\xdc\x01\xdd\x01\xde\x01\xdf\x00\ \xa1\x00\xb1\x01\xe0\x01\xe1\x01\xe2\x01\xe3\x01\xe4\x01\xe5\x01\ \xe6\x01\xe7\x01\xe8\x01\xe9\x01\xea\x01\xeb\x01\xec\x01\xed\x01\ \xee\x00\xe5\x01\xef\x01\xf0\x01\xf1\x01\xf2\x00\x89\x01\xf3\x01\ \xf4\x01\xf5\x01\xf6\x01\xf7\x01\xf8\x00\x7f\x00\x7e\x00\x80\x01\ \xf9\x00\x81\x01\xfa\x01\xfb\x01\xfc\x01\xfd\x01\xfe\x01\xff\x02\ \x00\x02\x01\x02\x02\x02\x03\x02\x04\x02\x05\x02\x06\x02\x07\x02\ \x08\x02\x09\x02\x0a\x02\x0b\x02\x0c\x02\x0d\x02\x0e\x02\x0f\x02\ \x10\x00\xec\x02\x11\x00\xba\x02\x12\x02\x13\x02\x14\x02\x15\x02\ \x16\x00\xe7\x02\x17\x02\x18\x00\xea\x00\xee\x02\x19\x02\x1a\x02\ \x1b\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\x21\x02\x22\x02\ \x23\x02\x24\x02\x25\x02\x26\x02\x27\x02\x28\x00\xc0\x00\xc1\x02\ \x29\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\x2f\x02\x30\x02\ \x31\x02\x32\x02\x33\x02\x34\x02\x35\x02\x36\x02\x37\x02\x38\x02\ \x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\ \x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\x46\x02\x47\x00\x09\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\x4d\x02\ \x4e\x02\x4f\x02\x50\x02\x51\x00\x11\x00\x0f\x00\x1d\x00\x1e\x00\ \xab\x00\x04\x00\xa3\x00\x22\x00\xa2\x00\x0a\x00\x05\x00\xb6\x00\ \xb7\x00\xb4\x00\xb5\x00\xc4\x00\xc5\x00\xbe\x00\xbf\x00\xa9\x00\ \xaa\x00\x10\x02\x52\x00\xb2\x00\xb3\x02\x53\x02\x54\x00\xc3\x00\ \x87\x00\x42\x00\x0b\x00\x0c\x00\x3e\x00\x40\x00\x5e\x00\x60\x00\ \x12\x00\x5f\x00\x3f\x00\xe8\x00\x0d\x00\x82\x00\xc2\x00\x86\x00\ \x88\x00\x8b\x02\x55\x00\x8a\x00\x8c\x02\x56\x00\x23\x02\x57\x00\ \x06\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\x5d\x02\x5e\x02\ \x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\x65\x02\x66\x02\ \x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\x6d\x02\x6e\x02\ \x6f\x02\x70\x02\x71\x02\x72\x02\x73\x02\x74\x02\x75\x02\x76\x02\ \x77\x02\x78\x02\x79\x02\x7a\x02\x7b\x02\x7c\x02\x7d\x02\x7e\x02\ \x7f\x02\x80\x02\x81\x02\x82\x02\x83\x02\x84\x02\x85\x02\x86\x02\ \x87\x02\x88\x02\x89\x02\x8a\x02\x8b\x02\x8c\x02\x8d\x02\x8e\x02\ \x8f\x02\x90\x02\x91\x02\x92\x02\x93\x00\x9d\x02\x94\x00\x9e\x02\ \x95\x02\x96\x02\x97\x02\x98\x02\x99\x02\x9a\x02\x9b\x02\x9c\x02\ \x9d\x02\x9e\x02\x9f\x02\xa0\x02\xa1\x02\xa2\x02\xa3\x02\xa4\x02\ \xa5\x02\xa6\x02\xa7\x02\xa8\x02\xa9\x02\xaa\x02\xab\x02\xac\x02\ \xad\x02\xae\x02\xaf\x02\xb0\x02\xb1\x02\xb2\x02\xb3\x00\x83\x00\ \xbd\x00\x07\x00\x85\x00\x96\x02\xb4\x00\x84\x02\xb5\x02\xb6\x02\ \xb7\x02\xb8\x02\xb9\x02\xba\x02\xbb\x02\xbc\x02\xbd\x02\xbe\x02\ \xbf\x00\xbc\x02\xc0\x02\xc1\x00\x08\x00\xc6\x00\xf5\x00\xf4\x00\ \xf6\x02\xc2\x02\xc3\x02\xc4\x02\xc5\x02\xc6\x02\xc7\x00\x0e\x00\ \xef\x00\xf0\x00\xb8\x02\xc8\x00\x20\x00\x1f\x00\x21\x00\x94\x00\ \x95\x00\x93\x00\x41\x00\x8f\x00\x61\x00\xa7\x00\xa4\x00\x9b\x00\ \x92\x02\xc9\x00\x98\x00\x9c\x00\xa5\x02\xca\x02\xcb\x00\x99\x00\ \x9a\x02\xcc\x02\xcd\x02\xce\x02\xcf\x02\xd0\x02\xd1\x02\xd2\x02\ \xd3\x02\xd4\x02\xd5\x02\xd6\x02\xd7\x02\xd8\x02\xd9\x02\xda\x02\ \xdb\x02\xdc\x02\xdd\x02\xde\x02\xdf\x02\xe0\x02\xe1\x00\xb9\x02\ \xe2\x02\xe3\x02\xe4\x02\xe5\x02\xe6\x02\xe7\x00\x43\x00\x8d\x00\ \xd8\x00\xe1\x02\xe8\x02\xe9\x02\xea\x02\xeb\x02\xec\x00\xd9\x00\ \x8e\x00\xda\x00\xdb\x00\xdd\x00\xdf\x00\xdc\x00\xde\x00\xe0\x02\ \xed\x02\xee\x02\xef\x02\xf0\x02\xf1\x02\xf2\x02\xf3\x02\xf4\x02\ \xf5\x02\xf6\x02\xf7\x02\xf8\x02\xf9\x02\xfa\x02\xfb\x02\xfc\x02\ \xfd\x02\xfe\x02\xff\x03\x00\x03\x01\x03\x02\x03\x03\x03\x04\x03\ \x05\x03\x06\x03\x07\x03\x08\x03\x09\x03\x0a\x03\x0b\x03\x0c\x03\ \x0d\x03\x0e\x03\x0f\x03\x10\x03\x11\x03\x12\x03\x13\x03\x14\x03\ \x15\x03\x16\x03\x17\x03\x18\x03\x19\x03\x1a\x03\x1b\x03\x1c\x03\ \x1d\x03\x1e\x03\x1f\x03\x20\x03\x21\x03\x22\x03\x23\x03\x24\x03\ \x25\x03\x26\x03\x27\x03\x28\x03\x29\x03\x2a\x03\x2b\x03\x2c\x03\ \x2d\x03\x2e\x03\x2f\x03\x30\x03\x31\x03\x32\x03\x33\x03\x34\x03\ \x35\x03\x36\x03\x37\x03\x38\x03\x39\x03\x3a\x03\x3b\x03\x3c\x03\ \x3d\x03\x3e\x03\x3f\x03\x40\x03\x41\x03\x42\x03\x43\x03\x44\x03\ \x45\x03\x46\x03\x47\x03\x48\x03\x49\x03\x4a\x03\x4b\x03\x4c\x03\ \x4d\x03\x4e\x03\x4f\x03\x50\x03\x51\x03\x52\x03\x53\x03\x54\x03\ \x55\x03\x56\x03\x57\x03\x58\x03\x59\x03\x5a\x03\x5b\x03\x5c\x03\ \x5d\x03\x5e\x03\x5f\x03\x60\x03\x61\x03\x62\x03\x63\x03\x64\x03\ \x65\x03\x66\x03\x67\x03\x68\x03\x69\x03\x6a\x03\x6b\x03\x6c\x03\ \x6d\x03\x6e\x03\x6f\x03\x70\x03\x71\x03\x72\x03\x73\x03\x74\x03\ \x75\x03\x76\x03\x77\x03\x78\x03\x79\x03\x7a\x03\x7b\x03\x7c\x03\ \x7d\x03\x7e\x03\x7f\x03\x80\x03\x81\x03\x82\x03\x83\x03\x84\x03\ \x85\x03\x86\x03\x87\x03\x88\x03\x89\x03\x8a\x03\x8b\x03\x8c\x03\ \x8d\x03\x8e\x03\x8f\x03\x90\x03\x91\x03\x92\x03\x93\x03\x94\x03\ \x95\x03\x96\x03\x97\x03\x98\x03\x99\x03\x9a\x03\x9b\x03\x9c\x03\ \x9d\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa2\x03\xa3\x03\xa4\x03\ \xa5\x03\xa6\x03\xa7\x03\xa8\x03\xa9\x03\xaa\x03\xab\x03\xac\x03\ \xad\x03\xae\x03\xaf\x03\xb0\x03\xb1\x03\xb2\x03\xb3\x03\xb4\x03\ \xb5\x03\xb6\x03\xb7\x03\xb8\x03\xb9\x03\xba\x03\xbb\x03\xbc\x03\ \xbd\x03\xbe\x03\xbf\x03\xc0\x03\xc1\x03\xc2\x03\xc3\x03\xc4\x03\ \xc5\x03\xc6\x03\xc7\x03\xc8\x03\xc9\x03\xca\x03\xcb\x03\xcc\x03\ \xcd\x03\xce\x03\xcf\x03\xd0\x03\xd1\x03\xd2\x04\x4e\x55\x4c\x4c\ \x02\x43\x52\x07\x41\x6d\x61\x63\x72\x6f\x6e\x06\x41\x62\x72\x65\ \x76\x65\x07\x75\x6e\x69\x30\x31\x43\x44\x07\x75\x6e\x69\x31\x45\ \x41\x30\x07\x75\x6e\x69\x31\x45\x41\x32\x07\x75\x6e\x69\x31\x45\ \x41\x34\x07\x75\x6e\x69\x31\x45\x41\x36\x07\x75\x6e\x69\x31\x45\ \x41\x38\x07\x75\x6e\x69\x31\x45\x41\x41\x07\x75\x6e\x69\x31\x45\ \x41\x43\x07\x75\x6e\x69\x31\x45\x41\x45\x07\x75\x6e\x69\x31\x45\ \x42\x30\x07\x75\x6e\x69\x31\x45\x42\x32\x07\x75\x6e\x69\x31\x45\ \x42\x34\x07\x75\x6e\x69\x31\x45\x42\x36\x07\x41\x6f\x67\x6f\x6e\ \x65\x6b\x07\x75\x6e\x69\x30\x32\x34\x33\x0b\x43\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x0a\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x06\x44\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x30\x43\ \x07\x75\x6e\x69\x31\x45\x30\x45\x06\x44\x63\x72\x6f\x61\x74\x06\ \x45\x63\x61\x72\x6f\x6e\x07\x45\x6d\x61\x63\x72\x6f\x6e\x06\x45\ \x62\x72\x65\x76\x65\x0a\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\ \x07\x75\x6e\x69\x31\x45\x42\x38\x07\x75\x6e\x69\x31\x45\x42\x41\ \x07\x75\x6e\x69\x31\x45\x42\x43\x07\x75\x6e\x69\x31\x45\x42\x45\ \x07\x75\x6e\x69\x31\x45\x43\x30\x07\x75\x6e\x69\x31\x45\x43\x32\ \x07\x75\x6e\x69\x31\x45\x43\x34\x07\x75\x6e\x69\x31\x45\x43\x36\ \x07\x45\x6f\x67\x6f\x6e\x65\x6b\x0b\x47\x63\x69\x72\x63\x75\x6d\ \x66\x6c\x65\x78\x0a\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x07\ \x75\x6e\x69\x30\x31\x32\x32\x06\x47\x63\x61\x72\x6f\x6e\x07\x75\ \x6e\x69\x31\x45\x32\x30\x0b\x75\x6e\x69\x30\x30\x34\x37\x30\x33\ \x30\x33\x0b\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\ \x6e\x69\x31\x45\x32\x34\x07\x75\x6e\x69\x31\x45\x32\x41\x04\x48\ \x62\x61\x72\x06\x49\x74\x69\x6c\x64\x65\x07\x49\x6d\x61\x63\x72\ \x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x43\x07\x75\x6e\x69\x30\x31\ \x43\x46\x07\x75\x6e\x69\x31\x45\x43\x38\x07\x75\x6e\x69\x31\x45\ \x43\x41\x07\x49\x6f\x67\x6f\x6e\x65\x6b\x0b\x4a\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x33\x36\x06\x4c\ \x61\x63\x75\x74\x65\x06\x4c\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x30\x31\x33\x42\x04\x4c\x64\x6f\x74\x07\x75\x6e\x69\x31\x45\x33\ \x36\x07\x75\x6e\x69\x31\x45\x33\x38\x07\x75\x6e\x69\x31\x45\x33\ \x41\x07\x75\x6e\x69\x31\x45\x34\x32\x06\x4e\x61\x63\x75\x74\x65\ \x06\x4e\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x35\x07\ \x75\x6e\x69\x31\x45\x34\x34\x07\x75\x6e\x69\x31\x45\x34\x36\x07\ \x75\x6e\x69\x31\x45\x34\x38\x07\x4f\x6d\x61\x63\x72\x6f\x6e\x07\ \x75\x6e\x69\x30\x31\x34\x45\x0d\x4f\x68\x75\x6e\x67\x61\x72\x75\ \x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\x31\x07\x75\x6e\ \x69\x31\x45\x43\x43\x07\x75\x6e\x69\x31\x45\x43\x45\x07\x75\x6e\ \x69\x31\x45\x44\x30\x07\x75\x6e\x69\x31\x45\x44\x32\x07\x75\x6e\ \x69\x31\x45\x44\x34\x07\x75\x6e\x69\x31\x45\x44\x36\x07\x75\x6e\ \x69\x31\x45\x44\x38\x05\x4f\x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\ \x45\x44\x41\x07\x75\x6e\x69\x31\x45\x44\x43\x07\x75\x6e\x69\x31\ \x45\x44\x45\x07\x75\x6e\x69\x31\x45\x45\x30\x07\x75\x6e\x69\x31\ \x45\x45\x32\x07\x75\x6e\x69\x30\x31\x45\x41\x06\x52\x61\x63\x75\ \x74\x65\x06\x52\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x35\ \x36\x07\x75\x6e\x69\x31\x45\x35\x41\x07\x75\x6e\x69\x31\x45\x35\ \x43\x07\x75\x6e\x69\x31\x45\x35\x45\x06\x53\x61\x63\x75\x74\x65\ \x0b\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\ \x30\x31\x35\x45\x07\x75\x6e\x69\x30\x32\x31\x38\x07\x75\x6e\x69\ \x31\x45\x36\x30\x07\x75\x6e\x69\x31\x45\x36\x32\x07\x75\x6e\x69\ \x31\x45\x39\x45\x06\x54\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\ \x31\x36\x32\x07\x75\x6e\x69\x30\x32\x31\x41\x07\x75\x6e\x69\x31\ \x45\x36\x43\x07\x75\x6e\x69\x31\x45\x36\x45\x06\x55\x74\x69\x6c\ \x64\x65\x07\x55\x6d\x61\x63\x72\x6f\x6e\x06\x55\x62\x72\x65\x76\ \x65\x05\x55\x72\x69\x6e\x67\x0d\x55\x68\x75\x6e\x67\x61\x72\x75\ \x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\x33\x07\x75\x6e\ \x69\x30\x31\x44\x35\x07\x75\x6e\x69\x30\x31\x44\x37\x07\x75\x6e\ \x69\x30\x31\x44\x39\x07\x75\x6e\x69\x30\x31\x44\x42\x07\x75\x6e\ \x69\x31\x45\x45\x34\x07\x75\x6e\x69\x31\x45\x45\x36\x07\x55\x6f\ \x67\x6f\x6e\x65\x6b\x05\x55\x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\ \x45\x45\x38\x07\x75\x6e\x69\x31\x45\x45\x41\x07\x75\x6e\x69\x31\ \x45\x45\x43\x07\x75\x6e\x69\x31\x45\x45\x45\x07\x75\x6e\x69\x31\ \x45\x46\x30\x06\x57\x67\x72\x61\x76\x65\x06\x57\x61\x63\x75\x74\ \x65\x0b\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x09\x57\x64\ \x69\x65\x72\x65\x73\x69\x73\x06\x59\x67\x72\x61\x76\x65\x0b\x59\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x31\x45\ \x38\x45\x07\x75\x6e\x69\x31\x45\x46\x34\x07\x75\x6e\x69\x31\x45\ \x46\x36\x07\x75\x6e\x69\x31\x45\x46\x38\x06\x5a\x61\x63\x75\x74\ \x65\x0a\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x07\x75\x6e\x69\ \x31\x45\x39\x32\x07\x75\x6e\x69\x30\x31\x38\x46\x07\x61\x6d\x61\ \x63\x72\x6f\x6e\x06\x61\x62\x72\x65\x76\x65\x07\x75\x6e\x69\x30\ \x31\x43\x45\x07\x75\x6e\x69\x31\x45\x41\x31\x07\x75\x6e\x69\x31\ \x45\x41\x33\x07\x75\x6e\x69\x31\x45\x41\x35\x07\x75\x6e\x69\x31\ \x45\x41\x37\x07\x75\x6e\x69\x31\x45\x41\x39\x07\x75\x6e\x69\x31\ \x45\x41\x42\x07\x75\x6e\x69\x31\x45\x41\x44\x07\x75\x6e\x69\x31\ \x45\x41\x46\x07\x75\x6e\x69\x31\x45\x42\x31\x07\x75\x6e\x69\x31\ \x45\x42\x33\x07\x75\x6e\x69\x31\x45\x42\x35\x07\x75\x6e\x69\x31\ \x45\x42\x37\x07\x61\x6f\x67\x6f\x6e\x65\x6b\x07\x75\x6e\x69\x30\ \x31\x38\x30\x0b\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\ \x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x06\x64\x63\x61\x72\x6f\ \x6e\x07\x75\x6e\x69\x31\x45\x30\x44\x07\x75\x6e\x69\x31\x45\x30\ \x46\x06\x65\x63\x61\x72\x6f\x6e\x07\x65\x6d\x61\x63\x72\x6f\x6e\ \x06\x65\x62\x72\x65\x76\x65\x0a\x65\x64\x6f\x74\x61\x63\x63\x65\ \x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x39\x07\x75\x6e\x69\x31\x45\ \x42\x42\x07\x75\x6e\x69\x31\x45\x42\x44\x07\x75\x6e\x69\x31\x45\ \x42\x46\x07\x75\x6e\x69\x31\x45\x43\x31\x07\x75\x6e\x69\x31\x45\ \x43\x33\x07\x75\x6e\x69\x31\x45\x43\x35\x07\x75\x6e\x69\x31\x45\ \x43\x37\x07\x65\x6f\x67\x6f\x6e\x65\x6b\x0b\x67\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x0a\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x07\x75\x6e\x69\x30\x31\x32\x33\x06\x67\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x31\x45\x32\x31\x0b\x75\x6e\x69\x30\x30\x36\x37\ \x30\x33\x30\x33\x0b\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\ \x07\x75\x6e\x69\x31\x45\x32\x35\x07\x75\x6e\x69\x31\x45\x32\x42\ \x04\x68\x62\x61\x72\x06\x69\x74\x69\x6c\x64\x65\x07\x69\x6d\x61\ \x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x44\x07\x75\x6e\x69\ \x30\x31\x44\x30\x07\x75\x6e\x69\x31\x45\x43\x39\x07\x75\x6e\x69\ \x31\x45\x43\x42\x07\x69\x6f\x67\x6f\x6e\x65\x6b\x09\x69\x6f\x67\ \x6f\x6e\x65\x6b\x2e\x64\x0b\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x07\x75\x6e\x69\x30\x31\x33\x37\x0c\x6b\x67\x72\x65\x65\ \x6e\x6c\x61\x6e\x64\x69\x63\x06\x6c\x61\x63\x75\x74\x65\x06\x6c\ \x63\x61\x72\x6f\x6e\x04\x6c\x64\x6f\x74\x07\x75\x6e\x69\x30\x31\ \x33\x43\x07\x75\x6e\x69\x31\x45\x33\x37\x07\x75\x6e\x69\x31\x45\ \x33\x39\x07\x75\x6e\x69\x31\x45\x33\x42\x07\x75\x6e\x69\x31\x45\ \x34\x33\x06\x6e\x61\x63\x75\x74\x65\x06\x6e\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x30\x31\x34\x36\x07\x75\x6e\x69\x31\x45\x34\x35\ \x07\x75\x6e\x69\x31\x45\x34\x37\x07\x75\x6e\x69\x31\x45\x34\x39\ \x0b\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x07\x6f\x6d\x61\ \x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x46\x0d\x6f\x68\x75\ \x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\ \x44\x32\x07\x75\x6e\x69\x31\x45\x43\x44\x07\x75\x6e\x69\x31\x45\ \x43\x46\x07\x75\x6e\x69\x31\x45\x44\x31\x07\x75\x6e\x69\x31\x45\ \x44\x33\x07\x75\x6e\x69\x31\x45\x44\x35\x07\x75\x6e\x69\x31\x45\ \x44\x37\x07\x75\x6e\x69\x31\x45\x44\x39\x05\x6f\x68\x6f\x72\x6e\ \x07\x75\x6e\x69\x31\x45\x44\x42\x07\x75\x6e\x69\x31\x45\x44\x44\ \x07\x75\x6e\x69\x31\x45\x44\x46\x07\x75\x6e\x69\x31\x45\x45\x31\ \x07\x75\x6e\x69\x31\x45\x45\x33\x07\x75\x6e\x69\x30\x31\x45\x42\ \x06\x72\x61\x63\x75\x74\x65\x07\x75\x6e\x69\x30\x31\x35\x37\x06\ \x72\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x35\x42\x07\x75\ \x6e\x69\x31\x45\x35\x44\x07\x75\x6e\x69\x31\x45\x35\x46\x06\x73\ \x61\x63\x75\x74\x65\x0b\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\ \x78\x07\x75\x6e\x69\x30\x31\x35\x46\x07\x75\x6e\x69\x30\x32\x31\ \x39\x07\x75\x6e\x69\x31\x45\x36\x31\x07\x75\x6e\x69\x31\x45\x36\ \x33\x06\x74\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x36\x33\ \x07\x75\x6e\x69\x30\x32\x31\x42\x07\x75\x6e\x69\x31\x45\x36\x44\ \x07\x75\x6e\x69\x31\x45\x36\x46\x07\x75\x6e\x69\x31\x45\x39\x37\ \x06\x75\x74\x69\x6c\x64\x65\x07\x75\x6d\x61\x63\x72\x6f\x6e\x06\ \x75\x62\x72\x65\x76\x65\x05\x75\x72\x69\x6e\x67\x0d\x75\x68\x75\ \x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\ \x44\x34\x07\x75\x6e\x69\x30\x31\x44\x36\x07\x75\x6e\x69\x30\x31\ \x44\x38\x07\x75\x6e\x69\x30\x31\x44\x41\x07\x75\x6e\x69\x30\x31\ \x44\x43\x07\x75\x6e\x69\x31\x45\x45\x35\x07\x75\x6e\x69\x31\x45\ \x45\x37\x07\x75\x6f\x67\x6f\x6e\x65\x6b\x05\x75\x68\x6f\x72\x6e\ \x07\x75\x6e\x69\x31\x45\x45\x39\x07\x75\x6e\x69\x31\x45\x45\x42\ \x07\x75\x6e\x69\x31\x45\x45\x44\x07\x75\x6e\x69\x31\x45\x45\x46\ \x07\x75\x6e\x69\x31\x45\x46\x31\x06\x77\x67\x72\x61\x76\x65\x06\ \x77\x61\x63\x75\x74\x65\x0b\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x09\x77\x64\x69\x65\x72\x65\x73\x69\x73\x06\x79\x67\x72\ \x61\x76\x65\x0b\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\ \x75\x6e\x69\x31\x45\x38\x46\x07\x75\x6e\x69\x31\x45\x46\x35\x07\ \x75\x6e\x69\x31\x45\x46\x37\x07\x75\x6e\x69\x31\x45\x46\x39\x06\ \x7a\x61\x63\x75\x74\x65\x0a\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x07\x75\x6e\x69\x31\x45\x39\x33\x07\x75\x6e\x69\x30\x32\x33\ \x37\x07\x75\x6e\x69\x30\x32\x35\x30\x07\x75\x6e\x69\x30\x32\x35\ \x31\x07\x75\x6e\x69\x30\x32\x35\x32\x07\x75\x6e\x69\x30\x32\x35\ \x34\x07\x75\x6e\x69\x30\x32\x35\x38\x07\x75\x6e\x69\x30\x32\x35\ \x39\x07\x75\x6e\x69\x30\x32\x36\x31\x07\x75\x6e\x69\x30\x32\x36\ \x35\x07\x75\x6e\x69\x30\x32\x36\x46\x07\x75\x6e\x69\x30\x32\x37\ \x39\x07\x75\x6e\x69\x30\x32\x38\x37\x07\x75\x6e\x69\x30\x32\x38\ \x43\x07\x75\x6e\x69\x30\x32\x38\x44\x07\x75\x6e\x69\x30\x32\x38\ \x45\x07\x75\x6e\x69\x30\x32\x39\x45\x03\x61\x2e\x61\x08\x61\x67\ \x72\x61\x76\x65\x2e\x61\x08\x61\x61\x63\x75\x74\x65\x2e\x61\x0d\ \x61\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\x61\x74\ \x69\x6c\x64\x65\x2e\x61\x0b\x61\x64\x69\x65\x72\x65\x73\x69\x73\ \x2e\x61\x09\x61\x6d\x61\x63\x72\x6f\x6e\x2e\x61\x08\x61\x62\x72\ \x65\x76\x65\x2e\x61\x07\x61\x72\x69\x6e\x67\x2e\x61\x09\x75\x6e\ \x69\x30\x31\x43\x45\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x31\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x41\x33\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x41\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x37\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x41\x39\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\ \x42\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x44\x2e\x61\x09\x75\x6e\ \x69\x31\x45\x41\x46\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x31\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x42\x33\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x42\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x37\x2e\x61\x09\ \x61\x6f\x67\x6f\x6e\x65\x6b\x2e\x61\x03\x67\x2e\x61\x0d\x67\x63\ \x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\x67\x62\x72\x65\ \x76\x65\x2e\x61\x0c\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x2e\ \x61\x09\x75\x6e\x69\x30\x31\x32\x33\x2e\x61\x08\x67\x63\x61\x72\ \x6f\x6e\x2e\x61\x09\x75\x6e\x69\x31\x45\x32\x31\x2e\x61\x0d\x75\ \x6e\x69\x30\x30\x36\x37\x30\x33\x30\x33\x2e\x61\x09\x7a\x65\x72\ \x6f\x2e\x6f\x6e\x75\x6d\x08\x6f\x6e\x65\x2e\x6f\x6e\x75\x6d\x08\ \x74\x77\x6f\x2e\x6f\x6e\x75\x6d\x0a\x74\x68\x72\x65\x65\x2e\x6f\ \x6e\x75\x6d\x09\x66\x6f\x75\x72\x2e\x6f\x6e\x75\x6d\x09\x66\x69\ \x76\x65\x2e\x6f\x6e\x75\x6d\x08\x73\x69\x78\x2e\x6f\x6e\x75\x6d\ \x0a\x73\x65\x76\x65\x6e\x2e\x6f\x6e\x75\x6d\x0a\x65\x69\x67\x68\ \x74\x2e\x6f\x6e\x75\x6d\x09\x6e\x69\x6e\x65\x2e\x6f\x6e\x75\x6d\ \x07\x75\x6e\x69\x30\x30\x41\x44\x0a\x66\x69\x67\x75\x72\x65\x64\ \x61\x73\x68\x07\x75\x6e\x69\x32\x30\x31\x35\x07\x75\x6e\x69\x32\ \x31\x31\x37\x07\x75\x6e\x69\x32\x31\x32\x30\x07\x61\x74\x2e\x63\ \x61\x73\x65\x0a\x61\x73\x74\x65\x72\x69\x73\x6b\x2e\x61\x08\x68\ \x79\x70\x68\x65\x6e\x2e\x61\x09\x75\x6e\x69\x30\x30\x41\x44\x2e\ \x61\x08\x64\x6f\x6c\x6c\x61\x72\x2e\x61\x09\x7a\x65\x72\x6f\x2e\ \x73\x75\x70\x73\x08\x6f\x6e\x65\x2e\x73\x75\x70\x73\x08\x74\x77\ \x6f\x2e\x73\x75\x70\x73\x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x70\ \x73\x09\x66\x6f\x75\x72\x2e\x73\x75\x70\x73\x09\x66\x69\x76\x65\ \x2e\x73\x75\x70\x73\x08\x73\x69\x78\x2e\x73\x75\x70\x73\x0a\x73\ \x65\x76\x65\x6e\x2e\x73\x75\x70\x73\x0a\x65\x69\x67\x68\x74\x2e\ \x73\x75\x70\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\x70\x73\x0e\x70\ \x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x70\x73\x0f\x70\x61\ \x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x70\x73\x0b\x70\x65\ \x72\x69\x6f\x64\x2e\x73\x75\x70\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\ \x73\x75\x70\x73\x09\x7a\x65\x72\x6f\x2e\x73\x75\x62\x73\x08\x6f\ \x6e\x65\x2e\x73\x75\x62\x73\x08\x74\x77\x6f\x2e\x73\x75\x62\x73\ \x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x62\x73\x09\x66\x6f\x75\x72\ \x2e\x73\x75\x62\x73\x09\x66\x69\x76\x65\x2e\x73\x75\x62\x73\x08\ \x73\x69\x78\x2e\x73\x75\x62\x73\x0a\x73\x65\x76\x65\x6e\x2e\x73\ \x75\x62\x73\x0a\x65\x69\x67\x68\x74\x2e\x73\x75\x62\x73\x09\x6e\ \x69\x6e\x65\x2e\x73\x75\x62\x73\x0e\x70\x61\x72\x65\x6e\x6c\x65\ \x66\x74\x2e\x73\x75\x62\x73\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\ \x68\x74\x2e\x73\x75\x62\x73\x0b\x70\x65\x72\x69\x6f\x64\x2e\x73\ \x75\x62\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\x73\x75\x62\x73\x09\x7a\ \x65\x72\x6f\x2e\x64\x6e\x6f\x6d\x08\x6f\x6e\x65\x2e\x64\x6e\x6f\ \x6d\x08\x74\x77\x6f\x2e\x64\x6e\x6f\x6d\x0a\x74\x68\x72\x65\x65\ \x2e\x64\x6e\x6f\x6d\x09\x66\x6f\x75\x72\x2e\x64\x6e\x6f\x6d\x09\ \x66\x69\x76\x65\x2e\x64\x6e\x6f\x6d\x08\x73\x69\x78\x2e\x64\x6e\ \x6f\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x64\x6e\x6f\x6d\x0a\x65\x69\ \x67\x68\x74\x2e\x64\x6e\x6f\x6d\x09\x6e\x69\x6e\x65\x2e\x64\x6e\ \x6f\x6d\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x64\x6e\x6f\ \x6d\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x64\x6e\x6f\ \x6d\x0b\x70\x65\x72\x69\x6f\x64\x2e\x64\x6e\x6f\x6d\x0a\x63\x6f\ \x6d\x6d\x61\x2e\x64\x6e\x6f\x6d\x09\x7a\x65\x72\x6f\x2e\x6e\x75\ \x6d\x72\x08\x6f\x6e\x65\x2e\x6e\x75\x6d\x72\x08\x74\x77\x6f\x2e\ \x6e\x75\x6d\x72\x0a\x74\x68\x72\x65\x65\x2e\x6e\x75\x6d\x72\x09\ \x66\x6f\x75\x72\x2e\x6e\x75\x6d\x72\x09\x66\x69\x76\x65\x2e\x6e\ \x75\x6d\x72\x08\x73\x69\x78\x2e\x6e\x75\x6d\x72\x0a\x73\x65\x76\ \x65\x6e\x2e\x6e\x75\x6d\x72\x0a\x65\x69\x67\x68\x74\x2e\x6e\x75\ \x6d\x72\x09\x6e\x69\x6e\x65\x2e\x6e\x75\x6d\x72\x0e\x70\x61\x72\ \x65\x6e\x6c\x65\x66\x74\x2e\x6e\x75\x6d\x72\x0f\x70\x61\x72\x65\ \x6e\x72\x69\x67\x68\x74\x2e\x6e\x75\x6d\x72\x0b\x70\x65\x72\x69\ \x6f\x64\x2e\x6e\x75\x6d\x72\x0a\x63\x6f\x6d\x6d\x61\x2e\x6e\x75\ \x6d\x72\x0d\x6f\x72\x64\x66\x65\x6d\x69\x6e\x69\x6e\x65\x2e\x61\ \x06\x61\x2e\x73\x75\x70\x73\x06\x62\x2e\x73\x75\x70\x73\x06\x63\ \x2e\x73\x75\x70\x73\x06\x64\x2e\x73\x75\x70\x73\x06\x65\x2e\x73\ \x75\x70\x73\x06\x66\x2e\x73\x75\x70\x73\x06\x67\x2e\x73\x75\x70\ \x73\x06\x68\x2e\x73\x75\x70\x73\x06\x69\x2e\x73\x75\x70\x73\x06\ \x6a\x2e\x73\x75\x70\x73\x06\x6b\x2e\x73\x75\x70\x73\x06\x6c\x2e\ \x73\x75\x70\x73\x06\x6d\x2e\x73\x75\x70\x73\x06\x6e\x2e\x73\x75\ \x70\x73\x06\x6f\x2e\x73\x75\x70\x73\x06\x70\x2e\x73\x75\x70\x73\ \x06\x71\x2e\x73\x75\x70\x73\x06\x72\x2e\x73\x75\x70\x73\x06\x73\ \x2e\x73\x75\x70\x73\x06\x74\x2e\x73\x75\x70\x73\x06\x75\x2e\x73\ \x75\x70\x73\x06\x76\x2e\x73\x75\x70\x73\x06\x77\x2e\x73\x75\x70\ \x73\x06\x78\x2e\x73\x75\x70\x73\x06\x79\x2e\x73\x75\x70\x73\x06\ \x7a\x2e\x73\x75\x70\x73\x0b\x65\x67\x72\x61\x76\x65\x2e\x73\x75\ \x70\x73\x0b\x65\x61\x63\x75\x74\x65\x2e\x73\x75\x70\x73\x0c\x75\ \x6e\x69\x30\x32\x35\x39\x2e\x73\x75\x70\x73\x06\x61\x2e\x73\x75\ \x70\x61\x06\x67\x2e\x73\x75\x70\x61\x04\x45\x75\x72\x6f\x07\x75\ \x6e\x69\x30\x31\x39\x32\x0d\x63\x6f\x6c\x6f\x6e\x6d\x6f\x6e\x65\ \x74\x61\x72\x79\x04\x6c\x69\x72\x61\x07\x75\x6e\x69\x32\x30\x41\ \x36\x06\x70\x65\x73\x65\x74\x61\x04\x64\x6f\x6e\x67\x07\x75\x6e\ \x69\x32\x30\x42\x31\x07\x75\x6e\x69\x32\x30\x42\x32\x07\x75\x6e\ \x69\x32\x30\x42\x35\x07\x75\x6e\x69\x32\x30\x42\x39\x07\x75\x6e\ \x69\x32\x30\x42\x41\x07\x75\x6e\x69\x32\x32\x31\x35\x0a\x73\x6c\ \x61\x73\x68\x2e\x66\x72\x61\x63\x08\x6f\x6e\x65\x74\x68\x69\x72\ \x64\x09\x74\x77\x6f\x74\x68\x69\x72\x64\x73\x09\x6f\x6e\x65\x65\ \x69\x67\x68\x74\x68\x0c\x74\x68\x72\x65\x65\x65\x69\x67\x68\x74\ \x68\x73\x0b\x66\x69\x76\x65\x65\x69\x67\x68\x74\x68\x73\x0c\x73\ \x65\x76\x65\x6e\x65\x69\x67\x68\x74\x68\x73\x07\x75\x6e\x69\x32\ \x32\x31\x39\x07\x75\x6e\x69\x30\x30\x42\x35\x07\x75\x6e\x69\x32\ \x32\x30\x36\x07\x75\x6e\x69\x32\x31\x32\x36\x07\x75\x6e\x69\x32\ \x31\x31\x33\x09\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x07\x75\x6e\ \x69\x32\x31\x39\x30\x07\x61\x72\x72\x6f\x77\x75\x70\x07\x75\x6e\ \x69\x32\x31\x39\x32\x09\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x07\ \x75\x6e\x69\x32\x35\x41\x30\x07\x75\x6e\x69\x32\x35\x43\x36\x07\ \x75\x6e\x69\x32\x35\x43\x39\x07\x75\x6e\x69\x32\x37\x35\x32\x07\ \x74\x72\x69\x61\x67\x75\x70\x07\x75\x6e\x69\x32\x35\x42\x33\x07\ \x75\x6e\x69\x32\x35\x42\x36\x07\x75\x6e\x69\x32\x35\x42\x37\x07\ \x74\x72\x69\x61\x67\x64\x6e\x07\x75\x6e\x69\x32\x35\x42\x44\x07\ \x75\x6e\x69\x32\x35\x43\x30\x07\x75\x6e\x69\x32\x35\x43\x31\x07\ \x75\x6e\x69\x32\x36\x31\x30\x07\x75\x6e\x69\x32\x36\x31\x31\x07\ \x75\x6e\x69\x32\x37\x31\x33\x07\x75\x6e\x69\x32\x36\x36\x41\x07\ \x75\x6e\x69\x32\x30\x33\x32\x07\x75\x6e\x69\x32\x30\x33\x33\x07\ \x75\x6e\x69\x30\x32\x42\x42\x07\x75\x6e\x69\x30\x32\x42\x43\x07\ \x75\x6e\x69\x30\x32\x42\x45\x07\x75\x6e\x69\x30\x32\x42\x46\x07\ \x75\x6e\x69\x30\x32\x43\x38\x07\x75\x6e\x69\x30\x32\x43\x39\x07\ \x75\x6e\x69\x30\x32\x43\x41\x07\x75\x6e\x69\x30\x32\x43\x42\x07\ \x75\x6e\x69\x30\x32\x43\x43\x07\x75\x6e\x69\x30\x33\x30\x30\x0b\ \x75\x6e\x69\x30\x33\x30\x30\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x31\x0b\x75\x6e\x69\x30\x33\x30\x31\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x32\x0b\x75\x6e\x69\x30\x33\x30\x32\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x33\x0b\x75\x6e\x69\x30\ \x33\x30\x33\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x34\x0b\ \x75\x6e\x69\x30\x33\x30\x34\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x36\x0b\x75\x6e\x69\x30\x33\x30\x36\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x37\x0b\x75\x6e\x69\x30\x33\x30\x37\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x38\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x39\x0b\ \x75\x6e\x69\x30\x33\x30\x39\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x41\x0b\x75\x6e\x69\x30\x33\x30\x41\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x42\x0b\x75\x6e\x69\x30\x33\x30\x42\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x43\x0b\x75\x6e\x69\x30\ \x33\x30\x43\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x46\x0b\ \x75\x6e\x69\x30\x33\x30\x46\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x31\x32\x07\x75\x6e\x69\x30\x33\x31\x33\x07\x75\x6e\x69\x30\ \x33\x31\x42\x07\x75\x6e\x69\x30\x33\x32\x33\x07\x75\x6e\x69\x30\ \x33\x32\x34\x07\x75\x6e\x69\x30\x33\x32\x36\x07\x75\x6e\x69\x30\ \x33\x32\x37\x0b\x75\x6e\x69\x30\x33\x32\x37\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x32\x38\x0b\x75\x6e\x69\x30\x33\x32\x38\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x45\x07\x75\x6e\x69\x30\ \x33\x33\x31\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x0f\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x0f\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x43\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x43\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x30\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x30\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x33\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x33\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x2e\x63\x61\x70\x09\ \x75\x6e\x69\x30\x33\x30\x43\x2e\x61\x09\x75\x6e\x69\x30\x33\x32\ \x36\x2e\x61\x07\x75\x6e\x69\x30\x30\x41\x30\x07\x75\x6e\x69\x32\ \x30\x30\x37\x0a\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x0c\x6e\ \x62\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x07\x75\x6e\x69\x32\ \x35\x30\x30\x07\x75\x6e\x69\x32\x35\x30\x31\x07\x75\x6e\x69\x32\ \x35\x30\x32\x07\x75\x6e\x69\x32\x35\x30\x33\x07\x75\x6e\x69\x32\ \x35\x30\x34\x07\x75\x6e\x69\x32\x35\x30\x35\x07\x75\x6e\x69\x32\ \x35\x30\x36\x07\x75\x6e\x69\x32\x35\x30\x37\x07\x75\x6e\x69\x32\ \x35\x30\x38\x07\x75\x6e\x69\x32\x35\x30\x39\x07\x75\x6e\x69\x32\ \x35\x30\x41\x07\x75\x6e\x69\x32\x35\x30\x42\x07\x75\x6e\x69\x32\ \x35\x30\x43\x07\x75\x6e\x69\x32\x35\x30\x44\x07\x75\x6e\x69\x32\ \x35\x30\x45\x07\x75\x6e\x69\x32\x35\x30\x46\x07\x75\x6e\x69\x32\ \x35\x31\x30\x07\x75\x6e\x69\x32\x35\x31\x31\x07\x75\x6e\x69\x32\ \x35\x31\x32\x07\x75\x6e\x69\x32\x35\x31\x33\x07\x75\x6e\x69\x32\ \x35\x31\x34\x07\x75\x6e\x69\x32\x35\x31\x35\x07\x75\x6e\x69\x32\ \x35\x31\x36\x07\x75\x6e\x69\x32\x35\x31\x37\x07\x75\x6e\x69\x32\ \x35\x31\x38\x07\x75\x6e\x69\x32\x35\x31\x39\x07\x75\x6e\x69\x32\ \x35\x31\x41\x07\x75\x6e\x69\x32\x35\x31\x42\x07\x75\x6e\x69\x32\ \x35\x31\x43\x07\x75\x6e\x69\x32\x35\x31\x44\x07\x75\x6e\x69\x32\ \x35\x31\x45\x07\x75\x6e\x69\x32\x35\x31\x46\x07\x75\x6e\x69\x32\ \x35\x32\x30\x07\x75\x6e\x69\x32\x35\x32\x31\x07\x75\x6e\x69\x32\ \x35\x32\x32\x07\x75\x6e\x69\x32\x35\x32\x33\x07\x75\x6e\x69\x32\ \x35\x32\x34\x07\x75\x6e\x69\x32\x35\x32\x35\x07\x75\x6e\x69\x32\ \x35\x32\x36\x07\x75\x6e\x69\x32\x35\x32\x37\x07\x75\x6e\x69\x32\ \x35\x32\x38\x07\x75\x6e\x69\x32\x35\x32\x39\x07\x75\x6e\x69\x32\ \x35\x32\x41\x07\x75\x6e\x69\x32\x35\x32\x42\x07\x75\x6e\x69\x32\ \x35\x32\x43\x07\x75\x6e\x69\x32\x35\x32\x44\x07\x75\x6e\x69\x32\ \x35\x32\x45\x07\x75\x6e\x69\x32\x35\x32\x46\x07\x75\x6e\x69\x32\ \x35\x33\x30\x07\x75\x6e\x69\x32\x35\x33\x31\x07\x75\x6e\x69\x32\ \x35\x33\x32\x07\x75\x6e\x69\x32\x35\x33\x33\x07\x75\x6e\x69\x32\ \x35\x33\x34\x07\x75\x6e\x69\x32\x35\x33\x35\x07\x75\x6e\x69\x32\ \x35\x33\x36\x07\x75\x6e\x69\x32\x35\x33\x37\x07\x75\x6e\x69\x32\ \x35\x33\x38\x07\x75\x6e\x69\x32\x35\x33\x39\x07\x75\x6e\x69\x32\ \x35\x33\x41\x07\x75\x6e\x69\x32\x35\x33\x42\x07\x75\x6e\x69\x32\ \x35\x33\x43\x07\x75\x6e\x69\x32\x35\x33\x44\x07\x75\x6e\x69\x32\ \x35\x33\x45\x07\x75\x6e\x69\x32\x35\x33\x46\x07\x75\x6e\x69\x32\ \x35\x34\x30\x07\x75\x6e\x69\x32\x35\x34\x31\x07\x75\x6e\x69\x32\ \x35\x34\x32\x07\x75\x6e\x69\x32\x35\x34\x33\x07\x75\x6e\x69\x32\ \x35\x34\x34\x07\x75\x6e\x69\x32\x35\x34\x35\x07\x75\x6e\x69\x32\ \x35\x34\x36\x07\x75\x6e\x69\x32\x35\x34\x37\x07\x75\x6e\x69\x32\ \x35\x34\x38\x07\x75\x6e\x69\x32\x35\x34\x39\x07\x75\x6e\x69\x32\ \x35\x34\x41\x07\x75\x6e\x69\x32\x35\x34\x42\x07\x75\x6e\x69\x32\ \x35\x34\x43\x07\x75\x6e\x69\x32\x35\x34\x44\x07\x75\x6e\x69\x32\ \x35\x34\x45\x07\x75\x6e\x69\x32\x35\x34\x46\x07\x75\x6e\x69\x32\ \x35\x35\x30\x07\x75\x6e\x69\x32\x35\x35\x31\x07\x75\x6e\x69\x32\ \x35\x35\x32\x07\x75\x6e\x69\x32\x35\x35\x33\x07\x75\x6e\x69\x32\ \x35\x35\x34\x07\x75\x6e\x69\x32\x35\x35\x35\x07\x75\x6e\x69\x32\ \x35\x35\x36\x07\x75\x6e\x69\x32\x35\x35\x37\x07\x75\x6e\x69\x32\ \x35\x35\x38\x07\x75\x6e\x69\x32\x35\x35\x39\x07\x75\x6e\x69\x32\ \x35\x35\x41\x07\x75\x6e\x69\x32\x35\x35\x42\x07\x75\x6e\x69\x32\ \x35\x35\x43\x07\x75\x6e\x69\x32\x35\x35\x44\x07\x75\x6e\x69\x32\ \x35\x35\x45\x07\x75\x6e\x69\x32\x35\x35\x46\x07\x75\x6e\x69\x32\ \x35\x36\x30\x07\x75\x6e\x69\x32\x35\x36\x31\x07\x75\x6e\x69\x32\ \x35\x36\x32\x07\x75\x6e\x69\x32\x35\x36\x33\x07\x75\x6e\x69\x32\ \x35\x36\x34\x07\x75\x6e\x69\x32\x35\x36\x35\x07\x75\x6e\x69\x32\ \x35\x36\x36\x07\x75\x6e\x69\x32\x35\x36\x37\x07\x75\x6e\x69\x32\ \x35\x36\x38\x07\x75\x6e\x69\x32\x35\x36\x39\x07\x75\x6e\x69\x32\ \x35\x36\x41\x07\x75\x6e\x69\x32\x35\x36\x42\x07\x75\x6e\x69\x32\ \x35\x36\x43\x07\x75\x6e\x69\x32\x35\x36\x44\x07\x75\x6e\x69\x32\ \x35\x36\x45\x07\x75\x6e\x69\x32\x35\x36\x46\x07\x75\x6e\x69\x32\ \x35\x37\x30\x07\x75\x6e\x69\x32\x35\x37\x31\x07\x75\x6e\x69\x32\ \x35\x37\x32\x07\x75\x6e\x69\x32\x35\x37\x33\x07\x75\x6e\x69\x32\ \x35\x37\x34\x07\x75\x6e\x69\x32\x35\x37\x35\x07\x75\x6e\x69\x32\ \x35\x37\x36\x07\x75\x6e\x69\x32\x35\x37\x37\x07\x75\x6e\x69\x32\ \x35\x37\x38\x07\x75\x6e\x69\x32\x35\x37\x39\x07\x75\x6e\x69\x32\ \x35\x37\x41\x07\x75\x6e\x69\x32\x35\x37\x42\x07\x75\x6e\x69\x32\ \x35\x37\x43\x07\x75\x6e\x69\x32\x35\x37\x44\x07\x75\x6e\x69\x32\ \x35\x37\x45\x07\x75\x6e\x69\x32\x35\x37\x46\x07\x75\x6e\x69\x32\ \x35\x38\x30\x07\x75\x6e\x69\x32\x35\x38\x31\x07\x75\x6e\x69\x32\ \x35\x38\x32\x07\x75\x6e\x69\x32\x35\x38\x33\x07\x75\x6e\x69\x32\ \x35\x38\x34\x07\x75\x6e\x69\x32\x35\x38\x35\x07\x75\x6e\x69\x32\ \x35\x38\x36\x07\x75\x6e\x69\x32\x35\x38\x37\x07\x75\x6e\x69\x32\ \x35\x38\x38\x07\x75\x6e\x69\x32\x35\x38\x39\x07\x75\x6e\x69\x32\ \x35\x38\x41\x07\x75\x6e\x69\x32\x35\x38\x42\x07\x75\x6e\x69\x32\ \x35\x38\x43\x07\x75\x6e\x69\x32\x35\x38\x44\x07\x75\x6e\x69\x32\ \x35\x38\x45\x07\x75\x6e\x69\x32\x35\x38\x46\x07\x75\x6e\x69\x32\ \x35\x39\x30\x07\x75\x6e\x69\x32\x35\x39\x31\x07\x75\x6e\x69\x32\ \x35\x39\x32\x07\x75\x6e\x69\x32\x35\x39\x33\x07\x75\x6e\x69\x32\ \x35\x39\x34\x07\x75\x6e\x69\x32\x35\x39\x35\x07\x75\x6e\x69\x32\ \x35\x39\x36\x07\x75\x6e\x69\x32\x35\x39\x37\x07\x75\x6e\x69\x32\ \x35\x39\x38\x07\x75\x6e\x69\x32\x35\x39\x39\x07\x75\x6e\x69\x32\ \x35\x39\x41\x07\x75\x6e\x69\x32\x35\x39\x42\x07\x75\x6e\x69\x32\ \x35\x39\x43\x07\x75\x6e\x69\x32\x35\x39\x44\x07\x75\x6e\x69\x32\ \x35\x39\x45\x07\x75\x6e\x69\x32\x35\x39\x46\x00\x00\x00\x01\xff\ \xff\x00\x02\x00\x01\x00\x00\x00\x0c\x00\x00\x00\x00\x00\xbe\x00\ \x02\x00\x1d\x00\x04\x00\x37\x00\x01\x00\x4d\x00\x4e\x00\x01\x00\ \x69\x00\x69\x00\x01\x00\x70\x00\x70\x00\x02\x00\x80\x00\x80\x00\ \x01\x00\xa3\x00\xa5\x00\x01\x00\xab\x00\xab\x00\x01\x00\xcf\x00\ \xd0\x00\x01\x00\xe8\x00\xe8\x00\x01\x00\xfe\x00\xfe\x00\x01\x01\ \x06\x01\x06\x00\x02\x01\x1a\x01\x1a\x00\x01\x01\x1e\x01\x1e\x00\ \x02\x01\x21\x01\x21\x00\x02\x01\x30\x01\x30\x00\x02\x01\x31\x01\ \x32\x00\x01\x01\x37\x01\x37\x00\x02\x01\x57\x01\x59\x00\x01\x01\ \x5f\x01\x5f\x00\x01\x01\x6e\x01\x6e\x00\x02\x01\x84\x01\x85\x00\ \x01\x01\x9c\x01\xac\x00\x01\x01\xaf\x01\xaf\x00\x01\x01\xc5\x01\ \xc6\x00\x01\x01\xca\x01\xca\x00\x02\x02\xcf\x02\xcf\x00\x01\x02\ \xd9\x02\xd9\x00\x01\x02\xdf\x03\x1e\x00\x03\x03\x20\x03\x20\x00\ \x03\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x01\x03\x05\x03\x1e\x00\ \x01\x03\x20\x03\x20\x00\x01\x00\x01\x00\x00\x00\x0a\x00\x38\x00\ \x92\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\x6e\x00\x1e\x00\ \x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x00\x00\x02\x00\x04\x00\ \x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x01\x00\x03\x00\x05\x00\ \x06\x6d\x61\x72\x6b\x00\x26\x6d\x61\x72\x6b\x00\x36\x6d\x6b\x6d\ \x6b\x00\x46\x6d\x6b\x6d\x6b\x00\x4c\x73\x69\x7a\x65\x00\x52\x73\ \x69\x7a\x65\x00\x56\x00\x00\x00\x06\x00\x00\x00\x01\x00\x02\x00\ \x03\x00\x04\x00\x05\x00\x00\x00\x06\x00\x00\x00\x01\x00\x02\x00\ \x03\x00\x04\x00\x05\x00\x00\x00\x01\x00\x06\x00\x00\x00\x01\x00\ \x06\x00\x52\x00\x00\x00\x4e\x00\x00\x00\x07\x00\x10\x00\x1a\x00\ \x22\x00\x2a\x00\x32\x00\x3a\x00\x42\x00\x01\x00\x00\x00\x02\x00\ \x44\x00\x4e\x00\x04\x00\x00\x00\x01\x00\x4c\x00\x04\x00\x00\x00\ \x01\x03\x3e\x00\x04\x00\x00\x00\x01\x03\x7e\x00\x04\x00\x00\x00\ \x01\x05\x5c\x00\x04\x00\x00\x00\x01\x05\x86\x00\x06\x01\x00\x00\ \x01\x05\xea\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x06\ \xe2\x00\x05\xfe\xd4\xfd\xa8\x00\x01\x06\xe2\x00\x04\xfd\xa8\x00\ \x01\x06\xe4\x06\xfa\x00\x01\x00\x0c\x00\xea\x00\x37\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\x9e\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x5f\x00\xc6\x00\xcc\x00\ \xd2\x00\xd8\x00\xde\x00\xe4\x00\xea\x00\xf0\x00\xc6\x00\xde\x00\ \xf6\x00\xfc\x00\xc6\x01\x02\x00\xc6\x01\x08\x01\x0e\x01\x14\x01\ \x1a\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x01\x20\x01\ \x26\x01\x2c\x01\x32\x01\x38\x01\x3e\x01\x44\x01\x4a\x01\x2c\x01\ \x50\x01\x50\x01\x56\x01\x5c\x01\x62\x01\x68\x00\xc0\x01\x6e\x01\ \x74\x01\x7a\x01\x80\x01\x86\x01\x8c\x01\x92\x01\x98\x00\xc0\x01\ \x74\x01\x9e\x00\xc6\x01\xa4\x00\xde\x00\xc6\x01\xaa\x01\xb0\x00\ \xc6\x00\xc6\x00\xc6\x00\xc6\x01\xb6\x01\x26\x01\x80\x01\xbc\x01\ \xbc\x00\xc0\x01\x68\x00\xc0\x00\xc0\x01\x8c\x01\x8c\x01\x2c\x01\ \xbc\x01\x80\x01\xc2\x01\xc8\x01\xce\x01\xd4\x01\x4a\x01\xda\x01\ \xe0\x01\xe6\x01\xec\x01\xf2\x01\x92\x01\x98\x01\xf8\x01\xfe\x01\ \xc2\x01\xc2\x01\xda\x02\x04\x02\x0a\x00\x01\x01\x2c\x02\x06\x00\ \x01\x01\x2c\x02\xa2\x00\x01\x01\x1d\x02\xa2\x00\x01\x01\x62\x02\ \xa2\x00\x01\x01\x29\x02\xa2\x00\x01\x01\x42\x02\xa2\x00\x01\x01\ \x47\x02\xa2\x00\x01\x01\x4a\x02\xa2\x00\x01\x01\x2b\x02\xa2\x00\ \x01\x01\x38\x02\xa2\x00\x01\x00\xc3\x02\xa2\x00\x01\x01\x32\x02\ \xa2\x00\x01\x01\x39\x02\xa2\x00\x01\x01\x31\x02\xa4\x00\x01\x01\ \x2f\x02\xa2\x00\x01\x01\x33\x02\xa2\x00\x01\x01\x3a\x02\xa2\x00\ \x01\x01\x34\x02\x06\x00\x01\x00\x97\x02\xda\x00\x01\x01\x55\x02\ \x06\x00\x01\x01\xb9\x02\xda\x00\x01\x01\x39\x02\x06\x00\x01\x01\ \x9d\x02\xe5\x00\x01\x01\x30\x02\x06\x00\x01\x01\x59\x02\xd2\x00\ \x01\x00\xa7\x02\xda\x00\x01\x01\x0f\x02\xda\x00\x01\x01\x42\x02\ \x07\x00\x01\x01\x3b\x02\x06\x00\x01\x01\x41\x02\x06\x00\x01\x01\ \x33\x02\x06\x00\x01\x01\x53\x02\x06\x00\x01\x01\x38\x02\x06\x00\ \x01\x01\x09\x02\x92\x00\x01\x01\x28\x02\x06\x00\x01\x01\x2e\x02\ \x06\x00\x01\x01\x2d\x02\x06\x00\x01\x01\x43\x02\x06\x00\x01\x01\ \x9b\x02\xb6\x00\x01\x01\x31\x02\xa2\x00\x01\x01\x8a\x02\xa2\x00\ \x01\x01\x3f\x02\xa2\x00\x01\x01\x59\x02\x06\x00\x01\x01\x3a\x02\ \x06\x00\x01\x01\x3d\x02\x06\x00\x01\x01\x1d\x02\x06\x00\x01\x01\ \x23\x02\x06\x00\x01\x01\x35\x02\x06\x00\x01\x01\x26\x02\x06\x00\ \x01\x01\x2e\x02\x07\x00\x01\x01\x8f\x02\x06\x00\x01\x00\xf9\x02\ \x06\x00\x01\x01\x31\x02\x06\x00\x01\x01\x1e\x02\x06\x00\x01\x01\ \x2c\x02\xde\x00\x01\x01\x2c\x02\xcc\x00\x01\x04\x76\x04\x7e\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x18\x00\x00\x00\x18\x00\ \x06\x00\x14\x00\x1a\x00\x0e\x00\x20\x00\x26\x00\x2c\x00\x01\x01\ \x2c\x00\x00\x00\x01\x01\x5c\x00\x00\x00\x01\x01\x30\x00\x00\x00\ \x01\x01\x55\x00\x00\x00\x01\x01\x37\x00\x00\x00\x01\x01\x75\x00\ \x00\x00\x01\x04\x46\x04\x54\x00\x01\x00\x0c\x00\x22\x00\x05\x00\ \x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\ \x00\x00\xae\x00\x4b\x00\x98\x00\x9e\x00\xa4\x00\xaa\x00\xb0\x00\ \xb6\x00\xbc\x00\xc2\x00\x98\x00\xc8\x00\xce\x00\xd4\x00\x98\x00\ \x98\x00\x98\x00\xda\x00\xe0\x00\xe6\x00\x98\x00\x98\x00\xec\x00\ \xf2\x00\xaa\x00\x98\x00\xe6\x00\xe6\x00\xf8\x00\xfe\x01\x04\x01\ \x0a\x01\x10\x01\x16\x01\x1c\x01\x22\x01\x28\x01\x2e\x01\x34\x01\ \x3a\x01\x40\x00\x98\x01\x46\x01\x4c\x01\x52\x01\x1c\x01\x58\x01\ \x5e\x00\xf2\x01\x64\x00\x98\x01\x6a\x01\x70\x00\x98\x00\x98\x01\ \x76\x01\x22\x00\x98\x01\x5e\x01\x1c\x01\x7c\x01\x82\x00\xc2\x01\ \x88\x01\x8e\x01\x94\x01\x9a\x01\xa0\x01\x1c\x01\xa6\x01\xac\x00\ \xf2\x01\x64\x01\xb2\x01\xb8\x01\x82\x01\xbe\x00\x01\x01\x2c\xff\ \xea\x00\x01\x01\x38\xff\xea\x00\x01\x01\x5c\xff\xea\x00\x01\x01\ \x22\xff\xea\x00\x01\x01\x41\xff\xea\x00\x01\x00\xc5\xff\xea\x00\ \x01\x01\x4e\xff\xea\x00\x01\x01\x2b\xff\xea\x00\x01\x01\x2f\xff\ \xea\x00\x01\x01\x43\xff\xea\x00\x01\x01\x4c\xff\xea\x00\x01\x00\ \x9e\xff\xea\x00\x01\x01\x40\xff\xea\x00\x01\x01\x36\xff\xea\x00\ \x01\x01\x29\xff\xea\x00\x01\x01\x2e\xff\xea\x00\x01\x01\x31\xff\ \xea\x00\x01\x01\x55\xff\xea\x00\x01\x01\x35\xff\xea\x00\x01\x01\ \x39\xff\xea\x00\x01\x01\x25\xff\xea\x00\x01\x01\x1a\xff\x1b\x00\ \x01\x01\x33\xff\xea\x00\x01\x01\x59\xff\xea\x00\x01\x00\xf0\xff\ \x15\x00\x01\x01\x44\xff\xea\x00\x01\x01\x6a\xff\xea\x00\x01\x01\ \x30\xff\xea\x00\x01\x01\x32\xff\xea\x00\x01\x00\x8e\xff\x26\x00\ \x01\x01\xbd\xff\x26\x00\x01\x00\xcb\xff\xea\x00\x01\x01\x70\xff\ \xea\x00\x01\x01\x3f\xff\xea\x00\x01\x01\x2d\xff\xea\x00\x01\x01\ \x0b\xff\x0f\x00\x01\x01\x3e\xff\xea\x00\x01\x01\x49\xff\xea\x00\ \x01\x01\x42\xff\xea\x00\x01\x01\x3b\xff\xea\x00\x01\x01\x46\xff\ \xea\x00\x01\x01\x37\xff\xea\x00\x01\x01\x24\xff\xea\x00\x01\x01\ \xc7\xff\x26\x00\x01\x01\x28\xff\xea\x00\x01\x00\x8c\xff\xea\x00\ \x01\x01\x71\xff\xea\x00\x01\x01\x09\xff\x0f\x00\x01\x01\x02\xff\ \xea\x00\x01\x01\xc8\xff\x26\x00\x01\x02\xba\x02\xc0\x00\x01\x00\ \x0c\x00\x12\x00\x01\x00\x00\x00\x0e\x00\x03\x00\x0e\x00\x14\x00\ \x1a\x00\x01\x01\x2c\x01\xf0\x00\x01\x01\xa8\x02\x82\x00\x01\x02\ \x00\x02\x96\x00\x01\x01\x9e\x01\xf0\x00\x01\x02\x98\x02\xa0\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x24\x00\x00\x00\x24\x00\ \x0c\x00\x20\x00\x26\x00\x2c\x00\x1a\x00\x1a\x00\x32\x00\x38\x00\ \x3e\x00\x38\x00\x44\x00\x4a\x00\x50\x00\x01\x01\x2c\x00\x00\x00\ \x01\x01\xed\x00\x00\x00\x01\x01\xa4\x00\x00\x00\x01\x01\x19\x00\ \x00\x00\x01\x01\x94\x00\x00\x00\x01\x01\x89\x00\x00\x00\x01\x01\ \x61\x00\x00\x00\x01\x01\x93\x00\x00\x00\x01\x01\x24\x00\x00\x00\ \x01\x01\xa6\x00\x00\x00\x01\x01\x1e\x02\x50\x00\x01\x00\x0c\x00\ \xea\x00\x37\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xe6\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x03\x00\x14\x00\x1a\x00\x1a\x00\x01\x01\x2c\x02\x06\x00\x01\x01\ \x2c\x02\xa2\x00\x01\x01\x2c\x02\xe2\x00\x01\x01\x2c\x02\xd0\x00\ \x02\x00\x01\x02\x88\x02\x8a\x00\x00\x00\x02\x00\x01\x02\xdf\x03\ \x20\x00\x00\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x00\x03\x05\x03\ \x1e\x00\x1c\x03\x20\x03\x20\x00\x36\x00\x02\x00\x13\x00\x04\x00\ \x37\x00\x00\x00\x4d\x00\x4e\x00\x34\x00\x69\x00\x69\x00\x36\x00\ \x80\x00\x80\x00\x37\x00\xa3\x00\xa5\x00\x38\x00\xab\x00\xab\x00\ \x3b\x00\xcf\x00\xd0\x00\x3c\x00\xe8\x00\xe8\x00\x3e\x00\xfe\x00\ \xfe\x00\x3f\x01\x1a\x01\x1a\x00\x40\x01\x31\x01\x32\x00\x41\x01\ \x57\x01\x59\x00\x43\x01\x5f\x01\x5f\x00\x46\x01\x84\x01\x85\x00\ \x47\x01\x9c\x01\xac\x00\x49\x01\xaf\x01\xaf\x00\x5a\x01\xc5\x01\ \xc6\x00\x5b\x02\xcf\x02\xcf\x00\x5d\x02\xd9\x02\xd9\x00\x5e\x00\ \x01\x00\x02\x02\xff\x03\x00\x00\x01\x00\x06\x00\x06\x00\x16\x00\ \x17\x00\x20\x00\x30\x00\x31\x00\x01\x00\x05\x02\xfc\x02\xfd\x02\ \xfe\x03\x03\x03\x04\x00\x02\x00\x0c\x00\x04\x00\x13\x00\x00\x00\ \x15\x00\x37\x00\x10\x00\xa5\x00\xa5\x00\x33\x00\xd0\x00\xd0\x00\ \x34\x00\xe8\x00\xe8\x00\x35\x01\x32\x01\x32\x00\x36\x01\x59\x01\ \x59\x00\x37\x01\x85\x01\x85\x00\x38\x01\x9c\x01\x9c\x00\x39\x01\ \x9e\x01\xac\x00\x3a\x01\xaf\x01\xaf\x00\x49\x01\xc6\x01\xc6\x00\ \x4a\x00\x01\x00\x01\x02\xfb\x00\x01\x00\x03\x00\x12\x00\x18\x00\ \x2c\x00\x01\x00\x02\x03\x01\x03\x02\x00\x01\x00\x0c\x00\x04\x00\ \x08\x00\x0c\x00\x12\x00\x18\x00\x22\x00\x26\x00\x2c\x01\x32\x01\ \xa2\x01\xa3\x01\xaf\x00\x01\x00\x03\x02\xe3\x02\xeb\x02\xed\x00\ \x01\x00\x00\x00\x0a\x00\x6c\x02\x1a\x00\x02\x44\x46\x4c\x54\x00\ \x0e\x6c\x61\x74\x6e\x00\x38\x00\x04\x00\x00\x00\x00\xff\xff\x00\ \x10\x00\x00\x00\x02\x00\x04\x00\x06\x00\x08\x00\x0a\x00\x0c\x00\ \x0e\x00\x10\x00\x12\x00\x14\x00\x16\x00\x18\x00\x1a\x00\x1c\x00\ \x1e\x00\x04\x00\x00\x00\x00\xff\xff\x00\x10\x00\x01\x00\x03\x00\ \x05\x00\x07\x00\x09\x00\x0b\x00\x0d\x00\x0f\x00\x11\x00\x13\x00\ \x15\x00\x17\x00\x19\x00\x1b\x00\x1d\x00\x1f\x00\x20\x61\x61\x6c\ \x74\x00\xc2\x61\x61\x6c\x74\x00\xca\x63\x61\x73\x65\x00\xd2\x63\ \x61\x73\x65\x00\xd8\x63\x63\x6d\x70\x00\xde\x63\x63\x6d\x70\x00\ \xec\x64\x6e\x6f\x6d\x00\xfa\x64\x6e\x6f\x6d\x01\x00\x66\x72\x61\ \x63\x01\x06\x66\x72\x61\x63\x01\x10\x6e\x75\x6d\x72\x01\x1a\x6e\ \x75\x6d\x72\x01\x20\x6f\x6e\x75\x6d\x01\x26\x6f\x6e\x75\x6d\x01\ \x2c\x6f\x72\x64\x6e\x01\x32\x6f\x72\x64\x6e\x01\x38\x73\x61\x6c\ \x74\x01\x3e\x73\x61\x6c\x74\x01\x4a\x73\x69\x6e\x66\x01\x56\x73\ \x69\x6e\x66\x01\x5c\x73\x73\x30\x31\x01\x62\x73\x73\x30\x31\x01\ \x68\x73\x73\x30\x32\x01\x6e\x73\x73\x30\x32\x01\x74\x73\x73\x30\ \x33\x01\x7a\x73\x73\x30\x33\x01\x80\x73\x73\x30\x34\x01\x86\x73\ \x73\x30\x34\x01\x8c\x73\x75\x62\x73\x01\x92\x73\x75\x62\x73\x01\ \x98\x73\x75\x70\x73\x01\x9e\x73\x75\x70\x73\x01\xa6\x00\x00\x00\ \x02\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ \x01\x00\x10\x00\x00\x00\x01\x00\x10\x00\x00\x00\x05\x00\x03\x00\ \x04\x00\x05\x00\x06\x00\x07\x00\x00\x00\x05\x00\x03\x00\x04\x00\ \x05\x00\x06\x00\x07\x00\x00\x00\x01\x00\x09\x00\x00\x00\x01\x00\ \x09\x00\x00\x00\x03\x00\x08\x00\x0a\x00\x0b\x00\x00\x00\x03\x00\ \x08\x00\x0a\x00\x0b\x00\x00\x00\x01\x00\x08\x00\x00\x00\x01\x00\ \x08\x00\x00\x00\x01\x00\x0f\x00\x00\x00\x01\x00\x0f\x00\x00\x00\ \x01\x00\x0c\x00\x00\x00\x01\x00\x0c\x00\x00\x00\x04\x00\x11\x00\ \x12\x00\x13\x00\x14\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\ \x14\x00\x00\x00\x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x04\x04\x00\ \x01\x00\x11\x03\xfe\x00\x01\x00\x11\x04\x08\x00\x01\x00\x12\x04\ \x02\x00\x01\x00\x12\x04\x38\x00\x01\x00\x13\x04\x32\x00\x01\x00\ \x13\x04\x48\x00\x01\x00\x14\x04\x42\x00\x01\x00\x14\x00\x00\x00\ \x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x00\x00\x00\x02\x00\x0c\x00\ \x0d\x00\x00\x00\x02\x00\x0c\x00\x0d\x00\x17\x00\x30\x00\x38\x00\ \x40\x00\x48\x00\x50\x00\x5a\x00\x62\x00\x6a\x00\x72\x00\x7a\x00\ \x82\x00\x8a\x00\x96\x00\x9e\x00\xa6\x00\xae\x00\xb6\x00\xbe\x00\ \xc6\x00\xce\x00\xd6\x00\xde\x00\xe6\x00\x01\x00\x00\x00\x01\x03\ \xfa\x00\x03\x00\x00\x00\x01\x04\xb0\x00\x02\x00\x00\x00\x01\x00\ \xae\x00\x06\x00\x00\x00\x01\x00\xcc\x00\x06\x00\x00\x00\x02\x00\ \xd6\x00\xea\x00\x04\x00\x00\x00\x01\x00\xf2\x00\x04\x00\x00\x00\ \x01\x01\x64\x00\x06\x00\x00\x00\x01\x02\x2a\x00\x01\x00\x00\x00\ \x01\x02\x34\x00\x01\x00\x00\x00\x01\x02\x4e\x00\x01\x00\x00\x00\ \x01\x02\x68\x00\x06\x00\x00\x00\x03\x02\x66\x02\x78\x02\x8a\x00\ \x01\x00\x00\x00\x01\x02\x92\x00\x01\x00\x00\x00\x01\x02\xca\x00\ \x01\x00\x00\x00\x01\x02\xe4\x00\x01\x00\x00\x00\x01\x02\xfe\x00\ \x01\x00\x00\x00\x01\x02\xfc\x00\x01\x00\x00\x00\x01\x02\xfe\x00\ \x01\x00\x00\x00\x01\x03\x06\x00\x01\x00\x00\x00\x01\x03\x3a\x00\ \x01\x00\x00\x00\x01\x03\x4e\x00\x04\x00\x00\x00\x01\x04\xdc\x00\ \x01\x00\x00\x00\x01\x04\xe6\x00\x01\x05\x3e\x00\x04\x00\x0e\x00\ \x14\x00\x1a\x00\x20\x00\x02\x00\x08\x02\xe3\x00\x02\x00\x12\x02\ \xe3\x00\x02\x00\x22\x02\xe3\x00\x02\x00\x2c\x02\xe3\x00\x03\x00\ \x00\x00\x01\x05\x18\x00\x01\x05\x24\x00\x01\x00\x00\x00\x02\x00\ \x03\x00\x00\x00\x02\x05\x18\x05\x1e\x00\x01\x05\x24\x00\x01\x00\ \x00\x00\x15\x00\x03\x00\x00\x00\x01\x05\x16\x00\x01\x05\x10\x00\ \x01\x00\x00\x00\x16\x00\x01\x05\x0a\x00\x03\x00\x0c\x00\x36\x00\ \x58\x00\x05\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x03\x0f\x00\ \x02\x02\xdf\x03\x0d\x00\x02\x02\xe1\x03\x13\x00\x02\x02\xe5\x03\ \x1d\x00\x02\x02\xe9\x03\x11\x00\x02\x02\xef\x00\x04\x00\x0a\x00\ \x10\x00\x16\x00\x1c\x03\x17\x00\x02\x02\xdf\x03\x15\x00\x02\x02\ \xe1\x03\x1b\x00\x02\x02\xe5\x03\x19\x00\x02\x02\xef\x00\x04\x00\ \x0a\x00\x10\x00\x16\x00\x1c\x03\x0b\x00\x02\x02\xdf\x03\x07\x00\ \x02\x02\xe1\x03\x05\x00\x02\x02\xe7\x03\x09\x00\x02\x02\xf5\x00\ \x01\x04\x9a\x00\x10\x00\x26\x00\x30\x00\x3a\x00\x44\x00\x4e\x00\ \x58\x00\x62\x00\x6c\x00\x76\x00\x80\x00\x92\x00\x9c\x00\xa6\x00\ \xb0\x00\xba\x00\xc4\x00\x01\x00\x04\x00\x4d\x00\x02\x03\x01\x00\ \x01\x00\x04\x00\x69\x00\x02\x03\x01\x00\x01\x00\x04\x00\x70\x00\ \x02\x02\xe5\x00\x01\x00\x04\x00\x80\x00\x02\x03\x01\x00\x01\x00\ \x04\x00\xab\x00\x02\x03\x01\x00\x01\x00\x04\x00\xcf\x00\x02\x03\ \x01\x00\x01\x00\x04\x00\xfe\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x06\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x1a\x00\x02\x03\x01\x00\ \x02\x00\x06\x00\x0c\x01\x21\x00\x02\x02\xe5\x01\x1e\x00\x02\x02\ \xff\x00\x01\x00\x04\x01\x30\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x37\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x5f\x00\x02\x03\x01\x00\ \x01\x00\x04\x01\x6e\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x84\x00\ \x02\x03\x01\x00\x01\x00\x04\x01\xca\x00\x02\x02\xff\x00\x03\x00\ \x01\x03\xf0\x00\x01\x04\x12\x00\x00\x00\x01\x00\x00\x00\x16\x00\ \x02\x04\x3c\x00\x0e\x02\x46\x02\x47\x02\x48\x02\x49\x02\x4a\x02\ \x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\x52\x02\x53\x02\x50\x02\ \x51\x00\x02\x04\x1a\x00\x0e\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\ \x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\x41\x02\x44\x02\x45\x02\ \x42\x02\x43\x00\x01\x04\x0e\x00\x83\x00\x03\x00\x01\x04\x0e\x00\ \x01\x04\x18\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x01\x04\ \x0e\x00\x01\x04\x1e\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\ \x02\x04\x20\x04\x16\x00\x01\x04\x0c\x00\x00\x00\x01\x00\x00\x00\ \x16\x00\x02\x04\x14\x00\x1d\x02\x57\x02\x58\x02\x59\x02\x5a\x02\ \x5b\x02\x5c\x02\x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\ \x63\x02\x64\x02\x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\ \x6b\x02\x6c\x02\x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\ \x73\x00\x02\x03\x7a\x00\x0e\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\ \x20\x02\x21\x02\x22\x02\x23\x02\x24\x02\x25\x02\x28\x02\x29\x02\ \x26\x02\x27\x00\x02\x03\x58\x00\x0e\x02\x2a\x02\x2b\x02\x2c\x02\ \x2d\x02\x2e\x02\x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x36\x02\ \x37\x02\x34\x02\x35\x00\x01\x03\xa6\x00\x0a\x00\x01\x03\xaa\x00\ \x01\x00\x00\x01\x00\x00\x02\x03\xde\x00\x03\x02\x19\x02\x1a\x02\ \x18\x00\x00\x01\x01\x00\x02\x03\xd8\x00\x19\x01\xaf\x01\xb0\x01\ \xb1\x01\xb2\x01\xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\ \xb9\x01\xba\x01\xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\ \xc1\x01\xc2\x01\xc3\x01\xc4\x01\xc5\x02\x55\x02\x74\x00\x00\x01\ \x02\x00\x02\x03\xb8\x00\x09\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\ \xca\x01\xcb\x01\xcc\x01\xcd\x02\x75\x00\x00\x01\x03\x00\x01\x03\ \xb2\xff\xa3\x00\x02\x03\xb2\x00\x5c\x02\x58\x02\x59\x02\x5a\x02\ \x5b\x02\x5c\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\ \x64\x02\x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\ \x6c\x02\x6d\x02\x6e\x02\x6f\x02\x70\x01\xb0\x01\xb1\x01\xb2\x01\ \xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\ \xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\ \xc3\x01\xc4\x01\xc5\x02\x71\x02\x72\x01\xc7\x01\xc8\x01\xc9\x01\ \xca\x01\xcb\x01\xcc\x01\xcd\x02\x73\x02\x19\x02\x1a\x02\x18\x02\ \x16\x02\x55\x02\x74\x02\x75\x02\x1b\x02\xe0\x02\xe2\x02\xe4\x02\ \xe6\x02\xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\ \xf6\x02\xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\ \x0e\x03\x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\ \x1e\x00\x01\x03\xb0\x00\x10\x00\x26\x00\x2c\x00\x32\x00\x3e\x00\ \x4a\x00\x56\x00\x62\x00\x6e\x00\x7a\x00\x86\x00\x92\x00\x9e\x00\ \xaa\x00\xb4\x00\xbe\x00\xc8\x00\x02\x02\x57\x01\xaf\x00\x02\x02\ \x5d\x01\xc6\x00\x05\x02\x46\x02\x38\x02\x1c\x02\x2a\x01\xd9\x00\ \x05\x02\x47\x02\x39\x02\x1d\x02\x2b\x01\xda\x00\x05\x02\x48\x02\ \x3a\x02\x1e\x02\x2c\x01\xdb\x00\x05\x02\x49\x02\x3b\x02\x1f\x02\ \x2d\x01\xdc\x00\x05\x02\x4a\x02\x3c\x02\x20\x02\x2e\x01\xdd\x00\ \x05\x02\x4b\x02\x3d\x02\x21\x02\x2f\x01\xde\x00\x05\x02\x4c\x02\ \x3e\x02\x22\x02\x30\x01\xdf\x00\x05\x02\x4d\x02\x3f\x02\x23\x02\ \x31\x01\xe0\x00\x05\x02\x4e\x02\x40\x02\x24\x02\x32\x01\xe1\x00\ \x05\x02\x4f\x02\x41\x02\x25\x02\x33\x01\xe2\x00\x04\x02\x52\x02\ \x44\x02\x28\x02\x36\x00\x04\x02\x53\x02\x45\x02\x29\x02\x37\x00\ \x04\x02\x50\x02\x42\x02\x26\x02\x34\x00\x04\x02\x51\x02\x43\x02\ \x27\x02\x35\x00\x01\x00\x84\x00\x01\x00\x08\x00\x01\x00\x04\x01\ \x31\x00\x02\x03\x01\x00\x02\x02\xee\x00\x2d\x03\x23\x01\x31\x02\ \x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\ \x40\x02\x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\ \xf4\x02\xf6\x02\xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\ \x0c\x03\x0e\x03\x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\ \x1c\x03\x1e\x03\x24\x00\x01\x00\x04\x00\x5b\x00\x95\x01\x0c\x01\ \x49\x00\x01\x00\x01\x02\xe9\x00\x01\x00\x01\x00\x26\x00\x01\x00\ \x01\x03\x01\x00\x01\x00\x01\x02\xe1\x00\x01\x00\x01\x01\x30\x00\ \x01\x00\x03\x02\xe3\x02\xe9\x02\xed\x00\x01\x00\x10\x00\x04\x00\ \x08\x00\x0a\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\x21\x00\x22\x00\ \x24\x00\x26\x00\x29\x00\x2c\x00\x31\x00\x32\x01\xc6\x00\x02\x00\ \x05\x00\x04\x00\x1d\x00\x00\x00\x38\x00\x4e\x00\x1a\x00\x50\x00\ \x7a\x00\x31\x00\x7c\x00\x98\x00\x5c\x00\x9a\x00\xe8\x00\x79\x00\ \x01\x00\x1c\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\ \xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\ \x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\ \x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\x03\x01\ \xcf\x01\xd8\x00\x00\x01\xe3\x01\xe4\x00\x0a\x02\x01\x02\x02\x00\ \x0c\x00\x01\x00\x01\x02\x07\x00\x02\x00\x01\x02\x46\x02\x4f\x00\ \x00\x00\x01\x00\x02\x00\x03\x03\x21\x00\x02\x00\x02\x02\x38\x02\ \x45\x00\x00\x02\x88\x02\x8a\x00\x0e\x00\x02\x00\x01\x02\x46\x02\ \x53\x00\x00\x00\x02\x00\x01\x02\x38\x02\x41\x00\x00\x00\x01\x00\ \x02\x03\x23\x03\x24\x00\x02\x00\x03\x00\x1e\x00\x37\x00\x00\x01\ \x0a\x01\x0b\x00\x1a\x01\xa3\x01\xa3\x00\x1c\x00\x02\x00\x01\x01\ \xcf\x01\xd8\x00\x00\x00\x01\x00\x1d\x02\x15\x02\xdf\x02\xe1\x02\ \xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\ \xf3\x02\xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\ \x0b\x03\x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\ \x1b\x03\x1d\x00\x01\x00\x03\x01\xf8\x01\xf9\x02\x0b\x00\x02\x00\ \x04\x00\x1e\x00\x1e\x00\x00\x00\xe9\x00\xfe\x00\x01\x02\x54\x02\ \x54\x00\x17\x02\x57\x02\x57\x00\x18\x00\x02\x00\x03\x00\x24\x00\ \x24\x00\x00\x01\x1b\x01\x21\x00\x01\x02\x5d\x02\x5d\x00\x08\x00\ \x01\x00\x01\x02\x78\x00\x01\x00\x5c\x00\x1f\x00\x20\x00\x21\x00\ \x22\x00\x23\x00\x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\ \x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\ \x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\xe9\x00\xea\x00\xeb\x00\ \xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\ \xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\ \xfc\x00\xfd\x00\xfe\x01\x0a\x01\x0b\x01\x1b\x01\x1c\x01\x1d\x01\ \x1e\x01\x1f\x01\x20\x01\x21\x01\xa3\x01\xf8\x01\xf9\x02\x0b\x02\ \x15\x02\x54\x02\x57\x02\x5d\x02\x78\x02\xdf\x02\xe1\x02\xe3\x02\ \xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\ \xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\ \x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\ \x1d\x00\x02\x00\x05\x00\x1e\x00\x1e\x00\x00\x00\x24\x00\x24\x00\ \x01\x01\xcf\x01\xd8\x00\x02\x01\xe3\x01\xe4\x00\x0c\x02\x01\x02\ \x02\x00\x0e\x00\x01\x00\x2d\x00\x03\x01\x30\x02\x46\x02\x47\x02\ \x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\ \x50\x02\x51\x02\x52\x02\x53\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\ \xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\ \xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\ \x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x03\ \x21\x00\x00\x00\x01\x00\x00\x00\x08\x00\x00\x00\x04\x00\x0e\x00\ \x02\x69\x64\x65\x6f\x72\x6f\x6d\x6e\x00\x02\x44\x46\x4c\x54\x00\ \x0e\x6c\x61\x74\x6e\x00\x0e\x00\x06\x00\x00\x00\x00\x00\x01\x00\ \x02\x00\x08\x00\x0c\x00\x01\xff\x56\x00\x01\x00\x00\x00\x00\x00\ \x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x01\x00\x00\x20\x44\x00\ \x00\x00\x14\x00\x00\x00\x00\x00\x00\x20\x3c\x30\x82\x20\x38\x06\ \x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\x02\xa0\x82\x20\x29\x30\x82\ \x20\x25\x02\x01\x01\x31\x0b\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\ \x05\x00\x30\x61\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\ \xa0\x53\x30\x51\x30\x2c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\ \x01\x1c\xa2\x1e\x80\x1c\x00\x3c\x00\x3c\x00\x3c\x00\x4f\x00\x62\ \x00\x73\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x3e\x00\x3e\ \x00\x3e\x30\x21\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\ \x14\x61\x31\x8d\x26\x44\xe7\xfd\x8b\x6c\xf9\x77\x44\xa3\x14\xf0\ \x80\x59\x70\x14\x35\xa0\x82\x1b\x0f\x30\x82\x02\x3c\x30\x82\x01\ \xa5\x02\x10\x70\xba\xe4\x1d\x10\xd9\x29\x34\xb6\x38\xca\x7b\x03\ \xcc\xba\xbf\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\ \x05\x00\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\ \x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\ \x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\ \x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\ \x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\ \x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\ \x69\x74\x79\x30\x1e\x17\x0d\x39\x36\x30\x31\x32\x39\x30\x30\x30\ \x30\x30\x30\x5a\x17\x0d\x32\x38\x30\x38\x30\x31\x32\x33\x35\x39\ \x35\x39\x5a\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\ \x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\ \x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\ \x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\ \x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\ \x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\ \x72\x69\x74\x79\x30\x81\x9f\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x01\x01\x05\x00\x03\x81\x8d\x00\x30\x81\x89\x02\x81\x81\ \x00\xc9\x5c\x59\x9e\xf2\x1b\x8a\x01\x14\xb4\x10\xdf\x04\x40\xdb\ \xe3\x57\xaf\x6a\x45\x40\x8f\x84\x0c\x0b\xd1\x33\xd9\xd9\x11\xcf\ \xee\x02\x58\x1f\x25\xf7\x2a\xa8\x44\x05\xaa\xec\x03\x1f\x78\x7f\ \x9e\x93\xb9\x9a\x00\xaa\x23\x7d\xd6\xac\x85\xa2\x63\x45\xc7\x72\ \x27\xcc\xf4\x4c\xc6\x75\x71\xd2\x39\xef\x4f\x42\xf0\x75\xdf\x0a\ \x90\xc6\x8e\x20\x6f\x98\x0f\xf8\xac\x23\x5f\x70\x29\x36\xa4\xc9\ \x86\xe7\xb1\x9a\x20\xcb\x53\xa5\x85\xe7\x3d\xbe\x7d\x9a\xfe\x24\ \x45\x33\xdc\x76\x15\xed\x0f\xa2\x71\x64\x4c\x65\x2e\x81\x68\x45\ \xa7\x02\x03\x01\x00\x01\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x02\x05\x00\x03\x81\x81\x00\xbb\x4c\x12\x2b\xcf\x2c\x26\ \x00\x4f\x14\x13\xdd\xa6\xfb\xfc\x0a\x11\x84\x8c\xf3\x28\x1c\x67\ \x92\x2f\x7c\xb6\xc5\xfa\xdf\xf0\xe8\x95\xbc\x1d\x8f\x6c\x2c\xa8\ \x51\xcc\x73\xd8\xa4\xc0\x53\xf0\x4e\xd6\x26\xc0\x76\x01\x57\x81\ \x92\x5e\x21\xf1\xd1\xb1\xff\xe7\xd0\x21\x58\xcd\x69\x17\xe3\x44\ \x1c\x9c\x19\x44\x39\x89\x5c\xdc\x9c\x00\x0f\x56\x8d\x02\x99\xed\ \xa2\x90\x45\x4c\xe4\xbb\x10\xa4\x3d\xf0\x32\x03\x0e\xf1\xce\xf8\ \xe8\xc9\x51\x8c\xe6\x62\x9f\xe6\x9f\xc0\x7d\xb7\x72\x9c\xc9\x36\ \x3a\x6b\x9f\x4e\xa8\xff\x64\x0d\x64\x30\x82\x03\xee\x30\x82\x03\ \x57\xa0\x03\x02\x01\x02\x02\x10\x7e\x93\xeb\xfb\x7c\xc6\x4e\x59\ \xea\x4b\x9a\x77\xd4\x06\xfc\x3b\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8b\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x5a\x41\x31\x15\x30\x13\x06\x03\x55\x04\x08\ \x13\x0c\x57\x65\x73\x74\x65\x72\x6e\x20\x43\x61\x70\x65\x31\x14\ \x30\x12\x06\x03\x55\x04\x07\x13\x0b\x44\x75\x72\x62\x61\x6e\x76\ \x69\x6c\x6c\x65\x31\x0f\x30\x0d\x06\x03\x55\x04\x0a\x13\x06\x54\ \x68\x61\x77\x74\x65\x31\x1d\x30\x1b\x06\x03\x55\x04\x0b\x13\x14\ \x54\x68\x61\x77\x74\x65\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\ \x74\x69\x6f\x6e\x31\x1f\x30\x1d\x06\x03\x55\x04\x03\x13\x16\x54\ \x68\x61\x77\x74\x65\x20\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\ \x6e\x67\x20\x43\x41\x30\x1e\x17\x0d\x31\x32\x31\x32\x32\x31\x30\ \x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x31\x32\x33\x30\x32\x33\ \x35\x39\x35\x39\x5a\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\ \x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\ \x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\ \x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\ \x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\ \x20\x2d\x20\x47\x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\ \x0a\x02\x82\x01\x01\x00\xb1\xac\xb3\x49\x54\x4b\x97\x1c\x12\x0a\ \xd8\x25\x79\x91\x22\x57\x2a\x6f\xdc\xb8\x26\xc4\x43\x73\x6b\xc2\ \xbf\x2e\x50\x5a\xfb\x14\xc2\x76\x8e\x43\x01\x25\x43\xb4\xa1\xe2\ \x45\xf4\xe8\xb7\x7b\xc3\x74\xcc\x22\xd7\xb4\x94\x00\x02\xf7\x4d\ \xed\xbf\xb4\xb7\x44\x24\x6b\xcd\x5f\x45\x3b\xd1\x44\xce\x43\x12\ \x73\x17\x82\x8b\x69\xb4\x2b\xcb\x99\x1e\xac\x72\x1b\x26\x4d\x71\ \x1f\xb1\x31\xdd\xfb\x51\x61\x02\x53\xa6\xaa\xf5\x49\x2c\x05\x78\ \x45\xa5\x2f\x89\xce\xe7\x99\xe7\xfe\x8c\xe2\x57\x3f\x3d\xc6\x92\ \xdc\x4a\xf8\x7b\x33\xe4\x79\x0a\xfb\xf0\x75\x88\x41\x9c\xff\xc5\ \x03\x51\x99\xaa\xd7\x6c\x9f\x93\x69\x87\x65\x29\x83\x85\xc2\x60\ \x14\xc4\xc8\xc9\x3b\x14\xda\xc0\x81\xf0\x1f\x0d\x74\xde\x92\x22\ \xab\xca\xf7\xfb\x74\x7c\x27\xe6\xf7\x4a\x1b\x7f\xa7\xc3\x9e\x2d\ \xae\x8a\xea\xa6\xe6\xaa\x27\x16\x7d\x61\xf7\x98\x71\x11\xbc\xe2\ \x50\xa1\x4b\xe5\x5d\xfa\xe5\x0e\xa7\x2c\x9f\xaa\x65\x20\xd3\xd8\ \x96\xe8\xc8\x7c\xa5\x4e\x48\x44\xff\x19\xe2\x44\x07\x92\x0b\xd7\ \x68\x84\x80\x5d\x6a\x78\x64\x45\xcd\x60\x46\x7e\x54\xc1\x13\x7c\ \xc5\x79\xf1\xc9\xc1\x71\x02\x03\x01\x00\x01\xa3\x81\xfa\x30\x81\ \xf7\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x5f\x9a\xf5\x6e\ \x5c\xcc\xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\ \x30\x32\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x26\x30\x24\ \x30\x22\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x16\x68\x74\ \x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x74\x68\x61\x77\x74\x65\ \x2e\x63\x6f\x6d\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\ \x30\x06\x01\x01\xff\x02\x01\x00\x30\x3f\x06\x03\x55\x1d\x1f\x04\ \x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\ \x2f\x2f\x63\x72\x6c\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\ \x2f\x54\x68\x61\x77\x74\x65\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\ \x69\x6e\x67\x43\x41\x2e\x63\x72\x6c\x30\x13\x06\x03\x55\x1d\x25\ \x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x08\x30\x0e\ \x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x28\ \x06\x03\x55\x1d\x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\ \x17\x06\x03\x55\x04\x03\x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\ \x70\x2d\x32\x30\x34\x38\x2d\x31\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\x03\x09\x9b\x8f\x79\ \xef\x7f\x59\x30\xaa\xef\x68\xb5\xfa\xe3\x09\x1d\xbb\x4f\x82\x06\ \x5d\x37\x5f\xa6\x52\x9f\x16\x8d\xea\x1c\x92\x09\x44\x6e\xf5\x6d\ \xeb\x58\x7c\x30\xe8\xf9\x69\x8d\x23\x73\x0b\x12\x6f\x47\xa9\xae\ \x39\x11\xf8\x2a\xb1\x9b\xb0\x1a\xc3\x8e\xeb\x59\x96\x00\xad\xce\ \x0c\x4d\xb2\xd0\x31\xa6\x08\x5c\x2a\x7a\xfc\xe2\x7a\x1d\x57\x4c\ \xa8\x65\x18\xe9\x79\x40\x62\x25\x96\x6e\xc7\xc7\x37\x6a\x83\x21\ \x08\x8e\x41\xea\xdd\xd9\x57\x3f\x1d\x77\x49\x87\x2a\x16\x06\x5e\ \xa6\x38\x6a\x22\x12\xa3\x51\x19\x83\x7e\xb6\x30\x82\x04\x90\x30\ \x82\x03\xf9\xa0\x03\x02\x01\x02\x02\x10\x1b\x09\x3b\x78\x60\x96\ \xda\x37\xbb\xa4\x51\x94\x46\xc8\x96\x78\x30\x0d\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5f\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\ \x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\ \x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\ \x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\ \x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ \x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\x1e\x17\x0d\x30\x36\ \x31\x31\x30\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x31\x31\ \x31\x30\x37\x32\x33\x35\x39\x35\x39\x5a\x30\x81\xca\x31\x0b\x30\ \x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\ \x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\ \x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\ \x72\x69\x53\x69\x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\ \x77\x6f\x72\x6b\x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\ \x63\x29\x20\x32\x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\ \x2c\x20\x49\x6e\x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\ \x68\x6f\x72\x69\x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\ \x31\x45\x30\x43\x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\ \x69\x67\x6e\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\ \x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\ \x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\ \x74\x79\x20\x2d\x20\x47\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\ \x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\ \x82\x01\x0a\x02\x82\x01\x01\x00\xaf\x24\x08\x08\x29\x7a\x35\x9e\ \x60\x0c\xaa\xe7\x4b\x3b\x4e\xdc\x7c\xbc\x3c\x45\x1c\xbb\x2b\xe0\ \xfe\x29\x02\xf9\x57\x08\xa3\x64\x85\x15\x27\xf5\xf1\xad\xc8\x31\ \x89\x5d\x22\xe8\x2a\xaa\xa6\x42\xb3\x8f\xf8\xb9\x55\xb7\xb1\xb7\ \x4b\xb3\xfe\x8f\x7e\x07\x57\xec\xef\x43\xdb\x66\x62\x15\x61\xcf\ \x60\x0d\xa4\xd8\xde\xf8\xe0\xc3\x62\x08\x3d\x54\x13\xeb\x49\xca\ \x59\x54\x85\x26\xe5\x2b\x8f\x1b\x9f\xeb\xf5\xa1\x91\xc2\x33\x49\ \xd8\x43\x63\x6a\x52\x4b\xd2\x8f\xe8\x70\x51\x4d\xd1\x89\x69\x7b\ \xc7\x70\xf6\xb3\xdc\x12\x74\xdb\x7b\x5d\x4b\x56\xd3\x96\xbf\x15\ \x77\xa1\xb0\xf4\xa2\x25\xf2\xaf\x1c\x92\x67\x18\xe5\xf4\x06\x04\ \xef\x90\xb9\xe4\x00\xe4\xdd\x3a\xb5\x19\xff\x02\xba\xf4\x3c\xee\ \xe0\x8b\xeb\x37\x8b\xec\xf4\xd7\xac\xf2\xf6\xf0\x3d\xaf\xdd\x75\ \x91\x33\x19\x1d\x1c\x40\xcb\x74\x24\x19\x21\x93\xd9\x14\xfe\xac\ \x2a\x52\xc7\x8f\xd5\x04\x49\xe4\x8d\x63\x47\x88\x3c\x69\x83\xcb\ \xfe\x47\xbd\x2b\x7e\x4f\xc5\x95\xae\x0e\x9d\xd4\xd1\x43\xc0\x67\ \x73\xe3\x14\x08\x7e\xe5\x3f\x9f\x73\xb8\x33\x0a\xcf\x5d\x3f\x34\ \x87\x96\x8a\xee\x53\xe8\x25\x15\x02\x03\x01\x00\x01\xa3\x82\x01\ \x5b\x30\x82\x01\x57\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\ \x05\x30\x03\x01\x01\xff\x30\x31\x06\x03\x55\x1d\x1f\x04\x2a\x30\ \x28\x30\x26\xa0\x24\xa0\x22\x86\x20\x68\x74\x74\x70\x3a\x2f\x2f\ \x63\x72\x6c\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x70\x63\x61\x33\x2e\x63\x72\x6c\x30\x0e\x06\x03\x55\x1d\x0f\ \x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x3d\x06\x03\x55\x1d\x20\ \x04\x36\x30\x34\x30\x32\x06\x04\x55\x1d\x20\x00\x30\x2a\x30\x28\ \x06\x08\x2b\x06\x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\ \x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\ \x2e\x63\x6f\x6d\x2f\x63\x70\x73\x30\x1d\x06\x03\x55\x1d\x0e\x04\ \x16\x04\x14\x7f\xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\ \x39\xfa\x02\xaf\x33\x31\x33\x30\x6d\x06\x08\x2b\x06\x01\x05\x05\ \x07\x01\x0c\x04\x61\x30\x5f\xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\ \x55\x16\x09\x69\x6d\x61\x67\x65\x2f\x67\x69\x66\x30\x21\x30\x1f\ \x30\x07\x06\x05\x2b\x0e\x03\x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\ \xac\x8d\x8e\x6b\xc3\xcf\x80\x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\ \x25\x16\x23\x68\x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\ \x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\ \x67\x6f\x2e\x67\x69\x66\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\ \x01\x01\x04\x28\x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\ \x30\x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x0d\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\xa3\ \xcd\x7d\x1e\xf7\xc7\x75\x8d\x48\xe7\x56\x34\x4c\x00\x90\x75\xa9\ \x51\xa5\x56\xc1\x6d\xbc\xfe\xf5\x53\x22\xe9\x98\xa2\xac\x9a\x7e\ \x70\x1e\xb3\x8e\x3b\x45\xe3\x86\x95\x31\xda\x6d\x4c\xfb\x34\x50\ \x80\x96\xcd\x24\xf2\x40\xdf\x04\x3f\xe2\x65\xce\x34\x22\x61\x15\ \xea\x66\x70\x64\xd2\xf1\x6e\xf3\xca\x18\x59\x6a\x41\x46\x7e\x82\ \xde\x19\xb0\x70\x31\x56\x69\x0d\x0c\xe6\x1d\x9d\x71\x58\xdc\xcc\ \xde\x62\xf5\xe1\x7a\x10\x02\xd8\x7a\xdc\x3b\xfa\x57\xbd\xc9\xe9\ \x8f\x46\x21\x39\x9f\x51\x65\x4c\x8e\x3a\xbe\x28\x41\x70\x1d\x30\ \x82\x04\xa3\x30\x82\x03\x8b\xa0\x03\x02\x01\x02\x02\x10\x0e\xcf\ \xf4\x38\xc8\xfe\xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x0d\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5e\x31\ \x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\ \x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\ \x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\ \x03\x55\x04\x03\x13\x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\ \x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\ \x76\x69\x63\x65\x73\x20\x43\x41\x20\x2d\x20\x47\x32\x30\x1e\x17\ \x0d\x31\x32\x31\x30\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\ \x32\x30\x31\x32\x32\x39\x32\x33\x35\x39\x35\x39\x5a\x30\x62\x31\ \x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\ \x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\ \x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\x34\x30\x32\x06\ \x03\x55\x04\x03\x13\x2b\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\ \x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\ \x76\x69\x63\x65\x73\x20\x53\x69\x67\x6e\x65\x72\x20\x2d\x20\x47\ \x34\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xa2\x63\x0b\x39\x44\xb8\xbb\x23\xa7\x44\x49\xbb\x0e\xff\ \xa1\xf0\x61\x0a\x53\x93\xb0\x98\xdb\xad\x2c\x0f\x4a\xc5\x6e\xff\ \x86\x3c\x53\x55\x0f\x15\xce\x04\x3f\x2b\xfd\xa9\x96\x96\xd9\xbe\ \x61\x79\x0b\x5b\xc9\x4c\x86\x76\xe5\xe0\x43\x4b\x22\x95\xee\xc2\ \x2b\x43\xc1\x9f\xd8\x68\xb4\x8e\x40\x4f\xee\x85\x38\xb9\x11\xc5\ \x23\xf2\x64\x58\xf0\x15\x32\x6f\x4e\x57\xa1\xae\x88\xa4\x02\xd7\ \x2a\x1e\xcd\x4b\xe1\xdd\x63\xd5\x17\x89\x32\x5b\xb0\x5e\x99\x5a\ \xa8\x9d\x28\x50\x0e\x17\xee\x96\xdb\x61\x3b\x45\x51\x1d\xcf\x12\ \x56\x0b\x92\x47\xfc\xab\xae\xf6\x66\x3d\x47\xac\x70\x72\xe7\x92\ \xe7\x5f\xcd\x10\xb9\xc4\x83\x64\x94\x19\xbd\x25\x80\xe1\xe8\xd2\ \x22\xa5\xd0\xba\x02\x7a\xa1\x77\x93\x5b\x65\xc3\xee\x17\x74\xbc\ \x41\x86\x2a\xdc\x08\x4c\x8c\x92\x8c\x91\x2d\x9e\x77\x44\x1f\x68\ \xd6\xa8\x74\x77\xdb\x0e\x5b\x32\x8b\x56\x8b\x33\xbd\xd9\x63\xc8\ \x49\x9d\x3a\xc5\xc5\xea\x33\x0b\xd2\xf1\xa3\x1b\xf4\x8b\xbe\xd9\ \xb3\x57\x8b\x3b\xde\x04\xa7\x7a\x22\xb2\x24\xae\x2e\xc7\x70\xc5\ \xbe\x4e\x83\x26\x08\xfb\x0b\xbd\xa9\x4f\x99\x08\xe1\x10\x28\x72\ \xaa\xcd\x02\x03\x01\x00\x01\xa3\x82\x01\x57\x30\x82\x01\x53\x30\ \x0c\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x02\x30\x00\x30\x16\x06\ \x03\x55\x1d\x25\x01\x01\xff\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\ \x05\x05\x07\x03\x08\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\ \x04\x03\x02\x07\x80\x30\x73\x06\x08\x2b\x06\x01\x05\x05\x07\x01\ \x01\x04\x67\x30\x65\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\ \x01\x86\x1e\x68\x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x6f\x63\x73\ \x70\x2e\x77\x73\x2e\x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\ \x6d\x30\x37\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2b\x68\ \x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x61\x69\x61\x2e\x77\x73\x2e\ \x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\ \x2d\x63\x61\x2d\x67\x32\x2e\x63\x65\x72\x30\x3c\x06\x03\x55\x1d\ \x1f\x04\x35\x30\x33\x30\x31\xa0\x2f\xa0\x2d\x86\x2b\x68\x74\x74\ \x70\x3a\x2f\x2f\x74\x73\x2d\x63\x72\x6c\x2e\x77\x73\x2e\x73\x79\ \x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\ \x61\x2d\x67\x32\x2e\x63\x72\x6c\x30\x28\x06\x03\x55\x1d\x11\x04\ \x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\ \x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\x34\x38\ \x2d\x32\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x46\xc6\x69\ \xa3\x0e\x4a\x14\x1e\xd5\x4c\xda\x52\x63\x17\x3f\x5e\x36\xbc\x0d\ \xe6\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x5f\x9a\ \xf5\x6e\x5c\xcc\xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\ \x2e\xdd\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\ \x00\x03\x82\x01\x01\x00\x78\x3b\xb4\x91\x2a\x00\x4c\xf0\x8f\x62\ \x30\x37\x78\xa3\x84\x27\x07\x6f\x18\xb2\xde\x25\xdc\xa0\xd4\x94\ \x03\xaa\x86\x4e\x25\x9f\x9a\x40\x03\x1c\xdd\xce\xe3\x79\xcb\x21\ \x68\x06\xda\xb6\x32\xb4\x6d\xbf\xf4\x2c\x26\x63\x33\xe4\x49\x64\ \x6d\x0d\xe6\xc3\x67\x0e\xf7\x05\xa4\x35\x6c\x7c\x89\x16\xc6\xe9\ \xb2\xdf\xb2\xe9\xdd\x20\xc6\x71\x0f\xcd\x95\x74\xdc\xb6\x5c\xde\ \xbd\x37\x1f\x43\x78\xe6\x78\xb5\xcd\x28\x04\x20\xa3\xaa\xf1\x4b\ \xc4\x88\x29\x91\x0e\x80\xd1\x11\xfc\xdd\x5c\x76\x6e\x4f\x5e\x0e\ \x45\x46\x41\x6e\x0d\xb0\xea\x38\x9a\xb1\x3a\xda\x09\x71\x10\xfc\ \x1c\x79\xb4\x80\x7b\xac\x69\xf4\xfd\x9c\xb6\x0c\x16\x2b\xf1\x7f\ \x5b\x09\x3d\x9b\x5b\xe2\x16\xca\x13\x81\x6d\x00\x2e\x38\x0d\xa8\ \x29\x8f\x2c\xe1\xb2\xf4\x5a\xa9\x01\xaf\x15\x9c\x2c\x2f\x49\x1b\ \xdb\x22\xbb\xc3\xfe\x78\x94\x51\xc3\x86\xb1\x82\x88\x5d\xf0\x3d\ \xb4\x51\xa1\x79\x33\x2b\x2e\x7b\xb9\xdc\x20\x09\x13\x71\xeb\x6a\ \x19\x5b\xcf\xe8\xa5\x30\x57\x2c\x89\x49\x3f\xb9\xcf\x7f\xc9\xbf\ \x3e\x22\x68\x63\x53\x9a\xbd\x69\x74\xac\xc5\x1d\x3c\x7f\x92\xe0\ \xc3\xbc\x1c\xd8\x04\x75\x30\x82\x05\x90\x30\x82\x04\x78\xa0\x03\ \x02\x01\x02\x02\x10\x74\x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\ \x98\x4d\x49\xed\x68\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x05\x05\x00\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\ \x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\ \x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\ \x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\ \x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\ \x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\ \x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\ \x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\ \x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x30\x1e\x17\x0d\x31\ \x32\x30\x39\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x31\x33\ \x30\x39\x31\x38\x32\x33\x35\x39\x35\x39\x5a\x30\x81\xd3\x31\x0b\ \x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x13\x30\x11\x06\ \x03\x55\x04\x08\x13\x0a\x43\x61\x6c\x69\x66\x6f\x72\x6e\x69\x61\ \x31\x11\x30\x0f\x06\x03\x55\x04\x07\x13\x08\x53\x61\x6e\x20\x4a\ \x6f\x73\x65\x31\x23\x30\x21\x06\x03\x55\x04\x0a\x14\x1a\x41\x64\ \x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\ \x72\x70\x6f\x72\x61\x74\x65\x64\x31\x12\x30\x10\x06\x03\x55\x04\ \x0b\x14\x09\x54\x79\x70\x65\x20\x46\x6f\x6e\x74\x31\x3e\x30\x3c\ \x06\x03\x55\x04\x0b\x13\x35\x44\x69\x67\x69\x74\x61\x6c\x20\x49\ \x44\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x2d\x20\x4d\x69\x63\x72\ \x6f\x73\x6f\x66\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x56\ \x61\x6c\x69\x64\x61\x74\x69\x6f\x6e\x20\x76\x32\x31\x23\x30\x21\ \x06\x03\x55\x04\x03\x14\x1a\x41\x64\x6f\x62\x65\x20\x53\x79\x73\ \x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\ \x64\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xb7\xc2\x11\x53\x5d\x28\xa2\x61\xd3\x04\xd4\x71\xbe\x3c\ \x39\x3e\x5a\xc0\x1e\x1c\xba\xed\xe2\x94\xc3\xc7\x38\x83\xc1\xeb\ \x2d\x6b\x0f\x4a\xb8\x8a\x27\xff\x17\x15\x05\xca\xde\xea\x4b\xa1\ \x77\x92\x64\x0e\x4f\xf6\xf2\xd3\xf6\x06\xbe\x99\x95\xb3\x63\x1a\ \xc6\xb2\xad\xe1\xa6\x0b\x70\xe7\xd6\x35\x52\xc2\x21\x8a\x96\x32\ \x2c\x0d\x62\x8a\xd6\x1f\xd7\x93\xe7\x12\x71\xf5\x0c\xd1\xae\x71\ \x60\x55\x74\x52\xd0\xae\xe2\x55\x95\x0f\xe0\x0f\x5c\xe9\x37\xa6\ \x08\x4b\x5c\x91\xff\xd4\x92\xba\x15\xe4\x62\x8c\x6a\x73\xdd\x50\ \xab\xa8\x56\x9e\x4a\x5e\x72\xbf\x13\xcd\xe9\xc0\xd3\x92\x9b\x8c\ \xb9\x6b\x0a\xb9\x27\x4f\xb8\x51\x9b\x5e\x16\x69\x1d\xd3\xee\x67\ \xd5\x28\xf7\xe4\x0c\x8f\xeb\x7c\xd8\x5a\xc8\x78\x6b\xf5\x76\xea\ \x32\x43\xdf\x72\x3f\x9a\x72\x69\x8d\x00\x54\xd2\x09\xfb\x9e\xda\ \xe9\xc2\xe0\xa9\x43\xd4\x92\x74\x4a\xb7\xc4\x01\x8f\xe3\x30\x4b\ \xad\xb1\x40\x58\x57\x60\xd6\x8f\x83\xf3\x8b\xeb\xc0\xbd\xd5\x43\ \x4f\x65\x11\x3f\x72\x15\x17\x5e\xad\xda\xff\x71\x05\xb2\x29\x9e\ \x9c\x0d\x78\x88\xe7\xed\x4b\x9c\x92\xa4\xcd\xa1\x1a\xfd\x8f\x08\ \x9e\xad\x02\x03\x01\x00\x01\xa3\x82\x01\x7b\x30\x82\x01\x77\x30\ \x09\x06\x03\x55\x1d\x13\x04\x02\x30\x00\x30\x0e\x06\x03\x55\x1d\ \x0f\x01\x01\xff\x04\x04\x03\x02\x07\x80\x30\x40\x06\x03\x55\x1d\ \x1f\x04\x39\x30\x37\x30\x35\xa0\x33\xa0\x31\x86\x2f\x68\x74\x74\ \x70\x3a\x2f\x2f\x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x63\x72\ \x6c\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\ \x53\x43\x33\x2d\x32\x30\x31\x30\x2e\x63\x72\x6c\x30\x44\x06\x03\ \x55\x1d\x20\x04\x3d\x30\x3b\x30\x39\x06\x0b\x60\x86\x48\x01\x86\ \xf8\x45\x01\x07\x17\x03\x30\x2a\x30\x28\x06\x08\x2b\x06\x01\x05\ \x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\ \x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\ \x70\x73\x30\x13\x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\x06\x08\x2b\ \x06\x01\x05\x05\x07\x03\x03\x30\x71\x06\x08\x2b\x06\x01\x05\x05\ \x07\x01\x01\x04\x65\x30\x63\x30\x24\x06\x08\x2b\x06\x01\x05\x05\ \x07\x30\x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\ \x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x3b\x06\ \x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2f\x68\x74\x74\x70\x3a\ \x2f\x2f\x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x61\x69\x61\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\ \x33\x2d\x32\x30\x31\x30\x2e\x63\x65\x72\x30\x1f\x06\x03\x55\x1d\ \x23\x04\x18\x30\x16\x80\x14\xcf\x99\xa9\xea\x7b\x26\xf4\x4b\xc9\ \x8e\x8f\xd7\xf0\x05\x26\xef\xe3\xd2\xa7\x9d\x30\x11\x06\x09\x60\ \x86\x48\x01\x86\xf8\x42\x01\x01\x04\x04\x03\x02\x04\x10\x30\x16\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x1b\x04\x08\x30\x06\ \x01\x01\x00\x01\x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\xaa\x68\x61\xbd\xaf\xdd\ \x52\x02\xc4\x8e\x41\xa5\x7d\x6f\x88\x9e\xbe\xfe\xb9\xcb\xb7\x6b\ \xed\xc2\x38\x65\x1b\x62\x31\x44\xdb\x9b\xad\x39\x33\xbf\x85\x94\ \xff\x6c\x00\xf9\xba\x94\x94\xa0\x9b\x5b\xe7\x4f\x1f\x2d\x03\x59\ \xe0\xe3\xa2\xdd\x63\xd6\xbc\xe5\x2b\x74\x01\x7b\x2d\xa4\x00\x74\ \x36\xdb\x5e\x92\x99\x9b\xf8\x7b\x17\xb9\xbf\xdd\x38\x4c\xe6\x2c\ \x84\xfa\x4e\x2a\xda\x10\x99\xd5\xf4\x8d\x95\x81\x33\xed\x64\x0f\ \x9b\x48\x44\x22\x34\x5f\x07\x63\x71\xdb\x68\xcc\xd1\x51\xff\x38\ \xdf\xda\xe8\x0e\xb3\xc1\xea\x25\xaf\x08\xb3\x0c\x9d\xca\x30\x93\ \xca\x0c\x7e\xdd\x3b\x80\xd8\x23\xa2\x0a\xd5\x16\x25\xdc\x0c\xda\ \xdb\xdd\x32\x03\xb5\x9b\x1f\xfa\xd1\x52\xf9\xd9\x9a\x2a\x10\x3e\ \x8c\xb1\x97\x1b\x41\x2e\xa9\x1f\x01\x2f\x6f\x49\x09\xdc\x6c\xb7\ \x2b\xce\x7f\xd8\x2f\xdc\xcc\x7d\xf6\x69\x1e\xdf\x94\x1d\xc9\xc5\ \x76\xa5\xe2\xf7\x34\x2b\x76\xd3\xf4\x2e\x3e\x14\xe2\xea\x6a\x41\ \xf2\xdf\xed\x7f\x0e\x2f\xdc\xee\xae\xf6\x05\x6c\x0a\x40\x40\xf1\ \x4f\x21\x8a\x83\x83\xa4\xb6\x8e\x07\x67\x15\x73\xd4\x06\x60\xdc\ \xc4\xda\x19\x8b\x4b\x28\x35\xb6\xc1\xe1\x30\x82\x06\x0a\x30\x82\ \x04\xf2\xa0\x03\x02\x01\x02\x02\x10\x52\x00\xe5\xaa\x25\x56\xfc\ \x1a\x86\xed\x96\xc9\xd4\x4b\x33\xc7\x30\x0d\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\xca\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\ \x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\ \x2e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\ \x53\x69\x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\ \x72\x6b\x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\ \x20\x32\x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\ \x49\x6e\x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\ \x72\x69\x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\ \x30\x43\x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\ \x6e\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\ \x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\ \x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\ \x20\x2d\x20\x47\x35\x30\x1e\x17\x0d\x31\x30\x30\x32\x30\x38\x30\ \x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x30\x32\x30\x37\x32\x33\ \x35\x39\x35\x39\x5a\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\ \x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\ \x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\ \x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\ \x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\ \x3b\x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\ \x6f\x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\ \x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\ \x6f\x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\ \x06\x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\ \x43\x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\ \x6e\x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x30\x82\x01\x22\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\ \x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xf5\x23\x4b\ \x5e\xa5\xd7\x8a\xbb\x32\xe9\xd4\x57\xf7\xef\xe4\xc7\x26\x7e\xad\ \x19\x98\xfe\xa8\x9d\x7d\x94\xf6\x36\x6b\x10\xd7\x75\x81\x30\x7f\ \x04\x68\x7f\xcb\x2b\x75\x1e\xcd\x1d\x08\x8c\xdf\x69\x94\xa7\x37\ \xa3\x9c\x7b\x80\xe0\x99\xe1\xee\x37\x4d\x5f\xce\x3b\x14\xee\x86\ \xd4\xd0\xf5\x27\x35\xbc\x25\x0b\x38\xa7\x8c\x63\x9d\x17\xa3\x08\ \xa5\xab\xb0\xfb\xcd\x6a\x62\x82\x4c\xd5\x21\xda\x1b\xd9\xf1\xe3\ \x84\x3b\x8a\x2a\x4f\x85\x5b\x90\x01\x4f\xc9\xa7\x76\x10\x7f\x27\ \x03\x7c\xbe\xae\x7e\x7d\xc1\xdd\xf9\x05\xbc\x1b\x48\x9c\x69\xe7\ \xc0\xa4\x3c\x3c\x41\x00\x3e\xdf\x96\xe5\xc5\xe4\x94\x71\xd6\x55\ \x01\xc7\x00\x26\x4a\x40\x3c\xb5\xa1\x26\xa9\x0c\xa7\x6d\x80\x8e\ \x90\x25\x7b\xcf\xbf\x3f\x1c\xeb\x2f\x96\xfa\xe5\x87\x77\xc6\xb5\ \x56\xb2\x7a\x3b\x54\x30\x53\x1b\xdf\x62\x34\xff\x1e\xd1\xf4\x5a\ \x93\x28\x85\xe5\x4c\x17\x4e\x7e\x5b\xfd\xa4\x93\x99\x7f\xdf\xcd\ \xef\xa4\x75\xef\xef\x15\xf6\x47\xe7\xf8\x19\x72\xd8\x2e\x34\x1a\ \xa6\xb4\xa7\x4c\x7e\xbd\xbb\x4f\x0c\x3d\x57\xf1\x30\xd6\xa6\x36\ \x8e\xd6\x80\x76\xd7\x19\x2e\xa5\xcd\x7e\x34\x2d\x89\x02\x03\x01\ \x00\x01\xa3\x82\x01\xfe\x30\x82\x01\xfa\x30\x12\x06\x03\x55\x1d\ \x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x70\ \x06\x03\x55\x1d\x20\x04\x69\x30\x67\x30\x65\x06\x0b\x60\x86\x48\ \x01\x86\xf8\x45\x01\x07\x17\x03\x30\x56\x30\x28\x06\x08\x2b\x06\ \x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\ \x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x63\x70\x73\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x02\ \x30\x1e\x1a\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\x61\ \x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\ \x30\x6d\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0c\x04\x61\x30\x5f\ \xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\x55\x16\x09\x69\x6d\x61\x67\ \x65\x2f\x67\x69\x66\x30\x21\x30\x1f\x30\x07\x06\x05\x2b\x0e\x03\ \x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\xc3\xcf\x80\ \x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\x74\x74\x70\ \x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\ \x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\x69\x66\x30\ \x34\x06\x03\x55\x1d\x1f\x04\x2d\x30\x2b\x30\x29\xa0\x27\xa0\x25\ \x86\x23\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x76\x65\x72\ \x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\x33\x2d\x67\ \x35\x2e\x63\x72\x6c\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\ \x01\x04\x28\x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\ \x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\ \x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x1d\x06\x03\x55\ \x1d\x25\x04\x16\x30\x14\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x02\ \x06\x08\x2b\x06\x01\x05\x05\x07\x03\x03\x30\x28\x06\x03\x55\x1d\ \x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\ \x04\x03\x13\x10\x56\x65\x72\x69\x53\x69\x67\x6e\x4d\x50\x4b\x49\ \x2d\x32\x2d\x38\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xcf\ \x99\xa9\xea\x7b\x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\x05\x26\xef\xe3\ \xd2\xa7\x9d\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\ \x7f\xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\ \xaf\x33\x31\x33\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x03\x82\x01\x01\x00\x56\x22\xe6\x34\xa4\xc4\x61\xcb\ \x48\xb9\x01\xad\x56\xa8\x64\x0f\xd9\x8c\x91\xc4\xbb\xcc\x0c\xe5\ \xad\x7a\xa0\x22\x7f\xdf\x47\x38\x4a\x2d\x6c\xd1\x7f\x71\x1a\x7c\ \xec\x70\xa9\xb1\xf0\x4f\xe4\x0f\x0c\x53\xfa\x15\x5e\xfe\x74\x98\ \x49\x24\x85\x81\x26\x1c\x91\x14\x47\xb0\x4c\x63\x8c\xbb\xa1\x34\ \xd4\xc6\x45\xe8\x0d\x85\x26\x73\x03\xd0\xa9\x8c\x64\x6d\xdc\x71\ \x92\xe6\x45\x05\x60\x15\x59\x51\x39\xfc\x58\x14\x6b\xfe\xd4\xa4\ \xed\x79\x6b\x08\x0c\x41\x72\xe7\x37\x22\x06\x09\xbe\x23\xe9\x3f\ \x44\x9a\x1e\xe9\x61\x9d\xcc\xb1\x90\x5c\xfc\x3d\xd2\x8d\xac\x42\ \x3d\x65\x36\xd4\xb4\x3d\x40\x28\x8f\x9b\x10\xcf\x23\x26\xcc\x4b\ \x20\xcb\x90\x1f\x5d\x8c\x4c\x34\xca\x3c\xd8\xe5\x37\xd6\x6f\xa5\ \x20\xbd\x34\xeb\x26\xd9\xae\x0d\xe7\xc5\x9a\xf7\xa1\xb4\x21\x91\ \x33\x6f\x86\xe8\x58\xbb\x25\x7c\x74\x0e\x58\xfe\x75\x1b\x63\x3f\ \xce\x31\x7c\x9b\x8f\x1b\x96\x9e\xc5\x53\x76\x84\x5b\x9c\xad\x91\ \xfa\xac\xed\x93\xba\x5d\xc8\x21\x53\xc2\x82\x53\x63\xaf\x12\x0d\ \x50\x87\x11\x1b\x3d\x54\x52\x96\x8a\x2c\x9c\x3d\x92\x1a\x08\x9a\ \x05\x2e\xc7\x93\xa5\x48\x91\xd3\x31\x82\x04\x9b\x30\x82\x04\x97\ \x02\x01\x01\x30\x81\xc9\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\ \x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\ \x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\ \x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\ \x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\ \x31\x3b\x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\ \x20\x6f\x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\ \x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\ \x63\x6f\x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\ \x2c\x06\x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x43\x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\ \x67\x6e\x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x02\x10\x74\ \x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\x68\x30\ \x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\xa0\x81\x98\x30\x14\x06\ \x09\x2b\x06\x01\x04\x01\x82\x37\x28\x01\x31\x07\x03\x05\x00\x03\ \x00\x00\x00\x30\x19\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\ \x31\x0c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\x30\x1c\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x0b\x31\x0e\x30\x0c\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x15\x30\x22\x06\x0a\ \x2b\x06\x01\x04\x01\x82\x37\x02\x01\x0c\x31\x14\x30\x12\xa1\x10\ \x80\x0e\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x20\ \x30\x23\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\ \x14\x5f\xbf\x46\xbf\xaf\xb5\x55\x54\x14\x4b\xea\x2f\x99\x40\x71\ \xce\xb5\x58\xb7\x63\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x04\x82\x01\x00\xa5\x73\xeb\x90\xbc\xfb\x90\x8f\ \x2f\xad\x7a\x12\xad\x9b\x58\x9f\xc9\x6d\xa1\x5b\xda\x95\x1d\xa9\ \xab\x36\xc5\xa9\xed\x3d\x06\x19\xd1\xea\x5e\xac\x52\xf0\xbc\x5a\ \xd4\x9c\x9a\x21\x2f\x18\x26\x3c\x0a\x31\x39\x3c\xa6\x3f\x8e\x02\ \x70\xc5\x55\xc2\x56\xd9\x45\x2d\x2b\x86\x39\x2c\x63\x11\xa0\x7c\ \x87\xf8\xc7\x6a\x80\x00\x5d\x27\x1d\xea\x5b\xae\x82\x0a\x45\xb1\ \x03\xdb\x48\x27\x50\x45\xe1\xbc\x1f\xbf\xeb\x93\xbc\x72\x46\xcf\ \x7e\xa2\xf7\x0b\x12\xc6\xcc\xc3\x36\x73\xc0\xca\xe0\x5f\x37\x2e\ \x80\xea\x78\x5b\x80\xc1\x8e\x80\x43\x9e\x89\xb1\x78\x4a\x0f\xb4\ \x09\xb3\x8e\x49\xfc\x7d\x0a\xca\x26\xde\xd6\x1c\x7f\x09\xc1\x95\ \xda\x62\x52\x62\x36\x7e\x49\xb4\x62\xd2\x29\xba\x19\xe1\xba\xce\ \x05\x24\x96\x5b\xa7\xeb\x0d\x8c\x17\x5c\x4a\x3f\xfd\x12\xac\x4a\ \xcd\x93\xbb\x31\xbd\x8f\xd9\x4c\xdb\x3f\xdb\x03\x27\xb7\x37\xee\ \x50\xb1\x66\x0a\x23\xc5\xb9\x5a\x91\x6e\xf4\x00\xd0\xe0\x68\x29\ \xe5\x58\x2f\xda\xf8\x56\xf1\x9a\x5f\xe1\x92\xf8\xc5\x1d\xf2\x19\ \x16\x39\x2d\xef\xb1\xd0\x8d\x75\x9a\x80\xd2\x36\xde\x30\x98\x9b\ \x39\x88\x27\x86\xf1\xb3\x43\x97\xa1\x82\x02\x0b\x30\x82\x02\x07\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x06\x31\x82\x01\xf8\x30\ \x82\x01\xf4\x02\x01\x01\x30\x72\x30\x5e\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\ \x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\ \x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\ \x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\ \x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\ \x20\x43\x41\x20\x2d\x20\x47\x32\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\ \xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x09\x06\x05\x2b\x0e\ \x03\x02\x1a\x05\x00\xa0\x5d\x30\x18\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x09\x03\x31\x0b\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\ \x01\x30\x1c\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x05\x31\x0f\ \x17\x0d\x31\x33\x30\x31\x31\x31\x31\x39\x32\x35\x33\x39\x5a\x30\ \x23\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\ \xaf\xbb\xc3\x6a\xe3\x8e\x68\x75\x8f\x1b\x91\x4c\x1d\x87\x0f\xa6\ \xe9\x8c\xf1\xea\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x01\x05\x00\x04\x82\x01\x00\x09\x88\x47\x00\x61\xb6\x29\xfd\xbd\ \x70\x37\x29\x7c\xee\x7c\x36\xfb\xf3\xa1\x74\xdd\x69\x6e\x5a\x26\ \x14\x0a\x1d\x1b\x6c\xb4\x13\x2c\xcb\x86\xae\xdd\xad\x18\xff\x08\ \x8b\x44\xbd\x9a\x43\xe7\xb8\xf8\x2d\x89\xfb\x8c\xa6\x55\x0b\x86\ \x59\x7e\x9a\x04\xc3\xdb\x11\x35\x94\xac\xd3\xcc\x71\xf5\xfe\x6e\ \x4d\xd6\xbc\x4d\x1d\x11\xd2\x0d\x51\xc4\x41\x02\x08\xdb\x00\xdc\ \x04\x69\xe5\x06\xbe\x2b\x7d\x76\x3e\x00\xf7\x81\x02\x3a\x82\x56\ \x0c\xa3\xf6\x5d\x0d\x21\xd6\x0f\xc7\x00\x1a\xbf\x79\xd9\xc8\x0a\ \x30\x4c\x2e\x6b\x44\x3b\xb4\xd7\xe9\xee\x0d\xd3\x31\xa3\x08\x71\ \xb1\xdf\xd6\x7f\xf3\x2f\x6d\xa7\x38\x1c\xb3\x50\x1e\xbc\x77\xd2\ \x21\xb4\x55\x56\xcd\x86\x43\xc0\x93\x4b\x12\x5b\x3b\x40\xb3\x1b\ \xe6\xf4\xa0\xc1\xa6\xc0\xe4\x0c\x41\xb2\x87\x69\xbe\x2d\x94\x77\ \xc7\x5e\x86\x89\xf7\x2c\xa2\x07\xe3\x8f\x63\x8f\xfe\xa9\x20\x3c\ \x02\xca\xa1\x97\x90\x72\xbc\x3a\x74\x8c\x8b\xaf\xd6\xf8\x01\x49\ \x1e\x41\xa7\xf5\xb8\xf0\x52\xdb\x1a\x13\x4c\x00\x4d\xba\x39\x7f\ \x27\xe7\xc3\xd6\x74\x6d\x0a\xb2\x92\x13\xee\xcc\xcf\xc3\x0a\x02\ \x1f\xfb\x08\xfc\x10\x8a\x08\ \x00\x01\xd6\xe4\ \x00\ \x01\x00\x00\x00\x13\x01\x00\x00\x04\x00\x30\x42\x41\x53\x45\x8b\ \x19\x94\xb1\x00\x01\xb6\x50\x00\x00\x00\x3a\x44\x53\x49\x47\xb3\ \x1a\x6a\x7e\x00\x01\xb6\x8c\x00\x00\x20\x58\x47\x44\x45\x46\x2f\ \x6c\x30\x10\x00\x01\xa1\x78\x00\x00\x00\xd4\x47\x50\x4f\x53\x0b\ \x64\x07\x36\x00\x01\xa2\x4c\x00\x00\x08\xd0\x47\x53\x55\x42\xe0\ \x48\xf4\xcb\x00\x01\xab\x1c\x00\x00\x0b\x32\x4f\x53\x2f\x32\x72\ \xb4\xd0\xf4\x00\x00\x01\xb8\x00\x00\x00\x60\x63\x6d\x61\x70\xec\ \xf6\xc9\x12\x00\x00\x11\x2c\x00\x00\x0a\x20\x63\x76\x74\x20\x00\ \xbf\x0b\x71\x00\x00\x1d\x04\x00\x00\x00\x22\x66\x70\x67\x6d\x06\ \x59\x9c\x37\x00\x00\x1b\x4c\x00\x00\x01\x73\x67\x61\x73\x70\xff\ \xff\x00\x03\x00\x01\xa1\x70\x00\x00\x00\x08\x67\x6c\x79\x66\xdb\ \x65\x7b\x45\x00\x00\x24\xb4\x00\x01\x1f\xa0\x68\x65\x61\x64\xfb\ \xe3\xf9\x17\x00\x00\x01\x3c\x00\x00\x00\x36\x68\x68\x65\x61\x06\ \x76\x04\xa3\x00\x00\x01\x74\x00\x00\x00\x24\x68\x6d\x74\x78\xd3\ \xb6\x58\x75\x00\x00\x02\x18\x00\x00\x0f\x14\x6c\x6f\x63\x61\x5e\ \x14\xa5\xe8\x00\x00\x1d\x28\x00\x00\x07\x8c\x6d\x61\x78\x70\x05\ \xe9\x02\x38\x00\x00\x01\x98\x00\x00\x00\x20\x6e\x61\x6d\x65\xc8\ \x5f\xeb\xf3\x00\x01\x44\x54\x00\x00\x3c\xbe\x70\x6f\x73\x74\x84\ \x48\x04\xa9\x00\x01\x81\x14\x00\x00\x20\x5c\x70\x72\x65\x70\x26\ \xb3\x23\xb0\x00\x00\x1c\xc0\x00\x00\x00\x41\x00\x01\x00\x00\x00\ \x01\x04\x5a\x15\x8a\x33\xc7\x5f\x0f\x3c\xf5\x00\x09\x03\xe8\x00\ \x00\x00\x00\xcd\x15\xa0\x7f\x00\x00\x00\x00\xcd\x16\x11\x00\xff\ \xd9\xfe\x70\x02\xc2\x03\xe8\x00\x00\x00\x09\x00\x02\x00\x00\x00\ \x00\x00\x00\x00\x01\x00\x00\x03\xd8\xfe\xef\x00\x00\x02\x58\xff\ \xd9\xff\x96\x02\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x03\xc5\x00\x01\x00\x00\x03\xc5\x00\x56\x00\ \x10\x00\x6d\x00\x06\x00\x01\x00\x00\x00\x00\x00\x0a\x00\x00\x02\ \x00\x01\x73\x00\x03\x00\x01\x00\x03\x02\x57\x01\x90\x00\x05\x00\ \x00\x02\x8a\x02\x58\x00\x00\x00\x4b\x02\x8a\x02\x58\x00\x00\x01\ \x5e\x00\x32\x01\x20\x00\x00\x02\x0b\x05\x09\x03\x04\x03\x02\x02\ \x04\x20\x00\x00\x07\x00\x00\x18\x01\x00\x00\x00\x00\x00\x00\x00\ \x00\x41\x44\x42\x45\x00\x40\x00\x00\xfb\x02\x02\xee\xff\x06\x00\ \x00\x03\xd8\x01\x11\x60\x00\x01\x93\x00\x00\x00\x00\x01\xe0\x02\ \x94\x00\x00\x00\x20\x00\x03\x02\x58\x00\x3e\x00\x00\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x20\x02\x58\x00\x67\x02\ \x58\x00\x42\x02\x58\x00\x55\x02\x58\x00\x73\x02\x58\x00\x87\x02\ \x58\x00\x35\x02\x58\x00\x4f\x02\x58\x00\x5f\x02\x58\x00\x51\x02\ \x58\x00\x62\x02\x58\x00\x86\x02\x58\x00\x51\x02\x58\x00\x53\x02\ \x58\x00\x30\x02\x58\x00\x66\x02\x58\x00\x31\x02\x58\x00\x64\x02\ \x58\x00\x43\x02\x58\x00\x2a\x02\x58\x00\x4f\x02\x58\x00\x2b\x02\ \x58\x00\x0a\x02\x58\x00\x36\x02\x58\x00\x26\x02\x58\x00\x41\x02\ \x58\x00\x51\x02\x58\x00\x5d\x02\x58\x00\x50\x02\x58\x00\x3c\x02\ \x58\x00\x45\x02\x58\x00\x67\x02\x58\x00\x48\x02\x58\x00\x5d\x02\ \x58\x00\x5a\x02\x58\x00\x37\x02\x58\x00\x6a\x02\x58\x00\x51\x02\ \x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\ \x58\x00\x3c\x02\x58\x00\x92\x02\x58\x00\x48\x02\x58\x00\x45\x02\ \x58\x00\x4d\x02\x58\x00\x33\x02\x58\x00\x08\x02\x58\x00\x40\x02\ \x58\x00\x31\x02\x58\x00\x47\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\xff\xff\x02\x58\x00\x1b\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x55\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x10\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x0a\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x51\x02\ \x58\x00\x62\x02\x58\x00\x86\x02\x58\x00\x86\x02\x58\x00\x86\x02\ \x58\x00\x86\x02\x58\x00\x86\x02\x58\x00\x43\x02\x58\x00\x86\x02\ \x58\x00\x35\x02\x58\x00\x51\x02\x58\x00\x53\x02\x58\x00\x53\x02\ \x58\x00\x53\x02\x58\x00\x53\x02\x58\x00\x53\x02\x58\x00\x53\x02\ \x58\x00\x53\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x2d\x02\x58\x00\x21\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x64\x02\x58\x00\x64\x02\ \x58\x00\x64\x02\x58\x00\x64\x02\x58\x00\x64\x02\x58\x00\x64\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x4f\x02\ \x58\x00\x2a\x02\x58\x00\x2a\x02\x58\x00\x2a\x02\x58\x00\x2a\x02\ \x58\x00\x2a\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x0a\x02\x58\x00\x0a\x02\x58\x00\x0a\x02\x58\x00\x0a\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x41\x02\ \x58\x00\x10\x02\x58\x00\x65\x02\x58\x00\x3e\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x11\x02\x58\x00\x14\x02\x58\x00\x50\x02\ \x58\x00\x50\x02\x58\x00\x50\x02\x58\x00\x50\x02\x58\x00\x50\x02\ \x58\x00\x33\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x0a\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x14\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x37\x02\x58\x00\x6a\x02\x58\x00\x6a\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x2b\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\ \x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\ \x58\xff\xea\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x0b\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x92\x02\x58\x00\x74\x02\ \x58\x00\x92\x02\x58\x00\x87\x02\x58\x00\x87\x02\x58\x00\x4d\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x58\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x08\x02\x58\x00\x08\x02\x58\x00\x08\x02\ \x58\x00\x08\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x47\x02\x58\x00\x47\x02\x58\x00\x47\x02\ \x58\x00\x47\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x37\x02\ \x58\x00\x5e\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x3d\x02\ \x58\x00\x3f\x02\x58\x00\x45\x02\x58\x00\x3c\x02\x58\x00\x4d\x02\ \x58\x00\x2e\x02\x58\x00\x3f\x02\x58\x00\x36\x02\x58\x00\x33\x02\ \x58\x00\x08\x02\x58\x00\x31\x02\x58\x00\x1a\x02\x58\x00\x34\x02\ \x58\x00\x39\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x2a\x02\x58\x00\x47\x02\x58\x00\x62\x02\x58\x00\x45\x02\ \x58\x00\x39\x02\x58\x00\x27\x02\x58\x00\x38\x02\x58\x00\x4d\x02\ \x58\x00\x46\x02\x58\x00\x44\x02\x58\x00\x43\x02\x58\x00\x47\x02\ \x58\x00\x62\x02\x58\x00\x45\x02\x58\x00\x39\x02\x58\x00\x27\x02\ \x58\x00\x38\x02\x58\x00\x4e\x02\x58\x00\x46\x02\x58\x00\x44\x02\ \x58\x00\x43\x02\x58\x00\xdb\x02\x58\x00\xc5\x02\x58\x00\xdb\x02\ \x58\x00\xc5\x02\x58\x00\x20\x02\x58\x00\xe3\x02\x58\x00\xe3\x02\ \x58\x00\x6d\x02\x58\x00\x7b\x02\x58\x00\xf5\x02\x58\x00\x83\x02\ \x58\x00\xd1\x02\x58\x00\xd9\x02\x58\x00\x5f\x02\x58\x00\x67\x02\ \x58\x00\xd9\x02\x58\x00\x67\x02\x58\x00\xc5\x02\x58\x00\xd3\x02\ \x58\x00\x53\x02\x58\x00\x61\x02\x58\x00\x55\x02\x58\x00\x55\x02\ \x58\x00\x50\x02\x58\x00\x14\x02\x58\x00\x50\x02\x58\x00\x14\x02\ \x58\x00\xdb\x02\x58\x00\x97\x02\x58\x00\x3c\x02\x58\x00\xd0\x02\ \x58\x00\x7a\x02\x58\x00\xe2\x02\x58\x00\x63\x02\x58\x00\x78\x02\ \x58\x00\x63\x02\x58\x00\x63\x02\x58\x01\x07\x02\x58\x00\x63\x02\ \x58\x01\x07\x02\x58\x00\x54\x02\x58\x00\x7f\x02\x58\x00\x7f\x02\ \x58\x00\x5b\x02\x58\x00\x48\x02\x58\x00\x1e\x02\x58\x00\x1e\x02\ \x58\x00\x70\x02\x58\xff\xfb\x02\x58\x00\x0f\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x57\x02\x58\x00\x68\x02\x58\x00\x86\x02\ \x58\x00\x86\x02\x58\x00\x55\x02\x58\x00\xa1\x02\x58\x00\xd0\x02\ \x58\x00\xae\x02\x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xac\x02\ \x58\x00\xb0\x02\x58\x00\xb7\x02\x58\x00\xaf\x02\x58\x00\xad\x02\ \x58\x00\xec\x02\x58\x00\xd5\x02\x58\x00\xfe\x02\x58\x00\xf4\x02\ \x58\x00\xa1\x02\x58\x00\xd0\x02\x58\x00\xae\x02\x58\x00\xac\x02\ \x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xb0\x02\x58\x00\xb7\x02\ \x58\x00\xaf\x02\x58\x00\xad\x02\x58\x00\xec\x02\x58\x00\xd5\x02\ \x58\x00\xfe\x02\x58\x00\xf4\x02\x58\x00\xa1\x02\x58\x00\xd0\x02\ \x58\x00\xad\x02\x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xac\x02\ \x58\x00\xb0\x02\x58\x00\xb7\x02\x58\x00\xaf\x02\x58\x00\xad\x02\ \x58\x00\xec\x02\x58\x00\xd5\x02\x58\x00\xfe\x02\x58\x00\xf4\x02\ \x58\x00\xa1\x02\x58\x00\xd0\x02\x58\x00\xae\x02\x58\x00\xac\x02\ \x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xb0\x02\x58\x00\xb7\x02\ \x58\x00\xaf\x02\x58\x00\xad\x02\x58\x00\xec\x02\x58\x00\xd5\x02\ \x58\x00\xfe\x02\x58\x00\xf4\x02\x58\x00\xa7\x02\x58\x00\x89\x02\ \x58\x00\x8e\x02\x58\x00\xa7\x02\x58\x00\xac\x02\x58\x00\xb5\x02\ \x58\x00\x89\x02\x58\x00\xa0\x02\x58\x00\xc6\x02\x58\x00\x95\x02\ \x58\x00\xaf\x02\x58\x00\xaf\x02\x58\x00\x8c\x02\x58\x00\xbd\x02\ \x58\x00\xc4\x02\x58\x00\x82\x02\x58\x00\xaf\x02\x58\x00\x8e\x02\ \x58\x00\xac\x02\x58\x00\x89\x02\x58\x00\xf3\x02\x58\x00\xa2\x02\ \x58\x00\xa4\x02\x58\x00\x9f\x02\x58\x00\x93\x02\x58\x00\x52\x02\ \x58\x00\x9f\x02\x58\x00\x8c\x02\x58\x00\x92\x02\x58\x00\xa0\x02\ \x58\x00\xa0\x02\x58\x00\x9a\x02\x58\x00\x89\x02\x58\x00\x89\x02\ \x58\x00\xaf\x02\x58\x00\x3a\x02\x58\x00\x55\x02\x58\x00\x4d\x02\ \x58\x00\x35\x02\x58\x00\x3a\x02\x58\x00\x71\x02\x58\x00\x31\x02\ \x58\x00\x60\x02\x58\x00\x4e\x02\x58\x00\x2f\x02\x58\x00\x2b\x02\ \x58\x00\x6d\x02\x58\x00\x2b\x02\x58\x00\x54\x02\x58\x00\x60\x02\ \x58\x00\x6c\x02\x58\x00\x38\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x30\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x27\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x66\x02\x58\x00\x55\x02\ \x58\x00\xd8\x02\x58\x00\x55\x02\x58\x00\x78\x02\x58\x00\x6b\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x6f\x02\ \x58\x00\x55\x02\x58\x00\x4c\x02\x58\x00\x4c\x02\x58\x00\x55\x02\ \x58\x00\x27\x02\x58\xff\xfc\x02\x58\x00\x4d\x02\x58\x00\x4c\x02\ \x58\x00\xba\x02\x58\x00\x3e\x02\x58\x00\x24\x02\x58\x00\x1d\x02\ \x58\x00\x46\x02\x58\x00\x34\x02\x58\x00\x75\x02\x58\x00\x1a\x02\ \x58\x00\x11\x02\x58\x00\x21\x02\x58\x00\x1d\x02\x58\x00\x21\x02\ \x58\x00\xc9\x02\x58\x00\x9f\x02\x58\x00\x77\x02\x58\x00\xa6\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x21\x02\x58\x00\x21\x02\ \x58\xff\xe7\x02\x58\xff\xe7\x02\x58\xff\xfa\x02\x58\x00\x4d\x02\ \x58\x00\x62\x02\x58\x01\x00\x02\x58\x00\xa9\x02\x58\x00\xd1\x02\ \x58\x00\xd9\x02\x58\x00\xf5\x02\x58\x00\xdb\x02\x58\x00\xb9\x02\ \x58\x00\xeb\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xf9\x02\ \x58\x00\xb1\x02\x58\x00\xeb\x02\x58\x00\xb9\x02\x58\x00\xf9\x02\ \x58\x00\x9e\x02\x58\x00\x96\x02\x58\x00\xb1\x02\x58\x00\xaa\x02\ \x58\x00\xcf\x02\x58\x00\xca\x02\x58\x00\xea\x02\x58\x00\xdd\x02\ \x58\x00\xea\x02\x58\x00\xb9\x02\x58\x00\xa9\x02\x58\x00\xeb\x02\ \x58\x00\xf9\x02\x58\x00\xa8\x02\x58\x00\xa4\x02\x58\x00\x9e\x02\ \x58\x00\x9b\x02\x58\x00\xb1\x02\x58\x00\xb0\x02\x58\x00\xaa\x02\ \x58\x00\xb1\x02\x58\x00\xea\x02\x58\x00\xf3\x02\x58\x00\x96\x02\ \x58\x00\xa5\x02\x58\x00\xec\x02\x58\x00\xec\x02\x58\x00\xcf\x02\ \x58\x00\xcf\x02\x58\x00\xca\x02\x58\x00\xbf\x02\x58\x00\xa8\x02\ \x58\x00\xa4\x02\x58\x00\x6c\x02\x58\x00\x6c\x02\x58\x00\xf7\x02\ \x58\x00\xfd\x02\x58\x01\x23\x02\x58\x00\xea\x02\x58\x00\xa5\x02\ \x58\x00\xd7\x02\x58\x00\xd7\x02\x58\x00\xd2\x02\x58\x00\xea\x02\ \x58\x00\xea\x02\x58\x00\xae\x02\x58\x00\xb0\x02\x58\x00\xa8\x02\ \x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\ \x58\x00\xa4\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xb8\x02\ \x58\x00\xac\x02\x58\x00\xb8\x02\x58\x00\xac\x02\x58\x00\xb8\x02\ \x58\x00\xac\x02\x58\x00\xa9\x02\x58\x00\xa8\x02\x58\x00\xae\x02\ \x58\x00\xb2\x02\x58\x00\xae\x02\x58\x00\xb2\x02\x58\x00\xae\x02\ \x58\x00\xb2\x02\x58\x00\xa9\x02\x58\x00\xa7\x02\x58\x00\xb0\x02\ \x58\x00\xac\x02\x58\x01\x06\x02\x58\x00\xe7\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\x21\x02\ \x58\x00\x21\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\x12\x02\ \x58\x00\x12\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\x00\xde\x02\ \x58\x00\xde\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x00\x4b\x02\ \x58\x00\x4b\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\x00\xb7\x02\x58\x01\x05\x02\x58\x00\xb7\x02\x58\x00\xb7\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x00\xb7\x02\x58\x00\xb7\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\x01\x05\x02\x58\x00\xb7\x02\x58\x00\xb7\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\x01\x05\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\x01\x05\x02\x58\x01\x05\x02\x58\x01\x05\x02\x58\xff\xd9\x02\ \x58\x00\xde\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\x00\xde\x02\x58\xff\xd9\x02\x58\x00\xde\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x01\x2c\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x02\x0d\x02\x58\x00\x00\x02\x58\x01\x2c\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x01\x2c\x02\x58\x00\x00\x02\x58\x00\x00\x00\x00\x00\x03\x00\ \x00\x00\x03\x00\x00\x02\x14\x00\x01\x00\x00\x00\x00\x00\x1c\x00\ \x03\x00\x01\x00\x00\x02\x14\x00\x06\x01\xf8\x00\x00\x00\x09\x00\ \xf7\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x03\x01\xe8\x01\xed\x02\x17\x02\x78\x02\x8b\x01\xce\x01\xec\x02\ \x01\x02\x02\x02\x0b\x02\x96\x01\xe4\x01\xf8\x01\xe3\x02\x07\x01\ \xcf\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x01\xd5\x01\xd6\x01\ \xd7\x01\xd8\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\x9d\x01\xea\x02\ \x15\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\ \x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x00\x1d\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x02\x05\x02\x08\x02\x06\x02\xa3\x00\x00\x00\ \x3c\x00\x3f\x00\x50\x00\x5a\x00\x8e\x00\x97\x00\xc3\x00\xea\x00\ \xe9\x00\xeb\x00\xed\x00\xec\x00\xf0\x01\x01\x01\x0b\x01\x0a\x01\ \x0c\x01\x0e\x01\x27\x01\x26\x01\x28\x01\x2a\x01\x41\x01\x48\x01\ \x47\x01\x49\x01\x4b\x01\x4a\x01\x75\x01\x74\x01\x76\x01\x78\x02\ \x0c\x02\x76\x02\x7c\x02\x79\x02\x0e\x01\xff\x02\x0f\x01\x6d\x02\ \x12\x02\x10\x02\x13\x02\xce\x02\xd7\x02\xa2\x00\x4e\x00\xa3\x02\ \xa7\x02\xa0\x02\x9e\x02\x9f\x02\x7a\x02\xa8\x02\xa9\x02\xae\x02\ \xaf\x02\xa6\x02\xaa\x02\x54\x02\x56\x00\x00\x00\xff\x01\x57\x01\ \xeb\x01\xe9\x02\xa5\x02\xab\x02\x7d\x02\xa4\x02\xac\x01\xf6\x01\ \xf7\x01\xe7\x03\x21\x00\x38\x00\x3b\x00\x96\x00\xa4\x01\x58\x01\ \xfa\x01\xfb\x01\xf0\x01\xf1\x01\xee\x01\xef\x02\x99\x02\xc6\x01\ \x92\x00\xdd\x02\x88\x02\x7b\x01\xf4\x01\xf5\x01\xad\x01\xae\x02\ \x0d\x01\xfe\x01\xf2\x01\xf3\x02\x8c\x00\x3a\x00\x5b\x00\x39\x00\ \x5d\x00\x59\x00\x76\x00\x77\x00\x79\x00\x75\x00\x94\x00\x95\x00\ \x00\x00\x93\x00\xc0\x00\xc1\x00\xbf\x01\x32\x02\xcf\x02\xd6\x02\ \xd8\x02\xd9\x02\xdc\x02\xda\x02\xdd\x02\xdb\x02\xde\x02\xd0\x00\ \x04\x08\x0c\x00\x00\x01\x1a\x01\x00\x00\x07\x00\x1a\x00\x00\x00\ \x0d\x00\x2f\x00\x39\x00\x40\x00\x5a\x00\x60\x00\x7a\x00\x7e\x00\ \xbf\x00\xc4\x00\xd1\x00\xd6\x00\xdf\x00\xe4\x00\xf1\x00\xf6\x01\ \x31\x01\x49\x01\x65\x01\x7e\x01\x80\x01\x8f\x01\x92\x01\xa1\x01\ \xb0\x01\xdc\x01\xe7\x01\xeb\x02\x1b\x02\x37\x02\x43\x02\x52\x02\ \x54\x02\x59\x02\x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8e\x02\ \x9e\x02\xb0\x02\xb3\x02\xb8\x02\xbc\x02\xbf\x02\xcc\x02\xdd\x02\ \xe3\x03\x04\x03\x0c\x03\x0f\x03\x13\x03\x1b\x03\x24\x03\x28\x03\ \x2e\x03\x31\x03\xc0\x1d\x43\x1d\x49\x1d\x4d\x1d\x50\x1d\x52\x1d\ \x58\x1d\x5b\x1d\x9c\x1d\xa0\x1d\xbb\x1e\x0f\x1e\x21\x1e\x25\x1e\ \x2b\x1e\x3b\x1e\x49\x1e\x63\x1e\x6f\x1e\x85\x1e\x8f\x1e\x93\x1e\ \x97\x1e\x9e\x1e\xf9\x20\x07\x20\x15\x20\x1a\x20\x1e\x20\x22\x20\ \x26\x20\x30\x20\x33\x20\x3a\x20\x44\x20\x71\x20\x79\x20\x7f\x20\ \x89\x20\x8e\x20\x94\x20\xa1\x20\xa4\x20\xa7\x20\xac\x20\xb2\x20\ \xb5\x20\xba\x21\x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\ \x54\x21\x5e\x21\x93\x22\x02\x22\x06\x22\x0f\x22\x12\x22\x15\x22\ \x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\x65\x25\x9f\x25\xa0\x25\ \xb3\x25\xb7\x25\xbd\x25\xc1\x25\xc6\x25\xca\x26\x11\x26\x6a\x27\ \x13\x27\x52\xfb\x02\xff\xff\x00\x00\x00\x00\x00\x0d\x00\x20\x00\ \x30\x00\x3a\x00\x41\x00\x5b\x00\x61\x00\x7b\x00\xa0\x00\xc0\x00\ \xc5\x00\xd2\x00\xd7\x00\xe0\x00\xe5\x00\xf2\x00\xf7\x01\x34\x01\ \x4c\x01\x68\x01\x80\x01\x8f\x01\x92\x01\xa0\x01\xaf\x01\xcd\x01\ \xe6\x01\xea\x02\x18\x02\x37\x02\x43\x02\x50\x02\x54\x02\x58\x02\ \x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8c\x02\x9e\x02\xb0\x02\ \xb2\x02\xb7\x02\xbb\x02\xbe\x02\xc6\x02\xd8\x02\xe1\x03\x00\x03\ \x06\x03\x0f\x03\x12\x03\x1b\x03\x23\x03\x26\x03\x2e\x03\x31\x03\ \xc0\x1d\x43\x1d\x47\x1d\x4d\x1d\x4f\x1d\x52\x1d\x56\x1d\x5b\x1d\ \x9c\x1d\xa0\x1d\xbb\x1e\x0c\x1e\x20\x1e\x24\x1e\x2a\x1e\x36\x1e\ \x42\x1e\x5a\x1e\x6c\x1e\x80\x1e\x8e\x1e\x92\x1e\x97\x1e\x9e\x1e\ \xa0\x20\x07\x20\x12\x20\x18\x20\x1c\x20\x20\x20\x26\x20\x30\x20\ \x32\x20\x39\x20\x44\x20\x70\x20\x74\x20\x7d\x20\x80\x20\x8d\x20\ \x94\x20\xa1\x20\xa4\x20\xa6\x20\xab\x20\xb1\x20\xb5\x20\xb9\x21\ \x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\x53\x21\x5b\x21\ \x90\x22\x02\x22\x06\x22\x0f\x22\x11\x22\x15\x22\x19\x22\x1e\x22\ \x2b\x22\x48\x22\x60\x22\x64\x25\x00\x25\xa0\x25\xb2\x25\xb6\x25\ \xbc\x25\xc0\x25\xc6\x25\xc9\x26\x10\x26\x6a\x27\x13\x27\x52\xfb\ \x01\xff\xff\x00\x01\xff\xf5\x00\x00\x01\x9f\x00\x00\xff\xc3\x00\ \x00\xff\xbd\x00\x00\x00\x00\xff\x78\x00\x00\xff\xc1\x00\x00\x00\ \x09\x00\x00\x00\x55\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\xff\ \x59\x00\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\ \x66\xfe\x0c\xff\x4e\xff\x4d\xff\x4a\xff\x43\xff\x40\xff\x37\xff\ \x2e\xff\x21\xff\x1d\xff\x0e\xff\xae\x00\x00\x00\x00\x00\x0e\x00\ \x0d\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe8\xff\xe7\xff\ \xe0\xff\xd9\x00\x00\xff\xd5\xff\xd3\xfe\xe6\xe5\x14\x00\x00\xe5\ \x10\x00\x00\xe5\x13\x00\x00\xe5\x11\xe4\xbd\xe4\xbc\xe4\xb5\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xe2\xdc\xe2\x1b\x00\x00\xe3\x1b\x00\x00\x00\ \x00\x00\x00\x00\x00\xe1\xc1\xe2\x5c\xe2\x95\xe1\xbb\xe2\x44\x00\ \x00\xe1\xac\x00\x00\xe1\xaa\xe1\xa7\xe1\xdf\xe1\xdd\xe1\xdb\xe1\ \xda\x00\x00\xe1\xd2\xe1\xd0\xe1\xcd\xe1\x9d\xe0\xfa\xe0\xf4\xe0\ \xf1\xe1\x87\xe1\x83\xe1\x3d\xe1\x37\xe1\x22\xe0\xa7\xe0\xa6\xe0\ \xa0\x00\x00\xe0\x74\x00\x00\xe0\x89\xe0\x7f\xe0\x5c\xe0\x42\xe0\ \x3a\xde\x25\xdd\x16\xdd\x08\xdd\x06\xdd\x02\xdd\x00\xdc\xf1\x00\ \x00\xdc\xb2\xdc\x5b\xdb\xb1\xdb\x67\x06\xac\x00\x01\x00\x00\x00\ \x00\x01\x16\x00\x00\x01\x32\x00\x00\x01\x3c\x00\x00\x01\x44\x01\ \x4a\x00\x00\x01\x86\x00\x00\x01\x9c\x00\x00\x01\xaa\x00\x00\x01\ \xc0\x02\x34\x02\x5e\x02\x90\x00\x00\x00\x00\x00\x00\x02\xb6\x02\ \xb8\x02\xba\x02\xd8\x02\xda\x02\xdc\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x02\xc8\x02\xca\x00\x00\x00\x00\x00\x00\x02\xc6\x02\ \xd0\x02\xd4\x02\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x02\xe0\x00\ \x00\x00\x00\x00\x00\x00\x00\x02\xdc\x00\x00\x02\xde\x00\x00\x02\ \xde\x00\x00\x00\x00\x00\x00\x00\x00\x02\xda\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xf0\x02\xfe\x03\x10\x03\x16\x03\x20\x03\x22\x00\ \x00\x00\x00\x03\x20\x00\x00\x03\xd0\x03\xd6\x03\xda\x03\xde\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd8\x00\x00\x03\xd8\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd0\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xb4\x00\x00\x03\ \xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x9e\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x03\x01\xe8\x01\xed\x02\x17\x02\ \x78\x02\x8b\x01\xce\x01\xec\x02\x01\x02\x02\x02\x0b\x02\x96\x01\ \xe4\x01\xf8\x01\xe3\x02\x07\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\ \x9d\x01\xea\x02\x15\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x02\x05\x02\x08\x02\x06\x02\xa3\x03\x21\x01\xe9\x02\x7c\x02\ \x79\x02\x77\x02\x7a\x02\x0a\x02\x0e\x02\xd7\x02\x10\x02\x54\x01\ \xf6\x02\xa5\x01\xf9\x02\x12\x02\xd8\x02\x76\x02\xa0\x02\x1e\x02\ \x1f\x02\xce\x02\xa8\x02\x0f\x01\xfe\x02\xdd\x02\x1d\x02\x56\x01\ \xf7\x02\x8d\x02\x8e\x02\x8f\x01\xeb\x00\x3f\x00\x4e\x00\x50\x00\ \x59\x00\x5a\x00\x5b\x00\x5d\x00\x75\x00\x76\x00\x77\x00\x79\x00\ \xe6\x00\x8e\x02\x98\x00\xa3\x00\xbf\x00\xc0\x00\xc1\x00\xc3\x00\ \xdb\x00\xe7\x01\x6d\x00\xf0\x00\xff\x01\x01\x01\x0a\x01\x0b\x01\ \x0c\x01\x0e\x01\x26\x01\x27\x01\x28\x01\x2a\x01\x9b\x01\x41\x02\ \x99\x01\x57\x01\x74\x01\x75\x01\x76\x01\x78\x01\x90\x01\x9c\x01\ \x92\x00\x3d\x00\xee\x00\x3e\x00\xef\x00\x4d\x00\xfe\x00\x51\x01\ \x02\x00\x52\x01\x03\x00\x54\x01\x05\x00\x53\x01\x04\x00\x55\x01\ \x06\x00\x58\x01\x09\x00\x5e\x01\x0f\x00\x5f\x01\x10\x00\x60\x01\ \x11\x00\x69\x01\x1a\x00\x5c\x01\x0d\x00\x6a\x01\x1b\x00\x6b\x01\ \x1c\x00\x6c\x01\x1d\x00\x6d\x01\x1e\x00\x71\x01\x22\x00\x74\x01\ \x25\x00\x78\x01\x29\x00\x7a\x01\x2b\x00\x7b\x01\x2c\x00\x80\x01\ \x30\x00\x7c\x01\x32\x00\x81\x01\x33\x00\x82\x01\x34\x01\x35\x00\ \x83\x01\x36\x00\x85\x01\x39\x00\x84\x01\x37\x00\x86\x01\x38\x00\ \x8a\x01\x3d\x00\x8c\x01\x3f\x00\x8f\x01\x42\x00\x8d\x01\x40\x01\ \x46\x00\x98\x01\x4c\x00\x99\x01\x4d\x00\x9a\x01\x4e\x00\xa4\x01\ \x58\x00\xac\x01\x60\x00\xae\x01\x61\x00\xad\x01\x62\x00\xb2\x01\ \x66\x00\xb3\x01\x67\x00\xb5\x01\x69\x00\xb4\x01\x68\x00\xbb\x01\ \x6f\x00\xba\x01\x6e\x00\xc2\x01\x77\x00\xc4\x01\x79\x00\xc5\x01\ \x7a\x00\xc6\x01\x7b\x00\xc7\x01\x7c\x00\xcf\x01\x84\x00\xd8\x01\ \x8d\x00\xdc\x01\x91\x00\xdd\x00\xe2\x01\x97\x00\xe4\x01\x99\x00\ \xe3\x01\x98\x00\xa5\x01\x59\x00\xd0\x01\x85\x00\x40\x00\xf1\x00\ \x7d\x01\x2d\x00\x9b\x01\x4f\x00\xc8\x01\x7d\x00\xc9\x01\x7e\x00\ \xca\x01\x7f\x00\xcb\x01\x80\x00\xcc\x01\x81\x00\x6e\x01\x1f\x00\ \xab\x01\x5f\x00\xb6\x01\x6a\x00\xbc\x01\x70\x02\x60\x02\x68\x02\ \x6d\x02\x6f\x02\xd9\x02\xdc\x02\xda\x02\xde\x02\xd6\x02\xdb\x02\ \x62\x02\x69\x02\x6e\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xfe\x02\ \xff\x03\x01\x02\x58\x02\x5a\x02\x5b\x02\x61\x02\x63\x02\x66\x02\ \x6a\x02\x6b\x00\x56\x01\x07\x00\x57\x01\x08\x00\x6f\x01\x20\x00\ \x72\x01\x23\x00\x73\x01\x24\x00\x87\x01\x3a\x00\x88\x01\x3b\x00\ \x89\x01\x3c\x00\x8b\x01\x3e\x00\x90\x01\x43\x00\x91\x01\x44\x00\ \x92\x01\x45\x00\xaf\x01\x63\x00\xb0\x01\x64\x00\xb1\x01\x65\x00\ \xb7\x01\x6b\x00\xb8\x01\x6c\x00\xbd\x01\x71\x00\xbe\x01\x72\x00\ \xd6\x01\x8b\x00\xd7\x01\x8c\x00\xd9\x01\x8e\x00\xde\x01\x93\x00\ \xe5\x01\x9a\x00\x41\x00\xf2\x00\x42\x00\xf3\x00\x43\x00\xf4\x00\ \x44\x00\xf5\x00\x45\x00\xf6\x00\x46\x00\xf7\x00\x47\x00\xf8\x00\ \x48\x00\xf9\x00\x49\x00\xfa\x00\x4a\x00\xfb\x00\x4b\x00\xfc\x00\ \x4c\x00\xfd\x00\x61\x01\x12\x00\x62\x01\x13\x00\x63\x01\x14\x00\ \x64\x01\x15\x00\x65\x01\x16\x00\x66\x01\x17\x00\x67\x01\x18\x00\ \x68\x01\x19\x00\x7e\x01\x2e\x00\x7f\x01\x2f\x00\x9c\x01\x50\x00\ \x9d\x01\x51\x00\x9e\x01\x52\x00\x9f\x01\x53\x00\xa0\x01\x54\x00\ \xa1\x01\x55\x00\xa2\x01\x56\x00\xa6\x01\x5a\x00\xa7\x01\x5b\x00\ \xa8\x01\x5c\x00\xa9\x01\x5d\x00\xaa\x01\x5e\x00\xcd\x01\x82\x00\ \xce\x01\x83\x00\xd1\x01\x86\x00\xd2\x01\x87\x00\xd3\x01\x88\x00\ \xd4\x01\x89\x00\xd5\x01\x8a\x00\xda\x01\x8f\x00\xdf\x01\x94\x00\ \xe0\x01\x95\x00\xe1\x01\x96\x01\xfc\x01\xfa\x01\xfb\x01\xfd\x01\ \xee\x01\xef\x01\xf2\x01\xf0\x01\xf1\x01\xf3\x02\x0c\x02\x0d\x01\ \xff\x02\x1c\x02\x5f\x02\x26\x02\x27\x02\x64\x02\x82\x02\x7b\x02\ \xae\x02\x97\x02\x9a\x02\xab\x02\xb8\x02\xc6\xb8\x00\x00\x2c\x4b\ \xb8\x00\x09\x50\x58\xb1\x01\x01\x8e\x59\xb8\x01\xff\x85\xb8\x00\ \x44\x1d\xb9\x00\x09\x00\x03\x5f\x5e\x2d\xb8\x00\x01\x2c\x20\x20\ \x45\x69\x44\xb0\x01\x60\x2d\xb8\x00\x02\x2c\xb8\x00\x01\x2a\x21\ \x2d\xb8\x00\x03\x2c\x20\x46\xb0\x03\x25\x46\x52\x58\x23\x59\x20\ \x8a\x20\x8a\x49\x64\x8a\x20\x46\x20\x68\x61\x64\xb0\x04\x25\x46\ \x20\x68\x61\x64\x52\x58\x23\x65\x8a\x59\x2f\x20\xb0\x00\x53\x58\ \x69\x20\xb0\x00\x54\x58\x21\xb0\x40\x59\x1b\x69\x20\xb0\x00\x54\ \x58\x21\xb0\x40\x65\x59\x59\x3a\x2d\xb8\x00\x04\x2c\x20\x46\xb0\ \x04\x25\x46\x52\x58\x23\x8a\x59\x20\x46\x20\x6a\x61\x64\xb0\x04\ \x25\x46\x20\x6a\x61\x64\x52\x58\x23\x8a\x59\x2f\xfd\x2d\xb8\x00\ \x05\x2c\x4b\x20\xb0\x03\x26\x50\x58\x51\x58\xb0\x80\x44\x1b\xb0\ \x40\x44\x59\x1b\x21\x21\x20\x45\xb0\xc0\x50\x58\xb0\xc0\x44\x1b\ \x21\x59\x59\x2d\xb8\x00\x06\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\ \x20\x20\x45\x7d\x69\x18\x44\xb0\x01\x60\x2d\xb8\x00\x07\x2c\xb8\ \x00\x06\x2a\x2d\xb8\x00\x08\x2c\x4b\x20\xb0\x03\x26\x53\x58\xb0\ \x40\x1b\xb0\x00\x59\x8a\x8a\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\ \x80\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\ \x00\xc0\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\ \xb8\x01\x00\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\ \x21\xb8\x01\x40\x8a\x8a\x1b\x8a\x23\x59\x20\xb8\x00\x03\x26\x53\ \x58\xb0\x03\x25\x45\xb8\x01\x80\x50\x58\x23\x21\xb8\x01\x80\x23\ \x21\x1b\xb0\x03\x25\x45\x23\x21\x23\x21\x59\x1b\x21\x59\x44\x2d\ \xb8\x00\x09\x2c\x4b\x53\x58\x45\x44\x1b\x21\x21\x59\x2d\x00\xb0\ \x00\x2b\x00\xb2\x01\x01\x02\x2b\x01\xb2\x02\x01\x02\x2b\x01\xb7\ \x02\x40\x36\x2a\x21\x14\x00\x08\x2b\x00\xb7\x01\x4d\x40\x32\x24\ \x17\x00\x08\x2b\x00\xb2\x03\x07\x07\x2b\xb0\x00\x20\x45\x7d\x69\ \x18\x44\x4b\xb0\x60\x52\x58\xb0\x01\x1b\xb0\x00\x59\xb0\x01\x8e\ \x00\x00\x00\x00\x14\x00\x44\x00\x56\x00\x00\x00\x0c\xff\x33\x00\ \x0c\x01\xe6\x00\x0c\x02\x3e\x00\x0c\x02\x7e\x00\x0c\x02\x90\x00\ \x0c\x02\xc8\x00\x0c\x00\x00\x00\x00\x00\x4c\x00\x4c\x00\x4c\x00\ \x4c\x00\x90\x00\xf4\x01\x44\x01\x82\x01\xc0\x01\xf6\x02\x56\x02\ \x92\x02\xc8\x03\x04\x03\x54\x03\x7a\x03\xd0\x04\x20\x04\x74\x04\ \xbe\x05\x30\x05\x84\x05\xf2\x06\x1e\x06\x60\x06\x98\x06\xf8\x07\ \x54\x07\x92\x07\xc8\x08\x4e\x08\xca\x09\x1a\x09\x92\x09\xf0\x0a\ \x40\x0b\x0e\x0b\x66\x0b\xa4\x0b\xfa\x0c\x4a\x0c\x82\x0d\x06\x0d\ \x5e\x0d\xb2\x0e\x2c\x0e\xa4\x0e\xf0\x0f\x56\x0f\xa6\x0f\xfa\x10\ \x34\x10\xa6\x11\x04\x11\x62\x11\x98\x11\xa4\x11\xb0\x11\xbc\x11\ \xc8\x11\xd4\x11\xe0\x11\xec\x11\xf8\x12\x04\x12\x10\x12\x1c\x12\ \x28\x12\x34\x12\x40\x12\x4c\x12\x5a\x12\x66\x12\x72\x12\x7e\x12\ \x8a\x12\x98\x13\x08\x13\x62\x13\xd4\x13\xe0\x13\xec\x13\xf8\x14\ \x04\x14\x10\x14\x1c\x14\x28\x14\x34\x14\x3c\x14\x48\x14\x54\x14\ \x60\x14\x6c\x14\x78\x14\x84\x14\x90\x14\x9c\x14\xa8\x14\xb4\x14\ \xc0\x14\xcc\x14\xd8\x14\xe4\x14\xf0\x14\xfe\x15\x60\x15\x6c\x15\ \x78\x15\x84\x15\x90\x15\x9c\x15\xa8\x15\xb4\x15\xc0\x15\xcc\x15\ \xd8\x16\x40\x16\x4c\x16\x58\x16\x64\x16\x70\x16\x7c\x16\x88\x16\ \x94\x16\xa0\x16\xac\x16\xb8\x16\xc4\x17\x22\x17\x2e\x17\x3a\x17\ \x46\x17\x52\x17\x5e\x17\x6a\x17\x76\x17\x84\x17\x90\x17\xce\x17\ \xda\x17\xe6\x17\xf2\x17\xfe\x18\x0a\x18\x16\x18\x22\x18\x2e\x18\ \x3a\x18\x46\x18\x52\x18\x5e\x18\x6a\x18\x76\x18\x82\x18\x8e\x18\ \x9a\x18\xa6\x18\xb2\x18\xbe\x18\xca\x18\xd6\x18\xe2\x18\xf0\x19\ \x78\x19\xca\x1a\x3a\x1a\x46\x1a\x52\x1a\x5e\x1a\x6a\x1a\x76\x1a\ \xec\x1a\xf8\x1b\x04\x1b\x10\x1b\x1c\x1b\x2a\x1b\x36\x1b\x42\x1b\ \x4e\x1b\x5a\x1b\x66\x1b\x72\x1b\x7e\x1b\x8a\x1b\xfe\x1c\x0a\x1c\ \x16\x1c\x22\x1c\x2e\x1c\x3a\x1c\x46\x1c\x52\x1c\x5e\x1c\x6a\x1c\ \x76\x1c\x82\x1c\x8e\x1c\x9a\x1c\xa6\x1c\xb2\x1c\xbe\x1c\xca\x1c\ \xd6\x1c\xe2\x1c\xee\x1c\xfa\x1d\x62\x1d\xc4\x1d\xd0\x1d\xdc\x1d\ \xe8\x1d\xf4\x1e\x00\x1e\x0c\x1e\x18\x1e\x24\x1e\x30\x1e\x3c\x1e\ \x48\x1e\x54\x1e\x60\x1e\x6c\x1e\x78\x1e\x84\x1e\x90\x1e\x9c\x1e\ \xa8\x1e\xb4\x1e\xc0\x1f\x10\x1f\x54\x1f\xae\x1f\xba\x1f\xc6\x1f\ \xd2\x1f\xde\x1f\xea\x1f\xf6\x20\x02\x20\x0e\x20\x1a\x20\x26\x20\ \x32\x20\x3e\x20\x4a\x20\x56\x20\x62\x20\x70\x20\x7c\x20\x88\x20\ \x94\x20\xa0\x20\xae\x21\x4e\x22\x06\x22\x96\x22\xa2\x22\xae\x22\ \xba\x22\xc6\x22\xd2\x22\xde\x22\xea\x22\xf6\x23\x8a\x23\x96\x23\ \xa2\x23\xae\x23\xba\x23\xc6\x23\xd2\x23\xde\x23\xea\x23\xf6\x24\ \x02\x24\x0e\x24\x1a\x24\x26\x24\x32\x24\x3e\x24\x4c\x24\xd4\x24\ \xe0\x24\xec\x24\xf8\x25\x04\x25\x10\x25\x1c\x25\x28\x25\x34\x25\ \x40\x25\x4c\x25\xbe\x25\xca\x25\xd6\x25\xe2\x25\xee\x25\xfa\x26\ \x06\x26\x12\x26\x1e\x26\x2a\x26\x36\x26\xa4\x26\xfc\x27\x24\x27\ \x30\x27\x3c\x27\x8c\x27\x98\x27\xa4\x27\xb0\x27\xbc\x27\xc8\x27\ \xd8\x27\xe4\x28\x36\x28\x42\x28\x4e\x28\x5a\x28\x66\x28\x72\x28\ \x7e\x28\x8a\x28\x96\x29\x08\x29\x14\x29\x20\x29\x2c\x29\x38\x29\ \x44\x29\x50\x29\x5c\x29\x68\x29\x74\x29\x80\x29\x8c\x29\x98\x29\ \xa4\x29\xb0\x29\xbc\x29\xca\x2a\x52\x2a\xfa\x2b\x6a\x2b\x76\x2b\ \x82\x2b\x8e\x2b\x9a\x2b\xa6\x2c\x2a\x2c\x36\x2c\x42\x2c\x4e\x2c\ \x5a\x2c\x68\x2c\x74\x2c\x80\x2c\x8c\x2c\x98\x2c\xa4\x2c\xb0\x2c\ \xbc\x2c\xc8\x2d\x44\x2d\x50\x2d\x5c\x2d\x68\x2d\x74\x2d\x80\x2d\ \x8c\x2d\x98\x2d\xa4\x2d\xb0\x2d\xbc\x2d\xc8\x2d\xd4\x2d\xe0\x2d\ \xec\x2d\xf8\x2e\x04\x2e\x10\x2e\x1c\x2e\x28\x2e\x34\x2e\x40\x2e\ \x4c\x2e\xc8\x2f\x30\x2f\x3c\x2f\x48\x2f\x54\x2f\x60\x2f\x6c\x2f\ \x78\x2f\x84\x2f\x90\x2f\x9c\x2f\xa8\x2f\xb4\x2f\xc0\x2f\xcc\x2f\ \xd8\x2f\xe4\x2f\xf0\x2f\xfc\x30\x08\x30\x14\x30\x20\x30\x2c\x30\ \xb8\x31\x32\x31\x72\x31\xf4\x32\x6a\x32\xe4\x33\x32\x33\x90\x33\ \xe8\x34\x74\x34\xca\x35\x4e\x35\x98\x35\xe0\x36\x1c\x36\x88\x36\ \xe4\x37\x30\x37\xaa\x38\x24\x38\x2c\x38\x38\x38\x44\x38\x50\x38\ \x5c\x38\x68\x38\x74\x38\x80\x38\x8c\x38\x98\x38\xa4\x38\xb0\x38\ \xbc\x38\xc8\x38\xd4\x38\xe0\x38\xee\x38\xfa\x39\x06\x39\x12\x39\ \x1e\x39\x2c\x39\xcc\x39\xd4\x39\xe0\x39\xec\x39\xf8\x3a\x04\x3a\ \x10\x3a\x1c\x3a\x28\x3a\xda\x3b\x3c\x3b\x74\x3b\xc6\x3c\x38\x3c\ \x8a\x3c\xf0\x3d\x64\x3d\x9a\x3e\x20\x3e\x94\x3e\xf6\x3f\x2e\x3f\ \x7c\x3f\xe2\x40\x26\x40\x84\x40\x8c\x40\xb8\x40\xc0\x41\x2a\x41\ \x4c\x41\x72\x41\x7e\x41\x8a\x41\xe2\x42\x1a\x42\x48\x42\x9a\x42\ \xea\x43\x00\x43\x0c\x43\x32\x43\x56\x43\x62\x43\x6e\x43\x78\x43\ \x86\x43\x9e\x43\xb6\x43\xc2\x43\xce\x43\xd6\x43\xde\x43\xf2\x44\ \x06\x44\x1a\x44\x22\x44\x2c\x44\x52\x44\x66\x44\x88\x44\xa8\x44\ \xc6\x44\xe4\x45\x46\x45\xa8\x45\xc2\x45\xd6\x45\xf0\x46\x0e\x46\ \x44\x46\x74\x46\xc6\x47\x52\x47\x84\x48\x0c\x48\x8e\x49\x06\x49\ \x5a\x49\xe2\x4a\x58\x4a\xe0\x4b\x56\x4b\x7e\x4b\x92\x4b\x9a\x4c\ \x0a\x4c\x14\x4c\x1e\x4c\x28\x4c\x32\x4c\x3c\x4c\x46\x4c\x50\x4c\ \x5a\x4c\x64\x4c\x6e\x4c\x78\x4c\x82\x4c\x8c\x4c\x96\x4c\xa0\x4c\ \xaa\x4c\xb4\x4c\xbe\x4c\xc8\x4c\xd2\x4c\xdc\x4c\xe6\x4c\xf0\x4c\ \xfa\x4d\x04\x4d\x0e\x4d\x18\x4d\x22\x4d\x5c\x4d\x7e\x4d\xbc\x4e\ \x10\x4e\x4a\x4e\x9a\x4e\xf8\x4f\x26\x4f\x96\x4f\xf0\x50\x10\x50\ \x32\x50\x56\x50\x8a\x50\x94\x50\x9e\x50\xa8\x50\xb2\x50\xbc\x50\ \xc6\x50\xd0\x50\xda\x50\xe4\x50\xee\x50\xf8\x51\x02\x51\x0c\x51\ \x16\x51\x1e\x51\x26\x51\x2e\x51\x82\x51\xde\x52\x18\x52\x74\x52\ \xb8\x52\xfa\x53\x96\x53\xd4\x54\x08\x54\x52\x54\x94\x54\xc8\x55\ \x20\x55\x5e\x55\x9a\x55\xf4\x56\x50\x56\x8a\x56\xe2\x57\x2c\x57\ \x6e\x57\xa4\x58\x08\x58\x5a\x58\xaa\x58\xd8\x59\x2e\x59\x84\x59\ \xc6\x5a\x22\x5a\x92\x5a\xce\x5b\x28\x5b\x92\x5b\xfa\x5c\x5c\x5c\ \xda\x5d\x44\x5d\xa2\x5e\x54\x5e\xe2\x5f\x8c\x5f\xf2\x60\x64\x60\ \xf6\x61\x6e\x61\xe8\x62\x50\x62\xb6\x62\xd2\x62\xda\x62\xe2\x62\ \xf2\x63\x9c\x63\xac\x63\xbc\x63\xcc\x63\xdc\x63\xec\x63\xfc\x64\ \x0c\x64\x1c\x64\x2c\x64\x50\x64\x64\x64\x92\x64\xd2\x64\xdc\x64\ \xe8\x65\x1a\x65\x4c\x65\x90\x65\xd4\x66\x12\x66\x3c\x66\x80\x66\ \xbe\x66\xca\x66\xe0\x67\x3e\x67\xc0\x68\x36\x68\xaa\x68\xee\x69\ \x14\x69\x52\x69\xc6\x6a\x08\x6a\x2c\x6a\xa0\x6b\x0a\x6b\x28\x6b\ \x4c\x6b\x6c\x6b\x90\x6b\xa2\x6b\xb6\x6c\x14\x6c\x34\x6c\x4c\x6c\ \x6c\x6c\x84\x6c\xb2\x6c\xc8\x6c\xec\x6d\x04\x6d\x36\x6d\x62\x6d\ \xc6\x6d\xea\x6e\x32\x6e\x6e\x6e\x82\x6e\x8e\x6e\x96\x6e\x9e\x6e\ \xc4\x6e\xea\x6e\xf2\x6e\xfa\x6f\x02\x6f\x0a\x6f\x24\x6f\x2c\x6f\ \x34\x6f\x3c\x6f\x50\x6f\x58\x6f\x60\x6f\x68\x6f\x70\x6f\x78\x6f\ \x80\x6f\x88\x6f\x90\x6f\x98\x6f\xaa\x6f\xbc\x6f\xd0\x6f\xe4\x70\ \x04\x70\x24\x70\x5c\x70\x98\x70\xac\x70\xc0\x70\xee\x71\x1a\x71\ \x38\x71\x56\x71\x8a\x71\xbe\x71\xe8\x72\x12\x72\x44\x72\x76\x72\ \x98\x72\xba\x72\xd8\x72\xf8\x73\x1a\x73\x3c\x73\x64\x73\x8a\x73\ \xb2\x73\xd0\x74\x04\x74\x30\x74\x5e\x74\x8c\x74\xbc\x74\xf0\x75\ \x16\x75\x2a\x75\x6a\x75\xaa\x75\xe8\x76\x28\x76\x6e\x76\xb4\x76\ \xf4\x77\x34\x77\x5a\x77\x80\x77\xa6\x77\xcc\x78\x08\x78\x42\x78\ \x8e\x78\xdc\x79\x0e\x79\x40\x79\x72\x79\xa4\x79\xec\x7a\x34\x7a\ \x8c\x7a\xe8\x7b\x24\x7b\x5c\x7b\x72\x7b\xa0\x7b\xa0\x7b\xa0\x7b\ \xa0\x7b\xa0\x7b\xb4\x7b\xc8\x7b\xdc\x7b\xee\x7c\x1c\x7c\x4a\x7c\ \x70\x7c\x94\x7c\xd0\x7d\x0a\x7d\x38\x7d\x66\x7d\x7e\x7d\x94\x7d\ \xaa\x7d\xc0\x7d\xd8\x7d\xee\x7e\x06\x7e\x1c\x7e\x34\x7e\x4a\x7e\ \x60\x7e\x76\x7e\x8e\x7e\xa4\x7e\xbc\x7e\xd2\x7e\xec\x7f\x04\x7f\ \x24\x7f\x44\x7f\x5e\x7f\x7c\x7f\x9a\x7f\xb2\x7f\xcc\x7f\xe4\x80\ \x04\x80\x24\x80\x3e\x80\x5e\x80\x7e\x80\x96\x80\xb4\x80\xd4\x80\ \xf4\x81\x10\x81\x2e\x81\x4e\x81\x6e\x81\x8a\x81\xa8\x81\xc8\x81\ \xe8\x82\x04\x82\x22\x82\x42\x82\x62\x82\x7e\x82\xa6\x82\xca\x82\ \xee\x83\x14\x83\x3c\x83\x64\x83\x8c\x83\xb6\x83\xe0\x84\x0a\x84\ \x34\x84\x5a\x84\x80\x84\xa4\x84\xc8\x84\xee\x85\x10\x85\x30\x85\ \x48\x85\x64\x85\x84\x85\xa6\x85\xc8\x85\xec\x86\x10\x86\x32\x86\ \x52\x86\x76\x86\x98\x86\xb8\x86\xdc\x86\xfe\x87\x1e\x87\x42\x87\ \x66\x87\x86\x87\xb0\x87\xd4\x87\xf4\x88\x20\x88\x48\x88\x6e\x88\ \xa2\x88\xca\x88\xf0\x89\x24\x89\x62\x89\x9a\x89\xe0\x8a\x02\x8a\ \x24\x8a\x46\x8a\x68\x8a\x7e\x8a\x94\x8a\xd0\x8a\xe4\x8a\xf8\x8b\ \x0c\x8b\x20\x8b\x34\x8b\x46\x8b\x5a\x8b\x6c\x8b\x86\x8b\x9e\x8b\ \xb8\x8b\xd0\x8b\xe4\x8b\xf6\x8c\x08\x8c\x1a\x8c\x2e\x8c\x42\x8c\ \x56\x8c\x6a\x8c\x7e\x8c\x92\x8c\xa6\x8c\xba\x8c\xce\x8c\xe0\x8c\ \xf2\x8d\x04\x8d\x18\x8d\x52\x8d\xcc\x8e\xc8\x8e\xdc\x8e\xf0\x8f\ \x04\x8f\x18\x8f\x2c\x8f\x42\x8f\x5e\x8f\x74\x8f\x8a\x8f\x9e\x8f\ \xba\x8f\xd0\x00\x05\x00\x3e\x00\x00\x02\x1a\x02\x94\x00\x03\x00\ \x06\x00\x09\x00\x0f\x00\x15\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x0a\x00\ \x01\xf4\xb8\x00\x0c\xdc\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \xb8\x00\x10\xdc\x30\x31\x13\x21\x11\x21\x13\x27\x11\x21\x11\x07\ \x13\x2f\x01\x23\x0f\x01\x13\x3f\x01\x23\x1f\x01\x3e\x01\xdc\xfe\ \x24\xc1\x80\x01\x59\x7f\x52\x49\x34\x04\x36\x4a\x84\x31\x42\xeb\ \x42\x32\x02\x94\xfd\x6c\x01\x54\xe8\xfe\x32\x01\xce\xe8\xfe\xe6\ \x84\x67\x67\x84\x01\x49\x5e\x77\x77\x5e\x00\x00\x02\x00\x20\x00\ \x00\x02\x38\x02\x90\x00\x09\x00\x11\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xbb\x00\ \x0a\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x11\xd0\x30\x31\x01\x27\x2e\x01\ \x27\x23\x0e\x01\x0f\x01\x17\x23\x07\x23\x13\x33\x13\x23\x01\x8d\ \x1f\x11\x20\x10\x04\x10\x20\x11\x1f\xd9\xee\x3f\x55\xdd\x5e\xdd\ \x58\x01\x0b\x64\x37\x6d\x39\x39\x6d\x37\x64\x43\xc8\x02\x90\xfd\ \x70\x00\x00\x00\x03\x00\x67\x00\x00\x02\x21\x02\x90\x00\x13\x00\ \x1c\x00\x25\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\ \x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x24\x00\x13\x00\x00\x11\ \x12\x39\xb8\x00\x24\x2f\xb9\x00\x1c\x00\x01\xf4\xba\x00\x0a\x00\ \x24\x00\x1c\x11\x12\x39\xb8\x00\x00\x10\xb9\x00\x1b\x00\x01\xf4\ \xb8\x00\x13\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\ \x02\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x0e\x02\x2b\x01\x13\x32\ \x36\x35\x34\x26\x2b\x01\x15\x13\x32\x36\x35\x34\x26\x2b\x01\x15\ \x67\xb4\x32\x53\x3b\x21\x39\x3a\x48\x50\x24\x41\x5b\x37\xc3\xa6\ \x54\x49\x4d\x4c\x56\x63\x55\x5c\x5a\x57\x63\x02\x90\x12\x26\x3d\ \x2b\x31\x4f\x0f\x04\x0b\x4e\x44\x30\x48\x30\x18\x01\x78\x3a\x37\ \x36\x2f\xd6\xfe\xca\x3f\x43\x3d\x39\xf8\x00\x00\x01\x00\x42\xff\ \xf4\x02\x2a\x02\x9c\x00\x21\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\ \x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x0e\ \x02\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\ \x42\x2b\x4e\x6c\x40\x3c\x5a\x1d\x2f\x1a\x40\x2a\x2f\x4d\x36\x1d\ \x1d\x36\x4d\x2f\x2d\x46\x20\x30\x27\x62\x3f\x3e\x69\x4d\x2c\x01\ \x48\x4f\x7e\x58\x2f\x30\x20\x35\x1b\x21\x25\x45\x62\x3d\x3e\x63\ \x46\x26\x26\x23\x33\x2d\x32\x2e\x57\x7f\x00\x00\x02\x00\x55\x00\ \x00\x02\x25\x02\x90\x00\x0a\x00\x13\x00\x39\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\ \x00\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x13\x00\ \x01\xf4\x30\x31\x13\x33\x32\x16\x15\x14\x0e\x02\x2b\x01\x37\x32\ \x36\x35\x34\x26\x2b\x01\x11\x55\xa0\x95\x9b\x27\x4c\x70\x49\xa4\ \x9b\x70\x6f\x6f\x70\x48\x02\x90\xa8\x9d\x4e\x7b\x55\x2d\x44\x8a\ \x7d\x7d\x84\xfd\xf8\x00\x00\x00\x01\x00\x73\x00\x00\x02\x12\x02\ \x90\x00\x0b\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x07\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x0b\x10\xb9\x00\x08\x00\x01\xf4\ \x30\x31\x13\x21\x15\x21\x15\x21\x15\x21\x15\x21\x15\x21\x73\x01\ \x95\xfe\xbf\x01\x0f\xfe\xf1\x01\x4b\xfe\x61\x02\x90\x46\xce\x47\ \xee\x47\x00\x00\x01\x00\x87\x00\x00\x02\x18\x02\x90\x00\x09\x00\ \x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\ \x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\ \x07\x00\x09\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\ \x01\xf4\x30\x31\x13\x21\x15\x21\x15\x21\x15\x21\x11\x23\x87\x01\ \x91\xfe\xc2\x01\x0d\xfe\xf3\x53\x02\x90\x46\xde\x46\xfe\xda\x00\ \x01\x00\x35\xff\xf4\x02\x15\x02\x9c\x00\x27\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x03\x3e\x59\ \xb8\x00\x05\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x23\x10\xb9\x00\ \x18\x00\x01\xf4\xba\x00\x1d\x00\x23\x00\x05\x11\x12\x39\xb8\x00\ \x1d\x2f\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\ \x36\x37\x35\x23\x35\x33\x11\x0e\x01\x23\x22\x2e\x02\x35\x2b\x4d\ \x6b\x40\x21\x36\x2d\x23\x0e\x2f\x18\x3e\x30\x2e\x4b\x36\x1d\x1b\ \x33\x4c\x30\x23\x3c\x13\x83\xd0\x20\x64\x40\x3e\x68\x4c\x2a\x01\ \x48\x4f\x7f\x57\x2f\x0e\x17\x1c\x0f\x35\x1a\x22\x25\x45\x62\x3d\ \x3e\x63\x46\x26\x15\x12\xab\x45\xfe\xec\x20\x2c\x2e\x57\x7f\x00\ \x01\x00\x4f\x00\x00\x02\x09\x02\x90\x00\x0b\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\ \xba\x00\x09\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x09\x2f\xb9\x00\ \x02\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x0b\x10\ \xb8\x00\x07\xd0\x30\x31\x13\x33\x11\x21\x11\x33\x11\x23\x11\x21\ \x11\x23\x4f\x54\x01\x12\x54\x54\xfe\xee\x54\x02\x90\xfe\xed\x01\ \x13\xfd\x70\x01\x35\xfe\xcb\x00\x01\x00\x5f\x00\x00\x01\xf9\x02\ \x90\x00\x0b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x00\x10\ \xb8\x00\x09\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\x23\x11\x33\ \x15\x21\x5f\xa3\xa3\x01\x9a\xa3\xa3\xfe\x66\x47\x02\x03\x46\x46\ \xfd\xfd\x47\x00\x01\x00\x51\xff\xf4\x01\xed\x02\x91\x00\x13\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\ \x07\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x11\x21\x35\ \x21\x11\x14\x0e\x02\x23\x22\x26\x27\x87\x1d\x48\x26\x47\x41\xfe\ \xed\x01\x66\x16\x33\x53\x3d\x38\x69\x22\x93\x2c\x2a\x4b\x51\x01\ \x72\x46\xfe\x41\x2e\x51\x3c\x23\x34\x39\x00\x00\x01\x00\x62\x00\ \x00\x02\x43\x02\x90\x00\x0c\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\ \x03\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x33\x01\x33\x07\x13\x23\x03\x07\x15\ \x23\x62\x54\x03\x01\x14\x5e\xcf\xe7\x5d\xbe\x72\x54\x02\x90\xfe\ \xb7\x01\x49\xfa\xfe\x6a\x01\x55\x85\xd0\x00\x00\x01\x00\x86\x00\ \x00\x02\x1d\x02\x90\x00\x05\x00\x2b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x02\x00\ \x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x86\x52\x01\x45\xfe\x69\ \x02\x90\xfd\xb7\x47\x00\x00\x00\x01\x00\x51\x00\x00\x02\x07\x02\ \x90\x00\x1d\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x12\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xd0\xb8\x00\x1d\x10\xb8\x00\ \x09\xd0\xb8\x00\x00\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x10\xd0\ \x30\x31\x13\x33\x13\x17\x33\x37\x13\x33\x11\x23\x11\x34\x3e\x02\ \x37\x23\x0f\x01\x23\x2f\x01\x23\x1e\x03\x15\x11\x23\x51\x5c\x5d\ \x21\x04\x20\x5c\x5c\x47\x02\x03\x03\x02\x03\x2b\x5a\x2d\x5a\x2c\ \x03\x01\x04\x04\x02\x46\x02\x90\xfe\xe9\x6a\x6a\x01\x17\xfd\x70\ \x01\x71\x14\x36\x37\x35\x14\x8c\xfd\xfd\x8c\x14\x35\x37\x36\x14\ \xfe\x8f\x00\x00\x01\x00\x53\x00\x00\x02\x05\x02\x90\x00\x13\x00\ \x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xba\x00\x02\x00\x01\x00\x0b\x11\x12\x39\xb9\x00\ \x04\x00\x01\xf4\xb8\x00\x01\x10\xb8\x00\x08\xd0\xba\x00\x0c\x00\ \x0b\x00\x01\x11\x12\x39\xb8\x00\x01\x10\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x0b\x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x13\x17\x33\x2e\ \x01\x35\x11\x33\x11\x23\x03\x27\x23\x1e\x01\x15\x11\x23\x53\x55\ \xd5\x42\x02\x02\x09\x4f\x55\xd5\x42\x02\x02\x09\x4f\x02\x90\xfe\ \x62\x86\x31\x6b\x34\x01\x54\xfd\x70\x01\x9e\x86\x33\x67\x33\xfe\ \xa9\x00\x00\x00\x02\x00\x30\xff\xf4\x02\x28\x02\x9c\x00\x13\x00\ \x27\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\ \x00\x00\x00\x03\x3e\x59\xb9\x00\x14\x00\x01\xf4\xb8\x00\x0a\x10\ \xb9\x00\x1e\x00\x01\xf4\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x27\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x2c\x38\x5c\x43\x25\x25\x43\ \x5c\x38\x37\x5d\x43\x25\x25\x43\x5d\x37\x25\x3e\x2b\x18\x18\x2b\ \x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\x0c\x30\x59\x7f\x4f\x4f\x7d\ \x57\x2e\x2f\x57\x7d\x4e\x4f\x7f\x59\x30\x49\x26\x47\x63\x3e\x3d\ \x62\x44\x25\x25\x44\x62\x3d\x3e\x63\x47\x26\x00\x02\x00\x66\x00\ \x00\x02\x21\x02\x90\x00\x0e\x00\x17\x00\x47\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\ \x0c\x00\x0e\x00\x00\x11\x12\x39\xb8\x00\x0c\x2f\xb8\x00\x00\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x17\x00\x01\xf4\ \x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x11\x23\x13\ \x32\x36\x35\x34\x26\x2b\x01\x11\x66\xc9\x36\x5a\x3f\x23\x23\x40\ \x59\x36\x76\x53\xbe\x57\x53\x55\x55\x6b\x02\x90\x14\x2d\x4a\x36\ \x34\x4c\x32\x19\xfe\xfc\x01\x48\x41\x46\x47\x37\xfe\xfb\x00\x00\ \x02\x00\x31\xff\x5d\x02\x29\x02\x9d\x00\x13\x00\x34\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\ \x3e\x59\xbb\x00\x31\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1a\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x24\x10\xb9\x00\x0f\x00\x01\xf4\ \xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x13\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x01\x0e\x01\x23\x22\x26\ \x27\x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\ \x1e\x01\x33\x32\x36\x37\x86\x17\x2b\x3d\x26\x25\x3d\x2b\x17\x17\ \x2b\x3d\x25\x26\x3d\x2b\x17\x01\xa3\x10\x24\x16\x57\x6d\x19\x2f\ \x4d\x37\x1e\x24\x42\x5c\x38\x37\x5c\x42\x24\x1d\x34\x4b\x2d\x11\ \x4a\x33\x0f\x19\x09\x01\x4b\x3d\x64\x47\x27\x27\x47\x64\x3d\x3d\ \x63\x45\x25\x25\x45\x63\xfd\xe3\x06\x08\x58\x43\x08\x37\x57\x76\ \x47\x4f\x7d\x57\x2f\x2f\x57\x7e\x4e\x46\x74\x57\x38\x09\x2a\x2b\ \x06\x04\x00\x00\x02\x00\x64\x00\x00\x02\x29\x02\x90\x00\x08\x00\ \x18\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xba\x00\x0b\x00\x0d\x00\x0e\x11\x12\x39\ \xb8\x00\x0b\x2f\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\ \x08\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x09\xd0\xb8\x00\x0b\x10\ \xb8\x00\x17\xd0\x30\x31\x13\x33\x32\x36\x35\x34\x26\x2b\x01\x01\ \x03\x23\x11\x23\x11\x33\x32\x1e\x02\x15\x14\x06\x07\x13\xb7\x6d\ \x4d\x51\x51\x4d\x6d\x01\x13\x9e\x75\x53\xcc\x32\x54\x3d\x22\x50\ \x43\xa7\x01\x59\x3f\x40\x41\x34\xfd\xb3\x01\x15\xfe\xeb\x02\x90\ \x13\x2c\x46\x33\x4d\x5c\x11\xfe\xe2\x00\x00\x00\x01\x00\x43\xff\ \xf4\x02\x19\x02\x9c\x00\x33\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x06\x00\x30\x00\x16\x11\x12\x39\xb8\x00\x16\x10\ \xb9\x00\x1d\x00\x01\xf4\xba\x00\x20\x00\x16\x00\x30\x11\x12\x39\ \x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x2e\x03\ \x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\ \x1e\x02\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x75\x25\ \x62\x36\x46\x4c\x12\x20\x2b\x19\x5e\x19\x32\x29\x1a\x20\x39\x4f\ \x2f\x3e\x68\x24\x2c\x20\x4d\x31\x3c\x46\x15\x21\x2a\x15\x5c\x1e\ \x35\x27\x17\x20\x3c\x56\x36\x48\x79\x2d\x8f\x25\x2d\x3b\x30\x19\ \x23\x19\x14\x0b\x29\x0a\x1c\x28\x37\x24\x25\x40\x2f\x1a\x2d\x24\ \x36\x1d\x21\x33\x2d\x18\x21\x19\x12\x09\x28\x0c\x1f\x29\x37\x24\ \x27\x44\x33\x1d\x34\x2d\x00\x00\x01\x00\x2a\x00\x00\x02\x2e\x02\ \x90\x00\x07\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x02\x10\xb9\x00\x01\x00\ \x01\xf4\xb8\x00\x05\xd0\x30\x31\x01\x23\x35\x21\x15\x23\x11\x23\ \x01\x02\xd8\x02\x04\xd8\x54\x02\x4a\x46\x46\xfd\xb6\x00\x00\x00\ \x01\x00\x4f\xff\xf4\x02\x09\x02\x90\x00\x19\x00\x33\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x0d\xd0\x30\x31\ \x13\x33\x11\x14\x1e\x02\x33\x32\x3e\x02\x35\x11\x33\x11\x14\x0e\ \x02\x23\x22\x2e\x02\x35\x4f\x54\x15\x25\x32\x1e\x1e\x32\x26\x15\ \x51\x21\x3a\x51\x30\x30\x52\x3b\x21\x02\x90\xfe\x66\x33\x47\x2b\ \x14\x14\x2b\x47\x33\x01\x9a\xfe\x68\x47\x62\x3f\x1c\x1c\x3f\x62\ \x47\x00\x00\x00\x01\x00\x2b\x00\x00\x02\x2d\x02\x90\x00\x0f\x00\ \x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\ \x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x0c\xd0\x30\x31\x13\x33\x13\x1e\x01\x17\x33\x3e\x03\x37\x13\x33\ \x03\x23\x2b\x58\x6a\x11\x1c\x12\x04\x09\x10\x0f\x0f\x08\x69\x55\ \xd0\x61\x02\x90\xfe\x9e\x3b\x64\x3a\x1d\x35\x34\x36\x1d\x01\x62\ \xfd\x70\x00\x00\x01\x00\x0a\x00\x00\x02\x4e\x02\x91\x00\x21\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x03\x3e\x59\xbb\x00\x1c\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x20\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x01\x10\ \xb8\x00\x14\xd0\xb8\x00\x20\x10\xb8\x00\x17\xd0\x30\x31\x13\x33\ \x13\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x03\x2e\x01\x27\x23\x0e\x01\x07\x03\x23\ \x0a\x53\x35\x02\x09\x03\x03\x0b\x15\x0a\x45\x3b\x45\x09\x15\x0b\ \x04\x03\x08\x03\x32\x4f\x61\x5c\x4b\x07\x0c\x05\x03\x06\x0c\x08\ \x48\x5a\x02\x91\xfe\x64\x2a\x4f\x29\x29\x50\x29\xf2\xf2\x28\x51\ \x29\x29\x50\x29\x01\x9c\xfd\x6f\x01\x13\x1d\x3c\x1d\x1d\x3c\x1d\ \xfe\xed\x00\x00\x01\x00\x36\x00\x00\x02\x22\x02\x90\x00\x19\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\ \x00\x03\x3e\x59\xba\x00\x00\x00\x18\x00\x02\x11\x12\x39\xba\x00\ \x06\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x0b\xd0\ \xba\x00\x0d\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x18\x10\xb8\x00\ \x0f\xd0\xba\x00\x14\x00\x18\x00\x02\x11\x12\x39\x30\x31\x13\x03\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x13\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xfa\xb7\x5c\x5c\x0d\x18\x10\x04\ \x0e\x15\x0c\x5a\x58\xb7\xc4\x5c\x63\x0e\x1b\x11\x04\x0e\x1a\x0d\ \x62\x58\x01\x53\x01\x3d\xa8\x17\x2b\x1d\x1d\x2b\x17\xa8\xfe\xbf\ \xfe\xb1\xb1\x18\x33\x1e\x1e\x33\x18\xb1\x00\x00\x01\x00\x26\x00\ \x00\x02\x32\x02\x90\x00\x0f\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\x07\ \x00\x0e\x00\x01\x11\x12\x39\x30\x31\x25\x03\x33\x17\x1e\x01\x17\ \x33\x3e\x01\x3f\x01\x33\x03\x15\x23\x01\x02\xdc\x58\x63\x13\x24\ \x14\x04\x14\x26\x13\x5f\x56\xdc\x54\xea\x01\xa6\xc3\x26\x4b\x28\ \x28\x4c\x26\xc2\xfe\x5a\xea\x00\x01\x00\x41\x00\x00\x02\x1b\x02\ \x91\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x41\x01\x6f\xfe\ \xb1\x01\xb5\xfe\x90\x01\x75\xfe\x26\x32\x02\x19\x46\x32\xfd\xe8\ \x47\x00\x00\x00\x02\x00\x51\xff\xf4\x02\x03\x01\xf2\x00\x21\x00\ \x2f\x00\x80\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\ \x13\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\ \x00\x1d\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\ \xb9\x00\x17\x00\x03\x3e\x59\xba\x00\x05\x00\x13\x00\x17\x11\x12\ \x39\xb8\x00\x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\x00\x01\xf4\xb8\ \x00\x1d\x10\xb9\x00\x27\x00\x01\xf4\xba\x00\x0d\x00\x0a\x00\x27\ \x11\x12\x39\xba\x00\x19\x00\x17\x00\x13\x11\x12\x39\xb8\x00\x19\ \x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x2b\x00\x01\ \xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x03\x23\x22\x06\x07\x27\x3e\ \x03\x33\x32\x16\x15\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x1e\x02\x33\x32\x36\x37\x35\x0e\x03\x51\x27\x55\x86\x5e\x01\ \x0e\x1e\x31\x23\x30\x58\x22\x20\x12\x31\x37\x3e\x20\x64\x61\x43\ \x07\x03\x29\x63\x34\x22\x3c\x2d\x1a\x50\x12\x1d\x27\x15\x2a\x51\ \x2a\x4e\x69\x3f\x1a\x7e\x29\x3d\x2c\x1c\x08\x19\x2c\x21\x14\x25\ \x15\x38\x0c\x19\x14\x0d\x6d\x5b\xfe\xd6\x42\x20\x2e\x13\x23\x33\ \x27\x15\x1d\x13\x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\x00\x00\ \x02\x00\x5d\xff\xf4\x02\x1c\x02\xc8\x00\x16\x00\x27\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x10\x11\x12\x39\xba\x00\ \x14\x00\x10\x00\x06\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x10\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x06\x10\ \xb9\x00\x24\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x27\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x06\x07\x5d\x52\x02\x23\x57\x2b\x31\x4c\x33\x1a\ \x24\x3d\x50\x2b\x23\x51\x23\x03\x07\x42\x52\x23\x47\x1a\x20\x36\ \x28\x16\x10\x21\x34\x24\x20\x49\x26\x02\xc8\xc2\x5e\x22\x28\x23\ \x41\x5b\x38\x3e\x62\x44\x23\x23\x1f\x36\x72\x1f\x1a\x1b\x31\x48\ \x2d\x28\x42\x2f\x1a\x23\x26\x00\x01\x00\x50\xff\xf4\x02\x1b\x01\ \xf2\x00\x21\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\ \x02\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x50\x2b\x4a\x63\ \x37\x3c\x57\x1e\x29\x1e\x41\x26\x2a\x46\x31\x1c\x1b\x31\x45\x2a\ \x2d\x4b\x1f\x24\x28\x63\x36\x39\x61\x48\x28\xf2\x3d\x5f\x42\x22\ \x2a\x1d\x35\x1a\x1e\x1b\x32\x45\x2a\x2a\x44\x31\x1b\x23\x1a\x35\ \x24\x28\x22\x41\x5f\x00\x00\x00\x02\x00\x3c\xff\xf4\x01\xfb\x02\ \xc8\x00\x16\x00\x24\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0a\x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xba\x00\x08\x00\ \x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\ \x1c\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1d\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x16\x17\x27\x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x3c\x25\x3d\x50\ \x2b\x2d\x44\x22\x03\x52\x44\x07\x03\x1e\x53\x2d\x30\x4d\x38\x1e\ \x55\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\xf2\x3b\x5f\x42\ \x24\x22\x1d\x5a\xbb\xfd\x38\x40\x1f\x2d\x22\x41\x5e\x3e\x58\x62\ \x49\xf2\x1f\x1a\x1b\x31\x44\x00\x02\x00\x45\xff\xf4\x02\x19\x01\ \xf2\x00\x1e\x00\x27\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xbb\x00\x27\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x1a\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x06\x07\x21\x1e\x03\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x25\x34\x26\x23\x22\x0e\x02\x07\x45\x2a\x45\x59\ \x2f\x34\x52\x39\x1e\x01\x02\xfe\x84\x01\x1d\x31\x43\x28\x2b\x47\ \x22\x1d\x24\x5c\x3b\x36\x5f\x47\x29\x01\x88\x4c\x44\x1e\x37\x2c\ \x1e\x05\xf2\x3c\x5f\x42\x23\x21\x3c\x54\x33\x0d\x19\x09\x27\x3e\ \x2c\x18\x18\x15\x36\x17\x22\x23\x41\x5e\x64\x49\x4e\x14\x27\x38\ \x24\x00\x00\x00\x01\x00\x67\x00\x00\x02\x42\x02\xd4\x00\x16\x00\ \x56\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\ \x0c\x00\x03\x3e\x59\xb8\x00\x14\x10\xb9\x00\x03\x00\x01\xf4\xb8\ \x00\x10\x10\xb8\x00\x07\xd0\xb8\x00\x10\x10\xb9\x00\x0d\x00\x01\ \xf4\xb8\x00\x0a\xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x1d\x01\x33\ \x15\x23\x11\x23\x11\x23\x35\x37\x35\x34\x36\x33\x32\x17\x02\x2f\ \x1e\x33\x20\x42\x39\xcc\xcc\x51\x8b\x8b\x5f\x65\x48\x44\x02\x7a\ \x0e\x09\x43\x3c\x2c\x43\xfe\x5d\x01\xa3\x3e\x05\x29\x59\x6c\x1c\ \x00\x00\x00\x00\x03\x00\x48\xff\x20\x02\x36\x01\xf2\x00\x11\x00\ \x45\x00\x55\x00\xb2\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\ \xb9\x00\x25\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x28\x2f\ \x1b\xb9\x00\x28\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\ \x2f\x1b\xb9\x00\x27\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x43\x2f\x1b\xb9\x00\x43\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x43\x10\xb9\ \x00\x03\x00\x01\xf4\xb8\x00\x0c\x10\xb8\x00\x0f\xd0\xb8\x00\x15\ \xd0\xb8\x00\x0c\x10\xb9\x00\x3a\x00\x01\xf4\xb8\x00\x32\xdc\xb9\ \x00\x46\x00\x01\xf4\xba\x00\x35\x00\x46\x00\x32\x11\x12\x39\xb8\ \x00\x35\x10\xb8\x00\x1c\xd0\xb8\x00\x28\x10\xb9\x00\x29\x00\x01\ \xf4\xb8\x00\x27\x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x25\x10\xb9\ \x00\x4e\x00\x01\xf4\x30\x31\x17\x14\x16\x33\x32\x3e\x02\x35\x34\ \x26\x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x36\x37\x35\x2e\x01\x35\ \x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\ \x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x06\x15\x14\x16\x3b\x01\ \x32\x16\x15\x14\x0e\x02\x23\x22\x26\x13\x32\x36\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x15\x14\x16\x8f\x51\x4e\x2a\x44\x30\x19\x37\x38\ \x5f\x15\x25\x10\x23\x1b\x47\x29\x27\x14\x1e\x1e\x1c\x19\x23\x1f\ \x34\x45\x27\x28\x20\xc9\x82\x11\x1c\x1d\x33\x45\x27\x13\x2b\x14\ \x26\x35\x30\x6d\x5e\x5b\x26\x46\x64\x3e\x6b\x75\xdb\x2f\x41\x12\ \x1e\x29\x17\x17\x29\x1e\x12\x42\x51\x26\x30\x11\x1c\x24\x13\x23\ \x18\x03\x05\x13\x29\x1d\x1d\x38\x17\x04\x0b\x26\x1f\x17\x31\x13\ \x04\x13\x3f\x2c\x28\x40\x2d\x19\x0c\x3f\x12\x34\x20\x27\x3e\x2b\ \x17\x09\x09\x18\x20\x1d\x1b\x34\x3e\x22\x3e\x2e\x1c\x46\x01\x6b\ \x3e\x35\x19\x2a\x1e\x11\x11\x1e\x2a\x19\x35\x3e\x00\x00\x00\x00\ \x01\x00\x5d\x00\x00\x02\x0b\x02\xc8\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\ \x3e\x59\xba\x00\x03\x00\x06\x00\x0b\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x0e\x02\x07\x11\x23\x5d\x52\x04\x27\x58\x39\x57\x51\ \x52\x34\x3c\x16\x25\x24\x26\x15\x52\x02\xc8\xc2\x73\x29\x36\x63\ \x61\xfe\xd2\x01\x23\x45\x43\x0b\x16\x21\x16\xfe\xad\x00\x00\x00\ \x02\x00\x5a\x00\x00\x01\x9e\x02\xc9\x00\x05\x00\x11\x00\x3b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\ \x3e\x59\xb8\x00\x00\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x21\x11\x23\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x5a\x01\x34\x52\ \xe2\x01\x02\x1d\x25\x25\x1d\x1c\x26\x26\x01\xe6\xfe\x1a\x01\xa3\ \xa7\x22\x1d\x1d\x23\x23\x1d\x1d\x22\x00\x00\x00\x02\x00\x37\xff\ \x27\x01\x9e\x02\xc9\x00\x15\x00\x21\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x16\xdc\xb8\x00\x1c\xdc\x30\x31\x13\x21\x11\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x5a\x01\x34\x14\ \x2f\x4e\x3b\x26\x48\x1d\x1b\x1a\x39\x1c\x24\x30\x1c\x0b\xe2\x01\ \x02\x1d\x25\x25\x1d\x1c\x26\x26\x01\xe6\xfe\x0e\x2d\x4b\x37\x1e\ \x13\x0e\x3d\x0d\x0e\x12\x22\x31\x1f\x01\xb5\xa7\x22\x1d\x1d\x23\ \x23\x1d\x1d\x22\x00\x00\x00\x00\x01\x00\x6a\x00\x00\x02\x3e\x02\ \xc8\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\ \x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\x02\x00\x00\x00\ \x0c\x11\x12\x39\xba\x00\x09\x00\x00\x00\x08\x11\x12\x39\xb8\x00\ \x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\x0a\x00\x01\xf4\ \x30\x31\x13\x33\x11\x33\x01\x33\x07\x13\x23\x27\x07\x15\x23\x6a\ \x52\x04\x01\x06\x5e\xc2\xdc\x5c\xb3\x73\x52\x02\xc8\xfe\x1e\x01\ \x00\xc1\xfe\xdb\xf3\x6f\x84\x00\x01\x00\x51\xff\xf4\x02\x19\x02\ \xc8\x00\x10\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\ \x32\x37\x17\x0e\x01\x23\x22\x26\x35\x11\x23\x51\xf8\x33\x2c\x28\ \x34\x15\x21\x3a\x28\x4e\x51\xa6\x02\xc8\xfd\xd5\x36\x2f\x17\x3e\ \x0c\x11\x58\x57\x01\xe2\x00\x00\x01\x00\x3c\x00\x00\x02\x2c\x01\ \xf2\x00\x20\x00\xa3\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xba\x00\x02\x00\ \x20\x00\x00\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x08\xd0\xb8\x00\ \x0b\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x02\x10\ \xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\ \x17\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\x23\x22\x06\x07\x11\ \x23\x11\x34\x23\x22\x06\x07\x11\x23\x3c\x40\x07\x03\x12\x31\x2a\ \x4a\x12\x16\x34\x29\x33\x37\x4f\x35\x1a\x26\x13\x42\x37\x1a\x24\ \x13\x4f\x01\xe6\x40\x22\x2a\x54\x26\x2e\x4d\x49\xfe\xa4\x01\x55\ \x56\x25\x26\xfe\xa0\x01\x55\x56\x25\x26\xfe\xa0\x00\x00\x00\x00\ \x01\x00\x5d\x00\x00\x02\x0b\x01\xf2\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\ \x3e\x59\xba\x00\x02\x00\x06\x00\x16\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x0e\x02\x07\x11\x23\x5d\x44\x07\x04\x26\x58\x39\x57\ \x51\x52\x34\x3c\x16\x25\x24\x26\x15\x52\x01\xe6\x53\x29\x36\x63\ \x61\xfe\xd2\x01\x23\x45\x43\x0b\x16\x21\x16\xfe\xad\x00\x00\x00\ \x02\x00\x3c\xff\xf4\x02\x1c\x01\xf2\x00\x13\x00\x27\x00\x35\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x3c\x27\x42\x57\x30\x30\x57\x42\x27\x27\x42\x57\ \x30\x30\x57\x42\x27\x55\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\ \x39\x23\x23\x39\x29\x16\xf2\x3d\x5f\x42\x22\x22\x42\x5f\x3d\x3c\ \x5f\x41\x22\x22\x41\x5f\x3c\x2a\x44\x31\x1b\x1b\x31\x44\x2a\x2a\ \x45\x32\x1b\x1b\x32\x45\x00\x00\x02\x00\x5d\xff\x33\x02\x1c\x01\ \xf2\x00\x16\x00\x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\ \x2f\x1b\xb9\x00\x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x03\x2f\x1b\xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x05\x3e\x59\xba\x00\x05\x00\ \x09\x00\x13\x11\x12\x39\xba\x00\x16\x00\x13\x00\x09\x11\x12\x39\ \xb8\x00\x16\x10\xb9\x00\x17\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\ \x1a\x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x22\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x17\x15\x23\x11\x33\x17\ \x33\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\x22\x06\x07\xaf\x52\x44\ \x07\x03\x22\x59\x2d\x31\x4b\x33\x1a\x24\x3d\x50\x2c\x22\x4f\x21\ \x02\x23\x46\x19\x42\x54\x10\x21\x34\x24\x20\x49\x26\x29\xa4\x02\ \xb3\x3e\x20\x2a\x23\x41\x5b\x39\x3e\x61\x44\x23\x21\x1e\x3f\x1f\ \x1a\x66\x5b\x28\x42\x2f\x1a\x23\x26\x00\x00\x00\x02\x00\x3c\xff\ \x33\x01\xfb\x01\xf2\x00\x16\x00\x24\x00\x83\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\x3e\x59\ \xba\x00\x08\x00\x05\x00\x12\x11\x12\x39\xba\x00\x0f\x00\x12\x00\ \x05\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\ \x0f\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1d\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\ \x3c\x25\x3d\x50\x2b\x2d\x46\x23\x03\x07\x42\x52\x04\x20\x51\x2d\ \x30\x4d\x38\x1e\x55\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\ \xf2\x3b\x5f\x42\x24\x22\x20\x36\xfd\x4d\xb3\x58\x1f\x2b\x22\x41\ \x5e\x3e\x58\x62\x49\xf2\x1f\x1a\x1b\x31\x44\x00\x01\x00\x92\x00\ \x00\x02\x19\x01\xf2\x00\x12\x00\x54\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xba\x00\x02\ \x00\x11\x00\x00\x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0d\x00\x01\ \xf4\xb8\x00\x02\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\ \x33\x3e\x01\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x11\x23\ \x92\x44\x07\x03\x26\x6f\x44\x1b\x2e\x17\x13\x1a\x23\x1d\x37\x65\ \x2c\x52\x01\xe6\x73\x3b\x44\x09\x0b\x47\x09\x08\x3f\x4c\xfe\xe3\ \x00\x00\x00\x00\x01\x00\x48\xff\xf4\x02\x0e\x01\xf2\x00\x2d\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2a\x2f\x1b\xb9\x00\x2a\ \x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x2a\x00\ \x13\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xba\x00\ \x1f\x00\x13\x00\x2a\x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x27\x2e\x03\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x17\x1e\x01\x15\x14\x0e\x02\x23\ \x22\x26\x27\x70\x29\x5e\x42\x42\x40\x45\x59\x26\x43\x32\x1e\x1a\ \x33\x4d\x32\x37\x68\x24\x28\x20\x4e\x2d\x22\x2e\x1c\x0c\x52\x42\ \x63\x5f\x1c\x37\x51\x34\x48\x79\x2d\x76\x1e\x24\x2c\x20\x1c\x2c\ \x16\x09\x1a\x23\x2a\x1a\x1d\x33\x25\x15\x25\x19\x35\x17\x1c\x0b\ \x13\x1a\x0e\x1e\x27\x11\x19\x40\x38\x1e\x34\x28\x17\x2d\x1f\x00\ \x01\x00\x45\xff\xf4\x02\x22\x02\x6e\x00\x1b\x00\x4d\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\ \x03\x10\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x16\x10\xb9\x00\x0f\x00\x01\xf4\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\x35\xce\x89\x8c\x0b\x44\xef\xef\x0c\x1c\x30\x23\x23\ \x38\x1a\x12\x21\x50\x28\x35\x48\x2b\x13\x01\xa3\x3e\x05\x88\x88\ \x43\xe7\x21\x31\x22\x11\x0c\x0a\x3c\x0c\x11\x1d\x35\x4a\x2d\x00\ \x01\x00\x4d\xff\xf4\x01\xf9\x01\xe6\x00\x14\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\ \x3e\x59\xba\x00\x02\x00\x06\x00\x13\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x01\xf9\x43\x07\x04\x25\x57\x39\x58\ \x51\x53\x33\x3d\x2a\x44\x29\x52\x55\x2b\x36\x63\x61\x01\x2e\xfe\ \xdd\x45\x43\x2b\x2f\x01\x51\x00\x01\x00\x33\x00\x00\x02\x25\x01\ \xe6\x00\x0d\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\ \x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\x30\ \x31\x13\x33\x13\x1e\x01\x17\x33\x3e\x01\x37\x13\x33\x03\x23\x33\ \x53\x70\x0f\x1b\x0d\x04\x0d\x19\x0f\x70\x4f\xc9\x5c\x01\xe6\xfe\ \xec\x25\x47\x23\x23\x47\x25\x01\x14\xfe\x1a\x00\x01\x00\x08\x00\ \x00\x02\x50\x01\xe6\x00\x21\x00\x74\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xba\ \x00\x06\x00\x00\x00\x21\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x0f\ \xd0\xba\x00\x1c\x00\x00\x00\x17\x11\x12\x39\x30\x31\x13\x33\x13\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\x01\ \x37\x13\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x08\ \x54\x3b\x07\x0c\x05\x04\x07\x0e\x08\x3b\x46\x3c\x08\x0e\x08\x04\ \x07\x0b\x06\x3b\x4e\x6a\x63\x3a\x07\x0c\x08\x04\x06\x0c\x09\x38\ \x62\x01\xe6\xfe\xe7\x23\x42\x22\x22\x43\x22\xfc\xfc\x23\x42\x22\ \x22\x42\x23\x01\x19\xfe\x1a\xf6\x23\x45\x25\x20\x44\x2a\xf5\x00\ \x01\x00\x40\x00\x00\x02\x17\x01\xe6\x00\x19\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xba\x00\x13\x00\x01\x00\x19\x11\x12\x39\xb8\x00\x13\x10\ \xb8\x00\x00\xd0\xb8\x00\x13\x10\xb8\x00\x0d\xd0\xb8\x00\x07\xd0\ \x30\x31\x37\x27\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\ \x17\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\xf9\xab\x5b\x4d\ \x0d\x1d\x0f\x04\x0e\x1c\x0d\x49\x57\xad\xba\x5a\x55\x0f\x21\x10\ \x04\x0f\x1e\x0f\x50\x58\xfc\xea\x6b\x14\x2a\x14\x14\x2c\x14\x69\ \xf1\xf5\x70\x15\x2e\x15\x16\x2b\x17\x70\x00\x00\x01\x00\x31\xff\ \x2f\x02\x27\x01\xe6\x00\x1c\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\ \x19\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x0e\x00\x08\x00\x07\x11\ \x12\x39\x30\x31\x17\x1e\x01\x33\x32\x36\x3f\x01\x03\x33\x13\x1e\ \x01\x17\x33\x3e\x01\x37\x13\x33\x03\x0e\x03\x23\x22\x27\x37\x54\ \x0a\x17\x0b\x33\x40\x12\x0f\xe3\x53\x77\x0e\x1f\x0f\x04\x0d\x1b\ \x0c\x6a\x4e\xd6\x0e\x24\x32\x41\x29\x24\x1c\x11\x86\x03\x04\x3b\ \x2d\x24\x01\xe7\xfe\xf3\x20\x4a\x23\x23\x49\x21\x01\x0d\xfd\xf2\ \x24\x3e\x2d\x1a\x0a\x41\x00\x00\x01\x00\x47\x00\x00\x02\x14\x01\ \xe6\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x47\x01\x4d\xfe\ \xd8\x01\x9e\xfe\xb2\x01\x58\xfe\x33\x2c\x01\x77\x43\x2c\xfe\x89\ \x43\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x32\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x33\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x2d\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x12\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x6b\x02\x26\x00\x04\x00\x00\x00\x06\x02\xf2\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x20\xff\ \x1e\x02\x38\x02\x90\x02\x26\x00\x04\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x68\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x71\x02\x26\x00\x04\x00\x00\x00\x06\x03\x0e\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x71\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x8a\x02\x26\x00\x04\x00\x00\x00\x06\x03\x12\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\xaa\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x20\xff\ \x1e\x02\x38\x03\x32\x02\x26\x00\x04\x00\x00\x00\x26\x02\xe4\x00\ \x00\x00\x06\x02\xfc\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\ \x8b\x02\x26\x00\x04\x00\x00\x00\x06\x03\x16\x00\x00\x00\x00\xff\ \xff\x00\x20\x00\x00\x02\x38\x03\x8b\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x18\x00\x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\ \xb8\x02\x26\x00\x04\x00\x00\x00\x06\x03\x1a\x00\x00\x00\x00\xff\ \xff\x00\x20\x00\x00\x02\x38\x03\xab\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x1c\x00\x00\x00\x00\xff\xff\x00\x20\xff\x1e\x02\x38\x03\ \x32\x02\x26\x00\x04\x00\x00\x00\x26\x02\xea\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x02\x00\x20\xff\x2c\x02\x57\x02\x90\x00\x09\x00\ \x25\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\ \x1b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\ \x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\ \xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0d\x00\ \x04\x2b\xbb\x00\x00\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1b\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x01\x27\x2e\x01\x27\x23\x0e\x01\ \x0f\x01\x01\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x27\x23\ \x07\x23\x13\x33\x13\x0e\x01\x15\x14\x16\x33\x32\x37\x01\x8d\x1f\ \x11\x20\x10\x04\x10\x20\x11\x1f\x01\x8e\x0e\x2e\x14\x28\x37\x0e\ \x15\x1b\x0d\x13\x3e\xee\x3f\x55\xdd\x5e\xdd\x23\x2d\x1d\x11\x17\ \x13\x01\x0b\x64\x37\x6d\x39\x39\x6d\x37\x64\xfe\x3d\x0b\x11\x2c\ \x2b\x14\x26\x20\x1a\x09\xc8\xc8\x02\x90\xfd\x70\x0e\x3d\x20\x17\ \x17\x0e\x00\x00\x02\xff\xff\x00\x00\x02\x4f\x02\x90\x00\x06\x00\ \x16\x00\x66\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\ \x00\x08\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x0a\x00\x04\ \x2b\xbb\x00\x13\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\x0e\x10\xb9\ \x00\x01\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x07\x00\x01\xf4\xb8\ \x00\x01\x10\xb8\x00\x11\xd0\x30\x31\x01\x11\x23\x0e\x01\x0f\x01\ \x05\x15\x21\x35\x23\x07\x23\x01\x21\x15\x23\x15\x33\x15\x23\x15\ \x01\x3d\x03\x14\x2b\x14\x2e\x01\x96\xfe\xee\x9e\x49\x57\x01\x04\ \x01\x43\xbd\x93\x93\x01\x02\x01\x4c\x36\x69\x36\x77\xbb\x47\xbf\ \xbf\x02\x90\x46\xcd\x47\xef\x00\x03\x00\x1b\x00\x00\x02\x29\x02\ \x90\x00\x0c\x00\x15\x00\x2d\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x08\xd0\xb8\x00\x07\xd0\xb8\x00\ \x0d\xd0\xb8\x00\x25\x10\xb9\x00\x14\x00\x01\xf4\xba\x00\x16\x00\ \x0d\x00\x07\x11\x12\x39\xb8\x00\x0b\x10\xb8\x00\x21\xd0\xb8\x00\ \x08\x10\xb8\x00\x23\xd0\xb8\x00\x22\xd0\x30\x31\x25\x32\x36\x35\ \x34\x26\x2b\x01\x15\x33\x15\x23\x15\x11\x33\x32\x36\x35\x34\x26\ \x2b\x01\x17\x1e\x01\x15\x14\x0e\x02\x2b\x01\x35\x23\x35\x37\x11\ \x33\x32\x1e\x02\x15\x14\x06\x07\x01\x26\x55\x5e\x5c\x57\x6b\x8f\ \x8f\x5a\x54\x4a\x4e\x4c\x5e\xd6\x48\x50\x24\x41\x5b\x37\xca\x4d\ \x4d\xbb\x32\x53\x3b\x21\x38\x3b\x3f\x43\x46\x41\x3c\x65\x2f\x72\ \x01\x3d\x38\x38\x36\x30\xee\x0b\x50\x45\x32\x49\x31\x18\xb1\x2a\ \x05\x01\xb0\x12\x26\x3c\x2a\x30\x4b\x0f\x00\xff\xff\x00\x42\xff\ \x2b\x02\x2a\x02\x9c\x02\x26\x00\x06\x00\x00\x00\x06\x03\x00\x2f\ \x00\x00\x00\xff\xff\x00\x42\xff\xf4\x02\x2a\x03\x32\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xe2\x2f\x00\x00\x00\xff\xff\x00\x42\xff\ \xf4\x02\x2a\x03\x32\x02\x26\x00\x06\x00\x00\x00\x06\x02\xe4\x2f\ \x00\x00\x00\xff\xff\x00\x42\xff\xf4\x02\x2a\x03\x32\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xf6\x2f\x00\x00\x00\xff\xff\x00\x42\xff\ \xf4\x02\x2a\x03\x35\x02\x26\x00\x06\x00\x00\x00\x06\x02\xec\x2f\ \x00\x00\x00\xff\xff\x00\x55\x00\x00\x02\x25\x03\x32\x02\x26\x00\ \x07\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x55\xff\ \x1e\x02\x25\x02\x90\x02\x26\x00\x07\x00\x00\x00\x06\x02\xfc\xf7\ \x00\x00\x00\xff\xff\x00\x55\xff\x55\x02\x25\x02\x90\x02\x26\x00\ \x07\x00\x00\x00\x06\x03\x04\xf7\x00\x00\x00\xff\xff\x00\x10\x00\ \x00\x02\x2b\x02\x90\x02\x06\x00\xe6\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe0\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe2\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe4\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf6\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x2d\x02\x26\x00\x08\x00\x00\x00\x06\x02\xee\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x12\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe8\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xea\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x35\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xec\x1f\x00\x00\x00\xff\xff\x00\x73\xff\ \x1e\x02\x12\x02\x90\x02\x26\x00\x08\x00\x00\x00\x06\x02\xfc\x20\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x68\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf0\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x33\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe6\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x35\x03\x71\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x0e\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x71\x02\x26\x00\x08\x00\x00\x00\x06\x03\x10\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x1a\x03\x8a\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x12\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\xaa\x02\x26\x00\x08\x00\x00\x00\x06\x03\x14\x1f\ \x00\x00\x00\xff\xff\x00\x73\xff\x1e\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x26\x02\xe4\x1f\x00\x00\x06\x02\xfc\x20\x00\x00\ \x01\x00\x73\xff\x2c\x02\x21\x02\x90\x00\x21\x00\x5e\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\ \x59\xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x05\x00\x01\ \x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x02\x00\x01\xf4\xb8\ \x00\x20\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\ \x21\x15\x21\x15\x21\x15\x23\x0e\x03\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x21\x73\x01\x95\xfe\xbf\ \x01\x0f\xfe\xf1\x01\x4b\x04\x11\x21\x19\x10\x1d\x12\x0c\x13\x0a\ \x16\x0e\x2e\x14\x27\x38\x2f\x1c\xfe\xb6\x02\x90\x46\xce\x47\xee\ \x47\x02\x13\x1d\x25\x14\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x2a\ \x41\x12\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x32\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xe4\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \xf4\x02\x15\x03\x32\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xea\x1f\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x35\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xec\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \x28\x02\x15\x02\x9c\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xfe\x23\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x32\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xf6\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \xf4\x02\x15\x03\x12\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe8\x1f\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x33\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xe6\x1f\x00\x00\x00\xff\xff\x00\x4f\x00\ \x00\x02\x09\x03\x32\x02\x26\x00\x0b\x00\x00\x00\x06\x02\xe4\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\x1e\x02\x09\x02\x90\x02\x26\x00\ \x0b\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \x32\x02\x09\x02\x90\x02\x26\x00\x0b\x00\x00\x00\x06\x03\x03\x00\ \x00\x00\x00\x00\x02\x00\x0a\x00\x00\x02\x4e\x02\x90\x00\x03\x00\ \x17\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\ \x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x14\x10\xb8\x00\x13\xdc\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xdc\xb8\x00\x00\x10\xb8\x00\ \x05\xd0\xb8\x00\x03\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x0c\xd0\xb8\x00\x13\x10\xb8\x00\x0f\xd0\xb8\x00\x13\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x21\x15\x21\x37\x23\x11\x23\x11\x21\ \x11\x23\x11\x23\x35\x37\x35\x33\x15\x21\x35\x33\x15\x33\x01\xb5\ \xfe\xee\x01\x12\x99\x45\x54\xfe\xee\x54\x45\x45\x54\x01\x12\x54\ \x45\x01\xec\x6f\x6f\xfe\x14\x01\x35\xfe\xcb\x01\xec\x2a\x05\x75\ \x75\x75\x75\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x32\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x33\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x2d\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x12\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x35\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xec\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x68\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x5f\xff\x1e\x01\xf9\x02\x90\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\x01\x00\x5f\xff\ \x2c\x01\xf9\x02\x90\x00\x1e\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x11\ \x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x00\x00\x01\ \xf4\xb8\x00\x04\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x00\x10\xb8\x00\x08\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\ \x23\x11\x33\x15\x23\x0e\x01\x15\x14\x16\x33\x32\x37\x17\x0e\x01\ \x23\x22\x26\x35\x34\x36\x37\x23\x5f\xa3\xa3\x01\x9a\xa3\xa3\xa3\ \x20\x22\x1e\x12\x17\x11\x17\x0e\x2e\x14\x28\x37\x2a\x18\xb7\x47\ \x02\x03\x46\x46\xfd\xfd\x47\x18\x34\x1f\x17\x17\x0e\x2d\x0b\x11\ \x2c\x2b\x2b\x3c\x16\x00\x00\xff\xff\x00\x51\xff\xf4\x01\xed\x03\ \x32\x02\x26\x00\x0d\x00\x00\x00\x06\x02\xe4\x15\x00\x00\x00\xff\ \xff\x00\x62\xff\x28\x02\x43\x02\x90\x02\x26\x00\x0e\x00\x00\x00\ \x06\x02\xfe\x26\x00\x00\x00\xff\xff\x00\x86\x00\x00\x02\x1d\x03\ \x32\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xe2\x93\x00\x00\x00\xff\ \xff\x00\x86\x00\x00\x02\x1d\x02\xd7\x02\x26\x00\x0f\x00\x00\x00\ \x06\x03\x1f\x7c\xdf\x00\x00\xff\xff\x00\x86\xff\x28\x02\x1d\x02\ \x90\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xfe\x2e\x00\x00\x00\xff\ \xff\x00\x86\x00\x00\x02\x1d\x02\x90\x02\x26\x00\x0f\x00\x00\x00\ \x07\x02\xeb\x00\x82\xfe\xd3\xff\xff\x00\x86\xff\x1e\x02\x1d\x02\ \x90\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xfc\x2e\x00\x00\x00\xff\ \xff\x00\x43\xff\x1e\x02\x1d\x03\x12\x02\x26\x00\x0f\x00\x00\x00\ \x26\x02\xe8\x93\x00\x00\x06\x02\xfc\x2e\x00\xff\xff\x00\x86\xff\ \x55\x02\x1d\x02\x90\x02\x26\x00\x0f\x00\x00\x00\x06\x03\x04\x2e\ \x00\x00\x00\x00\x01\x00\x35\x00\x00\x02\x1d\x02\x90\x00\x0d\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x03\x00\x01\x00\ \x07\x11\x12\x39\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\ \xb8\x00\x0c\xd0\xb8\x00\x09\xd0\x30\x31\x25\x15\x21\x35\x07\x35\ \x37\x11\x33\x11\x37\x15\x07\x15\x02\x1d\xfe\x69\x51\x51\x52\xe2\ \xe2\x47\x47\xe3\x2b\x43\x2c\x01\x69\xfe\xbf\x78\x44\x78\xc4\xff\ \xff\x00\x51\xff\x1e\x02\x07\x02\x90\x02\x26\x00\x10\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x32\x02\x26\x00\x11\x00\x00\x00\x06\x02\xe2\x06\x00\x00\x00\xff\ \xff\x00\x53\x00\x00\x02\x05\x03\x32\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xf6\x06\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x33\x02\x26\x00\x11\x00\x00\x00\x06\x02\xe6\x06\x00\x00\x00\xff\ \xff\x00\x53\xff\x28\x02\x05\x02\x90\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xfe\x00\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x35\x02\x26\x00\x11\x00\x00\x00\x06\x02\xec\x06\x00\x00\x00\xff\ \xff\x00\x53\xff\x1e\x02\x05\x02\x90\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x53\xff\x55\x02\x05\x02\ \x90\x02\x26\x00\x11\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x33\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x2d\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x12\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x28\x02\ \x9c\x02\x26\x00\x12\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x68\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x71\x02\x26\x00\x12\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x71\x02\x26\x00\x12\x00\x00\x00\ \x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x8a\x02\x26\x00\x12\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\xaa\x02\x26\x00\x12\x00\x00\x00\ \x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x03\x00\x2d\xff\xe2\x02\x2c\x02\xae\x00\x0a\x00\ \x15\x00\x2f\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x2b\x2f\x1b\ \xb9\x00\x2b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1e\x2f\ \x1b\xb9\x00\x1e\x00\x03\x3e\x59\xba\x00\x15\x00\x1e\x00\x2b\x11\ \x12\x39\xb8\x00\x15\x10\xb8\x00\x00\xd0\xb8\x00\x1e\x10\xb9\x00\ \x03\x00\x01\xf4\xba\x00\x0a\x00\x1e\x00\x2b\x11\x12\x39\xb8\x00\ \x0a\x10\xb8\x00\x0b\xd0\xb8\x00\x2b\x10\xb9\x00\x0e\x00\x01\xf4\ \xb8\x00\x0a\x10\xb8\x00\x16\xd0\xb8\x00\x00\x10\xb8\x00\x20\xd0\ \xb8\x00\x15\x10\xb8\x00\x23\xd0\xb8\x00\x0b\x10\xb8\x00\x2d\xd0\ \x30\x31\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2f\x01\x2e\x01\x23\ \x22\x0e\x02\x15\x14\x17\x01\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\ \x07\x27\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x37\x17\xc0\x15\ \x37\x20\x25\x3e\x2b\x18\x19\x1f\x15\x38\x21\x26\x3d\x2b\x18\x1b\ \x01\x4c\x1d\x1e\x25\x43\x5d\x37\x5a\x40\x35\x30\x3f\x1d\x1f\x25\ \x43\x5c\x38\x5c\x3f\x36\x2f\x74\x1a\x1d\x26\x47\x63\x3e\x59\x40\ \x38\x1a\x1d\x25\x44\x62\x3d\x5f\x40\x01\x85\x2b\x73\x48\x4f\x7f\ \x59\x30\x3d\x4f\x20\x5d\x2d\x76\x49\x4f\x7d\x57\x2e\x3d\x4f\x20\ \x00\x00\x00\x00\x02\x00\x21\x00\x00\x02\x4f\x02\x91\x00\x12\x00\ \x1b\x00\x4f\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\ \x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x09\x00\x04\x2b\ \xb8\x00\x03\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0d\x10\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x16\xd0\xb8\x00\x06\x10\xb8\x00\x18\xd0\ \x30\x31\x13\x34\x36\x33\x21\x15\x23\x15\x33\x15\x23\x15\x33\x15\ \x21\x22\x2e\x02\x37\x14\x16\x3b\x01\x11\x23\x22\x06\x21\x8d\x7d\ \x01\x1a\xc2\x94\x94\xcc\xfe\xd9\x3e\x61\x44\x24\x56\x54\x56\x15\ \x15\x56\x54\x01\x4b\x9e\xa8\x46\xcf\x47\xee\x47\x2d\x55\x7b\x4e\ \x7e\x89\x02\x08\x83\x00\x00\x00\x02\x00\x30\xff\xf4\x02\x32\x03\ \x05\x00\x13\x00\x34\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x2c\ \x2f\x1b\xb9\x00\x2c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x0a\x00\x01\xf4\xba\x00\x1a\x00\x22\x00\ \x2c\x11\x12\x39\xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x25\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x1e\ \x01\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x17\x3e\x01\x35\x34\x26\x27\x01\x2c\x25\x3e\ \x2b\x18\x18\x2b\x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\x01\x15\x0b\ \x0c\x39\x2d\x2c\x30\x25\x43\x5d\x37\x38\x5c\x43\x25\x25\x43\x5c\ \x38\x3f\x35\x27\x28\x08\x07\x3d\x26\x47\x63\x3e\x3d\x62\x44\x25\ \x25\x44\x62\x3d\x3e\x63\x47\x26\x02\xc8\x0e\x20\x13\x2d\x32\x0b\ \x2b\x89\x5b\x4f\x7f\x59\x30\x30\x59\x7f\x4f\x4f\x7d\x57\x2e\x1f\ \x06\x1e\x1e\x0b\x14\x0a\x00\xff\xff\x00\x30\xff\xf4\x02\x32\x03\ \x32\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x32\x03\x32\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x32\x03\ \x68\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x32\x03\x33\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x32\x03\ \x05\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\x00\ \x02\x00\x30\xff\x2c\x02\x28\x02\x9c\x00\x25\x00\x39\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\ \x3e\x59\xbb\x00\x23\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x1b\xd0\xb8\x00\x09\x10\xb9\x00\x26\x00\x01\xf4\xb8\x00\ \x13\x10\xb9\x00\x30\x00\x01\xf4\x30\x31\x05\x0e\x01\x23\x22\x26\ \x35\x34\x36\x37\x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x06\x07\x0e\x03\x15\x14\x16\x33\x32\x37\x27\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x9a\x0f\x2d\x14\x28\ \x38\x24\x1a\x41\x5d\x3d\x1d\x25\x43\x5c\x38\x37\x5d\x43\x25\x60\ \x4f\x14\x1e\x13\x09\x1e\x11\x16\x13\x57\x25\x3e\x2b\x18\x18\x2b\ \x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\xb8\x0b\x11\x2c\x2b\x21\x3b\ \x16\x02\x3a\x5f\x7a\x41\x4f\x7d\x57\x2e\x2f\x57\x7d\x4e\x85\xa4\ \x22\x09\x19\x1d\x1f\x0d\x17\x17\x0e\xc8\x26\x47\x63\x3e\x3d\x62\ \x44\x25\x25\x44\x62\x3d\x3e\x63\x47\x26\x00\xff\xff\x00\x64\x00\ \x00\x02\x29\x03\x32\x02\x26\x00\x15\x00\x00\x00\x06\x02\xe2\x05\ \x00\x00\x00\xff\xff\x00\x64\x00\x00\x02\x29\x03\x32\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xf6\x05\x00\x00\x00\xff\xff\x00\x64\xff\ \x28\x02\x29\x02\x90\x02\x26\x00\x15\x00\x00\x00\x06\x02\xfe\x14\ \x00\x00\x00\xff\xff\x00\x64\xff\x1e\x02\x29\x02\x90\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xfc\x14\x00\x00\x00\xff\xff\x00\x64\xff\ \x1e\x02\x29\x03\x12\x02\x26\x00\x15\x00\x00\x00\x26\x02\xe8\x05\ \x00\x00\x06\x02\xfc\x14\x00\xff\xff\x00\x64\xff\x55\x02\x29\x02\ \x90\x02\x26\x00\x15\x00\x00\x00\x06\x03\x04\x14\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x19\x03\x32\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xe2\x0b\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x19\x03\ \x32\x02\x26\x00\x16\x00\x00\x00\x06\x02\xe4\x0b\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x19\x03\x32\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xf6\x0b\x00\x00\x00\xff\xff\x00\x43\xff\x2b\x02\x19\x02\ \x9c\x02\x26\x00\x16\x00\x00\x00\x06\x03\x00\x0d\x00\x00\x00\xff\ \xff\x00\x43\xff\x28\x02\x19\x02\x9c\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xfe\x0a\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x19\x03\ \x35\x02\x26\x00\x16\x00\x00\x00\x06\x02\xec\x0b\x00\x00\x00\xff\ \xff\x00\x43\xff\x1e\x02\x19\x02\x9c\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xfc\x0a\x00\x00\x00\x00\x01\x00\x4f\xff\xf4\x02\x33\x02\ \x9c\x00\x2a\x00\x68\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x29\x2f\ \x1b\xb9\x00\x29\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\ \x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xbb\x00\x21\x00\x01\x00\x20\ \x00\x04\x2b\xba\x00\x09\x00\x21\x00\x20\x11\x12\x39\xb8\x00\x11\ \x10\xb9\x00\x18\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\ \xf4\xba\x00\x1b\x00\x25\x00\x11\x11\x12\x39\x30\x31\x13\x34\x3e\ \x02\x33\x32\x16\x17\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\ \x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x37\x2e\x01\x23\ \x22\x06\x15\x11\x23\x4f\x1c\x39\x58\x3b\x4e\x62\x17\x75\x58\x52\ \x18\x2d\x3f\x28\x34\x53\x1b\x30\x19\x33\x1e\x2c\x30\x0f\x26\x3f\ \x31\x05\x76\x0e\x39\x2c\x44\x4c\x55\x01\xb0\x32\x57\x3f\x24\x54\ \x46\x98\x15\x62\x48\x27\x43\x31\x1c\x28\x21\x35\x1d\x1b\x3f\x32\ \x17\x2a\x24\x1c\x0a\x36\x99\x22\x30\x59\x5e\xfe\x60\x00\x00\xff\ \xff\x00\x2a\x00\x00\x02\x2e\x03\x32\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x2a\xff\x2b\x02\x2e\x02\ \x90\x02\x26\x00\x17\x00\x00\x00\x06\x03\x00\x00\x00\x00\x00\xff\ \xff\x00\x2a\xff\x28\x02\x2e\x02\x90\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xfe\x01\x00\x00\x00\xff\xff\x00\x2a\xff\x1e\x02\x2e\x02\ \x90\x02\x26\x00\x17\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\xff\ \xff\x00\x2a\xff\x55\x02\x2e\x02\x90\x02\x26\x00\x17\x00\x00\x00\ \x06\x03\x04\x01\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x32\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x33\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x2d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x12\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe8\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x6b\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf2\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x32\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x8b\x02\x26\x00\x18\x00\x00\x00\x06\x03\x06\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\xb6\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x08\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \xb6\x02\x26\x00\x18\x00\x00\x00\x06\x03\x0a\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\xb6\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x0c\x00\x00\x00\x00\xff\xff\x00\x4f\xff\x1e\x02\x09\x02\ \x90\x02\x26\x00\x18\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x68\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\x00\x01\x00\x4f\xff\x2c\x02\x09\x02\ \x90\x00\x2a\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\ \x1b\xb9\x00\x0d\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\ \x2f\x1b\xb9\x00\x27\x00\x03\x3e\x59\xbb\x00\x18\x00\x01\x00\x1f\ \x00\x04\x2b\xb8\x00\x27\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x27\ \x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x11\x14\x1e\x02\x33\x32\x3e\ \x02\x35\x11\x33\x11\x14\x06\x07\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x2e\x01\x35\x4f\ \x54\x15\x24\x32\x1e\x1e\x33\x25\x16\x51\x45\x37\x35\x30\x1d\x12\ \x0c\x13\x0a\x16\x0e\x2d\x14\x28\x38\x0d\x14\x17\x09\x6e\x6b\x02\ \x90\xfe\x66\x33\x47\x2b\x14\x14\x2b\x47\x33\x01\x9a\xfe\x68\x66\ \x74\x19\x18\x3d\x1b\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x15\x21\ \x1c\x17\x09\x02\x84\x7d\x00\x00\x01\x00\x4f\xff\xf4\x02\x76\x03\ \x19\x00\x28\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\ \xb9\x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\ \x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\x1b\x00\x01\xf4\x30\x31\x01\ \x1e\x01\x15\x14\x0e\x02\x07\x11\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x11\x33\x11\x14\x1e\x02\x33\x32\x3e\x02\x35\x11\x33\x3e\x01\x35\ \x34\x26\x27\x02\x5f\x0b\x0c\x12\x1e\x27\x16\x21\x3a\x51\x30\x30\ \x52\x3b\x21\x54\x15\x25\x32\x1e\x1e\x32\x26\x15\x23\x28\x30\x08\ \x07\x03\x19\x0e\x20\x13\x19\x24\x1a\x10\x05\xfe\x8c\x47\x62\x3f\ \x1c\x1c\x3f\x62\x47\x01\x98\xfe\x66\x33\x47\x2b\x14\x14\x2b\x47\ \x33\x01\x9a\x05\x1b\x23\x0b\x14\x0a\x00\x00\xff\xff\x00\x4f\xff\ \xf4\x02\x76\x03\x32\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x76\x03\x32\x02\x26\x00\ \xd0\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \xf4\x02\x76\x03\x68\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x76\x03\x33\x02\x26\x00\ \xd0\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \x1e\x02\x76\x03\x19\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x4e\x03\x32\x02\x26\x00\ \x1a\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x0a\x00\ \x00\x02\x4e\x03\x32\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x4e\x03\x32\x02\x26\x00\ \x1a\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x0a\x00\ \x00\x02\x4e\x03\x2d\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x32\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x32\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x32\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x2d\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x35\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xec\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \x1e\x02\x32\x02\x90\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x68\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x33\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x1b\x03\x32\x02\x26\x00\ \x1d\x00\x00\x00\x06\x02\xe2\x0f\x00\x00\x00\xff\xff\x00\x41\x00\ \x00\x02\x1b\x03\x32\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xf6\x0f\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x1b\x03\x35\x02\x26\x00\ \x1d\x00\x00\x00\x06\x02\xec\x0f\x00\x00\x00\xff\xff\x00\x41\xff\ \x1e\x02\x1b\x02\x91\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xfc\x0b\ \x00\x00\x00\x00\x02\x00\x10\x00\x00\x02\x2b\x02\x90\x00\x0c\x00\ \x19\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\ \x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\ \x00\x0b\x00\x03\x3e\x59\xbb\x00\x03\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0b\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x04\x10\xb9\x00\ \x13\x00\x01\xf4\xb8\x00\x03\x10\xb8\x00\x15\xd0\xb8\x00\x00\x10\ \xb8\x00\x17\xd0\x30\x31\x13\x23\x35\x37\x11\x33\x32\x16\x15\x14\ \x06\x2b\x01\x37\x32\x36\x35\x34\x26\x2b\x01\x15\x33\x15\x23\x15\ \x5b\x4b\x4b\xa1\x94\x9b\x9b\x91\xa4\x9b\x70\x6f\x6f\x70\x48\x8f\ \x8f\x01\x41\x2a\x05\x01\x20\xa8\x9d\x9d\xae\x44\x8a\x7d\x7d\x84\ \xdc\x2f\xfd\x00\x02\x00\x65\x00\x00\x02\x21\x02\x90\x00\x10\x00\ \x19\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\ \x00\x0f\x00\x03\x3e\x59\xbb\x00\x11\x00\x01\x00\x0d\x00\x04\x2b\ \xbb\x00\x03\x00\x01\x00\x17\x00\x04\x2b\x30\x31\x13\x33\x15\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\x23\x37\x32\x36\x35\x34\ \x26\x2b\x01\x11\x65\x54\x76\x36\x5a\x3f\x23\x23\x40\x59\x36\x76\ \x54\xbf\x57\x53\x55\x55\x6b\x02\x90\x6e\x14\x2e\x49\x36\x34\x4d\ \x32\x18\x96\xda\x40\x47\x47\x36\xfe\xfc\x00\x00\x02\x00\x3e\xff\ \xf4\x02\x26\x02\x9c\x00\x06\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\ \x1d\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x14\x10\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x0a\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x1e\ \x01\x33\x32\x36\x37\x01\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x35\x34\x36\x37\x21\x2e\x01\x23\x22\x06\x07\x93\ \x07\x52\x42\x44\x57\x08\xfe\xb2\x1f\x56\x3a\x39\x5a\x3f\x22\x24\ \x41\x5c\x37\x37\x59\x3e\x22\x01\x01\x01\x93\x03\x54\x50\x29\x41\ \x19\x01\x1b\x6a\x76\x78\x69\x01\x37\x20\x29\x2f\x57\x7d\x4f\x4f\ \x7e\x59\x30\x30\x59\x7c\x4c\x05\x0c\x05\x76\x84\x21\x1a\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xdf\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xd1\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe1\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe3\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xb0\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe5\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xba\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xed\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \x92\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe7\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xc5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe9\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xd7\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xf1\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xf5\x0e\x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x01\ \xf2\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xfc\x03\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd7\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xef\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x22\x02\ \xf2\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x0d\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xf2\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x0f\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x0b\x03\ \x10\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x11\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x03\x22\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x13\x0e\x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x02\ \xd1\x02\x26\x00\x1e\x00\x00\x00\x26\x02\xe3\x0e\x00\x00\x06\x02\ \xfc\x03\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x03\x15\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x15\x0e\x00\x00\x00\xff\xff\x00\x51\xff\ \xf4\x02\x03\x03\x15\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x17\x0e\ \x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x03\x47\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x19\x0e\x00\x00\x00\xff\xff\x00\x51\xff\ \xf4\x02\x03\x03\x22\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x1b\x0e\ \x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x02\xc5\x02\x26\x00\ \x1e\x00\x00\x00\x26\x02\xe9\x0e\x00\x00\x06\x02\xfc\x03\x00\x00\ \x02\x00\x51\xff\x32\x02\x19\x01\xf2\x00\x34\x00\x42\x00\x85\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\ \x00\x05\x3e\x59\xba\x00\x05\x00\x13\x00\x30\x11\x12\x39\xb8\x00\ \x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x23\x10\ \xb9\x00\x1d\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x2b\xd0\xb8\x00\ \x30\x10\xb9\x00\x3a\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x3e\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x03\x23\x22\x06\x07\x27\ \x3e\x03\x33\x32\x16\x15\x11\x0e\x01\x15\x14\x16\x33\x32\x37\x17\ \x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\ \x2e\x02\x37\x14\x1e\x02\x33\x32\x36\x37\x35\x0e\x03\x51\x27\x55\ \x86\x5e\x01\x0e\x1e\x31\x23\x30\x58\x22\x20\x12\x31\x37\x3e\x20\ \x64\x61\x2a\x2c\x1c\x12\x16\x12\x16\x0e\x2e\x13\x26\x34\x0e\x17\ \x1c\x0f\x07\x03\x29\x63\x34\x22\x3c\x2d\x1a\x50\x12\x1d\x27\x15\ \x2a\x51\x2a\x4e\x69\x3f\x1a\x7e\x29\x3d\x2c\x1c\x08\x19\x2c\x21\ \x14\x25\x15\x38\x0c\x19\x14\x0d\x6d\x5b\xfe\xd6\x11\x3b\x1d\x17\ \x17\x0d\x29\x0b\x10\x2b\x2a\x14\x25\x20\x1b\x09\x3e\x20\x2e\x13\ \x23\x33\x27\x15\x1d\x13\x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\ \x03\x00\x11\xff\xf4\x02\x55\x01\xf2\x00\x2e\x00\x37\x00\x44\x00\ \xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\ \x26\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2c\x2f\x1b\xb9\ \x00\x2c\x00\x03\x3e\x59\xbb\x00\x2f\x00\x01\x00\x1b\x00\x04\x2b\ \xba\x00\x03\x00\x0d\x00\x2c\x11\x12\x39\xb8\x00\x03\x2f\xb8\x00\ \x0d\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x10\x00\x26\x00\x0d\x11\ \x12\x39\xb8\x00\x26\x10\xb9\x00\x1f\x00\x01\xf4\xba\x00\x29\x00\ \x26\x00\x0d\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x34\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x3b\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\ \x42\x00\x01\xf4\x30\x31\x37\x34\x36\x37\x2e\x01\x23\x22\x06\x07\ \x27\x3e\x01\x33\x32\x16\x17\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\ \x07\x21\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x27\x0e\ \x01\x23\x22\x26\x25\x34\x2e\x02\x23\x22\x06\x0f\x01\x14\x16\x33\ \x32\x36\x37\x2e\x01\x2f\x01\x0e\x01\x11\x7c\x7c\x01\x27\x2f\x1a\ \x41\x17\x1f\x1e\x50\x2d\x30\x3b\x0e\x18\x45\x30\x25\x37\x25\x12\ \x02\x02\xfe\xfe\x03\x3c\x3b\x1c\x2f\x15\x1d\x19\x41\x26\x35\x48\ \x18\x29\x4f\x26\x3c\x46\x01\xff\x08\x14\x21\x18\x2f\x39\x05\xf1\ \x28\x22\x1a\x3e\x1a\x08\x07\x01\x01\x5c\x4f\x81\x49\x57\x13\x36\ \x45\x19\x10\x38\x14\x20\x38\x2a\x2f\x33\x24\x3d\x50\x2d\x0e\x1a\ \x0d\x4c\x5d\x12\x0d\x36\x11\x1a\x30\x2b\x2d\x2e\x4b\xd7\x1f\x38\ \x2b\x19\x52\x49\x91\x27\x28\x24\x23\x16\x35\x1d\x19\x10\x3a\x00\ \x02\x00\x14\xff\xf4\x02\x1c\x02\xc8\x00\x0c\x00\x2b\x00\xa5\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\ \x00\x03\x3e\x59\xbb\x00\x21\x00\x01\x00\x24\x00\x04\x2b\xba\x00\ \x1d\x00\x1a\x00\x10\x11\x12\x39\xb8\x00\x1d\x10\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x1a\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x10\x10\ \xb9\x00\x09\x00\x01\xf4\xba\x00\x0d\x00\x10\x00\x1a\x11\x12\x39\ \xb8\x00\x0d\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x24\x10\xb8\x00\ \x23\xd0\xb8\x00\x24\x10\xb8\x00\x28\xd0\xb8\x00\x21\x10\xb8\x00\ \x29\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\ \x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\ \x23\x07\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\x15\xaf\x23\ \x47\x1a\x40\x54\x40\x49\x20\x49\x26\x02\x23\x57\x2b\x31\x4c\x33\ \x1a\x24\x3d\x50\x2b\x23\x51\x23\x03\x07\x42\x49\x49\x52\xd4\xd4\ \x72\x1f\x1a\x61\x56\x4c\x5d\x23\x26\x44\x22\x28\x22\x3d\x58\x36\ \x3c\x5e\x41\x22\x23\x1f\x36\x02\x3b\x2b\x05\x5d\x5d\x30\x49\xff\ \xff\x00\x50\xff\x2b\x02\x1b\x01\xf2\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xff\x2a\x00\x00\x00\xff\xff\x00\x50\xff\xf4\x02\x1b\x02\ \xd1\x02\x26\x00\x20\x00\x00\x00\x06\x02\xe1\x2b\x00\x00\x00\xff\ \xff\x00\x50\xff\xf4\x02\x1b\x02\xd1\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xe3\x2b\x00\x00\x00\xff\xff\x00\x50\xff\xf4\x02\x1b\x02\ \xd1\x02\x26\x00\x20\x00\x00\x00\x06\x02\xf5\x2b\x00\x00\x00\xff\ \xff\x00\x50\xff\xf4\x02\x1b\x02\xc9\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xeb\x2b\x00\x00\x00\xff\xff\x00\x33\xff\xf4\x02\x54\x02\ \xf8\x02\x26\x00\x21\xf7\x00\x00\x07\x03\x1f\x01\x13\x00\x00\xff\ \xff\x00\x3c\xff\x1e\x01\xfb\x02\xc8\x02\x26\x00\x21\x00\x00\x00\ \x06\x02\xfc\x06\x00\x00\x00\xff\xff\x00\x3c\xff\x55\x01\xfb\x02\ \xc8\x02\x26\x00\x21\x00\x00\x00\x06\x03\x04\x06\x00\x00\x00\x00\ \x02\x00\x3c\xff\xf4\x02\x43\x02\xc8\x00\x0d\x00\x2c\x00\xa5\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x29\x2f\x1b\xb9\x00\x29\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xbb\x00\x0f\x00\x01\x00\x2b\x00\x04\x2b\xba\x00\ \x23\x00\x20\x00\x16\x11\x12\x39\xb8\x00\x23\x10\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x20\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x16\x10\ \xb9\x00\x0b\x00\x01\xf4\xba\x00\x12\x00\x16\x00\x20\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0f\x10\xb8\x00\ \x0e\xd0\xb8\x00\x0f\x10\xb8\x00\x26\xd0\xb8\x00\x2b\x10\xb8\x00\ \x27\xd0\x30\x31\x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\ \x37\x13\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x27\x35\x23\x35\x33\x35\x33\x15\x33\x01\xa9\ \x21\x3f\x1f\x20\x38\x29\x18\x4b\x44\x48\x41\x9a\x48\x44\x07\x03\ \x1e\x53\x2d\x30\x4d\x38\x1e\x25\x3d\x50\x2b\x2d\x44\x22\x03\xae\ \xae\x52\x48\x01\x60\x1f\x1a\x1a\x2e\x41\x27\x53\x5d\x49\x01\xbe\ \x05\xfd\xc5\x40\x1f\x2d\x20\x3f\x5a\x3b\x39\x5b\x40\x22\x22\x1d\ \x5a\x42\x30\x5d\x5d\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xd1\x02\x26\x00\x22\x00\x00\x00\x06\x02\xdf\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xe1\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xd1\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe3\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xf5\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xba\x02\x26\x00\x22\x00\x00\x00\x06\x02\xed\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\x92\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xe7\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xc5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe9\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xc9\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xeb\x0f\x00\x00\x00\xff\xff\x00\x45\xff\x1e\x02\x19\x01\ \xf2\x02\x26\x00\x22\x00\x00\x00\x06\x02\xfc\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd7\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xef\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xb0\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe5\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x23\x02\xf2\x02\x26\x00\x22\x00\x00\x00\ \x06\x03\x0d\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xf2\x02\x26\x00\x22\x00\x00\x00\x06\x03\x0f\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x03\x10\x02\x26\x00\x22\x00\x00\x00\ \x06\x03\x11\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x03\ \x22\x02\x26\x00\x22\x00\x00\x00\x06\x03\x13\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\x1e\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x26\x02\xe3\x0f\x00\x00\x06\x02\xfc\x0f\x00\x00\x02\x00\x45\xff\ \x32\x02\x19\x01\xf2\x00\x35\x00\x3e\x00\x5e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x05\x3e\x59\xbb\ \x00\x3e\x00\x01\x00\x2c\x00\x04\x2b\xb8\x00\x0f\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x32\x00\x01\xf4\xb8\x00\x24\ \x10\xb9\x00\x39\x00\x01\xf4\x30\x31\x25\x0e\x03\x15\x14\x16\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\ \x21\x1e\x03\x33\x32\x36\x37\x27\x34\x26\x23\x22\x0e\x02\x07\x02\ \x05\x22\x2d\x1b\x0b\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x34\ \x0c\x14\x17\x0b\x16\x22\x14\x36\x5f\x47\x29\x2a\x45\x59\x2f\x34\ \x52\x39\x1e\x01\x02\xfe\x84\x01\x1d\x31\x43\x28\x2b\x47\x22\x1b\ \x4c\x44\x1e\x37\x2c\x1e\x05\x2d\x18\x29\x24\x21\x10\x17\x17\x07\ \x06\x29\x0b\x10\x2b\x2a\x13\x24\x20\x19\x09\x08\x04\x23\x41\x5e\ \x3c\x3c\x5f\x42\x23\x21\x3c\x54\x33\x0d\x19\x09\x27\x3e\x2c\x18\ \x18\x15\xb7\x49\x4e\x14\x27\x38\x24\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xd1\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\xc5\x02\x26\x00\ \x24\x00\x00\x00\x06\x02\xe9\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xc9\x02\x26\x00\x24\x00\x00\x00\x06\x02\xeb\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\xc6\x02\x26\x00\ \x24\x00\x00\x00\x06\x03\x20\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xd1\x02\x26\x00\x24\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\x92\x02\x26\x00\ \x24\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xb0\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe5\x07\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x0b\x03\x5c\x02\x26\x00\ \x25\x00\x00\x00\x07\x02\xe4\xff\x66\x00\x2a\xff\xff\x00\x5d\xff\ \x1e\x02\x0b\x02\xc8\x02\x26\x00\x25\x00\x00\x00\x06\x02\xfc\x0e\ \x00\x00\x00\xff\xff\x00\x5d\xff\x32\x02\x0b\x02\xc8\x02\x26\x00\ \x25\x00\x00\x00\x06\x03\x03\x0d\x00\x00\x00\x00\x01\x00\x14\x00\ \x00\x02\x0b\x02\xc8\x00\x1e\x00\x87\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x03\x2f\x1b\xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0f\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\ \x14\x00\x01\x00\x17\x00\x04\x2b\xba\x00\x00\x00\x03\x00\x13\x11\ \x12\x39\xb8\x00\x03\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\ \xb9\x00\x11\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x16\xd0\xb8\x00\ \x17\x10\xb8\x00\x1b\xd0\xb8\x00\x14\x10\xb8\x00\x1c\xd0\x30\x31\ \x13\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\x26\x23\x22\x0e\x02\ \x07\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\x15\xab\x27\ \x58\x39\x57\x51\x52\x34\x3c\x16\x25\x24\x26\x15\x52\x49\x49\x52\ \xd4\xd4\x01\x7f\x29\x36\x63\x61\xfe\xe6\x01\x0f\x45\x43\x0b\x16\ \x21\x16\xfe\xc1\x02\x3b\x2b\x05\x5d\x5d\x30\x49\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\x9d\x02\xd1\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xdf\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xcf\x02\ \xd1\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe1\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xe0\x02\xd1\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe3\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xea\x02\ \xb0\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe5\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xf2\x02\xba\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xed\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xd7\x02\ \x92\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe7\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xde\x02\xc5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe9\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xe0\x02\ \xd1\x02\x26\x01\x32\x00\x00\x00\x06\x02\xf5\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xaf\x02\xd7\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xef\x30\x00\x00\x00\xff\xff\x00\x5a\xff\x1e\x01\x9e\x02\ \xc9\x02\x26\x00\x26\x00\x00\x00\x06\x02\xfc\x30\x00\x00\x00\x00\ \x02\x00\x5a\xff\x32\x01\xb9\x02\xc9\x00\x1a\x00\x26\x00\x67\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x05\x3e\x59\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x02\x10\xb8\x00\x1b\xdc\ \xb8\x00\x21\xdc\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x3c\xe2\x01\ \x34\x1e\x23\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x35\x0c\x13\ \x16\x0a\x13\x20\x1d\x25\x25\x1d\x1c\x26\x26\x01\xa3\x43\xfe\x1a\ \x16\x36\x1d\x17\x17\x07\x06\x29\x0b\x10\x2b\x2a\x14\x23\x1e\x19\ \x0b\x02\x4a\x22\x1d\x1d\x23\x23\x1d\x1d\x22\x00\x01\x00\x5a\xff\ \x32\x01\xb9\x01\xe6\x00\x1a\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x05\x3e\x59\xb8\x00\ \x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x11\x10\xb9\x00\x0a\x00\ \x01\xf4\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x01\x3c\ \xe2\x01\x34\x1e\x23\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x35\ \x0c\x13\x16\x0a\x13\x01\xa3\x43\xfe\x1a\x16\x36\x1d\x17\x17\x07\ \x06\x29\x0b\x10\x2b\x2a\x14\x23\x1e\x19\x0b\x00\x01\x00\x5a\x00\ \x00\x01\x8e\x01\xe6\x00\x05\x00\x2f\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb8\x00\x00\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x23\x5a\x01\ \x34\x52\xe2\x01\xe6\xfe\x1a\x01\xa3\x00\x00\xff\xff\x00\x37\xff\ \x27\x01\xe0\x02\xd1\x02\x26\x01\x9d\x00\x00\x00\x06\x02\xe3\x30\ \x00\x00\x00\xff\xff\x00\x6a\xff\x28\x02\x3e\x02\xc8\x02\x26\x00\ \x28\x00\x00\x00\x06\x02\xfe\x23\x00\x00\x00\x00\x01\x00\x6a\x00\ \x00\x02\x3e\x01\xe6\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xba\x00\ \x02\x00\x0b\x00\x00\x11\x12\x39\xba\x00\x09\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x37\x25\x33\x07\x13\x23\x27\ \x07\x15\x23\x6a\x52\x03\x01\x07\x5e\xc2\xdc\x5c\xb3\x73\x52\x01\ \xe6\xff\x00\x01\xff\xc1\xfe\xdb\xf0\x6e\x82\xff\xff\x00\x51\xff\ \xf4\x02\x19\x03\x66\x02\x26\x00\x29\x00\x00\x00\x06\x02\xe2\xe9\ \x34\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x19\x02\xf8\x02\x26\x00\ \x29\x00\x00\x00\x07\x03\x1f\x00\x88\x00\x00\xff\xff\x00\x2b\xff\ \xf4\x01\xf7\x02\xc8\x02\x26\x00\x29\xda\x00\x00\x07\x02\xeb\x00\ \x89\xfe\xd2\xff\xff\x00\x51\xff\x28\x02\x19\x02\xc8\x02\x26\x00\ \x29\x00\x00\x00\x06\x02\xfe\x47\x00\x00\x00\xff\xff\x00\x51\xff\ \x1e\x02\x19\x02\xc8\x02\x26\x00\x29\x00\x00\x00\x06\x02\xfc\x47\ \x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x19\x03\x70\x02\x26\x00\ \x29\x00\x00\x00\x27\x02\xe7\xff\xf1\x00\xde\x00\x06\x02\xfc\x47\ \x00\x00\x00\xff\xff\x00\x51\xff\x55\x02\x19\x02\xc8\x02\x26\x00\ \x29\x00\x00\x00\x06\x03\x04\x47\x00\x00\x00\x00\x01\x00\x51\xff\ \xf4\x02\x19\x02\xc8\x00\x18\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xba\x00\x07\x00\ \x03\x00\x0d\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x0a\xd0\xb8\x00\ \x0d\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x07\x10\xb8\x00\x12\xd0\ \xb8\x00\x0f\xd0\xb8\x00\x03\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\ \x25\x0e\x01\x23\x22\x26\x3d\x01\x07\x35\x37\x35\x23\x35\x33\x11\ \x37\x15\x07\x15\x14\x16\x33\x32\x37\x02\x19\x21\x3a\x28\x4e\x51\ \x7c\x7c\xa6\xf8\xa3\xa3\x33\x2c\x28\x34\x11\x0c\x11\x58\x57\xa9\ \x47\x46\x47\xf3\x43\xfe\xf5\x5b\x47\x5b\xd9\x36\x2f\x17\x00\xff\ \xff\x00\x3c\xff\x1e\x02\x2c\x01\xf2\x02\x26\x00\x2a\x00\x00\x00\ \x06\x02\xfc\x05\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xd1\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xe1\x12\x00\x00\x00\xff\ \xff\x00\x5d\x00\x00\x02\x0b\x02\xd1\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xf5\x12\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xb0\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xe5\x12\x00\x00\x00\xff\ \xff\x00\x5d\xff\x28\x02\x0b\x01\xf2\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xfe\x0d\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xc9\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xeb\x12\x00\x00\x00\xff\ \xff\x00\x5d\xff\x1e\x02\x0b\x01\xf2\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xfc\x0d\x00\x00\x00\xff\xff\x00\x5d\xff\x55\x02\x0b\x01\ \xf2\x02\x26\x00\x2b\x00\x00\x00\x06\x03\x04\x0d\x00\x00\x00\x00\ \x02\xff\xea\x00\x00\x02\x56\x02\xbb\x00\x11\x00\x26\x00\x6d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\ \x00\x03\x3e\x59\xba\x00\x0b\x00\x05\x00\x03\x2b\xb8\x00\x15\x10\ \xb9\x00\x1e\x00\x01\xf4\xba\x00\x26\x00\x15\x00\x23\x11\x12\x39\ \xb8\x00\x26\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x03\x3e\x01\x37\ \x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\x25\x3e\ \x01\x33\x32\x16\x15\x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\ \x11\x33\x17\x16\x30\x35\x03\x0c\x0e\x20\x27\x2a\x20\x28\x32\x4c\ \x43\x01\x0d\x23\x50\x35\x4f\x4c\x53\x2e\x34\x27\x3d\x27\x52\x44\ \x07\x01\x8e\x1a\x4f\x35\x06\x27\x20\x23\x2b\x40\x39\x4b\x76\x23\ \x3c\x25\x33\x60\x5e\xfe\xcc\x01\x29\x42\x40\x29\x28\xfe\xa6\x01\ \xe6\x4c\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xd1\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe1\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xe3\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xb0\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe5\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xba\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\x92\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe7\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xc5\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xe9\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xca\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xf3\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xf5\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \x1e\x02\x1c\x01\xf2\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xfc\x01\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd7\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xf2\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x0d\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xf2\x02\x26\x00\ \x2c\x00\x00\x00\x06\x03\x0f\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x03\x10\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x11\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x03\x22\x02\x26\x00\ \x2c\x00\x00\x00\x06\x03\x13\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \x1e\x02\x1c\x02\xd1\x02\x26\x00\x2c\x00\x00\x00\x26\x02\xe3\x00\ \x00\x00\x06\x02\xfc\x00\x00\x00\x03\x00\x3c\xff\xe9\x02\x1c\x01\ \xfd\x00\x0a\x00\x16\x00\x30\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xba\x00\x16\x00\ \x1f\x00\x2c\x11\x12\x39\xb8\x00\x16\x10\xb8\x00\x00\xd0\xb8\x00\ \x1f\x10\xb9\x00\x02\x00\x01\xf4\xba\x00\x0a\x00\x2c\x00\x1f\x11\ \x12\x39\xb8\x00\x0a\x10\xb8\x00\x0b\xd0\xb8\x00\x2c\x10\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x17\xd0\xb8\x00\x00\x10\ \xb8\x00\x21\xd0\xb8\x00\x16\x10\xb8\x00\x24\xd0\xb8\x00\x0b\x10\ \xb8\x00\x2e\xd0\x30\x31\x37\x16\x33\x32\x3e\x02\x35\x34\x26\x2f\ \x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x17\x01\x1e\x01\x15\x14\ \x0e\x02\x23\x22\x27\x07\x27\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x17\x37\x17\xc9\x29\x3a\x23\x39\x29\x16\x0e\x0d\x1e\x13\x32\x1d\ \x23\x39\x29\x16\x0e\x0d\x01\x35\x1b\x20\x27\x42\x57\x30\x53\x3f\ \x33\x25\x35\x1b\x20\x27\x42\x57\x30\x53\x3f\x33\x25\x5c\x26\x1c\ \x31\x45\x2a\x21\x3a\x17\x26\x12\x14\x1c\x32\x46\x2a\x21\x38\x17\ \x01\x20\x20\x59\x37\x3c\x5f\x41\x22\x30\x3b\x1d\x3e\x20\x58\x36\ \x3d\x5f\x42\x22\x30\x3b\x1d\x00\x03\x00\x0b\xff\xf4\x02\x54\x01\ \xf2\x00\x13\x00\x3b\x00\x44\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x32\x2f\x1b\xb9\x00\x32\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x37\x2f\x1b\xb9\x00\x37\x00\x03\x3e\x59\xbb\x00\ \x3c\x00\x01\x00\x27\x00\x04\x2b\xb8\x00\x37\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x19\x10\xb9\x00\x0f\x00\x01\xf4\xba\x00\x1c\x00\ \x32\x00\x19\x11\x12\x39\xb8\x00\x32\x10\xb9\x00\x2b\x00\x01\xf4\ \xba\x00\x35\x00\x32\x00\x19\x11\x12\x39\xb8\x00\x1f\x10\xb9\x00\ \x41\x00\x01\xf4\x30\x31\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x07\x34\x3e\x02\x33\x32\x16\x17\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x27\x06\x23\x22\x2e\x02\x25\x34\x2e\x02\x23\ \x22\x06\x07\x58\x0d\x1a\x26\x1a\x16\x25\x1a\x0e\x0e\x1a\x25\x16\ \x1a\x26\x1a\x0d\x4d\x1b\x30\x40\x25\x2f\x45\x14\x14\x41\x30\x22\ \x35\x23\x12\x01\x02\xf1\x04\x3a\x36\x1a\x27\x14\x1d\x17\x3b\x23\ \x30\x48\x16\x2b\x5d\x26\x40\x2f\x1b\x02\x05\x08\x12\x1e\x16\x2d\ \x30\x06\xf3\x2a\x45\x31\x1c\x1c\x31\x45\x2a\x2a\x44\x32\x1b\x1b\ \x32\x44\x2a\x3d\x5f\x41\x22\x3d\x38\x37\x3e\x24\x3c\x51\x2d\x0e\ \x17\x10\x4c\x5d\x11\x0e\x36\x11\x1a\x39\x37\x70\x22\x41\x5f\x60\ \x1f\x38\x2b\x19\x53\x48\x00\x00\x02\x00\x3c\xff\xf4\x02\x2c\x02\ \x65\x00\x13\x00\x34\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x2c\ \x2f\x1b\xb9\x00\x2c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x0a\x00\x01\xf4\xba\x00\x1a\x00\x22\x00\ \x2c\x11\x12\x39\xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x25\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x1e\ \x01\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x17\x3e\x01\x35\x34\x26\x27\x01\x2c\x23\x39\ \x29\x16\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\x39\x01\x0b\x0b\ \x0d\x38\x2c\x26\x2e\x27\x42\x57\x30\x30\x57\x42\x27\x27\x42\x57\ \x30\x36\x31\x2c\x29\x08\x07\x38\x1b\x31\x44\x2a\x2a\x45\x32\x1b\ \x1b\x32\x45\x2a\x2a\x44\x31\x1b\x02\x2d\x0e\x20\x13\x2c\x32\x0b\ \x21\x65\x43\x3c\x5f\x41\x22\x22\x41\x5f\x3c\x3d\x5f\x42\x22\x16\ \x06\x1f\x1d\x0b\x15\x0a\x00\xff\xff\x00\x3c\xff\xf4\x02\x2c\x02\ \xd1\x02\x26\x01\x59\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x02\x2c\x02\xd1\x02\x26\x01\x59\x00\x00\x00\ \x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x2c\x02\ \xd7\x02\x26\x01\x59\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x02\x2c\x02\xb0\x02\x26\x01\x59\x00\x00\x00\ \x06\x02\xe5\x00\x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x02\x2c\x02\ \x65\x02\x26\x01\x59\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\ \x02\x00\x3c\xff\x32\x02\x1c\x01\xf2\x00\x28\x00\x3c\x00\x5c\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\ \x05\x3e\x59\xb8\x00\x05\x10\xb8\x00\x19\xd0\xb8\x00\x26\x10\xb9\ \x00\x1f\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x2e\x00\x01\xf4\xb8\ \x00\x0f\x10\xb9\x00\x38\x00\x01\xf4\x30\x31\x17\x34\x3e\x02\x37\ \x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\ \x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x03\x14\ \x1e\x02\x33\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xea\x0b\ \x10\x14\x08\x2f\x54\x3e\x24\x27\x42\x57\x30\x30\x57\x42\x27\x19\ \x2d\x40\x28\x23\x24\x1c\x12\x0c\x13\x09\x16\x0e\x2e\x13\x26\x34\ \x59\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\x39\x23\x23\x39\x29\ \x16\x79\x13\x21\x1d\x16\x07\x02\x24\x41\x5c\x3a\x3d\x5f\x42\x22\ \x22\x42\x5f\x3d\x33\x4d\x3b\x2b\x10\x10\x38\x1d\x17\x17\x07\x06\ \x29\x0b\x10\x2b\x01\x95\x2a\x44\x31\x1b\x1b\x31\x44\x2a\x2a\x45\ \x32\x1b\x1b\x32\x45\x00\x00\xff\xff\x00\x92\x00\x00\x02\x19\x02\ \xd1\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xe1\x2a\x00\x00\x00\xff\ \xff\x00\x74\xff\x28\x02\x19\x01\xf2\x02\x26\x00\x2f\x00\x00\x00\ \x06\x02\xfe\x9d\x00\x00\x00\xff\xff\x00\x92\x00\x00\x02\x19\x02\ \xd1\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xf5\x2a\x00\x00\x00\xff\ \xff\x00\x87\xff\x1e\x02\x19\x01\xf2\x02\x26\x00\x2f\x00\x00\x00\ \x06\x02\xfc\x9d\x00\x00\x00\xff\xff\x00\x87\xff\x1e\x02\x19\x02\ \x92\x02\x26\x00\x2f\x00\x00\x00\x26\x02\xe7\x2a\x00\x00\x06\x02\ \xfc\x9d\x00\xff\xff\x00\x4d\xff\x55\x02\x19\x01\xf2\x02\x26\x00\ \x2f\x00\x00\x00\x06\x03\x04\x9d\x00\x00\x00\xff\xff\x00\x48\xff\ \xf4\x02\x0e\x02\xd1\x02\x26\x00\x30\x00\x00\x00\x06\x02\xe1\x03\ \x00\x00\x00\xff\xff\x00\x48\xff\xf4\x02\x0e\x02\xd1\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xe3\x03\x00\x00\x00\xff\xff\x00\x48\xff\ \xf4\x02\x0e\x02\xd1\x02\x26\x00\x30\x00\x00\x00\x06\x02\xf5\x03\ \x00\x00\x00\xff\xff\x00\x48\xff\x2b\x02\x0e\x01\xf2\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xff\x0e\x00\x00\x00\xff\xff\x00\x48\xff\ \x28\x02\x0e\x01\xf2\x02\x26\x00\x30\x00\x00\x00\x06\x02\xfe\x0a\ \x00\x00\x00\xff\xff\x00\x48\xff\xf4\x02\x0e\x02\xc9\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xeb\x03\x00\x00\x00\xff\xff\x00\x48\xff\ \x1e\x02\x0e\x01\xf2\x02\x26\x00\x30\x00\x00\x00\x06\x02\xfc\x0a\ \x00\x00\x00\x00\x01\x00\x58\xff\xf4\x02\x34\x02\xd4\x00\x39\x00\ \x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x39\x2f\x1b\xb9\x00\x39\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\ \x1b\x00\x03\x3e\x59\xb9\x00\x22\x00\x01\xf4\xba\x00\x0f\x00\x05\ \x00\x22\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x34\x00\x01\xf4\xba\ \x00\x25\x00\x1b\x00\x34\x11\x12\x39\x30\x31\x13\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x15\x14\x1e\x04\x15\x14\x0e\x02\x23\ \x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x04\x35\x34\x3e\ \x02\x35\x34\x26\x23\x22\x06\x15\x11\x23\x58\x1c\x34\x4a\x2f\x28\ \x3d\x2a\x15\x1c\x22\x1c\x1e\x2c\x35\x2c\x1e\x17\x2b\x3c\x25\x2a\ \x46\x20\x21\x1c\x34\x1d\x2a\x2d\x1e\x2d\x34\x2d\x1e\x1c\x22\x1c\ \x2c\x2a\x37\x3f\x52\x02\x07\x2e\x4c\x36\x1d\x18\x29\x35\x1e\x26\ \x35\x2c\x29\x1a\x18\x20\x1b\x1a\x24\x35\x27\x20\x36\x28\x17\x18\ \x15\x3a\x14\x13\x2f\x1f\x1d\x26\x1d\x19\x21\x2d\x23\x22\x31\x2d\ \x2f\x20\x25\x31\x4b\x4b\xfe\x05\x00\x00\x00\xff\xff\x00\x45\xff\ \xf4\x02\x22\x02\xf8\x02\x26\x00\x31\x00\x00\x00\x07\x03\x1f\x00\ \x82\x00\x00\xff\xff\x00\x45\xff\x2b\x02\x22\x02\x6e\x02\x26\x00\ \x31\x00\x00\x00\x06\x02\xff\x4c\x00\x00\x00\xff\xff\x00\x45\xff\ \x28\x02\x22\x02\x6e\x02\x26\x00\x31\x00\x00\x00\x06\x02\xfe\x4f\ \x00\x00\x00\xff\xff\x00\x45\xff\x1e\x02\x22\x02\x6e\x02\x26\x00\ \x31\x00\x00\x00\x06\x02\xfc\x4f\x00\x00\x00\xff\xff\x00\x45\xff\ \x55\x02\x22\x02\x6e\x02\x26\x00\x31\x00\x00\x00\x06\x03\x04\x4f\ \x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x22\x03\x40\x02\x26\x00\ \x31\x00\x00\x00\x07\x02\xed\xff\xdc\x00\x86\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xd1\x02\x26\x00\x32\x00\x00\x00\x06\x02\xdf\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd1\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe1\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xd1\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe3\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xb0\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe5\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xba\x02\x26\x00\x32\x00\x00\x00\x06\x02\xed\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\x92\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe7\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xc5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe9\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd7\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xf1\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xca\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf3\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd1\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xf5\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x03\x1d\x02\x26\x00\x32\x00\x00\x00\x06\x03\x05\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x03\x37\x02\x26\x00\ \x32\x00\x00\x00\x06\x03\x07\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x03\x37\x02\x26\x00\x32\x00\x00\x00\x06\x03\x09\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x03\x37\x02\x26\x00\ \x32\x00\x00\x00\x06\x03\x0b\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \x1e\x01\xf9\x01\xe6\x02\x26\x00\x32\x00\x00\x00\x06\x02\xfc\x15\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd7\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xef\xfc\x00\x00\x00\x00\x01\x00\x4d\xff\ \x32\x02\x0f\x01\xe6\x00\x25\x00\x88\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x05\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\ \x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x12\ \xd0\xba\x00\x14\x00\x1b\x00\x17\x11\x12\x39\xb8\x00\x17\x10\xb9\ \x00\x20\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x23\x00\x01\xf4\x30\ \x31\x21\x0e\x01\x15\x14\x16\x33\x32\x37\x17\x0e\x01\x23\x22\x26\ \x35\x34\x36\x37\x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x01\xf9\x2d\x29\x1c\x12\x16\x12\x16\ \x0e\x2e\x13\x26\x34\x30\x20\x07\x04\x25\x57\x39\x58\x51\x53\x33\ \x3d\x2a\x44\x29\x52\x16\x36\x1d\x17\x17\x0d\x29\x0b\x10\x2b\x2a\ \x29\x3d\x17\x51\x2b\x36\x63\x61\x01\x2e\xfe\xdd\x45\x43\x2b\x2f\ \x01\x51\x00\x00\x01\x00\x4d\xff\xf4\x02\x56\x02\x6f\x00\x23\x00\ \x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\ \x00\x0f\x00\x03\x3e\x59\xba\x00\x0b\x00\x0f\x00\x1c\x11\x12\x39\ \xb9\x00\x18\x00\x01\xf4\xb8\x00\x0b\x10\xb9\x00\x1b\x00\x01\xf4\ \x30\x31\x01\x1e\x01\x15\x14\x0e\x02\x07\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x3e\ \x01\x35\x34\x26\x27\x02\x3f\x0a\x0d\x10\x1a\x22\x11\x43\x07\x04\ \x25\x57\x39\x58\x51\x53\x33\x3d\x2a\x44\x29\x18\x23\x30\x08\x06\ \x02\x6f\x0e\x20\x13\x17\x23\x19\x10\x05\xfe\x3a\x55\x2b\x36\x63\ \x61\x01\x2e\xfe\xdd\x45\x43\x2b\x2f\x01\x51\x04\x1c\x22\x0b\x15\ \x0a\x00\x00\xff\xff\x00\x4d\xff\xf4\x02\x56\x02\xd1\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xe1\xfb\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x02\x56\x02\xd1\x02\x26\x01\x85\x00\x00\x00\x06\x02\xdf\xfb\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x02\x56\x02\xd7\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xef\xfb\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x02\x56\x02\xb0\x02\x26\x01\x85\x00\x00\x00\x06\x02\xe5\xfb\ \x00\x00\x00\xff\xff\x00\x4d\xff\x1e\x02\x56\x02\x6f\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xfc\x08\x00\x00\x00\xff\xff\x00\x08\x00\ \x00\x02\x50\x02\xd1\x02\x26\x00\x34\x00\x00\x00\x06\x02\xdf\x00\ \x00\x00\x00\xff\xff\x00\x08\x00\x00\x02\x50\x02\xd1\x02\x26\x00\ \x34\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\xff\x00\x08\x00\ \x00\x02\x50\x02\xd1\x02\x26\x00\x34\x00\x00\x00\x06\x02\xe3\x00\ \x00\x00\x00\xff\xff\x00\x08\x00\x00\x02\x50\x02\xba\x02\x26\x00\ \x34\x00\x00\x00\x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd1\x02\x26\x00\x36\x00\x00\x00\x06\x02\xdf\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xd1\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xe1\x04\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd1\x02\x26\x00\x36\x00\x00\x00\x06\x02\xe3\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xba\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xed\x04\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xc9\x02\x26\x00\x36\x00\x00\x00\x06\x02\xeb\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x22\x02\x27\x01\xe6\x02\x26\x00\ \x36\x00\x00\x00\x07\x02\xfc\x00\x9e\x00\x04\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd7\x02\x26\x00\x36\x00\x00\x00\x06\x02\xef\x09\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xb0\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xe5\x04\x00\x00\x00\xff\xff\x00\x47\x00\ \x00\x02\x14\x02\xd1\x02\x26\x00\x37\x00\x00\x00\x06\x02\xe1\x14\ \x00\x00\x00\xff\xff\x00\x47\x00\x00\x02\x14\x02\xd1\x02\x26\x00\ \x37\x00\x00\x00\x06\x02\xf5\x14\x00\x00\x00\xff\xff\x00\x47\x00\ \x00\x02\x14\x02\xc9\x02\x26\x00\x37\x00\x00\x00\x06\x02\xeb\x14\ \x00\x00\x00\xff\xff\x00\x47\xff\x1e\x02\x14\x01\xe6\x02\x26\x00\ \x37\x00\x00\x00\x06\x02\xfc\x11\x00\x00\x00\x00\x02\x00\x3c\xff\ \xf4\x02\x18\x02\xda\x00\x14\x00\x39\x00\x6b\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\x0f\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\ \x27\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x2a\x00\x34\x00\x1d\x11\x12\x39\xb8\x00\x2a\x10\ \xb9\x00\x08\x00\x01\xf4\xba\x00\x15\x00\x34\x00\x1d\x11\x12\x39\ \xb8\x00\x15\x10\xb8\x00\x2d\xd0\xb8\x00\x15\x10\xb8\x00\x37\xd0\ \xb8\x00\x30\xd0\x30\x31\x25\x32\x3e\x02\x35\x3c\x01\x27\x2e\x01\ \x23\x22\x0e\x02\x15\x14\x1e\x02\x13\x1e\x01\x15\x14\x0e\x02\x23\ \x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x2e\x01\x27\x07\x27\ \x37\x2e\x01\x27\x37\x1e\x01\x17\x37\x17\x01\x2c\x28\x3b\x27\x13\ \x01\x23\x52\x27\x28\x3d\x29\x15\x1a\x2c\x3c\x7b\x42\x50\x21\x3e\ \x58\x37\x2f\x56\x42\x27\x22\x3d\x53\x32\x2f\x54\x1c\x0e\x3d\x2e\ \x96\x17\x84\x1a\x3c\x22\x26\x28\x4a\x22\x87\x17\x38\x1d\x35\x48\ \x2c\x0b\x16\x0b\x2f\x26\x18\x2c\x3b\x22\x26\x3d\x2b\x18\x02\x2a\ \x3d\xab\x79\x3c\x63\x47\x27\x20\x3d\x57\x36\x33\x53\x3b\x20\x2a\ \x26\x45\x65\x28\x4d\x29\x44\x13\x21\x11\x34\x13\x2a\x1a\x45\x29\ \x00\x00\x00\x00\x02\x00\x5d\xff\x33\x02\x1c\x02\xc8\x00\x16\x00\ \x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\ \x00\x08\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\ \x1b\xb9\x00\x12\x00\x03\x3e\x59\xba\x00\x05\x00\x08\x00\x12\x11\ \x12\x39\xba\x00\x15\x00\x12\x00\x08\x11\x12\x39\xb8\x00\x15\x10\ \xb9\x00\x17\x00\x01\xf4\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\ \xb8\x00\x08\x10\xb9\x00\x22\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\ \x25\x00\x01\xf4\x30\x31\x17\x23\x11\x33\x15\x07\x3e\x01\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x17\x35\x1e\x01\x33\x32\ \x3e\x02\x35\x34\x26\x23\x22\x06\x07\xaf\x52\x52\x02\x23\x56\x2b\ \x31\x4c\x33\x1b\x25\x3d\x50\x2b\x24\x4c\x21\x01\x23\x45\x1a\x20\ \x37\x28\x17\x41\x49\x20\x48\x26\xcd\x03\x95\xc9\x57\x22\x28\x23\ \x41\x5b\x39\x3e\x61\x44\x23\x22\x1d\x5c\x9b\x1f\x1a\x1b\x31\x48\ \x2d\x50\x63\x23\x26\x00\x00\x00\x01\x00\x37\xff\x27\x01\x8e\x01\ \xe6\x00\x15\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\x0e\x00\x01\xf4\xb8\x00\ \x00\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x13\x21\x11\x14\x0e\x02\ \x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x11\x23\x5a\x01\ \x34\x14\x2f\x4e\x3b\x26\x48\x1d\x1b\x1a\x39\x1c\x24\x30\x1c\x0b\ \xe2\x01\xe6\xfe\x0e\x2d\x4b\x37\x1e\x13\x0e\x3d\x0d\x0e\x12\x22\ \x31\x1f\x01\xb5\x00\x00\x00\x00\x02\x00\x5e\xff\xf4\x02\x11\x01\ \xf2\x00\x21\x00\x2f\x00\x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x1d\ \x00\x13\x11\x12\x39\xb8\x00\x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\ \x00\x01\xf4\xba\x00\x19\x00\x1d\x00\x13\x11\x12\x39\xb8\x00\x1d\ \x10\xb9\x00\x27\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\x2a\x00\x01\ \xf4\xb8\x00\x05\x10\xb9\x00\x2b\x00\x01\xf4\x30\x31\x01\x14\x0e\ \x02\x07\x1e\x03\x33\x32\x36\x37\x17\x0e\x03\x23\x22\x26\x35\x11\ \x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x07\x34\x2e\x02\x23\x22\x06\ \x07\x15\x3e\x03\x02\x11\x28\x55\x85\x5e\x01\x0e\x1e\x30\x23\x30\ \x59\x22\x20\x12\x31\x37\x3e\x20\x64\x62\x44\x07\x03\x28\x64\x33\ \x22\x3d\x2d\x1a\x50\x12\x1d\x27\x15\x2a\x51\x2a\x4e\x68\x3f\x1b\ \x01\x68\x29\x3d\x2c\x1c\x07\x19\x2d\x21\x14\x25\x15\x38\x0c\x19\ \x14\x0d\x6d\x5b\x01\x2a\x42\x20\x2e\x12\x24\x33\x27\x15\x1d\x13\ \x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\x00\x00\x02\x00\x3c\xff\ \xf4\x01\xfb\x01\xf2\x00\x0d\x00\x24\x00\x7f\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1c\x00\x20\x00\x13\x11\x12\x39\ \xb8\x00\x1c\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x17\x00\x20\x00\ \x13\x11\x12\x39\xb8\x00\x17\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x13\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x37\ \x35\x2e\x01\x23\x22\x0e\x02\x07\x34\x3e\x02\x33\x32\x16\x17\x33\ \x37\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x91\x4b\x44\x48\ \x41\x21\x3f\x20\x20\x37\x29\x18\x55\x24\x3e\x50\x2c\x2b\x48\x22\ \x03\x07\x42\x44\x07\x03\x1d\x54\x2e\x2f\x4d\x38\x1e\xf3\x58\x62\ \x49\xf2\x1f\x1a\x1b\x31\x44\x2b\x3b\x5f\x42\x24\x22\x20\x36\xfe\ \x1a\x40\x1f\x2d\x22\x41\x5e\x00\x02\x00\x5d\xff\xf4\x02\x1c\x01\ \xf2\x00\x0e\x00\x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x21\x2f\x1b\xb9\x00\x21\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xb8\x00\x21\x10\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1d\x00\x21\x00\x14\x11\x12\x39\ \xb8\x00\x1d\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x18\x00\x14\x00\ \x21\x11\x12\x39\xb8\x00\x18\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\ \x14\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x34\x26\x23\x22\x06\ \x07\x15\x1e\x01\x33\x32\x3e\x02\x37\x14\x0e\x02\x23\x22\x26\x27\ \x23\x07\x23\x11\x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x01\xc7\x41\ \x49\x24\x4a\x20\x23\x45\x1b\x20\x36\x28\x17\x55\x24\x3d\x50\x2b\ \x24\x50\x23\x03\x07\x42\x44\x07\x03\x1d\x5a\x31\x31\x4b\x33\x1a\ \xf7\x53\x63\x25\x24\xf2\x20\x19\x1a\x32\x46\x30\x3e\x62\x44\x23\ \x23\x1f\x36\x01\xe6\x40\x1f\x2d\x23\x41\x5b\x00\x01\x00\x3d\xff\ \xf4\x02\x08\x01\xf2\x00\x21\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\x25\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\ \x02\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x02\x08\x29\x46\ \x61\x37\x39\x64\x27\x25\x1d\x4d\x2d\x29\x45\x31\x1b\x1a\x2e\x42\ \x27\x2c\x46\x1f\x2a\x1f\x5f\x42\x35\x5d\x46\x29\xf2\x3c\x5f\x41\ \x22\x28\x24\x35\x1a\x23\x1b\x31\x44\x2a\x2a\x45\x32\x1b\x1e\x1a\ \x35\x1d\x2a\x22\x42\x5f\x00\x00\x02\x00\x3f\xff\xf4\x02\x13\x01\ \xf2\x00\x1e\x00\x27\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\ \x2f\x1b\xb9\x00\x1a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xbb\x00\x1f\x00\x01\x00\ \x12\x00\x04\x2b\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x1a\x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\ \x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x37\x21\x2e\x01\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x07\x2e\x01\x23\x22\x0e\x02\x15\x02\x13\x29\ \x47\x5f\x36\x3b\x5c\x24\x1d\x22\x47\x2b\x28\x42\x30\x1d\x03\xfe\ \x84\x02\x01\x22\x3e\x55\x33\x31\x56\x40\x25\x54\x0a\x50\x42\x1f\ \x37\x2a\x18\xf2\x3c\x5e\x41\x23\x22\x17\x36\x15\x18\x18\x2b\x3f\ \x27\x09\x19\x0d\x33\x54\x3c\x21\x23\x42\x5f\x14\x48\x4f\x14\x26\ \x39\x24\x00\x00\x02\x00\x45\xff\xf4\x02\x19\x01\xf2\x00\x1c\x00\ \x23\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\ \x00\x18\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x03\x00\x04\x2b\ \xb8\x00\x0e\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\ \x20\x00\x01\xf4\x30\x31\x37\x34\x36\x37\x21\x2e\x01\x23\x22\x06\ \x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\ \x37\x14\x16\x33\x32\x36\x37\x45\x02\x02\x01\x7b\x05\x55\x54\x2a\ \x4a\x21\x1d\x24\x5e\x39\x39\x5c\x41\x24\x24\x41\x59\x35\x33\x53\ \x3b\x20\x4c\x51\x42\x48\x52\x07\xde\x0e\x19\x09\x4a\x59\x17\x14\ \x38\x17\x1d\x22\x42\x5e\x3c\x3c\x5f\x42\x23\x20\x3d\x57\x2b\x4f\ \x4e\x52\x4b\x00\x02\x00\x3c\xff\x27\x01\xfb\x01\xf2\x00\x21\x00\ \x2f\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\ \x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1e\x2f\x1b\ \xb9\x00\x1e\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x1e\x10\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x07\x00\x1e\x00\x14\x11\x12\x39\xba\x00\x18\x00\ \x1e\x00\x14\x11\x12\x39\xb8\x00\x0a\x10\xb9\x00\x22\x00\x01\xf4\ \xb8\x00\x07\x10\xb9\x00\x24\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\ \x25\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x28\x00\x01\xf4\x30\x31\ \x17\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\x27\ \x37\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x7d\x26\x50\ \x25\x46\x4b\x02\x01\x1d\x54\x2d\x2f\x4d\x38\x1e\x24\x3d\x51\x2c\ \x2b\x4a\x20\x03\x07\x42\x76\x6d\x30\x61\x28\xc1\x46\x43\x21\x40\ \x20\x1f\x37\x2a\x18\x4d\x6a\x18\x15\x46\x3b\x62\x1d\x2a\x22\x3f\ \x5b\x39\x39\x5c\x40\x23\x23\x1f\x36\xfe\x07\x5c\x6a\x1a\x1a\xee\ \x49\xe2\x1f\x1a\x1a\x30\x41\x27\x52\x60\x00\x00\x01\x00\x4d\xff\ \x33\x01\xfb\x01\xe6\x00\x16\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xba\x00\ \x03\x00\x0a\x00\x06\x11\x12\x39\xb9\x00\x0f\x00\x01\xf4\xb8\x00\ \x03\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x05\x23\x35\x37\x0e\x01\ \x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x3e\x02\x37\x11\x33\ \x01\xfb\x52\x04\x27\x58\x39\x57\x51\x52\x34\x3c\x16\x25\x24\x26\ \x15\x52\xcd\xae\x72\x28\x37\x63\x61\x01\x2e\xfe\xdd\x45\x43\x0b\ \x16\x21\x16\x01\x53\x00\x00\x00\x01\x00\x2e\xff\xf4\x02\x1e\x01\ \xe6\x00\x20\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\ \xb9\x00\x0f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1f\ \x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xba\x00\x02\x00\ \x17\x00\x00\x11\x12\x39\xba\x00\x08\x00\x0f\x00\x0b\x11\x12\x39\ \xb8\x00\x0b\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\ \x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\ \x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x21\x23\x27\x23\x0e\x01\ \x23\x22\x27\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x33\x32\x36\ \x37\x11\x33\x11\x14\x33\x32\x36\x37\x11\x33\x02\x1e\x40\x07\x03\ \x12\x31\x2a\x4a\x12\x15\x34\x29\x33\x38\x4f\x35\x1a\x26\x13\x43\ \x36\x1a\x25\x13\x4e\x40\x22\x2a\x54\x26\x2e\x4d\x49\x01\x5c\xfe\ \xab\x56\x25\x26\x01\x60\xfe\xab\x56\x25\x26\x01\x60\x00\x00\x00\ \x01\x00\x3f\xff\xf4\x01\xc6\x01\xe6\x00\x12\x00\x54\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\ \x59\xba\x00\x03\x00\x06\x00\x11\x11\x12\x39\xb8\x00\x06\x10\xb9\ \x00\x0d\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x10\x00\x01\xf4\x30\ \x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x27\x37\x1e\x01\x33\x32\ \x36\x37\x11\x33\x01\xc6\x44\x07\x03\x26\x6f\x44\x1b\x2e\x17\x13\ \x1a\x23\x1d\x37\x65\x2c\x52\x73\x3b\x44\x09\x0b\x47\x09\x08\x3f\ \x4c\x01\x1d\x00\x01\x00\x36\xff\x78\x02\x13\x01\xf2\x00\x19\x00\ \x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\ \x00\x03\x3e\x59\xb9\x00\x08\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\ \x07\x10\xb8\x00\x03\xd0\xb8\x00\x14\x10\xb9\x00\x0d\x00\x01\xf4\ \x30\x31\x25\x33\x15\x23\x07\x23\x35\x23\x35\x33\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x01\x8a\x89\x8c\x0b\ \x44\xef\xef\x35\x46\x23\x38\x1a\x12\x21\x50\x28\x35\x48\x2b\x13\ \x43\x43\x88\x88\x43\xe7\x41\x44\x0c\x0a\x3d\x0b\x11\x1d\x35\x4a\ \x2d\x00\x00\x00\x01\x00\x33\x00\x00\x02\x25\x01\xe6\x00\x0d\x00\ \x40\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x03\x3e\x59\xba\x00\x06\x00\x0c\x00\x00\x11\x12\x39\x30\ \x31\x21\x23\x03\x2e\x01\x27\x23\x0e\x01\x07\x03\x23\x13\x33\x02\ \x25\x53\x70\x0f\x1b\x0d\x04\x0d\x19\x0f\x70\x4f\xc9\x5c\x01\x14\ \x25\x48\x23\x23\x48\x25\xfe\xec\x01\xe6\x00\x00\x01\x00\x08\x00\ \x00\x02\x50\x01\xe6\x00\x21\x00\x69\x00\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\ \x3e\x59\xba\x00\x06\x00\x20\x00\x01\x11\x12\x39\xba\x00\x10\x00\ \x16\x00\x15\x11\x12\x39\xba\x00\x1b\x00\x16\x00\x01\x11\x12\x39\ \x30\x31\x21\x23\x03\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x07\x03\x23\x13\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x3f\x01\x33\x02\x50\x54\x3b\x07\x0c\x05\x04\x07\x0e\x08\x3b\ \x46\x3c\x08\x0e\x08\x04\x07\x0b\x06\x3b\x4e\x6a\x63\x3a\x07\x0c\ \x08\x04\x06\x0c\x09\x38\x62\x01\x19\x23\x42\x22\x22\x43\x22\xfc\ \xfc\x23\x42\x22\x22\x42\x23\xfe\xe7\x01\xe6\xf6\x23\x45\x25\x20\ \x44\x2a\xf5\x00\x01\x00\x31\x00\x00\x02\x27\x02\xd4\x00\x1d\x00\ \x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x03\x3e\x59\xb8\x00\x19\x10\xb9\x00\x03\x00\x01\xf4\xba\ \x00\x0e\x00\x08\x00\x19\x11\x12\x39\xb8\x00\x0e\x10\xb8\x00\x07\ \xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x0f\x01\x13\x23\x03\x2e\x01\ \x27\x23\x0e\x01\x07\x03\x23\x13\x3e\x03\x33\x32\x16\x17\x07\x02\ \x07\x09\x15\x0c\x30\x3d\x11\x1b\xe3\x53\x77\x0e\x1f\x0f\x04\x0d\ \x1b\x0c\x6a\x4e\xe2\x0d\x24\x30\x3e\x27\x11\x21\x0e\x12\x02\x89\ \x03\x04\x3c\x2e\x3f\xfe\x19\x01\x0d\x20\x4a\x23\x23\x49\x21\xfe\ \xf3\x02\x2a\x24\x3e\x2e\x1a\x05\x05\x41\x00\x00\x01\x00\x1a\xff\ \x33\x01\xee\x01\xe6\x00\x0c\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xba\x00\ \x02\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\x05\x23\x11\x23\ \x05\x23\x37\x03\x33\x17\x37\x35\x33\x01\xee\x52\x04\xfe\xfa\x5e\ \xc2\xdc\x5c\xb3\x73\x52\xcd\x01\xcc\xff\xc1\x01\x25\xf0\x6e\x82\ \x00\x00\x00\x00\x03\x00\x34\x00\x00\x02\x0a\x02\xd4\x00\x15\x00\ \x19\x00\x25\x00\x84\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\ \x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\ \x2f\x1b\xb9\x00\x16\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\ \x00\x09\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x0f\x00\x01\xf4\xb8\ \x00\x12\xd0\xb8\x00\x0c\x10\xb8\x00\x15\xd0\xb8\x00\x16\x10\xb8\ \x00\x20\xdc\xb8\x00\x1a\xdc\x30\x31\x13\x34\x36\x33\x32\x16\x17\ \x07\x26\x23\x22\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x21\ \x33\x11\x23\x13\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x76\ \x45\x49\x17\x29\x11\x11\x1d\x1a\x45\x67\x67\x52\x42\x42\x01\x28\ \x52\x52\x29\x1d\x26\x26\x1d\x1d\x27\x27\x02\x33\x4b\x56\x09\x07\ \x3f\x0c\x5e\x4d\x43\xfe\x5d\x01\xa3\x3e\x05\xfe\x1a\x02\xca\x23\ \x1d\x1d\x23\x23\x1d\x1d\x23\x00\x02\x00\x39\xff\xf4\x02\x17\x02\ \xd4\x00\x15\x00\x25\x00\x82\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x03\x2f\x1b\xb9\x00\x03\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x03\ \x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x0f\x00\x01\ \xf4\xb8\x00\x12\xd0\xb8\x00\x0c\x10\xb8\x00\x15\xd0\xb8\x00\x19\ \x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x13\x34\x36\x33\x32\x16\x17\ \x07\x26\x23\x22\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x01\ \x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x3a\x01\x37\x7b\ \x45\x49\x17\x29\x11\x12\x1b\x1c\x44\x67\x67\x52\x42\x42\x01\x9c\ \x09\x16\x10\x2f\x28\x52\x0e\x09\x04\x07\x07\x02\x33\x4b\x56\x09\ \x07\x3f\x0c\x5e\x4d\x43\xfe\x5d\x01\xa3\x3e\x05\xfe\x16\x04\x04\ \x38\x36\x02\x66\xfd\x94\x14\x10\x02\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x01\xf2\x02\x06\x01\x9f\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xdf\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xd1\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe1\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xb0\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe5\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xba\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xed\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\x92\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xc5\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe9\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xd7\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xf1\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x01\xfb\x01\xf2\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xfc\x09\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd7\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xef\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1b\x02\xf2\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x0d\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfc\x02\xf2\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x0f\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x04\x03\x10\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x11\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x03\x22\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x13\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x01\xfb\x02\xd1\x02\x26\x01\ \x9f\x00\x00\x00\x26\x02\xe3\x07\x00\x00\x06\x02\xfc\x08\x00\xff\ \xff\x00\x3c\xff\xf4\x01\xfb\x03\x15\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x15\x07\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x03\ \x15\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x17\x07\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x01\xfb\x03\x47\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x19\x07\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x03\ \x22\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x1b\x07\x00\x00\x00\xff\ \xff\x00\x3c\xff\x1e\x01\xfb\x02\xc5\x02\x26\x01\x9f\x00\x00\x00\ \x26\x02\xe9\x07\x00\x00\x06\x02\xfc\x08\x00\x00\x02\x00\x3c\xff\ \x32\x02\x10\x01\xf2\x00\x0d\x00\x35\x00\xa6\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x31\x2f\x1b\xb9\x00\x31\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x05\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\ \x59\xb8\x00\x31\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x2e\x00\x31\ \x00\x13\x11\x12\x39\xb8\x00\x2e\x10\xb9\x00\x05\x00\x01\xf4\xba\ \x00\x16\x00\x13\x00\x31\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x06\ \x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x26\ \x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\x1a\x10\xb8\x00\x2c\xd0\x30\ \x31\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x07\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x0e\x01\x15\x14\x16\x33\ \x32\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x27\x23\x0e\x01\ \x23\x22\x2e\x02\x91\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\ \x55\x24\x3e\x50\x2c\x2b\x48\x22\x03\x07\x42\x2d\x2a\x1c\x13\x14\ \x14\x15\x0e\x2d\x13\x26\x35\x31\x20\x08\x03\x1d\x54\x2e\x2f\x4d\ \x38\x1e\xf3\x58\x62\x49\xf2\x1f\x1a\x1b\x31\x44\x2b\x3b\x5f\x42\ \x24\x22\x20\x36\xfe\x1a\x16\x36\x1d\x17\x17\x0d\x29\x0b\x10\x2b\ \x2a\x29\x3d\x17\x3c\x1f\x2d\x22\x41\x5e\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x01\xf2\x02\x06\x01\xa4\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xd1\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\xc5\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe9\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xc9\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xeb\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\xc6\x02\x26\x01\ \xa4\x00\x00\x00\x06\x03\x20\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xd1\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\x92\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xb0\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe5\x07\ \x00\x00\x00\x00\x03\x00\x2a\xff\xf4\x02\x41\x02\x9c\x00\x0d\x00\ \x1b\x00\x47\x00\x90\x00\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\ \x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x05\ \x00\x01\xf4\xba\x00\x08\x00\x21\x00\x33\x11\x12\x39\xba\x00\x11\ \x00\x33\x00\x21\x11\x12\x39\xb8\x00\x11\x10\xb8\x00\x2b\xd0\xb8\ \x00\x0b\xd0\xb8\x00\x33\x10\xb9\x00\x19\x00\x01\xf4\xb8\x00\x08\ \x10\xb8\x00\x1e\xd0\xb8\x00\x11\x10\xb9\x00\x3b\x00\x01\xf4\xb8\ \x00\x1e\x10\xb8\x00\x45\xd0\xb8\x00\x3e\xd0\xb8\x00\x1c\x10\xb8\ \x00\x47\xd0\x30\x31\x37\x14\x1e\x02\x33\x32\x36\x37\x2e\x01\x27\ \x0e\x01\x13\x14\x16\x17\x3e\x03\x35\x34\x26\x23\x22\x06\x01\x26\ \x27\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x2e\x01\x35\x34\ \x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x1e\x01\x17\x3e\x01\x37\ \x33\x0e\x01\x07\x16\x17\x7a\x14\x22\x2e\x1a\x1f\x3a\x1a\x30\x55\ \x22\x20\x2a\x46\x10\x0e\x15\x25\x1d\x10\x1b\x21\x23\x26\x01\x6a\ \x41\x48\x24\x57\x38\x2c\x48\x33\x1d\x14\x23\x2c\x18\x15\x17\x15\ \x25\x35\x21\x3d\x42\x19\x28\x32\x1a\x20\x53\x2d\x1c\x29\x0e\x4c\ \x12\x34\x24\x3c\x35\xaf\x1b\x2d\x20\x11\x1c\x18\x2a\x64\x36\x1c\ \x3d\x01\x2d\x1b\x3a\x1e\x0f\x1f\x21\x25\x16\x1d\x2b\x36\xfd\xc9\ \x14\x37\x23\x28\x1b\x30\x43\x28\x20\x36\x2d\x27\x12\x29\x4f\x23\ \x21\x38\x2a\x18\x48\x3a\x20\x34\x2f\x29\x14\x33\x5e\x27\x28\x5f\ \x39\x41\x76\x34\x2e\x11\x00\x00\x03\x00\x47\xff\xf4\x02\x11\x02\ \x8a\x00\x0b\x00\x1b\x00\x27\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x06\x2f\x1b\xb9\x00\x06\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x06\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x14\x00\x01\xf4\ \xba\x00\x1c\x00\x14\x00\x0c\x11\x12\x39\xb8\x00\x1c\x2f\xb8\x00\ \x22\xdc\x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x03\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x35\x34\x2e\x02\x03\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\x6b\x7a\x7a\x6b\ \x6b\x7a\x7a\x6b\x21\x38\x29\x16\x55\x43\x43\x55\x16\x29\x38\x21\ \x19\x25\x25\x19\x19\x25\x25\x0c\xad\xa0\xa1\xa8\xa8\xa1\xa0\xad\ \x02\x54\x1e\x41\x63\x45\x89\x82\x82\x89\x45\x63\x41\x1e\xfe\xbd\ \x23\x20\x1f\x23\x23\x1f\x20\x23\x00\x00\x00\x00\x01\x00\x62\x00\ \x00\x02\x10\x02\x7e\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\ \x07\x00\x01\xf4\x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\ \x37\x33\x11\x02\x10\xfe\x52\xb5\x88\x33\x4c\x1e\x3d\x44\x44\x44\ \x01\xd6\x35\x08\x17\x10\xfd\xc6\x00\x00\x00\x00\x01\x00\x45\x00\ \x00\x02\x0a\x02\x8a\x00\x1f\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb9\x00\x1c\x00\ \x01\xf4\xb8\x00\x00\xd0\xba\x00\x05\x00\x0f\x00\x1e\x11\x12\x39\ \xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x37\x3e\x03\x35\ \x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x07\x3e\x01\x3b\x01\x15\x21\x49\x51\x7d\x55\x2c\x44\x47\x2d\ \x4d\x1f\x2f\x2b\x63\x44\x30\x4d\x36\x1d\x2b\x4e\x6c\x41\x1d\x3d\ \x1d\xd2\xfe\x3f\x31\x48\x74\x61\x54\x28\x37\x46\x2d\x20\x2f\x2c\ \x35\x1b\x31\x46\x2a\x2d\x5b\x61\x69\x3b\x02\x04\x47\x00\x00\x00\ \x01\x00\x39\xff\xf4\x02\x06\x02\x8a\x00\x33\x00\x53\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x0d\x00\x1d\x00\x30\x11\x12\x39\ \xb8\x00\x0d\x2f\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\ \x16\x00\x01\xf4\xba\x00\x26\x00\x0d\x00\x0e\x11\x12\x39\x30\x31\ \x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\x02\x23\x35\x32\x3e\x02\ \x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\ \x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x63\x20\x59\ \x3e\x21\x38\x29\x17\x19\x38\x58\x3f\x39\x4f\x32\x17\x47\x3b\x2d\ \x50\x20\x2c\x28\x66\x3e\x2d\x4d\x39\x20\x4c\x3c\x20\x39\x2c\x19\ \x24\x3f\x54\x30\x53\x70\x23\x84\x1e\x2e\x11\x1e\x2b\x1b\x1c\x2f\ \x22\x12\x3f\x12\x20\x2c\x19\x2f\x36\x24\x1d\x34\x23\x2d\x16\x29\ \x3c\x27\x3a\x4a\x14\x04\x07\x1b\x29\x36\x21\x2a\x44\x2f\x19\x37\ \x23\x00\x00\x00\x02\x00\x27\x00\x00\x02\x21\x02\x7e\x00\x09\x00\ \x14\x00\x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x11\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x09\xd0\xb8\x00\x0e\x10\xb8\x00\x0b\xd0\xb8\x00\x09\x10\xb8\x00\ \x10\xd0\xb8\x00\x00\x10\xb8\x00\x13\xd0\x30\x31\x25\x35\x3e\x01\ \x37\x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\ \x33\x01\x70\x01\x02\x02\x05\x0f\x22\x10\xad\x01\x9f\x63\x4e\xfe\ \xb7\x01\x3f\x58\x63\xf2\xc6\x1a\x3d\x1a\x17\x2f\x17\xda\x42\xb0\ \xb0\x37\x01\x97\xfe\x74\x00\x00\x01\x00\x38\xff\xf4\x02\x0a\x02\ \x7e\x00\x28\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\ \x1b\xb9\x00\x23\x00\x03\x3e\x59\xbb\x00\x19\x00\x01\x00\x0d\x00\ \x04\x2b\xb8\x00\x23\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x16\x00\ \x23\x00\x12\x11\x12\x39\xb8\x00\x16\x10\xb8\x00\x11\xd0\xb8\x00\ \x12\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x37\x1e\x03\x33\x32\x3e\ \x02\x35\x34\x26\x23\x22\x06\x07\x27\x13\x21\x15\x21\x07\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x27\x61\x10\x24\ \x2b\x35\x20\x22\x3b\x2c\x19\x55\x48\x28\x38\x22\x2c\x15\x01\x69\ \xfe\xe0\x11\x1c\x35\x25\x2e\x50\x3b\x22\x27\x42\x55\x2e\x2b\x45\ \x37\x2d\x12\x81\x0e\x1b\x14\x0c\x15\x26\x36\x21\x42\x4a\x14\x13\ \x1c\x01\x33\x47\xbd\x0c\x0e\x18\x31\x4b\x34\x34\x50\x37\x1d\x0f\ \x18\x1f\x11\x00\x02\x00\x4d\xff\xf4\x02\x16\x02\x8a\x00\x0d\x00\ \x30\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\x00\ \x2d\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\ \x00\x23\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x19\x00\x04\x2b\ \xb8\x00\x23\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x16\x00\x23\x00\ \x2d\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\ \x2d\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x25\x32\x3e\x02\x35\x34\ \x26\x23\x22\x06\x07\x1e\x01\x13\x2e\x01\x23\x22\x0e\x02\x07\x3e\ \x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x01\x41\x1c\x32\x24\x15\x46\x42\x26\x54\x29\ \x09\x55\xe1\x19\x42\x24\x26\x46\x35\x21\x01\x26\x5f\x30\x2c\x49\ \x35\x1d\x23\x3a\x4d\x2b\x34\x59\x42\x25\x2c\x4a\x61\x34\x3b\x57\ \x20\x35\x14\x25\x33\x20\x42\x45\x27\x2f\x5d\x60\x01\xde\x17\x1b\ \x1c\x40\x69\x4d\x26\x2d\x19\x31\x4a\x31\x2e\x4b\x36\x1e\x26\x4d\ \x73\x4d\x60\x87\x55\x27\x27\x1d\x00\x00\x00\x00\x01\x00\x46\x00\ \x00\x02\x14\x02\x7e\x00\x0f\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x07\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\ \x21\x35\x21\x15\x0e\x03\x07\x23\xe2\x04\x1a\x32\x4d\x37\xfe\x90\ \x01\xce\x3f\x52\x32\x16\x03\x56\x5b\x95\x86\x7e\x43\x47\x33\x48\ \x84\x89\x98\x5e\x00\x00\x00\x00\x03\x00\x44\xff\xf4\x02\x13\x02\ \x8a\x00\x0d\x00\x1a\x00\x40\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x29\x2f\x1b\xb9\x00\x29\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x3c\x2f\x1b\xb9\x00\x3c\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x29\x10\xb9\x00\x13\x00\x01\xf4\xba\x00\x0b\x00\ \x03\x00\x13\x11\x12\x39\xb8\x00\x0b\x2f\xb8\x00\x31\xd0\xb8\x00\ \x31\x2f\xb8\x00\x0e\xdc\xb8\x00\x0b\x10\xb8\x00\x20\xdc\x30\x31\ \x37\x14\x16\x33\x32\x36\x35\x34\x2e\x02\x27\x0e\x01\x37\x36\x35\ \x34\x26\x23\x22\x06\x15\x14\x1e\x02\x07\x34\x3e\x02\x37\x35\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x8f\x57\x4a\x48\x4c\x1f\x36\x49\ \x2a\x2f\x3e\xd1\x50\x42\x3f\x36\x42\x1a\x2e\x3d\xf8\x18\x26\x31\ \x1a\x28\x39\x1d\x35\x48\x2b\x2f\x49\x33\x1b\x39\x28\x1a\x2e\x22\ \x13\x1f\x3a\x55\x37\x36\x57\x3c\x21\xab\x36\x44\x3e\x32\x21\x2d\ \x20\x19\x0e\x1a\x41\x81\x3a\x46\x30\x41\x38\x2f\x1d\x29\x20\x19\ \xc4\x21\x34\x2a\x1f\x0c\x04\x19\x49\x33\x25\x3c\x2b\x18\x19\x2d\ \x3f\x25\x2d\x4f\x1c\x04\x0d\x1e\x26\x33\x22\x24\x3e\x2e\x1a\x1a\ \x2f\x40\x00\x00\x02\x00\x43\xff\xf4\x02\x0c\x02\x8a\x00\x0d\x00\ \x30\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\ \x23\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\ \x00\x2d\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x19\x00\x04\x2b\ \xba\x00\x16\x00\x2d\x00\x23\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\ \x03\x00\x01\xf4\xb8\x00\x23\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x2d\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x01\x32\x36\x37\x2e\x01\ \x23\x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\ \x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x23\x22\x26\x27\x01\x19\x25\x54\x2a\x0a\x53\x47\x1d\x31\x24\ \x15\x45\x59\x18\x42\x25\x26\x45\x35\x20\x02\x27\x5d\x31\x2c\x49\ \x34\x1d\x22\x3b\x4d\x2a\x34\x5a\x42\x25\x2d\x4a\x60\x34\x3b\x57\ \x20\x01\x36\x27\x2e\x5e\x60\x14\x25\x34\x1f\x42\x45\xcb\x17\x1c\ \x1c\x41\x68\x4d\x26\x2c\x19\x31\x4a\x31\x2e\x4b\x36\x1e\x26\x4d\ \x73\x4d\x60\x87\x55\x27\x26\x1d\x00\x00\x00\x00\x03\x00\x47\xff\ \xf4\x02\x11\x02\x4a\x00\x0b\x00\x1b\x00\x27\x00\x4b\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\ \xb8\x00\x06\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\ \x14\x00\x01\xf4\xba\x00\x1c\x00\x14\x00\x0c\x11\x12\x39\xb8\x00\ \x1c\x2f\xb8\x00\x22\xdc\x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x03\x22\x06\x15\x14\x1e\x02\x33\x32\x3e\x02\x35\ \x34\x26\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x6b\x7a\x7a\x6b\x6b\x7a\x7a\x6b\x43\x55\x16\x29\x38\x21\x21\x38\ \x29\x16\x55\x43\x19\x25\x25\x19\x19\x25\x25\x0c\x9c\x92\x90\x98\ \x98\x90\x92\x9c\x02\x13\x6f\x76\x3d\x59\x3a\x1c\x1c\x3a\x59\x3d\ \x76\x6f\xfe\xdf\x23\x20\x1f\x23\x23\x1f\x20\x23\x00\x00\x00\x00\ \x01\x00\x62\x00\x00\x02\x10\x02\x3e\x00\x0c\x00\x3d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\xb8\x00\x0a\x10\xb8\x00\ \x05\xd0\xb9\x00\x07\x00\x01\xf4\x30\x31\x25\x15\x21\x35\x33\x11\ \x23\x35\x3e\x01\x37\x33\x11\x02\x10\xfe\x52\xb5\x88\x33\x4c\x1e\ \x3d\x44\x44\x44\x01\x96\x35\x08\x17\x10\xfe\x06\x00\x00\x00\x00\ \x01\x00\x45\x00\x00\x02\x0a\x02\x4a\x00\x1d\x00\x41\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\ \xb9\x00\x17\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0d\x10\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x1a\xd0\x30\x31\x37\x3e\ \x01\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x02\x07\x3e\x01\x3b\x01\x15\x21\x49\xa5\xaa\x44\x47\x2d\ \x4d\x1f\x2f\x2b\x63\x44\x30\x4d\x36\x1d\x27\x48\x67\x40\x1d\x3d\ \x1d\xc2\xfe\x3f\x31\x6e\xa6\x40\x3a\x48\x2d\x20\x2f\x2c\x35\x1b\ \x33\x47\x2c\x26\x4e\x51\x55\x2e\x02\x04\x47\x00\x01\x00\x39\xff\ \xaa\x02\x06\x02\x4a\x00\x33\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x30\x00\x04\x2b\xbb\x00\x0e\x00\x01\x00\x0d\x00\x04\x2b\xb8\ \x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\xba\x00\x26\x00\x0d\x00\x0e\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x35\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\ \x26\x27\x63\x20\x59\x3e\x21\x38\x29\x17\x19\x38\x58\x3f\x39\x4f\ \x32\x17\x47\x3b\x2d\x50\x20\x2c\x28\x66\x3e\x2d\x4d\x39\x20\x4c\ \x3c\x20\x39\x2c\x19\x24\x3f\x54\x30\x53\x70\x23\x3a\x1e\x2d\x11\ \x1f\x2c\x1c\x1d\x30\x21\x12\x40\x12\x21\x2c\x1a\x2f\x38\x24\x1d\ \x34\x23\x2d\x16\x2a\x3d\x27\x3b\x4b\x14\x04\x07\x1c\x29\x36\x22\ \x2c\x45\x30\x19\x37\x23\x00\x00\x02\x00\x27\xff\xb6\x02\x21\x02\ \x3e\x00\x09\x00\x14\x00\x3c\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x09\x3e\x59\xbb\x00\x14\ \x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x14\x10\xb8\x00\x00\xd0\xba\ \x00\x04\x00\x11\x00\x0d\x11\x12\x39\xb8\x00\x0a\x10\xb8\x00\x0e\ \xd0\x30\x31\x25\x35\x3e\x01\x37\x23\x0e\x01\x0f\x01\x05\x23\x15\ \x23\x35\x21\x35\x01\x33\x11\x33\x01\x70\x01\x02\x02\x05\x0f\x21\ \x10\xaf\x01\xa0\x63\x4e\xfe\xb7\x01\x3f\x58\x63\xa1\xd7\x1a\x3d\ \x1a\x19\x31\x17\xe7\x43\xa8\xa8\x37\x01\xa9\xfe\x63\x00\x00\x00\ \x01\x00\x38\xff\xaa\x02\x0a\x02\x3e\x00\x28\x00\x44\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x09\x3e\x59\xbb\ \x00\x05\x00\x01\x00\x23\x00\x04\x2b\xbb\x00\x19\x00\x01\x00\x0d\ \x00\x04\x2b\xba\x00\x16\x00\x23\x00\x12\x11\x12\x39\xb8\x00\x16\ \x10\xb8\x00\x11\xd0\xb8\x00\x12\x10\xb9\x00\x14\x00\x01\xf4\x30\ \x31\x37\x1e\x03\x33\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x27\ \x13\x21\x15\x21\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\ \x22\x2e\x02\x27\x61\x10\x24\x2b\x35\x20\x22\x3b\x2c\x19\x55\x48\ \x28\x38\x22\x2c\x15\x01\x69\xfe\xe0\x11\x1c\x35\x25\x2e\x50\x3b\ \x22\x27\x42\x55\x2e\x2b\x45\x37\x2d\x12\x37\x0e\x1a\x14\x0c\x15\ \x26\x37\x23\x44\x4a\x14\x13\x1c\x01\x37\x47\xc1\x0d\x0d\x17\x32\ \x4c\x35\x35\x51\x39\x1d\x0f\x18\x20\x11\x00\xff\xff\x00\x4e\xff\ \xf4\x02\x17\x02\x8a\x02\x06\x01\xd5\x01\x00\x00\x01\x00\x46\xff\ \xb6\x02\x14\x02\x3e\x00\x0f\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x09\x3e\x59\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x09\xd0\x30\x31\x17\x3e\x03\x37\x21\x35\x21\x15\x0e\ \x03\x07\x23\xe2\x04\x1a\x32\x4d\x37\xfe\x90\x01\xce\x3f\x52\x31\ \x16\x04\x56\x4a\x5c\x98\x89\x80\x44\x47\x33\x49\x85\x8c\x9b\x60\ \x00\x00\x00\xff\xff\x00\x44\xff\xf4\x02\x13\x02\x8a\x02\x06\x01\ \xd7\x00\x00\x00\x02\x00\x43\xff\xaa\x02\x0c\x02\x4a\x00\x0d\x00\ \x30\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\ \x23\x00\x09\x3e\x59\xbb\x00\x11\x00\x01\x00\x2d\x00\x04\x2b\xbb\ \x00\x00\x00\x01\x00\x19\x00\x04\x2b\xba\x00\x16\x00\x2d\x00\x23\ \x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x23\ \x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x25\x32\x36\x37\x2e\x01\x23\ \x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x01\x19\x25\x54\x2a\x08\x54\x48\x1d\x31\x24\x15\ \x45\x59\x18\x42\x25\x25\x45\x35\x21\x02\x27\x5d\x31\x2c\x49\x34\ \x1d\x22\x3b\x4d\x2a\x34\x5a\x42\x25\x2d\x4a\x60\x34\x3b\x57\x20\ \xed\x27\x2f\x61\x65\x14\x26\x34\x21\x44\x49\xcc\x17\x1b\x1c\x40\ \x69\x4d\x26\x2c\x1a\x33\x4c\x32\x2e\x4d\x37\x1e\x26\x4d\x73\x4d\ \x63\x8b\x57\x28\x27\x1d\x00\x00\x01\x00\xdb\xff\xf4\x01\x7d\x00\ \x9d\x00\x0b\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x03\xdc\x30\x31\x37\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\xdb\x2f\x22\x22\x2f\x2f\x22\ \x22\x2f\x48\x26\x2f\x2f\x26\x26\x2e\x2e\x00\x00\x01\x00\xc5\xff\ \x2b\x01\x8c\x00\x9b\x00\x12\x00\x0b\x00\xba\x00\x0c\x00\x06\x00\ \x03\x2b\x30\x31\x17\x3e\x01\x37\x0e\x01\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x07\xc5\x3e\x3e\x02\x05\x09\x05\x20\x2e\ \x30\x20\x2d\x2d\x5d\x53\xa1\x1c\x4f\x3c\x01\x01\x25\x26\x25\x27\ \x45\x3b\x58\x79\x1f\x00\x00\xff\xff\x00\xdb\xff\xf4\x01\x7d\x02\ \x03\x02\x27\x01\xe3\x00\x00\x01\x66\x00\x06\x01\xe3\x00\x00\xff\ \xff\x00\xc5\xff\x2b\x01\x8c\x02\x03\x02\x27\x01\xe3\x00\x00\x01\ \x66\x00\x06\x01\xe4\x00\x00\x00\x03\x00\x20\xff\xf4\x02\x38\x00\ \x8a\x00\x0b\x00\x17\x00\x23\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x09\ \x10\xb8\x00\x03\xdc\xb8\x00\x0f\xd0\xb8\x00\x1b\xd0\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\ \x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\x14\x06\ \x23\x22\x26\x20\x29\x1d\x1d\x28\x28\x1d\x1d\x29\xc6\x29\x1d\x1d\ \x29\x29\x1d\x1d\x29\xc7\x28\x1d\x1d\x29\x29\x1d\x1d\x28\x3f\x22\ \x29\x29\x22\x21\x2a\x2a\x21\x22\x29\x29\x22\x21\x2a\x2a\x21\x22\ \x29\x29\x22\x21\x2a\x2a\x00\x00\x02\x00\xe3\xff\xf4\x01\x75\x02\ \x9e\x00\x05\x00\x11\x00\x2d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xb8\x00\x09\xdc\xb8\x00\ \x05\xdc\x30\x31\x01\x27\x33\x07\x03\x23\x07\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x01\x06\x02\x50\x02\x0a\x38\x2d\x2b\x1e\ \x1e\x2b\x2b\x1e\x1e\x2b\x02\x40\x5e\x5e\xfe\xa8\xa6\x23\x29\x29\ \x23\x24\x2a\x2a\x00\x00\x00\x00\x02\x00\xe3\xff\x48\x01\x75\x01\ \xf2\x00\x05\x00\x11\x00\x1c\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\ \x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\xb8\x00\x09\xdc\xb8\x00\x04\ \xdc\x30\x31\x05\x17\x23\x37\x13\x33\x37\x14\x06\x23\x22\x26\x35\ \x34\x36\x33\x32\x16\x01\x52\x02\x50\x02\x0a\x38\x2d\x2b\x1e\x1e\ \x2b\x2b\x1e\x1e\x2b\x5a\x5e\x5e\x01\x58\xa7\x24\x29\x29\x24\x23\ \x2a\x2a\x00\x00\x02\x00\x6d\xff\xf4\x01\xdf\x02\xaa\x00\x1d\x00\ \x29\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\ \x27\x00\x03\x3e\x59\xbb\x00\x11\x00\x01\x00\x0a\x00\x04\x2b\xb8\ \x00\x27\x10\xb8\x00\x21\xdc\xb8\x00\x00\xdc\x30\x31\x37\x26\x3e\ \x04\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x04\x17\x07\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\ \xf2\x06\x12\x23\x2c\x27\x1a\x37\x37\x26\x41\x1b\x31\x22\x5c\x3a\ \x2a\x44\x31\x1b\x1b\x27\x2d\x25\x15\x05\x66\x2b\x1e\x1e\x2b\x2b\ \x1e\x1e\x2b\xe8\x24\x38\x2e\x28\x27\x2a\x1a\x2a\x37\x1f\x1b\x2d\ \x23\x2e\x16\x29\x39\x24\x21\x33\x2b\x28\x2c\x33\x20\xa6\x23\x29\ \x29\x23\x24\x2a\x2a\x00\x00\x00\x02\x00\x7b\xff\x3c\x01\xec\x01\ \xf2\x00\x1b\x00\x27\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\ \x2f\x1b\xb9\x00\x25\x00\x07\x3e\x59\xbb\x00\x0a\x00\x01\x00\x11\ \x00\x04\x2b\xb8\x00\x25\x10\xb8\x00\x1f\xdc\xb8\x00\x1b\xdc\x30\ \x31\x25\x16\x0e\x04\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x26\x35\x34\x3e\x04\x27\x37\x14\x06\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x01\x67\x06\x12\x23\x2c\x27\x1a\x38\x37\x26\x41\x1b\ \x30\x21\x5d\x3a\x54\x65\x1b\x27\x2d\x24\x14\x04\x67\x2c\x1e\x1e\ \x2b\x2b\x1e\x1e\x2c\xfe\x24\x38\x2e\x28\x27\x2b\x19\x2a\x36\x1e\ \x1b\x2d\x23\x2e\x54\x48\x21\x33\x2b\x28\x2c\x32\x21\xa7\x24\x29\ \x29\x24\x23\x2a\x2a\x00\x00\x00\x01\x00\xf5\x01\x60\x01\x63\x02\ \xaf\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x27\x33\x0f\x01\x23\xf7\x02\x6e\x02\x19\x38\x02\x41\x6e\x6e\ \xe1\x00\x00\xff\xff\x00\x83\x01\x60\x01\xd6\x02\xaf\x02\x26\x01\ \xec\x8e\x00\x00\x06\x01\xec\x73\x00\x00\x00\x00\x01\x00\xd1\x01\ \x5e\x01\x7c\x02\xbb\x00\x11\x00\x0b\x00\xba\x00\x05\x00\x0b\x00\ \x03\x2b\x30\x31\x01\x0e\x01\x07\x36\x33\x32\x16\x15\x14\x06\x23\ \x22\x26\x35\x34\x36\x37\x01\x7c\x2f\x35\x03\x0c\x0e\x1f\x27\x2a\ \x20\x27\x33\x4c\x44\x02\x8b\x1b\x4f\x34\x06\x28\x20\x23\x2a\x3f\ \x39\x4b\x77\x23\x00\x00\x00\x00\x01\x00\xd9\x01\x5e\x01\x84\x02\ \xbb\x00\x11\x00\x0b\x00\xba\x00\x05\x00\x0b\x00\x03\x2b\x30\x31\ \x13\x3e\x01\x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\ \x06\x07\xd9\x30\x35\x03\x0c\x0e\x20\x27\x2a\x20\x28\x32\x4c\x43\ \x01\x8e\x1a\x4f\x35\x06\x27\x20\x23\x2b\x40\x39\x4b\x76\x23\xff\ \xff\x00\x5f\x01\x5e\x01\xef\x02\xbb\x02\x26\x01\xee\x8e\x00\x00\ \x06\x01\xee\x73\x00\x00\x00\xff\xff\x00\x67\x01\x5e\x01\xf7\x02\ \xbb\x02\x26\x01\xef\x8e\x00\x00\x06\x01\xef\x73\x00\x00\x00\xff\ \xff\x00\xd9\xff\x1f\x01\x84\x00\x7c\x02\x07\x01\xef\x00\x00\xfd\ \xc1\x00\x00\xff\xff\x00\x67\xff\x1f\x01\xf7\x00\x7c\x02\x27\x01\ \xef\xff\x8e\xfd\xc1\x00\x07\x01\xef\x00\x73\xfd\xc1\x00\x00\x00\ \x01\x00\xc5\x00\x34\x01\x85\x01\xc4\x00\x06\x00\x0b\x00\xba\x00\ \x02\x00\x06\x00\x03\x2b\x30\x31\x37\x35\x37\x17\x07\x17\x07\xc5\ \x99\x27\x7f\x7f\x27\xd4\x50\xa0\x23\xa5\xa6\x22\x00\x00\x00\x00\ \x01\x00\xd3\x00\x34\x01\x93\x01\xc4\x00\x06\x00\x0b\x00\xba\x00\ \x02\x00\x05\x00\x03\x2b\x30\x31\x25\x27\x37\x17\x15\x07\x27\x01\ \x52\x7f\x27\x99\x99\x27\xfc\xa5\x23\xa0\x50\xa0\x22\x00\x00\xff\ \xff\x00\x53\x00\x34\x01\xf8\x01\xc4\x02\x26\x01\xf4\x8e\x00\x00\ \x06\x01\xf4\x73\x00\x00\x00\xff\xff\x00\x61\x00\x34\x02\x06\x01\ \xc4\x02\x26\x01\xf5\x8e\x00\x00\x06\x01\xf5\x73\x00\x00\x00\xff\ \xff\x00\x55\x01\x2b\x02\x03\x01\x69\x02\x06\x02\x97\x00\x00\xff\ \xff\x00\x55\x01\x2b\x02\x03\x01\x69\x02\x06\x02\x97\x00\x00\x00\ \x01\x00\x50\x00\xd8\x02\x08\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x50\x01\ \xb8\xfe\x48\x01\x20\x48\x00\x00\x01\x00\x14\x00\xd8\x02\x44\x01\ \x20\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x13\x21\x15\x21\x14\x02\x30\xfd\xd0\x01\x20\x48\x00\x00\ \x01\x00\x50\x00\xd8\x02\x08\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x50\x01\ \xb8\xfe\x48\x01\x20\x48\x00\xff\xff\x00\x14\x00\xd8\x02\x44\x01\ \x20\x02\x06\x01\xfb\x00\x00\xff\xff\x00\xdb\x01\x07\x01\x7d\x01\ \xb0\x02\x07\x01\xe3\x00\x00\x01\x13\x00\x00\x00\x01\x00\x97\x00\ \x73\x01\xc1\x01\x99\x00\x13\x00\x0b\x00\xba\x00\x0a\x00\x00\x00\ \x03\x2b\x30\x31\x25\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x01\x2c\x1e\x36\x29\x18\x18\x29\x36\x1e\x1e\x36\ \x29\x18\x18\x29\x36\x73\x15\x27\x36\x21\x21\x36\x27\x15\x15\x27\ \x36\x21\x21\x36\x27\x15\x00\x00\x01\x00\x3c\xff\x74\x02\x1c\xff\ \xbb\x00\x03\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\x01\x00\x04\x2b\ \x30\x31\x05\x15\x21\x35\x02\x1c\xfe\x20\x45\x47\x47\x00\x00\x00\ \x01\x00\xd0\xff\x50\x01\xde\x02\xdc\x00\x0e\x00\x0b\x00\xba\x00\ \x06\x00\x00\x00\x03\x2b\x30\x31\x05\x2e\x01\x35\x34\x36\x37\x17\ \x0e\x01\x15\x14\x16\x17\x07\x01\xb1\x68\x79\x79\x68\x2d\x65\x5f\ \x5f\x65\x2d\xb0\x51\xe4\x91\x91\xe4\x51\x2a\x55\xc8\x7f\x7f\xc8\ \x55\x2a\x00\x00\x01\x00\x7a\xff\x50\x01\x88\x02\xdc\x00\x0d\x00\ \x0b\x00\xba\x00\x07\x00\x0d\x00\x03\x2b\x30\x31\x17\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x06\x07\x7a\x65\x5f\x5f\x65\x2d\ \x68\x79\x79\x68\x86\x55\xc8\x7f\x7f\xc8\x55\x2a\x51\xe4\x91\x91\ \xe4\x51\x00\x00\x01\x00\xe2\xff\x68\x01\xf6\x02\xc4\x00\x07\x00\ \x17\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x23\x11\x33\x15\x21\ \xe2\x01\x14\xd3\xd3\xfe\xec\x02\xc4\x30\xfd\x04\x30\x00\x00\x00\ \x01\x00\x63\xff\x68\x01\x77\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x05\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\x01\x00\ \x04\x2b\x30\x31\x05\x11\x23\x35\x21\x11\x21\x35\x01\x35\xd2\x01\ \x14\xfe\xec\x68\x02\xfc\x30\xfc\xa4\x30\x00\x00\x01\x00\x78\xff\ \x68\x01\xf6\x02\xc4\x00\x39\x00\x2b\x00\xbb\x00\x33\x00\x01\x00\ \x34\x00\x04\x2b\xbb\x00\x19\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\ \x0b\x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x27\x00\x0a\x00\x0b\x11\ \x12\x39\x30\x31\x05\x34\x3e\x02\x35\x34\x2e\x02\x23\x35\x32\x3e\ \x02\x35\x34\x26\x35\x34\x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\ \x14\x16\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x06\x15\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x01\x00\x03\x03\x03\x0c\x20\x39\x2c\ \x2c\x39\x20\x0c\x09\x16\x2e\x46\x2f\x3d\x34\x26\x31\x1b\x0a\x06\ \x27\x34\x34\x27\x06\x0a\x1b\x31\x26\x34\x3d\x2f\x46\x2e\x16\x13\ \x1b\x31\x2e\x2e\x19\x0f\x1b\x16\x0e\x34\x0e\x16\x1b\x0f\x30\x5d\ \x34\x27\x33\x1e\x0d\x30\x0a\x15\x23\x18\x2b\x5b\x2f\x31\x33\x09\ \x04\x09\x33\x31\x33\x54\x2e\x18\x23\x15\x0a\x30\x0d\x1e\x33\x00\ \x01\x00\x63\xff\x68\x01\xe0\x02\xc4\x00\x39\x00\x2b\x00\xbb\x00\ \x00\x00\x01\x00\x37\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x17\x00\ \x04\x2b\xbb\x00\x27\x00\x01\x00\x28\x00\x04\x2b\xba\x00\x0c\x00\ \x28\x00\x27\x11\x12\x39\x30\x31\x17\x32\x3e\x02\x35\x34\x26\x35\ \x34\x36\x37\x35\x2e\x01\x35\x34\x36\x35\x34\x2e\x02\x2b\x01\x35\ \x33\x32\x1e\x02\x15\x14\x06\x15\x14\x1e\x02\x33\x15\x22\x0e\x02\ \x15\x14\x1e\x02\x15\x14\x0e\x02\x2b\x01\x35\x96\x26\x31\x1c\x0a\ \x06\x26\x34\x34\x26\x06\x0a\x1c\x31\x26\x33\x3d\x2f\x45\x2e\x16\ \x09\x0c\x20\x39\x2c\x2c\x39\x20\x0c\x03\x03\x03\x16\x2e\x45\x2f\ \x3d\x68\x0a\x15\x23\x18\x2e\x54\x33\x31\x33\x09\x04\x09\x33\x31\ \x2f\x5b\x2b\x18\x23\x15\x0a\x30\x0d\x1e\x33\x27\x34\x5d\x30\x0f\ \x1b\x16\x0e\x34\x0e\x16\x1b\x0f\x19\x2e\x2e\x31\x1b\x27\x33\x1e\ \x0d\x30\x00\x00\x01\x00\x63\xff\x60\x01\xf5\x02\xc6\x00\x03\x00\ \x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0f\x3e\x59\xb8\x00\x00\xdc\x30\x31\x17\x23\x01\x33\xad\x4a\x01\ \x48\x4a\xa0\x03\x66\x00\x00\x00\x01\x01\x07\xff\x06\x01\x51\x02\ \xee\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x01\x33\x11\x23\x01\x07\x4a\x4a\x02\xee\xfc\x18\x00\x00\x00\x00\ \x01\x00\x63\xff\x60\x01\xf5\x02\xc6\x00\x03\x00\x18\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x02\xdc\x30\x31\x13\x33\x01\x23\x63\x4a\x01\x48\x4a\x02\xc6\ \xfc\x9a\x00\x00\x02\x01\x07\xff\x06\x01\x51\x02\xee\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x05\x00\x03\x2b\xba\x00\x03\x00\ \x07\x00\x03\x2b\x30\x31\x01\x33\x11\x23\x17\x11\x23\x11\x01\x07\ \x4a\x4a\x4a\x4a\x02\xee\xfe\x35\x4d\xfe\x30\x01\xd0\x00\x00\x00\ \x01\x00\x54\x00\x6f\x02\x04\x02\x2c\x00\x0e\x00\x2f\x00\xb8\x00\ \x0e\x2f\xba\x00\x01\x00\x0e\x00\x05\x11\x12\x39\xb8\x00\x01\x10\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\ \x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x0c\xd0\x30\x31\x3f\x01\x27\x37\ \x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\x8a\x6c\xa2\x10\xa7\ \x09\x30\x09\xa7\x10\xa2\x6c\x2a\x78\x78\x8d\xa5\x46\x2e\x37\xbd\ \xbd\x37\x2e\x46\xa5\x1e\x9f\x9f\x00\x00\x00\x00\x01\x00\x7f\xff\ \xb0\x01\xd9\x02\xc8\x00\x0b\x00\x2d\x00\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x09\xd0\xb8\x00\x08\xd0\ \xb8\x00\x01\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x07\xd0\ \xb8\x00\x02\xd0\x30\x31\x01\x07\x35\x17\x27\x33\x07\x37\x15\x27\ \x13\x23\x01\x0e\x8f\x8f\x05\x46\x05\x8f\x8f\x05\x46\x01\xeb\x05\ \x47\x05\xa0\xa0\x05\x47\x05\xfd\xc5\x00\x00\x00\x01\x00\x7f\xff\ \xb0\x01\xd9\x02\xc8\x00\x15\x00\x57\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x0e\xd0\xb8\x00\x0f\xd0\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb8\x00\x0c\xd0\xb8\x00\x0b\xd0\xb8\x00\x04\xd0\xb8\x00\ \x06\x10\xb8\x00\x09\xd0\xb8\x00\x0a\xd0\xb8\x00\x05\xd0\xb8\x00\ \x14\x10\xb8\x00\x11\xd0\xb8\x00\x10\xd0\xb8\x00\x15\xd0\x30\x31\ \x37\x17\x27\x37\x07\x35\x17\x27\x33\x07\x37\x15\x27\x17\x07\x37\ \x15\x27\x17\x23\x37\x07\x7f\x8f\x05\x05\x8f\x8f\x05\x46\x05\x8f\ \x8f\x05\x05\x8f\x8f\x05\x46\x05\x8f\x92\x07\xb1\xb1\x07\x47\x05\ \xa0\xa0\x05\x47\x07\xb1\xb1\x07\x47\x05\xa0\xa0\x05\x00\x00\x00\ \x02\x00\x5b\xff\xc0\x01\xfd\x02\xac\x00\x0f\x00\x47\x00\x4f\x00\ \xbb\x00\x2f\x00\x01\x00\x28\x00\x04\x2b\xbb\x00\x44\x00\x01\x00\ \x13\x00\x04\x2b\xba\x00\x32\x00\x28\x00\x13\x11\x12\x39\xba\x00\ \x16\x00\x44\x00\x2f\x11\x12\x39\xba\x00\x20\x00\x32\x00\x16\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x00\xd0\xba\x00\x3c\x00\x16\x00\ \x32\x11\x12\x39\xb8\x00\x3c\x10\xb8\x00\x08\xd0\x30\x31\x25\x3e\ \x01\x35\x34\x2e\x02\x27\x0e\x01\x15\x14\x1e\x02\x13\x2e\x01\x23\ \x22\x06\x15\x14\x1e\x04\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\ \x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x04\x35\x34\ \x36\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x16\x17\x01\x73\x20\x23\ \x29\x3e\x49\x20\x1f\x25\x29\x3f\x49\x54\x1a\x38\x23\x2a\x26\x2a\ \x3f\x49\x3f\x2a\x31\x29\x0e\x0f\x18\x2a\x3b\x24\x37\x5c\x20\x32\ \x1a\x3d\x2a\x29\x2d\x2a\x3e\x4a\x3e\x2a\x33\x28\x0e\x11\x13\x26\ \x38\x26\x32\x51\x1e\xc0\x0e\x26\x22\x22\x2c\x21\x1d\x12\x10\x29\ \x1f\x21\x2b\x21\x1c\x01\x6b\x14\x1a\x25\x1a\x1b\x24\x1e\x1e\x2b\ \x3d\x2e\x30\x3c\x16\x10\x27\x1a\x1e\x32\x24\x15\x26\x21\x2d\x18\ \x1c\x28\x1d\x1c\x26\x1e\x1d\x2a\x3d\x2e\x2d\x40\x15\x10\x27\x1a\ \x1a\x2f\x24\x15\x22\x17\x00\x00\x02\x00\x48\xff\xb0\x01\xe5\x02\ \x90\x00\x03\x00\x10\x00\x25\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x0d\x3e\x59\x30\x31\x01\x33\x11\x23\ \x03\x23\x22\x2e\x02\x35\x34\x3e\x02\x3b\x01\x01\x94\x51\x51\x36\ \x20\x35\x5a\x42\x25\x24\x3f\x56\x32\x2b\x02\x90\xfd\x20\x01\x32\ \x19\x35\x52\x39\x3b\x51\x33\x16\x00\x00\x00\x00\x03\x00\x1e\xff\ \xf5\x02\x3a\x02\x8d\x00\x13\x00\x27\x00\x45\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \xb8\x00\x2d\xd0\xb9\x00\x34\x00\x01\xf4\xb8\x00\x19\x10\xb8\x00\ \x41\xd0\xb9\x00\x3a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x17\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x1e\x29\x49\x63\x39\x39\x63\x49\x29\x29\ \x49\x63\x39\x39\x63\x49\x29\x2e\x20\x3b\x53\x32\x32\x53\x3b\x20\ \x20\x3b\x53\x32\x32\x53\x3b\x20\x46\x1b\x2e\x3b\x21\x23\x31\x14\ \x22\x10\x1f\x14\x2e\x38\x35\x2d\x1a\x26\x11\x1e\x17\x34\x26\x22\ \x3b\x2c\x19\x01\x43\x4c\x7b\x55\x2e\x2e\x55\x7b\x4c\x4d\x7b\x57\ \x2f\x2f\x57\x7b\x4d\x42\x6b\x4d\x2a\x2a\x4d\x6b\x42\x42\x6a\x4c\ \x29\x29\x4c\x6a\x42\x2b\x46\x32\x1a\x1b\x14\x27\x0e\x11\x4b\x3b\ \x42\x4d\x14\x0e\x2a\x14\x1b\x1b\x33\x49\x00\x00\x04\x00\x1e\xff\ \xf5\x02\x3a\x02\x8d\x00\x0e\x00\x17\x00\x2b\x00\x3f\x00\x55\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x03\ \x3e\x59\xbb\x00\x0f\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1d\x10\ \xb9\x00\x3b\x00\x01\xf4\xb8\x00\x01\xd0\xb8\x00\x27\x10\xb9\x00\ \x31\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\x00\x01\x10\xb9\x00\x15\x00\ \x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\ \x23\x37\x32\x36\x35\x34\x26\x2b\x01\x15\x27\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xc1\x72\x1c\x32\x25\x15\ \x15\x25\x32\x1c\x31\x41\x68\x27\x2a\x2b\x26\x27\xe4\x29\x49\x63\ \x39\x39\x63\x49\x29\x29\x49\x63\x39\x39\x63\x49\x29\x2e\x20\x3b\ \x53\x32\x32\x53\x3b\x20\x20\x3b\x53\x32\x32\x53\x3b\x20\x01\xf4\ \x0e\x1c\x2d\x1e\x21\x31\x21\x10\x73\xa5\x25\x2a\x24\x20\x93\x15\ \x4c\x7b\x55\x2e\x2e\x55\x7b\x4c\x4d\x7b\x57\x2f\x2f\x57\x7b\x4d\ \x42\x6b\x4d\x2a\x2a\x4d\x6b\x42\x42\x6a\x4c\x29\x29\x4c\x6a\x00\ \x04\x00\x70\x01\x3f\x01\xe8\x02\xc9\x00\x13\x00\x27\x00\x35\x00\ \x3e\x00\x3d\x00\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\xbb\x00\ \x0a\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x32\x00\ \x04\x2b\xb8\x00\x1e\x10\xb8\x00\x29\xd0\xb8\x00\x32\x10\xb8\x00\ \x2f\xd0\xb8\x00\x14\x10\xb8\x00\x34\xd0\xb8\x00\x31\xd0\x30\x31\ \x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x03\x33\x32\x16\x15\x14\x06\x07\x17\x23\x27\x23\x15\x23\x37\x32\ \x36\x35\x34\x26\x2b\x01\x15\x01\x2c\x27\x45\x33\x1d\x1d\x33\x45\ \x27\x27\x44\x33\x1e\x1e\x33\x44\x27\x1f\x37\x27\x17\x17\x27\x37\ \x1f\x20\x36\x28\x17\x17\x28\x36\x29\x4c\x20\x2f\x15\x11\x2e\x2e\ \x23\x29\x29\x43\x14\x18\x13\x17\x1c\x01\x3f\x1d\x34\x48\x2c\x2c\ \x48\x34\x1d\x1d\x34\x48\x2c\x2c\x48\x34\x1d\x25\x17\x2a\x3b\x24\ \x23\x3b\x2b\x18\x18\x2b\x3b\x23\x24\x3b\x2a\x17\x01\x08\x1d\x24\ \x12\x1f\x06\x53\x46\x46\x66\x11\x11\x0f\x12\x43\x00\x00\x00\x00\ \x02\xff\xfb\x01\x6e\x02\x44\x02\xa4\x00\x13\x00\x1b\x00\x51\x00\ \xb8\x00\x1a\x2f\xbb\x00\x16\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\ \x04\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x16\x10\xb8\x00\x00\xd0\ \xb8\x00\x16\x10\xb8\x00\x06\xd0\xb8\x00\x01\xd0\xb8\x00\x1a\x10\ \xb8\x00\x13\xd0\xb8\x00\x09\xd0\xb8\x00\x06\x10\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x15\x10\xb8\x00\x18\xd0\x30\x31\ \x01\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\ \x23\x17\x15\x23\x03\x23\x35\x33\x15\x23\x11\x23\x01\x24\x47\x2d\ \x1b\x04\x1a\x2c\x47\x37\x07\x04\x47\x2a\x48\x04\x07\x36\xc9\x60\ \xfc\x60\x3c\x02\xa4\x72\x50\x50\x72\xfe\xca\x89\x69\xbb\xbb\x69\ \x89\x01\x00\x36\x36\xff\x00\x00\x02\x00\x0f\x01\x62\x02\x44\x02\ \xab\x00\x29\x00\x3d\x00\x5b\x00\xb8\x00\x00\x2f\xbb\x00\x14\x00\ \x01\x00\x1b\x00\x04\x2b\xbb\x00\x2e\x00\x01\x00\x37\x00\x04\x2b\ \xb8\x00\x00\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x14\x10\xb8\x00\ \x2a\xd0\xb8\x00\x2a\x2f\xb8\x00\x14\x10\xb8\x00\x30\xd0\xb8\x00\ \x30\x2f\xb8\x00\x2b\xd0\xb8\x00\x00\x10\xb8\x00\x3d\xd0\xb8\x00\ \x33\xd0\xb8\x00\x30\x10\xb9\x00\x36\x00\x01\xf4\xb8\x00\x39\xd0\ \x30\x31\x13\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x2f\ \x01\x2e\x01\x35\x34\x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\ \x15\x14\x16\x1f\x01\x1e\x01\x15\x14\x0e\x02\x13\x33\x1f\x01\x33\ \x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\x7d\ \x21\x36\x17\x21\x13\x25\x19\x17\x1a\x13\x17\x2e\x16\x25\x38\x30\ \x1c\x32\x11\x1e\x0f\x23\x11\x17\x18\x15\x14\x2e\x1d\x20\x0f\x1c\ \x29\x8e\x47\x2d\x1b\x04\x1a\x2c\x47\x37\x07\x04\x47\x2a\x48\x04\ \x07\x36\x01\x62\x19\x17\x25\x11\x15\x15\x12\x14\x0f\x0b\x18\x0b\ \x27\x23\x27\x31\x16\x10\x27\x0c\x12\x17\x0f\x0f\x13\x09\x17\x0e\ \x26\x23\x12\x20\x1a\x0f\x01\x42\x72\x50\x50\x72\xfe\xca\x89\x69\ \xbb\xbb\x69\x89\x00\x00\x00\x00\x02\x00\x31\xff\x70\x02\x22\x02\ \x7b\x00\x34\x00\x3d\x00\x3f\x00\xbb\x00\x1e\x00\x01\x00\x25\x00\ \x04\x2b\xbb\x00\x2f\x00\x01\x00\x14\x00\x04\x2b\xbb\x00\x38\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x3b\x00\x01\x00\x0e\x00\x04\x2b\ \xba\x00\x02\x00\x06\x00\x2f\x11\x12\x39\xb8\x00\x02\x10\xb9\x00\ \x3a\x00\x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\ \x35\x34\x36\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x05\x14\x16\x33\x32\x37\x35\x0e\x01\x02\x22\x32\ \x07\x04\x16\x47\x27\x1b\x2f\x23\x14\x88\x80\x11\x24\x39\x27\x2d\ \x52\x3f\x25\x24\x3e\x54\x31\x2d\x43\x1d\x1c\x27\x52\x32\x3b\x6a\ \x50\x2f\x2d\x50\x6b\x3e\x34\x4c\x32\x19\xff\x00\x2b\x25\x38\x38\ \x68\x58\x64\x3a\x1c\x2a\x12\x22\x31\x1e\x4d\x4e\x10\x0e\x24\x40\ \x30\x1c\x2a\x53\x7d\x53\x50\x7d\x56\x2d\x17\x16\x2d\x1b\x1c\x33\ \x63\x94\x60\x60\x90\x60\x31\x24\x40\x57\x33\xb0\x23\x28\x40\x7e\ \x0e\x37\x00\x00\x02\x00\x31\xff\xee\x02\x22\x02\x9c\x00\x34\x00\ \x3d\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\ \x2f\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\ \x00\x25\x00\x03\x3e\x59\xbb\x00\x38\x00\x01\x00\x06\x00\x04\x2b\ \xbb\x00\x0e\x00\x01\x00\x3b\x00\x04\x2b\xba\x00\x02\x00\x06\x00\ \x2f\x11\x12\x39\xb8\x00\x2f\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x25\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x3a\x00\ \x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x36\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\ \x02\x15\x05\x14\x16\x33\x32\x37\x35\x0e\x01\x02\x22\x32\x07\x04\ \x16\x47\x27\x1b\x2f\x23\x14\x88\x80\x11\x24\x37\x26\x2d\x54\x3f\ \x26\x24\x3e\x54\x31\x2d\x43\x1d\x1c\x27\x52\x32\x3b\x6a\x50\x2f\ \x2e\x50\x6d\x3e\x33\x4b\x32\x18\xff\x00\x2b\x25\x38\x38\x68\x58\ \xad\x3a\x1d\x29\x12\x22\x31\x1e\x4c\x4f\x10\x0a\x1c\x33\x26\x17\ \x25\x49\x6e\x49\x44\x69\x48\x26\x17\x16\x2d\x1a\x1d\x2c\x56\x7f\ \x54\x56\x81\x57\x2b\x20\x38\x4b\x2a\xaa\x23\x27\x40\x7e\x0f\x36\ \x00\x00\x00\x00\x02\x00\x57\x00\x00\x02\x07\x02\x8a\x00\x1b\x00\ \x1f\x00\x8b\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\ \x00\x0c\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\ \xb9\x00\x1b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\x00\x02\x00\x01\x00\x01\x00\ \x04\x2b\xbb\x00\x06\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\xb8\x00\x0e\xd0\xb8\x00\x05\x10\xb8\x00\x1e\xd0\ \xb8\x00\x11\xd0\xb8\x00\x02\x10\xb8\x00\x1f\xd0\xb8\x00\x12\xd0\ \xb8\x00\x01\x10\xb8\x00\x19\xd0\xb8\x00\x15\xd0\x30\x31\x37\x23\ \x35\x33\x37\x23\x35\x33\x37\x33\x07\x33\x37\x33\x07\x33\x15\x23\ \x07\x33\x15\x23\x07\x23\x37\x23\x07\x23\x13\x37\x23\x07\xa6\x4f\ \x56\x13\x55\x5b\x18\x35\x17\x84\x18\x35\x17\x51\x57\x13\x56\x5d\ \x18\x36\x19\x85\x18\x36\xd9\x13\x85\x12\xcc\x39\x94\x3a\xb7\xb7\ \xb7\xb7\x3a\x94\x39\xcc\xcc\xcc\x01\x05\x94\x94\x00\x00\x00\x00\ \x01\x00\x68\x01\x3c\x01\xf0\x02\xc8\x00\x0e\x00\x14\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0f\x3e\x59\x30\ \x31\x13\x37\x27\x37\x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\ \x9b\x5c\x8f\x10\x93\x09\x30\x09\x93\x10\x8f\x5c\x2a\x67\x67\x01\ \x59\x93\x39\x2e\x2c\xa1\x9f\x2a\x2e\x39\x93\x1d\x8c\x8c\x00\x00\ \x01\x00\x86\x00\xd8\x01\xd2\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x86\x01\ \x4c\xfe\xb4\x01\x20\x48\x00\xff\xff\x00\x86\x00\xd8\x01\xd2\x01\ \x20\x02\x06\x02\x19\x00\x00\x00\x03\x00\x55\xff\x8f\x02\x03\x02\ \xef\x00\x09\x00\x13\x00\x43\x00\x17\x00\xbb\x00\x03\x00\x01\x00\ \x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x0d\x00\x04\x2b\x30\x31\ \x25\x16\x32\x33\x32\x36\x35\x34\x26\x27\x03\x26\x22\x23\x22\x06\ \x15\x14\x16\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x2a\x01\x27\x07\ \x27\x37\x2e\x01\x27\x37\x1e\x01\x17\x37\x2e\x03\x35\x34\x3e\x02\ \x33\x3a\x01\x17\x37\x17\x07\x1e\x01\x17\x07\x2e\x01\x27\x01\x25\ \x05\x0b\x05\x3b\x3e\x3f\x2d\x08\x05\x09\x05\x33\x3b\x38\x2a\x35\ \x20\x3e\x32\x1e\x1f\x37\x4e\x2f\x06\x0c\x06\x1b\x38\x1c\x2a\x48\ \x1a\x27\x19\x39\x20\x24\x1f\x3b\x2e\x1c\x1d\x34\x48\x2b\x07\x0c\ \x06\x19\x38\x19\x21\x34\x17\x2c\x14\x25\x14\x67\x01\x31\x26\x24\ \x2c\x12\x01\x06\x01\x2d\x26\x1e\x26\x10\x14\x0c\x1d\x27\x34\x24\ \x24\x3b\x2b\x17\x01\x94\x06\x97\x0b\x24\x16\x39\x11\x1f\x09\xc3\ \x0c\x1c\x24\x30\x21\x23\x39\x28\x15\x01\x86\x07\x89\x0a\x22\x16\ \x30\x0f\x17\x07\x00\x00\x00\xff\xff\x00\xa1\x01\xac\x01\xb7\x02\ \xf5\x02\x07\x02\x38\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xd0\x01\ \xb8\x01\x61\x02\xe9\x02\x07\x02\x39\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xae\x01\xb8\x01\xa7\x02\xf5\x02\x07\x02\x3a\x00\x01\x01\ \xb8\x00\x00\xff\xff\x00\xac\x01\xac\x01\xa4\x02\xf5\x02\x07\x02\ \x3b\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xac\x01\xb8\x01\xb9\x02\ \xe9\x02\x07\x02\x3c\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xac\x01\ \xac\x01\xa9\x02\xe9\x02\x07\x02\x3d\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xb0\x01\xac\x01\xad\x02\xf5\x02\x07\x02\x3e\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xb7\x01\xb8\x01\xaa\x02\xe9\x02\x07\x02\ \x3f\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xaf\x01\xac\x01\xa9\x02\ \xf5\x02\x07\x02\x40\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xad\x01\ \xac\x01\xa9\x02\xf5\x02\x07\x02\x41\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xec\x01\x6c\x01\x83\x03\x43\x02\x07\x02\x42\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xd5\x01\x6c\x01\x6c\x03\x43\x02\x07\x02\ \x43\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xfe\x01\xb0\x01\x5a\x02\ \x0f\x02\x07\x02\x44\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xf4\x01\ \x44\x01\x64\x02\x0f\x02\x07\x02\x45\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa1\xff\x4b\x01\xb7\x00\x94\x02\x07\x02\x38\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xd0\xff\x57\x01\x61\x00\x88\x02\x07\x02\ \x39\x00\x00\xff\x57\x00\x00\xff\xff\x00\xae\xff\x57\x01\xa7\x00\ \x94\x02\x07\x02\x3a\x00\x01\xff\x57\x00\x00\xff\xff\x00\xac\xff\ \x4b\x01\xa4\x00\x94\x02\x07\x02\x3b\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xac\xff\x57\x01\xb9\x00\x88\x02\x07\x02\x3c\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xac\xff\x4b\x01\xa9\x00\x88\x02\x07\x02\ \x3d\x00\x00\xff\x57\x00\x00\xff\xff\x00\xb0\xff\x4b\x01\xad\x00\ \x94\x02\x07\x02\x3e\x00\x00\xff\x57\x00\x00\xff\xff\x00\xb7\xff\ \x57\x01\xaa\x00\x88\x02\x07\x02\x3f\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xaf\xff\x4b\x01\xa9\x00\x94\x02\x07\x02\x40\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xad\xff\x4b\x01\xa9\x00\x94\x02\x07\x02\ \x41\x00\x00\xff\x57\x00\x00\xff\xff\x00\xec\xff\x0b\x01\x83\x00\ \xe2\x02\x07\x02\x42\x00\x00\xff\x57\x00\x00\xff\xff\x00\xd5\xff\ \x0b\x01\x6c\x00\xe2\x02\x07\x02\x43\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xfe\xff\x4f\x01\x5a\xff\xae\x02\x07\x02\x44\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xf4\xfe\xe3\x01\x64\xff\xae\x02\x07\x02\ \x45\x00\x00\xff\x57\x00\x00\x00\x02\x00\xa1\xff\xf4\x01\xb7\x01\ \x3d\x00\x0b\x00\x17\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x12\ \x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x0c\x00\x01\xf4\x30\x31\x05\ \x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\ \x26\x23\x22\x06\x15\x14\x16\x01\x2c\x3d\x4e\x4e\x3d\x3d\x4e\x4e\ \x3d\x20\x2e\x2e\x20\x20\x2e\x2e\x0c\x58\x4f\x4e\x54\x54\x4e\x4f\ \x58\x32\x39\x3c\x3c\x35\x35\x3c\x3c\x39\x00\x00\x01\x00\xd0\x00\ \x00\x01\x61\x01\x31\x00\x08\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\x05\x00\x01\ \x00\x00\x00\x04\x2b\x30\x31\x25\x23\x35\x3e\x01\x37\x33\x11\x23\ \x01\x22\x52\x21\x29\x15\x32\x3f\xe6\x2a\x05\x10\x0c\xfe\xcf\x00\ \x01\x00\xad\x00\x00\x01\xa6\x01\x3d\x00\x18\x00\x2c\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\ \x00\x0d\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x17\x10\xb9\x00\x15\ \x00\x01\xf4\xb8\x00\x00\xd0\x30\x31\x37\x3e\x01\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x07\x33\x15\ \x23\xb7\x4e\x53\x1f\x1d\x14\x26\x0e\x27\x17\x3b\x24\x36\x3e\x13\ \x21\x2c\x19\x88\xef\x24\x3b\x4e\x21\x1b\x20\x17\x13\x21\x1a\x23\ \x35\x32\x14\x27\x27\x29\x16\x35\x00\x00\x00\x00\x01\x00\xac\xff\ \xf4\x01\xa4\x01\x3d\x00\x24\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xbb\x00\x16\x00\x01\ \x00\x0f\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x08\x00\x04\x2b\xb8\ \x00\x21\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x1b\x00\x08\x00\x09\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x23\x35\x32\ \x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\ \x07\x1e\x01\x15\x14\x06\x23\x22\x26\x27\xcc\x0f\x31\x1b\x1b\x23\ \x60\x2a\x27\x1a\x1d\x12\x28\x0f\x1e\x13\x3d\x23\x2f\x3b\x38\x20\ \x27\x46\x33\x23\x43\x19\x51\x12\x19\x16\x19\x33\x26\x1c\x17\x14\ \x17\x13\x0f\x26\x14\x19\x2c\x28\x37\x14\x08\x26\x1f\x2d\x30\x1c\ \x1a\x00\x00\x00\x02\x00\xac\x00\x00\x01\xb9\x01\x31\x00\x05\x00\ \x10\x00\x38\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x03\x3e\x59\xbb\x00\x10\x00\x01\x00\x06\x00\x04\x2b\xbb\ \x00\x02\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x10\x10\xb8\x00\x00\ \xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x25\x35\x37\x23\x0f\ \x01\x17\x23\x15\x23\x35\x23\x35\x37\x33\x15\x33\x01\x4e\x04\x03\ \x2d\x36\xcd\x32\x39\xa2\x94\x47\x32\x74\x38\x52\x41\x49\x2b\x49\ \x49\x1f\xc9\xbd\x00\x00\x00\x00\x01\x00\xac\xff\xf4\x01\xa9\x01\ \x31\x00\x1d\x00\x44\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\ \xb9\x00\x1a\x00\x03\x3e\x59\xbb\x00\x0f\x00\x01\x00\x10\x00\x04\ \x2b\xbb\x00\x14\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x1a\x10\xb9\ \x00\x03\x00\x01\xf4\xba\x00\x12\x00\x09\x00\x14\x11\x12\x39\xb8\ \x00\x12\x10\xb8\x00\x0d\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\x07\x27\x37\x33\x15\x23\x07\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x27\xcc\x11\x2d\x1e\x1d\x25\x24\x1f\x14\ \x1d\x0f\x1f\x11\xbd\x8b\x0a\x18\x20\x32\x3e\x46\x36\x2a\x3c\x1b\ \x51\x12\x19\x1e\x1b\x1d\x1d\x0c\x0b\x14\x9b\x36\x46\x0c\x33\x30\ \x30\x3a\x1c\x1a\x00\x00\x00\x00\x02\x00\xb0\xff\xf4\x01\xad\x01\ \x3d\x00\x0b\x00\x26\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0f\ \x00\x04\x2b\xbb\x00\x15\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x1d\ \x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x12\x00\x1d\x00\x23\x11\x12\ \x39\xb8\x00\x12\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x25\x32\x36\ \x35\x34\x26\x23\x22\x06\x07\x1e\x01\x37\x2e\x01\x23\x22\x06\x07\ \x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x35\x34\x36\x33\ \x32\x16\x17\x01\x38\x1c\x1e\x1c\x1f\x14\x23\x14\x06\x2c\x6f\x0e\ \x1e\x14\x2b\x34\x03\x13\x2d\x1b\x33\x34\x11\x1f\x2b\x19\x3b\x4e\ \x55\x45\x1e\x2c\x13\x26\x1d\x19\x17\x1e\x10\x13\x26\x22\xce\x0b\ \x0d\x3b\x39\x11\x12\x35\x2a\x15\x26\x1d\x10\x51\x47\x56\x5b\x12\ \x0e\x00\x00\x00\x01\x00\xb7\x00\x00\x01\xaa\x01\x31\x00\x0f\x00\ \x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\ \x10\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x23\x35\x33\x15\x0e\ \x03\x07\x23\xfd\x02\x0d\x18\x24\x18\xa9\xf3\x20\x28\x18\x0a\x02\ \x41\x27\x41\x3b\x3a\x1f\x35\x24\x23\x3f\x3f\x44\x28\x00\x00\x00\ \x03\x00\xaf\xff\xf4\x01\xa9\x01\x3d\x00\x0c\x00\x18\x00\x38\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\ \x03\x3e\x59\xbb\x00\x25\x00\x01\x00\x13\x00\x04\x2b\xb8\x00\x34\ \x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x34\x00\x13\x11\x12\ \x39\xba\x00\x16\x00\x25\x00\x03\x11\x12\x39\x30\x31\x37\x14\x16\ \x33\x32\x36\x35\x34\x2e\x02\x27\x06\x37\x3e\x01\x35\x34\x26\x23\ \x22\x06\x15\x14\x16\x07\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x16\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x0e\x02\x23\x22\ \x2e\x02\xe9\x27\x1c\x1a\x29\x0f\x18\x1f\x11\x2f\x57\x14\x10\x1d\ \x1b\x19\x1e\x2c\x72\x27\x1a\x17\x1f\x12\x1f\x2a\x17\x32\x41\x21\ \x14\x1a\x25\x13\x22\x2d\x1b\x1c\x2e\x21\x12\x50\x14\x1b\x19\x14\ \x0e\x13\x0d\x0a\x05\x16\x3c\x0c\x1a\x0f\x12\x18\x17\x11\x16\x18\ \x6e\x20\x25\x0c\x04\x0e\x1f\x1b\x12\x1f\x17\x0c\x2f\x25\x1c\x21\ \x0b\x04\x0b\x25\x21\x12\x20\x18\x0e\x0e\x18\x20\x00\x00\x00\x00\ \x02\x00\xad\xff\xf4\x01\xa9\x01\x3d\x00\x0b\x00\x24\x00\x46\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\ \x59\xbb\x00\x1b\x00\x01\x00\x09\x00\x04\x2b\xbb\x00\x03\x00\x01\ \x00\x15\x00\x04\x2b\xba\x00\x12\x00\x1b\x00\x21\x11\x12\x39\xb8\ \x00\x12\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x21\x10\xb9\x00\x0f\ \x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\x37\x2e\x01\x23\x22\ \x06\x07\x1e\x01\x33\x32\x36\x37\x0e\x01\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x27\xe7\x1c\x1f\x14\x23\x13\ \x05\x2c\x1a\x1b\x1f\x1b\x0e\x1f\x14\x2a\x32\x04\x13\x2d\x1a\x33\ \x33\x40\x33\x3b\x4e\x55\x45\x1d\x2d\x13\xd5\x17\x1d\x0f\x12\x26\ \x24\x1e\xb1\x0b\x0c\x39\x39\x10\x12\x35\x2a\x2c\x3c\x51\x47\x56\ \x5b\x13\x0e\x00\x01\x00\xec\xff\xb4\x01\x83\x01\x8b\x00\x0d\x00\ \x0b\x00\xba\x00\x03\x00\x0b\x00\x03\x2b\x30\x31\x37\x34\x36\x37\ \x17\x0e\x01\x15\x14\x16\x17\x07\x2e\x01\xec\x37\x32\x2e\x2d\x28\ \x28\x2d\x2e\x32\x37\x9f\x4b\x6f\x32\x21\x2d\x63\x3b\x3b\x63\x2d\ \x20\x31\x6f\x00\x01\x00\xd5\xff\xb4\x01\x6c\x01\x8b\x00\x0d\x00\ \x0b\x00\xba\x00\x0b\x00\x03\x00\x03\x2b\x30\x31\x25\x14\x06\x07\ \x27\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x01\x6c\x37\x32\x2e\x2d\ \x28\x28\x2d\x2e\x32\x37\x9f\x4b\x6f\x31\x20\x2d\x63\x3b\x3b\x63\ \x2d\x21\x32\x6f\x00\x00\x00\x00\x01\x00\xfe\xff\xf8\x01\x5a\x00\ \x57\x00\x0b\x00\x1a\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xfe\x1a\x14\x14\x1a\ \x1a\x14\x14\x1a\x27\x16\x1a\x1a\x16\x15\x1a\x1a\x00\x00\x00\x00\ \x01\x00\xf4\xff\x8c\x01\x64\x00\x57\x00\x11\x00\x2b\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\ \xb9\x00\x0b\x00\x01\xf4\x30\x31\x17\x3e\x01\x35\x06\x23\x22\x26\ \x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\xf4\x1d\x23\x02\x05\x11\ \x1d\x1c\x13\x1a\x1c\x33\x2d\x4f\x0b\x27\x1d\x01\x15\x15\x15\x19\ \x25\x24\x2d\x44\x11\x00\x00\xff\xff\x00\xa1\x01\x40\x01\xb7\x02\ \x89\x02\x07\x02\x38\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xd0\x01\ \x4c\x01\x61\x02\x7d\x02\x07\x02\x39\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xae\x01\x4c\x01\xa7\x02\x89\x02\x07\x02\x3a\x00\x01\x01\ \x4c\x00\x00\xff\xff\x00\xac\x01\x40\x01\xa4\x02\x89\x02\x07\x02\ \x3b\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xac\x01\x4c\x01\xb9\x02\ \x7d\x02\x07\x02\x3c\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xac\x01\ \x40\x01\xa9\x02\x7d\x02\x07\x02\x3d\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xb0\x01\x40\x01\xad\x02\x89\x02\x07\x02\x3e\x00\x00\x01\ \x4c\x00\x00\xff\xff\x00\xb7\x01\x4c\x01\xaa\x02\x7d\x02\x07\x02\ \x3f\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xaf\x01\x40\x01\xa9\x02\ \x89\x02\x07\x02\x40\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xad\x01\ \x40\x01\xa9\x02\x89\x02\x07\x02\x41\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xec\x00\xbe\x01\x83\x02\x95\x02\x07\x02\x42\x00\x00\x01\ \x0a\x00\x00\xff\xff\x00\xd5\x00\xbe\x01\x6c\x02\x95\x02\x07\x02\ \x43\x00\x00\x01\x0a\x00\x00\xff\xff\x00\xfe\x01\x02\x01\x5a\x01\ \x61\x02\x07\x02\x44\x00\x00\x01\x0a\x00\x00\xff\xff\x00\xf4\x00\ \x96\x01\x64\x01\x61\x02\x07\x02\x45\x00\x00\x01\x0a\x00\x00\xff\ \xff\x00\xa7\x00\xfc\x01\xba\x02\x4e\x02\x06\x02\x57\x00\x00\xff\ \xff\x00\x89\x00\xfc\x01\xb6\x02\x4e\x02\x06\x02\x74\x00\x00\xff\ \xff\x00\x8e\x00\xfc\x01\xca\x02\x4e\x02\x06\x02\x65\x00\x00\x00\ \x02\x00\xa7\x00\xfc\x01\xba\x02\x4e\x00\x19\x00\x23\x00\x39\x00\ \xb8\x00\x12\x2f\xbb\x00\x1d\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\ \x0d\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x21\x00\ \x04\x2b\xba\x00\x13\x00\x0d\x00\x17\x11\x12\x39\xb8\x00\x13\x10\ \xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x34\x36\x37\x2e\x01\x23\x22\ \x06\x07\x27\x3e\x01\x33\x32\x16\x1d\x01\x23\x27\x23\x0e\x01\x23\ \x22\x26\x37\x14\x16\x33\x32\x36\x37\x35\x0e\x01\xa7\x66\x6d\x01\ \x1e\x27\x1d\x34\x16\x19\x1a\x48\x28\x3f\x3d\x34\x05\x02\x18\x39\ \x20\x2b\x3c\x3f\x22\x19\x17\x2b\x17\x51\x43\x01\x59\x35\x38\x0b\ \x1e\x2c\x15\x0d\x2b\x0f\x1b\x48\x3f\xc3\x25\x13\x1a\x32\x2f\x18\ \x17\x15\x13\x52\x09\x25\x00\x00\x02\x00\xac\x00\xfc\x01\xd8\x02\ \xd8\x00\x14\x00\x20\x00\x54\x00\xb8\x00\x13\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0f\x3e\x59\xbb\x00\x18\ \x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x1e\x00\x04\ \x2b\xba\x00\x03\x00\x06\x00\x0e\x11\x12\x39\xba\x00\x11\x00\x0e\ \x00\x06\x11\x12\x39\xb8\x00\x11\x10\xb9\x00\x15\x00\x01\xf4\xb8\ \x00\x03\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x33\x15\x07\x3e\ \x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x27\x23\x07\x23\x37\ \x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\xac\x40\x02\x17\x35\ \x1c\x42\x44\x18\x28\x35\x1c\x18\x32\x17\x01\x07\x32\x40\x15\x28\ \x11\x28\x34\x27\x2e\x29\x2c\x02\xd8\x7d\x38\x13\x18\x59\x4b\x29\ \x41\x2d\x17\x15\x13\x20\x4b\x11\x0d\x3f\x39\x33\x3d\x28\x00\x00\ \x01\x00\xb5\x00\xfc\x01\xcd\x02\x4e\x00\x1d\x00\x17\x00\xbb\x00\ \x12\x00\x01\x00\x19\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x0c\x00\ \x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\ \x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\ \xb5\x1c\x2f\x3d\x22\x23\x32\x12\x20\x0f\x21\x14\x30\x3c\x3a\x30\ \x19\x28\x11\x1b\x18\x3b\x20\x23\x3d\x2c\x19\x01\xa5\x28\x3f\x2b\ \x17\x16\x10\x29\x0d\x0e\x41\x34\x35\x40\x12\x0d\x29\x14\x16\x17\ \x2b\x3f\x00\x00\x02\x00\x89\x00\xfc\x01\xb6\x02\xd8\x00\x14\x00\ \x20\x00\x54\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xbb\x00\x18\x00\x01\x00\x12\ \x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1e\x00\x04\x2b\xba\x00\x08\ \x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\ \x39\xb8\x00\x0e\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x08\x10\xb9\ \x00\x1b\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x27\ \x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\x33\x32\ \x37\x35\x2e\x01\x23\x22\x06\x89\x18\x28\x35\x1d\x1d\x2b\x15\x02\ \x40\x35\x05\x02\x14\x35\x1d\x3f\x4c\x42\x2e\x2a\x2b\x28\x15\x26\ \x14\x27\x35\x01\xa5\x27\x3f\x2c\x17\x14\x11\x36\x79\xfe\x2c\x25\ \x13\x1a\x58\x51\x37\x3d\x28\xa1\x11\x0e\x3e\x00\x02\x00\xa0\x00\ \xfc\x01\xc9\x02\x4e\x00\x19\x00\x20\x00\x21\x00\xbb\x00\x0e\x00\ \x01\x00\x15\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1d\x00\x04\x2b\ \xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\ \x33\x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\xa0\x1b\x2b\x39\x1e\ \x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\x14\x17\x18\x3b\x23\x23\x3c\ \x2d\x1a\xf1\x2b\x28\x23\x37\x06\x01\xa5\x27\x3f\x2c\x17\x53\x45\ \x14\x0c\x31\x37\x0d\x0c\x29\x0e\x14\x17\x2b\x3f\x42\x2d\x30\x30\ \x2d\x00\x00\x00\x01\x00\xc6\x01\x04\x01\xf7\x02\xe0\x00\x17\x00\ \x38\x00\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x09\x3e\x59\xbb\x00\x14\x00\x01\x00\x03\x00\x04\ \x2b\xb8\x00\x07\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\ \x00\x07\x10\xb8\x00\x10\xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x1d\ \x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x35\x34\x36\x33\x32\x16\ \x17\x01\xe9\x11\x22\x14\x2a\x24\x80\x80\x3f\x4f\x4f\x41\x45\x19\ \x2d\x16\x02\xa0\x07\x07\x2a\x23\x1b\x33\xfe\xf1\x01\x0f\x30\x03\ \x19\x3a\x47\x08\x08\x00\x00\x00\x03\x00\x95\x00\x72\x01\xe2\x02\ \x4e\x00\x0f\x00\x41\x00\x4d\x00\x64\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x3f\x00\x04\x2b\xbb\x00\x22\x00\x01\x00\x48\x00\x04\x2b\xbb\ \x00\x37\x00\x01\x00\x09\x00\x04\x2b\xbb\x00\x42\x00\x01\x00\x30\ \x00\x04\x2b\xba\x00\x13\x00\x09\x00\x37\x11\x12\x39\xb8\x00\x13\ \x10\xb8\x00\x0d\xd0\xb8\x00\x30\x10\xb8\x00\x32\xd0\xb8\x00\x1a\ \xd0\xb8\x00\x25\x10\xb9\x00\x28\x00\x01\xf4\x30\x31\x37\x14\x16\ \x33\x32\x36\x35\x34\x26\x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x37\ \x35\x2e\x01\x35\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x33\x15\x23\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x06\x15\ \x14\x3b\x01\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x37\x32\x36\x35\ \x34\x26\x23\x22\x06\x15\x14\x16\xcb\x33\x32\x36\x3f\x25\x23\x3b\ \x0f\x17\x0b\x15\x11\x36\x35\x0d\x14\x15\x12\x11\x18\x15\x23\x2f\ \x1b\x0e\x18\x0b\x86\x52\x0b\x0e\x13\x22\x2e\x1b\x17\x1e\x16\x3f\ \x47\x40\x3e\x1a\x30\x44\x2a\x46\x4f\x94\x1d\x28\x28\x1d\x1d\x28\ \x28\xd2\x18\x1d\x25\x17\x15\x0f\x02\x03\x0b\x19\x14\x28\x1e\x03\ \x07\x1a\x14\x10\x20\x0c\x03\x0d\x29\x1d\x1b\x2b\x1e\x10\x03\x05\ \x30\x0b\x1f\x13\x1b\x29\x1c\x0f\x0b\x0e\x14\x22\x24\x29\x18\x29\ \x1f\x12\x2d\xf5\x26\x20\x20\x28\x28\x20\x20\x26\x00\x00\x00\x00\ \x01\x00\xaf\x01\x04\x01\xcc\x02\xd8\x00\x14\x00\x3a\x00\xb8\x00\ \x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xbb\x00\x06\x00\x01\x00\x0f\x00\x04\ \x2b\xba\x00\x03\x00\x06\x00\x14\x11\x12\x39\xb8\x00\x03\x10\xb9\ \x00\x12\x00\x01\xf4\x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\ \x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\xaf\x40\x04\x18\ \x38\x24\x39\x34\x40\x1f\x24\x1a\x27\x19\x40\x02\xd8\x7d\x45\x17\ \x21\x41\x3e\xcb\xc3\x2a\x27\x19\x18\xe3\x00\x00\x02\x00\xaf\x01\ \x04\x01\x8b\x02\xe0\x00\x05\x00\x11\x00\x2a\x00\xb8\x00\x03\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\ \x59\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x06\xdc\xb8\ \x00\x0c\xdc\x30\x31\x13\x33\x11\x23\x11\x23\x37\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\xaf\xcd\x40\x8d\xac\x15\x1b\x1b\x15\ \x15\x1b\x1b\x02\x46\xfe\xbe\x01\x0f\x72\x18\x15\x14\x1a\x1a\x14\ \x15\x18\x00\x00\x02\x00\x8c\x00\x77\x01\x80\x02\xe0\x00\x12\x00\ \x1e\x00\x34\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x09\x3e\x59\xbb\x00\x0d\x00\x01\x00\x07\x00\x04\x2b\xb8\ \x00\x00\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x13\ \xdc\xb8\x00\x19\xdc\x30\x31\x13\x33\x11\x14\x0e\x02\x23\x22\x26\ \x27\x37\x16\x33\x32\x36\x35\x11\x23\x37\x22\x26\x35\x34\x36\x33\ \x32\x16\x15\x14\x06\xa4\xcc\x0d\x20\x36\x28\x1a\x2d\x12\x14\x22\ \x20\x2f\x20\x8d\xac\x15\x1c\x1c\x15\x14\x1c\x1c\x02\x46\xfe\xbc\ \x1e\x32\x26\x15\x0d\x0a\x2e\x11\x2b\x28\x01\x15\x72\x18\x15\x14\ \x1a\x1a\x14\x15\x18\x00\x00\x00\x01\x00\xbd\x01\x04\x01\xf5\x02\ \xd8\x00\x0c\x00\x53\x00\xb8\x00\x08\x2f\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\ \xba\x00\x0a\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x0a\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x09\x00\x08\x00\x04\x11\x12\x39\xb8\x00\ \x09\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x33\x37\x33\x07\x17\ \x23\x27\x07\x15\x23\xbd\x40\x02\x9f\x47\x7c\x8c\x47\x6b\x46\x40\ \x02\xd8\xfe\xce\xa0\x80\xc2\x98\x43\x55\x00\x00\x01\x00\xc4\x00\ \xfc\x01\xca\x02\xd8\x00\x11\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xbb\x00\x05\x00\x01\ \x00\x0c\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x11\x00\x01\xf4\x30\ \x31\x13\x33\x11\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\ \x35\x11\x23\xc4\x91\x1d\x1a\x0b\x17\x10\x0c\x14\x22\x17\x36\x32\ \x51\x02\xd8\xfe\x94\x20\x1c\x06\x05\x32\x05\x08\x3c\x38\x01\x36\ \x00\x00\x00\x00\x01\x00\x82\x01\x04\x01\xd4\x02\x4e\x00\x1f\x00\ \x54\x00\xb8\x00\x1f\x2f\xb8\x00\x17\x2f\xb8\x00\x10\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\ \x00\x0b\x00\x01\x00\x13\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x06\ \x00\x04\x2b\xba\x00\x02\x00\x1f\x00\x01\x11\x12\x39\xb8\x00\x02\ \x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb9\x00\x1d\x00\x01\xf4\xb8\ \x00\x15\xd0\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x17\x3e\x01\ \x33\x32\x16\x1d\x01\x23\x35\x34\x23\x22\x07\x15\x23\x35\x34\x23\ \x22\x06\x07\x15\x23\x82\x32\x05\x02\x0c\x21\x1c\x31\x0c\x0d\x24\ \x1b\x22\x25\x3d\x1f\x1d\x15\x35\x20\x0f\x17\x0c\x3d\x02\x46\x2a\ \x16\x1c\x37\x19\x1e\x34\x30\xe6\xe1\x33\x2e\xe6\xe1\x33\x17\x17\ \xe6\x00\x00\x00\x01\x00\xaf\x01\x04\x01\xcc\x02\x4e\x00\x14\x00\ \x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0f\x00\x04\x2b\xba\x00\x02\x00\x14\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\ \xaf\x35\x05\x03\x17\x37\x25\x38\x35\x40\x1f\x24\x1a\x27\x19\x40\ \x02\x46\x30\x17\x21\x41\x3e\xcb\xc3\x2a\x27\x19\x18\xe3\x00\x00\ \x02\x00\x8e\x00\xfc\x01\xca\x02\x4e\x00\x13\x00\x1f\x00\x17\x00\ \xbb\x00\x17\x00\x01\x00\x0f\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1d\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\ \x22\x06\x8e\x1a\x2b\x39\x20\x20\x39\x2c\x19\x19\x2c\x39\x20\x20\ \x39\x2b\x1a\x42\x31\x2b\x2b\x31\x31\x2b\x2b\x31\x01\xa5\x28\x3f\ \x2b\x17\x17\x2b\x3f\x28\x28\x3f\x2b\x17\x17\x2b\x3f\x28\x35\x40\ \x40\x35\x34\x41\x41\x00\x00\x00\x02\x00\xac\x00\x7f\x01\xd8\x02\ \x4e\x00\x13\x00\x1f\x00\x54\x00\xb8\x00\x01\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\xbb\x00\x09\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x17\x00\x01\x00\x11\x00\x04\ \x2b\xba\x00\x05\x00\x09\x00\x11\x11\x12\x39\xba\x00\x13\x00\x11\ \x00\x09\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x14\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x1f\x00\x01\xf4\x30\x31\x37\x15\x23\x11\x33\ \x17\x33\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x27\x37\x1e\ \x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\xec\x40\x34\x05\x03\x17\ \x36\x1e\x41\x44\x18\x28\x35\x1c\x2f\x2e\x02\x15\x28\x11\x28\x34\ \x27\x2e\x27\x2e\xea\x6b\x01\xc7\x24\x12\x1a\x59\x4b\x29\x41\x2d\ \x17\x25\x2e\x11\x0d\x3f\x39\x33\x3d\x28\x00\x00\x02\x00\x89\x00\ \x7f\x01\xb6\x02\x4e\x00\x14\x00\x20\x00\x54\x00\xb8\x00\x0d\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\ \x59\xbb\x00\x05\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x18\x00\x01\ \x00\x12\x00\x04\x2b\xba\x00\x09\x00\x05\x00\x12\x11\x12\x39\xba\ \x00\x0f\x00\x12\x00\x1e\x11\x12\x39\xb8\x00\x0f\x10\xb9\x00\x1a\ \x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x1b\x00\x01\xf4\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\ \x23\x22\x26\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x06\x89\ \x18\x28\x35\x1d\x1d\x2c\x17\x02\x05\x34\x40\x03\x14\x34\x1d\x3f\ \x4c\x42\x2e\x2a\x2b\x28\x15\x26\x14\x27\x35\x01\xa5\x27\x3f\x2c\ \x17\x13\x14\x1f\xfe\x39\x70\x37\x11\x19\x58\x51\x37\x3d\x28\xa1\ \x11\x0e\x3e\x00\x01\x00\xf3\x01\x04\x01\xf0\x02\x4e\x00\x11\x00\ \x36\x00\xb8\x00\x10\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\x00\x0c\x00\x04\ \x2b\xba\x00\x02\x00\x10\x00\x01\x11\x12\x39\xb8\x00\x02\x10\xb9\ \x00\x0f\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x17\ \x07\x2e\x01\x23\x22\x06\x07\x15\x23\xf3\x36\x05\x02\x17\x42\x27\ \x23\x1d\x0d\x11\x19\x12\x1f\x3d\x18\x40\x02\x46\x4b\x27\x2c\x0d\ \x36\x05\x05\x28\x32\xb7\x00\x00\x01\x00\xa2\x00\xfc\x01\xc3\x02\ \x4e\x00\x2d\x00\x2b\x00\xbb\x00\x03\x00\x01\x00\x2a\x00\x04\x2b\ \xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xba\x00\x06\x00\x2a\x00\ \x1a\x11\x12\x39\xba\x00\x1d\x00\x13\x00\x03\x11\x12\x39\x30\x31\ \x13\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x27\x2e\x03\x35\x34\x36\ \x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x1e\x02\x17\x1e\ \x03\x15\x14\x06\x23\x22\x26\x27\xc0\x1a\x37\x25\x28\x26\x0f\x19\ \x20\x10\x15\x2b\x22\x16\x47\x40\x24\x3f\x17\x1e\x14\x2d\x1b\x26\ \x21\x0e\x18\x1e\x10\x16\x2c\x23\x16\x49\x46\x2b\x4c\x1b\x01\x53\ \x12\x14\x1a\x13\x0b\x11\x0e\x0a\x05\x06\x10\x16\x1d\x15\x28\x35\ \x16\x0f\x28\x0d\x10\x19\x11\x0b\x0f\x0c\x0a\x05\x06\x0f\x16\x1f\ \x17\x29\x39\x1a\x13\x00\x00\x00\x01\x00\xa4\x00\xfc\x01\xcf\x02\ \xa0\x00\x17\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\ \x1b\xb9\x00\x05\x00\x0d\x3e\x59\xbb\x00\x0d\x00\x01\x00\x14\x00\ \x04\x2b\xb8\x00\x06\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\x10\ \xb8\x00\x03\xd0\xb8\x00\x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x23\ \x35\x3f\x01\x33\x15\x33\x15\x23\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x35\xf1\x4d\x50\x08\x35\x91\x91\x22\x2d\x14\ \x1f\x0f\x0d\x14\x30\x1a\x48\x38\x02\x13\x30\x03\x5a\x5a\x33\x90\ \x2a\x2a\x08\x06\x2e\x08\x0b\x4a\x3d\x00\x00\x00\x01\x00\x9f\x00\ \xfc\x01\xbb\x02\x46\x00\x14\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\x59\xbb\x00\x0f\x00\ \x01\x00\x06\x00\x04\x2b\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\ \xb8\x00\x02\x10\xb8\x00\x12\xd0\x30\x31\x01\x23\x27\x23\x0e\x01\ \x23\x22\x26\x3d\x01\x33\x15\x14\x16\x33\x32\x36\x37\x35\x33\x01\ \xbb\x34\x06\x02\x17\x39\x25\x37\x34\x40\x1e\x23\x1a\x29\x18\x40\ \x01\x04\x33\x1a\x21\x41\x3e\xcb\xc3\x2a\x26\x17\x1c\xe0\x00\x00\ \x01\x00\x93\x01\x04\x01\xcd\x02\x46\x00\x0d\x00\x33\x00\xb8\x00\ \x0c\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\ \x00\x09\x3e\x59\xb8\x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x13\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x93\x42\ \x3d\x09\x0e\x08\x02\x08\x0f\x08\x3e\x3d\x76\x4a\x02\x46\xb0\x18\ \x30\x18\x18\x30\x18\xb0\xfe\xbe\x00\x00\x00\x00\x01\x00\x52\x01\ \x04\x01\xdc\x02\x46\x00\x21\x00\x5a\x00\xb8\x00\x17\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\ \x59\xb8\x00\x17\x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x0a\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x20\ \xd0\x30\x31\x13\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x27\x2e\x01\x27\x23\ \x0e\x01\x0f\x01\x23\x52\x40\x25\x05\x06\x04\x03\x04\x09\x05\x24\ \x33\x25\x05\x08\x05\x03\x05\x06\x05\x24\x3c\x43\x4d\x23\x05\x07\ \x05\x03\x04\x07\x06\x22\x4a\x02\x46\xb2\x17\x2d\x17\x17\x2d\x17\ \x9a\x9a\x17\x2d\x17\x17\x2d\x17\xb2\xfe\xbe\x97\x17\x2d\x19\x14\ \x2c\x1d\x97\x00\x01\x00\x9f\x01\x04\x01\xcb\x02\x46\x00\x19\x00\ \x4b\x00\xb8\x00\x0f\x2f\xb8\x00\x18\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x09\x3e\x59\xba\x00\x13\x00\ \x0f\x00\x0b\x11\x12\x39\xb8\x00\x13\x10\xb8\x00\x00\xd0\xb8\x00\ \x13\x10\xb8\x00\x0d\xd0\xb8\x00\x06\xd0\x30\x31\x01\x27\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x2e\x01\x27\ \x23\x0e\x01\x0f\x01\x23\x01\x0e\x66\x44\x2b\x08\x11\x08\x03\x08\ \x0f\x08\x26\x44\x68\x6f\x45\x2f\x08\x14\x0a\x02\x08\x11\x09\x2b\ \x43\x01\xac\x9a\x42\x0e\x1a\x0e\x0e\x1a\x0e\x42\xa1\xa1\x46\x0f\ \x1d\x0e\x0e\x1d\x0f\x46\x00\x00\x01\x00\x8c\x00\x7c\x01\xcc\x02\ \x46\x00\x1b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x17\x00\ \x04\x2b\xba\x00\x0e\x00\x17\x00\x12\x11\x12\x39\xb8\x00\x0e\x10\ \xb8\x00\x07\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x03\x33\ \x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x0e\x01\x23\x22\x26\ \x27\x37\xa8\x05\x0e\x07\x1d\x25\x0b\x07\x8a\x40\x45\x08\x11\x09\ \x02\x08\x0e\x07\x3c\x3e\x82\x13\x3c\x35\x0d\x15\x09\x0d\xb4\x01\ \x03\x23\x1c\x17\x01\x40\xaa\x14\x2f\x17\x16\x2f\x15\xaa\xfe\xa9\ \x33\x40\x04\x03\x31\x00\x00\x00\x01\x00\x92\x01\x04\x01\xc8\x02\ \x46\x00\x09\x00\x34\x00\xb8\x00\x09\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x03\x2f\x1b\xb9\x00\x03\x00\x09\x3e\x59\xb8\x00\x09\x10\xb9\ \x00\x06\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\ \x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\x13\x37\x23\x35\x21\x15\x07\ \x33\x15\x21\x92\xd5\xbd\x01\x17\xd4\xdb\xfe\xca\x01\x26\xed\x33\ \x22\xed\x33\x00\x03\x00\xa0\x00\xfc\x01\xc9\x02\xe3\x00\x19\x00\ \x20\x00\x24\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\ \xb9\x00\x21\x00\x0f\x3e\x59\xbb\x00\x0e\x00\x01\x00\x15\x00\x04\ \x2b\xbb\x00\x05\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0a\x00\x01\ \x00\x1a\x00\x04\x2b\xb8\x00\x21\x10\xb8\x00\x23\xdc\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x13\x33\ \x17\x23\xa0\x1b\x2b\x39\x1e\x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\ \x14\x17\x18\x3b\x23\x23\x3c\x2d\x1a\xf1\x2b\x28\x23\x37\x06\x0b\ \x45\x3c\x31\x01\xa5\x27\x3f\x2c\x17\x53\x45\x14\x0c\x31\x37\x0d\ \x0c\x29\x0e\x14\x17\x2b\x3f\x42\x2d\x30\x30\x2d\x01\x24\x65\x00\ \x03\x00\xa0\x00\xfc\x01\xc9\x02\xe3\x00\x19\x00\x20\x00\x24\x00\ \x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x0f\x3e\x59\xbb\x00\x0e\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\x05\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\ \x2b\xb8\x00\x23\x10\xb8\x00\x21\xdc\x30\x31\x13\x34\x3e\x02\x33\ \x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x37\x23\x37\x33\xa0\x1b\ \x2b\x39\x1e\x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\x14\x17\x18\x3b\ \x23\x23\x3c\x2d\x1a\xf1\x2b\x28\x23\x37\x06\x60\x30\x3d\x44\x01\ \xa5\x27\x3f\x2c\x17\x53\x45\x14\x0c\x31\x37\x0d\x0c\x29\x0e\x14\ \x17\x2b\x3f\x42\x2d\x30\x30\x2d\xbf\x65\x00\x00\x02\x00\x9a\x00\ \xfc\x01\xc2\x02\x4e\x00\x18\x00\x1f\x00\x21\x00\xbb\x00\x1c\x00\ \x01\x00\x16\x00\x04\x2b\xbb\x00\x0e\x00\x01\x00\x07\x00\x04\x2b\ \xbb\x00\x19\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x13\x34\x36\x37\ \x33\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x0e\ \x02\x23\x22\x26\x37\x14\x16\x33\x32\x36\x37\x9a\x02\x02\xe5\x03\ \x33\x2f\x1a\x2a\x15\x16\x18\x3b\x23\x47\x56\x18\x29\x37\x20\x43\ \x4d\x39\x2d\x29\x27\x2f\x05\x01\x98\x09\x11\x06\x2f\x35\x0e\x0c\ \x29\x10\x13\x58\x51\x27\x3f\x2b\x18\x54\x3e\x30\x30\x31\x2f\x00\ \x02\x00\x89\x00\xfc\x01\xb6\x02\x4e\x00\x0b\x00\x20\x00\x54\x00\ \xb8\x00\x19\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\ \x16\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\x00\x04\x2b\xbb\ \x00\x11\x00\x01\x00\x09\x00\x04\x2b\xba\x00\x1a\x00\x1e\x00\x11\ \x11\x12\x39\xb8\x00\x1a\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x15\ \x00\x11\x00\x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\ \xf4\x30\x31\x13\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x06\x07\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\xcb\x2e\x2a\x2c\x27\x14\x28\x14\x26\x35\x42\x18\x28\ \x35\x1d\x1c\x2d\x17\x02\x05\x34\x35\x05\x02\x14\x35\x1d\x3f\x4c\ \x01\xa5\x37\x3d\x28\xa1\x11\x0e\x3e\x36\x27\x3f\x2c\x17\x13\x14\ \x1f\xfe\xbe\x25\x13\x1a\x58\x00\x02\x00\x89\x00\x79\x01\xb6\x02\ \x4e\x00\x1f\x00\x2c\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x17\ \x2f\x1b\xb9\x00\x17\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1c\ \x00\x04\x2b\xbb\x00\x12\x00\x01\x00\x27\x00\x04\x2b\xbb\x00\x20\ \x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x07\x00\x0a\x00\x12\x11\x12\ \x39\xba\x00\x16\x00\x12\x00\x0a\x11\x12\x39\xb8\x00\x07\x10\xb9\ \x00\x23\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x24\x00\x01\xf4\x30\ \x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x26\x35\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\x27\ \x37\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x15\x14\x16\xb7\x19\x34\ \x17\x2d\x2d\x01\x01\x13\x33\x1d\x3f\x4c\x19\x28\x35\x1c\x1c\x2d\ \x16\x01\x06\x35\x51\x4a\x1f\x41\x1b\x83\x17\x28\x14\x14\x28\x14\ \x26\x36\x2f\xc8\x10\x0d\x2a\x24\x38\x11\x18\x57\x4b\x25\x3d\x2b\ \x17\x13\x13\x1e\xfe\xb2\x3c\x43\x12\x11\xa0\x15\x15\x94\x11\x0e\ \x3c\x32\x33\x3c\x00\x00\x00\x00\x02\x00\xaf\x01\xad\x01\xaa\x02\ \xad\x00\x13\x00\x1f\x00\x17\x00\xbb\x00\x0a\x00\x01\x00\x1a\x00\ \x04\x2b\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x01\x22\ \x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x27\x32\ \x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x19\x2d\x23\x14\ \x14\x23\x2d\x19\x19\x2e\x22\x15\x15\x22\x2e\x19\x22\x2a\x2a\x22\ \x21\x2a\x2a\x01\xad\x12\x21\x2f\x1d\x1e\x2f\x22\x12\x12\x22\x2f\ \x1e\x1d\x2f\x21\x12\x2e\x2e\x23\x25\x2e\x2e\x25\x23\x2e\x00\x00\ \x02\x00\x3a\x00\x53\x02\x1e\x02\x41\x00\x20\x00\x34\x00\x17\x00\ \xbb\x00\x26\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\ \x30\x00\x04\x2b\x30\x31\x3f\x01\x2e\x01\x35\x34\x36\x37\x27\x37\ \x17\x36\x33\x32\x17\x37\x17\x07\x1e\x01\x15\x14\x06\x07\x17\x07\ \x27\x0e\x01\x23\x22\x27\x07\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\ \x34\x2e\x02\x23\x22\x0e\x02\x3a\x54\x11\x13\x12\x11\x53\x2c\x57\ \x30\x3f\x3e\x31\x57\x2c\x54\x11\x13\x13\x11\x54\x2c\x58\x17\x39\ \x1e\x3e\x31\x57\x50\x13\x20\x2b\x18\x18\x2b\x20\x13\x13\x20\x2b\ \x18\x18\x2b\x20\x13\x80\x55\x17\x3a\x23\x23\x3b\x17\x56\x2d\x5a\ \x25\x25\x5a\x2d\x56\x17\x3b\x23\x23\x3a\x17\x55\x2d\x59\x13\x13\ \x26\x59\xf6\x1e\x31\x24\x13\x13\x24\x31\x1e\x1e\x31\x24\x13\x13\ \x24\x31\x00\x00\x01\x00\x55\xff\x92\x02\x00\x02\xec\x00\x31\x00\ \x47\x00\xb8\x00\x16\x2f\xb8\x00\x2c\x2f\xb8\x00\x2b\xdc\xb9\x00\ \x05\x00\x01\xf4\xb8\x00\x16\x10\xb8\x00\x17\xdc\xba\x00\x08\x00\ \x17\x00\x2b\x11\x12\x39\xb8\x00\x14\xd0\xb8\x00\x17\x10\xb9\x00\ \x1e\x00\x01\xf4\xba\x00\x21\x00\x2b\x00\x17\x11\x12\x39\xb8\x00\ \x2b\x10\xb8\x00\x2e\xd0\x30\x31\x01\x2e\x03\x23\x22\x06\x15\x14\ \x1e\x04\x15\x14\x0e\x02\x07\x15\x23\x35\x2e\x01\x27\x37\x1e\x01\ \x33\x32\x36\x35\x34\x2e\x04\x35\x34\x36\x37\x35\x33\x15\x1e\x01\ \x17\x01\xc3\x11\x1f\x22\x28\x19\x33\x3b\x2f\x47\x52\x47\x2f\x19\ \x2f\x41\x27\x3c\x38\x64\x23\x27\x26\x5b\x39\x3c\x3d\x2f\x46\x53\ \x46\x2f\x59\x49\x3c\x37\x4a\x1e\x01\xed\x0d\x15\x0f\x08\x2d\x26\ \x1c\x24\x1e\x1e\x2a\x3c\x2e\x20\x37\x29\x1b\x04\x92\x91\x05\x2c\ \x1d\x39\x1b\x29\x31\x26\x1f\x29\x20\x1e\x29\x39\x2c\x3f\x50\x08\ \x84\x83\x05\x2a\x1d\x00\x00\x00\x01\x00\x4d\x00\x00\x02\x13\x02\ \x8a\x00\x29\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x0b\x00\ \x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x23\xd0\x30\x31\x25\x15\x21\x35\ \x3e\x01\x35\x34\x27\x23\x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x17\x33\x15\x23\x16\ \x15\x14\x06\x07\x15\x02\x13\xfe\x3b\x3f\x3d\x08\x75\x63\x0b\x15\ \x1e\x37\x4d\x30\x3e\x55\x1d\x30\x17\x3b\x2a\x42\x45\x13\x0b\xbd\ \xad\x06\x25\x26\x47\x47\x32\x1c\x5f\x39\x1a\x1d\x34\x04\x20\x3d\ \x20\x2a\x44\x30\x1a\x2b\x20\x2f\x17\x1e\x41\x34\x20\x3b\x20\x38\ \x1b\x1d\x35\x46\x1f\x04\x00\x00\x01\x00\x35\x00\x00\x02\x23\x02\ \x7e\x00\x1d\x00\x6c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\ \x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x13\x00\x09\ \x11\x12\x39\xb8\x00\x05\x10\xb8\x00\x0b\xd0\xb9\x00\x0e\x00\x01\ \xf4\xb8\x00\x19\xd0\xb8\x00\x18\xdc\xb8\x00\x0f\xd0\xb9\x00\x12\ \x00\x01\xf4\xb8\x00\x15\xd0\xb8\x00\x0b\x10\xb8\x00\x1c\xd0\x30\ \x31\x13\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x33\x15\x23\ \x15\x33\x15\x23\x15\x23\x35\x23\x35\x33\x35\x23\x35\x33\x03\x8a\ \x5c\x11\x21\x13\x04\x12\x22\x12\x5c\x52\xba\xa2\xb7\xb7\xb7\x52\ \xb5\xb5\xb5\xa1\xb9\x02\x7e\xab\x21\x43\x23\x23\x43\x21\xab\xfe\ \xc0\x2f\x41\x30\x9e\x9e\x30\x41\x2f\x01\x40\x00\x01\x00\x3a\xff\ \xf4\x02\x36\x02\x8a\x00\x31\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x15\x2f\x1b\xb9\x00\x15\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xba\x00\x28\x00\ \x22\x00\x03\x2b\xb8\x00\x28\x10\xb9\x00\x2b\x00\x01\xf4\xb8\x00\ \x06\xd0\xb8\x00\x28\x10\xb8\x00\x09\xd0\xb8\x00\x22\x10\xb8\x00\ \x0f\xd0\xb8\x00\x22\x10\xb9\x00\x1f\x00\x01\xf4\xb8\x00\x12\xd0\ \xb8\x00\x15\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\ \x2e\x00\x01\xf4\x30\x31\x25\x0e\x01\x23\x22\x26\x27\x23\x35\x37\ \x26\x34\x35\x3c\x01\x37\x23\x35\x37\x3e\x01\x33\x32\x16\x17\x07\ \x2e\x01\x23\x22\x06\x07\x21\x15\x21\x06\x14\x15\x1c\x01\x17\x21\ \x15\x23\x1e\x01\x33\x32\x36\x37\x02\x36\x26\x5c\x3e\x62\x87\x13\ \x40\x3b\x01\x01\x3b\x40\x13\x8d\x6a\x33\x58\x1e\x31\x1a\x3b\x26\ \x4a\x5a\x0e\x01\x26\xfe\xd5\x01\x01\x01\x03\xfd\x0e\x58\x45\x2b\ \x41\x1e\x51\x2c\x31\x81\x76\x2b\x04\x09\x12\x09\x08\x10\x08\x2c\ \x05\x76\x85\x2d\x21\x2f\x1a\x21\x62\x57\x31\x07\x0e\x08\x0a\x13\ \x09\x30\x55\x60\x24\x23\x00\x00\x02\x00\x71\xff\xdf\x01\xfa\x02\ \x8d\x00\x06\x00\x25\x00\x5c\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x0b\x3e\x59\xbb\x00\x22\x00\x01\x00\x0a\ \x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x21\x00\x04\x2b\xb8\x00\x21\ \x10\xb8\x00\x00\xd0\xb8\x00\x00\x2f\xb8\x00\x22\x10\xb8\x00\x06\ \xd0\xb8\x00\x06\x2f\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\xb8\x00\x0d\ \x2f\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\xb8\x00\x17\xd0\xb8\x00\x17\ \x2f\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\x01\x07\x15\x23\ \x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\x17\x07\x2e\ \x01\x27\x11\x3e\x01\x37\x01\x3a\x38\x40\x3f\x39\xc0\x1e\x48\x27\ \x33\x2d\x4a\x35\x1d\x1f\x36\x4a\x2a\x33\x2c\x40\x17\x28\x14\x2d\ \x1a\x20\x34\x15\x01\xdd\x0d\x58\x42\x43\x58\x0d\x09\x1a\x22\x03\ \x67\x68\x05\x24\x3d\x54\x35\x34\x53\x3c\x24\x06\x6a\x67\x02\x22\ \x16\x34\x12\x16\x02\xfe\xa8\x02\x1b\x12\x00\x00\x01\x00\x31\xff\ \x9f\x02\x18\x02\x9c\x00\x28\x00\x42\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x0d\x3e\x59\xbb\x00\x19\x00\x01\ \x00\x12\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\ \x00\x25\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\x1d\ \xd0\xb8\x00\x0a\x10\xb8\x00\x21\xd0\x30\x31\x01\x2e\x01\x23\x22\ \x0e\x02\x0f\x01\x33\x15\x23\x07\x0e\x03\x23\x22\x26\x27\x37\x1e\ \x01\x33\x32\x36\x3f\x01\x23\x35\x37\x33\x37\x3e\x01\x33\x32\x16\ \x17\x02\x04\x0e\x1f\x16\x19\x23\x18\x0e\x03\x07\x8e\x95\x1b\x06\ \x17\x28\x3e\x2c\x1a\x2a\x0f\x10\x0e\x1d\x10\x34\x2d\x0a\x18\x68\ \x46\x29\x06\x0d\x50\x54\x1a\x30\x11\x02\x4a\x07\x08\x16\x24\x2f\ \x19\x3f\x3f\xed\x2e\x4b\x36\x1e\x0b\x07\x3e\x05\x08\x4f\x4d\xdb\ \x3b\x04\x38\x64\x68\x0c\x08\x00\x03\x00\x60\xff\x92\x02\x22\x02\ \xec\x00\x09\x00\x10\x00\x37\x00\xb1\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x26\x2f\x1b\xb9\x00\x26\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x1a\xd0\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x02\x00\x01\xf4\ \xb8\x00\x26\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x03\xd0\xb8\x00\ \x09\x10\xb8\x00\x0a\xd0\xb8\x00\x00\x10\xb8\x00\x10\xd0\xb8\x00\ \x17\x10\xb8\x00\x14\xd0\xb8\x00\x17\x10\xb8\x00\x16\xdc\xb8\x00\ \x1b\xd0\xb8\x00\x1a\x10\xb8\x00\x1d\xd0\xb8\x00\x26\x10\xb8\x00\ \x23\xd0\xb8\x00\x26\x10\xb8\x00\x25\xdc\xb8\x00\x03\x10\xb9\x00\ \x29\x00\x01\xf4\xb8\x00\x25\x10\xb8\x00\x2a\xd0\xb8\x00\x29\x10\ \xb8\x00\x2c\xd0\xb8\x00\x03\x10\xb8\x00\x33\xd0\xb8\x00\x02\x10\ \xb8\x00\x34\xd0\xb8\x00\x34\x2f\x30\x31\x25\x16\x17\x13\x2e\x01\ \x23\x2a\x01\x0f\x01\x0e\x01\x15\x14\x16\x17\x05\x0e\x01\x0f\x01\ \x23\x37\x2e\x01\x27\x07\x23\x37\x2e\x01\x35\x34\x36\x3f\x01\x33\ \x07\x33\x32\x17\x37\x33\x07\x1e\x01\x17\x07\x2e\x01\x27\x03\x3e\ \x01\x37\x01\x1f\x17\x21\x3e\x0a\x13\x0b\x05\x08\x05\x27\x3e\x41\ \x24\x23\x01\x26\x23\x54\x36\x0c\x26\x0c\x0f\x1c\x0e\x0d\x26\x0f\ \x44\x4e\x76\x67\x0c\x26\x0c\x0f\x14\x17\x0c\x26\x0e\x1a\x2d\x11\ \x31\x0b\x17\x0d\x3c\x23\x37\x1a\x47\x0d\x03\x02\x0c\x02\x03\x01\ \x08\x15\x85\x64\x4c\x73\x21\x10\x28\x30\x04\x63\x63\x01\x05\x04\ \x6d\x7c\x23\x9c\x71\x8a\xab\x12\x67\x62\x05\x67\x72\x0b\x20\x13\ \x2f\x0b\x13\x08\xfe\x04\x05\x23\x1e\x00\x00\x00\x01\x00\x4e\x00\ \x00\x02\x13\x02\x8a\x00\x34\x00\x87\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x0e\x00\ \x01\x00\x11\x00\x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x03\xd0\xb8\x00\x0e\x10\xb9\x00\x0b\x00\x01\xf4\xb9\x00\ \x07\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\x09\xd0\xb8\x00\x11\x10\ \xb8\x00\x10\xd0\xb8\x00\x19\x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\ \x11\x10\xb8\x00\x27\xd0\xb8\x00\x0e\x10\xb8\x00\x28\xd0\xb8\x00\ \x0b\x10\xb8\x00\x2d\xd0\xb8\x00\x07\x10\xb8\x00\x2e\xd0\x30\x31\ \x25\x15\x21\x35\x3e\x01\x3d\x01\x23\x35\x37\x33\x2e\x01\x27\x23\ \x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\ \x22\x06\x15\x14\x16\x17\x33\x15\x23\x1e\x01\x17\x33\x15\x23\x15\ \x14\x06\x07\x15\x02\x13\xfe\x3b\x3f\x3d\x7c\x57\x1e\x04\x0b\x05\ \x61\x50\x06\x08\x1e\x37\x4d\x30\x3e\x55\x1d\x30\x17\x3b\x2a\x42\ \x45\x07\x06\xce\xbe\x05\x09\x03\xad\xa7\x25\x26\x47\x47\x32\x1c\ \x5f\x39\x05\x2c\x05\x0f\x1d\x0f\x2d\x04\x12\x25\x13\x2a\x44\x30\ \x1a\x2b\x20\x2f\x17\x1e\x41\x34\x13\x23\x12\x31\x0e\x1e\x0f\x31\ \x06\x35\x46\x1f\x04\x00\x00\x00\x05\x00\x2f\x00\x00\x02\x27\x02\ \x7e\x00\x05\x00\x09\x00\x0f\x00\x13\x00\x2f\x00\xcb\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2b\x2f\x1b\xb9\x00\x2b\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\ \x3e\x59\xb8\x00\x27\x10\xb8\x00\x10\xdc\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x02\xd0\xb8\x00\x0d\x10\xb8\x00\x0f\xd0\xb8\x00\x04\xd0\ \xb8\x00\x0f\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\ \x1a\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x27\x10\xb9\x00\x13\x00\ \x01\xf4\xb8\x00\x02\x10\xb8\x00\x14\xd0\xb8\x00\x04\x10\xb8\x00\ \x15\xd0\xb8\x00\x07\x10\xb8\x00\x18\xd0\xb8\x00\x1c\x10\xb8\x00\ \x1f\xd0\xb8\x00\x0f\x10\xb8\x00\x22\xd0\xb8\x00\x0d\x10\xb8\x00\ \x23\xd0\xb8\x00\x10\x10\xb8\x00\x26\xd0\xb8\x00\x10\x10\xb8\x00\ \x29\xd0\xb8\x00\x2d\xd0\x30\x31\x01\x35\x23\x1f\x01\x33\x17\x23\ \x17\x33\x2f\x01\x35\x23\x17\x15\x27\x33\x27\x23\x05\x15\x33\x15\ \x23\x15\x23\x27\x23\x15\x23\x35\x23\x35\x37\x35\x23\x35\x37\x35\ \x33\x17\x33\x35\x33\x15\x33\x15\x01\x9e\x5a\x13\x05\x44\x03\x37\ \x3e\x04\x95\x18\x48\x01\x04\x3b\x43\x04\x01\x35\x48\x48\x54\x61\ \x70\x41\x4a\x4a\x4a\x4a\x54\x66\x6b\x41\x48\x01\x3d\x1a\x2e\x0e\ \x2b\xa6\xd1\x3b\x01\x16\x26\x66\xb2\xdc\x3c\x2b\xf0\xf0\xf0\xf0\ \x26\x05\x3c\x25\x05\xfd\xfd\xfd\xfd\x2a\x00\x00\x03\x00\x2b\x00\ \x00\x02\x2a\x02\x7e\x00\x05\x00\x0b\x00\x21\x00\x63\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\ \xbb\x00\x04\x00\x01\x00\x07\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\ \x05\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\ \x04\x10\xb8\x00\x0d\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\ \x07\x10\xb8\x00\x18\xd0\xb8\x00\x07\x10\xb8\x00\x20\xd0\x30\x31\ \x01\x32\x36\x37\x23\x15\x11\x15\x33\x2e\x01\x23\x05\x23\x0e\x03\ \x2b\x01\x15\x23\x11\x23\x35\x37\x35\x33\x32\x1e\x02\x17\x33\x01\ \x00\x45\x4e\x08\xd6\xd6\x08\x4e\x45\x01\x2a\x40\x05\x25\x3c\x4d\ \x2d\x45\x4f\x4b\x4b\x94\x2d\x4e\x3b\x25\x05\x40\x01\x2e\x3a\x39\ \x73\x01\x17\x6c\x3b\x31\xa4\x2c\x41\x2a\x15\xf5\x01\xa1\x33\x05\ \xa5\x12\x27\x3f\x2d\x00\x00\x00\x03\x00\x6d\x00\x00\x02\x22\x02\ \x99\x00\x03\x00\x12\x00\x2f\x00\x56\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x24\x00\x01\ \x00\x07\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb9\ \x00\x1c\x00\x01\xf4\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x24\x10\xb8\ \x00\x15\xdc\xb8\x00\x29\xd0\xb8\x00\x15\x10\xb9\x00\x2f\x00\x01\ \xf4\xb8\x00\x2b\xd0\xb8\x00\x2f\x10\xb8\x00\x2e\xdc\x30\x31\x37\ \x21\x15\x21\x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\ \x37\x13\x15\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x34\x3e\ \x02\x33\x32\x16\x17\x27\x35\x23\x35\x33\x35\x33\x15\x79\x01\x7a\ \xfe\x86\x01\x14\x1b\x2d\x1e\x17\x29\x1f\x12\x39\x34\x1c\x34\x1a\ \x95\x4e\x3a\x06\x04\x17\x3e\x27\x4c\x5b\x1d\x31\x3f\x21\x27\x35\ \x1a\x04\x9b\x9b\x47\x31\x31\x01\x79\x16\x13\x12\x20\x2b\x19\x3e\ \x45\x19\x1c\x01\x78\x2c\x05\xfe\x53\x2b\x17\x1e\x61\x5c\x29\x42\ \x2f\x19\x18\x16\x53\x22\x31\x43\x43\x00\x00\x00\x04\x00\x2b\x00\ \x00\x02\x2a\x02\x7e\x00\x08\x00\x0d\x00\x13\x00\x34\x00\x8d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\ \x3e\x59\xbb\x00\x09\x00\x01\x00\x23\x00\x04\x2b\xb8\x00\x2f\x10\ \xb9\x00\x0e\x00\x01\xf4\xb8\x00\x10\xd0\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x00\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x06\x10\xb8\x00\ \x15\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\xb8\x00\x0b\x10\xb8\x00\ \x1d\xd0\xb8\x00\x0b\x10\xb8\x00\x27\xd0\xb8\x00\x00\x10\xb8\x00\ \x2a\xd0\xb8\x00\x06\x10\xb8\x00\x2b\xd0\xb8\x00\x10\x10\xb8\x00\ \x2e\xd0\xb8\x00\x10\x10\xb8\x00\x33\xd0\x30\x31\x01\x3e\x01\x35\ \x34\x26\x27\x23\x15\x17\x32\x37\x23\x15\x11\x15\x33\x2e\x01\x23\ \x05\x23\x1e\x01\x15\x1c\x01\x07\x33\x15\x23\x0e\x03\x2b\x01\x15\ \x23\x11\x23\x35\x37\x35\x23\x35\x37\x35\x33\x32\x16\x17\x33\x01\ \x9b\x01\x01\x01\x01\xd6\x3b\x70\x21\xcc\xc9\x11\x47\x36\x01\x2a\ \x41\x01\x01\x01\x40\x48\x0a\x29\x38\x46\x27\x45\x4f\x4b\x4b\x4b\ \x4b\x94\x4e\x73\x15\x4a\x01\xa2\x06\x0d\x07\x09\x10\x08\x3b\x74\ \x4b\x4b\x01\x17\x3f\x22\x1d\x68\x08\x10\x09\x07\x0d\x06\x29\x22\ \x31\x21\x10\xf5\x01\x79\x24\x05\x3b\x25\x04\x78\x37\x41\x00\x00\ \x01\x00\x54\xff\x92\x02\x0e\x02\xec\x00\x2a\x00\x75\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\ \x3e\x59\xbb\x00\x2a\x00\x01\x00\x27\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x03\xdc\xb8\x00\x12\x10\xb8\x00\x11\xdc\xb8\x00\x12\x10\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \x30\x31\x25\x06\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\ \x33\x15\x1e\x01\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x33\x32\x36\x37\x35\x23\x35\x33\x02\x0e\x43\x58\x3c\x32\x54\x3c\ \x21\x20\x3b\x54\x34\x3c\x2e\x4f\x1b\x31\x1a\x3b\x26\x2c\x43\x2f\ \x18\x18\x2d\x41\x2a\x20\x3a\x10\x74\xbf\x3d\x3e\x09\x64\x64\x06\ \x32\x54\x74\x48\x46\x73\x55\x33\x08\x65\x63\x04\x2c\x1f\x2e\x1b\ \x21\x25\x44\x62\x3c\x3e\x62\x44\x25\x16\x0f\xa9\x45\x00\x00\x00\ \x02\x00\x60\xff\x92\x02\x22\x02\xe9\x00\x06\x00\x25\x00\x7b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x0b\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\ \x00\x03\x3e\x59\xb8\x00\x17\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x0d\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xdc\ \xb8\x00\x1a\x10\xb8\x00\x19\xdc\xb8\x00\x00\x10\xb8\x00\x21\xd0\ \xb8\x00\x06\x10\xb8\x00\x22\xd0\x30\x31\x01\x0e\x01\x15\x14\x16\ \x17\x37\x0e\x01\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\ \x33\x15\x1e\x01\x17\x07\x2e\x01\x27\x11\x3e\x01\x37\x01\x4a\x48\ \x4d\x4d\x48\xd8\x21\x4f\x33\x35\x34\x56\x3e\x22\x21\x3d\x57\x35\ \x35\x2f\x4f\x1c\x31\x17\x32\x20\x22\x36\x1a\x02\x45\x0e\x8a\x6c\ \x70\x8c\x0d\x19\x26\x30\x05\x64\x63\x05\x31\x54\x76\x49\x47\x74\ \x54\x34\x07\x61\x60\x03\x2b\x1f\x2f\x17\x1f\x04\xfd\xf1\x05\x23\ \x1d\x00\x00\x00\x01\x00\x6c\x00\x00\x02\x0c\x02\x7e\x00\x1d\x00\ \x70\x00\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\ \x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\ \x0b\x00\x03\x3e\x59\xb8\x00\x1d\x10\xb9\x00\x01\x00\x01\xf4\xb8\ \x00\x1a\xd0\xb8\x00\x17\xd0\xb8\x00\x04\xd0\xb8\x00\x17\x10\xb9\ \x00\x13\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x13\x10\xb8\x00\x10\ \xd0\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0a\xd0\xb8\x00\x0a\x2f\x30\ \x31\x01\x23\x1e\x01\x17\x33\x15\x23\x0e\x01\x07\x13\x23\x27\x23\ \x35\x33\x32\x36\x37\x21\x35\x37\x33\x2e\x01\x2b\x01\x35\x21\x02\ \x0c\x9d\x21\x2b\x08\x49\x47\x05\x5d\x49\xd0\x5e\xc7\x59\x4f\x53\ \x60\x05\xfe\xf9\x4c\xb8\x0c\x5d\x4c\x4f\x01\xa0\x02\x4d\x0f\x35\ \x23\x31\x4c\x58\x0e\xfe\xfd\xfc\x43\x3a\x3c\x2c\x05\x2e\x26\x44\ \x00\x00\x00\x00\x01\x00\x38\xff\xf2\x02\x18\x02\x7e\x00\x24\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x20\x00\x11\x00\ \x1a\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x23\xd0\xb8\x00\x12\xd0\ \xb8\x00\x20\x10\xb8\x00\x15\xd0\xb8\x00\x1f\xd0\xb8\x00\x16\xd0\ \xb8\x00\x1f\x10\xb8\x00\x1c\xd0\xb8\x00\x19\xd0\x30\x31\x37\x3e\ \x03\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x27\x11\x07\x35\ \x37\x35\x07\x35\x37\x35\x33\x15\x37\x15\x07\x15\x37\x15\x07\x15\ \xf4\x25\x4e\x41\x29\x01\x05\x45\x05\x03\x3a\x66\x89\x4f\x68\x68\ \x68\x68\x54\xb6\xb6\xb6\xb6\x42\x01\x16\x29\x3d\x27\x08\x15\x0e\ \x12\x11\x1b\x0d\x3f\x5e\x3e\x1d\x02\x01\x11\x30\x35\x30\x48\x30\ \x34\x31\xc7\x9e\x56\x35\x56\x48\x56\x34\x57\xec\x00\x00\x00\x00\ \x02\x00\x1c\x00\x20\x02\x3c\x02\x70\x00\x03\x00\x07\x00\x0b\x00\ \xba\x00\x07\x00\x03\x00\x03\x2b\x30\x31\x3f\x01\x17\x07\x01\x07\ \x27\x37\x1c\xb7\x21\xa7\x01\xef\xb7\x21\xa7\x4d\xbc\x1e\xcb\x02\ \x23\xbc\x1e\xcb\x00\x00\x00\xff\xff\x00\x1c\x00\x20\x02\x3c\x02\ \x70\x02\x06\x02\x88\x00\x00\xff\xff\x00\x1c\x00\x20\x02\x3c\x02\ \x70\x02\x06\x02\x88\x00\x00\xff\xff\x00\x1c\xff\xf4\x02\x3d\x02\ \x8a\x02\x27\x02\x38\xff\x7b\x01\x4d\x00\x26\x02\x88\x00\x00\x00\ \x07\x02\x38\x00\x86\x00\x00\x00\x07\x00\x30\xff\xf4\x02\x3f\x02\ \x8a\x00\x0b\x00\x17\x00\x1b\x00\x27\x00\x33\x00\x3f\x00\x4b\x00\ \x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\ \x34\x00\x03\x3e\x59\xbb\x00\x22\x00\x01\x00\x2e\x00\x04\x2b\xbb\ \x00\x0c\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x12\ \x00\x01\xf4\xb8\x00\x1c\x10\xb9\x00\x28\x00\x01\xf4\xb8\x00\x22\ \x10\xb8\x00\x3a\xd0\xb8\x00\x28\x10\xb8\x00\x40\xd0\xb8\x00\x2e\ \x10\xb8\x00\x46\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\ \x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x25\ \x05\x27\x25\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\ \x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x05\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\xa5\x34\x41\x41\x34\x34\x41\x41\x34\x1b\x23\x23\x1b\ \x1b\x24\x24\x01\xb5\xfe\x38\x0e\x01\xbe\xfe\x7e\x34\x41\x41\x34\ \x34\x41\x41\x34\x1b\x23\x23\x1b\x1b\x24\x24\x01\x2a\x34\x41\x41\ \x34\x34\x41\x41\x34\x1b\x23\x23\x1b\x1b\x24\x24\x01\x85\x45\x3f\ \x3d\x44\x44\x3d\x3f\x45\x2a\x2b\x2f\x2d\x2a\x2a\x2d\x2f\x2b\x15\ \xae\x1f\xc9\xfd\xf6\x45\x3f\x3d\x44\x44\x3d\x3f\x45\x2a\x2b\x2f\ \x2d\x29\x29\x2d\x2f\x2b\x2a\x45\x3f\x3d\x44\x44\x3d\x3f\x45\x2a\ \x2b\x2f\x2d\x29\x29\x2d\x2f\x2b\x00\x00\x00\xff\xff\x00\x1c\x00\ \x00\x02\x3f\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3c\x00\x86\x00\x00\xff\xff\x00\x1c\x00\ \x00\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3a\x00\x87\x00\x00\xff\xff\x00\x27\x00\ \x00\x02\x55\x02\x8a\x02\x27\x02\x3b\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x19\x00\x00\x07\x02\x3c\x00\x86\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x8a\x02\x27\x02\x3a\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x8a\x02\x27\x02\x3b\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x3d\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x3f\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\x00\x01\x00\x55\x00\ \x68\x02\x03\x02\x2c\x00\x0b\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\x30\x31\x01\x23\x35\x33\x35\x33\x15\x33\x15\x23\ \x15\x23\x01\x0b\xb6\xb6\x42\xb6\xb6\x42\x01\x2b\x3e\xc3\xc3\x3e\ \xc3\x00\x00\x00\x01\x00\x55\x01\x2b\x02\x03\x01\x69\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x55\x01\xae\xfe\x52\x01\x69\x3e\x00\x00\x01\x00\x66\x00\ \x7e\x01\xf2\x02\x15\x00\x0b\x00\x29\x00\xba\x00\x05\x00\x09\x00\ \x03\x2b\xba\x00\x0a\x00\x09\x00\x05\x11\x12\x39\xb8\x00\x0a\x10\ \xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x07\xd0\xb8\x00\x04\xd0\ \x30\x31\x3f\x01\x27\x37\x17\x37\x17\x07\x17\x07\x27\x07\x66\x9a\ \x9a\x2c\x9a\x9a\x2c\x9a\x9a\x2c\x9a\x9a\xab\x9f\x9e\x2d\x9f\x9f\ \x2d\x9e\x9f\x2d\xa0\xa0\x00\x00\x03\x00\x55\x00\x60\x02\x03\x02\ \x33\x00\x0b\x00\x17\x00\x1b\x00\x25\x00\xbb\x00\x19\x00\x01\x00\ \x1a\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x00\xdc\xb8\x00\x06\xdc\ \xb8\x00\x1a\x10\xb8\x00\x0f\xdc\xb8\x00\x15\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x03\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x27\x21\x15\x21\x01\x2c\x17\x1f\x1f\x17\ \x17\x1f\x1f\x4d\x1f\x17\x17\x1f\x1f\x17\x17\x1f\xa1\x01\xae\xfe\ \x52\x01\xc8\x1e\x18\x17\x1e\x1e\x17\x18\x1e\xfe\xce\x17\x1e\x1e\ \x17\x18\x1e\x1e\xeb\x3e\x00\xff\xff\x00\xd8\x01\x07\x01\x7a\x01\ \xb0\x02\x07\x01\xe3\xff\xfd\x01\x13\x00\x00\xff\xff\x00\x55\x00\ \xc1\x02\x03\x01\xd4\x02\x26\x02\x97\x00\x6b\x00\x06\x02\x97\x00\ \x96\x00\x00\x00\x01\x00\x78\x00\x30\x01\xed\x02\x68\x00\x07\x00\ \x3b\x00\xbb\x00\x00\x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\xba\x00\ \x04\x00\x00\x00\x07\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x05\xd0\ \xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x25\x15\x05\ \x15\x05\x15\x25\x78\x01\x75\xfe\xd3\x01\x2d\xfe\x8b\x01\x6b\xfd\ \x4f\xcb\x04\xcb\x4f\xfd\x00\x00\x01\x00\x6b\x00\x30\x01\xe0\x02\ \x68\x00\x07\x00\x3b\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\ \x01\xf4\xba\x00\x04\x00\x07\x00\x00\x11\x12\x39\xb8\x00\x07\x10\ \xb8\x00\x05\xd0\xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x01\x05\x35\x25\x35\x25\x35\x05\x01\xe0\xfe\x8b\x01\x2d\xfe\xd3\ \x01\x75\x01\x2d\xfd\x4f\xcb\x04\xcb\x4f\xfd\x00\x02\x00\x55\x00\ \x00\x02\x03\x02\x15\x00\x03\x00\x0d\x00\x4e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x04\ \x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\xba\x00\x09\x00\x04\x00\x0d\x11\x12\x39\xb8\x00\x09\x10\xb8\ \x00\x05\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x0c\ \xd0\xb9\x00\x0b\x00\x01\xf4\x30\x31\x37\x21\x15\x21\x11\x25\x15\ \x0f\x01\x15\x1f\x01\x15\x25\x55\x01\xae\xfe\x52\x01\xae\xd2\x87\ \x87\xd2\xfe\x52\x3e\x3e\x01\x7c\x99\x47\x49\x2c\x04\x2c\x49\x47\ \x99\x00\x00\x00\x02\x00\x55\x00\x00\x02\x03\x02\x15\x00\x03\x00\ \x0d\x00\x4e\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x03\x3e\x59\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\ \x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x08\x00\x0d\x00\x04\ \x11\x12\x39\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x08\x10\xb8\x00\x0c\xd0\xb9\x00\x0b\x00\x01\xf4\x30\ \x31\x37\x21\x15\x21\x01\x05\x35\x3f\x01\x35\x2f\x01\x35\x05\x55\ \x01\xae\xfe\x52\x01\xae\xfe\x52\xd2\x87\x87\xd2\x01\xae\x3e\x3e\ \x01\x32\x99\x47\x49\x2c\x04\x2c\x49\x47\x99\x00\x02\x00\x55\x00\ \x00\x02\x03\x02\x2c\x00\x0b\x00\x0f\x00\x44\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xbb\x00\x03\ \x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\ \x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x00\x10\xb8\x00\x08\xd0\xb8\ \x00\x0e\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x0b\xdc\x30\x31\x01\ \x23\x35\x33\x35\x33\x15\x33\x15\x23\x15\x23\x07\x21\x15\x21\x01\ \x0b\xb6\xb6\x42\xb6\xb6\x42\xb6\x01\xae\xfe\x52\x01\x30\x3e\xbe\ \xbe\x3e\xb1\x41\x3e\x00\x00\x00\x01\x00\x6f\x01\x1c\x01\xe9\x02\ \x9e\x00\x09\x00\x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x02\xdc\xba\x00\x05\x00\x00\ \x00\x02\x11\x12\x39\xb8\x00\x09\xd0\x30\x31\x01\x33\x13\x23\x2f\ \x01\x23\x0f\x01\x23\x01\x08\x48\x99\x48\x42\x31\x04\x31\x42\x48\ \x02\x9e\xfe\x7e\xb0\x85\x85\xb0\x00\x00\x00\x00\x01\x00\x55\x00\ \x41\x02\x03\x02\x53\x00\x13\x00\x47\x00\xbb\x00\x07\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x0e\xdc\xb9\x00\x11\x00\ \x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0e\x10\xb8\x00\x03\xd0\xb8\x00\ \x0d\x10\xb8\x00\x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xdc\xb8\x00\ \x07\x10\xb8\x00\x0a\xd0\xb8\x00\x00\x10\xb8\x00\x13\xdc\x30\x31\ \x37\x23\x35\x33\x37\x23\x35\x21\x37\x33\x07\x33\x15\x23\x07\x33\ \x15\x21\x07\x23\xbc\x67\x8b\x5b\xe6\x01\x0a\x4c\x3d\x4c\x67\x8b\ \x5b\xe6\xfe\xf6\x4c\x3d\xc0\x3e\x98\x3e\x7f\x7f\x3e\x98\x3e\x7f\ \x00\x00\x00\x00\x01\x00\x4c\x00\xff\x02\x0c\x01\x95\x00\x19\x00\ \x27\x00\xbb\x00\x03\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\x11\x00\ \x01\x00\x08\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x0d\xd0\xb8\x00\ \x11\x10\xb8\x00\x19\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x3e\x02\x37\x17\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x4c\ \x1a\x48\x26\x1e\x2f\x29\x27\x15\x0c\x15\x15\x12\x09\x35\x1a\x48\ \x26\x1e\x2f\x29\x27\x15\x17\x29\x11\x01\x16\x46\x37\x1a\x20\x1a\ \x07\x13\x22\x1a\x18\x46\x36\x1a\x20\x1a\x22\x34\x00\x00\x00\xff\ \xff\x00\x4c\x00\x95\x02\x0c\x02\x00\x02\x26\x02\xa3\x00\x6b\x00\ \x06\x02\xa3\x00\x96\x00\x00\x00\x01\x00\x55\x00\x68\x02\x03\x01\ \x69\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x21\x11\x23\x35\x21\x55\x01\xae\x42\xfe\x94\x01\x69\ \xfe\xff\xc3\x00\x01\x00\x27\xff\xf4\x02\x31\x01\xe6\x00\x23\x00\ \x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x03\x3e\x59\xb8\x00\x10\x10\xb9\x00\x0d\x00\x01\xf4\xb8\ \x00\x05\xd0\xb8\x00\x12\xd0\xb8\x00\x21\x10\xb9\x00\x1b\x00\x01\ \xf4\x30\x31\x25\x34\x3e\x02\x37\x23\x14\x06\x07\x27\x3e\x01\x35\ \x23\x35\x37\x21\x15\x23\x0e\x02\x14\x15\x14\x16\x33\x32\x37\x17\ \x0e\x01\x23\x22\x26\x01\x86\x01\x02\x02\x01\xb9\x07\x07\x53\x0c\ \x08\x5f\x46\x01\xc4\x56\x02\x03\x02\x16\x17\x07\x14\x0b\x0b\x19\ \x13\x39\x31\x6e\x13\x47\x56\x5c\x28\x67\xd5\x6b\x05\x6c\xd3\x63\ \x3f\x05\x44\x29\x5f\x59\x47\x12\x1a\x16\x06\x3f\x05\x06\x3e\x00\ \x03\xff\xfc\x00\x96\x02\x5c\x01\xfb\x00\x25\x00\x31\x00\x3c\x00\ \x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xbb\x00\x29\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x32\ \x00\x01\x00\x00\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x37\x00\x04\ \x2b\xba\x00\x20\x00\x1d\x00\x13\x11\x12\x39\xb8\x00\x20\x10\xb8\ \x00\x26\xd0\xb8\x00\x0f\xd0\xb8\x00\x13\x10\xb9\x00\x2f\x00\x01\ \xf4\xb8\x00\x20\x10\xb8\x00\x34\xd0\x30\x31\x37\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x1e\x02\x17\x33\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x02\x23\x22\x26\x27\x23\x0e\x03\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x23\x22\x06\x07\x32\x37\x2e\x01\x23\x22\x06\x15\x14\ \x16\x82\x1b\x31\x25\x15\x17\x27\x35\x1f\x19\x29\x23\x1c\x0b\x04\ \x1f\x4f\x36\x21\x39\x29\x17\x17\x29\x39\x22\x37\x4f\x26\x04\x0b\ \x1c\x23\x2b\x9d\x21\x3e\x26\x2d\x30\x34\x30\x23\x3d\xc9\x40\x28\ \x19\x34\x1d\x24\x2b\x2f\xaa\x18\x2a\x38\x20\x27\x3e\x2b\x17\x10\ \x1c\x24\x15\x35\x40\x19\x2e\x3f\x25\x2a\x45\x30\x1b\x39\x3e\x12\ \x23\x1d\x11\xaa\x3e\x31\x3d\x2b\x30\x3f\x31\xa2\x58\x31\x2b\x2d\ \x29\x29\x35\x00\x01\x00\x4d\xff\x45\x02\x2e\x01\xe6\x00\x28\x00\ \x73\x00\xb8\x00\x28\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1f\ \x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x1f\x10\xb9\x00\ \x05\x00\x01\xf4\xba\x00\x1c\x00\x0b\x00\x1f\x11\x12\x39\xb8\x00\ \x1c\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x12\x00\ \x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\x3e\x02\x37\x11\x33\ \x0e\x01\x15\x14\x16\x33\x3a\x01\x37\x17\x06\x23\x22\x26\x27\x23\ \x0e\x01\x23\x22\x26\x27\x1c\x01\x1e\x01\x17\x23\x4d\x53\x34\x39\ \x13\x26\x26\x27\x14\x53\x02\x03\x10\x0b\x04\x07\x07\x0c\x13\x1d\ \x26\x24\x05\x03\x20\x51\x2f\x23\x3b\x14\x02\x02\x02\x53\x01\xe6\ \xfe\xdd\x43\x45\x09\x18\x2b\x23\x01\x3c\x63\xcf\x58\x14\x10\x02\ \x3e\x08\x35\x3a\x38\x35\x15\x20\x26\x3b\x34\x33\x1e\x00\x00\x00\ \x02\x00\x4c\xff\xf4\x02\x0b\x02\xa0\x00\x0f\x00\x31\x00\x57\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\ \x3e\x59\xbb\x00\x25\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x1b\x10\ \xb9\x00\x00\x00\x01\xf4\xba\x00\x28\x00\x1b\x00\x25\x11\x12\x39\ \xb8\x00\x28\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\ \x2e\x00\x01\xf4\x30\x31\x25\x32\x36\x37\x2e\x01\x23\x22\x0e\x02\ \x15\x14\x1e\x02\x03\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\ \x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x36\x34\x35\x34\x26\x23\ \x22\x06\x07\x01\x0a\x41\x59\x10\x21\x46\x21\x25\x37\x24\x12\x12\ \x1f\x28\x5a\x20\x4f\x2f\x61\x73\x26\x46\x62\x3b\x24\x42\x32\x1e\ \x1e\x38\x50\x33\x29\x4f\x1d\x01\x4c\x40\x20\x38\x18\x38\x6c\x64\ \x2a\x22\x18\x29\x39\x21\x1e\x2f\x22\x12\x02\x25\x20\x23\x98\x9b\ \x54\x8b\x63\x37\x1b\x31\x47\x2d\x31\x53\x3c\x22\x26\x22\x08\x11\ \x08\x7d\x70\x1b\x18\x00\x00\x00\x01\x00\xba\xff\x62\x01\xb9\x03\ \x15\x00\x26\x00\x17\x00\xbb\x00\x02\x00\x01\x00\x23\x00\x04\x2b\ \xbb\x00\x0f\x00\x01\x00\x16\x00\x04\x2b\x30\x31\x17\x16\x33\x32\ \x36\x35\x34\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\ \x23\x22\x06\x15\x14\x1e\x02\x15\x14\x0e\x02\x23\x22\x27\x37\xc3\ \x0c\x17\x2a\x19\x0d\x10\x0d\x0b\x1f\x36\x2b\x0f\x1a\x06\x0a\x07\ \x11\x0b\x29\x18\x0d\x0f\x0d\x0b\x1f\x36\x2b\x1f\x10\x09\x59\x04\ \x52\x4e\x37\x7e\x82\x7f\x38\x30\x54\x3d\x23\x04\x02\x3e\x02\x02\ \x55\x4d\x36\x7e\x82\x7f\x37\x31\x54\x3d\x23\x07\x3e\x00\x00\x00\ \x01\x00\x3e\xff\xa1\x02\x47\x03\x34\x00\x0f\x00\x0d\x00\xbb\x00\ \x04\x00\x01\x00\x0b\x00\x04\x2b\x30\x31\x25\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x03\x07\x27\x37\x01\x38\x05\x08\x04\x04\ \x03\x05\x04\xb2\x3c\xda\x3e\x96\x47\x14\x86\x3b\x10\x20\x10\x10\ \x20\x10\x02\xf9\xfc\x6d\x01\xac\x20\x2d\x3b\x00\x02\x00\x24\x00\ \x00\x02\x35\x02\x90\x00\x05\x00\x0b\x00\x45\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x03\xd0\xb8\x00\x01\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x37\x13\x33\x13\x15\x21\x25\x03\x27\x23\x07\x03\x24\xd9\x5f\xd9\ \xfd\xef\x01\xb5\x67\x44\x04\x45\x66\x32\x02\x5e\xfd\xa2\x32\x47\ \x01\x2c\xd2\xd2\xfe\xd4\x00\x00\x01\x00\x1d\x00\x00\x02\x3b\x02\ \x9c\x00\x31\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x30\x2f\ \x1b\xb9\x00\x30\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\ \x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x30\x10\xb9\x00\x01\ \x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x17\x00\x01\xf4\xb8\x00\x1b\ \xd0\xb8\x00\x0c\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x01\x10\xb8\ \x00\x2f\xd0\x30\x31\x37\x33\x35\x2e\x03\x35\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x07\x15\x33\x15\x23\x35\x3e\x03\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x17\x15\x23\x1d\x7b\x14\ \x28\x1f\x13\x24\x43\x60\x3b\x3b\x60\x43\x24\x13\x1f\x28\x14\x7b\ \xd2\x18\x29\x1d\x11\x17\x2c\x40\x29\x29\x40\x2c\x17\x11\x1d\x29\ \x18\xd2\x44\x04\x15\x37\x46\x53\x32\x45\x74\x55\x2f\x2f\x55\x74\ \x45\x32\x53\x46\x37\x15\x04\x44\x3d\x16\x38\x46\x55\x34\x35\x5b\ \x43\x26\x26\x43\x5b\x35\x34\x55\x46\x38\x16\x3d\x00\x00\x00\x00\ \x01\x00\x46\xff\x88\x02\x25\x02\x7e\x00\x0d\x00\x4a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0b\x3e\x59\xbb\ \x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\ \x00\x01\xf4\xba\x00\x07\x00\x0a\x00\x04\x11\x12\x39\xb8\x00\x07\ \x10\xb8\x00\x00\xd0\xb8\x00\x04\x10\xb8\x00\x01\xd0\xb8\x00\x0a\ \x10\xb8\x00\x0d\xd0\x30\x31\x01\x03\x35\x21\x15\x21\x15\x13\x03\ \x15\x21\x15\x21\x35\x01\x34\xe3\x01\xb8\xfe\xaf\xd4\xde\x01\x77\ \xfe\x21\x01\x03\x01\x46\x35\x47\x04\xfe\xd1\xfe\xcf\x04\x47\x35\ \x00\x00\x00\x00\x01\x00\x34\xff\x88\x02\x24\x02\x7e\x00\x07\x00\ \x22\x00\xb8\x00\x06\x2f\xb8\x00\x03\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb9\x00\x04\x00\x01\ \xf4\x30\x31\x13\x21\x11\x23\x11\x21\x11\x23\x34\x01\xf0\x55\xfe\ \xb8\x53\x02\x7e\xfd\x0a\x02\xad\xfd\x53\x00\x00\x02\x00\x75\xff\ \xf4\x01\xf1\x02\xd0\x00\x09\x00\x2e\x00\x59\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x0f\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xba\x00\ \x00\x00\x0d\x00\x1f\x11\x12\x39\xb8\x00\x1f\x10\xb9\x00\x06\x00\ \x01\xf4\xb8\x00\x00\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x12\xd0\ \xb8\x00\x00\x10\xb8\x00\x19\xd0\xb8\x00\x0d\x10\xb9\x00\x2b\x00\ \x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x23\x22\x06\x15\x13\x0e\ \x01\x23\x22\x2e\x02\x27\x0e\x01\x07\x27\x3e\x01\x37\x11\x34\x3e\ \x02\x33\x32\x16\x15\x14\x06\x07\x15\x14\x1e\x02\x33\x32\x36\x37\ \x01\x1b\x3b\x42\x21\x19\x1b\x28\xd6\x19\x43\x2c\x1f\x37\x2c\x1b\ \x02\x0c\x1a\x0e\x21\x17\x2a\x14\x16\x27\x36\x1f\x39\x49\x67\x5c\ \x0e\x19\x21\x12\x1e\x2b\x12\x01\x33\x3b\x80\x47\x32\x2a\x43\x49\ \xfe\x2e\x17\x28\x16\x2a\x40\x2a\x09\x11\x09\x34\x0e\x1f\x0f\x01\ \x0c\x3a\x52\x35\x18\x50\x4b\x5e\xad\x4e\x22\x23\x31\x1e\x0e\x1b\ \x11\x00\x00\x00\x02\x00\x1a\xff\xf4\x02\x3e\x02\x94\x00\x20\x00\ \x32\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\ \x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\ \x00\x0a\x00\x03\x3e\x59\xbb\x00\x32\x00\x01\x00\x1b\x00\x04\x2b\ \xb8\x00\x0a\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\ \x29\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x1d\x01\x21\x22\ \x1d\x01\x14\x16\x01\x32\x3d\x01\x34\x27\x2e\x01\x23\x22\x06\x07\ \x0e\x01\x1d\x01\x14\x33\xa4\x1a\x47\x29\x35\x5e\x23\x26\x29\x71\ \x44\x39\x63\x4b\x2b\x2b\x4b\x63\x39\x39\x63\x4b\x2b\xfe\x62\x04\ \x05\x01\x17\x06\x0a\x1a\x46\x26\x29\x47\x1a\x03\x05\x04\x44\x1d\ \x1f\x3d\x33\x3c\x48\x35\x5b\x7a\x46\x46\x7a\x5b\x35\x35\x5b\x7a\ \x46\x08\x04\xe0\x06\x09\x01\x05\x06\xe0\x0c\x0a\x1a\x1c\x1f\x1b\ \x05\x0c\x05\xdc\x06\x00\x00\x00\x01\x00\x11\xff\xf1\x02\x39\x02\ \x07\x00\x09\x00\x0d\x00\xbb\x00\x04\x00\x01\x00\x05\x00\x04\x2b\ \x30\x31\x37\x01\x17\x07\x21\x15\x21\x17\x07\x01\x11\x01\x10\x2b\ \xc9\x01\xb6\xfe\x4a\xc9\x2b\xfe\xf0\xfe\x01\x09\x2e\xbb\x44\xbb\ \x2e\x01\x09\x00\x01\x00\x21\xff\xe7\x02\x37\x02\x0f\x00\x09\x00\ \x15\x00\xba\x00\x00\x00\x04\x00\x03\x2b\xba\x00\x06\x00\x04\x00\ \x00\x11\x12\x39\x30\x31\x09\x01\x07\x27\x11\x23\x11\x07\x27\x01\ \x01\x2e\x01\x09\x2e\xbb\x44\xbb\x2e\x01\x09\x02\x0f\xfe\xf0\x2a\ \xc9\xfe\x49\x01\xb7\xc9\x2a\x01\x10\x00\x00\x00\x01\x00\x1d\xff\ \xf1\x02\x46\x02\x07\x00\x09\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\x30\x31\x25\x01\x27\x37\x21\x35\x21\x27\x37\x01\ \x02\x46\xfe\xef\x2a\xc9\xfe\x49\x01\xb7\xc9\x2a\x01\x11\xfa\xfe\ \xf7\x2e\xbb\x44\xbb\x2e\xfe\xf7\x00\x00\x00\x00\x01\x00\x21\xff\ \xe7\x02\x37\x02\x0f\x00\x09\x00\x15\x00\xba\x00\x04\x00\x00\x00\ \x03\x2b\xba\x00\x06\x00\x00\x00\x04\x11\x12\x39\x30\x31\x05\x01\ \x37\x17\x11\x33\x11\x37\x17\x01\x01\x2a\xfe\xf7\x2e\xbb\x44\xbb\ \x2e\xfe\xf7\x19\x01\x11\x2a\xc9\x01\xb6\xfe\x4a\xc9\x2a\xfe\xef\ \x00\x00\x00\x00\x01\x00\xc9\x00\xa2\x01\x8f\x01\x6d\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x15\x23\ \xc9\xc6\xc6\x01\x6d\xcb\x00\x00\x01\x00\x9f\x00\x7b\x01\xb9\x01\ \x93\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\ \x13\x37\x17\x07\x9f\x8e\x8c\x8c\x01\x07\x8c\x8c\x8c\x00\x00\x00\ \x03\x00\x77\x00\x4f\x01\xe1\x01\xbf\x00\x0b\x00\x1f\x00\x33\x00\ \x27\x00\xbb\x00\x20\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x16\x00\ \x01\x00\x2a\x00\x04\x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\ \x2a\x10\xb8\x00\x06\xd0\x30\x31\x25\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x07\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\ \x15\x14\x1e\x02\x01\x2c\x17\x22\x22\x17\x17\x22\x22\x17\x25\x42\ \x31\x1d\x1d\x31\x42\x25\x25\x42\x31\x1d\x1d\x31\x42\x25\x19\x2e\ \x24\x15\x15\x24\x2e\x19\x19\x2e\x24\x15\x15\x24\x2e\xca\x22\x1b\ \x1b\x21\x21\x1b\x1b\x22\x7b\x1a\x30\x44\x2a\x2a\x44\x30\x1a\x1a\ \x30\x44\x2a\x2a\x44\x30\x1a\x31\x12\x23\x32\x20\x20\x33\x23\x12\ \x12\x23\x33\x20\x20\x32\x23\x12\x00\x00\x00\x00\x02\x00\xa6\x00\ \x7a\x01\xb2\x01\x8b\x00\x03\x00\x09\x00\x17\x00\xbb\x00\x00\x00\ \x01\x00\x08\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\ \x30\x31\x25\x35\x23\x15\x27\x37\x33\x15\x07\x23\x01\x6a\x9e\x26\ \x3b\xd1\x31\xdb\x9e\xa5\xa5\xbc\x31\xd7\x3a\x00\x01\x00\x26\x00\ \x26\x02\x32\x02\x16\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\ \x03\x2b\x30\x31\x37\x01\x33\x01\x15\x21\x26\x01\x05\x04\x01\x03\ \xfd\xf4\x28\x01\xee\xfe\x12\x02\x00\x00\x00\x00\x02\x00\x26\x00\ \x26\x02\x32\x02\x16\x00\x02\x00\x08\x00\x0d\x00\xbb\x00\x00\x00\ \x01\x00\x07\x00\x04\x2b\x30\x31\x25\x0b\x01\x07\x01\x33\x01\x15\ \x21\x01\xcc\x9f\xa0\x67\x01\x05\x04\x01\x03\xfd\xf4\x60\x01\x39\ \xfe\xc7\x38\x01\xee\xfe\x12\x02\x00\x00\x00\x00\x01\x00\x48\x00\ \x13\x02\x37\x02\x20\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\ \x03\x2b\x30\x31\x13\x33\x01\x15\x01\x23\x48\x02\x01\xed\xfe\x13\ \x02\x02\x20\xfe\xfc\x04\xfe\xfb\x00\x00\x00\x00\x02\x00\x48\x00\ \x13\x02\x37\x02\x20\x00\x02\x00\x08\x00\x29\x00\xba\x00\x04\x00\ \x07\x00\x03\x2b\xba\x00\x00\x00\x07\x00\x04\x11\x12\x39\xba\x00\ \x01\x00\x07\x00\x04\x11\x12\x39\xba\x00\x02\x00\x07\x00\x04\x11\ \x12\x39\x30\x31\x01\x25\x11\x03\x33\x01\x15\x01\x23\x01\xb8\xfe\ \xcb\x3b\x02\x01\xed\xfe\x13\x02\x01\x1a\x9f\xfe\xc1\x01\xa6\xfe\ \xfc\x04\xfe\xfb\x00\x00\x00\x00\x01\x00\x26\x00\x1e\x02\x32\x02\ \x0d\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x35\x21\x15\x01\x23\x26\x02\x0c\xfe\xfd\x04\x02\x0b\x02\x02\ \xfe\x13\x00\x00\x02\x00\x26\x00\x1d\x02\x32\x02\x0d\x00\x02\x00\ \x08\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x00\x00\x04\x2b\xba\x00\ \x05\x00\x00\x00\x03\x11\x12\x39\x30\x31\x1b\x02\x25\x21\x15\x01\ \x23\x01\x8d\xa0\x9f\xfe\x5a\x02\x0c\xfe\xfd\x04\xfe\xfb\x01\xd3\ \xfe\xc6\x01\x3a\x3a\x02\xfe\x12\x01\xee\x00\x00\x01\x00\x21\x00\ \x13\x02\x10\x02\x20\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x03\x00\ \x03\x2b\x30\x31\x13\x01\x33\x11\x23\x01\x21\x01\xed\x02\x02\xfe\ \x13\x01\x1c\x01\x04\xfd\xf3\x01\x05\x00\x00\x00\x02\x00\x21\x00\ \x13\x02\x10\x02\x20\x00\x02\x00\x08\x00\x33\x00\xba\x00\x08\x00\ \x03\x00\x03\x2b\xba\x00\x00\x00\x03\x00\x08\x11\x12\x39\xba\x00\ \x01\x00\x03\x00\x08\x11\x12\x39\xba\x00\x02\x00\x03\x00\x08\x11\ \x12\x39\xba\x00\x06\x00\x03\x00\x08\x11\x12\x39\x30\x31\x25\x11\ \x05\x01\x23\x01\x35\x01\x33\x01\xd5\xfe\xcb\x01\x70\x02\xfe\x13\ \x01\xed\x02\x7a\x01\x3f\x9f\xfe\xf9\x01\x05\x04\x01\x04\x00\x00\ \x02\xff\xe7\xff\xf6\x02\x71\x02\x9f\x00\x03\x00\x09\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\ \x59\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\x08\x10\xb9\ \x00\x00\x00\x01\xf4\x30\x31\x25\x11\x21\x11\x03\x37\x21\x11\x07\ \x21\x02\x26\xfd\xeb\x2a\x3d\x02\x4d\x34\xfd\xaa\x21\x02\x34\xfd\ \xcc\x02\x4b\x33\xfd\x94\x3d\x00\x02\xff\xe7\xff\xf6\x02\xc2\x03\ \x1b\x00\x12\x00\x1e\x00\x58\x00\xb8\x00\x00\x45\x58\xb8\x00\x16\ \x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\x0c\x00\x01\ \x00\x03\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x0f\x00\x01\xf4\xb8\ \x00\x00\xd0\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x01\ \x0e\x01\x0f\x01\x2e\x01\x27\x37\x1e\x01\x17\x33\x3e\x01\x37\x21\ \x11\x21\x13\x0e\x01\x07\x11\x07\x21\x11\x37\x21\x36\x37\x02\x26\ \x44\x6f\x23\x56\x1c\x45\x2b\x38\x25\x3d\x14\x04\x20\x69\x42\xfe\ \x26\x02\x15\x9c\x14\x29\x14\x34\xfd\xaa\x3d\x01\xfc\x33\x39\x02\ \x35\x5f\xe3\x81\x0a\x4d\x88\x40\x26\x3a\x7e\x3f\x6e\xda\x61\xfd\ \xcc\x02\xc8\x14\x29\x17\xfd\x9e\x3d\x02\x76\x33\x43\x39\x00\x00\ \x01\xff\xfa\xff\xec\x02\x62\x02\xac\x00\x13\x00\x00\x17\x2e\x01\ \x27\x37\x1e\x01\x17\x33\x3e\x03\x37\x17\x0e\x03\x07\x91\x1e\x49\ \x30\x38\x2a\x43\x17\x04\x1b\x4e\x60\x6e\x3b\x36\x3b\x70\x62\x52\ \x1c\x14\x53\x8f\x45\x26\x3f\x87\x43\x59\xb2\xa5\x92\x3a\x32\x37\ \x8b\xa4\xb9\x65\x00\x00\x00\x00\x01\x00\x4d\xff\xe8\x02\x11\x02\ \xb6\x00\x28\x00\x17\x00\xb8\x00\x09\x2f\xba\x00\x05\x00\x24\x00\ \x03\x2b\xb8\x00\x09\x10\xb8\x00\x1e\xd0\x30\x31\x37\x34\x3e\x02\ \x33\x32\x16\x17\x11\x33\x1e\x03\x17\x1e\x03\x15\x14\x06\x07\x27\ \x3e\x01\x35\x34\x26\x27\x11\x14\x0e\x02\x23\x22\x2e\x02\x4d\x17\ \x2a\x3a\x23\x14\x21\x08\x31\x04\x09\x0f\x18\x13\x22\x2b\x1a\x0a\ \x14\x0c\x23\x08\x05\x40\x3c\x1c\x30\x3f\x22\x14\x24\x1c\x11\x34\ \x17\x2a\x21\x13\x07\x05\x02\x19\x0a\x0f\x0f\x13\x0d\x18\x2e\x2f\ \x33\x1c\x27\x45\x17\x0d\x18\x29\x1b\x30\x53\x13\xfe\x69\x29\x3f\ \x2a\x15\x0a\x13\x1c\x00\x00\x00\x02\x00\x62\xff\xf6\x01\xf6\x02\ \x9e\x00\x05\x00\x0f\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x01\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x1b\x01\x33\x13\ \x03\x23\x3f\x02\x2f\x01\x23\x0f\x01\x1f\x01\x62\xa4\x4c\xa4\xa4\ \x4c\x28\x3f\x40\x40\x3f\x04\x3f\x40\x40\x3f\x01\x4a\x01\x54\xfe\ \xac\xfe\xac\x45\x85\x8a\x89\x86\x86\x89\x8a\x85\x00\x00\x00\x00\ \x01\x01\x00\x01\xb2\x01\x68\x02\xb2\x00\x04\x00\x0b\x00\xba\x00\ \x00\x00\x04\x00\x03\x2b\x30\x31\x01\x33\x0f\x01\x23\x01\x17\x51\ \x10\x22\x36\x02\xb2\x64\x9c\xff\xff\x00\xa9\x01\xb2\x01\xc0\x02\ \xb2\x02\x26\x02\xc7\xa9\x00\x00\x06\x02\xc7\x58\x00\x00\x00\xff\ \xff\x00\xd1\x01\x5e\x01\x7c\x02\xbb\x02\x06\x01\xee\x00\x00\xff\ \xff\x00\xd9\x01\x5e\x01\x84\x02\xbb\x02\x06\x01\xef\x00\x00\x00\ \x01\x00\xf5\x01\xf4\x01\x82\x02\xd9\x00\x0d\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\x06\x00\ \x04\x2b\x30\x31\x13\x32\x36\x35\x34\x26\x23\x35\x36\x16\x15\x14\ \x06\x27\xf5\x33\x2c\x2c\x33\x45\x48\x48\x45\x02\x1a\x2a\x23\x22\ \x2a\x24\x02\x3e\x34\x35\x3e\x02\x00\x00\x00\x00\x01\x00\xdb\x01\ \xf4\x01\x68\x02\xd9\x00\x0d\x00\x17\x00\xbb\x00\x06\x00\x01\x00\ \x07\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x00\x00\x04\x2b\x30\x31\ \x01\x22\x06\x15\x14\x16\x33\x15\x06\x26\x35\x34\x36\x17\x01\x68\ \x33\x2b\x2b\x33\x45\x48\x48\x45\x02\xb3\x2a\x22\x23\x2a\x24\x02\ \x3e\x35\x34\x3e\x02\x00\x00\xff\xff\x00\xb9\x02\x3d\x01\x6d\x02\ \xd1\x02\x06\x02\xdf\x00\x00\xff\xff\x00\xeb\x02\x3d\x01\x9f\x02\ \xd1\x02\x06\x02\xe1\x00\x00\xff\xff\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x02\x06\x02\xe3\x00\x00\xff\xff\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x02\x06\x02\xf5\x00\x00\x00\x01\x00\xf9\x01\x8d\x01\x5f\x02\ \xcc\x00\x03\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x02\xdc\x30\x31\x13\x33\x03\ \x23\xf9\x66\x17\x38\x02\xcc\xfe\xc1\x00\x00\xff\xff\x00\xb1\x02\ \x59\x01\xa7\x02\x92\x02\x06\x02\xe7\x00\x00\xff\xff\x00\xeb\x02\ \x3d\x01\x9f\x02\xd1\x02\x06\x02\xe1\x00\x00\xff\xff\x00\xb9\x02\ \x3d\x01\x6d\x02\xd1\x02\x06\x02\xdf\x00\x00\x00\x01\x00\xf9\xff\ \x02\x01\x5f\x00\x42\x00\x03\x00\x0b\x00\xba\x00\x03\x00\x00\x00\ \x03\x2b\x30\x31\x05\x23\x13\x33\x01\x5f\x66\x17\x38\xfe\x01\x40\ \x00\x00\x00\xff\xff\x00\x9e\x02\x43\x01\xba\x02\xb0\x02\x06\x02\ \xe5\x00\x00\xff\xff\x00\x96\x02\x4c\x01\xc2\x02\xba\x02\x06\x02\ \xed\x00\x00\xff\xff\x00\xb1\x02\x59\x01\xa7\x02\x92\x02\x06\x02\ \xe7\x00\x00\xff\xff\x00\xaa\x02\x3f\x01\xae\x02\xc5\x02\x06\x02\ \xe9\x00\x00\xff\xff\x00\xcf\x02\x1e\x01\x89\x02\xd7\x02\x06\x02\ \xf1\x00\x00\xff\xff\x00\xca\x02\x3b\x01\xec\x02\xca\x02\x06\x02\ \xf3\x00\x00\xff\xff\x00\xea\x02\x4a\x01\x6e\x02\xc9\x02\x06\x02\ \xeb\x00\x00\xff\xff\x00\xdd\xff\x2b\x01\x76\x00\x03\x02\x06\x02\ \xff\x06\x00\xff\xff\x00\xea\xff\x32\x01\x93\x00\x03\x02\x06\x03\ \x01\x00\x00\x00\x01\x00\xb9\x02\x3d\x01\x6d\x02\xd1\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\ \xb9\x5a\x5a\x3f\x02\xd1\x94\x00\x01\x00\xa9\x02\xc2\x01\x5f\x03\ \x32\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\ \x13\x33\x17\x23\xa9\x5e\x58\x45\x03\x32\x70\x00\x01\x00\xeb\x02\ \x3d\x01\x9f\x02\xd1\x00\x03\x00\x0b\x00\xba\x00\x02\x00\x00\x00\ \x03\x2b\x30\x31\x01\x23\x37\x33\x01\x2a\x3f\x5a\x5a\x02\x3d\x94\ \x00\x00\x00\x00\x01\x00\xf9\x02\xc2\x01\xaf\x03\x32\x00\x03\x00\ \x0b\x00\xba\x00\x02\x00\x00\x00\x03\x2b\x30\x31\x01\x23\x37\x33\ \x01\x3e\x45\x58\x5e\x02\xc2\x70\x00\x00\x00\x00\x01\x00\xa8\x02\ \x3d\x01\xb0\x02\xd1\x00\x07\x00\x19\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x03\xdc\xb8\x00\x06\xd0\ \x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x01\x09\x46\x61\x3f\x43\ \x04\x43\x3f\x02\xd1\x94\x63\x63\x00\x00\x00\x00\x01\x00\xa4\x02\ \xc2\x01\xb4\x03\x32\x00\x07\x00\x19\x00\xbb\x00\x02\x00\x01\x00\ \x05\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x04\xdc\xb8\x00\x07\xd0\ \x30\x31\x13\x37\x33\x17\x23\x27\x23\x07\xa4\x60\x50\x60\x43\x43\ \x04\x43\x02\xc2\x70\x70\x44\x44\x00\x00\x00\x00\x01\x00\x9e\x02\ \x43\x01\xba\x02\xb0\x00\x16\x00\x27\x00\xbb\x00\x08\x00\x01\x00\ \x0e\x00\x04\x2b\xb8\x00\x0e\x10\xb8\x00\x13\xdc\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x15\xd0\x30\x31\ \x13\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\ \x02\x23\x22\x07\x23\x9e\x05\x2b\x28\x12\x1e\x19\x18\x0c\x1f\x09\ \x2f\x05\x2b\x28\x12\x1e\x19\x18\x0c\x1f\x09\x2f\x02\x43\x30\x3d\ \x11\x14\x11\x36\x2f\x3e\x11\x15\x11\x37\x00\x00\x01\x00\x9b\x02\ \xc7\x01\xbd\x03\x33\x00\x17\x00\x2b\x00\xbb\x00\x11\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\xb8\x00\x00\x10\ \xb8\x00\x08\xd0\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x14\xd0\x30\x31\x01\x22\x2e\x02\x23\x22\x06\x07\x23\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x01\x68\x14\x20\x1b\x1a\ \x0e\x0e\x16\x04\x2e\x05\x2c\x24\x14\x20\x1b\x1a\x0e\x0e\x16\x04\ \x2e\x05\x2c\x02\xc7\x10\x14\x10\x1a\x1a\x2f\x3d\x10\x14\x10\x1b\ \x19\x2e\x3e\x00\x01\x00\xb1\x02\x59\x01\xa7\x02\x92\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x33\ \x15\x23\xb1\xf6\xf6\x02\x92\x39\x00\x00\x00\x00\x01\x00\xb0\x02\ \xd9\x01\xa8\x03\x12\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x33\x15\x23\xb0\xf8\xf8\x03\x12\x39\ \x00\x00\x00\x00\x01\x00\xaa\x02\x3f\x01\xae\x02\xc5\x00\x13\x00\ \x19\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x0e\xdc\xb8\x00\x06\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\ \x1e\x01\x33\x32\x3e\x02\x37\x33\x0e\x03\x01\x2c\x21\x2f\x20\x10\ \x02\x33\x04\x26\x25\x12\x1c\x13\x0c\x02\x33\x02\x10\x20\x2f\x02\ \x3f\x18\x27\x2f\x18\x20\x33\x0e\x17\x1e\x10\x18\x2f\x27\x18\x00\ \x01\x00\xb1\x02\xc4\x01\xa7\x03\x32\x00\x11\x00\x19\x00\xbb\x00\ \x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x06\xdc\ \xb8\x00\x0c\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\ \x36\x37\x33\x0e\x03\x01\x2c\x1e\x2c\x1e\x10\x03\x32\x05\x22\x22\ \x22\x22\x05\x32\x03\x10\x1e\x2c\x02\xc4\x13\x1e\x28\x15\x18\x27\ \x27\x18\x15\x28\x1e\x13\x00\x00\x01\x00\xea\x02\x4a\x01\x6e\x02\ \xc9\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x1c\x26\x26\x1c\x1c\x26\x26\x02\x4a\x22\x1d\x1d\x23\x23\x1d\x1d\ \x22\x00\x00\x00\x01\x00\xf3\x02\xca\x01\x65\x03\x35\x00\x0b\x00\ \x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\x18\x21\x21\x18\ \x18\x21\x21\x02\xca\x1e\x18\x17\x1e\x1e\x17\x18\x1e\x00\x00\x00\ \x02\x00\x96\x02\x4c\x01\xc2\x02\xba\x00\x0b\x00\x17\x00\x1d\x00\ \xbb\x00\x00\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\x13\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\xcc\x18\x1e\x1e\x18\x17\x1f\x1f\xa9\x17\x1f\x1f\ \x17\x18\x1e\x1e\x02\x4c\x20\x17\x17\x20\x20\x17\x17\x20\x20\x17\ \x17\x20\x20\x17\x17\x20\x00\x00\x02\x00\xa5\x02\xcb\x01\xb3\x03\ \x2d\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\ \x12\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\xd6\x16\x1b\x1b\ \x16\x15\x1c\x1c\x97\x15\x1c\x1c\x15\x16\x1b\x1b\x02\xcb\x1c\x15\ \x16\x1b\x1b\x16\x15\x1c\x1c\x15\x16\x1b\x1b\x16\x15\x1c\x00\x00\ \x01\x00\xec\x02\x29\x01\x7f\x02\xd7\x00\x0e\x00\x1b\x00\xbb\x00\ \x00\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\ \xb9\x00\x06\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x27\x37\x1e\ \x01\x15\x14\x0e\x02\x07\x01\x07\x18\x20\x53\x09\x42\x48\x12\x1f\ \x28\x16\x02\x4f\x07\x14\x13\x27\x03\x30\x02\x29\x26\x16\x1f\x17\ \x0d\x04\x00\x00\x01\x00\xec\x02\xba\x01\x7f\x03\x68\x00\x0e\x00\ \x19\x00\xba\x00\x00\x00\x0e\x00\x03\x2b\xb8\x00\x00\x10\xb8\x00\ \x05\xdc\xb9\x00\x06\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x27\ \x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x07\x18\x20\x53\x09\x42\x48\ \x12\x1f\x28\x16\x02\xe0\x07\x14\x13\x27\x03\x30\x02\x29\x26\x16\ \x1f\x17\x0d\x04\x00\x00\x00\x00\x02\x00\xcf\x02\x1e\x01\x89\x02\ \xd7\x00\x0b\x00\x17\x00\x17\x00\xba\x00\x0c\x00\x00\x00\x03\x2b\ \xb8\x00\x0c\x10\xb8\x00\x12\xdc\xb8\x00\x06\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x2c\x29\x34\x34\x29\x29\x34\x34\x29\ \x14\x1c\x1c\x14\x14\x1c\x1c\x02\x1e\x33\x2a\x2a\x32\x32\x2a\x2a\ \x33\x25\x1e\x1a\x19\x1e\x1e\x19\x1a\x1e\x00\x00\x02\x00\xcf\x02\ \xbb\x01\x89\x03\x6b\x00\x0b\x00\x17\x00\x17\x00\xba\x00\x0c\x00\ \x00\x00\x03\x2b\xb8\x00\x0c\x10\xb8\x00\x12\xdc\xb8\x00\x06\xdc\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\ \x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x29\x34\x34\x29\ \x28\x35\x35\x28\x13\x1c\x1c\x13\x14\x1c\x1c\x02\xbb\x2f\x29\x28\ \x30\x30\x28\x29\x2f\x24\x1b\x19\x17\x1c\x1c\x17\x19\x1b\x00\x00\ \x02\x00\xca\x02\x3b\x01\xec\x02\xca\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x00\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x01\x33\x07\x23\ \x37\x33\x07\x23\x01\x10\x49\x58\x37\xda\x48\x58\x37\x02\xca\x8f\ \x8f\x8f\x00\x00\x02\x00\xbf\x02\xc2\x01\xec\x03\x32\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x37\x33\x07\x37\x33\x07\x23\xbf\x42\x4d\x53\xa4\x4d\x54\x3b\ \x02\xc2\x70\x70\x70\x70\x00\x00\x01\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x00\x07\x00\x19\x00\xbb\x00\x03\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\x00\x01\xd0\x30\x31\x13\x33\ \x17\x33\x37\x33\x07\x23\xa8\x3f\x43\x04\x43\x3f\x61\x46\x02\xd1\ \x63\x63\x94\x00\x01\x00\xa4\x02\xc2\x01\xb4\x03\x32\x00\x07\x00\ \x19\x00\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\x06\x10\ \xb8\x00\x07\xdc\xb8\x00\x04\xd0\x30\x31\x01\x07\x23\x27\x33\x17\ \x33\x37\x01\xb4\x60\x50\x60\x43\x43\x04\x43\x03\x32\x70\x70\x44\ \x44\x00\x00\x00\x02\x00\x6c\x02\x3b\x01\x8e\x02\xca\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x03\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\x30\x31\ \x01\x23\x27\x33\x07\x23\x27\x33\x01\x8e\x37\x58\x49\x4d\x37\x58\ \x48\x02\x3b\x8f\x8f\x8f\x00\x00\x02\x00\x6c\x02\xc2\x01\x99\x03\ \x32\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\x00\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x01\x27\x33\x17\x2b\x01\x27\x33\x01\x5d\x53\x4d\ \x42\x9e\x3b\x54\x4d\x02\xc2\x70\x70\x70\x00\x00\x01\x00\xf7\x02\ \x21\x01\x5a\x02\xdc\x00\x10\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x0b\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x10\xdc\x30\x31\x01\x0e\ \x01\x07\x36\x33\x32\x16\x15\x14\x06\x23\x22\x35\x34\x36\x37\x01\ \x5a\x1d\x1a\x02\x03\x05\x0f\x1a\x17\x11\x33\x26\x2b\x02\xbc\x0e\ \x23\x17\x01\x13\x14\x17\x16\x45\x23\x3f\x14\x00\x01\x00\xfd\x02\ \x20\x01\x5f\x02\xda\x00\x0f\x00\x15\x00\xbb\x00\x0a\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x0f\xdc\x30\x31\x13\x36\ \x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\x15\x14\x06\x07\xfd\x36\ \x03\x03\x06\x0f\x1a\x18\x11\x32\x26\x2b\x02\x40\x1a\x2e\x01\x13\ \x14\x16\x16\x45\x23\x3e\x14\x00\x01\x01\x23\x01\xb3\x01\xbb\x02\ \x65\x00\x0f\x00\x15\x00\xbb\x00\x00\x00\x01\x00\x0f\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x06\xdc\x30\x31\x01\x3e\x01\x35\x34\x26\ \x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x23\x2a\x2a\x08\x06\x3b\ \x0a\x0d\x16\x27\x34\x1f\x01\xdc\x06\x1e\x1e\x0b\x15\x0a\x1d\x0e\ \x20\x13\x1b\x28\x1b\x10\x03\x00\x01\x00\xea\xff\x1e\x01\x6e\xff\ \x9d\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x1c\x26\x26\x1c\x1c\x26\x26\xe2\x22\x1d\x1d\x23\x23\x1d\x1d\x22\ \x00\x00\x00\x00\x02\x00\xa5\xff\x37\x01\xb3\xff\x99\x00\x0b\x00\ \x17\x00\x1d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x17\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\xd6\x16\x1b\x1b\x16\x15\x1c\x1c\ \x97\x15\x1c\x1c\x15\x16\x1b\x1b\xc9\x1d\x14\x15\x1c\x1c\x15\x14\ \x1d\x1d\x14\x15\x1c\x1c\x15\x14\x1d\x00\x00\x00\x01\x00\xd7\xff\ \x28\x01\x70\xff\xd0\x00\x10\x00\x1b\x00\xbb\x00\x0f\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x0f\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\ \x01\xf4\x30\x31\x05\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\ \x34\x26\x27\x37\x01\x0f\x33\x2e\x18\x28\x35\x1c\x08\x28\x31\x1e\ \x15\x12\x30\x08\x23\x22\x16\x20\x16\x0d\x02\x28\x05\x15\x14\x14\ \x13\x05\x26\x00\x01\x00\xd7\xff\x2b\x01\x70\x00\x03\x00\x11\x00\ \x1d\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\ \x11\xd0\xb8\x00\x0b\xdc\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x33\ \x07\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x01\ \x19\x35\x19\x18\x23\x18\x28\x35\x1c\x08\x28\x31\x21\x1e\x03\x35\ \x08\x20\x1f\x16\x20\x16\x0d\x03\x29\x05\x17\x14\x14\x15\x08\x00\ \x01\x00\xd2\xff\x2b\x01\x6b\x00\x03\x00\x11\x00\x1d\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\x11\xd0\xb8\x00\ \x0b\xdc\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x33\x07\x1e\x01\x15\ \x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x01\x13\x36\x19\x18\ \x23\x18\x28\x35\x1c\x08\x28\x31\x21\x1f\x03\x35\x08\x20\x1f\x16\ \x20\x16\x0d\x03\x29\x05\x17\x14\x14\x15\x08\x00\x01\x00\xea\xff\ \x32\x01\x93\x00\x03\x00\x12\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xbb\x00\x0a\x00\x01\ \x00\x10\x00\x04\x2b\x30\x31\x17\x34\x36\x37\x33\x0e\x01\x15\x14\ \x16\x33\x32\x37\x17\x0e\x01\x23\x22\x26\xea\x2e\x19\x3a\x20\x24\ \x1c\x12\x16\x12\x16\x0e\x2e\x13\x26\x34\x79\x29\x40\x13\x18\x37\ \x1d\x17\x17\x0d\x29\x0b\x10\x2b\x00\x00\x00\x00\x01\x00\xea\xff\ \x2c\x01\x99\x00\x03\x00\x15\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0d\x00\x04\x2b\x30\x31\x25\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x01\x6e\x20\x24\ \x1e\x12\x0c\x13\x09\x17\x0e\x2e\x14\x28\x37\x0d\x15\x1a\x0c\x03\ \x18\x39\x1d\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x15\x26\x21\x1b\ \x09\x00\x00\x00\x01\x00\xae\xff\x32\x01\xaa\xff\xb1\x00\x11\x00\ \x0d\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x20\ \x2f\x1e\x10\x01\x33\x04\x24\x23\x23\x24\x04\x33\x02\x0f\x1e\x2f\ \xce\x17\x25\x2d\x16\x1d\x2f\x2f\x1d\x16\x2d\x25\x17\x00\x00\x00\ \x01\x00\xb0\xff\x55\x01\xa7\xff\x8f\x00\x03\x00\x0d\x00\xbb\x00\ \x00\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x05\x23\x35\x33\x01\xa7\ \xf7\xf7\xab\x3a\x00\x00\x00\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\ \x1d\x00\x0b\x00\x17\x00\x1b\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x1a\xdc\xb9\x00\x19\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x33\x15\x23\ \xd6\x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\ \xe6\xf7\xf7\x02\x4c\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\ \x1a\x1a\x14\x13\x1a\xd1\x2f\x00\x03\x00\xa8\x02\xcb\x01\xb0\x03\ \x8b\x00\x03\x00\x0f\x00\x1b\x00\x2b\x00\xbb\x00\x0a\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\xb9\x00\x01\x00\ \x01\xf4\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\ \x16\xd0\x30\x31\x13\x33\x15\x23\x17\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xb0\xf8\xf8\x26\x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\ \x14\x1a\x1a\x03\x8b\x2e\x92\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\ \x14\x14\x19\x19\x14\x14\x1a\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\ \x37\x00\x03\x00\x0f\x00\x1b\x00\x25\x00\xba\x00\x00\x00\x02\x00\ \x03\x2b\xbb\x00\x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x01\x33\ \x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x49\x4f\x67\x3a\x21\ \x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x03\ \x37\x67\x84\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\x1a\x1a\ \x14\x13\x1a\x00\x03\x00\xa8\x02\xcb\x01\xb0\x03\xb6\x00\x03\x00\ \x0f\x00\x1b\x00\x29\x00\xbb\x00\x0a\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x0a\x10\xb8\x00\x02\xdc\xb8\x00\x00\xdc\xb8\x00\x04\x10\ \xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x01\x33\ \x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x52\x5b\x70\x44\x23\ \x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x03\ \xb6\x6f\x7c\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\x14\x14\x19\x19\ \x14\x14\x1a\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\x37\x00\x07\x00\ \x13\x00\x1f\x00\x2b\x00\xbb\x00\x08\x00\x01\x00\x0e\x00\x04\x2b\ \xb8\x00\x0e\x10\xb8\x00\x06\xdc\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x08\x10\xb8\x00\x14\xd0\xb8\x00\x0e\x10\xb8\x00\x1a\xd0\x30\x31\ \x13\x33\x17\x33\x37\x33\x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xae\x3d\x3f\x04\x3f\x3d\x5b\x46\x33\x14\x1a\x1a\x14\x14\x19\x19\ \x98\x14\x19\x19\x14\x14\x1a\x1a\x03\x37\x40\x40\x67\x84\x1a\x13\ \x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x00\x00\ \x03\x00\xa4\x02\xcb\x01\xb4\x03\xb6\x00\x0b\x00\x17\x00\x1f\x00\ \x2b\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\xb8\x00\x06\x10\ \xb8\x00\x19\xdc\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x37\x07\x23\x27\x33\x17\x33\x37\xd6\x14\x1a\x1a\ \x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x1e\x60\x50\x60\ \x43\x43\x04\x43\x02\xcb\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\x14\ \x14\x19\x19\x14\x14\x1a\xeb\x6f\x6f\x44\x44\x00\x03\x00\xa8\x02\ \x4c\x01\xb0\x03\x37\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x01\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x17\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x61\x3a\x67\x4f\x73\x14\x19\x19\x14\x14\x1a\x1a\xc0\ \x14\x1a\x1a\x14\x14\x19\x19\x02\xd0\x67\xeb\x1a\x13\x14\x1a\x1a\ \x14\x13\x1a\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x00\x03\x00\xa8\x02\ \xcb\x01\xb0\x03\xb6\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x00\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x17\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x5f\x44\x70\x5b\x7c\x14\x19\x19\x14\x14\x1a\x1a\xc0\ \x14\x1a\x1a\x14\x14\x19\x19\x03\x47\x6f\xeb\x1a\x14\x14\x19\x19\ \x14\x14\x1a\x1a\x14\x14\x19\x19\x14\x14\x1a\x00\x02\x00\xb8\x02\ \x3d\x02\x14\x02\xf2\x00\x07\x00\x0b\x00\x19\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x0b\xd0\xb8\x00\ \x08\xdc\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x25\x33\x07\x23\ \x01\x0a\x44\x52\x38\x3a\x04\x3a\x38\x01\x16\x46\x5c\x33\x02\xb4\ \x77\x49\x49\xb5\x72\x00\x00\x00\x02\x00\xac\x02\xc2\x02\x16\x03\ \x71\x00\x03\x00\x0b\x00\x19\x00\xbb\x00\x08\x00\x01\x00\x05\x00\ \x04\x2b\xb8\x00\x08\x10\xb8\x00\x03\xd0\xb8\x00\x00\xdc\x30\x31\ \x01\x33\x07\x23\x27\x33\x17\x23\x27\x23\x07\x23\x01\xce\x48\x5b\ \x34\x7f\x48\x5c\x3f\x3f\x04\x3f\x3f\x03\x71\x6f\x2a\x6a\x3e\x3e\ \x00\x00\x00\x00\x02\x00\xb8\x02\x3d\x01\xf5\x02\xf2\x00\x07\x00\ \x0b\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x04\x10\xb8\x00\x09\xd0\xb8\x00\x0b\xdc\x30\x31\x01\x33\x17\x23\ \x27\x23\x07\x23\x25\x23\x27\x33\x01\x0a\x44\x52\x38\x3a\x04\x3a\ \x38\x01\x3d\x33\x5c\x45\x02\xb4\x77\x49\x49\x43\x72\x00\x00\x00\ \x02\x00\xac\x02\xc2\x01\xe4\x03\x71\x00\x03\x00\x0b\x00\x19\x00\ \xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\ \x01\xd0\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\x07\x33\x17\x23\ \x27\x23\x07\x23\x01\xe4\x34\x5b\x48\x95\x48\x5c\x3f\x3f\x04\x3f\ \x3f\x03\x02\x6f\x45\x6a\x3e\x3e\x00\x00\x00\x00\x02\x00\xb8\x02\ \x3d\x01\xfd\x03\x10\x00\x07\x00\x17\x00\x25\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb9\x00\ \x08\x00\x01\xf4\xb8\x00\x0e\xdc\xb9\x00\x0f\x00\x01\xf4\x30\x31\ \x01\x33\x17\x23\x27\x23\x07\x23\x37\x3e\x01\x35\x34\x26\x27\x37\ \x1e\x01\x15\x14\x0e\x02\x07\x01\x0a\x44\x52\x38\x3a\x04\x3a\x38\ \xdf\x13\x17\x20\x25\x07\x3b\x3f\x10\x1a\x21\x12\x02\xb4\x77\x49\ \x49\x5a\x05\x12\x10\x14\x13\x02\x29\x02\x24\x23\x14\x1c\x13\x0c\ \x04\x00\x00\x00\x02\x00\xac\x02\xc2\x01\xfb\x03\x8a\x00\x0d\x00\ \x15\x00\x25\x00\xbb\x00\x12\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\ \x12\x10\xb8\x00\x0d\xd0\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\xdc\ \xb9\x00\x07\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x27\x37\ \x1e\x01\x15\x14\x06\x07\x27\x33\x17\x23\x27\x23\x07\x23\x01\x94\ \x13\x1a\x21\x26\x09\x3b\x3d\x38\x24\x97\x48\x5c\x3f\x3f\x04\x3f\ \x3f\x03\x15\x05\x0f\x10\x14\x11\x02\x2a\x02\x24\x23\x26\x23\x06\ \x3a\x6a\x3e\x3e\x00\x00\x00\x00\x02\x00\xa9\x02\x3b\x01\xaf\x03\ \x22\x00\x07\x00\x1d\x00\x39\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x01\x10\xb8\x00\x16\xdc\xb8\x00\x1b\xdc\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\x01\xf4\xb8\x00\ \x0b\x10\xb8\x00\x12\xd0\xb8\x00\x16\x10\xb8\x00\x1d\xd0\x30\x31\ \x01\x33\x17\x23\x27\x23\x07\x23\x27\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\x01\x06\x4c\x56\ \x3a\x40\x04\x40\x3a\x07\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\ \x2a\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\x02\xa3\x68\x41\x41\ \x8c\x28\x33\x0d\x11\x0d\x2b\x28\x33\x0d\x11\x0d\x2b\x00\x00\x00\ \x02\x00\xa8\x02\xc2\x01\xb0\x03\xaa\x00\x07\x00\x1f\x00\x39\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x17\xdc\xb8\x00\x08\xd0\xb8\x00\x17\x10\xb8\x00\x1c\xdc\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x10\x00\x01\xf4\xb8\x00\ \x0b\x10\xb8\x00\x13\xd0\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\ \x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x23\x22\ \x2e\x02\x23\x22\x06\x07\x01\x08\x48\x5c\x3f\x3f\x04\x3f\x3f\x04\ \x04\x27\x23\x13\x1d\x18\x15\x0c\x0f\x15\x03\x2a\x04\x27\x23\x13\ \x1d\x18\x15\x0c\x0f\x15\x03\x03\x2c\x6a\x3e\x3e\x8e\x27\x33\x0d\ \x10\x0d\x15\x15\x28\x32\x0d\x10\x0d\x15\x15\x00\x02\x00\xae\x02\ \x3f\x01\xaa\x03\x15\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x02\xdc\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x4b\x44\x58\x30\x25\x20\x2f\x1e\ \x10\x01\x2b\x05\x28\x26\x26\x28\x05\x2b\x02\x0f\x1e\x2f\x03\x15\ \x70\x66\x17\x25\x2d\x16\x1f\x31\x31\x1f\x16\x2d\x25\x17\x00\x00\ \x02\x00\xb2\x02\xc4\x01\xa6\x03\x8b\x00\x03\x00\x15\x00\x19\x00\ \xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\ \x02\xdc\xb8\x00\x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\ \x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x4f\x48\x61\x31\ \x27\x1d\x2b\x1e\x11\x03\x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\ \x1e\x2b\x03\x8b\x69\x5e\x12\x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\ \x1e\x12\x00\x00\x02\x00\xae\x02\x3f\x01\xaa\x03\x15\x00\x03\x00\ \x15\x00\x19\x00\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x0d\x10\xb8\x00\x00\xdc\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\ \x17\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\ \x51\x30\x58\x44\x1f\x20\x2f\x1e\x10\x01\x2b\x05\x28\x26\x26\x28\ \x05\x2b\x02\x0f\x1e\x2f\x02\xa5\x70\xd6\x17\x25\x2d\x16\x1f\x31\ \x31\x1f\x16\x2d\x25\x17\x00\x00\x02\x00\xb2\x02\xc4\x01\xa6\x03\ \x8b\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x0d\x10\xb8\x00\x00\xdc\xb8\x00\x03\xdc\x30\x31\ \x01\x23\x27\x33\x17\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x01\x53\x31\x61\x48\x23\x1d\x2b\x1e\x11\x03\x2d\x06\ \x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\x03\x22\x69\xc7\x12\x1e\ \x26\x15\x1a\x26\x26\x1a\x15\x26\x1e\x12\x00\x00\x02\x00\xae\x02\ \x3f\x01\xaa\x03\x47\x00\x11\x00\x21\x00\x25\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb9\x00\ \x12\x00\x01\xf4\xb8\x00\x18\xdc\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\ \x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x2c\ \x20\x2f\x1e\x10\x01\x2b\x05\x28\x26\x26\x28\x05\x2b\x02\x0f\x1e\ \x2f\x43\x12\x18\x20\x25\x07\x3b\x3f\x10\x1a\x22\x12\x02\x3f\x17\ \x25\x2d\x16\x1f\x31\x31\x1f\x16\x2d\x25\x17\x8f\x05\x12\x10\x14\ \x13\x02\x29\x02\x23\x24\x14\x1c\x13\x0c\x04\x00\x02\x00\xb2\x02\ \xc4\x01\xa6\x03\xb8\x00\x0f\x00\x21\x00\x25\x00\xbb\x00\x19\x00\ \x01\x00\x10\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x0f\xdc\xb9\x00\ \x00\x00\x01\xf4\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\ \x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x17\ \x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x0b\ \x12\x1a\x21\x25\x08\x3b\x3e\x10\x19\x22\x12\x17\x1d\x2b\x1e\x11\ \x03\x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\x03\x43\x05\ \x0f\x10\x14\x11\x02\x2a\x02\x24\x23\x13\x1b\x13\x0b\x03\x5c\x12\ \x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\x1e\x12\x00\x02\x00\xa9\x02\ \x3f\x01\xaf\x03\x22\x00\x11\x00\x27\x00\x39\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x20\xdc\xb8\x00\ \x25\xdc\xb9\x00\x15\x00\x01\xf4\xb8\x00\x20\x10\xb9\x00\x1a\x00\ \x01\xf4\xb8\x00\x15\x10\xb8\x00\x1c\xd0\xb8\x00\x20\x10\xb8\x00\ \x27\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\x01\ \x23\x22\x2e\x02\x23\x22\x07\x01\x2c\x20\x2e\x1e\x10\x01\x2d\x05\ \x25\x26\x26\x25\x05\x2d\x02\x0f\x1e\x2e\xa3\x04\x28\x23\x13\x1b\ \x17\x15\x0c\x20\x07\x2a\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\ \x02\x3f\x13\x1e\x26\x14\x18\x26\x26\x18\x14\x26\x1e\x13\x88\x28\ \x33\x0d\x11\x0d\x2b\x28\x33\x0d\x11\x0d\x2b\x00\x02\x00\xa7\x02\ \xc4\x01\xaf\x03\xab\x00\x11\x00\x29\x00\x39\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb8\x00\ \x12\xd0\xb8\x00\x21\x10\xb8\x00\x26\xdc\xb9\x00\x15\x00\x01\xf4\ \xb8\x00\x21\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x15\x10\xb8\x00\ \x1d\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x33\x0e\ \x01\x23\x22\x2e\x02\x23\x22\x06\x07\x01\x2c\x1d\x2b\x1e\x11\x03\ \x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\xa2\x03\x29\x23\ \x11\x1c\x18\x16\x0c\x0f\x15\x04\x2a\x04\x28\x23\x12\x1b\x18\x16\ \x0c\x0f\x16\x03\x02\xc4\x12\x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\ \x1e\x12\x8a\x28\x35\x0e\x11\x0e\x18\x15\x27\x36\x0e\x11\x0e\x18\ \x15\x00\x00\x00\x02\x00\xb0\x02\x3b\x01\xa8\x03\x22\x00\x07\x00\ \x19\x00\x23\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x08\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x14\xdc\ \xb8\x00\x0e\xd0\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x37\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x06\x4c\ \x56\x3a\x40\x04\x40\x3a\x7c\x1d\x29\x1d\x0f\x01\x2d\x04\x21\x21\ \x21\x21\x04\x2d\x02\x0e\x1d\x2a\x02\xa3\x68\x41\x41\x86\x10\x1b\ \x23\x13\x16\x1e\x1e\x16\x13\x23\x1b\x10\x00\x00\x02\x00\xac\x02\ \xc2\x01\xac\x03\xaa\x00\x07\x00\x15\x00\x23\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x08\xdc\xb9\x00\ \x0f\x00\x01\xf4\xb8\x00\x12\xdc\xb8\x00\x0c\xd0\x30\x31\x01\x33\ \x17\x23\x27\x23\x07\x23\x37\x22\x26\x27\x33\x1e\x01\x33\x32\x36\ \x37\x33\x0e\x01\x01\x08\x48\x5c\x3f\x3f\x04\x3f\x3f\x80\x3a\x3b\ \x05\x2d\x06\x23\x24\x24\x23\x06\x2d\x05\x3b\x03\x2c\x6a\x3e\x3e\ \x87\x39\x28\x17\x1e\x1e\x17\x28\x39\x00\x00\x00\x01\x01\x06\x02\ \x24\x01\x41\x02\xf8\x00\x04\x00\x0b\x00\xba\x00\x01\x00\x00\x00\ \x03\x2b\x30\x31\x01\x27\x33\x0f\x01\x01\x0a\x04\x3b\x01\x0e\x02\ \x24\xd4\x39\x9b\x00\x00\x00\x00\x01\x00\xe7\x02\x1d\x01\x7f\x02\ \xc6\x00\x10\x00\x1b\x00\xbb\x00\x0f\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0f\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x01\x2e\x01\x35\x34\x3e\x02\x37\x17\x0e\x01\x15\x14\x16\x17\x07\ \x01\x48\x33\x2e\x18\x28\x34\x1c\x08\x27\x31\x1d\x16\x12\x02\x1d\ \x08\x24\x21\x16\x20\x16\x0d\x03\x29\x05\x15\x13\x14\x14\x05\x26\ \x00\x00\x00\x00\x01\xff\xd9\x01\x05\x02\x7f\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\ \x15\x21\x27\x02\xa6\xfd\x5a\x01\x53\x4e\x00\x00\x01\xff\xd9\x00\ \xde\x02\x7f\x01\x7a\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x03\x21\x15\x21\x27\x02\xa6\xfd\x5a\x01\x7a\x9c\ \x00\x00\x00\x00\x01\x01\x05\xfe\x70\x01\x53\x03\xe8\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x01\x33\x11\x23\ \x01\x05\x4e\x4e\x03\xe8\xfa\x88\x00\x00\x00\x00\x01\x00\xde\xfe\ \x70\x01\x7a\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xde\x9c\x9c\x03\xe8\xfa\x88\x00\ \x03\x00\x21\x01\x05\x02\x37\x01\x53\x00\x03\x00\x07\x00\x0b\x00\ \x2d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\ \xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\ \x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\ \xc8\x86\x86\x01\x53\x4e\x4e\x4e\x4e\x4e\x00\x00\x03\x00\x21\x00\ \xde\x02\x37\x01\x7a\x00\x03\x00\x07\x00\x0b\x00\x2b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x15\x23\x37\x33\x15\x23\ \x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\x7a\x9c\ \x9c\x9c\x9c\x9c\x00\x00\x00\x00\x03\x01\x05\xff\x6f\x01\x53\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x1b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xba\x00\x09\x00\x0a\x00\x03\x2b\xba\x00\x05\x00\x06\x00\ \x03\x2b\x30\x31\x25\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\ \x01\x05\x4e\x4e\x4e\x4e\x4e\x4e\x4d\xde\x02\x2b\xde\x02\x2b\xde\ \x00\x00\x00\x00\x03\x00\xde\xff\x6f\x01\x7a\x02\xe7\x00\x03\x00\ \x07\x00\x0b\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\ \x09\x00\x0a\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\x30\x31\ \x37\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xde\x9c\x9c\x9c\ \x9c\x9c\x9c\x4d\xde\x02\x2b\xde\x02\x2b\xde\x00\x04\x00\x12\x01\ \x05\x02\x45\x01\x53\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x3d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\xb8\x00\x01\x10\xb8\x00\ \x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\x30\x31\x13\x33\x15\x23\ \x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x12\x71\x71\x96\ \x71\x71\x96\x71\x71\x96\x71\x71\x01\x53\x4e\x4e\x4e\x4e\x4e\x4e\ \x4e\x00\x00\x00\x04\x00\x12\x00\xde\x02\x45\x01\x7a\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x3b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\ \xb8\x00\x01\x10\xb8\x00\x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\ \x30\x31\x13\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\ \x15\x23\x12\x71\x71\x96\x71\x71\x96\x71\x71\x96\x71\x71\x01\x7a\ \x9c\x9c\x9c\x9c\x9c\x9c\x9c\x00\x04\x01\x05\xff\x57\x01\x53\x03\ \x01\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x23\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xba\x00\x0d\x00\x0e\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\xba\x00\x09\x00\x0a\x00\x03\x2b\x30\x31\x25\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x01\x05\ \x4e\x4e\x4e\x4e\x4e\x4e\x4e\x4e\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\ \x01\xb6\xbc\x00\x04\x00\xde\xff\x57\x01\x7a\x03\x01\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x23\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xba\x00\x0d\x00\x0e\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\ \xba\x00\x09\x00\x0a\x00\x03\x2b\x30\x31\x37\x33\x15\x23\x11\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xde\x9c\x9c\x9c\x9c\x9c\ \x9c\x9c\x9c\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\xb6\xbc\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x01\x21\x15\x21\x11\x23\ \x01\x05\x01\x7a\xfe\xd4\x4e\x01\x53\x4e\xfd\x6b\x00\x00\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\x7a\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x01\x21\x15\x21\x11\x23\x01\x05\ \x01\x7a\xfe\xd4\x4e\x01\x7a\x9c\xfd\x92\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x11\x23\xde\x01\xa1\xfe\ \xfb\x9c\x01\x53\x4e\xfd\x6b\x00\x01\x00\xde\xfe\x70\x02\x7f\x01\ \x7a\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x21\x15\x21\x11\x23\xde\x01\xa1\xfe\xfb\x9c\x01\x7a\x9c\xfd\ \x92\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\x53\x00\x05\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\ \x11\x23\x11\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x53\xfd\x1d\x02\x95\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\x7a\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\ \x11\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x7a\xfc\xf6\x02\x6e\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\ \x27\x01\xa1\x9c\xfe\xfb\x01\x53\xfd\x1d\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x01\x7a\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x27\x01\ \xa1\x9c\xfe\xfb\x01\x7a\xfc\xf6\x02\x6e\x00\x00\x01\x01\x05\x01\ \x05\x02\x7f\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x01\x05\x4e\x01\ \x2c\xfe\x86\x03\xe8\xfd\x6b\x4e\x00\x00\x00\x00\x01\x01\x05\x00\ \xde\x02\x7f\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x01\x05\x4e\x01\x2c\xfe\ \x86\x03\xe8\xfd\x92\x9c\x00\x00\x01\x00\xde\x01\x05\x02\x7f\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x33\x11\x21\x15\x21\xde\x9c\x01\x05\xfe\x5f\x03\xe8\ \xfd\x6b\x4e\x00\x01\x00\xde\x00\xde\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x15\x21\xde\x9c\x01\x05\xfe\x5f\x03\xe8\xfd\x92\x9c\x00\x00\x00\ \x01\xff\xd9\x01\x05\x01\x53\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x27\x01\x2c\x4e\xfe\x86\x01\x53\x02\x95\xfd\x1d\x00\x00\x00\x00\ \x01\xff\xd9\x00\xde\x01\x53\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\ \x2c\x4e\xfe\x86\x01\x7a\x02\x6e\xfc\xf6\x00\x00\x01\xff\xd9\x01\ \x05\x01\x7a\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\x05\x9c\ \xfe\x5f\x01\x53\x02\x95\xfd\x1d\x00\x00\x00\x00\x01\xff\xd9\x00\ \xde\x01\x7a\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\x05\x9c\xfe\x5f\ \x01\x7a\x02\x6e\xfc\xf6\x00\x00\x01\x01\x05\xfe\x70\x02\x7f\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x01\x33\x11\x21\x15\x21\x11\x23\x01\x05\x4e\x01\x2c\xfe\ \xd4\x4e\x03\xe8\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x01\x01\x05\xfe\ \x70\x02\x7f\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x11\x23\x01\x05\x4e\x01\ \x2c\xfe\xd4\x4e\x03\xe8\xfd\x92\x9c\xfd\x92\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x08\xd0\x30\x31\x13\x33\ \x11\x21\x15\x21\x11\x23\x11\x23\xde\x9c\x01\x05\xfe\xd4\x4e\x27\ \x03\xe8\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\ \x11\x33\x11\x21\x15\x21\x11\x23\xde\x27\x4e\x01\x2c\xfe\xfb\x9c\ \x01\x53\x02\x95\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\x11\x23\xde\x9c\ \x01\x05\xfe\xfb\x9c\x03\xe8\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x00\ \x01\x00\xde\xfe\x70\x02\x7f\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x03\x00\x04\x00\x03\x2b\xb8\x00\x04\x10\xb8\x00\x08\xd0\x30\x31\ \x13\x33\x11\x21\x15\x21\x11\x23\x11\x23\xde\x9c\x01\x05\xfe\xd4\ \x4e\x27\x03\xe8\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x13\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\ \x11\x21\x15\x21\x11\x23\xde\x27\x4e\x01\x2c\xfe\xfb\x9c\x01\x7a\ \x02\x6e\xfd\x92\x9c\xfd\x92\x00\x01\x00\xde\xfe\x70\x02\x7f\x03\ \xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\ \x13\x33\x11\x21\x15\x21\x11\x23\xde\x9c\x01\x05\xfe\xfb\x9c\x03\ \xe8\xfd\x92\x9c\xfd\x92\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x4e\xfe\ \xd4\x01\x53\x02\x95\xfa\x88\x02\x95\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x53\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x01\x00\x06\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x4e\xfe\xd4\x01\x7a\x02\x6e\xfa\x88\x02\x6e\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x23\x11\x23\x11\x21\x27\x01\x05\x9c\x27\x4e\xfe\xd4\ \x01\x53\x02\x95\xfd\x1d\xfd\x6b\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x27\x9c\xfe\xfb\ \x01\x53\x02\x95\xfd\x6b\xfd\x1d\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\ \x05\x9c\x9c\xfe\xfb\x01\x53\x02\x95\xfa\x88\x02\x95\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x23\x11\x23\x11\x21\x27\x01\x05\x9c\x27\x4e\ \xfe\xd4\x01\x7a\x02\x6e\xfc\xf6\xfd\x92\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x27\x9c\ \xfe\xfb\x01\x7a\x02\x6e\xfd\x92\xfc\xf6\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x06\x00\x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\ \x27\x01\x05\x9c\x9c\xfe\xfb\x01\x7a\x02\x6e\xfa\x88\x02\x6e\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x07\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\xa6\xfe\xd4\x4e\ \xfe\xd4\x01\x53\x4e\xfd\x6b\x02\x95\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\xba\x00\x01\x00\x08\x00\x03\x2b\x30\x31\x03\x21\ \x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\x7a\x01\x2c\xfe\xd4\x4e\ \xfe\xd4\x01\x7a\x27\x4e\xfd\x6b\x02\x6e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x03\x21\ \x35\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x01\x7a\xfe\xd4\x4e\ \xfe\xd4\x01\x53\x27\x9c\xfd\x92\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x21\ \x11\x23\x11\x21\x27\x02\xa6\xfe\xd4\x4e\xfe\xd4\x01\x7a\x9c\xfd\ \x92\x02\x6e\x00\x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x07\x00\ \x15\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\ \xa6\xfe\xfb\x9c\xfe\xfb\x01\x53\x4e\xfd\x6b\x02\x95\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\xba\x00\x01\x00\x08\x00\x03\x2b\ \x30\x31\x03\x21\x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\xa1\x01\ \x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x27\x4e\xfd\x6b\x02\x6e\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\xba\x00\x03\x00\x04\x00\x03\x2b\ \x30\x31\x03\x21\x35\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x01\ \xa1\xfe\xfb\x9c\xfe\xfb\x01\x53\x27\x9c\xfd\x92\x02\x95\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x07\x00\x13\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\ \x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\xa6\xfe\xfb\x9c\xfe\xfb\ \x01\x7a\x9c\xfd\x92\x02\x6e\x00\x01\xff\xd9\x01\x05\x02\x7f\x03\ \xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x27\x01\x2c\x4e\x01\x2c\xfd\x5a\x01\x53\x02\x95\xfd\x6b\ \x4e\x00\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xba\x00\x01\x00\x08\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x27\x01\x2c\x4e\x01\x2c\xfe\xd4\xfe\x86\x01\x7a\x02\x6e\xfd\x6b\ \x4e\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x35\x21\ \x27\x01\x2c\x4e\x01\x2c\xfe\x86\xfe\xd4\x01\x53\x02\x95\xfd\x92\ \x9c\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x07\x00\ \x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x27\x01\x2c\x4e\ \x01\x2c\xfd\x5a\x01\x7a\x02\x6e\xfd\x92\x9c\x00\x01\xff\xd9\x01\ \x05\x02\x7f\x03\xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x27\x01\x05\x9c\x01\x05\xfd\x5a\x01\x53\ \x02\x95\xfd\x6b\x4e\x00\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x09\x00\x15\x00\xba\x00\x01\x00\x08\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x15\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\xfe\x5f\x01\x7a\ \x02\x6e\xfd\x6b\x4e\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x09\x00\x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x35\x21\x27\x01\x05\x9c\x01\x05\xfe\x5f\xfe\xfb\x01\x53\ \x02\x95\xfd\x92\x9c\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x07\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\ \x27\x01\x05\x9c\x01\x05\xfd\x5a\x01\x7a\x02\x6e\xfd\x92\x9c\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\ \xd4\x01\x53\x02\x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\ \x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\xd4\x01\x7a\x02\x6e\xfd\x6b\x4e\ \xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\ \xd4\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x1b\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\ \x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\ \x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\xd4\x01\ \x7a\x02\x6e\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xd4\x4e\xfe\xd4\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\ \x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x0c\x10\ \xb8\x00\x08\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x23\ \x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x27\x4e\xfe\xd4\ \x01\x7a\x02\x6e\xfd\x6b\x4e\x27\xfd\x92\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0d\x00\x1d\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\x0c\x00\x04\x2b\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x23\x35\x21\x27\x01\x05\x9c\x01\x05\xfe\xd4\ \x4e\x27\xfe\xfb\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x6e\x27\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0d\x00\ \x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\x07\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x27\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x27\x4e\ \xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x07\x00\x08\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x03\x21\x35\x33\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\ \x27\x01\x05\x27\x4e\x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x53\x27\x02\ \x6e\xfd\x92\x9c\xfd\x92\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\ \x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\ \x27\x01\x05\x9c\x01\x05\xfe\xd4\x4e\xfe\xd4\x01\x7a\x02\x6e\xfd\ \x92\x9c\xfd\x92\x02\x6e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x9c\xfd\x92\ \x02\x6e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\ \x15\x00\xba\x00\x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\ \x6e\xfd\x6b\x4e\xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xbb\x00\x01\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\ \xfe\xfb\x9c\xfe\xfb\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x95\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\ \x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\ \x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x00\ \x02\x00\x4b\x01\x05\x02\x0d\x01\x53\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x15\x23\ \x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\x53\x4e\x4e\x4e\ \x00\x00\x00\x00\x02\x00\x4b\x00\xde\x02\x0d\x01\x7a\x00\x03\x00\ \x07\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\ \xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\ \x15\x23\x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\x7a\x9c\ \x9c\x9c\x00\x00\x02\x01\x05\xff\xb5\x01\x53\x02\xa3\x00\x03\x00\ \x07\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x25\x33\ \x15\x23\x11\x33\x15\x23\x01\x05\x4e\x4e\x4e\x4e\xaf\xfa\x02\xee\ \xfa\x00\x00\x00\x02\x00\xde\xff\xb5\x01\x7a\x02\xa3\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\x30\x31\x37\x33\x15\x23\x11\x33\x15\x23\xde\x9c\ \x9c\x9c\x9c\xaf\xfa\x02\xee\xfa\x00\x00\x00\x00\x02\xff\xd9\x00\ \xb7\x02\x7f\x01\xa1\x00\x03\x00\x07\x00\x17\x00\xbb\x00\x05\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x27\x02\xa6\xfd\x5a\x02\ \xa6\xfd\x5a\x01\xa1\x4e\x4e\x4e\x00\x00\x00\x00\x02\x00\xb7\xfe\ \x70\x01\xa1\x03\xe8\x00\x03\x00\x07\x00\x1b\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\xb7\x4e\ \x4e\x9c\x4e\x4e\x03\xe8\xfa\x88\x05\x78\xfa\x88\x00\x00\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\xa1\x00\x09\x00\x17\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\ \x04\x2b\x30\x31\x01\x21\x15\x21\x15\x21\x15\x21\x11\x23\x01\x05\ \x01\x7a\xfe\xd4\x01\x2c\xfe\xd4\x4e\x01\xa1\x4e\x4e\x4e\xfd\xb9\ \x00\x00\x00\x00\x01\x00\xb7\xfe\x70\x02\x7f\x01\x53\x00\x0a\x00\ \x1d\x00\xbb\x00\x02\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x00\xd0\xb8\x00\x03\x10\xb8\x00\x07\xd0\x30\x31\x13\x33\ \x21\x15\x23\x11\x23\x11\x23\x11\x23\xb7\x4e\x01\x7a\xde\x4e\x4e\ \x4e\x01\x53\x4e\xfd\x6b\x02\x95\xfd\x6b\x00\x00\x02\x00\xb7\xfe\ \x70\x02\x7f\x01\xa1\x00\x05\x00\x0b\x00\x17\x00\xbb\x00\x01\x00\ \x01\x00\x02\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\ \x30\x31\x13\x21\x15\x21\x11\x23\x13\x21\x15\x23\x11\x23\xb7\x01\ \xc8\xfe\x86\x4e\x9c\x01\x2c\xde\x4e\x01\xa1\x4e\xfd\x1d\x02\x95\ \x4e\xfd\xb9\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\xa1\x00\x09\x00\ \x17\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x07\x00\ \x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x35\x21\ \x35\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\xa1\xfc\xcf\ \x02\x47\x4e\x4e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\xa1\x01\ \x53\x00\x09\x00\x15\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x04\xd0\x30\x31\x01\x23\x11\x23\x11\x23\ \x35\x21\x11\x23\x01\x53\x4e\x4e\xde\x01\xc8\x4e\x01\x05\xfd\x6b\ \x02\x95\x4e\xfd\x1d\x00\x00\x00\x02\xff\xd9\xfe\x70\x01\xa1\x01\ \xa1\x00\x05\x00\x0b\x00\x17\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\ \x11\x23\x11\x21\x15\x21\x11\x23\x11\x23\x27\x01\xc8\x4e\xfe\x86\ \x01\x2c\x4e\xde\x01\xa1\xfc\xcf\x02\xe3\x4e\xfd\x6b\x02\x47\x00\ \x01\x01\x05\x00\xb7\x02\x7f\x03\xe8\x00\x09\x00\x17\x00\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x04\x00\ \x04\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x15\x21\x15\x21\x01\x05\ \x4e\x01\x2c\xfe\xd4\x01\x2c\xfe\x86\x03\xe8\xfd\xb9\x4e\x4e\x4e\ \x00\x00\x00\x00\x01\x00\xb7\x01\x05\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x07\x10\ \xb8\x00\x02\xd0\x30\x31\x13\x33\x11\x33\x11\x33\x11\x33\x15\x21\ \xb7\x4e\x4e\x4e\xde\xfe\x38\x03\xe8\xfd\x6b\x02\x95\xfd\x6b\x4e\ \x00\x00\x00\x00\x02\x00\xb7\x00\xb7\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\ \x13\x33\x11\x33\x15\x21\xb7\x4e\x01\x7a\xfe\x38\x9c\x4e\xde\xfe\ \xd4\x03\xe8\xfd\x1d\x4e\x03\x31\xfd\xb9\x4e\x00\x01\xff\xd9\x00\ \xb7\x01\x53\x03\xe8\x00\x09\x00\x17\x00\xbb\x00\x07\x00\x01\x00\ \x04\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\ \x03\x21\x11\x33\x11\x21\x35\x21\x35\x21\x27\x01\x2c\x4e\xfe\x86\ \x01\x2c\xfe\xd4\x01\xa1\x02\x47\xfc\xcf\x4e\x4e\x00\x00\x00\x00\ \x01\xff\xd9\x01\x05\x01\xa1\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x21\x27\xde\x4e\x4e\ \x4e\xfe\x38\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x1d\x00\x00\x00\ \x02\xff\xd9\x00\xb7\x01\xa1\x03\xe8\x00\x05\x00\x0b\x00\x17\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\ \x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x35\x33\x11\x33\ \x11\x21\x27\x01\x7a\x4e\xfe\x38\xde\x4e\xfe\xd4\x01\x05\x02\xe3\ \xfc\xcf\xea\x02\x47\xfd\x6b\x00\x01\x01\x05\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x17\x00\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\ \xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x01\x33\x11\x21\ \x15\x21\x15\x21\x15\x21\x11\x23\x01\x05\x4e\x01\x2c\xfe\xd4\x01\ \x2c\xfe\xd4\x4e\x03\xe8\xfd\xb9\x4e\x4e\x4e\xfd\xb9\x00\x00\x00\ \x02\x00\xb7\xfe\x70\x02\x7f\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\ \xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x01\x33\x11\x33\ \x15\x23\x11\x23\x03\x33\x11\x23\x01\x53\x4e\xde\xde\x4e\x9c\x4e\ \x4e\x03\xe8\xfd\x6b\x4e\xfd\x6b\x05\x78\xfa\x88\x00\x00\x00\x00\ \x03\x00\xb7\xfe\x70\x02\x7f\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\ \x17\x00\xbb\x00\x0b\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x07\x00\ \x01\x00\x08\x00\x04\x2b\x30\x31\x13\x33\x11\x23\x13\x33\x11\x33\ \x15\x21\x15\x21\x15\x23\x11\x23\xb7\x4e\x4e\x9c\x4e\xde\xfe\xd4\ \x01\x2c\xde\x4e\x03\xe8\xfa\x88\x05\x78\xfd\xb9\x4e\x4e\x4e\xfd\ \xb9\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x03\xe8\x00\x0b\x00\ \x17\x00\xbb\x00\x09\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\ \x35\x21\x35\x21\x27\x01\x2c\x4e\x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\ \xa1\x02\x47\xfa\x88\x02\x47\x4e\x4e\x00\x00\x00\x02\xff\xd9\xfe\ \x70\x01\xa1\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\xbb\x00\x01\x00\ \x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x33\x11\x23\x11\x23\ \x01\x33\x11\x23\x27\xde\x4e\x4e\xde\x01\x7a\x4e\x4e\x01\x53\x02\ \x95\xfa\x88\x02\x95\x02\xe3\xfa\x88\x00\x00\x00\x03\xff\xd9\xfe\ \x70\x01\xa1\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\x17\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x0b\x00\x01\x00\x0e\x00\ \x04\x2b\x30\x31\x01\x33\x11\x23\x01\x21\x11\x23\x11\x23\x35\x33\ \x11\x33\x11\x21\x01\x53\x4e\x4e\xfe\x86\x01\x2c\x4e\xde\xde\x4e\ \xfe\xd4\x03\xe8\xfa\x88\x02\x95\xfd\x6b\x02\x47\xea\x02\x47\xfd\ \x6b\x00\x00\x00\x02\xff\xd9\xfe\x70\x02\x7f\x01\xa1\x00\x07\x00\ \x0b\x00\x1f\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x35\x21\x15\x21\x27\x02\ \xa6\xfe\xd4\x4e\xfe\xd4\x02\xa6\xfd\x5a\x01\x05\x4e\xfd\xb9\x02\ \x47\xea\x4e\x00\x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x0b\x00\ \x1d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\ \x15\x23\x11\x23\x11\x23\x11\x23\x11\x23\x27\x02\xa6\xde\x4e\x4e\ \x4e\xde\x01\x53\x4e\xfd\x6b\x02\x95\xfd\x6b\x02\x95\x00\x00\x00\ \x03\xff\xd9\xfe\x70\x02\x7f\x01\xa1\x00\x05\x00\x0b\x00\x0f\x00\ \x27\x00\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x06\xd0\xb8\x00\ \x04\x10\xb8\x00\x08\xd0\x30\x31\x03\x21\x11\x23\x11\x23\x25\x21\ \x15\x23\x11\x23\x01\x21\x15\x21\x27\x01\x2c\x4e\xde\x01\x7a\x01\ \x2c\xde\x4e\xfe\x86\x02\xa6\xfd\x5a\x01\x05\xfd\x6b\x02\x47\x4e\ \x4e\xfd\xb9\x03\x31\x4e\x00\x00\x02\xff\xd9\x00\xb7\x02\x7f\x03\ \xe8\x00\x07\x00\x0b\x00\x1f\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\ \x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x15\x21\x27\x01\x2c\x4e\x01\x2c\xfd\x5a\x02\xa6\xfd\x5a\x01\xa1\ \x02\x47\xfd\xb9\x4e\x4e\x4e\x00\x01\xff\xd9\x01\x05\x02\x7f\x03\ \xe8\x00\x0b\x00\x1d\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x09\x10\xb8\x00\x00\xd0\xb8\x00\x09\x10\xb8\x00\x04\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x33\x15\x21\x27\xde\ \x4e\x4e\x4e\xde\xfd\x5a\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x6b\ \x4e\x00\x00\x00\x03\xff\xd9\x00\xb7\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\x0f\x00\x27\x00\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x04\x10\xb8\x00\x0a\xd0\x30\x31\x03\x33\x11\x33\ \x11\x21\x01\x33\x11\x33\x15\x21\x05\x21\x15\x21\x27\xde\x4e\xfe\ \xd4\x01\x7a\x4e\xde\xfe\xd4\xfe\x86\x02\xa6\xfd\x5a\x01\xa1\x02\ \x47\xfd\x6b\x02\x95\xfd\xb9\x4e\x4e\x4e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x13\x00\x37\x00\xbb\x00\x09\x00\x01\x00\ \x0a\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\xb8\x00\ \x09\x10\xb8\x00\x10\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\x15\x21\x11\x23\x11\x21\ \x35\x21\x35\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x01\x2c\xfe\xd4\ \x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\xa1\x02\x47\xfd\xb9\x4e\x4e\x4e\ \xfd\xb9\x02\x47\x4e\x4e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x13\x00\x2d\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x09\x10\xb8\x00\x00\xd0\xb8\x00\x09\x10\xb8\x00\x04\xd0\ \xb8\x00\x0a\x10\xb8\x00\x0e\xd0\xb8\x00\x0a\x10\xb8\x00\x12\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x33\x15\x23\x11\x23\ \x11\x23\x11\x23\x11\x23\x27\xde\x4e\x4e\x4e\xde\xde\x4e\x4e\x4e\ \xde\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x6b\x4e\xfd\x6b\x02\x95\ \xfd\x6b\x02\x95\x00\x00\x00\x00\x04\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x05\x00\x0b\x00\x11\x00\x17\x00\x37\x00\xbb\x00\x07\x00\ \x01\x00\x0a\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x01\x10\xb8\x00\x0e\xd0\xb8\x00\x04\x10\xb8\x00\x10\xd0\ \xb8\x00\x07\x10\xb8\x00\x12\xd0\xb8\x00\x0a\x10\xb8\x00\x14\xd0\ \x30\x31\x03\x33\x11\x33\x11\x21\x15\x21\x11\x23\x11\x23\x01\x33\ \x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\x27\xde\x4e\xfe\xd4\x01\ \x2c\x4e\xde\x01\x7a\x4e\xde\xfe\xd4\x01\x2c\xde\x4e\x01\xa1\x02\ \x47\xfd\x6b\x4e\xfd\x6b\x02\x47\x03\x31\xfd\xb9\x4e\x4e\x4e\xfd\ \xb9\x00\x00\x00\x01\x01\x05\xfe\x70\x02\x7f\x01\x53\x00\x0f\x00\ \x0d\x00\xbb\x00\x06\x00\x01\x00\x07\x00\x04\x2b\x30\x31\x21\x34\ \x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\x11\x23\x01\x05\x35\x5c\ \x7c\x46\x27\x27\x36\x5f\x47\x29\x4e\x46\x7c\x5c\x35\x4e\x29\x47\ \x5f\x36\xfe\x70\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\ \x53\x00\x0f\x00\x0d\x00\xbb\x00\x0a\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x01\x23\x11\x34\x2e\x02\x2b\x01\x35\x33\x32\x1e\x02\x15\ \x01\x53\x4e\x29\x47\x5f\x36\x27\x27\x46\x7c\x5c\x35\xfe\x70\x01\ \x90\x36\x5f\x47\x29\x4e\x35\x5c\x7c\x46\x00\x00\x01\xff\xd9\x01\ \x05\x01\x53\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\x08\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x01\x14\x0e\x02\x2b\x01\x35\x33\x32\x3e\ \x02\x35\x11\x33\x01\x53\x35\x5c\x7c\x46\x27\x27\x36\x5f\x47\x29\ \x4e\x02\x58\x46\x7c\x5c\x35\x4e\x29\x47\x5f\x36\x01\x90\x00\x00\ \x01\x01\x05\x01\x05\x02\x7f\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\ \x08\x00\x01\x00\x09\x00\x04\x2b\x30\x31\x01\x33\x11\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x35\x01\x05\x4e\x29\x47\x5f\x36\x27\ \x27\x46\x7c\x5c\x35\x03\xe8\xfe\x70\x36\x5f\x47\x29\x4e\x35\x5c\ \x7c\x46\x00\x00\x01\xff\xd9\xff\x11\x02\x7f\x03\x47\x00\x05\x00\ \x0b\x00\xba\x00\x00\x00\x03\x00\x03\x2b\x30\x31\x01\x33\x15\x01\ \x23\x35\x02\x31\x4e\xfd\xa8\x4e\x03\x47\x4e\xfc\x18\x4e\x00\x00\ \x01\xff\xd9\xff\x11\x02\x7f\x03\x47\x00\x05\x00\x0b\x00\xba\x00\ \x05\x00\x02\x00\x03\x2b\x30\x31\x05\x15\x23\x01\x35\x33\x02\x7f\ \x4e\xfd\xa8\x4e\xa1\x4e\x03\xe8\x4e\x00\x00\x00\x01\xff\xd9\xff\ \x11\x02\x7f\x03\x47\x00\x0f\x00\x2f\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\xba\x00\x00\x00\x06\x00\x02\x11\x12\x39\xba\x00\x08\x00\ \x06\x00\x02\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x09\xd0\xb8\x00\ \x02\x10\xb8\x00\x0e\xd0\x30\x31\x09\x01\x33\x15\x09\x01\x15\x23\ \x09\x01\x23\x35\x09\x01\x35\x33\x01\x2c\x01\x05\x4e\xfe\xeb\x01\ \x15\x4e\xfe\xfb\xfe\xfb\x4e\x01\x15\xfe\xeb\x4e\x01\x94\x01\xb3\ \x4e\xfe\x33\xfe\x33\x4e\x01\xb3\xfe\x4d\x4e\x01\xcd\x01\xcd\x4e\ \x00\x00\x00\x00\x01\xff\xd9\x01\x05\x01\x53\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\ \x15\x21\x27\x01\x7a\xfe\x86\x01\x53\x4e\x00\x00\x01\x01\x05\x01\ \x05\x01\x53\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x01\x33\x11\x23\x01\x05\x4e\x4e\x03\xe8\xfd\x1d\ \x00\x00\x00\x00\x01\x01\x05\x01\x05\x02\x7f\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x01\x21\ \x15\x21\x01\x05\x01\x7a\xfe\x86\x01\x53\x4e\x00\x01\x01\x05\xfe\ \x70\x01\x53\x01\x53\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x01\x33\x11\x23\x01\x05\x4e\x4e\x01\x53\xfd\x1d\ \x00\x00\x00\x00\x01\xff\xd9\x00\xde\x01\x53\x01\x7a\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x03\x21\x15\x21\ \x27\x01\x7a\xfe\x86\x01\x7a\x9c\x00\x00\x00\x00\x01\x00\xde\x01\ \x05\x01\x7a\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xde\x9c\x9c\x03\xe8\xfd\x1d\x00\ \x01\x01\x05\x00\xde\x02\x7f\x01\x7a\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x01\x21\x15\x21\x01\x05\x01\x7a\ \xfe\x86\x01\x7a\x9c\x00\x00\x00\x01\x00\xde\xfe\x70\x01\x7a\x01\ \x53\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x33\x11\x23\xde\x9c\x9c\x01\x53\xfd\x1d\x00\x01\xff\xd9\x00\ \xde\x02\x7f\x01\x7a\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x35\x21\x15\x21\x35\x21\x27\x01\ \x2c\x01\x7a\xfe\x86\xfe\xd4\x01\x53\x27\x9c\x27\x00\x00\x00\x00\ \x01\x00\xde\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x03\x00\x06\x00\x03\x2b\x30\x31\x13\x33\x11\x33\x11\x33\x11\x23\ \xde\x27\x4e\x27\x9c\x01\x53\x02\x95\xfd\x6b\xfd\x1d\x00\x00\x00\ \x01\xff\xd9\x00\xde\x02\x7f\x01\x7a\x00\x07\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\ \x15\x21\x27\x01\x7a\x01\x2c\xfe\xd4\xfe\x86\x01\x7a\x27\x4e\x27\ \x00\x00\x00\x00\x01\x00\xde\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x23\ \x11\x23\x11\x23\xde\x9c\x27\x4e\x27\x03\xe8\xfd\x1d\xfd\x6b\x02\ \x95\x00\x00\x00\x01\x00\x00\x01\x2c\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\xff\xb5\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x15\x21\x15\x21\x02\x58\xfd\xa8\x4b\x7d\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x00\x32\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x15\x21\x02\x58\xfd\xa8\ \x32\xfa\x00\x00\x01\x00\x00\xff\x38\x02\x58\x00\xaf\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x11\x21\ \x02\x58\xfd\xa8\xaf\xfe\x89\x00\x01\x00\x00\xff\x38\x02\x58\x01\ \x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x01\x2c\xfe\x0c\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x01\xa9\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x01\xa9\xfd\x8f\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x02\ \x26\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x02\x26\xfd\x12\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x02\xa3\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x02\xa3\xfc\x95\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x0d\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x0d\xfd\xf3\ \x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\xc2\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x01\xc2\xfe\x3e\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x01\x77\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x77\xfe\x89\ \x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x00\xe1\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\xe1\xe1\x03\x20\ \xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x96\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\ \x96\x96\x03\x20\xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x4b\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x33\x11\x23\x4b\x4b\x03\x20\xfc\x18\x00\x00\x01\x01\x2c\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\ \xfc\x18\x00\x00\x04\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\ \x06\x00\x0a\x00\x0e\x00\x2f\x00\xba\x00\x08\x00\x01\x00\x03\x2b\ \xba\x00\x04\x00\x01\x00\x08\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x05\xd0\xb8\x00\x08\x10\xb8\x00\x0b\xd0\xba\x00\x0e\x00\x01\x00\ \x08\x11\x12\x39\x30\x31\x15\x17\x23\x11\x35\x01\x23\x01\x33\x01\ \x15\x01\x33\x01\x15\x1e\x1e\x01\x4a\x1e\xfe\xd4\x1e\x02\x3a\xfe\ \xd4\x1e\x01\x0e\x96\x32\x01\xf4\x32\xfd\xda\x03\xe8\xfc\x4a\x32\ \x03\xe8\xfe\x3e\x32\x00\x00\x00\x08\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\ \x1e\x00\x77\x00\xba\x00\x10\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\ \x08\x00\x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\ \xba\x00\x0c\x00\x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x0d\xd0\xb8\x00\x10\x10\xb8\x00\x13\xd0\xba\x00\x16\x00\x01\x00\ \x10\x11\x12\x39\xb8\x00\x10\x10\xb8\x00\x17\xd0\xba\x00\x1a\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x10\x10\xb8\x00\x1b\xd0\xba\x00\ \x1e\x00\x01\x00\x10\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x13\ \x23\x03\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x01\x33\x01\x15\x03\x33\x17\x15\x1e\x1e\xb4\x1e\x96\x01\x4a\ \x1e\xfe\xd4\x01\xe0\x1e\xfe\x3e\x1e\x02\x3a\xfe\x3e\x1e\x01\xa4\ \xfe\xd4\x1e\x01\x0e\x96\x1e\x78\x96\x32\xfa\x32\xfe\xd4\x01\xf4\ \x32\xfd\xda\x02\xee\x32\xfc\xe0\x03\xe8\xfc\x4a\x32\x03\xe8\xfd\ \x44\x32\x02\xee\xfe\x3e\x32\x01\xf4\xc8\x32\x00\x10\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\ \x16\x00\x1a\x00\x1e\x00\x22\x00\x26\x00\x2a\x00\x2e\x00\x32\x00\ \x36\x00\x3a\x00\x3e\x01\x07\x00\xba\x00\x20\x00\x01\x00\x03\x2b\ \xba\x00\x04\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x05\xd0\xba\x00\x08\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\xba\x00\x0c\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x01\x10\xb8\x00\x0d\xd0\xba\x00\x10\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x01\x10\xb8\x00\x11\xd0\xba\x00\x14\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x15\xd0\xba\x00\x18\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x19\xd0\xba\x00\x1c\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x1d\xd0\xb8\x00\ \x20\x10\xb8\x00\x23\xd0\xba\x00\x26\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x20\x10\xb8\x00\x27\xd0\xba\x00\x2a\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x2b\xd0\xba\x00\x2e\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x2f\xd0\xba\x00\x32\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x33\xd0\xba\x00\ \x36\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x37\xd0\ \xba\x00\x3a\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\ \x3b\xd0\xba\x00\x3e\x00\x01\x00\x20\x11\x12\x39\x30\x31\x15\x17\ \x23\x3d\x01\x17\x23\x27\x35\x13\x23\x03\x35\x13\x23\x03\x35\x01\ \x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\ \x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\ \x15\x03\x33\x13\x15\x03\x33\x17\x15\x27\x33\x17\x15\x1e\x1e\x69\ \x1e\x4b\xb4\x1e\x96\xff\x1e\xe1\x01\x4a\x1e\xfe\xd4\x01\x95\x1e\ \xfe\x89\x01\xe0\x1e\xfe\x3e\x02\x2b\x1e\xfd\xf3\x1e\x02\x3a\xfd\ \xf3\x1e\x01\xef\xfe\x3e\x1e\x01\xa4\xfe\x89\x1e\x01\x59\xfe\xd4\ \x1e\x01\x0e\xe1\x1e\xc3\x96\x1e\x78\x4b\x1e\x2d\x96\x32\x7d\x32\ \xaf\xfa\x32\xfe\xd4\x01\x77\x32\xfe\x57\x01\xf4\x32\xfd\xda\x02\ \x71\x32\xfd\x5d\x02\xee\x32\xfc\xe0\x03\x6b\x32\xfc\x63\x03\xe8\ \xfc\x4a\x32\x03\xe8\xfc\xc7\x32\x03\x6b\xfd\x44\x32\x02\xee\xfd\ \xc1\x32\x02\x71\xfe\x3e\x32\x01\xf4\xfe\xbb\x32\x01\x77\xc8\x32\ \xfa\x4b\x32\x00\x01\x00\x00\x02\xa3\x02\x58\x03\x20\x00\x03\x00\ \x0d\x00\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\x30\x31\x11\x21\ \x15\x21\x02\x58\xfd\xa8\x03\x20\x7d\x00\x00\x00\x01\x02\x0d\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x33\x11\x23\x02\x0d\x4b\x4b\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x01\x2c\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x01\x2c\xff\ \x38\x02\x58\x01\x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\ \xfe\x0c\x00\x00\x01\x00\x00\x01\x2c\x01\x2c\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\ \x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\ \x03\x20\xfe\x0c\xfe\x0c\x00\x00\x02\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x07\x00\x0b\x00\xb8\x00\x06\x2f\xb8\x00\x00\xdc\ \x30\x31\x01\x11\x21\x11\x01\x11\x21\x11\x01\x2c\xfe\xd4\x02\x58\ \xfe\xd4\x03\x20\xfe\x0c\x01\xf4\xfe\x0c\xfe\x0c\x01\xf4\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\ \xfe\xd4\xfe\xd4\x03\x20\xfe\x0c\xfe\x0c\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\ \x03\x20\xfc\x18\x01\xf4\x00\x00\x01\x01\x2c\x01\x2c\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\ \x02\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\x07\x00\x0b\x00\ \xb8\x00\x02\x2f\xb8\x00\x04\xdc\x30\x31\x11\x21\x11\x21\x01\x21\ \x11\x21\x01\x2c\xfe\xd4\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\ \x03\xe8\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x04\x2f\xb8\x00\x03\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\x01\x2c\x01\xf4\ \xfc\x18\x00\x00\x00\x00\x22\x01\x9e\x00\x01\x00\x00\x00\x00\x00\ \x00\x00\x45\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x0f\x00\ \x45\x00\x01\x00\x00\x00\x00\x00\x02\x00\x07\x00\x54\x00\x01\x00\ \x00\x00\x00\x00\x03\x00\x26\x00\x5b\x00\x01\x00\x00\x00\x00\x00\ \x04\x00\x0f\x00\x45\x00\x01\x00\x00\x00\x00\x00\x05\x00\x41\x00\ \x81\x00\x01\x00\x00\x00\x00\x00\x06\x00\x15\x00\xc2\x00\x01\x00\ \x00\x00\x00\x00\x07\x00\x60\x00\xd7\x00\x01\x00\x00\x00\x00\x00\ \x08\x00\x1a\x01\x37\x00\x01\x00\x00\x00\x00\x00\x09\x00\x0c\x01\ \x51\x00\x01\x00\x00\x00\x00\x00\x0b\x00\x19\x01\x5d\x00\x01\x00\ \x00\x00\x00\x00\x0d\x11\xd9\x01\x76\x00\x01\x00\x00\x00\x00\x00\ \x0e\x00\x24\x13\x4f\x00\x01\x00\x00\x00\x00\x01\x00\x00\x16\x13\ \x73\x00\x01\x00\x00\x00\x00\x01\x01\x00\x0b\x13\x89\x00\x01\x00\ \x00\x00\x00\x01\x02\x00\x0b\x13\x94\x00\x01\x00\x00\x00\x00\x01\ \x03\x00\x15\x13\x9f\x00\x03\x00\x01\x04\x09\x00\x00\x00\x8a\x13\ \xb4\x00\x03\x00\x01\x04\x09\x00\x01\x00\x1e\x14\x3e\x00\x03\x00\ \x01\x04\x09\x00\x02\x00\x0e\x14\x5c\x00\x03\x00\x01\x04\x09\x00\ \x03\x00\x4c\x14\x6a\x00\x03\x00\x01\x04\x09\x00\x04\x00\x1e\x14\ \x3e\x00\x03\x00\x01\x04\x09\x00\x05\x00\x82\x14\xb6\x00\x03\x00\ \x01\x04\x09\x00\x06\x00\x2a\x15\x38\x00\x03\x00\x01\x04\x09\x00\ \x07\x00\xc0\x15\x62\x00\x03\x00\x01\x04\x09\x00\x08\x00\x34\x16\ \x22\x00\x03\x00\x01\x04\x09\x00\x09\x00\x18\x16\x56\x00\x03\x00\ \x01\x04\x09\x00\x0b\x00\x32\x16\x6e\x00\x03\x00\x01\x04\x09\x00\ \x0d\x23\xb6\x16\xa0\x00\x03\x00\x01\x04\x09\x00\x0e\x00\x48\x3a\ \x56\x00\x03\x00\x01\x04\x09\x01\x00\x00\x2c\x3a\x9e\x00\x03\x00\ \x01\x04\x09\x01\x01\x00\x16\x3a\xca\x00\x03\x00\x01\x04\x09\x01\ \x02\x00\x16\x3a\xe0\x00\x03\x00\x01\x04\x09\x01\x03\x00\x2a\x3a\ \xf6\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\ \x20\x32\x30\x31\x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\ \x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\ \x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\ \x65\x72\x76\x65\x64\x2e\x53\x6f\x75\x72\x63\x65\x20\x43\x6f\x64\ \x65\x20\x50\x72\x6f\x52\x65\x67\x75\x6c\x61\x72\x31\x2e\x30\x31\ \x37\x3b\x41\x44\x42\x45\x3b\x53\x6f\x75\x72\x63\x65\x43\x6f\x64\ \x65\x50\x72\x6f\x2d\x52\x65\x67\x75\x6c\x61\x72\x3b\x41\x44\x4f\ \x42\x45\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x30\x31\x37\x3b\ \x50\x53\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x30\x30\x30\ \x3b\x68\x6f\x74\x63\x6f\x6e\x76\x20\x31\x2e\x30\x2e\x37\x30\x3b\ \x6d\x61\x6b\x65\x6f\x74\x66\x2e\x6c\x69\x62\x32\x2e\x35\x2e\x35\ \x39\x30\x30\x53\x6f\x75\x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\ \x2d\x52\x65\x67\x75\x6c\x61\x72\x53\x6f\x75\x72\x63\x65\x20\x69\ \x73\x20\x61\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6f\x66\ \x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\ \x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x69\x6e\x20\x74\ \x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\ \x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x63\x6f\ \x75\x6e\x74\x72\x69\x65\x73\x2e\x41\x64\x6f\x62\x65\x20\x53\x79\ \x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\ \x65\x64\x50\x61\x75\x6c\x20\x44\x2e\x20\x48\x75\x6e\x74\x68\x74\ \x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\ \x6f\x6d\x2f\x74\x79\x70\x65\x43\x6f\x70\x79\x72\x69\x67\x68\x74\ \x20\x32\x30\x31\x30\x2c\x20\x32\x30\x31\x32\x20\x41\x64\x6f\x62\ \x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\ \x6f\x72\x61\x74\x65\x64\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\ \x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x29\x2c\x20\ \x77\x69\x74\x68\x20\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x20\x27\x53\x6f\x75\x72\x63\x65\x27\ \x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\ \x65\x72\x76\x65\x64\x2e\x20\x53\x6f\x75\x72\x63\x65\x20\x69\x73\ \x20\x61\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6f\x66\x20\ \x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\ \x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x69\x6e\x20\x74\x68\ \x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\ \x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x63\x6f\x75\ \x6e\x74\x72\x69\x65\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x69\x73\x20\ \x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x69\x73\ \x20\x6c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\ \x74\x68\x65\x20\x53\x49\x4c\x20\x4f\x70\x65\x6e\x20\x46\x6f\x6e\ \x74\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x56\x65\x72\x73\x69\ \x6f\x6e\x20\x31\x2e\x31\x2e\x0d\x0a\x0d\x0a\x54\x68\x69\x73\x20\ \x6c\x69\x63\x65\x6e\x73\x65\x20\x69\x73\x20\x63\x6f\x70\x69\x65\ \x64\x20\x62\x65\x6c\x6f\x77\x2c\x20\x61\x6e\x64\x20\x69\x73\x20\ \x61\x6c\x73\x6f\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x77\ \x69\x74\x68\x20\x61\x20\x46\x41\x51\x20\x61\x74\x3a\x20\x68\x74\ \x74\x70\x3a\x2f\x2f\x73\x63\x72\x69\x70\x74\x73\x2e\x73\x69\x6c\ \x2e\x6f\x72\x67\x2f\x4f\x46\x4c\x0d\x0a\x0d\x0a\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\x53\x49\x4c\x20\x4f\x50\x45\ \x4e\x20\x46\x4f\x4e\x54\x20\x4c\x49\x43\x45\x4e\x53\x45\x20\x56\ \x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x31\x20\x2d\x20\x32\x36\x20\ \x46\x65\x62\x72\x75\x61\x72\x79\x20\x32\x30\x30\x37\x0d\x0a\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\x0d\x0a\x50\x52\ \x45\x41\x4d\x42\x4c\x45\x0d\x0a\x54\x68\x65\x20\x67\x6f\x61\x6c\ \x73\x20\x6f\x66\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x20\x46\x6f\ \x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x28\x4f\x46\x4c\x29\ \x20\x61\x72\x65\x20\x74\x6f\x20\x73\x74\x69\x6d\x75\x6c\x61\x74\ \x65\x20\x77\x6f\x72\x6c\x64\x77\x69\x64\x65\x20\x64\x65\x76\x65\ \x6c\x6f\x70\x6d\x65\x6e\x74\x20\x6f\x66\x20\x63\x6f\x6c\x6c\x61\ \x62\x6f\x72\x61\x74\x69\x76\x65\x20\x66\x6f\x6e\x74\x20\x70\x72\ \x6f\x6a\x65\x63\x74\x73\x2c\x20\x74\x6f\x20\x73\x75\x70\x70\x6f\ \x72\x74\x20\x74\x68\x65\x20\x66\x6f\x6e\x74\x20\x63\x72\x65\x61\ \x74\x69\x6f\x6e\x20\x65\x66\x66\x6f\x72\x74\x73\x20\x6f\x66\x20\ \x61\x63\x61\x64\x65\x6d\x69\x63\x20\x61\x6e\x64\x20\x6c\x69\x6e\ \x67\x75\x69\x73\x74\x69\x63\x20\x63\x6f\x6d\x6d\x75\x6e\x69\x74\ \x69\x65\x73\x2c\x20\x61\x6e\x64\x20\x74\x6f\x20\x70\x72\x6f\x76\ \x69\x64\x65\x20\x61\x20\x66\x72\x65\x65\x20\x61\x6e\x64\x20\x6f\ \x70\x65\x6e\x20\x66\x72\x61\x6d\x65\x77\x6f\x72\x6b\x20\x69\x6e\ \x20\x77\x68\x69\x63\x68\x20\x66\x6f\x6e\x74\x73\x20\x6d\x61\x79\ \x20\x62\x65\x20\x73\x68\x61\x72\x65\x64\x20\x61\x6e\x64\x20\x69\ \x6d\x70\x72\x6f\x76\x65\x64\x20\x69\x6e\x20\x70\x61\x72\x74\x6e\ \x65\x72\x73\x68\x69\x70\x20\x77\x69\x74\x68\x20\x6f\x74\x68\x65\ \x72\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4f\x46\x4c\x20\x61\ \x6c\x6c\x6f\x77\x73\x20\x74\x68\x65\x20\x6c\x69\x63\x65\x6e\x73\ \x65\x64\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x62\x65\x20\x75\ \x73\x65\x64\x2c\x20\x73\x74\x75\x64\x69\x65\x64\x2c\x20\x6d\x6f\ \x64\x69\x66\x69\x65\x64\x20\x61\x6e\x64\x20\x72\x65\x64\x69\x73\ \x74\x72\x69\x62\x75\x74\x65\x64\x20\x66\x72\x65\x65\x6c\x79\x20\ \x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\x73\x20\x74\x68\x65\x79\x20\ \x61\x72\x65\x20\x6e\x6f\x74\x20\x73\x6f\x6c\x64\x20\x62\x79\x20\ \x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x20\x54\x68\x65\x20\ \x66\x6f\x6e\x74\x73\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ \x20\x61\x6e\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\ \x77\x6f\x72\x6b\x73\x2c\x20\x63\x61\x6e\x20\x62\x65\x20\x62\x75\ \x6e\x64\x6c\x65\x64\x2c\x20\x65\x6d\x62\x65\x64\x64\x65\x64\x2c\ \x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x61\ \x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\x64\x20\x77\x69\x74\x68\x20\ \x61\x6e\x79\x20\x73\x6f\x66\x74\x77\x61\x72\x65\x20\x70\x72\x6f\ \x76\x69\x64\x65\x64\x20\x74\x68\x61\x74\x20\x61\x6e\x79\x20\x72\ \x65\x73\x65\x72\x76\x65\x64\x20\x6e\x61\x6d\x65\x73\x20\x61\x72\ \x65\x20\x6e\x6f\x74\x20\x75\x73\x65\x64\x20\x62\x79\x20\x64\x65\ \x72\x69\x76\x61\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x2e\x20\ \x54\x68\x65\x20\x66\x6f\x6e\x74\x73\x20\x61\x6e\x64\x20\x64\x65\ \x72\x69\x76\x61\x74\x69\x76\x65\x73\x2c\x20\x68\x6f\x77\x65\x76\ \x65\x72\x2c\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x72\x65\ \x6c\x65\x61\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x61\x6e\x79\ \x20\x6f\x74\x68\x65\x72\x20\x74\x79\x70\x65\x20\x6f\x66\x20\x6c\ \x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\x65\x20\x72\x65\x71\x75\ \x69\x72\x65\x6d\x65\x6e\x74\x20\x66\x6f\x72\x20\x66\x6f\x6e\x74\ \x73\x20\x74\x6f\x20\x72\x65\x6d\x61\x69\x6e\x20\x75\x6e\x64\x65\ \x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x64\ \x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\ \x20\x61\x6e\x79\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x63\x72\ \x65\x61\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\ \x66\x6f\x6e\x74\x73\x20\x6f\x72\x20\x74\x68\x65\x69\x72\x20\x64\ \x65\x72\x69\x76\x61\x74\x69\x76\x65\x73\x2e\x0d\x0a\x0d\x0a\x44\ \x45\x46\x49\x4e\x49\x54\x49\x4f\x4e\x53\x0d\x0a\x22\x46\x6f\x6e\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x22\x20\x72\x65\x66\x65\ \x72\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x65\x74\x20\x6f\x66\ \x20\x66\x69\x6c\x65\x73\x20\x72\x65\x6c\x65\x61\x73\x65\x64\x20\ \x62\x79\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\ \x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x75\x6e\x64\x65\x72\ \x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x61\x6e\ \x64\x20\x63\x6c\x65\x61\x72\x6c\x79\x20\x6d\x61\x72\x6b\x65\x64\ \x20\x61\x73\x20\x73\x75\x63\x68\x2e\x20\x54\x68\x69\x73\x20\x6d\ \x61\x79\x20\x69\x6e\x63\x6c\x75\x64\x65\x20\x73\x6f\x75\x72\x63\ \x65\x20\x66\x69\x6c\x65\x73\x2c\x20\x62\x75\x69\x6c\x64\x20\x73\ \x63\x72\x69\x70\x74\x73\x20\x61\x6e\x64\x20\x64\x6f\x63\x75\x6d\ \x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x22\x52\x65\ \x73\x65\x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\ \x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x6e\x61\x6d\x65\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\ \x61\x73\x20\x73\x75\x63\x68\x20\x61\x66\x74\x65\x72\x20\x74\x68\ \x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x73\x74\x61\x74\ \x65\x6d\x65\x6e\x74\x28\x73\x29\x2e\x0d\x0a\x0d\x0a\x22\x4f\x72\ \x69\x67\x69\x6e\x61\x6c\x20\x56\x65\x72\x73\x69\x6f\x6e\x22\x20\ \x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x6f\ \x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x46\x6f\x6e\x74\ \x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x63\x6f\x6d\x70\x6f\x6e\ \x65\x6e\x74\x73\x20\x61\x73\x20\x64\x69\x73\x74\x72\x69\x62\x75\ \x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x2e\x0d\ \x0a\x0d\x0a\x22\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\ \x73\x69\x6f\x6e\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\ \x61\x6e\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\x6d\ \x61\x64\x65\x20\x62\x79\x20\x61\x64\x64\x69\x6e\x67\x20\x74\x6f\ \x2c\x20\x64\x65\x6c\x65\x74\x69\x6e\x67\x2c\x20\x6f\x72\x20\x73\ \x75\x62\x73\x74\x69\x74\x75\x74\x69\x6e\x67\x20\x2d\x2d\x20\x69\ \x6e\x20\x70\x61\x72\x74\x20\x6f\x72\x20\x69\x6e\x20\x77\x68\x6f\ \x6c\x65\x20\x2d\x2d\x20\x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\ \x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ \x68\x65\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x2c\x20\x62\x79\x20\x63\x68\x61\x6e\x67\x69\x6e\x67\ \x20\x66\x6f\x72\x6d\x61\x74\x73\x20\x6f\x72\x20\x62\x79\x20\x70\ \x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x20\x74\x6f\x20\x61\x20\x6e\x65\ \x77\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0d\x0a\ \x0d\x0a\x22\x41\x75\x74\x68\x6f\x72\x22\x20\x72\x65\x66\x65\x72\ \x73\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x65\x73\x69\x67\x6e\x65\ \x72\x2c\x20\x65\x6e\x67\x69\x6e\x65\x65\x72\x2c\x20\x70\x72\x6f\ \x67\x72\x61\x6d\x6d\x65\x72\x2c\x20\x74\x65\x63\x68\x6e\x69\x63\ \x61\x6c\x20\x77\x72\x69\x74\x65\x72\x20\x6f\x72\x20\x6f\x74\x68\ \x65\x72\x20\x70\x65\x72\x73\x6f\x6e\x20\x77\x68\x6f\x20\x63\x6f\ \x6e\x74\x72\x69\x62\x75\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\ \x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2e\x0d\ \x0a\x0d\x0a\x50\x45\x52\x4d\x49\x53\x53\x49\x4f\x4e\x20\x26\x20\ \x43\x4f\x4e\x44\x49\x54\x49\x4f\x4e\x53\x0d\x0a\x50\x65\x72\x6d\ \x69\x73\x73\x69\x6f\x6e\x20\x69\x73\x20\x68\x65\x72\x65\x62\x79\ \x20\x67\x72\x61\x6e\x74\x65\x64\x2c\x20\x66\x72\x65\x65\x20\x6f\ \x66\x20\x63\x68\x61\x72\x67\x65\x2c\x20\x74\x6f\x20\x61\x6e\x79\ \x20\x70\x65\x72\x73\x6f\x6e\x20\x6f\x62\x74\x61\x69\x6e\x69\x6e\ \x67\x20\x61\x20\x63\x6f\x70\x79\x20\x6f\x66\x20\x74\x68\x65\x20\ \x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x74\ \x6f\x20\x75\x73\x65\x2c\x20\x73\x74\x75\x64\x79\x2c\x20\x63\x6f\ \x70\x79\x2c\x20\x6d\x65\x72\x67\x65\x2c\x20\x65\x6d\x62\x65\x64\ \x2c\x20\x6d\x6f\x64\x69\x66\x79\x2c\x20\x72\x65\x64\x69\x73\x74\ \x72\x69\x62\x75\x74\x65\x2c\x20\x61\x6e\x64\x20\x73\x65\x6c\x6c\ \x20\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x61\x6e\x64\x20\x75\x6e\ \x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x63\x6f\x70\x69\x65\x73\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x2c\x20\x73\x75\x62\x6a\x65\x63\x74\x20\x74\x6f\ \x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x63\ \x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\x3a\x0d\x0a\x0d\x0a\x31\x29\ \x20\x4e\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x20\x46\x6f\x6e\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6e\x6f\x72\x20\x61\ \x6e\x79\x20\x6f\x66\x20\x69\x74\x73\x20\x69\x6e\x64\x69\x76\x69\ \x64\x75\x61\x6c\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2c\ \x20\x69\x6e\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x6f\x72\x20\ \x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\ \x73\x2c\x20\x6d\x61\x79\x20\x62\x65\x20\x73\x6f\x6c\x64\x20\x62\ \x79\x20\x69\x74\x73\x65\x6c\x66\x2e\x0d\x0a\x0d\x0a\x32\x29\x20\ \x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x6f\x72\x20\x4d\x6f\x64\x69\ \x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x73\x20\x6f\x66\ \x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\ \x72\x65\x20\x6d\x61\x79\x20\x62\x65\x20\x62\x75\x6e\x64\x6c\x65\ \x64\x2c\x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\x64\x20\x77\x69\x74\ \x68\x20\x61\x6e\x79\x20\x73\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\ \x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x68\x61\x74\x20\x65\x61\ \x63\x68\x20\x63\x6f\x70\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\ \x20\x74\x68\x65\x20\x61\x62\x6f\x76\x65\x20\x63\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x6e\x6f\x74\x69\x63\x65\x20\x61\x6e\x64\x20\ \x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\ \x65\x73\x65\x20\x63\x61\x6e\x20\x62\x65\x20\x69\x6e\x63\x6c\x75\ \x64\x65\x64\x20\x65\x69\x74\x68\x65\x72\x20\x61\x73\x20\x73\x74\ \x61\x6e\x64\x2d\x61\x6c\x6f\x6e\x65\x20\x74\x65\x78\x74\x20\x66\ \x69\x6c\x65\x73\x2c\x20\x68\x75\x6d\x61\x6e\x2d\x72\x65\x61\x64\ \x61\x62\x6c\x65\x20\x68\x65\x61\x64\x65\x72\x73\x20\x6f\x72\x20\ \x69\x6e\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\ \x74\x65\x20\x6d\x61\x63\x68\x69\x6e\x65\x2d\x72\x65\x61\x64\x61\ \x62\x6c\x65\x20\x6d\x65\x74\x61\x64\x61\x74\x61\x20\x66\x69\x65\ \x6c\x64\x73\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x65\x78\x74\x20\ \x6f\x72\x20\x62\x69\x6e\x61\x72\x79\x20\x66\x69\x6c\x65\x73\x20\ \x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\x73\x20\x74\x68\x6f\x73\x65\ \x20\x66\x69\x65\x6c\x64\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\ \x61\x73\x69\x6c\x79\x20\x76\x69\x65\x77\x65\x64\x20\x62\x79\x20\ \x74\x68\x65\x20\x75\x73\x65\x72\x2e\x0d\x0a\x0d\x0a\x33\x29\x20\ \x4e\x6f\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6d\x61\x79\x20\x75\x73\x65\ \x20\x74\x68\x65\x20\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x28\x73\x29\x20\x75\x6e\x6c\x65\x73\ \x73\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x20\x77\x72\x69\x74\x74\ \x65\x6e\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x69\x73\ \x20\x67\x72\x61\x6e\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\ \x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x2e\x20\ \x54\x68\x69\x73\x20\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6f\x6e\ \x20\x6f\x6e\x6c\x79\x20\x61\x70\x70\x6c\x69\x65\x73\x20\x74\x6f\ \x20\x74\x68\x65\x20\x70\x72\x69\x6d\x61\x72\x79\x20\x66\x6f\x6e\ \x74\x20\x6e\x61\x6d\x65\x20\x61\x73\x20\x70\x72\x65\x73\x65\x6e\ \x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x73\x65\x72\x73\ \x2e\x0d\x0a\x0d\x0a\x34\x29\x20\x54\x68\x65\x20\x6e\x61\x6d\x65\ \x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x6f\ \x72\x20\x74\x68\x65\x20\x41\x75\x74\x68\x6f\x72\x28\x73\x29\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x20\x73\x68\x61\x6c\x6c\x20\x6e\x6f\x74\x20\x62\ \x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x70\x72\x6f\x6d\x6f\x74\ \x65\x2c\x20\x65\x6e\x64\x6f\x72\x73\x65\x20\x6f\x72\x20\x61\x64\ \x76\x65\x72\x74\x69\x73\x65\x20\x61\x6e\x79\x20\x4d\x6f\x64\x69\ \x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x2c\x20\x65\x78\ \x63\x65\x70\x74\x20\x74\x6f\x20\x61\x63\x6b\x6e\x6f\x77\x6c\x65\ \x64\x67\x65\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\ \x74\x69\x6f\x6e\x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x43\ \x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\ \x73\x29\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x41\x75\x74\x68\x6f\ \x72\x28\x73\x29\x20\x6f\x72\x20\x77\x69\x74\x68\x20\x74\x68\x65\ \x69\x72\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x20\x77\x72\x69\x74\ \x74\x65\x6e\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x2e\x0d\ \x0a\x0d\x0a\x35\x29\x20\x54\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\ \x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x6d\x6f\x64\x69\x66\x69\x65\ \x64\x20\x6f\x72\x20\x75\x6e\x6d\x6f\x64\x69\x66\x69\x65\x64\x2c\ \x20\x69\x6e\x20\x70\x61\x72\x74\x20\x6f\x72\x20\x69\x6e\x20\x77\ \x68\x6f\x6c\x65\x2c\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x64\x69\ \x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x65\x6e\x74\x69\x72\x65\ \x6c\x79\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\ \x63\x65\x6e\x73\x65\x2c\x20\x61\x6e\x64\x20\x6d\x75\x73\x74\x20\ \x6e\x6f\x74\x20\x62\x65\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\ \x65\x64\x20\x75\x6e\x64\x65\x72\x20\x61\x6e\x79\x20\x6f\x74\x68\ \x65\x72\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\x65\x20\ \x72\x65\x71\x75\x69\x72\x65\x6d\x65\x6e\x74\x20\x66\x6f\x72\x20\ \x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x6d\x61\x69\x6e\x20\ \x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\ \x73\x65\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x70\x70\x6c\ \x79\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x20\x63\x72\x65\x61\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\ \x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x2e\x0d\x0a\x0d\x0a\x54\x45\x52\x4d\x49\x4e\x41\x54\x49\x4f\ \x4e\x0d\x0a\x54\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\ \x62\x65\x63\x6f\x6d\x65\x73\x20\x6e\x75\x6c\x6c\x20\x61\x6e\x64\ \x20\x76\x6f\x69\x64\x20\x69\x66\x20\x61\x6e\x79\x20\x6f\x66\x20\ \x74\x68\x65\x20\x61\x62\x6f\x76\x65\x20\x63\x6f\x6e\x64\x69\x74\ \x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x6d\x65\x74\ \x2e\x0d\x0a\x0d\x0a\x44\x49\x53\x43\x4c\x41\x49\x4d\x45\x52\x0d\ \x0a\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\x41\ \x52\x45\x20\x49\x53\x20\x50\x52\x4f\x56\x49\x44\x45\x44\x20\x22\ \x41\x53\x20\x49\x53\x22\x2c\x20\x57\x49\x54\x48\x4f\x55\x54\x20\ \x57\x41\x52\x52\x41\x4e\x54\x59\x20\x4f\x46\x20\x41\x4e\x59\x20\ \x4b\x49\x4e\x44\x2c\x20\x45\x58\x50\x52\x45\x53\x53\x20\x4f\x52\ \x20\x49\x4d\x50\x4c\x49\x45\x44\x2c\x20\x49\x4e\x43\x4c\x55\x44\ \x49\x4e\x47\x20\x42\x55\x54\x20\x4e\x4f\x54\x20\x4c\x49\x4d\x49\ \x54\x45\x44\x20\x54\x4f\x20\x41\x4e\x59\x20\x57\x41\x52\x52\x41\ \x4e\x54\x49\x45\x53\x20\x4f\x46\x20\x4d\x45\x52\x43\x48\x41\x4e\ \x54\x41\x42\x49\x4c\x49\x54\x59\x2c\x20\x46\x49\x54\x4e\x45\x53\ \x53\x20\x46\x4f\x52\x20\x41\x20\x50\x41\x52\x54\x49\x43\x55\x4c\ \x41\x52\x20\x50\x55\x52\x50\x4f\x53\x45\x20\x41\x4e\x44\x20\x4e\ \x4f\x4e\x49\x4e\x46\x52\x49\x4e\x47\x45\x4d\x45\x4e\x54\x20\x4f\ \x46\x20\x43\x4f\x50\x59\x52\x49\x47\x48\x54\x2c\x20\x50\x41\x54\ \x45\x4e\x54\x2c\x20\x54\x52\x41\x44\x45\x4d\x41\x52\x4b\x2c\x20\ \x4f\x52\x20\x4f\x54\x48\x45\x52\x20\x52\x49\x47\x48\x54\x2e\x20\ \x49\x4e\x20\x4e\x4f\x20\x45\x56\x45\x4e\x54\x20\x53\x48\x41\x4c\ \x4c\x20\x54\x48\x45\x20\x43\x4f\x50\x59\x52\x49\x47\x48\x54\x20\ \x48\x4f\x4c\x44\x45\x52\x20\x42\x45\x20\x4c\x49\x41\x42\x4c\x45\ \x20\x46\x4f\x52\x20\x41\x4e\x59\x20\x43\x4c\x41\x49\x4d\x2c\x20\ \x44\x41\x4d\x41\x47\x45\x53\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\ \x20\x4c\x49\x41\x42\x49\x4c\x49\x54\x59\x2c\x20\x49\x4e\x43\x4c\ \x55\x44\x49\x4e\x47\x20\x41\x4e\x59\x20\x47\x45\x4e\x45\x52\x41\ \x4c\x2c\x20\x53\x50\x45\x43\x49\x41\x4c\x2c\x20\x49\x4e\x44\x49\ \x52\x45\x43\x54\x2c\x20\x49\x4e\x43\x49\x44\x45\x4e\x54\x41\x4c\ \x2c\x20\x4f\x52\x20\x43\x4f\x4e\x53\x45\x51\x55\x45\x4e\x54\x49\ \x41\x4c\x20\x44\x41\x4d\x41\x47\x45\x53\x2c\x20\x57\x48\x45\x54\ \x48\x45\x52\x20\x49\x4e\x20\x41\x4e\x20\x41\x43\x54\x49\x4f\x4e\ \x20\x4f\x46\x20\x43\x4f\x4e\x54\x52\x41\x43\x54\x2c\x20\x54\x4f\ \x52\x54\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\x57\x49\x53\x45\x2c\ \x20\x41\x52\x49\x53\x49\x4e\x47\x20\x46\x52\x4f\x4d\x2c\x20\x4f\ \x55\x54\x20\x4f\x46\x20\x54\x48\x45\x20\x55\x53\x45\x20\x4f\x52\ \x20\x49\x4e\x41\x42\x49\x4c\x49\x54\x59\x20\x54\x4f\x20\x55\x53\ \x45\x20\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\ \x41\x52\x45\x20\x4f\x52\x20\x46\x52\x4f\x4d\x20\x4f\x54\x48\x45\ \x52\x20\x44\x45\x41\x4c\x49\x4e\x47\x53\x20\x49\x4e\x20\x54\x48\ \x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\x41\x52\x45\x2e\ \x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\ \x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\x2f\x6c\x65\x67\x61\x6c\x2e\ \x68\x74\x6d\x6c\x54\x79\x70\x6f\x67\x72\x61\x70\x68\x69\x63\x20\ \x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x73\x41\x6c\x74\x65\x72\x6e\ \x61\x74\x65\x20\x61\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x67\ \x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x6f\x6c\x6c\x61\x72\ \x20\x73\x69\x67\x6e\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\ \x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x32\x00\x30\x00\x31\x00\ \x30\x00\x2c\x00\x20\x00\x32\x00\x30\x00\x31\x00\x32\x00\x20\x00\ \x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\x00\ \x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\x00\ \x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\x00\ \x65\x00\x64\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\ \x52\x00\x69\x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\ \x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x43\x00\ \x6f\x00\x64\x00\x65\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x52\x00\ \x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x31\x00\x2e\x00\ \x30\x00\x31\x00\x37\x00\x3b\x00\x41\x00\x44\x00\x42\x00\x45\x00\ \x3b\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\ \x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x52\x00\ \x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x3b\x00\x41\x00\ \x44\x00\x4f\x00\x42\x00\x45\x00\x56\x00\x65\x00\x72\x00\x73\x00\ \x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x31\x00\ \x37\x00\x3b\x00\x50\x00\x53\x00\x20\x00\x56\x00\x65\x00\x72\x00\ \x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\x00\ \x30\x00\x30\x00\x3b\x00\x68\x00\x6f\x00\x74\x00\x63\x00\x6f\x00\ \x6e\x00\x76\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x2e\x00\x37\x00\ \x30\x00\x3b\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6f\x00\x74\x00\ \x66\x00\x2e\x00\x6c\x00\x69\x00\x62\x00\x32\x00\x2e\x00\x35\x00\ \x2e\x00\x35\x00\x39\x00\x30\x00\x30\x00\x53\x00\x6f\x00\x75\x00\ \x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\ \x72\x00\x6f\x00\x2d\x00\x52\x00\x65\x00\x67\x00\x75\x00\x6c\x00\ \x61\x00\x72\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\ \x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\ \x61\x00\x64\x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\ \x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\ \x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\ \x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\ \x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\ \x72\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\ \x63\x00\x6f\x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\ \x73\x00\x2e\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\ \x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\ \x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\ \x61\x00\x74\x00\x65\x00\x64\x00\x50\x00\x61\x00\x75\x00\x6c\x00\ \x20\x00\x44\x00\x2e\x00\x20\x00\x48\x00\x75\x00\x6e\x00\x74\x00\ \x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\x00\ \x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\x00\ \x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x74\x00\x79\x00\x70\x00\ \x65\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\ \x20\x00\x32\x00\x30\x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\ \x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\ \x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\ \x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\ \x20\x00\x28\x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\ \x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\ \x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x29\x00\ \x2c\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\ \x65\x00\x20\x00\x27\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\ \x65\x00\x27\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\ \x52\x00\x69\x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\ \x20\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\ \x64\x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\ \x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\ \x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\ \x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\ \x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\ \x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\ \x6f\x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\ \x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\ \x73\x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\ \x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x49\x00\ \x4c\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\ \x6e\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x56\x00\x65\x00\x72\x00\ \x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x31\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\ \x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x6f\x00\ \x77\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\x00\ \x73\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x61\x00\ \x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ \x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\ \x46\x00\x41\x00\x51\x00\x20\x00\x61\x00\x74\x00\x3a\x00\x20\x00\ \x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x73\x00\ \x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\x2e\x00\x73\x00\ \x69\x00\x6c\x00\x2e\x00\x6f\x00\x72\x00\x67\x00\x2f\x00\x4f\x00\ \x46\x00\x4c\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x0d\x00\x0a\x00\x53\x00\x49\x00\x4c\x00\x20\x00\x4f\x00\ \x50\x00\x45\x00\x4e\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\ \x20\x00\x4c\x00\x49\x00\x43\x00\x45\x00\x4e\x00\x53\x00\x45\x00\ \x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x20\x00\x31\x00\x2e\x00\x31\x00\x20\x00\x2d\x00\x20\x00\x32\x00\ \x36\x00\x20\x00\x46\x00\x65\x00\x62\x00\x72\x00\x75\x00\x61\x00\ \x72\x00\x79\x00\x20\x00\x32\x00\x30\x00\x30\x00\x37\x00\x0d\x00\ \x0a\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x50\x00\x52\x00\x45\x00\x41\x00\x4d\x00\x42\x00\x4c\x00\x45\x00\ \x0d\x00\x0a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x67\x00\x6f\x00\ \x61\x00\x6c\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x28\x00\x4f\x00\x46\x00\ \x4c\x00\x29\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6d\x00\x75\x00\x6c\x00\ \x61\x00\x74\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6c\x00\ \x64\x00\x77\x00\x69\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\ \x76\x00\x65\x00\x6c\x00\x6f\x00\x70\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ \x6c\x00\x61\x00\x62\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ \x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ \x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x70\x00\ \x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\ \x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\ \x66\x00\x66\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x61\x00\x63\x00\x61\x00\x64\x00\x65\x00\x6d\x00\ \x69\x00\x63\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\ \x69\x00\x6e\x00\x67\x00\x75\x00\x69\x00\x73\x00\x74\x00\x69\x00\ \x63\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x75\x00\x6e\x00\ \x69\x00\x74\x00\x69\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x61\x00\ \x6e\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\ \x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x61\x00\x20\x00\ \x66\x00\x72\x00\x65\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x72\x00\ \x61\x00\x6d\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\ \x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\ \x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6d\x00\ \x61\x00\x79\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\ \x61\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x69\x00\x6d\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x65\x00\ \x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\ \x74\x00\x6e\x00\x65\x00\x72\x00\x73\x00\x68\x00\x69\x00\x70\x00\ \x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x74\x00\ \x68\x00\x65\x00\x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\ \x0a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x46\x00\x4c\x00\ \x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x73\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\ \x6e\x00\x73\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\ \x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\ \x74\x00\x75\x00\x64\x00\x69\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ \x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x64\x00\ \x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x6c\x00\ \x79\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\ \x67\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x79\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ \x74\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x73\x00\x65\x00\ \x6c\x00\x76\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x54\x00\x68\x00\ \x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\ \x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\ \x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\ \x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\ \x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2c\x00\ \x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x62\x00\x75\x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\ \x20\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x64\x00\x64\x00\x65\x00\ \x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\ \x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\ \x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\x00\ \x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\ \x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\ \x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x79\x00\ \x20\x00\x72\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\ \x64\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\ \x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ \x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\ \x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ \x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ \x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ \x65\x00\x76\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x63\x00\x61\x00\ \x6e\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x72\x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\ \x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\ \x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x65\x00\ \x71\x00\x75\x00\x69\x00\x72\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ \x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x72\x00\ \x65\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\ \x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ \x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\ \x20\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\ \x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\ \x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ \x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\ \x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ \x6f\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\ \x20\x00\x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\ \x69\x00\x76\x00\x65\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\ \x0a\x00\x44\x00\x45\x00\x46\x00\x49\x00\x4e\x00\x49\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x22\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\ \x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x74\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\ \x20\x00\x72\x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\ \x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\ \x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ \x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\ \x61\x00\x6e\x00\x64\x00\x20\x00\x63\x00\x6c\x00\x65\x00\x61\x00\ \x72\x00\x6c\x00\x79\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\ \x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\ \x63\x00\x68\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\ \x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ \x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x75\x00\ \x72\x00\x63\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\ \x73\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ \x20\x00\x73\x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x63\x00\ \x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\ \x52\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\ \x6d\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\ \x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\ \x79\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\ \x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x65\x00\ \x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\ \x68\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\ \x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x73\x00\x74\x00\ \x61\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x28\x00\ \x73\x00\x29\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\ \x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\ \x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ \x63\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x46\x00\x6f\x00\ \x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\ \x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ \x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\ \x73\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\ \x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\ \x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\x00\ \x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\ \x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\ \x20\x00\x6d\x00\x61\x00\x64\x00\x65\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x61\x00\x64\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ \x74\x00\x6f\x00\x2c\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x65\x00\ \x74\x00\x69\x00\x6e\x00\x67\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\ \x20\x00\x73\x00\x75\x00\x62\x00\x73\x00\x74\x00\x69\x00\x74\x00\ \x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x2d\x00\ \x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ \x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\ \x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\ \x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ \x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x72\x00\x69\x00\ \x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\x00\x65\x00\ \x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x63\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x69\x00\ \x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ \x74\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\ \x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\ \x6e\x00\x65\x00\x77\x00\x20\x00\x65\x00\x6e\x00\x76\x00\x69\x00\ \x72\x00\x6f\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\ \x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x41\x00\x75\x00\x74\x00\ \x68\x00\x6f\x00\x72\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\ \x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x67\x00\ \x6e\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x67\x00\ \x69\x00\x6e\x00\x65\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x70\x00\ \x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\ \x72\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6e\x00\ \x69\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x77\x00\x72\x00\x69\x00\ \x74\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x70\x00\x65\x00\x72\x00\ \x73\x00\x6f\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\x00\x20\x00\ \x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ \x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x45\x00\x52\x00\ \x4d\x00\x49\x00\x53\x00\x53\x00\x49\x00\x4f\x00\x4e\x00\x20\x00\ \x26\x00\x20\x00\x43\x00\x4f\x00\x4e\x00\x44\x00\x49\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x50\x00\x65\x00\ \x72\x00\x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x20\x00\x69\x00\x73\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\ \x62\x00\x79\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ \x65\x00\x64\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\ \x20\x00\x6f\x00\x66\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ \x67\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\x00\ \x6e\x00\x20\x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\x6e\x00\ \x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ \x70\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\ \x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x2c\x00\ \x20\x00\x73\x00\x74\x00\x75\x00\x64\x00\x79\x00\x2c\x00\x20\x00\ \x63\x00\x6f\x00\x70\x00\x79\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\ \x72\x00\x67\x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6d\x00\x62\x00\ \x65\x00\x64\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ \x66\x00\x79\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\ \x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\ \x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\ \x6c\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ \x75\x00\x6e\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ \x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ \x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ \x73\x00\x75\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\ \x6f\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x73\x00\x3a\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x31\x00\x29\x00\x20\x00\x4e\x00\x65\x00\x69\x00\x74\x00\x68\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ \x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ \x69\x00\x74\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ \x76\x00\x69\x00\x64\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x63\x00\ \x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ \x73\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x72\x00\ \x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ \x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\ \x6f\x00\x6e\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\ \x20\x00\x62\x00\x79\x00\x20\x00\x69\x00\x74\x00\x73\x00\x65\x00\ \x6c\x00\x66\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x32\x00\ \x29\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\ \x61\x00\x6c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x64\x00\ \x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\ \x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\ \x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\ \x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\ \x73\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\ \x2c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\ \x65\x00\x64\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\ \x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x79\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\ \x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\ \x62\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6e\x00\ \x6f\x00\x74\x00\x69\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ \x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\ \x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\ \x54\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\x00\x63\x00\x61\x00\ \x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ \x6c\x00\x75\x00\x64\x00\x65\x00\x64\x00\x20\x00\x65\x00\x69\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\ \x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x2d\x00\x61\x00\x6c\x00\ \x6f\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\ \x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\ \x68\x00\x75\x00\x6d\x00\x61\x00\x6e\x00\x2d\x00\x72\x00\x65\x00\ \x61\x00\x64\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x68\x00\ \x65\x00\x61\x00\x64\x00\x65\x00\x72\x00\x73\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x61\x00\x70\x00\x70\x00\x72\x00\x6f\x00\x70\x00\x72\x00\ \x69\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x63\x00\ \x68\x00\x69\x00\x6e\x00\x65\x00\x2d\x00\x72\x00\x65\x00\x61\x00\ \x64\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\ \x74\x00\x61\x00\x64\x00\x61\x00\x74\x00\x61\x00\x20\x00\x66\x00\ \x69\x00\x65\x00\x6c\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\x00\ \x74\x00\x68\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\ \x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x69\x00\x6e\x00\ \x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\ \x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\ \x67\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x6f\x00\ \x73\x00\x65\x00\x20\x00\x66\x00\x69\x00\x65\x00\x6c\x00\x64\x00\ \x73\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\ \x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\ \x65\x00\x72\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x33\x00\ \x29\x00\x20\x00\x4e\x00\x6f\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\ \x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\ \x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\ \x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x75\x00\ \x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\ \x65\x00\x28\x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x6c\x00\ \x65\x00\x73\x00\x73\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\ \x69\x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\ \x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\ \x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x73\x00\ \x70\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ \x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\ \x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\ \x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x63\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\ \x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x73\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\ \x72\x00\x69\x00\x6d\x00\x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\ \x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\ \x65\x00\x6e\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ \x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x34\x00\ \x29\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x61\x00\ \x6d\x00\x65\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\ \x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\ \x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ \x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\ \x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x73\x00\ \x68\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\ \x6f\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x64\x00\ \x6f\x00\x72\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ \x61\x00\x64\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x73\x00\ \x65\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\ \x65\x00\x78\x00\x63\x00\x65\x00\x70\x00\x74\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x61\x00\x63\x00\x6b\x00\x6e\x00\x6f\x00\x77\x00\ \x6c\x00\x65\x00\x64\x00\x67\x00\x65\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\ \x62\x00\x75\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x28\x00\x73\x00\ \x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\ \x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\x00\x74\x00\ \x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x65\x00\x78\x00\x70\x00\ \x6c\x00\x69\x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\ \x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\ \x72\x00\x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x35\x00\x29\x00\x20\x00\ \x54\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\ \x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\ \x65\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x75\x00\ \x6e\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\ \x64\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\ \x72\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\ \x20\x00\x77\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\ \x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ \x72\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ \x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2c\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ \x74\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\ \x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\x00\ \x65\x00\x20\x00\x72\x00\x65\x00\x71\x00\x75\x00\x69\x00\x72\x00\ \x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ \x72\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x61\x00\x69\x00\ \x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ \x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x65\x00\ \x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x70\x00\ \x70\x00\x6c\x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ \x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\ \x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\ \x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\ \x61\x00\x72\x00\x65\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x54\x00\x45\x00\x52\x00\x4d\x00\x49\x00\x4e\x00\x41\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\ \x65\x00\x20\x00\x62\x00\x65\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\ \x73\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\ \x6e\x00\x64\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\ \x69\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\ \x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\ \x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6d\x00\ \x65\x00\x74\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\x00\ \x49\x00\x53\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x45\x00\ \x52\x00\x0d\x00\x0a\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\ \x4f\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\ \x57\x00\x41\x00\x52\x00\x45\x00\x20\x00\x49\x00\x53\x00\x20\x00\ \x50\x00\x52\x00\x4f\x00\x56\x00\x49\x00\x44\x00\x45\x00\x44\x00\ \x20\x00\x22\x00\x41\x00\x53\x00\x20\x00\x49\x00\x53\x00\x22\x00\ \x2c\x00\x20\x00\x57\x00\x49\x00\x54\x00\x48\x00\x4f\x00\x55\x00\ \x54\x00\x20\x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\x00\x4e\x00\ \x54\x00\x59\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x41\x00\x4e\x00\ \x59\x00\x20\x00\x4b\x00\x49\x00\x4e\x00\x44\x00\x2c\x00\x20\x00\ \x45\x00\x58\x00\x50\x00\x52\x00\x45\x00\x53\x00\x53\x00\x20\x00\ \x4f\x00\x52\x00\x20\x00\x49\x00\x4d\x00\x50\x00\x4c\x00\x49\x00\ \x45\x00\x44\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\x00\ \x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\x42\x00\x55\x00\ \x54\x00\x20\x00\x4e\x00\x4f\x00\x54\x00\x20\x00\x4c\x00\x49\x00\ \x4d\x00\x49\x00\x54\x00\x45\x00\x44\x00\x20\x00\x54\x00\x4f\x00\ \x20\x00\x41\x00\x4e\x00\x59\x00\x20\x00\x57\x00\x41\x00\x52\x00\ \x52\x00\x41\x00\x4e\x00\x54\x00\x49\x00\x45\x00\x53\x00\x20\x00\ \x4f\x00\x46\x00\x20\x00\x4d\x00\x45\x00\x52\x00\x43\x00\x48\x00\ \x41\x00\x4e\x00\x54\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\x00\ \x54\x00\x59\x00\x2c\x00\x20\x00\x46\x00\x49\x00\x54\x00\x4e\x00\ \x45\x00\x53\x00\x53\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\ \x41\x00\x20\x00\x50\x00\x41\x00\x52\x00\x54\x00\x49\x00\x43\x00\ \x55\x00\x4c\x00\x41\x00\x52\x00\x20\x00\x50\x00\x55\x00\x52\x00\ \x50\x00\x4f\x00\x53\x00\x45\x00\x20\x00\x41\x00\x4e\x00\x44\x00\ \x20\x00\x4e\x00\x4f\x00\x4e\x00\x49\x00\x4e\x00\x46\x00\x52\x00\ \x49\x00\x4e\x00\x47\x00\x45\x00\x4d\x00\x45\x00\x4e\x00\x54\x00\ \x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\x50\x00\x59\x00\ \x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x2c\x00\x20\x00\x50\x00\ \x41\x00\x54\x00\x45\x00\x4e\x00\x54\x00\x2c\x00\x20\x00\x54\x00\ \x52\x00\x41\x00\x44\x00\x45\x00\x4d\x00\x41\x00\x52\x00\x4b\x00\ \x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\ \x45\x00\x52\x00\x20\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\ \x2e\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x4e\x00\x4f\x00\x20\x00\ \x45\x00\x56\x00\x45\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x48\x00\ \x41\x00\x4c\x00\x4c\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\ \x43\x00\x4f\x00\x50\x00\x59\x00\x52\x00\x49\x00\x47\x00\x48\x00\ \x54\x00\x20\x00\x48\x00\x4f\x00\x4c\x00\x44\x00\x45\x00\x52\x00\ \x20\x00\x42\x00\x45\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\ \x4c\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\ \x4e\x00\x59\x00\x20\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\ \x2c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\x00\x45\x00\ \x53\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\ \x45\x00\x52\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x49\x00\ \x4c\x00\x49\x00\x54\x00\x59\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\ \x43\x00\x4c\x00\x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\ \x41\x00\x4e\x00\x59\x00\x20\x00\x47\x00\x45\x00\x4e\x00\x45\x00\ \x52\x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x53\x00\x50\x00\x45\x00\ \x43\x00\x49\x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\ \x44\x00\x49\x00\x52\x00\x45\x00\x43\x00\x54\x00\x2c\x00\x20\x00\ \x49\x00\x4e\x00\x43\x00\x49\x00\x44\x00\x45\x00\x4e\x00\x54\x00\ \x41\x00\x4c\x00\x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x43\x00\ \x4f\x00\x4e\x00\x53\x00\x45\x00\x51\x00\x55\x00\x45\x00\x4e\x00\ \x54\x00\x49\x00\x41\x00\x4c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\ \x41\x00\x47\x00\x45\x00\x53\x00\x2c\x00\x20\x00\x57\x00\x48\x00\ \x45\x00\x54\x00\x48\x00\x45\x00\x52\x00\x20\x00\x49\x00\x4e\x00\ \x20\x00\x41\x00\x4e\x00\x20\x00\x41\x00\x43\x00\x54\x00\x49\x00\ \x4f\x00\x4e\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\ \x4e\x00\x54\x00\x52\x00\x41\x00\x43\x00\x54\x00\x2c\x00\x20\x00\ \x54\x00\x4f\x00\x52\x00\x54\x00\x20\x00\x4f\x00\x52\x00\x20\x00\ \x4f\x00\x54\x00\x48\x00\x45\x00\x52\x00\x57\x00\x49\x00\x53\x00\ \x45\x00\x2c\x00\x20\x00\x41\x00\x52\x00\x49\x00\x53\x00\x49\x00\ \x4e\x00\x47\x00\x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x2c\x00\ \x20\x00\x4f\x00\x55\x00\x54\x00\x20\x00\x4f\x00\x46\x00\x20\x00\ \x54\x00\x48\x00\x45\x00\x20\x00\x55\x00\x53\x00\x45\x00\x20\x00\ \x4f\x00\x52\x00\x20\x00\x49\x00\x4e\x00\x41\x00\x42\x00\x49\x00\ \x4c\x00\x49\x00\x54\x00\x59\x00\x20\x00\x54\x00\x4f\x00\x20\x00\ \x55\x00\x53\x00\x45\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\ \x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\ \x54\x00\x57\x00\x41\x00\x52\x00\x45\x00\x20\x00\x4f\x00\x52\x00\ \x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x20\x00\x4f\x00\x54\x00\ \x48\x00\x45\x00\x52\x00\x20\x00\x44\x00\x45\x00\x41\x00\x4c\x00\ \x49\x00\x4e\x00\x47\x00\x53\x00\x20\x00\x49\x00\x4e\x00\x20\x00\ \x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\ \x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\x00\x52\x00\ \x45\x00\x2e\x00\x0d\x00\x0a\x00\x68\x00\x74\x00\x74\x00\x70\x00\ \x3a\x00\x2f\x00\x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\ \x64\x00\x6f\x00\x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\ \x2f\x00\x74\x00\x79\x00\x70\x00\x65\x00\x2f\x00\x6c\x00\x65\x00\ \x67\x00\x61\x00\x6c\x00\x2e\x00\x68\x00\x74\x00\x6d\x00\x6c\x00\ \x54\x00\x79\x00\x70\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x70\x00\ \x68\x00\x69\x00\x63\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\ \x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x73\x00\x41\x00\x6c\x00\ \x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\ \x61\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ \x74\x00\x65\x00\x20\x00\x67\x00\x41\x00\x6c\x00\x74\x00\x65\x00\ \x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ \x6c\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x73\x00\x69\x00\x67\x00\ \x6e\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\xff\xb5\x00\x32\x00\ \x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x03\xc5\x00\x00\x01\x02\x01\x03\x00\x03\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\ \x3d\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\ \x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\ \x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\ \x5b\x00\x5c\x00\x5d\x00\xad\x00\xc9\x00\xc7\x00\xae\x00\x62\x01\ \x04\x01\x05\x00\x63\x01\x06\x01\x07\x01\x08\x01\x09\x01\x0a\x01\ \x0b\x01\x0c\x01\x0d\x01\x0e\x01\x0f\x01\x10\x01\x11\x01\x12\x01\ \x13\x00\x90\x01\x14\x00\x64\x00\xfd\x01\x15\x00\xff\x01\x16\x01\ \x17\x01\x18\x01\x19\x01\x1a\x00\xcb\x00\x65\x00\xc8\x01\x1b\x00\ \xca\x01\x1c\x01\x1d\x01\x1e\x01\x1f\x01\x20\x01\x21\x01\x22\x01\ \x23\x01\x24\x01\x25\x01\x26\x01\x27\x01\x28\x00\xf8\x01\x29\x01\ \x2a\x01\x2b\x01\x2c\x01\x2d\x01\x2e\x01\x2f\x01\x30\x01\x31\x00\ \xcf\x00\xcc\x00\xcd\x01\x32\x00\xce\x01\x33\x01\x34\x00\xfa\x01\ \x35\x01\x36\x01\x37\x01\x38\x01\x39\x01\x3a\x01\x3b\x01\x3c\x01\ \x3d\x01\x3e\x01\x3f\x01\x40\x01\x41\x00\xe2\x01\x42\x01\x43\x01\ \x44\x00\x66\x01\x45\x01\x46\x01\x47\x01\x48\x00\xd3\x00\xd0\x00\ \xd1\x00\xaf\x00\x67\x01\x49\x01\x4a\x01\x4b\x01\x4c\x01\x4d\x01\ \x4e\x01\x4f\x01\x50\x01\x51\x01\x52\x01\x53\x00\x91\x00\xb0\x01\ \x54\x01\x55\x01\x56\x01\x57\x01\x58\x01\x59\x01\x5a\x01\x5b\x01\ \x5c\x01\x5d\x01\x5e\x01\x5f\x01\x60\x01\x61\x01\x62\x00\xe4\x01\ \x63\x01\x64\x01\x65\x01\x66\x01\x67\x01\x68\x01\x69\x01\x6a\x01\ \x6b\x01\x6c\x00\xd6\x00\xd4\x00\xd5\x01\x6d\x00\x68\x01\x6e\x01\ \x6f\x01\x70\x01\x71\x01\x72\x01\x73\x01\x74\x01\x75\x01\x76\x01\ \x77\x01\x78\x01\x79\x01\x7a\x01\x7b\x01\x7c\x01\x7d\x01\x7e\x01\ \x7f\x01\x80\x01\x81\x01\x82\x01\x83\x01\x84\x00\xeb\x01\x85\x00\ \xbb\x01\x86\x01\x87\x01\x88\x01\x89\x01\x8a\x00\xe6\x01\x8b\x01\ \x8c\x00\xe9\x00\xed\x01\x8d\x00\x6a\x00\x69\x00\x6b\x00\x6d\x00\ \x6c\x01\x8e\x01\x8f\x00\x6e\x01\x90\x01\x91\x01\x92\x01\x93\x01\ \x94\x01\x95\x01\x96\x01\x97\x01\x98\x01\x99\x01\x9a\x01\x9b\x01\ \x9c\x01\x9d\x00\xa0\x01\x9e\x00\x6f\x00\xfe\x01\x9f\x01\x00\x01\ \xa0\x01\xa1\x01\xa2\x01\xa3\x01\x01\x00\x71\x00\x70\x00\x72\x01\ \xa4\x00\x73\x01\xa5\x01\xa6\x01\xa7\x01\xa8\x01\xa9\x01\xaa\x01\ \xab\x01\xac\x01\xad\x01\xae\x01\xaf\x01\xb0\x01\xb1\x00\xf9\x01\ \xb2\x01\xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\ \xba\x00\x75\x00\x74\x00\x76\x01\xbb\x00\x77\x01\xbc\x01\xbd\x01\ \xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x00\xd7\x01\xc3\x01\xc4\x01\ \xc5\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\xcc\x00\ \xe3\x01\xcd\x01\xce\x01\xcf\x00\x78\x01\xd0\x01\xd1\x01\xd2\x01\ \xd3\x01\xd4\x00\x7a\x00\x79\x00\x7b\x00\x7d\x00\x7c\x01\xd5\x01\ \xd6\x01\xd7\x01\xd8\x01\xd9\x01\xda\x01\xdb\x01\xdc\x01\xdd\x01\ \xde\x01\xdf\x00\xa1\x00\xb1\x01\xe0\x01\xe1\x01\xe2\x01\xe3\x01\ \xe4\x01\xe5\x01\xe6\x01\xe7\x01\xe8\x01\xe9\x01\xea\x01\xeb\x01\ \xec\x01\xed\x01\xee\x00\xe5\x01\xef\x01\xf0\x01\xf1\x01\xf2\x00\ \x89\x01\xf3\x01\xf4\x01\xf5\x01\xf6\x01\xf7\x01\xf8\x00\x7f\x00\ \x7e\x00\x80\x01\xf9\x00\x81\x01\xfa\x01\xfb\x01\xfc\x01\xfd\x01\ \xfe\x01\xff\x02\x00\x02\x01\x02\x02\x02\x03\x02\x04\x02\x05\x02\ \x06\x02\x07\x02\x08\x02\x09\x02\x0a\x02\x0b\x02\x0c\x02\x0d\x02\ \x0e\x02\x0f\x02\x10\x00\xec\x02\x11\x00\xba\x02\x12\x02\x13\x02\ \x14\x02\x15\x02\x16\x00\xe7\x02\x17\x02\x18\x00\xea\x00\xee\x02\ \x19\x02\x1a\x02\x1b\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\ \x21\x02\x22\x02\x23\x02\x24\x02\x25\x02\x26\x02\x27\x02\x28\x00\ \xc0\x00\xc1\x02\x29\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\ \x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x34\x02\x35\x02\x36\x02\ \x37\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\ \x3f\x02\x40\x02\x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\x46\x02\ \x47\x00\x09\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\ \x19\x00\x1a\x00\x1b\x00\x1c\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\ \x4c\x02\x4d\x02\x4e\x02\x4f\x02\x50\x02\x51\x00\x11\x00\x0f\x00\ \x1d\x00\x1e\x00\xab\x00\x04\x00\xa3\x00\x22\x00\xa2\x00\x0a\x00\ \x05\x00\xb6\x00\xb7\x00\xb4\x00\xb5\x00\xc4\x00\xc5\x00\xbe\x00\ \xbf\x00\xa9\x00\xaa\x00\x10\x02\x52\x00\xb2\x00\xb3\x02\x53\x02\ \x54\x00\xc3\x00\x87\x00\x42\x00\x0b\x00\x0c\x00\x3e\x00\x40\x00\ \x5e\x00\x60\x00\x12\x00\x5f\x00\x3f\x00\xe8\x00\x0d\x00\x82\x00\ \xc2\x00\x86\x00\x88\x00\x8b\x02\x55\x00\x8a\x00\x8c\x02\x56\x00\ \x23\x02\x57\x00\x06\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\ \x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\ \x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\x73\x02\x74\x02\ \x75\x02\x76\x02\x77\x02\x78\x02\x79\x02\x7a\x02\x7b\x02\x7c\x02\ \x7d\x02\x7e\x02\x7f\x02\x80\x02\x81\x02\x82\x02\x83\x02\x84\x02\ \x85\x02\x86\x02\x87\x02\x88\x02\x89\x02\x8a\x02\x8b\x02\x8c\x02\ \x8d\x02\x8e\x02\x8f\x02\x90\x02\x91\x02\x92\x02\x93\x00\x9d\x02\ \x94\x00\x9e\x02\x95\x02\x96\x02\x97\x02\x98\x02\x99\x02\x9a\x02\ \x9b\x02\x9c\x02\x9d\x02\x9e\x02\x9f\x02\xa0\x02\xa1\x02\xa2\x02\ \xa3\x02\xa4\x02\xa5\x02\xa6\x02\xa7\x02\xa8\x02\xa9\x02\xaa\x02\ \xab\x02\xac\x02\xad\x02\xae\x02\xaf\x02\xb0\x02\xb1\x02\xb2\x02\ \xb3\x00\x83\x00\xbd\x00\x07\x00\x85\x00\x96\x02\xb4\x00\x84\x02\ \xb5\x02\xb6\x02\xb7\x02\xb8\x02\xb9\x02\xba\x02\xbb\x02\xbc\x02\ \xbd\x02\xbe\x02\xbf\x00\xbc\x02\xc0\x02\xc1\x00\x08\x00\xc6\x00\ \xf5\x00\xf4\x00\xf6\x02\xc2\x02\xc3\x02\xc4\x02\xc5\x02\xc6\x02\ \xc7\x00\x0e\x00\xef\x00\xf0\x00\xb8\x02\xc8\x00\x20\x00\x1f\x00\ \x21\x00\x94\x00\x95\x00\x93\x00\x41\x00\x8f\x00\x61\x00\xa7\x00\ \xa4\x00\x9b\x00\x92\x02\xc9\x00\x98\x00\x9c\x00\xa5\x02\xca\x02\ \xcb\x00\x99\x00\x9a\x02\xcc\x02\xcd\x02\xce\x02\xcf\x02\xd0\x02\ \xd1\x02\xd2\x02\xd3\x02\xd4\x02\xd5\x02\xd6\x02\xd7\x02\xd8\x02\ \xd9\x02\xda\x02\xdb\x02\xdc\x02\xdd\x02\xde\x02\xdf\x02\xe0\x02\ \xe1\x00\xb9\x02\xe2\x02\xe3\x02\xe4\x02\xe5\x02\xe6\x02\xe7\x00\ \x43\x00\x8d\x00\xd8\x00\xe1\x02\xe8\x02\xe9\x02\xea\x02\xeb\x02\ \xec\x00\xd9\x00\x8e\x00\xda\x00\xdb\x00\xdd\x00\xdf\x00\xdc\x00\ \xde\x00\xe0\x02\xed\x02\xee\x02\xef\x02\xf0\x02\xf1\x02\xf2\x02\ \xf3\x02\xf4\x02\xf5\x02\xf6\x02\xf7\x02\xf8\x02\xf9\x02\xfa\x02\ \xfb\x02\xfc\x02\xfd\x02\xfe\x02\xff\x03\x00\x03\x01\x03\x02\x03\ \x03\x03\x04\x03\x05\x03\x06\x03\x07\x03\x08\x03\x09\x03\x0a\x03\ \x0b\x03\x0c\x03\x0d\x03\x0e\x03\x0f\x03\x10\x03\x11\x03\x12\x03\ \x13\x03\x14\x03\x15\x03\x16\x03\x17\x03\x18\x03\x19\x03\x1a\x03\ \x1b\x03\x1c\x03\x1d\x03\x1e\x03\x1f\x03\x20\x03\x21\x03\x22\x03\ \x23\x03\x24\x03\x25\x03\x26\x03\x27\x03\x28\x03\x29\x03\x2a\x03\ \x2b\x03\x2c\x03\x2d\x03\x2e\x03\x2f\x03\x30\x03\x31\x03\x32\x03\ \x33\x03\x34\x03\x35\x03\x36\x03\x37\x03\x38\x03\x39\x03\x3a\x03\ \x3b\x03\x3c\x03\x3d\x03\x3e\x03\x3f\x03\x40\x03\x41\x03\x42\x03\ \x43\x03\x44\x03\x45\x03\x46\x03\x47\x03\x48\x03\x49\x03\x4a\x03\ \x4b\x03\x4c\x03\x4d\x03\x4e\x03\x4f\x03\x50\x03\x51\x03\x52\x03\ \x53\x03\x54\x03\x55\x03\x56\x03\x57\x03\x58\x03\x59\x03\x5a\x03\ \x5b\x03\x5c\x03\x5d\x03\x5e\x03\x5f\x03\x60\x03\x61\x03\x62\x03\ \x63\x03\x64\x03\x65\x03\x66\x03\x67\x03\x68\x03\x69\x03\x6a\x03\ \x6b\x03\x6c\x03\x6d\x03\x6e\x03\x6f\x03\x70\x03\x71\x03\x72\x03\ \x73\x03\x74\x03\x75\x03\x76\x03\x77\x03\x78\x03\x79\x03\x7a\x03\ \x7b\x03\x7c\x03\x7d\x03\x7e\x03\x7f\x03\x80\x03\x81\x03\x82\x03\ \x83\x03\x84\x03\x85\x03\x86\x03\x87\x03\x88\x03\x89\x03\x8a\x03\ \x8b\x03\x8c\x03\x8d\x03\x8e\x03\x8f\x03\x90\x03\x91\x03\x92\x03\ \x93\x03\x94\x03\x95\x03\x96\x03\x97\x03\x98\x03\x99\x03\x9a\x03\ \x9b\x03\x9c\x03\x9d\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa2\x03\ \xa3\x03\xa4\x03\xa5\x03\xa6\x03\xa7\x03\xa8\x03\xa9\x03\xaa\x03\ \xab\x03\xac\x03\xad\x03\xae\x03\xaf\x03\xb0\x03\xb1\x03\xb2\x03\ \xb3\x03\xb4\x03\xb5\x03\xb6\x03\xb7\x03\xb8\x03\xb9\x03\xba\x03\ \xbb\x03\xbc\x03\xbd\x03\xbe\x03\xbf\x03\xc0\x03\xc1\x03\xc2\x03\ \xc3\x03\xc4\x03\xc5\x03\xc6\x03\xc7\x03\xc8\x03\xc9\x03\xca\x03\ \xcb\x03\xcc\x03\xcd\x03\xce\x03\xcf\x03\xd0\x03\xd1\x03\xd2\x04\ \x4e\x55\x4c\x4c\x02\x43\x52\x07\x41\x6d\x61\x63\x72\x6f\x6e\x06\ \x41\x62\x72\x65\x76\x65\x07\x75\x6e\x69\x30\x31\x43\x44\x07\x75\ \x6e\x69\x31\x45\x41\x30\x07\x75\x6e\x69\x31\x45\x41\x32\x07\x75\ \x6e\x69\x31\x45\x41\x34\x07\x75\x6e\x69\x31\x45\x41\x36\x07\x75\ \x6e\x69\x31\x45\x41\x38\x07\x75\x6e\x69\x31\x45\x41\x41\x07\x75\ \x6e\x69\x31\x45\x41\x43\x07\x75\x6e\x69\x31\x45\x41\x45\x07\x75\ \x6e\x69\x31\x45\x42\x30\x07\x75\x6e\x69\x31\x45\x42\x32\x07\x75\ \x6e\x69\x31\x45\x42\x34\x07\x75\x6e\x69\x31\x45\x42\x36\x07\x41\ \x6f\x67\x6f\x6e\x65\x6b\x07\x75\x6e\x69\x30\x32\x34\x33\x0b\x43\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x43\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x06\x44\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x31\x45\x30\x43\x07\x75\x6e\x69\x31\x45\x30\x45\x06\x44\x63\x72\ \x6f\x61\x74\x06\x45\x63\x61\x72\x6f\x6e\x07\x45\x6d\x61\x63\x72\ \x6f\x6e\x06\x45\x62\x72\x65\x76\x65\x0a\x45\x64\x6f\x74\x61\x63\ \x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x38\x07\x75\x6e\x69\ \x31\x45\x42\x41\x07\x75\x6e\x69\x31\x45\x42\x43\x07\x75\x6e\x69\ \x31\x45\x42\x45\x07\x75\x6e\x69\x31\x45\x43\x30\x07\x75\x6e\x69\ \x31\x45\x43\x32\x07\x75\x6e\x69\x31\x45\x43\x34\x07\x75\x6e\x69\ \x31\x45\x43\x36\x07\x45\x6f\x67\x6f\x6e\x65\x6b\x0b\x47\x63\x69\ \x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x47\x64\x6f\x74\x61\x63\x63\ \x65\x6e\x74\x07\x75\x6e\x69\x30\x31\x32\x32\x06\x47\x63\x61\x72\ \x6f\x6e\x07\x75\x6e\x69\x31\x45\x32\x30\x0b\x75\x6e\x69\x30\x30\ \x34\x37\x30\x33\x30\x33\x0b\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x07\x75\x6e\x69\x31\x45\x32\x34\x07\x75\x6e\x69\x31\x45\ \x32\x41\x04\x48\x62\x61\x72\x06\x49\x74\x69\x6c\x64\x65\x07\x49\ \x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x43\x07\x75\ \x6e\x69\x30\x31\x43\x46\x07\x75\x6e\x69\x31\x45\x43\x38\x07\x75\ \x6e\x69\x31\x45\x43\x41\x07\x49\x6f\x67\x6f\x6e\x65\x6b\x0b\x4a\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\ \x33\x36\x06\x4c\x61\x63\x75\x74\x65\x06\x4c\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x30\x31\x33\x42\x04\x4c\x64\x6f\x74\x07\x75\x6e\ \x69\x31\x45\x33\x36\x07\x75\x6e\x69\x31\x45\x33\x38\x07\x75\x6e\ \x69\x31\x45\x33\x41\x07\x75\x6e\x69\x31\x45\x34\x32\x06\x4e\x61\ \x63\x75\x74\x65\x06\x4e\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\ \x31\x34\x35\x07\x75\x6e\x69\x31\x45\x34\x34\x07\x75\x6e\x69\x31\ \x45\x34\x36\x07\x75\x6e\x69\x31\x45\x34\x38\x07\x4f\x6d\x61\x63\ \x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x45\x0d\x4f\x68\x75\x6e\ \x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\ \x31\x07\x75\x6e\x69\x31\x45\x43\x43\x07\x75\x6e\x69\x31\x45\x43\ \x45\x07\x75\x6e\x69\x31\x45\x44\x30\x07\x75\x6e\x69\x31\x45\x44\ \x32\x07\x75\x6e\x69\x31\x45\x44\x34\x07\x75\x6e\x69\x31\x45\x44\ \x36\x07\x75\x6e\x69\x31\x45\x44\x38\x05\x4f\x68\x6f\x72\x6e\x07\ \x75\x6e\x69\x31\x45\x44\x41\x07\x75\x6e\x69\x31\x45\x44\x43\x07\ \x75\x6e\x69\x31\x45\x44\x45\x07\x75\x6e\x69\x31\x45\x45\x30\x07\ \x75\x6e\x69\x31\x45\x45\x32\x07\x75\x6e\x69\x30\x31\x45\x41\x06\ \x52\x61\x63\x75\x74\x65\x06\x52\x63\x61\x72\x6f\x6e\x07\x75\x6e\ \x69\x30\x31\x35\x36\x07\x75\x6e\x69\x31\x45\x35\x41\x07\x75\x6e\ \x69\x31\x45\x35\x43\x07\x75\x6e\x69\x31\x45\x35\x45\x06\x53\x61\ \x63\x75\x74\x65\x0b\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\ \x07\x75\x6e\x69\x30\x31\x35\x45\x07\x75\x6e\x69\x30\x32\x31\x38\ \x07\x75\x6e\x69\x31\x45\x36\x30\x07\x75\x6e\x69\x31\x45\x36\x32\ \x07\x75\x6e\x69\x31\x45\x39\x45\x06\x54\x63\x61\x72\x6f\x6e\x07\ \x75\x6e\x69\x30\x31\x36\x32\x07\x75\x6e\x69\x30\x32\x31\x41\x07\ \x75\x6e\x69\x31\x45\x36\x43\x07\x75\x6e\x69\x31\x45\x36\x45\x06\ \x55\x74\x69\x6c\x64\x65\x07\x55\x6d\x61\x63\x72\x6f\x6e\x06\x55\ \x62\x72\x65\x76\x65\x05\x55\x72\x69\x6e\x67\x0d\x55\x68\x75\x6e\ \x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\ \x33\x07\x75\x6e\x69\x30\x31\x44\x35\x07\x75\x6e\x69\x30\x31\x44\ \x37\x07\x75\x6e\x69\x30\x31\x44\x39\x07\x75\x6e\x69\x30\x31\x44\ \x42\x07\x75\x6e\x69\x31\x45\x45\x34\x07\x75\x6e\x69\x31\x45\x45\ \x36\x07\x55\x6f\x67\x6f\x6e\x65\x6b\x05\x55\x68\x6f\x72\x6e\x07\ \x75\x6e\x69\x31\x45\x45\x38\x07\x75\x6e\x69\x31\x45\x45\x41\x07\ \x75\x6e\x69\x31\x45\x45\x43\x07\x75\x6e\x69\x31\x45\x45\x45\x07\ \x75\x6e\x69\x31\x45\x46\x30\x06\x57\x67\x72\x61\x76\x65\x06\x57\ \x61\x63\x75\x74\x65\x0b\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\ \x78\x09\x57\x64\x69\x65\x72\x65\x73\x69\x73\x06\x59\x67\x72\x61\ \x76\x65\x0b\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\ \x6e\x69\x31\x45\x38\x45\x07\x75\x6e\x69\x31\x45\x46\x34\x07\x75\ \x6e\x69\x31\x45\x46\x36\x07\x75\x6e\x69\x31\x45\x46\x38\x06\x5a\ \x61\x63\x75\x74\x65\x0a\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\ \x07\x75\x6e\x69\x31\x45\x39\x32\x07\x75\x6e\x69\x30\x31\x38\x46\ \x07\x61\x6d\x61\x63\x72\x6f\x6e\x06\x61\x62\x72\x65\x76\x65\x07\ \x75\x6e\x69\x30\x31\x43\x45\x07\x75\x6e\x69\x31\x45\x41\x31\x07\ \x75\x6e\x69\x31\x45\x41\x33\x07\x75\x6e\x69\x31\x45\x41\x35\x07\ \x75\x6e\x69\x31\x45\x41\x37\x07\x75\x6e\x69\x31\x45\x41\x39\x07\ \x75\x6e\x69\x31\x45\x41\x42\x07\x75\x6e\x69\x31\x45\x41\x44\x07\ \x75\x6e\x69\x31\x45\x41\x46\x07\x75\x6e\x69\x31\x45\x42\x31\x07\ \x75\x6e\x69\x31\x45\x42\x33\x07\x75\x6e\x69\x31\x45\x42\x35\x07\ \x75\x6e\x69\x31\x45\x42\x37\x07\x61\x6f\x67\x6f\x6e\x65\x6b\x07\ \x75\x6e\x69\x30\x31\x38\x30\x0b\x63\x63\x69\x72\x63\x75\x6d\x66\ \x6c\x65\x78\x0a\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x06\x64\ \x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x30\x44\x07\x75\x6e\ \x69\x31\x45\x30\x46\x06\x65\x63\x61\x72\x6f\x6e\x07\x65\x6d\x61\ \x63\x72\x6f\x6e\x06\x65\x62\x72\x65\x76\x65\x0a\x65\x64\x6f\x74\ \x61\x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x39\x07\x75\ \x6e\x69\x31\x45\x42\x42\x07\x75\x6e\x69\x31\x45\x42\x44\x07\x75\ \x6e\x69\x31\x45\x42\x46\x07\x75\x6e\x69\x31\x45\x43\x31\x07\x75\ \x6e\x69\x31\x45\x43\x33\x07\x75\x6e\x69\x31\x45\x43\x35\x07\x75\ \x6e\x69\x31\x45\x43\x37\x07\x65\x6f\x67\x6f\x6e\x65\x6b\x0b\x67\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x67\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x30\x31\x32\x33\x06\x67\x63\ \x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x32\x31\x0b\x75\x6e\x69\ \x30\x30\x36\x37\x30\x33\x30\x33\x0b\x68\x63\x69\x72\x63\x75\x6d\ \x66\x6c\x65\x78\x07\x75\x6e\x69\x31\x45\x32\x35\x07\x75\x6e\x69\ \x31\x45\x32\x42\x04\x68\x62\x61\x72\x06\x69\x74\x69\x6c\x64\x65\ \x07\x69\x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x44\ \x07\x75\x6e\x69\x30\x31\x44\x30\x07\x75\x6e\x69\x31\x45\x43\x39\ \x07\x75\x6e\x69\x31\x45\x43\x42\x07\x69\x6f\x67\x6f\x6e\x65\x6b\ \x09\x69\x6f\x67\x6f\x6e\x65\x6b\x2e\x64\x0b\x6a\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x33\x37\x0c\x6b\ \x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x06\x6c\x61\x63\x75\ \x74\x65\x06\x6c\x63\x61\x72\x6f\x6e\x04\x6c\x64\x6f\x74\x07\x75\ \x6e\x69\x30\x31\x33\x43\x07\x75\x6e\x69\x31\x45\x33\x37\x07\x75\ \x6e\x69\x31\x45\x33\x39\x07\x75\x6e\x69\x31\x45\x33\x42\x07\x75\ \x6e\x69\x31\x45\x34\x33\x06\x6e\x61\x63\x75\x74\x65\x06\x6e\x63\ \x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x36\x07\x75\x6e\x69\ \x31\x45\x34\x35\x07\x75\x6e\x69\x31\x45\x34\x37\x07\x75\x6e\x69\ \x31\x45\x34\x39\x0b\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\ \x07\x6f\x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x46\ \x0d\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\ \x6e\x69\x30\x31\x44\x32\x07\x75\x6e\x69\x31\x45\x43\x44\x07\x75\ \x6e\x69\x31\x45\x43\x46\x07\x75\x6e\x69\x31\x45\x44\x31\x07\x75\ \x6e\x69\x31\x45\x44\x33\x07\x75\x6e\x69\x31\x45\x44\x35\x07\x75\ \x6e\x69\x31\x45\x44\x37\x07\x75\x6e\x69\x31\x45\x44\x39\x05\x6f\ \x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\x45\x44\x42\x07\x75\x6e\x69\ \x31\x45\x44\x44\x07\x75\x6e\x69\x31\x45\x44\x46\x07\x75\x6e\x69\ \x31\x45\x45\x31\x07\x75\x6e\x69\x31\x45\x45\x33\x07\x75\x6e\x69\ \x30\x31\x45\x42\x06\x72\x61\x63\x75\x74\x65\x07\x75\x6e\x69\x30\ \x31\x35\x37\x06\x72\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\ \x35\x42\x07\x75\x6e\x69\x31\x45\x35\x44\x07\x75\x6e\x69\x31\x45\ \x35\x46\x06\x73\x61\x63\x75\x74\x65\x0b\x73\x63\x69\x72\x63\x75\ \x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x35\x46\x07\x75\x6e\ \x69\x30\x32\x31\x39\x07\x75\x6e\x69\x31\x45\x36\x31\x07\x75\x6e\ \x69\x31\x45\x36\x33\x06\x74\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x30\x31\x36\x33\x07\x75\x6e\x69\x30\x32\x31\x42\x07\x75\x6e\x69\ \x31\x45\x36\x44\x07\x75\x6e\x69\x31\x45\x36\x46\x07\x75\x6e\x69\ \x31\x45\x39\x37\x06\x75\x74\x69\x6c\x64\x65\x07\x75\x6d\x61\x63\ \x72\x6f\x6e\x06\x75\x62\x72\x65\x76\x65\x05\x75\x72\x69\x6e\x67\ \x0d\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\ \x6e\x69\x30\x31\x44\x34\x07\x75\x6e\x69\x30\x31\x44\x36\x07\x75\ \x6e\x69\x30\x31\x44\x38\x07\x75\x6e\x69\x30\x31\x44\x41\x07\x75\ \x6e\x69\x30\x31\x44\x43\x07\x75\x6e\x69\x31\x45\x45\x35\x07\x75\ \x6e\x69\x31\x45\x45\x37\x07\x75\x6f\x67\x6f\x6e\x65\x6b\x05\x75\ \x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\x45\x45\x39\x07\x75\x6e\x69\ \x31\x45\x45\x42\x07\x75\x6e\x69\x31\x45\x45\x44\x07\x75\x6e\x69\ \x31\x45\x45\x46\x07\x75\x6e\x69\x31\x45\x46\x31\x06\x77\x67\x72\ \x61\x76\x65\x06\x77\x61\x63\x75\x74\x65\x0b\x77\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x09\x77\x64\x69\x65\x72\x65\x73\x69\x73\ \x06\x79\x67\x72\x61\x76\x65\x0b\x79\x63\x69\x72\x63\x75\x6d\x66\ \x6c\x65\x78\x07\x75\x6e\x69\x31\x45\x38\x46\x07\x75\x6e\x69\x31\ \x45\x46\x35\x07\x75\x6e\x69\x31\x45\x46\x37\x07\x75\x6e\x69\x31\ \x45\x46\x39\x06\x7a\x61\x63\x75\x74\x65\x0a\x7a\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x39\x33\x07\x75\x6e\ \x69\x30\x32\x33\x37\x07\x75\x6e\x69\x30\x32\x35\x30\x07\x75\x6e\ \x69\x30\x32\x35\x31\x07\x75\x6e\x69\x30\x32\x35\x32\x07\x75\x6e\ \x69\x30\x32\x35\x34\x07\x75\x6e\x69\x30\x32\x35\x38\x07\x75\x6e\ \x69\x30\x32\x35\x39\x07\x75\x6e\x69\x30\x32\x36\x31\x07\x75\x6e\ \x69\x30\x32\x36\x35\x07\x75\x6e\x69\x30\x32\x36\x46\x07\x75\x6e\ \x69\x30\x32\x37\x39\x07\x75\x6e\x69\x30\x32\x38\x37\x07\x75\x6e\ \x69\x30\x32\x38\x43\x07\x75\x6e\x69\x30\x32\x38\x44\x07\x75\x6e\ \x69\x30\x32\x38\x45\x07\x75\x6e\x69\x30\x32\x39\x45\x03\x61\x2e\ \x61\x08\x61\x67\x72\x61\x76\x65\x2e\x61\x08\x61\x61\x63\x75\x74\ \x65\x2e\x61\x0d\x61\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\ \x61\x08\x61\x74\x69\x6c\x64\x65\x2e\x61\x0b\x61\x64\x69\x65\x72\ \x65\x73\x69\x73\x2e\x61\x09\x61\x6d\x61\x63\x72\x6f\x6e\x2e\x61\ \x08\x61\x62\x72\x65\x76\x65\x2e\x61\x07\x61\x72\x69\x6e\x67\x2e\ \x61\x09\x75\x6e\x69\x30\x31\x43\x45\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x41\x31\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x33\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x41\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\ \x37\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x39\x2e\x61\x09\x75\x6e\ \x69\x31\x45\x41\x42\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x44\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x41\x46\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x42\x31\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x33\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x42\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\ \x37\x2e\x61\x09\x61\x6f\x67\x6f\x6e\x65\x6b\x2e\x61\x03\x67\x2e\ \x61\x0d\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\ \x67\x62\x72\x65\x76\x65\x2e\x61\x0c\x67\x64\x6f\x74\x61\x63\x63\ \x65\x6e\x74\x2e\x61\x09\x75\x6e\x69\x30\x31\x32\x33\x2e\x61\x08\ \x67\x63\x61\x72\x6f\x6e\x2e\x61\x09\x75\x6e\x69\x31\x45\x32\x31\ \x2e\x61\x0d\x75\x6e\x69\x30\x30\x36\x37\x30\x33\x30\x33\x2e\x61\ \x09\x7a\x65\x72\x6f\x2e\x6f\x6e\x75\x6d\x08\x6f\x6e\x65\x2e\x6f\ \x6e\x75\x6d\x08\x74\x77\x6f\x2e\x6f\x6e\x75\x6d\x0a\x74\x68\x72\ \x65\x65\x2e\x6f\x6e\x75\x6d\x09\x66\x6f\x75\x72\x2e\x6f\x6e\x75\ \x6d\x09\x66\x69\x76\x65\x2e\x6f\x6e\x75\x6d\x08\x73\x69\x78\x2e\ \x6f\x6e\x75\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x6f\x6e\x75\x6d\x0a\ \x65\x69\x67\x68\x74\x2e\x6f\x6e\x75\x6d\x09\x6e\x69\x6e\x65\x2e\ \x6f\x6e\x75\x6d\x07\x75\x6e\x69\x30\x30\x41\x44\x0a\x66\x69\x67\ \x75\x72\x65\x64\x61\x73\x68\x07\x75\x6e\x69\x32\x30\x31\x35\x07\ \x75\x6e\x69\x32\x31\x31\x37\x07\x75\x6e\x69\x32\x31\x32\x30\x07\ \x61\x74\x2e\x63\x61\x73\x65\x0a\x61\x73\x74\x65\x72\x69\x73\x6b\ \x2e\x61\x08\x68\x79\x70\x68\x65\x6e\x2e\x61\x09\x75\x6e\x69\x30\ \x30\x41\x44\x2e\x61\x08\x64\x6f\x6c\x6c\x61\x72\x2e\x61\x09\x7a\ \x65\x72\x6f\x2e\x73\x75\x70\x73\x08\x6f\x6e\x65\x2e\x73\x75\x70\ \x73\x08\x74\x77\x6f\x2e\x73\x75\x70\x73\x0a\x74\x68\x72\x65\x65\ \x2e\x73\x75\x70\x73\x09\x66\x6f\x75\x72\x2e\x73\x75\x70\x73\x09\ \x66\x69\x76\x65\x2e\x73\x75\x70\x73\x08\x73\x69\x78\x2e\x73\x75\ \x70\x73\x0a\x73\x65\x76\x65\x6e\x2e\x73\x75\x70\x73\x0a\x65\x69\ \x67\x68\x74\x2e\x73\x75\x70\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\ \x70\x73\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x70\ \x73\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x70\ \x73\x0b\x70\x65\x72\x69\x6f\x64\x2e\x73\x75\x70\x73\x0a\x63\x6f\ \x6d\x6d\x61\x2e\x73\x75\x70\x73\x09\x7a\x65\x72\x6f\x2e\x73\x75\ \x62\x73\x08\x6f\x6e\x65\x2e\x73\x75\x62\x73\x08\x74\x77\x6f\x2e\ \x73\x75\x62\x73\x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x62\x73\x09\ \x66\x6f\x75\x72\x2e\x73\x75\x62\x73\x09\x66\x69\x76\x65\x2e\x73\ \x75\x62\x73\x08\x73\x69\x78\x2e\x73\x75\x62\x73\x0a\x73\x65\x76\ \x65\x6e\x2e\x73\x75\x62\x73\x0a\x65\x69\x67\x68\x74\x2e\x73\x75\ \x62\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\x62\x73\x0e\x70\x61\x72\ \x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x62\x73\x0f\x70\x61\x72\x65\ \x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x62\x73\x0b\x70\x65\x72\x69\ \x6f\x64\x2e\x73\x75\x62\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\x73\x75\ \x62\x73\x09\x7a\x65\x72\x6f\x2e\x64\x6e\x6f\x6d\x08\x6f\x6e\x65\ \x2e\x64\x6e\x6f\x6d\x08\x74\x77\x6f\x2e\x64\x6e\x6f\x6d\x0a\x74\ \x68\x72\x65\x65\x2e\x64\x6e\x6f\x6d\x09\x66\x6f\x75\x72\x2e\x64\ \x6e\x6f\x6d\x09\x66\x69\x76\x65\x2e\x64\x6e\x6f\x6d\x08\x73\x69\ \x78\x2e\x64\x6e\x6f\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x64\x6e\x6f\ \x6d\x0a\x65\x69\x67\x68\x74\x2e\x64\x6e\x6f\x6d\x09\x6e\x69\x6e\ \x65\x2e\x64\x6e\x6f\x6d\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\ \x2e\x64\x6e\x6f\x6d\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\ \x2e\x64\x6e\x6f\x6d\x0b\x70\x65\x72\x69\x6f\x64\x2e\x64\x6e\x6f\ \x6d\x0a\x63\x6f\x6d\x6d\x61\x2e\x64\x6e\x6f\x6d\x09\x7a\x65\x72\ \x6f\x2e\x6e\x75\x6d\x72\x08\x6f\x6e\x65\x2e\x6e\x75\x6d\x72\x08\ \x74\x77\x6f\x2e\x6e\x75\x6d\x72\x0a\x74\x68\x72\x65\x65\x2e\x6e\ \x75\x6d\x72\x09\x66\x6f\x75\x72\x2e\x6e\x75\x6d\x72\x09\x66\x69\ \x76\x65\x2e\x6e\x75\x6d\x72\x08\x73\x69\x78\x2e\x6e\x75\x6d\x72\ \x0a\x73\x65\x76\x65\x6e\x2e\x6e\x75\x6d\x72\x0a\x65\x69\x67\x68\ \x74\x2e\x6e\x75\x6d\x72\x09\x6e\x69\x6e\x65\x2e\x6e\x75\x6d\x72\ \x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x6e\x75\x6d\x72\x0f\ \x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x6e\x75\x6d\x72\x0b\ \x70\x65\x72\x69\x6f\x64\x2e\x6e\x75\x6d\x72\x0a\x63\x6f\x6d\x6d\ \x61\x2e\x6e\x75\x6d\x72\x0d\x6f\x72\x64\x66\x65\x6d\x69\x6e\x69\ \x6e\x65\x2e\x61\x06\x61\x2e\x73\x75\x70\x73\x06\x62\x2e\x73\x75\ \x70\x73\x06\x63\x2e\x73\x75\x70\x73\x06\x64\x2e\x73\x75\x70\x73\ \x06\x65\x2e\x73\x75\x70\x73\x06\x66\x2e\x73\x75\x70\x73\x06\x67\ \x2e\x73\x75\x70\x73\x06\x68\x2e\x73\x75\x70\x73\x06\x69\x2e\x73\ \x75\x70\x73\x06\x6a\x2e\x73\x75\x70\x73\x06\x6b\x2e\x73\x75\x70\ \x73\x06\x6c\x2e\x73\x75\x70\x73\x06\x6d\x2e\x73\x75\x70\x73\x06\ \x6e\x2e\x73\x75\x70\x73\x06\x6f\x2e\x73\x75\x70\x73\x06\x70\x2e\ \x73\x75\x70\x73\x06\x71\x2e\x73\x75\x70\x73\x06\x72\x2e\x73\x75\ \x70\x73\x06\x73\x2e\x73\x75\x70\x73\x06\x74\x2e\x73\x75\x70\x73\ \x06\x75\x2e\x73\x75\x70\x73\x06\x76\x2e\x73\x75\x70\x73\x06\x77\ \x2e\x73\x75\x70\x73\x06\x78\x2e\x73\x75\x70\x73\x06\x79\x2e\x73\ \x75\x70\x73\x06\x7a\x2e\x73\x75\x70\x73\x0b\x65\x67\x72\x61\x76\ \x65\x2e\x73\x75\x70\x73\x0b\x65\x61\x63\x75\x74\x65\x2e\x73\x75\ \x70\x73\x0c\x75\x6e\x69\x30\x32\x35\x39\x2e\x73\x75\x70\x73\x06\ \x61\x2e\x73\x75\x70\x61\x06\x67\x2e\x73\x75\x70\x61\x04\x45\x75\ \x72\x6f\x07\x75\x6e\x69\x30\x31\x39\x32\x0d\x63\x6f\x6c\x6f\x6e\ \x6d\x6f\x6e\x65\x74\x61\x72\x79\x04\x6c\x69\x72\x61\x07\x75\x6e\ \x69\x32\x30\x41\x36\x06\x70\x65\x73\x65\x74\x61\x04\x64\x6f\x6e\ \x67\x07\x75\x6e\x69\x32\x30\x42\x31\x07\x75\x6e\x69\x32\x30\x42\ \x32\x07\x75\x6e\x69\x32\x30\x42\x35\x07\x75\x6e\x69\x32\x30\x42\ \x39\x07\x75\x6e\x69\x32\x30\x42\x41\x07\x75\x6e\x69\x32\x32\x31\ \x35\x0a\x73\x6c\x61\x73\x68\x2e\x66\x72\x61\x63\x08\x6f\x6e\x65\ \x74\x68\x69\x72\x64\x09\x74\x77\x6f\x74\x68\x69\x72\x64\x73\x09\ \x6f\x6e\x65\x65\x69\x67\x68\x74\x68\x0c\x74\x68\x72\x65\x65\x65\ \x69\x67\x68\x74\x68\x73\x0b\x66\x69\x76\x65\x65\x69\x67\x68\x74\ \x68\x73\x0c\x73\x65\x76\x65\x6e\x65\x69\x67\x68\x74\x68\x73\x07\ \x75\x6e\x69\x32\x32\x31\x39\x07\x75\x6e\x69\x30\x30\x42\x35\x07\ \x75\x6e\x69\x32\x32\x30\x36\x07\x75\x6e\x69\x32\x31\x32\x36\x07\ \x75\x6e\x69\x32\x31\x31\x33\x09\x65\x73\x74\x69\x6d\x61\x74\x65\ \x64\x07\x75\x6e\x69\x32\x31\x39\x30\x07\x61\x72\x72\x6f\x77\x75\ \x70\x07\x75\x6e\x69\x32\x31\x39\x32\x09\x61\x72\x72\x6f\x77\x64\ \x6f\x77\x6e\x07\x75\x6e\x69\x32\x35\x41\x30\x07\x75\x6e\x69\x32\ \x35\x43\x36\x07\x75\x6e\x69\x32\x35\x43\x39\x07\x75\x6e\x69\x32\ \x37\x35\x32\x07\x74\x72\x69\x61\x67\x75\x70\x07\x75\x6e\x69\x32\ \x35\x42\x33\x07\x75\x6e\x69\x32\x35\x42\x36\x07\x75\x6e\x69\x32\ \x35\x42\x37\x07\x74\x72\x69\x61\x67\x64\x6e\x07\x75\x6e\x69\x32\ \x35\x42\x44\x07\x75\x6e\x69\x32\x35\x43\x30\x07\x75\x6e\x69\x32\ \x35\x43\x31\x07\x75\x6e\x69\x32\x36\x31\x30\x07\x75\x6e\x69\x32\ \x36\x31\x31\x07\x75\x6e\x69\x32\x37\x31\x33\x07\x75\x6e\x69\x32\ \x36\x36\x41\x07\x75\x6e\x69\x32\x30\x33\x32\x07\x75\x6e\x69\x32\ \x30\x33\x33\x07\x75\x6e\x69\x30\x32\x42\x42\x07\x75\x6e\x69\x30\ \x32\x42\x43\x07\x75\x6e\x69\x30\x32\x42\x45\x07\x75\x6e\x69\x30\ \x32\x42\x46\x07\x75\x6e\x69\x30\x32\x43\x38\x07\x75\x6e\x69\x30\ \x32\x43\x39\x07\x75\x6e\x69\x30\x32\x43\x41\x07\x75\x6e\x69\x30\ \x32\x43\x42\x07\x75\x6e\x69\x30\x32\x43\x43\x07\x75\x6e\x69\x30\ \x33\x30\x30\x0b\x75\x6e\x69\x30\x33\x30\x30\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x31\x0b\x75\x6e\x69\x30\x33\x30\x31\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x32\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x33\x0b\ \x75\x6e\x69\x30\x33\x30\x33\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x34\x0b\x75\x6e\x69\x30\x33\x30\x34\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x36\x0b\x75\x6e\x69\x30\x33\x30\x36\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x37\x0b\x75\x6e\x69\x30\ \x33\x30\x37\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x38\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x39\x0b\x75\x6e\x69\x30\x33\x30\x39\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x41\x0b\x75\x6e\x69\x30\x33\x30\x41\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x42\x0b\x75\x6e\x69\x30\ \x33\x30\x42\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x43\x0b\ \x75\x6e\x69\x30\x33\x30\x43\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x46\x0b\x75\x6e\x69\x30\x33\x30\x46\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x31\x32\x07\x75\x6e\x69\x30\x33\x31\x33\x07\ \x75\x6e\x69\x30\x33\x31\x42\x07\x75\x6e\x69\x30\x33\x32\x33\x07\ \x75\x6e\x69\x30\x33\x32\x34\x07\x75\x6e\x69\x30\x33\x32\x36\x07\ \x75\x6e\x69\x30\x33\x32\x37\x0b\x75\x6e\x69\x30\x33\x32\x37\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x38\x0b\x75\x6e\x69\x30\ \x33\x32\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x45\x07\ \x75\x6e\x69\x30\x33\x33\x31\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x34\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x43\x0f\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x43\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x31\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x33\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x31\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x0f\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x33\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x36\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x2e\ \x63\x61\x70\x09\x75\x6e\x69\x30\x33\x30\x43\x2e\x61\x09\x75\x6e\ \x69\x30\x33\x32\x36\x2e\x61\x07\x75\x6e\x69\x30\x30\x41\x30\x07\ \x75\x6e\x69\x32\x30\x30\x37\x0a\x73\x70\x61\x63\x65\x2e\x66\x72\ \x61\x63\x0c\x6e\x62\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x07\ \x75\x6e\x69\x32\x35\x30\x30\x07\x75\x6e\x69\x32\x35\x30\x31\x07\ \x75\x6e\x69\x32\x35\x30\x32\x07\x75\x6e\x69\x32\x35\x30\x33\x07\ \x75\x6e\x69\x32\x35\x30\x34\x07\x75\x6e\x69\x32\x35\x30\x35\x07\ \x75\x6e\x69\x32\x35\x30\x36\x07\x75\x6e\x69\x32\x35\x30\x37\x07\ \x75\x6e\x69\x32\x35\x30\x38\x07\x75\x6e\x69\x32\x35\x30\x39\x07\ \x75\x6e\x69\x32\x35\x30\x41\x07\x75\x6e\x69\x32\x35\x30\x42\x07\ \x75\x6e\x69\x32\x35\x30\x43\x07\x75\x6e\x69\x32\x35\x30\x44\x07\ \x75\x6e\x69\x32\x35\x30\x45\x07\x75\x6e\x69\x32\x35\x30\x46\x07\ \x75\x6e\x69\x32\x35\x31\x30\x07\x75\x6e\x69\x32\x35\x31\x31\x07\ \x75\x6e\x69\x32\x35\x31\x32\x07\x75\x6e\x69\x32\x35\x31\x33\x07\ \x75\x6e\x69\x32\x35\x31\x34\x07\x75\x6e\x69\x32\x35\x31\x35\x07\ \x75\x6e\x69\x32\x35\x31\x36\x07\x75\x6e\x69\x32\x35\x31\x37\x07\ \x75\x6e\x69\x32\x35\x31\x38\x07\x75\x6e\x69\x32\x35\x31\x39\x07\ \x75\x6e\x69\x32\x35\x31\x41\x07\x75\x6e\x69\x32\x35\x31\x42\x07\ \x75\x6e\x69\x32\x35\x31\x43\x07\x75\x6e\x69\x32\x35\x31\x44\x07\ \x75\x6e\x69\x32\x35\x31\x45\x07\x75\x6e\x69\x32\x35\x31\x46\x07\ \x75\x6e\x69\x32\x35\x32\x30\x07\x75\x6e\x69\x32\x35\x32\x31\x07\ \x75\x6e\x69\x32\x35\x32\x32\x07\x75\x6e\x69\x32\x35\x32\x33\x07\ \x75\x6e\x69\x32\x35\x32\x34\x07\x75\x6e\x69\x32\x35\x32\x35\x07\ \x75\x6e\x69\x32\x35\x32\x36\x07\x75\x6e\x69\x32\x35\x32\x37\x07\ \x75\x6e\x69\x32\x35\x32\x38\x07\x75\x6e\x69\x32\x35\x32\x39\x07\ \x75\x6e\x69\x32\x35\x32\x41\x07\x75\x6e\x69\x32\x35\x32\x42\x07\ \x75\x6e\x69\x32\x35\x32\x43\x07\x75\x6e\x69\x32\x35\x32\x44\x07\ \x75\x6e\x69\x32\x35\x32\x45\x07\x75\x6e\x69\x32\x35\x32\x46\x07\ \x75\x6e\x69\x32\x35\x33\x30\x07\x75\x6e\x69\x32\x35\x33\x31\x07\ \x75\x6e\x69\x32\x35\x33\x32\x07\x75\x6e\x69\x32\x35\x33\x33\x07\ \x75\x6e\x69\x32\x35\x33\x34\x07\x75\x6e\x69\x32\x35\x33\x35\x07\ \x75\x6e\x69\x32\x35\x33\x36\x07\x75\x6e\x69\x32\x35\x33\x37\x07\ \x75\x6e\x69\x32\x35\x33\x38\x07\x75\x6e\x69\x32\x35\x33\x39\x07\ \x75\x6e\x69\x32\x35\x33\x41\x07\x75\x6e\x69\x32\x35\x33\x42\x07\ \x75\x6e\x69\x32\x35\x33\x43\x07\x75\x6e\x69\x32\x35\x33\x44\x07\ \x75\x6e\x69\x32\x35\x33\x45\x07\x75\x6e\x69\x32\x35\x33\x46\x07\ \x75\x6e\x69\x32\x35\x34\x30\x07\x75\x6e\x69\x32\x35\x34\x31\x07\ \x75\x6e\x69\x32\x35\x34\x32\x07\x75\x6e\x69\x32\x35\x34\x33\x07\ \x75\x6e\x69\x32\x35\x34\x34\x07\x75\x6e\x69\x32\x35\x34\x35\x07\ \x75\x6e\x69\x32\x35\x34\x36\x07\x75\x6e\x69\x32\x35\x34\x37\x07\ \x75\x6e\x69\x32\x35\x34\x38\x07\x75\x6e\x69\x32\x35\x34\x39\x07\ \x75\x6e\x69\x32\x35\x34\x41\x07\x75\x6e\x69\x32\x35\x34\x42\x07\ \x75\x6e\x69\x32\x35\x34\x43\x07\x75\x6e\x69\x32\x35\x34\x44\x07\ \x75\x6e\x69\x32\x35\x34\x45\x07\x75\x6e\x69\x32\x35\x34\x46\x07\ \x75\x6e\x69\x32\x35\x35\x30\x07\x75\x6e\x69\x32\x35\x35\x31\x07\ \x75\x6e\x69\x32\x35\x35\x32\x07\x75\x6e\x69\x32\x35\x35\x33\x07\ \x75\x6e\x69\x32\x35\x35\x34\x07\x75\x6e\x69\x32\x35\x35\x35\x07\ \x75\x6e\x69\x32\x35\x35\x36\x07\x75\x6e\x69\x32\x35\x35\x37\x07\ \x75\x6e\x69\x32\x35\x35\x38\x07\x75\x6e\x69\x32\x35\x35\x39\x07\ \x75\x6e\x69\x32\x35\x35\x41\x07\x75\x6e\x69\x32\x35\x35\x42\x07\ \x75\x6e\x69\x32\x35\x35\x43\x07\x75\x6e\x69\x32\x35\x35\x44\x07\ \x75\x6e\x69\x32\x35\x35\x45\x07\x75\x6e\x69\x32\x35\x35\x46\x07\ \x75\x6e\x69\x32\x35\x36\x30\x07\x75\x6e\x69\x32\x35\x36\x31\x07\ \x75\x6e\x69\x32\x35\x36\x32\x07\x75\x6e\x69\x32\x35\x36\x33\x07\ \x75\x6e\x69\x32\x35\x36\x34\x07\x75\x6e\x69\x32\x35\x36\x35\x07\ \x75\x6e\x69\x32\x35\x36\x36\x07\x75\x6e\x69\x32\x35\x36\x37\x07\ \x75\x6e\x69\x32\x35\x36\x38\x07\x75\x6e\x69\x32\x35\x36\x39\x07\ \x75\x6e\x69\x32\x35\x36\x41\x07\x75\x6e\x69\x32\x35\x36\x42\x07\ \x75\x6e\x69\x32\x35\x36\x43\x07\x75\x6e\x69\x32\x35\x36\x44\x07\ \x75\x6e\x69\x32\x35\x36\x45\x07\x75\x6e\x69\x32\x35\x36\x46\x07\ \x75\x6e\x69\x32\x35\x37\x30\x07\x75\x6e\x69\x32\x35\x37\x31\x07\ \x75\x6e\x69\x32\x35\x37\x32\x07\x75\x6e\x69\x32\x35\x37\x33\x07\ \x75\x6e\x69\x32\x35\x37\x34\x07\x75\x6e\x69\x32\x35\x37\x35\x07\ \x75\x6e\x69\x32\x35\x37\x36\x07\x75\x6e\x69\x32\x35\x37\x37\x07\ \x75\x6e\x69\x32\x35\x37\x38\x07\x75\x6e\x69\x32\x35\x37\x39\x07\ \x75\x6e\x69\x32\x35\x37\x41\x07\x75\x6e\x69\x32\x35\x37\x42\x07\ \x75\x6e\x69\x32\x35\x37\x43\x07\x75\x6e\x69\x32\x35\x37\x44\x07\ \x75\x6e\x69\x32\x35\x37\x45\x07\x75\x6e\x69\x32\x35\x37\x46\x07\ \x75\x6e\x69\x32\x35\x38\x30\x07\x75\x6e\x69\x32\x35\x38\x31\x07\ \x75\x6e\x69\x32\x35\x38\x32\x07\x75\x6e\x69\x32\x35\x38\x33\x07\ \x75\x6e\x69\x32\x35\x38\x34\x07\x75\x6e\x69\x32\x35\x38\x35\x07\ \x75\x6e\x69\x32\x35\x38\x36\x07\x75\x6e\x69\x32\x35\x38\x37\x07\ \x75\x6e\x69\x32\x35\x38\x38\x07\x75\x6e\x69\x32\x35\x38\x39\x07\ \x75\x6e\x69\x32\x35\x38\x41\x07\x75\x6e\x69\x32\x35\x38\x42\x07\ \x75\x6e\x69\x32\x35\x38\x43\x07\x75\x6e\x69\x32\x35\x38\x44\x07\ \x75\x6e\x69\x32\x35\x38\x45\x07\x75\x6e\x69\x32\x35\x38\x46\x07\ \x75\x6e\x69\x32\x35\x39\x30\x07\x75\x6e\x69\x32\x35\x39\x31\x07\ \x75\x6e\x69\x32\x35\x39\x32\x07\x75\x6e\x69\x32\x35\x39\x33\x07\ \x75\x6e\x69\x32\x35\x39\x34\x07\x75\x6e\x69\x32\x35\x39\x35\x07\ \x75\x6e\x69\x32\x35\x39\x36\x07\x75\x6e\x69\x32\x35\x39\x37\x07\ \x75\x6e\x69\x32\x35\x39\x38\x07\x75\x6e\x69\x32\x35\x39\x39\x07\ \x75\x6e\x69\x32\x35\x39\x41\x07\x75\x6e\x69\x32\x35\x39\x42\x07\ \x75\x6e\x69\x32\x35\x39\x43\x07\x75\x6e\x69\x32\x35\x39\x44\x07\ \x75\x6e\x69\x32\x35\x39\x45\x07\x75\x6e\x69\x32\x35\x39\x46\x00\ \x00\x00\x01\xff\xff\x00\x02\x00\x01\x00\x00\x00\x0c\x00\x00\x00\ \x00\x00\xbe\x00\x02\x00\x1d\x00\x04\x00\x37\x00\x01\x00\x4d\x00\ \x4e\x00\x01\x00\x69\x00\x69\x00\x01\x00\x70\x00\x70\x00\x02\x00\ \x80\x00\x80\x00\x01\x00\xa3\x00\xa5\x00\x01\x00\xab\x00\xab\x00\ \x01\x00\xcf\x00\xd0\x00\x01\x00\xe8\x00\xe8\x00\x01\x00\xfe\x00\ \xfe\x00\x01\x01\x06\x01\x06\x00\x02\x01\x1a\x01\x1a\x00\x01\x01\ \x1e\x01\x1e\x00\x02\x01\x21\x01\x21\x00\x02\x01\x30\x01\x30\x00\ \x02\x01\x31\x01\x32\x00\x01\x01\x37\x01\x37\x00\x02\x01\x57\x01\ \x59\x00\x01\x01\x5f\x01\x5f\x00\x01\x01\x6e\x01\x6e\x00\x02\x01\ \x84\x01\x85\x00\x01\x01\x9c\x01\xac\x00\x01\x01\xaf\x01\xaf\x00\ \x01\x01\xc5\x01\xc6\x00\x01\x01\xca\x01\xca\x00\x02\x02\xcf\x02\ \xcf\x00\x01\x02\xd9\x02\xd9\x00\x01\x02\xdf\x03\x1e\x00\x03\x03\ \x20\x03\x20\x00\x03\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x01\x03\ \x05\x03\x1e\x00\x01\x03\x20\x03\x20\x00\x01\x00\x01\x00\x00\x00\ \x0a\x00\x38\x00\x92\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x1e\x00\x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x00\x00\ \x02\x00\x04\x00\x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x01\x00\ \x03\x00\x05\x00\x06\x6d\x61\x72\x6b\x00\x26\x6d\x61\x72\x6b\x00\ \x36\x6d\x6b\x6d\x6b\x00\x46\x6d\x6b\x6d\x6b\x00\x4c\x73\x69\x7a\ \x65\x00\x52\x73\x69\x7a\x65\x00\x56\x00\x00\x00\x06\x00\x00\x00\ \x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x00\x00\x06\x00\x00\x00\ \x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x00\x00\x01\x00\x06\x00\ \x00\x00\x01\x00\x06\x00\x52\x00\x00\x00\x4e\x00\x00\x00\x07\x00\ \x10\x00\x1a\x00\x22\x00\x2a\x00\x32\x00\x3a\x00\x42\x00\x01\x00\ \x00\x00\x02\x00\x44\x00\x4e\x00\x04\x00\x00\x00\x01\x00\x4c\x00\ \x04\x00\x00\x00\x01\x03\x1a\x00\x04\x00\x00\x00\x01\x03\x5a\x00\ \x04\x00\x00\x00\x01\x05\x0e\x00\x04\x00\x00\x00\x01\x05\x38\x00\ \x06\x01\x00\x00\x01\x05\xa2\x00\x64\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x01\x06\x9a\x00\x05\xfe\xd4\xfd\xa8\x00\x01\x06\x9a\x00\ \x04\xfd\xa8\x00\x01\x06\x9c\x06\xb2\x00\x01\x00\x0c\x00\xea\x00\ \x37\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \x9e\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x5f\x00\ \xc6\x00\xcc\x00\xd2\x00\xd8\x00\xde\x00\xe4\x00\xde\x00\xd8\x00\ \xc6\x00\xea\x00\xea\x00\xf0\x00\xc6\x00\xf6\x00\xc6\x00\xfc\x01\ \x02\x01\x08\x01\x0e\x00\xd8\x00\xd8\x00\xd8\x00\xc6\x01\x14\x00\ \xc6\x00\xfc\x01\x1a\x01\x20\x01\x26\x01\x2c\x01\x32\x01\x38\x01\ \x3e\x01\x44\x01\x4a\x01\x4a\x01\x50\x01\x56\x01\x5c\x01\x62\x00\ \xc0\x01\x1a\x01\x68\x01\x6e\x01\x74\x01\x7a\x01\x80\x01\x68\x00\ \xc0\x00\xc0\x01\x86\x01\x8c\x00\xc6\x01\x92\x00\xde\x00\xc6\x01\ \x14\x01\x98\x00\xd8\x00\xc6\x00\xd8\x00\xc6\x01\x9e\x01\x1a\x01\ \x32\x01\xa4\x01\xa4\x00\xc0\x01\xaa\x00\xc0\x00\xc0\x01\x80\x01\ \x80\x01\x20\x01\xa4\x01\xb0\x01\x3e\x01\x32\x01\xb6\x01\xbc\x00\ \xc0\x01\xc2\x01\xc8\x01\x80\x01\xce\x01\xd4\x01\x68\x00\xc0\x01\ \x74\x01\xda\x01\x3e\x01\x3e\x01\x3e\x01\xe0\x01\xe6\x00\x01\x01\ \x2c\x01\xfc\x00\x01\x01\x2c\x02\xa6\x00\x01\x01\x23\x02\xa6\x00\ \x01\x01\x5b\x02\xa6\x00\x01\x01\x2b\x02\xa6\x00\x01\x01\x4b\x02\ \xa6\x00\x01\x01\x53\x02\xa6\x00\x01\x01\x41\x02\xa6\x00\x01\x00\ \xbe\x02\xa6\x00\x01\x01\x32\x02\xa6\x00\x01\x01\x3b\x02\xa6\x00\ \x01\x01\x2d\x02\xae\x00\x01\x01\x31\x02\xa6\x00\x01\x01\x37\x02\ \xa6\x00\x01\x01\x2d\x02\xa6\x00\x01\x01\x3a\x01\xfc\x00\x01\x00\ \x8a\x02\xda\x00\x01\x01\x57\x01\xfc\x00\x01\x01\xc1\x02\xda\x00\ \x01\x01\x3b\x01\xfc\x00\x01\x01\xa4\x02\xe4\x00\x01\x01\x33\x01\ \xfc\x00\x01\x00\x97\x02\xda\x00\x01\x01\x5c\x02\xb6\x00\x01\x00\ \xb2\x02\xda\x00\x01\x01\x1c\x02\xda\x00\x01\x01\x3c\x01\xfc\x00\ \x01\x01\x3e\x01\xfc\x00\x01\x01\x2d\x01\xfc\x00\x01\x01\x56\x01\ \xfc\x00\x01\x01\x2f\x01\xfc\x00\x01\x01\x07\x02\x83\x00\x01\x01\ \x27\x01\xfc\x00\x01\x01\x30\x01\xfc\x00\x01\x01\x40\x01\xfc\x00\ \x01\x01\xc3\x02\xb6\x00\x01\x01\x98\x02\xa6\x00\x01\x01\x3d\x02\ \xa6\x00\x01\x01\x5c\x01\xfc\x00\x01\x01\x3f\x01\xfc\x00\x01\x01\ \x38\x01\xfc\x00\x01\x01\x1a\x01\xfc\x00\x01\x01\x20\x01\xfc\x00\ \x01\x01\x32\x01\xfc\x00\x01\x01\x25\x01\xfc\x00\x01\x01\x91\x01\ \xfc\x00\x01\x00\xeb\x01\xfc\x00\x01\x01\x17\x01\xfc\x00\x01\x01\ \x2c\x02\xcf\x00\x01\x01\x2c\x02\xc2\x00\x01\x04\x52\x04\x5a\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x18\x00\x00\x00\x18\x00\ \x06\x00\x14\x00\x1a\x00\x0e\x00\x20\x00\x26\x00\x2c\x00\x01\x01\ \x2c\x00\x00\x00\x01\x01\x5b\x00\x00\x00\x01\x01\x39\x00\x00\x00\ \x01\x01\x56\x00\x00\x00\x01\x01\x3a\x00\x00\x00\x01\x01\x78\x00\ \x00\x00\x01\x04\x22\x04\x30\x00\x01\x00\x0c\x00\x22\x00\x05\x00\ \x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\ \x00\x00\xae\x00\x4b\x00\x98\x00\x9e\x00\xa4\x00\xaa\x00\xb0\x00\ \xb6\x00\xbc\x00\xc2\x00\x98\x00\xc8\x00\xce\x00\xd4\x00\x98\x00\ \x98\x00\x98\x00\xda\x00\xe0\x00\xe6\x00\x98\x00\xc2\x00\x98\x00\ \xec\x00\xf2\x00\x98\x00\xf8\x00\xec\x00\x98\x00\xfe\x01\x04\x01\ \x0a\x01\x10\x01\x16\x01\x1c\x01\x22\x01\x28\x00\xbc\x01\x2e\x01\ \x34\x01\x3a\x00\x98\x01\x40\x01\x46\x01\x4c\x00\xe6\x01\x52\x01\ \x58\x00\xc8\x00\x98\x00\x98\x01\x5e\x01\x64\x00\xc2\x00\x98\x01\ \x58\x01\x22\x00\x98\x01\x58\x01\x04\x01\x6a\x00\x9e\x01\x04\x01\ \x6a\x00\x9e\x01\x70\x01\x76\x01\x7c\x01\x7c\x01\x82\x01\x88\x00\ \xc8\x00\x98\x01\x5e\x01\x8e\x00\x9e\x01\x94\x00\x01\x01\x2c\xff\ \xea\x00\x01\x01\x34\xff\xea\x00\x01\x01\x5b\xff\xea\x00\x01\x01\ \x22\xff\xea\x00\x01\x01\x4c\xff\xea\x00\x01\x00\xbc\xff\xea\x00\ \x01\x01\x4f\xff\xea\x00\x01\x01\x2b\xff\xea\x00\x01\x01\x2d\xff\ \xea\x00\x01\x01\x52\xff\xea\x00\x01\x01\x5a\xff\xea\x00\x01\x00\ \x95\xff\xea\x00\x01\x01\x40\xff\xea\x00\x01\x01\x36\xff\xea\x00\ \x01\x01\x2f\xff\xea\x00\x01\x01\x27\xff\xea\x00\x01\x01\x37\xff\ \xea\x00\x01\x01\x56\xff\xea\x00\x01\x01\x32\xff\xea\x00\x01\x01\ \x3b\xff\xea\x00\x01\x01\x23\xff\xea\x00\x01\x01\x29\xff\x1a\x00\ \x01\x01\x3a\xff\xea\x00\x01\x01\x5c\xff\xea\x00\x01\x00\xec\xff\ \x19\x00\x01\x01\x73\xff\xea\x00\x01\x01\x35\xff\xea\x00\x01\x01\ \x39\xff\xea\x00\x01\x00\x88\xff\x26\x00\x01\x01\xc1\xff\x26\x00\ \x01\x00\xc8\xff\xea\x00\x01\x01\x7b\xff\xea\x00\x01\x01\x41\xff\ \xea\x00\x01\x01\x0a\xff\x0e\x00\x01\x01\x3d\xff\xea\x00\x01\x01\ \x43\xff\xea\x00\x01\x01\x20\xff\xea\x00\x01\x01\xcb\xff\x26\x00\ \x01\x01\x2a\xff\xea\x00\x01\x00\x76\xff\xea\x00\x01\x01\x6d\xff\ \xea\x00\x01\x00\xfe\xff\xea\x00\x01\x01\xcc\xff\x26\x00\x01\x02\ \xc0\x02\xc6\x00\x01\x00\x0c\x00\x12\x00\x01\x00\x00\x00\x0e\x00\ \x03\x00\x0e\x00\x14\x00\x1a\x00\x01\x01\x2c\x01\xe6\x00\x01\x01\ \xa4\x02\x86\x00\x01\x01\xf7\x02\x9a\x00\x01\x01\x9d\x01\xe6\x00\ \x01\x02\x9e\x02\xa6\x00\x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\ \x24\x00\x00\x00\x24\x00\x0c\x00\x20\x00\x26\x00\x2c\x00\x1a\x00\ \x32\x00\x38\x00\x3e\x00\x44\x00\x3e\x00\x4a\x00\x50\x00\x56\x00\ \x01\x01\x2c\x00\x00\x00\x01\x01\xef\x00\x00\x00\x01\x01\xa9\x00\ \x00\x00\x01\x01\x15\x00\x00\x00\x01\x01\x2b\x00\x00\x00\x01\x01\ \x95\x00\x00\x00\x01\x01\x81\x00\x00\x00\x01\x01\x5d\x00\x00\x00\ \x01\x01\x8f\x00\x00\x00\x01\x01\x20\x00\x00\x00\x01\x01\xa2\x00\ \x00\x00\x01\x01\x1e\x02\x50\x00\x01\x00\x0c\x00\xea\x00\x37\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xe6\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x03\x00\x14\x00\ \x1a\x00\x1a\x00\x01\x01\x2c\x01\xfc\x00\x01\x01\x2c\x02\xa6\x00\ \x01\x01\x2c\x02\xdc\x00\x01\x01\x2c\x02\xb7\x00\x02\x00\x01\x02\ \x88\x02\x8a\x00\x00\x00\x02\x00\x01\x02\xdf\x03\x20\x00\x00\x00\ \x02\x00\x03\x02\xdf\x02\xfa\x00\x00\x03\x05\x03\x1e\x00\x1c\x03\ \x20\x03\x20\x00\x36\x00\x02\x00\x13\x00\x04\x00\x37\x00\x00\x00\ \x4d\x00\x4e\x00\x34\x00\x69\x00\x69\x00\x36\x00\x80\x00\x80\x00\ \x37\x00\xa3\x00\xa5\x00\x38\x00\xab\x00\xab\x00\x3b\x00\xcf\x00\ \xd0\x00\x3c\x00\xe8\x00\xe8\x00\x3e\x00\xfe\x00\xfe\x00\x3f\x01\ \x1a\x01\x1a\x00\x40\x01\x31\x01\x32\x00\x41\x01\x57\x01\x59\x00\ \x43\x01\x5f\x01\x5f\x00\x46\x01\x84\x01\x85\x00\x47\x01\x9c\x01\ \xac\x00\x49\x01\xaf\x01\xaf\x00\x5a\x01\xc5\x01\xc6\x00\x5b\x02\ \xcf\x02\xcf\x00\x5d\x02\xd9\x02\xd9\x00\x5e\x00\x01\x00\x02\x02\ \xff\x03\x00\x00\x01\x00\x06\x00\x06\x00\x16\x00\x17\x00\x20\x00\ \x30\x00\x31\x00\x01\x00\x05\x02\xfc\x02\xfd\x02\xfe\x03\x03\x03\ \x04\x00\x02\x00\x0c\x00\x04\x00\x13\x00\x00\x00\x15\x00\x37\x00\ \x10\x00\xa5\x00\xa5\x00\x33\x00\xd0\x00\xd0\x00\x34\x00\xe8\x00\ \xe8\x00\x35\x01\x32\x01\x32\x00\x36\x01\x59\x01\x59\x00\x37\x01\ \x85\x01\x85\x00\x38\x01\x9c\x01\x9c\x00\x39\x01\x9e\x01\xac\x00\ \x3a\x01\xaf\x01\xaf\x00\x49\x01\xc6\x01\xc6\x00\x4a\x00\x01\x00\ \x01\x02\xfb\x00\x01\x00\x03\x00\x12\x00\x18\x00\x2c\x00\x01\x00\ \x02\x03\x01\x03\x02\x00\x01\x00\x0c\x00\x04\x00\x08\x00\x0c\x00\ \x12\x00\x18\x00\x22\x00\x26\x00\x2c\x01\x32\x01\xa2\x01\xa3\x01\ \xaf\x00\x01\x00\x03\x02\xe3\x02\xeb\x02\xed\x00\x01\x00\x00\x00\ \x0a\x00\x6c\x02\x1a\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x38\x00\x04\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x00\ \x02\x00\x04\x00\x06\x00\x08\x00\x0a\x00\x0c\x00\x0e\x00\x10\x00\ \x12\x00\x14\x00\x16\x00\x18\x00\x1a\x00\x1c\x00\x1e\x00\x04\x00\ \x00\x00\x00\xff\xff\x00\x10\x00\x01\x00\x03\x00\x05\x00\x07\x00\ \x09\x00\x0b\x00\x0d\x00\x0f\x00\x11\x00\x13\x00\x15\x00\x17\x00\ \x19\x00\x1b\x00\x1d\x00\x1f\x00\x20\x61\x61\x6c\x74\x00\xc2\x61\ \x61\x6c\x74\x00\xca\x63\x61\x73\x65\x00\xd2\x63\x61\x73\x65\x00\ \xd8\x63\x63\x6d\x70\x00\xde\x63\x63\x6d\x70\x00\xec\x64\x6e\x6f\ \x6d\x00\xfa\x64\x6e\x6f\x6d\x01\x00\x66\x72\x61\x63\x01\x06\x66\ \x72\x61\x63\x01\x10\x6e\x75\x6d\x72\x01\x1a\x6e\x75\x6d\x72\x01\ \x20\x6f\x6e\x75\x6d\x01\x26\x6f\x6e\x75\x6d\x01\x2c\x6f\x72\x64\ \x6e\x01\x32\x6f\x72\x64\x6e\x01\x38\x73\x61\x6c\x74\x01\x3e\x73\ \x61\x6c\x74\x01\x4a\x73\x69\x6e\x66\x01\x56\x73\x69\x6e\x66\x01\ \x5c\x73\x73\x30\x31\x01\x62\x73\x73\x30\x31\x01\x68\x73\x73\x30\ \x32\x01\x6e\x73\x73\x30\x32\x01\x74\x73\x73\x30\x33\x01\x7a\x73\ \x73\x30\x33\x01\x80\x73\x73\x30\x34\x01\x86\x73\x73\x30\x34\x01\ \x8c\x73\x75\x62\x73\x01\x92\x73\x75\x62\x73\x01\x98\x73\x75\x70\ \x73\x01\x9e\x73\x75\x70\x73\x01\xa6\x00\x00\x00\x02\x00\x00\x00\ \x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x10\x00\ \x00\x00\x01\x00\x10\x00\x00\x00\x05\x00\x03\x00\x04\x00\x05\x00\ \x06\x00\x07\x00\x00\x00\x05\x00\x03\x00\x04\x00\x05\x00\x06\x00\ \x07\x00\x00\x00\x01\x00\x09\x00\x00\x00\x01\x00\x09\x00\x00\x00\ \x03\x00\x08\x00\x0a\x00\x0b\x00\x00\x00\x03\x00\x08\x00\x0a\x00\ \x0b\x00\x00\x00\x01\x00\x08\x00\x00\x00\x01\x00\x08\x00\x00\x00\ \x01\x00\x0f\x00\x00\x00\x01\x00\x0f\x00\x00\x00\x01\x00\x0c\x00\ \x00\x00\x01\x00\x0c\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\ \x14\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\x14\x00\x00\x00\ \x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x04\x04\x00\x01\x00\x11\x03\ \xfe\x00\x01\x00\x11\x04\x08\x00\x01\x00\x12\x04\x02\x00\x01\x00\ \x12\x04\x38\x00\x01\x00\x13\x04\x32\x00\x01\x00\x13\x04\x48\x00\ \x01\x00\x14\x04\x42\x00\x01\x00\x14\x00\x00\x00\x01\x00\x0e\x00\ \x00\x00\x01\x00\x0e\x00\x00\x00\x02\x00\x0c\x00\x0d\x00\x00\x00\ \x02\x00\x0c\x00\x0d\x00\x17\x00\x30\x00\x38\x00\x40\x00\x48\x00\ \x50\x00\x5a\x00\x62\x00\x6a\x00\x72\x00\x7a\x00\x82\x00\x8a\x00\ \x96\x00\x9e\x00\xa6\x00\xae\x00\xb6\x00\xbe\x00\xc6\x00\xce\x00\ \xd6\x00\xde\x00\xe6\x00\x01\x00\x00\x00\x01\x03\xfa\x00\x03\x00\ \x00\x00\x01\x04\xb0\x00\x02\x00\x00\x00\x01\x00\xae\x00\x06\x00\ \x00\x00\x01\x00\xcc\x00\x06\x00\x00\x00\x02\x00\xd6\x00\xea\x00\ \x04\x00\x00\x00\x01\x00\xf2\x00\x04\x00\x00\x00\x01\x01\x64\x00\ \x06\x00\x00\x00\x01\x02\x2a\x00\x01\x00\x00\x00\x01\x02\x34\x00\ \x01\x00\x00\x00\x01\x02\x4e\x00\x01\x00\x00\x00\x01\x02\x68\x00\ \x06\x00\x00\x00\x03\x02\x66\x02\x78\x02\x8a\x00\x01\x00\x00\x00\ \x01\x02\x92\x00\x01\x00\x00\x00\x01\x02\xca\x00\x01\x00\x00\x00\ \x01\x02\xe4\x00\x01\x00\x00\x00\x01\x02\xfe\x00\x01\x00\x00\x00\ \x01\x02\xfc\x00\x01\x00\x00\x00\x01\x02\xfe\x00\x01\x00\x00\x00\ \x01\x03\x06\x00\x01\x00\x00\x00\x01\x03\x3a\x00\x01\x00\x00\x00\ \x01\x03\x4e\x00\x04\x00\x00\x00\x01\x04\xdc\x00\x01\x00\x00\x00\ \x01\x04\xe6\x00\x01\x05\x3e\x00\x04\x00\x0e\x00\x14\x00\x1a\x00\ \x20\x00\x02\x00\x08\x02\xe3\x00\x02\x00\x12\x02\xe3\x00\x02\x00\ \x22\x02\xe3\x00\x02\x00\x2c\x02\xe3\x00\x03\x00\x00\x00\x01\x05\ \x18\x00\x01\x05\x24\x00\x01\x00\x00\x00\x02\x00\x03\x00\x00\x00\ \x02\x05\x18\x05\x1e\x00\x01\x05\x24\x00\x01\x00\x00\x00\x15\x00\ \x03\x00\x00\x00\x01\x05\x16\x00\x01\x05\x10\x00\x01\x00\x00\x00\ \x16\x00\x01\x05\x0a\x00\x03\x00\x0c\x00\x36\x00\x58\x00\x05\x00\ \x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x03\x0f\x00\x02\x02\xdf\x03\ \x0d\x00\x02\x02\xe1\x03\x13\x00\x02\x02\xe5\x03\x1d\x00\x02\x02\ \xe9\x03\x11\x00\x02\x02\xef\x00\x04\x00\x0a\x00\x10\x00\x16\x00\ \x1c\x03\x17\x00\x02\x02\xdf\x03\x15\x00\x02\x02\xe1\x03\x1b\x00\ \x02\x02\xe5\x03\x19\x00\x02\x02\xef\x00\x04\x00\x0a\x00\x10\x00\ \x16\x00\x1c\x03\x0b\x00\x02\x02\xdf\x03\x07\x00\x02\x02\xe1\x03\ \x05\x00\x02\x02\xe7\x03\x09\x00\x02\x02\xf5\x00\x01\x04\x9a\x00\ \x10\x00\x26\x00\x30\x00\x3a\x00\x44\x00\x4e\x00\x58\x00\x62\x00\ \x6c\x00\x76\x00\x80\x00\x92\x00\x9c\x00\xa6\x00\xb0\x00\xba\x00\ \xc4\x00\x01\x00\x04\x00\x4d\x00\x02\x03\x01\x00\x01\x00\x04\x00\ \x69\x00\x02\x03\x01\x00\x01\x00\x04\x00\x70\x00\x02\x02\xe5\x00\ \x01\x00\x04\x00\x80\x00\x02\x03\x01\x00\x01\x00\x04\x00\xab\x00\ \x02\x03\x01\x00\x01\x00\x04\x00\xcf\x00\x02\x03\x01\x00\x01\x00\ \x04\x00\xfe\x00\x02\x03\x01\x00\x01\x00\x04\x01\x06\x00\x02\x02\ \xf5\x00\x01\x00\x04\x01\x1a\x00\x02\x03\x01\x00\x02\x00\x06\x00\ \x0c\x01\x21\x00\x02\x02\xe5\x01\x1e\x00\x02\x02\xff\x00\x01\x00\ \x04\x01\x30\x00\x02\x03\x01\x00\x01\x00\x04\x01\x37\x00\x02\x02\ \xf5\x00\x01\x00\x04\x01\x5f\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x6e\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x84\x00\x02\x03\x01\x00\ \x01\x00\x04\x01\xca\x00\x02\x02\xff\x00\x03\x00\x01\x03\xf0\x00\ \x01\x04\x12\x00\x00\x00\x01\x00\x00\x00\x16\x00\x02\x04\x3c\x00\ \x0e\x02\x46\x02\x47\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\ \x4d\x02\x4e\x02\x4f\x02\x52\x02\x53\x02\x50\x02\x51\x00\x02\x04\ \x1a\x00\x0e\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\ \x3e\x02\x3f\x02\x40\x02\x41\x02\x44\x02\x45\x02\x42\x02\x43\x00\ \x01\x04\x0e\x00\x83\x00\x03\x00\x01\x04\x0e\x00\x01\x04\x18\x00\ \x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x01\x04\x0e\x00\x01\x04\ \x1e\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x02\x04\x20\x04\ \x16\x00\x01\x04\x0c\x00\x00\x00\x01\x00\x00\x00\x16\x00\x02\x04\ \x14\x00\x1d\x02\x57\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\ \x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\ \x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\x73\x00\x02\x03\ \x7a\x00\x0e\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\x21\x02\ \x22\x02\x23\x02\x24\x02\x25\x02\x28\x02\x29\x02\x26\x02\x27\x00\ \x02\x03\x58\x00\x0e\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\ \x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x36\x02\x37\x02\x34\x02\ \x35\x00\x01\x03\xa6\x00\x0a\x00\x01\x03\xaa\x00\x01\x00\x00\x01\ \x00\x00\x02\x03\xde\x00\x03\x02\x19\x02\x1a\x02\x18\x00\x00\x01\ \x01\x00\x02\x03\xd8\x00\x19\x01\xaf\x01\xb0\x01\xb1\x01\xb2\x01\ \xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\ \xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\ \xc3\x01\xc4\x01\xc5\x02\x55\x02\x74\x00\x00\x01\x02\x00\x02\x03\ \xb8\x00\x09\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\ \xcc\x01\xcd\x02\x75\x00\x00\x01\x03\x00\x01\x03\xb2\xff\xa3\x00\ \x02\x03\xb2\x00\x5c\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\x65\x02\ \x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\x6d\x02\ \x6e\x02\x6f\x02\x70\x01\xb0\x01\xb1\x01\xb2\x01\xb3\x01\xb4\x01\ \xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\xbb\x01\xbc\x01\ \xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\xc3\x01\xc4\x01\ \xc5\x02\x71\x02\x72\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\ \xcc\x01\xcd\x02\x73\x02\x19\x02\x1a\x02\x18\x02\x16\x02\x55\x02\ \x74\x02\x75\x02\x1b\x02\xe0\x02\xe2\x02\xe4\x02\xe6\x02\xe8\x02\ \xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\xf6\x02\xf8\x03\ \x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\x10\x03\ \x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x00\x01\x03\ \xb0\x00\x10\x00\x26\x00\x2c\x00\x32\x00\x3e\x00\x4a\x00\x56\x00\ \x62\x00\x6e\x00\x7a\x00\x86\x00\x92\x00\x9e\x00\xaa\x00\xb4\x00\ \xbe\x00\xc8\x00\x02\x02\x57\x01\xaf\x00\x02\x02\x5d\x01\xc6\x00\ \x05\x02\x46\x02\x38\x02\x1c\x02\x2a\x01\xd9\x00\x05\x02\x47\x02\ \x39\x02\x1d\x02\x2b\x01\xda\x00\x05\x02\x48\x02\x3a\x02\x1e\x02\ \x2c\x01\xdb\x00\x05\x02\x49\x02\x3b\x02\x1f\x02\x2d\x01\xdc\x00\ \x05\x02\x4a\x02\x3c\x02\x20\x02\x2e\x01\xdd\x00\x05\x02\x4b\x02\ \x3d\x02\x21\x02\x2f\x01\xde\x00\x05\x02\x4c\x02\x3e\x02\x22\x02\ \x30\x01\xdf\x00\x05\x02\x4d\x02\x3f\x02\x23\x02\x31\x01\xe0\x00\ \x05\x02\x4e\x02\x40\x02\x24\x02\x32\x01\xe1\x00\x05\x02\x4f\x02\ \x41\x02\x25\x02\x33\x01\xe2\x00\x04\x02\x52\x02\x44\x02\x28\x02\ \x36\x00\x04\x02\x53\x02\x45\x02\x29\x02\x37\x00\x04\x02\x50\x02\ \x42\x02\x26\x02\x34\x00\x04\x02\x51\x02\x43\x02\x27\x02\x35\x00\ \x01\x00\x84\x00\x01\x00\x08\x00\x01\x00\x04\x01\x31\x00\x02\x03\ \x01\x00\x02\x02\xee\x00\x2d\x03\x23\x01\x31\x02\x38\x02\x39\x02\ \x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\x41\x02\ \x42\x02\x43\x02\x44\x02\x45\x02\xe0\x02\xe2\x02\xe4\x02\xe6\x02\ \xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\xf6\x02\ \xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\ \x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x03\ \x24\x00\x01\x00\x04\x00\x5b\x00\x95\x01\x0c\x01\x49\x00\x01\x00\ \x01\x02\xe9\x00\x01\x00\x01\x00\x26\x00\x01\x00\x01\x03\x01\x00\ \x01\x00\x01\x02\xe1\x00\x01\x00\x01\x01\x30\x00\x01\x00\x03\x02\ \xe3\x02\xe9\x02\xed\x00\x01\x00\x10\x00\x04\x00\x08\x00\x0a\x00\ \x0c\x00\x12\x00\x18\x00\x1e\x00\x21\x00\x22\x00\x24\x00\x26\x00\ \x29\x00\x2c\x00\x31\x00\x32\x01\xc6\x00\x02\x00\x05\x00\x04\x00\ \x1d\x00\x00\x00\x38\x00\x4e\x00\x1a\x00\x50\x00\x7a\x00\x31\x00\ \x7c\x00\x98\x00\x5c\x00\x9a\x00\xe8\x00\x79\x00\x01\x00\x1c\x02\ \xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\ \xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\ \x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\ \x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\x03\x01\xcf\x01\xd8\x00\ \x00\x01\xe3\x01\xe4\x00\x0a\x02\x01\x02\x02\x00\x0c\x00\x01\x00\ \x01\x02\x07\x00\x02\x00\x01\x02\x46\x02\x4f\x00\x00\x00\x01\x00\ \x02\x00\x03\x03\x21\x00\x02\x00\x02\x02\x38\x02\x45\x00\x00\x02\ \x88\x02\x8a\x00\x0e\x00\x02\x00\x01\x02\x46\x02\x53\x00\x00\x00\ \x02\x00\x01\x02\x38\x02\x41\x00\x00\x00\x01\x00\x02\x03\x23\x03\ \x24\x00\x02\x00\x03\x00\x1e\x00\x37\x00\x00\x01\x0a\x01\x0b\x00\ \x1a\x01\xa3\x01\xa3\x00\x1c\x00\x02\x00\x01\x01\xcf\x01\xd8\x00\ \x00\x00\x01\x00\x1d\x02\x15\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\ \xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\ \xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\ \x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\ \x01\x00\x03\x01\xf8\x01\xf9\x02\x0b\x00\x02\x00\x04\x00\x1e\x00\ \x1e\x00\x00\x00\xe9\x00\xfe\x00\x01\x02\x54\x02\x54\x00\x17\x02\ \x57\x02\x57\x00\x18\x00\x02\x00\x03\x00\x24\x00\x24\x00\x00\x01\ \x1b\x01\x21\x00\x01\x02\x5d\x02\x5d\x00\x08\x00\x01\x00\x01\x02\ \x78\x00\x01\x00\x5c\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\ \xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\ \xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\ \xfe\x01\x0a\x01\x0b\x01\x1b\x01\x1c\x01\x1d\x01\x1e\x01\x1f\x01\ \x20\x01\x21\x01\xa3\x01\xf8\x01\xf9\x02\x0b\x02\x15\x02\x54\x02\ \x57\x02\x5d\x02\x78\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\ \xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\ \x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\ \x05\x00\x1e\x00\x1e\x00\x00\x00\x24\x00\x24\x00\x01\x01\xcf\x01\ \xd8\x00\x02\x01\xe3\x01\xe4\x00\x0c\x02\x01\x02\x02\x00\x0e\x00\ \x01\x00\x2d\x00\x03\x01\x30\x02\x46\x02\x47\x02\x48\x02\x49\x02\ \x4a\x02\x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\x50\x02\x51\x02\ \x52\x02\x53\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\ \xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\ \x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\ \x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x03\x21\x00\x00\x00\ \x01\x00\x00\x00\x08\x00\x00\x00\x04\x00\x0e\x00\x02\x69\x64\x65\ \x6f\x72\x6f\x6d\x6e\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x0e\x00\x06\x00\x00\x00\x00\x00\x01\x00\x02\x00\x08\x00\ \x0c\x00\x01\xff\x56\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\ \x01\x00\x01\x00\x00\x00\x01\x00\x00\x20\x44\x00\x00\x00\x14\x00\ \x00\x00\x00\x00\x00\x20\x3c\x30\x82\x20\x38\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x07\x02\xa0\x82\x20\x29\x30\x82\x20\x25\x02\x01\ \x01\x31\x0b\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x30\x61\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\xa0\x53\x30\x51\ \x30\x2c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x1c\xa2\x1e\ \x80\x1c\x00\x3c\x00\x3c\x00\x3c\x00\x4f\x00\x62\x00\x73\x00\x6f\ \x00\x6c\x00\x65\x00\x74\x00\x65\x00\x3e\x00\x3e\x00\x3e\x30\x21\ \x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\x14\x64\xe6\xb7\ \xe0\x44\x1d\xd9\xab\x16\xe4\x21\xea\x29\x0a\x4b\x69\xa4\xf3\x10\ \xab\xa0\x82\x1b\x0f\x30\x82\x02\x3c\x30\x82\x01\xa5\x02\x10\x70\ \xba\xe4\x1d\x10\xd9\x29\x34\xb6\x38\xca\x7b\x03\xcc\xba\xbf\x30\ \x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\x05\x00\x30\x5f\ \x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\ \x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\ \x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\x13\ \x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\ \x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\ \x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\ \x1e\x17\x0d\x39\x36\x30\x31\x32\x39\x30\x30\x30\x30\x30\x30\x5a\ \x17\x0d\x32\x38\x30\x38\x30\x31\x32\x33\x35\x39\x35\x39\x5a\x30\ \x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\ \x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\ \x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\ \x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\ \x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\ \x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\ \x30\x81\x9f\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\ \x05\x00\x03\x81\x8d\x00\x30\x81\x89\x02\x81\x81\x00\xc9\x5c\x59\ \x9e\xf2\x1b\x8a\x01\x14\xb4\x10\xdf\x04\x40\xdb\xe3\x57\xaf\x6a\ \x45\x40\x8f\x84\x0c\x0b\xd1\x33\xd9\xd9\x11\xcf\xee\x02\x58\x1f\ \x25\xf7\x2a\xa8\x44\x05\xaa\xec\x03\x1f\x78\x7f\x9e\x93\xb9\x9a\ \x00\xaa\x23\x7d\xd6\xac\x85\xa2\x63\x45\xc7\x72\x27\xcc\xf4\x4c\ \xc6\x75\x71\xd2\x39\xef\x4f\x42\xf0\x75\xdf\x0a\x90\xc6\x8e\x20\ \x6f\x98\x0f\xf8\xac\x23\x5f\x70\x29\x36\xa4\xc9\x86\xe7\xb1\x9a\ \x20\xcb\x53\xa5\x85\xe7\x3d\xbe\x7d\x9a\xfe\x24\x45\x33\xdc\x76\ \x15\xed\x0f\xa2\x71\x64\x4c\x65\x2e\x81\x68\x45\xa7\x02\x03\x01\ \x00\x01\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\x05\ \x00\x03\x81\x81\x00\xbb\x4c\x12\x2b\xcf\x2c\x26\x00\x4f\x14\x13\ \xdd\xa6\xfb\xfc\x0a\x11\x84\x8c\xf3\x28\x1c\x67\x92\x2f\x7c\xb6\ \xc5\xfa\xdf\xf0\xe8\x95\xbc\x1d\x8f\x6c\x2c\xa8\x51\xcc\x73\xd8\ \xa4\xc0\x53\xf0\x4e\xd6\x26\xc0\x76\x01\x57\x81\x92\x5e\x21\xf1\ \xd1\xb1\xff\xe7\xd0\x21\x58\xcd\x69\x17\xe3\x44\x1c\x9c\x19\x44\ \x39\x89\x5c\xdc\x9c\x00\x0f\x56\x8d\x02\x99\xed\xa2\x90\x45\x4c\ \xe4\xbb\x10\xa4\x3d\xf0\x32\x03\x0e\xf1\xce\xf8\xe8\xc9\x51\x8c\ \xe6\x62\x9f\xe6\x9f\xc0\x7d\xb7\x72\x9c\xc9\x36\x3a\x6b\x9f\x4e\ \xa8\xff\x64\x0d\x64\x30\x82\x03\xee\x30\x82\x03\x57\xa0\x03\x02\ \x01\x02\x02\x10\x7e\x93\xeb\xfb\x7c\xc6\x4e\x59\xea\x4b\x9a\x77\ \xd4\x06\xfc\x3b\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x30\x81\x8b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\ \x02\x5a\x41\x31\x15\x30\x13\x06\x03\x55\x04\x08\x13\x0c\x57\x65\ \x73\x74\x65\x72\x6e\x20\x43\x61\x70\x65\x31\x14\x30\x12\x06\x03\ \x55\x04\x07\x13\x0b\x44\x75\x72\x62\x61\x6e\x76\x69\x6c\x6c\x65\ \x31\x0f\x30\x0d\x06\x03\x55\x04\x0a\x13\x06\x54\x68\x61\x77\x74\ \x65\x31\x1d\x30\x1b\x06\x03\x55\x04\x0b\x13\x14\x54\x68\x61\x77\ \x74\x65\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ \x31\x1f\x30\x1d\x06\x03\x55\x04\x03\x13\x16\x54\x68\x61\x77\x74\ \x65\x20\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\x6e\x67\x20\x43\ \x41\x30\x1e\x17\x0d\x31\x32\x31\x32\x32\x31\x30\x30\x30\x30\x30\ \x30\x5a\x17\x0d\x32\x30\x31\x32\x33\x30\x32\x33\x35\x39\x35\x39\ \x5a\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\ \x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\ \x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\ \x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\x6d\x61\x6e\x74\ \x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\ \x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\x20\x2d\x20\x47\ \x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xb1\xac\xb3\x49\x54\x4b\x97\x1c\x12\x0a\xd8\x25\x79\x91\ \x22\x57\x2a\x6f\xdc\xb8\x26\xc4\x43\x73\x6b\xc2\xbf\x2e\x50\x5a\ \xfb\x14\xc2\x76\x8e\x43\x01\x25\x43\xb4\xa1\xe2\x45\xf4\xe8\xb7\ \x7b\xc3\x74\xcc\x22\xd7\xb4\x94\x00\x02\xf7\x4d\xed\xbf\xb4\xb7\ \x44\x24\x6b\xcd\x5f\x45\x3b\xd1\x44\xce\x43\x12\x73\x17\x82\x8b\ \x69\xb4\x2b\xcb\x99\x1e\xac\x72\x1b\x26\x4d\x71\x1f\xb1\x31\xdd\ \xfb\x51\x61\x02\x53\xa6\xaa\xf5\x49\x2c\x05\x78\x45\xa5\x2f\x89\ \xce\xe7\x99\xe7\xfe\x8c\xe2\x57\x3f\x3d\xc6\x92\xdc\x4a\xf8\x7b\ \x33\xe4\x79\x0a\xfb\xf0\x75\x88\x41\x9c\xff\xc5\x03\x51\x99\xaa\ \xd7\x6c\x9f\x93\x69\x87\x65\x29\x83\x85\xc2\x60\x14\xc4\xc8\xc9\ \x3b\x14\xda\xc0\x81\xf0\x1f\x0d\x74\xde\x92\x22\xab\xca\xf7\xfb\ \x74\x7c\x27\xe6\xf7\x4a\x1b\x7f\xa7\xc3\x9e\x2d\xae\x8a\xea\xa6\ \xe6\xaa\x27\x16\x7d\x61\xf7\x98\x71\x11\xbc\xe2\x50\xa1\x4b\xe5\ \x5d\xfa\xe5\x0e\xa7\x2c\x9f\xaa\x65\x20\xd3\xd8\x96\xe8\xc8\x7c\ \xa5\x4e\x48\x44\xff\x19\xe2\x44\x07\x92\x0b\xd7\x68\x84\x80\x5d\ \x6a\x78\x64\x45\xcd\x60\x46\x7e\x54\xc1\x13\x7c\xc5\x79\xf1\xc9\ \xc1\x71\x02\x03\x01\x00\x01\xa3\x81\xfa\x30\x81\xf7\x30\x1d\x06\ \x03\x55\x1d\x0e\x04\x16\x04\x14\x5f\x9a\xf5\x6e\x5c\xcc\xcc\x74\ \x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\x30\x32\x06\x08\ \x2b\x06\x01\x05\x05\x07\x01\x01\x04\x26\x30\x24\x30\x22\x06\x08\ \x2b\x06\x01\x05\x05\x07\x30\x01\x86\x16\x68\x74\x74\x70\x3a\x2f\ \x2f\x6f\x63\x73\x70\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\ \x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\ \xff\x02\x01\x00\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\ \x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ \x6c\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\x2f\x54\x68\x61\ \x77\x74\x65\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\x6e\x67\x43\ \x41\x2e\x63\x72\x6c\x30\x13\x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\ \x06\x08\x2b\x06\x01\x05\x05\x07\x03\x08\x30\x0e\x06\x03\x55\x1d\ \x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x28\x06\x03\x55\x1d\ \x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\ \x04\x03\x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\ \x34\x38\x2d\x31\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x03\x81\x81\x00\x03\x09\x9b\x8f\x79\xef\x7f\x59\x30\ \xaa\xef\x68\xb5\xfa\xe3\x09\x1d\xbb\x4f\x82\x06\x5d\x37\x5f\xa6\ \x52\x9f\x16\x8d\xea\x1c\x92\x09\x44\x6e\xf5\x6d\xeb\x58\x7c\x30\ \xe8\xf9\x69\x8d\x23\x73\x0b\x12\x6f\x47\xa9\xae\x39\x11\xf8\x2a\ \xb1\x9b\xb0\x1a\xc3\x8e\xeb\x59\x96\x00\xad\xce\x0c\x4d\xb2\xd0\ \x31\xa6\x08\x5c\x2a\x7a\xfc\xe2\x7a\x1d\x57\x4c\xa8\x65\x18\xe9\ \x79\x40\x62\x25\x96\x6e\xc7\xc7\x37\x6a\x83\x21\x08\x8e\x41\xea\ \xdd\xd9\x57\x3f\x1d\x77\x49\x87\x2a\x16\x06\x5e\xa6\x38\x6a\x22\ \x12\xa3\x51\x19\x83\x7e\xb6\x30\x82\x04\x90\x30\x82\x03\xf9\xa0\ \x03\x02\x01\x02\x02\x10\x1b\x09\x3b\x78\x60\x96\xda\x37\xbb\xa4\ \x51\x94\x46\xc8\x96\x78\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x05\x05\x00\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\ \x35\x06\x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\ \x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\ \x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\ \x68\x6f\x72\x69\x74\x79\x30\x1e\x17\x0d\x30\x36\x31\x31\x30\x38\ \x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x31\x31\x31\x30\x37\x32\ \x33\x35\x39\x35\x39\x5a\x30\x81\xca\x31\x0b\x30\x09\x06\x03\x55\ \x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\ \x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\ \x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\ \x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\ \x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\x20\x32\ \x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\ \x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\x72\x69\ \x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\x30\x43\ \x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\x6e\x20\ \x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\ \x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\ \x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x20\x2d\ \x20\x47\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\ \x82\x01\x01\x00\xaf\x24\x08\x08\x29\x7a\x35\x9e\x60\x0c\xaa\xe7\ \x4b\x3b\x4e\xdc\x7c\xbc\x3c\x45\x1c\xbb\x2b\xe0\xfe\x29\x02\xf9\ \x57\x08\xa3\x64\x85\x15\x27\xf5\xf1\xad\xc8\x31\x89\x5d\x22\xe8\ \x2a\xaa\xa6\x42\xb3\x8f\xf8\xb9\x55\xb7\xb1\xb7\x4b\xb3\xfe\x8f\ \x7e\x07\x57\xec\xef\x43\xdb\x66\x62\x15\x61\xcf\x60\x0d\xa4\xd8\ \xde\xf8\xe0\xc3\x62\x08\x3d\x54\x13\xeb\x49\xca\x59\x54\x85\x26\ \xe5\x2b\x8f\x1b\x9f\xeb\xf5\xa1\x91\xc2\x33\x49\xd8\x43\x63\x6a\ \x52\x4b\xd2\x8f\xe8\x70\x51\x4d\xd1\x89\x69\x7b\xc7\x70\xf6\xb3\ \xdc\x12\x74\xdb\x7b\x5d\x4b\x56\xd3\x96\xbf\x15\x77\xa1\xb0\xf4\ \xa2\x25\xf2\xaf\x1c\x92\x67\x18\xe5\xf4\x06\x04\xef\x90\xb9\xe4\ \x00\xe4\xdd\x3a\xb5\x19\xff\x02\xba\xf4\x3c\xee\xe0\x8b\xeb\x37\ \x8b\xec\xf4\xd7\xac\xf2\xf6\xf0\x3d\xaf\xdd\x75\x91\x33\x19\x1d\ \x1c\x40\xcb\x74\x24\x19\x21\x93\xd9\x14\xfe\xac\x2a\x52\xc7\x8f\ \xd5\x04\x49\xe4\x8d\x63\x47\x88\x3c\x69\x83\xcb\xfe\x47\xbd\x2b\ \x7e\x4f\xc5\x95\xae\x0e\x9d\xd4\xd1\x43\xc0\x67\x73\xe3\x14\x08\ \x7e\xe5\x3f\x9f\x73\xb8\x33\x0a\xcf\x5d\x3f\x34\x87\x96\x8a\xee\ \x53\xe8\x25\x15\x02\x03\x01\x00\x01\xa3\x82\x01\x5b\x30\x82\x01\ \x57\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\ \x01\xff\x30\x31\x06\x03\x55\x1d\x1f\x04\x2a\x30\x28\x30\x26\xa0\ \x24\xa0\x22\x86\x20\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\ \x33\x2e\x63\x72\x6c\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\ \x04\x03\x02\x01\x06\x30\x3d\x06\x03\x55\x1d\x20\x04\x36\x30\x34\ \x30\x32\x06\x04\x55\x1d\x20\x00\x30\x2a\x30\x28\x06\x08\x2b\x06\ \x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\ \x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x63\x70\x73\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x7f\ \xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\xaf\ \x33\x31\x33\x30\x6d\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0c\x04\ \x61\x30\x5f\xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\x55\x16\x09\x69\ \x6d\x61\x67\x65\x2f\x67\x69\x66\x30\x21\x30\x1f\x30\x07\x06\x05\ \x2b\x0e\x03\x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\ \xc3\xcf\x80\x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\ \x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\ \x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\ \x69\x66\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x28\ \x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x18\ \x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\xa3\xcd\x7d\x1e\xf7\ \xc7\x75\x8d\x48\xe7\x56\x34\x4c\x00\x90\x75\xa9\x51\xa5\x56\xc1\ \x6d\xbc\xfe\xf5\x53\x22\xe9\x98\xa2\xac\x9a\x7e\x70\x1e\xb3\x8e\ \x3b\x45\xe3\x86\x95\x31\xda\x6d\x4c\xfb\x34\x50\x80\x96\xcd\x24\ \xf2\x40\xdf\x04\x3f\xe2\x65\xce\x34\x22\x61\x15\xea\x66\x70\x64\ \xd2\xf1\x6e\xf3\xca\x18\x59\x6a\x41\x46\x7e\x82\xde\x19\xb0\x70\ \x31\x56\x69\x0d\x0c\xe6\x1d\x9d\x71\x58\xdc\xcc\xde\x62\xf5\xe1\ \x7a\x10\x02\xd8\x7a\xdc\x3b\xfa\x57\xbd\xc9\xe9\x8f\x46\x21\x39\ \x9f\x51\x65\x4c\x8e\x3a\xbe\x28\x41\x70\x1d\x30\x82\x04\xa3\x30\ \x82\x03\x8b\xa0\x03\x02\x01\x02\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\ \xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x0d\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5e\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\ \x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\ \x6f\x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\ \x13\x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\ \x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\ \x73\x20\x43\x41\x20\x2d\x20\x47\x32\x30\x1e\x17\x0d\x31\x32\x31\ \x30\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x31\x32\ \x32\x39\x32\x33\x35\x39\x35\x39\x5a\x30\x62\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\ \x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\ \x6f\x72\x61\x74\x69\x6f\x6e\x31\x34\x30\x32\x06\x03\x55\x04\x03\ \x13\x2b\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\ \x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\ \x73\x20\x53\x69\x67\x6e\x65\x72\x20\x2d\x20\x47\x34\x30\x82\x01\ \x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xa2\x63\ \x0b\x39\x44\xb8\xbb\x23\xa7\x44\x49\xbb\x0e\xff\xa1\xf0\x61\x0a\ \x53\x93\xb0\x98\xdb\xad\x2c\x0f\x4a\xc5\x6e\xff\x86\x3c\x53\x55\ \x0f\x15\xce\x04\x3f\x2b\xfd\xa9\x96\x96\xd9\xbe\x61\x79\x0b\x5b\ \xc9\x4c\x86\x76\xe5\xe0\x43\x4b\x22\x95\xee\xc2\x2b\x43\xc1\x9f\ \xd8\x68\xb4\x8e\x40\x4f\xee\x85\x38\xb9\x11\xc5\x23\xf2\x64\x58\ \xf0\x15\x32\x6f\x4e\x57\xa1\xae\x88\xa4\x02\xd7\x2a\x1e\xcd\x4b\ \xe1\xdd\x63\xd5\x17\x89\x32\x5b\xb0\x5e\x99\x5a\xa8\x9d\x28\x50\ \x0e\x17\xee\x96\xdb\x61\x3b\x45\x51\x1d\xcf\x12\x56\x0b\x92\x47\ \xfc\xab\xae\xf6\x66\x3d\x47\xac\x70\x72\xe7\x92\xe7\x5f\xcd\x10\ \xb9\xc4\x83\x64\x94\x19\xbd\x25\x80\xe1\xe8\xd2\x22\xa5\xd0\xba\ \x02\x7a\xa1\x77\x93\x5b\x65\xc3\xee\x17\x74\xbc\x41\x86\x2a\xdc\ \x08\x4c\x8c\x92\x8c\x91\x2d\x9e\x77\x44\x1f\x68\xd6\xa8\x74\x77\ \xdb\x0e\x5b\x32\x8b\x56\x8b\x33\xbd\xd9\x63\xc8\x49\x9d\x3a\xc5\ \xc5\xea\x33\x0b\xd2\xf1\xa3\x1b\xf4\x8b\xbe\xd9\xb3\x57\x8b\x3b\ \xde\x04\xa7\x7a\x22\xb2\x24\xae\x2e\xc7\x70\xc5\xbe\x4e\x83\x26\ \x08\xfb\x0b\xbd\xa9\x4f\x99\x08\xe1\x10\x28\x72\xaa\xcd\x02\x03\ \x01\x00\x01\xa3\x82\x01\x57\x30\x82\x01\x53\x30\x0c\x06\x03\x55\ \x1d\x13\x01\x01\xff\x04\x02\x30\x00\x30\x16\x06\x03\x55\x1d\x25\ \x01\x01\xff\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\x07\x03\ \x08\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x07\ \x80\x30\x73\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x67\x30\ \x65\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x1e\x68\ \x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x6f\x63\x73\x70\x2e\x77\x73\ \x2e\x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x30\x37\x06\ \x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2b\x68\x74\x74\x70\x3a\ \x2f\x2f\x74\x73\x2d\x61\x69\x61\x2e\x77\x73\x2e\x73\x79\x6d\x61\ \x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\x61\x2d\ \x67\x32\x2e\x63\x65\x72\x30\x3c\x06\x03\x55\x1d\x1f\x04\x35\x30\ \x33\x30\x31\xa0\x2f\xa0\x2d\x86\x2b\x68\x74\x74\x70\x3a\x2f\x2f\ \x74\x73\x2d\x63\x72\x6c\x2e\x77\x73\x2e\x73\x79\x6d\x61\x6e\x74\ \x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\x61\x2d\x67\x32\ \x2e\x63\x72\x6c\x30\x28\x06\x03\x55\x1d\x11\x04\x21\x30\x1f\xa4\ \x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\x13\x10\x54\x69\ \x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\x34\x38\x2d\x32\x30\x1d\ \x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x46\xc6\x69\xa3\x0e\x4a\x14\ \x1e\xd5\x4c\xda\x52\x63\x17\x3f\x5e\x36\xbc\x0d\xe6\x30\x1f\x06\ \x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x5f\x9a\xf5\x6e\x5c\xcc\ \xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\x30\x0d\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\ \x01\x00\x78\x3b\xb4\x91\x2a\x00\x4c\xf0\x8f\x62\x30\x37\x78\xa3\ \x84\x27\x07\x6f\x18\xb2\xde\x25\xdc\xa0\xd4\x94\x03\xaa\x86\x4e\ \x25\x9f\x9a\x40\x03\x1c\xdd\xce\xe3\x79\xcb\x21\x68\x06\xda\xb6\ \x32\xb4\x6d\xbf\xf4\x2c\x26\x63\x33\xe4\x49\x64\x6d\x0d\xe6\xc3\ \x67\x0e\xf7\x05\xa4\x35\x6c\x7c\x89\x16\xc6\xe9\xb2\xdf\xb2\xe9\ \xdd\x20\xc6\x71\x0f\xcd\x95\x74\xdc\xb6\x5c\xde\xbd\x37\x1f\x43\ \x78\xe6\x78\xb5\xcd\x28\x04\x20\xa3\xaa\xf1\x4b\xc4\x88\x29\x91\ \x0e\x80\xd1\x11\xfc\xdd\x5c\x76\x6e\x4f\x5e\x0e\x45\x46\x41\x6e\ \x0d\xb0\xea\x38\x9a\xb1\x3a\xda\x09\x71\x10\xfc\x1c\x79\xb4\x80\ \x7b\xac\x69\xf4\xfd\x9c\xb6\x0c\x16\x2b\xf1\x7f\x5b\x09\x3d\x9b\ \x5b\xe2\x16\xca\x13\x81\x6d\x00\x2e\x38\x0d\xa8\x29\x8f\x2c\xe1\ \xb2\xf4\x5a\xa9\x01\xaf\x15\x9c\x2c\x2f\x49\x1b\xdb\x22\xbb\xc3\ \xfe\x78\x94\x51\xc3\x86\xb1\x82\x88\x5d\xf0\x3d\xb4\x51\xa1\x79\ \x33\x2b\x2e\x7b\xb9\xdc\x20\x09\x13\x71\xeb\x6a\x19\x5b\xcf\xe8\ \xa5\x30\x57\x2c\x89\x49\x3f\xb9\xcf\x7f\xc9\xbf\x3e\x22\x68\x63\ \x53\x9a\xbd\x69\x74\xac\xc5\x1d\x3c\x7f\x92\xe0\xc3\xbc\x1c\xd8\ \x04\x75\x30\x82\x05\x90\x30\x82\x04\x78\xa0\x03\x02\x01\x02\x02\ \x10\x74\x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\ \x68\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\ \x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\ \x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\ \x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\x55\ \x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\x72\x75\ \x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\x06\x03\ \x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x75\x73\ \x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\ \x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\ \x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\x04\x03\ \x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\x73\x73\ \x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\x67\x20\ \x32\x30\x31\x30\x20\x43\x41\x30\x1e\x17\x0d\x31\x32\x30\x39\x31\ \x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x31\x33\x30\x39\x31\x38\ \x32\x33\x35\x39\x35\x39\x5a\x30\x81\xd3\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x55\x53\x31\x13\x30\x11\x06\x03\x55\x04\x08\ \x13\x0a\x43\x61\x6c\x69\x66\x6f\x72\x6e\x69\x61\x31\x11\x30\x0f\ \x06\x03\x55\x04\x07\x13\x08\x53\x61\x6e\x20\x4a\x6f\x73\x65\x31\ \x23\x30\x21\x06\x03\x55\x04\x0a\x14\x1a\x41\x64\x6f\x62\x65\x20\ \x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\ \x61\x74\x65\x64\x31\x12\x30\x10\x06\x03\x55\x04\x0b\x14\x09\x54\ \x79\x70\x65\x20\x46\x6f\x6e\x74\x31\x3e\x30\x3c\x06\x03\x55\x04\ \x0b\x13\x35\x44\x69\x67\x69\x74\x61\x6c\x20\x49\x44\x20\x43\x6c\ \x61\x73\x73\x20\x33\x20\x2d\x20\x4d\x69\x63\x72\x6f\x73\x6f\x66\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x56\x61\x6c\x69\x64\ \x61\x74\x69\x6f\x6e\x20\x76\x32\x31\x23\x30\x21\x06\x03\x55\x04\ \x03\x14\x1a\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\ \x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x30\x82\x01\ \x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb7\xc2\ \x11\x53\x5d\x28\xa2\x61\xd3\x04\xd4\x71\xbe\x3c\x39\x3e\x5a\xc0\ \x1e\x1c\xba\xed\xe2\x94\xc3\xc7\x38\x83\xc1\xeb\x2d\x6b\x0f\x4a\ \xb8\x8a\x27\xff\x17\x15\x05\xca\xde\xea\x4b\xa1\x77\x92\x64\x0e\ \x4f\xf6\xf2\xd3\xf6\x06\xbe\x99\x95\xb3\x63\x1a\xc6\xb2\xad\xe1\ \xa6\x0b\x70\xe7\xd6\x35\x52\xc2\x21\x8a\x96\x32\x2c\x0d\x62\x8a\ \xd6\x1f\xd7\x93\xe7\x12\x71\xf5\x0c\xd1\xae\x71\x60\x55\x74\x52\ \xd0\xae\xe2\x55\x95\x0f\xe0\x0f\x5c\xe9\x37\xa6\x08\x4b\x5c\x91\ \xff\xd4\x92\xba\x15\xe4\x62\x8c\x6a\x73\xdd\x50\xab\xa8\x56\x9e\ \x4a\x5e\x72\xbf\x13\xcd\xe9\xc0\xd3\x92\x9b\x8c\xb9\x6b\x0a\xb9\ \x27\x4f\xb8\x51\x9b\x5e\x16\x69\x1d\xd3\xee\x67\xd5\x28\xf7\xe4\ \x0c\x8f\xeb\x7c\xd8\x5a\xc8\x78\x6b\xf5\x76\xea\x32\x43\xdf\x72\ \x3f\x9a\x72\x69\x8d\x00\x54\xd2\x09\xfb\x9e\xda\xe9\xc2\xe0\xa9\ \x43\xd4\x92\x74\x4a\xb7\xc4\x01\x8f\xe3\x30\x4b\xad\xb1\x40\x58\ \x57\x60\xd6\x8f\x83\xf3\x8b\xeb\xc0\xbd\xd5\x43\x4f\x65\x11\x3f\ \x72\x15\x17\x5e\xad\xda\xff\x71\x05\xb2\x29\x9e\x9c\x0d\x78\x88\ \xe7\xed\x4b\x9c\x92\xa4\xcd\xa1\x1a\xfd\x8f\x08\x9e\xad\x02\x03\ \x01\x00\x01\xa3\x82\x01\x7b\x30\x82\x01\x77\x30\x09\x06\x03\x55\ \x1d\x13\x04\x02\x30\x00\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\ \x04\x04\x03\x02\x07\x80\x30\x40\x06\x03\x55\x1d\x1f\x04\x39\x30\ \x37\x30\x35\xa0\x33\xa0\x31\x86\x2f\x68\x74\x74\x70\x3a\x2f\x2f\ \x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x63\x72\x6c\x2e\x76\x65\ \x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\x33\x2d\ \x32\x30\x31\x30\x2e\x63\x72\x6c\x30\x44\x06\x03\x55\x1d\x20\x04\ \x3d\x30\x3b\x30\x39\x06\x0b\x60\x86\x48\x01\x86\xf8\x45\x01\x07\ \x17\x03\x30\x2a\x30\x28\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x01\ \x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\ \x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\x70\x73\x30\x13\ \x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\ \x07\x03\x03\x30\x71\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\ \x65\x30\x63\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\ \x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\ \x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x3b\x06\x08\x2b\x06\x01\ \x05\x05\x07\x30\x02\x86\x2f\x68\x74\x74\x70\x3a\x2f\x2f\x63\x73\ \x63\x33\x2d\x32\x30\x31\x30\x2d\x61\x69\x61\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\x33\x2d\x32\x30\ \x31\x30\x2e\x63\x65\x72\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\ \x16\x80\x14\xcf\x99\xa9\xea\x7b\x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\ \x05\x26\xef\xe3\xd2\xa7\x9d\x30\x11\x06\x09\x60\x86\x48\x01\x86\ \xf8\x42\x01\x01\x04\x04\x03\x02\x04\x10\x30\x16\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x1b\x04\x08\x30\x06\x01\x01\x00\x01\ \x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\ \x00\x03\x82\x01\x01\x00\xaa\x68\x61\xbd\xaf\xdd\x52\x02\xc4\x8e\ \x41\xa5\x7d\x6f\x88\x9e\xbe\xfe\xb9\xcb\xb7\x6b\xed\xc2\x38\x65\ \x1b\x62\x31\x44\xdb\x9b\xad\x39\x33\xbf\x85\x94\xff\x6c\x00\xf9\ \xba\x94\x94\xa0\x9b\x5b\xe7\x4f\x1f\x2d\x03\x59\xe0\xe3\xa2\xdd\ \x63\xd6\xbc\xe5\x2b\x74\x01\x7b\x2d\xa4\x00\x74\x36\xdb\x5e\x92\ \x99\x9b\xf8\x7b\x17\xb9\xbf\xdd\x38\x4c\xe6\x2c\x84\xfa\x4e\x2a\ \xda\x10\x99\xd5\xf4\x8d\x95\x81\x33\xed\x64\x0f\x9b\x48\x44\x22\ \x34\x5f\x07\x63\x71\xdb\x68\xcc\xd1\x51\xff\x38\xdf\xda\xe8\x0e\ \xb3\xc1\xea\x25\xaf\x08\xb3\x0c\x9d\xca\x30\x93\xca\x0c\x7e\xdd\ \x3b\x80\xd8\x23\xa2\x0a\xd5\x16\x25\xdc\x0c\xda\xdb\xdd\x32\x03\ \xb5\x9b\x1f\xfa\xd1\x52\xf9\xd9\x9a\x2a\x10\x3e\x8c\xb1\x97\x1b\ \x41\x2e\xa9\x1f\x01\x2f\x6f\x49\x09\xdc\x6c\xb7\x2b\xce\x7f\xd8\ \x2f\xdc\xcc\x7d\xf6\x69\x1e\xdf\x94\x1d\xc9\xc5\x76\xa5\xe2\xf7\ \x34\x2b\x76\xd3\xf4\x2e\x3e\x14\xe2\xea\x6a\x41\xf2\xdf\xed\x7f\ \x0e\x2f\xdc\xee\xae\xf6\x05\x6c\x0a\x40\x40\xf1\x4f\x21\x8a\x83\ \x83\xa4\xb6\x8e\x07\x67\x15\x73\xd4\x06\x60\xdc\xc4\xda\x19\x8b\ \x4b\x28\x35\xb6\xc1\xe1\x30\x82\x06\x0a\x30\x82\x04\xf2\xa0\x03\ \x02\x01\x02\x02\x10\x52\x00\xe5\xaa\x25\x56\xfc\x1a\x86\xed\x96\ \xc9\xd4\x4b\x33\xc7\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x05\x05\x00\x30\x81\xca\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\ \x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3a\ \x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\x20\x32\x30\x30\ \x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\ \x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\x72\x69\x7a\x65\ \x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\x30\x43\x06\x03\ \x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\ \x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\ \x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\ \x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x20\x2d\x20\x47\ \x35\x30\x1e\x17\x0d\x31\x30\x30\x32\x30\x38\x30\x30\x30\x30\x30\ \x30\x5a\x17\x0d\x32\x30\x30\x32\x30\x37\x32\x33\x35\x39\x35\x39\ \x5a\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\ \x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\ \x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\ \x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\x72\ \x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\x06\ \x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x75\ \x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\ \x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\ \x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\x04\ \x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\x73\ \x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\x67\ \x20\x32\x30\x31\x30\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\ \x30\x82\x01\x0a\x02\x82\x01\x01\x00\xf5\x23\x4b\x5e\xa5\xd7\x8a\ \xbb\x32\xe9\xd4\x57\xf7\xef\xe4\xc7\x26\x7e\xad\x19\x98\xfe\xa8\ \x9d\x7d\x94\xf6\x36\x6b\x10\xd7\x75\x81\x30\x7f\x04\x68\x7f\xcb\ \x2b\x75\x1e\xcd\x1d\x08\x8c\xdf\x69\x94\xa7\x37\xa3\x9c\x7b\x80\ \xe0\x99\xe1\xee\x37\x4d\x5f\xce\x3b\x14\xee\x86\xd4\xd0\xf5\x27\ \x35\xbc\x25\x0b\x38\xa7\x8c\x63\x9d\x17\xa3\x08\xa5\xab\xb0\xfb\ \xcd\x6a\x62\x82\x4c\xd5\x21\xda\x1b\xd9\xf1\xe3\x84\x3b\x8a\x2a\ \x4f\x85\x5b\x90\x01\x4f\xc9\xa7\x76\x10\x7f\x27\x03\x7c\xbe\xae\ \x7e\x7d\xc1\xdd\xf9\x05\xbc\x1b\x48\x9c\x69\xe7\xc0\xa4\x3c\x3c\ \x41\x00\x3e\xdf\x96\xe5\xc5\xe4\x94\x71\xd6\x55\x01\xc7\x00\x26\ \x4a\x40\x3c\xb5\xa1\x26\xa9\x0c\xa7\x6d\x80\x8e\x90\x25\x7b\xcf\ \xbf\x3f\x1c\xeb\x2f\x96\xfa\xe5\x87\x77\xc6\xb5\x56\xb2\x7a\x3b\ \x54\x30\x53\x1b\xdf\x62\x34\xff\x1e\xd1\xf4\x5a\x93\x28\x85\xe5\ \x4c\x17\x4e\x7e\x5b\xfd\xa4\x93\x99\x7f\xdf\xcd\xef\xa4\x75\xef\ \xef\x15\xf6\x47\xe7\xf8\x19\x72\xd8\x2e\x34\x1a\xa6\xb4\xa7\x4c\ \x7e\xbd\xbb\x4f\x0c\x3d\x57\xf1\x30\xd6\xa6\x36\x8e\xd6\x80\x76\ \xd7\x19\x2e\xa5\xcd\x7e\x34\x2d\x89\x02\x03\x01\x00\x01\xa3\x82\ \x01\xfe\x30\x82\x01\xfa\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\ \x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x70\x06\x03\x55\x1d\ \x20\x04\x69\x30\x67\x30\x65\x06\x0b\x60\x86\x48\x01\x86\xf8\x45\ \x01\x07\x17\x03\x30\x56\x30\x28\x06\x08\x2b\x06\x01\x05\x05\x07\ \x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\x70\x73\ \x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x02\x30\x1e\x1a\x1c\ \x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\x61\x30\x0e\x06\x03\ \x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x6d\x06\x08\ \x2b\x06\x01\x05\x05\x07\x01\x0c\x04\x61\x30\x5f\xa1\x5d\xa0\x5b\ \x30\x59\x30\x57\x30\x55\x16\x09\x69\x6d\x61\x67\x65\x2f\x67\x69\ \x66\x30\x21\x30\x1f\x30\x07\x06\x05\x2b\x0e\x03\x02\x1a\x04\x14\ \x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\xc3\xcf\x80\x6a\xd4\x48\x18\ \x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\x74\x74\x70\x3a\x2f\x2f\x6c\ \x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\x69\x66\x30\x34\x06\x03\x55\ \x1d\x1f\x04\x2d\x30\x2b\x30\x29\xa0\x27\xa0\x25\x86\x23\x68\x74\ \x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x76\x65\x72\x69\x73\x69\x67\ \x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\x33\x2d\x67\x35\x2e\x63\x72\ \x6c\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x28\x30\ \x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x18\x68\ \x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\x69\x73\ \x69\x67\x6e\x2e\x63\x6f\x6d\x30\x1d\x06\x03\x55\x1d\x25\x04\x16\ \x30\x14\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x02\x06\x08\x2b\x06\ \x01\x05\x05\x07\x03\x03\x30\x28\x06\x03\x55\x1d\x11\x04\x21\x30\ \x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\x13\x10\ \x56\x65\x72\x69\x53\x69\x67\x6e\x4d\x50\x4b\x49\x2d\x32\x2d\x38\ \x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xcf\x99\xa9\xea\x7b\ \x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\x05\x26\xef\xe3\xd2\xa7\x9d\x30\ \x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x7f\xd3\x65\xa7\ \xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\xaf\x33\x31\x33\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\ \x82\x01\x01\x00\x56\x22\xe6\x34\xa4\xc4\x61\xcb\x48\xb9\x01\xad\ \x56\xa8\x64\x0f\xd9\x8c\x91\xc4\xbb\xcc\x0c\xe5\xad\x7a\xa0\x22\ \x7f\xdf\x47\x38\x4a\x2d\x6c\xd1\x7f\x71\x1a\x7c\xec\x70\xa9\xb1\ \xf0\x4f\xe4\x0f\x0c\x53\xfa\x15\x5e\xfe\x74\x98\x49\x24\x85\x81\ \x26\x1c\x91\x14\x47\xb0\x4c\x63\x8c\xbb\xa1\x34\xd4\xc6\x45\xe8\ \x0d\x85\x26\x73\x03\xd0\xa9\x8c\x64\x6d\xdc\x71\x92\xe6\x45\x05\ \x60\x15\x59\x51\x39\xfc\x58\x14\x6b\xfe\xd4\xa4\xed\x79\x6b\x08\ \x0c\x41\x72\xe7\x37\x22\x06\x09\xbe\x23\xe9\x3f\x44\x9a\x1e\xe9\ \x61\x9d\xcc\xb1\x90\x5c\xfc\x3d\xd2\x8d\xac\x42\x3d\x65\x36\xd4\ \xb4\x3d\x40\x28\x8f\x9b\x10\xcf\x23\x26\xcc\x4b\x20\xcb\x90\x1f\ \x5d\x8c\x4c\x34\xca\x3c\xd8\xe5\x37\xd6\x6f\xa5\x20\xbd\x34\xeb\ \x26\xd9\xae\x0d\xe7\xc5\x9a\xf7\xa1\xb4\x21\x91\x33\x6f\x86\xe8\ \x58\xbb\x25\x7c\x74\x0e\x58\xfe\x75\x1b\x63\x3f\xce\x31\x7c\x9b\ \x8f\x1b\x96\x9e\xc5\x53\x76\x84\x5b\x9c\xad\x91\xfa\xac\xed\x93\ \xba\x5d\xc8\x21\x53\xc2\x82\x53\x63\xaf\x12\x0d\x50\x87\x11\x1b\ \x3d\x54\x52\x96\x8a\x2c\x9c\x3d\x92\x1a\x08\x9a\x05\x2e\xc7\x93\ \xa5\x48\x91\xd3\x31\x82\x04\x9b\x30\x82\x04\x97\x02\x01\x01\x30\ \x81\xc9\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\ \x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\ \x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\ \x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\ \x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\ \x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\ \x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\ \x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\ \x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\ \x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\ \x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\ \x67\x20\x32\x30\x31\x30\x20\x43\x41\x02\x10\x74\x25\x53\xad\x07\ \xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\x68\x30\x09\x06\x05\x2b\ \x0e\x03\x02\x1a\x05\x00\xa0\x81\x98\x30\x14\x06\x09\x2b\x06\x01\ \x04\x01\x82\x37\x28\x01\x31\x07\x03\x05\x00\x03\x00\x00\x00\x30\ \x19\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\x31\x0c\x06\x0a\ \x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\x30\x1c\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x0b\x31\x0e\x30\x0c\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x15\x30\x22\x06\x0a\x2b\x06\x01\x04\ \x01\x82\x37\x02\x01\x0c\x31\x14\x30\x12\xa1\x10\x80\x0e\x77\x77\ \x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x20\x30\x23\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\x39\x5c\x1c\ \xfc\x3c\x54\x3a\x26\xf1\xab\x5b\x19\xef\x03\x28\x03\x37\xa7\xd5\ \x41\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x04\x82\x01\x00\x0e\x42\xda\xc0\x12\x0a\x78\x58\x13\x2c\x52\xa9\ \x06\x8b\xd9\x54\x59\x12\xd8\xa8\x19\xb9\x7b\x40\x9b\x1b\x65\xc5\ \x5c\xf1\x34\x0e\x39\xe6\xcc\x0e\xb1\x17\x6b\xfa\x11\x4e\x9f\xab\ \x78\x2e\x72\x23\x91\x9a\x03\x84\x48\x6e\x22\xb6\x82\xb1\x22\x4f\ \x54\x45\x43\xa0\x04\xcb\xeb\x0f\x62\xe7\x91\x94\x14\x51\x5f\xba\ \x2a\xc7\x01\xdc\xa8\xd4\xa9\x3a\xc3\xf6\xcf\x24\x6d\xa0\x28\x14\ \x5d\x73\x5c\x93\x46\x13\x1a\xf0\x0a\x89\xf4\xbe\x82\x2a\xae\xd1\ \xa2\x4f\x60\xe3\x85\xf8\x04\x89\xd1\xa3\xa9\xa6\x3a\x5c\x50\x64\ \x67\x2f\x41\x96\x65\xdd\x5e\x28\x76\x31\x24\x20\xfb\xbe\x60\x93\ \xda\xa6\xad\x18\xa6\x74\x05\x3b\xed\xf4\x1f\x93\xee\x70\xa3\x13\ \x83\x21\xd8\xb1\xb4\x1d\x98\x66\x3e\x3c\x51\x07\xc7\xad\x6b\xdf\ \xdb\x96\xb5\xff\x5c\xe7\x00\xfb\x5e\x9a\x30\x35\x29\x53\x07\x7f\ \x1a\x63\x85\x5a\xa7\x1e\xe7\xde\xb7\x58\xed\xf6\x56\x7e\x21\xf5\ \x01\xd3\x60\x6b\xdf\x6a\x28\x40\xab\xe0\x5a\xf1\xf0\xd2\x5a\xa6\ \xcc\x93\x18\x82\x74\xd4\xc3\x36\x07\xd4\x43\xff\x17\xd9\xc7\x7a\ \x1c\x71\xc6\x97\x9a\x50\xfb\xce\x27\xe9\x21\xd1\x99\x9a\x89\xb8\ \xe1\x55\x5e\x63\xa1\x82\x02\x0b\x30\x82\x02\x07\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x09\x06\x31\x82\x01\xf8\x30\x82\x01\xf4\x02\ \x01\x01\x30\x72\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\ \x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\x79\ \x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\ \x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\x6d\ \x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\x70\ \x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\x20\ \x2d\x20\x47\x32\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\xbf\x35\x6e\x04\ \xd8\x6a\x98\x1b\x1a\x50\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\ \x00\xa0\x5d\x30\x18\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\ \x31\x0b\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\x01\x30\x1c\x06\ \x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x05\x31\x0f\x17\x0d\x31\x33\ \x30\x31\x31\x31\x31\x39\x32\x35\x35\x39\x5a\x30\x23\x06\x09\x2a\ \x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\x70\x8d\xd1\xe2\ \x98\xae\x27\x4b\xf8\x19\x8b\x99\x49\x4b\xd8\x27\x25\xc5\x6d\x39\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x04\ \x82\x01\x00\x18\x9a\x10\xae\x94\xf0\x35\xb7\x39\x84\x7b\x39\x6d\ \xc8\xab\xce\x87\xfa\x5e\x32\x44\xb3\x0e\x70\xc8\x92\xbf\x26\x95\ \xce\x8d\x8c\x26\x94\x04\xba\xa3\x9d\x8a\xbd\xfa\x87\x8b\x26\x53\ \xfa\xa6\x1b\xd8\x86\x33\xe1\x3e\x94\x96\x2b\xd6\xb4\xdf\xaa\xf8\ \xd6\x6d\x37\x0f\x03\xec\x51\x60\x03\x93\xeb\x23\xaa\xff\x1f\x0f\ \xc1\x59\x2b\x19\x61\x40\x8e\xc6\x3d\xa0\xee\x5a\x32\x0b\x50\x4f\ \x6e\xc3\xe0\x34\xde\x91\x34\x85\x8c\x2b\xd5\xad\x65\x64\x61\x04\ \xee\xc8\x97\x2f\x4e\xf5\xd8\xe4\x18\x7c\x17\x7b\xbf\x2f\x4b\x62\ \x69\x4f\x46\x74\x87\x66\xdf\xef\x66\x58\x0b\x1c\x47\x06\x0f\x5a\ \x99\x6d\xb9\x88\xda\x10\xb5\x45\xe3\x8d\x47\x25\x20\x1e\x53\x5a\ \xe1\x92\x7d\xaf\xe1\x83\x0d\x55\xfc\xd9\x38\x0a\x5b\xfc\x67\x9f\ \x35\xf3\x22\xbf\x62\x3c\xe2\x4b\x91\x7a\xdf\xb5\x25\x13\xb3\xb8\ \x12\x46\x94\x81\xfc\x66\xe1\x10\x5b\x75\x9b\xb1\x3e\x2c\x47\x79\ \xd3\xb5\xb9\xe7\x37\x21\x56\xbd\x5e\x72\x58\xc9\xfe\xe9\xd0\x09\ \x4d\x68\xba\xcf\xfc\x3b\x6d\x9a\xfe\xdd\x3b\xf1\xc9\x00\x00\x6f\ \xf2\xcc\x9d\x58\xbb\x7d\x38\x76\x00\x65\xe5\xa4\x56\x6f\x57\xa8\ \x7d\x62\xbd\ " qt_resource_name = b"\ \x00\x05\ \x00\x6d\x65\xb3\ \x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x73\ \x00\x0c\ \x0b\x3e\xb1\x13\ \x00\x70\ \x00\x79\x00\x71\x00\x6f\x00\x64\x00\x65\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x02\ \x00\x00\x07\x83\ \x00\x72\ \x00\x63\ \x00\x11\ \x0f\xe3\xd5\x67\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x13\ \x06\x57\x1d\xe7\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x09\ \x06\x98\x83\x27\ \x00\x63\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x07\x06\xe2\xa7\ \x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x2d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6c\x00\x65\x00\x73\ \x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x03\xd2\xbe\x67\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x27\xb1\x67\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x1c\xb1\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0d\x28\xe1\x67\ \x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x2d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6d\x00\x6f\x00\x72\ \x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x04\x92\x1e\xa7\ \x00\x67\ \x00\x6f\x00\x74\x00\x6f\x00\x2d\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x01\x75\x95\x07\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0d\ \x0c\xd2\xbf\xe7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0f\xcb\x90\x67\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x65\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0b\xa9\xab\x27\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x61\x00\x73\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x04\xbc\xbb\x27\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x07\xb1\x59\x27\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x63\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0e\xa7\x95\x87\ \x00\x63\ \x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2d\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0e\x95\xda\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x74\x00\x72\x00\x61\x00\x73\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0c\x42\xa9\xc7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x04\xc3\x8b\x07\ \x00\x67\ \x00\x6f\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0c\xaa\xc0\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x70\x00\x61\x00\x73\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x04\x85\x73\x67\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x05\x98\xb3\xe7\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x02\x6f\x48\x87\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x77\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x13\ \x0a\xb9\xc8\x07\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x2d\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x0b\ \x06\x3d\x10\x27\ \x00\x67\ \x00\x6f\x00\x2d\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0c\x2b\x1f\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x08\xcd\xb5\x87\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2d\x00\x72\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0e\x36\x76\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x04\x9e\xb8\x66\ \x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\x00\x6f\x00\x6c\ \x00\x64\x00\x2e\x00\x74\x00\x74\x00\x66\ \x00\x19\ \x0c\xda\xf1\x06\ \x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x52\x00\x65\x00\x67\ \x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x74\x00\x74\x00\x66\ " qt_resource_struct = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x20\ \x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x1c\x00\x00\x00\x04\ \x00\x00\x01\x16\x00\x00\x00\x00\x00\x01\x00\x00\x22\xa5\ \x00\x00\x01\x88\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x55\ \x00\x00\x03\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x71\x61\ \x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x13\x5b\ \x00\x00\x03\x08\x00\x00\x00\x00\x00\x01\x00\x00\x6e\xd8\ \x00\x00\x01\x68\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x66\ \x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x00\x43\x69\ \x00\x00\x02\xce\x00\x00\x00\x00\x00\x01\x00\x00\x61\xdb\ \x00\x00\x03\x32\x00\x00\x00\x00\x00\x01\x00\x00\x70\x50\ \x00\x00\x03\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x79\x4e\ \x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x05\x39\ \x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x06\xa2\ \x00\x00\x00\xa4\x00\x00\x00\x00\x00\x01\x00\x00\x0f\x1e\ \x00\x00\x02\x48\x00\x00\x00\x00\x00\x01\x00\x00\x47\x94\ \x00\x00\x03\xea\x00\x00\x00\x00\x00\x01\x00\x00\x85\x90\ \x00\x00\x03\x86\x00\x00\x00\x00\x00\x01\x00\x00\x73\xd2\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x70\ \x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xaf\ \x00\x00\x03\xce\x00\x00\x00\x00\x00\x01\x00\x00\x7f\x65\ \x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x5b\xa4\ \x00\x00\x02\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x68\x33\ \x00\x00\x01\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x2f\x7b\ \x00\x00\x01\x36\x00\x00\x00\x00\x00\x01\x00\x00\x26\x3a\ \x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x8e\xa2\ \x00\x00\x02\x88\x00\x00\x00\x00\x00\x01\x00\x00\x54\x1b\ \x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x27\ \x00\x00\x01\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x37\x7d\ \x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x02\x00\x00\x00\x21\ \x00\x00\x04\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x94\xe6\ \x00\x00\x04\x70\x00\x00\x00\x00\x00\x01\x00\x02\x6b\xa2\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources() Turing-0.11-beta/pyqode/core/_forms/search_panel_ui.py 0000664 0000000 0000000 00000026214 13314727572 0023045 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/search_panel.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_SearchPanel(object): def setupUi(self, SearchPanel): SearchPanel.setObjectName("SearchPanel") SearchPanel.resize(884, 90) SearchPanel.setStyleSheet("") self.verticalLayout = QtWidgets.QVBoxLayout(SearchPanel) self.verticalLayout.setContentsMargins(0, 0, 0, 0) self.verticalLayout.setSpacing(0) self.verticalLayout.setObjectName("verticalLayout") self.frame = QtWidgets.QFrame(SearchPanel) self.frame.setFrameShape(QtWidgets.QFrame.NoFrame) self.frame.setFrameShadow(QtWidgets.QFrame.Raised) self.frame.setObjectName("frame") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.frame) self.verticalLayout_2.setContentsMargins(9, 9, 9, 9) self.verticalLayout_2.setSpacing(9) self.verticalLayout_2.setObjectName("verticalLayout_2") self.widgetSearch = QtWidgets.QWidget(self.frame) self.widgetSearch.setObjectName("widgetSearch") self.horizontalLayout = QtWidgets.QHBoxLayout(self.widgetSearch) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.labelSearch = QtWidgets.QLabel(self.widgetSearch) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.labelSearch.sizePolicy().hasHeightForWidth()) self.labelSearch.setSizePolicy(sizePolicy) self.labelSearch.setMinimumSize(QtCore.QSize(0, 0)) self.labelSearch.setMaximumSize(QtCore.QSize(18, 18)) self.labelSearch.setText("") self.labelSearch.setPixmap(QtGui.QPixmap(":/pycode-icons/rc/edit-find.png")) self.labelSearch.setScaledContents(True) self.labelSearch.setObjectName("labelSearch") self.horizontalLayout.addWidget(self.labelSearch) self.lineEditSearch = PromptLineEdit(self.widgetSearch) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lineEditSearch.sizePolicy().hasHeightForWidth()) self.lineEditSearch.setSizePolicy(sizePolicy) self.lineEditSearch.setMinimumSize(QtCore.QSize(200, 0)) self.lineEditSearch.setObjectName("lineEditSearch") self.horizontalLayout.addWidget(self.lineEditSearch) self.toolButtonPrevious = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonPrevious.setText("") icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/pyqode_icons/rc/go-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonPrevious.setIcon(icon) self.toolButtonPrevious.setObjectName("toolButtonPrevious") self.horizontalLayout.addWidget(self.toolButtonPrevious) self.toolButtonNext = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonNext.setText("") icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/pycode-icons/rc/go-down.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonNext.setIcon(icon1) self.toolButtonNext.setObjectName("toolButtonNext") self.horizontalLayout.addWidget(self.toolButtonNext) self.checkBoxRegex = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxRegex.setObjectName("checkBoxRegex") self.horizontalLayout.addWidget(self.checkBoxRegex) self.checkBoxCase = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxCase.setStyleSheet("") self.checkBoxCase.setObjectName("checkBoxCase") self.horizontalLayout.addWidget(self.checkBoxCase) self.checkBoxWholeWords = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxWholeWords.setObjectName("checkBoxWholeWords") self.horizontalLayout.addWidget(self.checkBoxWholeWords) self.checkBoxInSelection = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxInSelection.setObjectName("checkBoxInSelection") self.horizontalLayout.addWidget(self.checkBoxInSelection) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.labelMatches = QtWidgets.QLabel(self.widgetSearch) self.labelMatches.setObjectName("labelMatches") self.horizontalLayout.addWidget(self.labelMatches) self.toolButtonClose = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonClose.setText("") icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(":/pycode-icons/rc/close.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonClose.setIcon(icon2) self.toolButtonClose.setObjectName("toolButtonClose") self.horizontalLayout.addWidget(self.toolButtonClose) self.verticalLayout_2.addWidget(self.widgetSearch) self.widgetReplace = QtWidgets.QWidget(self.frame) self.widgetReplace.setObjectName("widgetReplace") self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.widgetReplace) self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.labelReplace = QtWidgets.QLabel(self.widgetReplace) self.labelReplace.setMaximumSize(QtCore.QSize(18, 18)) self.labelReplace.setText("") self.labelReplace.setPixmap(QtGui.QPixmap(":/pycode-icons/rc/edit-find-replace.png")) self.labelReplace.setScaledContents(True) self.labelReplace.setObjectName("labelReplace") self.horizontalLayout_2.addWidget(self.labelReplace) self.lineEditReplace = PromptLineEdit(self.widgetReplace) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lineEditReplace.sizePolicy().hasHeightForWidth()) self.lineEditReplace.setSizePolicy(sizePolicy) self.lineEditReplace.setMinimumSize(QtCore.QSize(200, 0)) self.lineEditReplace.setObjectName("lineEditReplace") self.horizontalLayout_2.addWidget(self.lineEditReplace) self.toolButtonReplace = QtWidgets.QToolButton(self.widgetReplace) self.toolButtonReplace.setObjectName("toolButtonReplace") self.horizontalLayout_2.addWidget(self.toolButtonReplace) self.toolButtonReplaceAll = QtWidgets.QToolButton(self.widgetReplace) self.toolButtonReplaceAll.setObjectName("toolButtonReplaceAll") self.horizontalLayout_2.addWidget(self.toolButtonReplaceAll) spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem1) self.lineEditReplace.raise_() self.toolButtonReplace.raise_() self.toolButtonReplaceAll.raise_() self.labelReplace.raise_() self.verticalLayout_2.addWidget(self.widgetReplace) self.verticalLayout.addWidget(self.frame) self.actionSearch = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("edit-find") self.actionSearch.setIcon(icon) self.actionSearch.setIconVisibleInMenu(True) self.actionSearch.setObjectName("actionSearch") self.actionActionSearchAndReplace = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("edit-find-replace") self.actionActionSearchAndReplace.setIcon(icon) self.actionActionSearchAndReplace.setIconVisibleInMenu(True) self.actionActionSearchAndReplace.setObjectName("actionActionSearchAndReplace") self.actionFindNext = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("go-down") self.actionFindNext.setIcon(icon) self.actionFindNext.setIconVisibleInMenu(True) self.actionFindNext.setObjectName("actionFindNext") self.actionFindPrevious = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("go-up") self.actionFindPrevious.setIcon(icon) self.actionFindPrevious.setIconVisibleInMenu(True) self.actionFindPrevious.setObjectName("actionFindPrevious") self.retranslateUi(SearchPanel) QtCore.QMetaObject.connectSlotsByName(SearchPanel) SearchPanel.setTabOrder(self.lineEditSearch, self.lineEditReplace) SearchPanel.setTabOrder(self.lineEditReplace, self.toolButtonPrevious) SearchPanel.setTabOrder(self.toolButtonPrevious, self.toolButtonNext) SearchPanel.setTabOrder(self.toolButtonNext, self.checkBoxCase) SearchPanel.setTabOrder(self.checkBoxCase, self.checkBoxWholeWords) SearchPanel.setTabOrder(self.checkBoxWholeWords, self.toolButtonReplace) SearchPanel.setTabOrder(self.toolButtonReplace, self.toolButtonReplaceAll) SearchPanel.setTabOrder(self.toolButtonReplaceAll, self.toolButtonClose) def retranslateUi(self, SearchPanel): SearchPanel.setWindowTitle(_("Form")) self.lineEditSearch.setToolTip(_("Search term")) self.toolButtonPrevious.setToolTip(_("Select previous occurence")) self.toolButtonNext.setToolTip(_("Select next occurence")) self.checkBoxRegex.setToolTip(_("Use a regular expression for search occurences")) self.checkBoxRegex.setText(_("Regex")) self.checkBoxCase.setToolTip(_("Enable case sensitive search")) self.checkBoxCase.setText(_("Match case")) self.checkBoxWholeWords.setToolTip(_("Search for whole words only")) self.checkBoxWholeWords.setText(_("Whole words")) self.checkBoxInSelection.setText(_("In Selection")) self.labelMatches.setText(_("0 matches")) self.lineEditReplace.setToolTip(_("Replacement text")) self.toolButtonReplace.setToolTip(_("Replace current occurence")) self.toolButtonReplace.setText(_("Replace")) self.toolButtonReplaceAll.setToolTip(_("Replace all occurences")) self.toolButtonReplaceAll.setText(_("Replace All")) self.actionSearch.setText(_("Search")) self.actionSearch.setToolTip(_("Show the search panel")) self.actionSearch.setShortcut(_("Ctrl+F")) self.actionActionSearchAndReplace.setText(_("Search and replace")) self.actionActionSearchAndReplace.setToolTip(_("Show the search and replace panel")) self.actionActionSearchAndReplace.setShortcut(_("Ctrl+R")) self.actionFindNext.setText(_("Find next")) self.actionFindNext.setToolTip(_("Find the next occurrence (downward)")) self.actionFindNext.setShortcut(_("F3")) self.actionFindPrevious.setText(_("Find previous")) self.actionFindPrevious.setToolTip(_("Find previous occurrence (upward)")) self.actionFindPrevious.setShortcut(_("Shift+F3")) from pyqode.core.widgets import PromptLineEdit from . import pyqode_core_rc Turing-0.11-beta/pyqode/core/api/ 0000775 0000000 0000000 00000000000 13314727572 0016631 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/api/__init__.py 0000664 0000000 0000000 00000002226 13314727572 0020744 0 ustar 00root root 0000000 0000000 """ This package contains the bases classes of pyqode and some utility functions. """ from .code_edit import CodeEdit from .decoration import TextDecoration from .encodings import ENCODINGS_MAP, convert_to_codec_key from .manager import Manager from .mode import Mode from .panel import Panel from .syntax_highlighter import ColorScheme from .syntax_highlighter import PYGMENTS_STYLES from .syntax_highlighter import SyntaxHighlighter from .syntax_highlighter import TextBlockUserData from .utils import TextHelper, TextBlockHelper from .utils import get_block_symbol_data from .utils import DelayJobRunner from .folding import FoldDetector from .folding import IndentFoldDetector from .folding import CharBasedFoldDetector from .folding import FoldScope __all__ = [ 'convert_to_codec_key', 'get_block_symbol_data', 'CharBasedFoldDetector', 'CodeEdit', 'ColorScheme', 'DelayJobRunner', 'ENCODINGS_MAP', 'FoldDetector', 'IndentFoldDetector', 'FoldScope', 'Manager', 'Mode', 'Panel', 'PYGMENTS_STYLES', 'SyntaxHighlighter', 'TextBlockUserData', 'TextDecoration', 'TextHelper', 'TextBlockHelper' ] Turing-0.11-beta/pyqode/core/api/client.py 0000664 0000000 0000000 00000034136 13314727572 0020470 0 ustar 00root root 0000000 0000000 """ This module contains the client socket API. This API is exposed to the user throught the backend manager ( :class:`pyqode.core.managers.BackendManager`) """ import locale import json import logging import socket import struct import sys import uuid from weakref import ref from pyqode.qt import QtCore, QtNetwork def _logger(): return logging.getLogger(__name__) #: log level for communication COMM = 1 def comm(msg, *args): _logger().log(COMM, msg, *args) #: Dictionary of socket errors messages SOCKET_ERROR_STRINGS = { 0: 'the connection was refused by the peer (or timed out).', 1: 'the remote host closed the connection.', 2: 'the host address was not found.', 3: 'the socket operation failed because the application lacked the ' 'required privileges.', 4: 'the local system ran out of resources (e.g., too many sockets).', 5: 'the socket operation timed out.', 6: "the datagram was larger than the operating system's limit (which can " "be as low as 8192 bytes).", 7: 'an error occurred with the network (e.g., the network cable was ' 'accidentally plugged out).', # 9 and 10 are UDP only, we only care about TCP. # all others erros are unlikely to happen in our case (proxy related # errors) - 1: 'an unidentified error occurred.', } #: Dictionary of process errors messages PROCESS_ERROR_STRING = { 0: 'the process failed to start. Either the invoked program is missing, ' 'or you may have insufficient permissions to invoke the program.', 1: 'the process crashed some time after starting successfully.', 2: 'the last waitFor...() function timed out. The state of QProcess is ' 'unchanged, and you can try calling waitFor...() again.', 4: 'an error occurred when attempting to write to the process. ' 'For example, the process may not be running, or it may have closed ' 'its input channel.', 3: 'an error occurred when attempting to read from the process. ' 'For example, the process may not be running.', 5: 'an unknown error occurred. This is the default return value of ' 'error().' } if sys.version_info[0] >= 3: class WeakMethod(ref): """ A custom `weakref.ref` subclass which simulates a weak reference to a bound method, working around the lifetime problem of bound methods. """ __slots__ = "_func_ref", "_meth_type", "_alive", "__weakref__" def __new__(cls, meth, callback=None): try: obj = meth.__self__ func = meth.__func__ except AttributeError: raise TypeError("argument should be a bound method, not {}" .format(type(meth))) def _cb(arg): # The self-weakref trick is needed to avoid creating a # reference cycle. self = self_wr() if self._alive: self._alive = False if callback is not None: callback(self) self = ref.__new__(cls, obj, _cb) self._func_ref = ref(func, _cb) self._meth_type = type(meth) self._alive = True self_wr = ref(self) return self def __call__(self): obj = super().__call__() func = self._func_ref() if obj is None or func is None: return None return self._meth_type(func, obj) def __eq__(self, other): if isinstance(other, WeakMethod): if not self._alive or not other._alive: return self is other return ref.__eq__(self, other) and \ self._func_ref == other._func_ref return False def __ne__(self, other): if isinstance(other, WeakMethod): if not self._alive or not other._alive: return self is not other return ref.__ne__(self, other) or \ self._func_ref != other._func_ref return True __hash__ = ref.__hash__ else: class _weak_callable: def __init__(self, obj, func): self._obj = obj self._meth = func def __call__(self, *args, **kws): if self._obj is not None: return self._meth(self._obj, *args, **kws) else: return self._meth(*args, **kws) def __getattr__(self, attr): if attr == 'im_self': return self._obj if attr == 'im_func': return self._meth raise AttributeError(attr) class WeakMethod: """ Wraps a function or, more importantly, a bound method, in a way that allows a bound method's object to be GC'd, while providing the same interface as a normal weak reference. """ def __init__(self, fn): try: self._obj = ref(fn.im_self) self._meth = fn.im_func except AttributeError: # It's not a bound method. self._obj = None self._meth = fn def __call__(self): if self._dead(): return None return _weak_callable(self._obj(), self._meth) def _dead(self): return self._obj is not None and self._obj() is None class JsonTcpClient(QtNetwork.QTcpSocket): """ A json tcp client socket used to start and communicate with the pyqode backend. It uses a simple message protocol. A message is made up of two parts. parts: - header: contains the length of the payload. (4bytes) - payload: data as a json string. """ #: Internal signal emitted when the backend request finished and the #: socket can be removed from the list of sockets maintained by the #: backend manager finished = QtCore.Signal(QtNetwork.QTcpSocket) def __init__(self, parent, port, worker_class_or_function, args, on_receive=None): super(JsonTcpClient, self).__init__(parent) self._port = port self._worker = worker_class_or_function self._args = args self._header_complete = False self._header_buf = bytes() self._to_read = 0 self._data_buf = bytes() if on_receive: try: self._callback = WeakMethod(on_receive) except TypeError: # unbound method (i.e. free function) self._callback = ref(on_receive) else: self._callback = None self.is_connected = False self._closed = False self.connected.connect(self._on_connected) self.error.connect(self._on_error) self.disconnected.connect(self._on_disconnected) self.readyRead.connect(self._on_ready_read) self._connect() def close(self): self._closed = True # fix issue with QTimer.singleShot super(JsonTcpClient, self).close() self._callback = None def _send_request(self): """ Sends the request to the backend. """ if isinstance(self._worker, str): classname = self._worker else: classname = '%s.%s' % (self._worker.__module__, self._worker.__name__) self.request_id = str(uuid.uuid4()) self.send({'request_id': self.request_id, 'worker': classname, 'data': self._args}) def send(self, obj, encoding='utf-8'): """ Sends a python object to the backend. The object **must be JSON serialisable**. :param obj: object to send :param encoding: encoding used to encode the json message into a bytes array, this should match CodeEdit.file.encoding. """ comm('sending request: %r', obj) msg = json.dumps(obj) msg = msg.encode(encoding) header = struct.pack('=I', len(msg)) self.write(header) self.write(msg) @staticmethod def pick_free_port(): """ Picks a free port """ test_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) test_socket.bind(('127.0.0.1', 0)) free_port = int(test_socket.getsockname()[1]) test_socket.close() return free_port def _connect(self): """ Connects our client socket to the backend socket """ if self is None: return comm('connecting to 127.0.0.1:%d', self._port) address = QtNetwork.QHostAddress('127.0.0.1') self.connectToHost(address, self._port) if sys.platform == 'darwin': self.waitForConnected() def _on_connected(self): comm('connected to backend: %s:%d', self.peerName(), self.peerPort()) self.is_connected = True self._send_request() def _on_error(self, error): if error not in SOCKET_ERROR_STRINGS: # pragma: no cover error = -1 if error == 1 and self.is_connected or ( not self.is_connected and error == 0 and not self._closed): log_fct = comm else: log_fct = _logger().warning if error == 0 and not self.is_connected and not self._closed: QtCore.QTimer.singleShot(100, self._connect) log_fct(SOCKET_ERROR_STRINGS[error]) def _on_disconnected(self): try: comm('disconnected from backend: %s:%d', self.peerName(), self.peerPort()) except (AttributeError, RuntimeError): # logger might be None if for some reason qt deletes the socket # after python global exit pass try: self.is_connected = False except AttributeError: pass def _read_header(self): comm('reading header') self._header_buf += self.read(4) if len(self._header_buf) == 4: self._header_complete = True try: header = struct.unpack('=I', self._header_buf) except TypeError: # pyside header = struct.unpack('=I', self._header_buf.data()) self._to_read = header[0] self._header_buf = bytes() comm('header content: %d', self._to_read) def _read_payload(self): """ Reads the payload (=data) """ comm('reading payload data') comm('remaining bytes to read: %d', self._to_read) data_read = self.read(self._to_read) nb_bytes_read = len(data_read) comm('%d bytes read', nb_bytes_read) self._data_buf += data_read self._to_read -= nb_bytes_read if self._to_read <= 0: try: data = self._data_buf.decode('utf-8') except AttributeError: data = bytes(self._data_buf.data()).decode('utf-8') comm('payload read: %r', data) comm('payload length: %r', len(self._data_buf)) comm('decoding payload as json object') obj = json.loads(data) comm('response received: %r', obj) try: results = obj['results'] except (KeyError, TypeError): results = None # possible callback if self._callback and self._callback(): self._callback()(results) self._header_complete = False self._data_buf = bytes() self.finished.emit(self) def _on_ready_read(self): """ Read bytes when ready read """ while self.bytesAvailable(): if not self._header_complete: self._read_header() else: self._read_payload() class BackendProcess(QtCore.QProcess): """ Extends QProcess with methods to easily manipulate the backend process. Also logs everything that is written to the process' stdout/stderr. """ def __init__(self, parent): super(BackendProcess, self).__init__(parent) self.started.connect(self._on_process_started) self.error.connect(self._on_process_error) self.finished.connect(self._on_process_finished) self.readyReadStandardOutput.connect(self._on_process_stdout_ready) self.readyReadStandardError.connect(self._on_process_stderr_ready) self.running = False self.starting = True self._srv_logger = logging.getLogger('pyqode.backend') self._prevent_logs = False self._encoding = locale.getpreferredencoding() def _on_process_started(self): """ Logs process started """ comm('backend process started') if self is None: return self.starting = False self.running = True def _on_process_error(self, error): """ Logs process error """ if self is None: return if error not in PROCESS_ERROR_STRING: error = -1 if not self._prevent_logs: _logger().warning(PROCESS_ERROR_STRING[error]) def _on_process_finished(self, exit_code): """ Logs process exit status """ comm('backend process finished with exit code %d', exit_code) try: self.running = False except AttributeError: pass def _on_process_stdout_ready(self): """ Logs process output """ if not self: return o = self.readAllStandardOutput() try: output = bytes(o).decode(self._encoding) except TypeError: output = bytes(o.data()).decode(self._encoding) for line in output.splitlines(): self._srv_logger.log(1, line) def _on_process_stderr_ready(self): """ Logs process output (stderr) """ try: o = self.readAllStandardError() except (TypeError, RuntimeError): # widget already deleted return try: output = bytes(o).decode(self._encoding) except TypeError: output = bytes(o.data()).decode(self._encoding) for line in output.splitlines(): self._srv_logger.error(line) def terminate(self): """ Terminate the process """ self.running = False super(BackendProcess, self).terminate() Turing-0.11-beta/pyqode/core/api/code_edit.py 0000664 0000000 0000000 00000132351 13314727572 0021127 0 ustar 00root root 0000000 0000000 """ This module contains the base code editor widget. """ from __future__ import print_function import os import sys try: from future.builtins import str, super except: # not availabe on python 3.2 (but not needed) pass import logging import platform from pyqode.core import icons from pyqode.core.cache import Cache from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.core.dialogs.goto import DlgGotoLine from pyqode.core.managers import BackendManager from pyqode.core.managers import FileManager from pyqode.core.managers import ModesManager from pyqode.core.managers import TextDecorationsManager from pyqode.core.managers import PanelsManager # ensure pyqode resource have been imported and are ready to be used. from pyqode.core._forms import pyqode_core_rc from pyqode.qt import QtWidgets, QtCore, QtGui def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class CodeEdit(QtWidgets.QPlainTextEdit): """ The editor widget is a simple extension to QPlainTextEdit. It adds a few utility signals/methods and introduces the concepts of **Managers, Modes and Panels**. A **mode/panel** is an editor extension that, once added to a CodeEdit instance, may modify its behaviour and appearance: * **Modes** are simple objects which connect to the editor signals to append new behaviours (such as automatic indentation, code completion, syntax checking,...) * **Panels** are the combination of a **Mode** and a **QWidget**. They are displayed in the CodeEdit's content margins. When you install a Panel on a CodeEdit, you can choose to install it in one of the four following zones: .. image:: _static/editor_widget.png :align: center :width: 600 :height: 450 A **manager** is an object that literally manage a specific aspect of :class:`pyqode.core.api.CodeEdit`. There are managers to manage the list of modes/panels, to open/save file and to control the backend: - :attr:`pyqode.core.api.CodeEdit.file`: File manager. Use it to open/save files or access the opened file attribute. - :attr:`pyqode.core.api.CodeEdit.backend`: Backend manager. Use it to start/stop the backend or send a work request. - :attr:`pyqode.core.api.CodeEdit.modes`: Modes manager. Use it to append/remove modes on the editor. - :attr:`pyqode.core.api.CodeEdit.panels`: Modes manager. Use it to append/remove panels on the editor. Starting from version 2.1, CodeEdit defines the :attr:`pyqode.core.api.CodeEdit.mimetypes` class attribute that can be used by IDE to determine which editor to use for a given mime type. This property is a list of supported mimetypes. An empty list means the CodeEdit is generic. **Code editors specialised for a specific language should define the mime types they support!** """ #: Paint hook painted = QtCore.Signal(QtGui.QPaintEvent) #: Signal emitted when a new text is set on the widget new_text_set = QtCore.Signal() #: Signal emitted when the text is saved to file text_saved = QtCore.Signal(str) #: Signal emitted before the text is saved to file text_saving = QtCore.Signal(str) #: Signal emitted when the dirty state changed dirty_changed = QtCore.Signal(bool) #: Signal emitted when a key is pressed key_pressed = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when a key is released key_released = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when a mouse button is pressed mouse_pressed = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when a mouse button is released mouse_released = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when a mouse double click event occured mouse_double_clicked = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted on a wheel event mouse_wheel_activated = QtCore.Signal(QtGui.QWheelEvent) #: Signal emitted at the end of the key_pressed event post_key_pressed = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when focusInEvent is is called focused_in = QtCore.Signal(QtGui.QFocusEvent) #: Signal emitted when the mouse_moved mouse_moved = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when the user press the TAB key indent_requested = QtCore.Signal() #: Signal emitted when the user press the BACK-TAB (Shift+TAB) key unindent_requested = QtCore.Signal() #: Store the list of mimetypes associated with the editor, for #: specialised editors. mimetypes = [] _DEFAULT_FONT = 'Source Code Pro' if sys.platform != 'darwin' else 'Monaco' @property def use_spaces_instead_of_tabs(self): """ Use spaces instead of tabulations. Default is True. """ return self._use_spaces_instead_of_tabs @use_spaces_instead_of_tabs.setter def use_spaces_instead_of_tabs(self, value): self._use_spaces_instead_of_tabs = value for c in self.clones: c.use_spaces_instead_of_tabs = value @property def tab_length(self): """ Tab length, number of spaces. """ return self._tab_length @tab_length.setter def tab_length(self, value): if value < 2: value = 2 self._tab_length = value for c in self.clones: c.tab_length = value @property def save_on_focus_out(self): """ Automatically saves editor content on focus out. Default is False. """ return self._save_on_focus_out @save_on_focus_out.setter def save_on_focus_out(self, value): self._save_on_focus_out = value for c in self.clones: c.save_on_focus_out = value @property def show_whitespaces(self): """ Shows/Hides virtual white spaces. """ return self._show_whitespaces @show_whitespaces.setter def show_whitespaces(self, value): if self._show_whitespaces != value: self._show_whitespaces = value self._set_whitespaces_flags(value) for c in self.clones: c.show_whitespaces = value self.rehighlight() @property def font_name(self): """ The editor font family name. """ return self._font_family @font_name.setter def font_name(self, value): if value == "": value = self._DEFAULT_FONT self._font_family = value self._reset_stylesheet() for c in self.clones: c.font_name = value @property def zoom_level(self): """ Gets/Sets the editor zoom level. The zoom level is a value that is added to the current editor font size. Negative values are used to zoom out the editor, positive values are used to zoom in the editor. """ return self._zoom_level @zoom_level.setter def zoom_level(self, value): self._zoom_level = value @property def font_size(self): """ The font point size. .. note:: Please, **never use setFontPointSize/setFontFamily functions directly** as the values you define there will be overwritten as soon as the user zoom the editor or as soon as a stylesheet property has changed. """ return self._font_size @font_size.setter def font_size(self, value): self._font_size = value self._reset_stylesheet() for c in self.clones: c.font_size = value @property def background(self): """ The editor background color (QColor) """ return self._background @background.setter def background(self, value): self._background = value self._reset_stylesheet() for c in self.clones: c.background = value @property def foreground(self): """ The editor foreground color (QColor) """ return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._reset_stylesheet() for c in self.clones: c.foreground = value @property def whitespaces_foreground(self): """ The editor white spaces' foreground color. White spaces are highlighted by the syntax highlighter. You should call rehighlight to update their color. This is not done automatically to prevent multiple, useless call to ``rehighlight`` which can take some time on big files. """ return self._whitespaces_foreground @whitespaces_foreground.setter def whitespaces_foreground(self, value): self._whitespaces_foreground = value for c in self.clones: c.whitespaces_foreground = value @property def selection_background(self): """ The editor selection's background color. """ return self._sel_background @selection_background.setter def selection_background(self, value): self._sel_background = value self._reset_stylesheet() for c in self.clones: c.selection_background = value @property def selection_foreground(self): """ The editor selection's foreground color. """ return self._sel_foreground @selection_foreground.setter def selection_foreground(self, value): self._sel_foreground = value for c in self.clones: c.selection_foreground = value @property def word_separators(self): """ The list of word separators used by the code completion mode and the word clicked mode. """ return self._word_separators @word_separators.setter def word_separators(self, value): self._word_separators = value for c in self.clones: c._word_separators = value @property def dirty(self): """ Tells whethere the content of editor has been modified. (this is just a shortcut to QTextDocument.isModified :type: bool """ return self.document().isModified() @property def visible_blocks(self): """ Returns the list of visible blocks. Each element in the list is a tuple made up of the line top position, the line number and the QTextBlock itself. :return: A list of tuple(top_position, line_number, block) :rtype: List of tuple(int, int, QtWidgets.QTextBlock) """ return self._visible_blocks @property def file(self): """ Returns a reference to the :class:`pyqode.core.managers.FileManager` used to open/save file on the editor """ return self._file @file.setter def file(self, file_manager): """ Sets a custom file manager. :param file_manager: custom file manager instance. """ self._file = file_manager @property def backend(self): """ Returns a reference to the :class:`pyqode.core.managers.BackendManager` used to control the backend process. """ return self._backend @property def modes(self): """ Returns a reference to the :class:`pyqode.core.managers.ModesManager` used to manage the collection of installed modes. """ return self._modes @property def panels(self): """ Returns a reference to the :class:`pyqode.core.managers.PanelsManager` used to manage the collection of installed panels """ return self._panels @property def decorations(self): """ Returns a reference to the :class:`pyqode.core.managers.TextDecorationManager` used to manage the list of :class:`pyqode.core.api.TextDecoration` """ return self._decorations @property def syntax_highlighter(self): """ Returns a reference to the syntax highlighter mode currently used to highlight the editor content. :return: :class:`pyqode.core.api.SyntaxHighlighter` """ for mode in self.modes: if hasattr(mode, 'highlightBlock'): return mode return None @property def show_context_menu(self): """ Specifies whether we should display the context menu or not. Default is True """ return self._show_ctx_mnu @show_context_menu.setter def show_context_menu(self, value): self._show_ctx_mnu = value @property def select_line_on_copy_empty(self): """ :return: state of "whole line selecting" on copy with empty selection :rtype: bool """ return self._select_line_on_copy_empty @select_line_on_copy_empty.setter def select_line_on_copy_empty(self, value): """ To turn on/off selecting the whole line when copy with empty selection is triggered Default is True """ self._select_line_on_copy_empty = value def __init__(self, parent=None, create_default_actions=True): """ :param parent: Parent widget :param create_default_actions: True to create the action for the standard shortcuts (copy, paste, delete, undo, redo,...). Non-standard actions will always get created. If you would like to prevent the context menu from showing, just set the :attr:`show_menu_enabled` to False. """ super(CodeEdit, self).__init__(parent) self.installEventFilter(self) self.clones = [] self._show_ctx_mnu = True self._default_font_size = 10 self._backend = BackendManager(self) self._file = FileManager(self) self._modes = ModesManager(self) self._panels = PanelsManager(self) self._decorations = TextDecorationsManager(self) self.document().modificationChanged.connect(self._emit_dirty_changed) self._word_separators = [ '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+', '{', '}', '|', ':', '"', "'", "<", ">", "?", ",", ".", "/", ";", '[', ']', '\\', '\n', '\t', '=', '-', ' ' ] self._save_on_focus_out = False self._use_spaces_instead_of_tabs = True self._whitespaces_foreground = None self._sel_background = None self._show_whitespaces = False self._foreground = None self._sel_foreground = None self._tab_length = 4 self._zoom_level = 0 self._font_size = 10 self._background = None QtGui.QFontDatabase.addApplicationFont( ':/fonts/rc/SourceCodePro-Regular.ttf') QtGui.QFontDatabase.addApplicationFont( ':/fonts/rc/SourceCodePro-Bold.ttf') self._font_family = self._DEFAULT_FONT self._mimetypes = [] self._select_line_on_copy_empty = True # Flags/Working variables self._last_mouse_pos = QtCore.QPoint(0, 0) self._modified_lines = set() self._cleaning = False self._visible_blocks = [] self._tooltips_runner = DelayJobRunner(delay=700) self._prev_tooltip_block_nbr = -1 self._original_text = "" self._dirty = False # setup context menu self._actions = [] self._menus = [] self._init_actions(create_default_actions) self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self._mnu = None # bug with PySide (github #63) # init settings and styles from global settings/style modules self._init_settings() self._init_style() # connect slots self.textChanged.connect(self._on_text_changed) self.blockCountChanged.connect(self.update) self.cursorPositionChanged.connect(self.update) self.selectionChanged.connect(self.update) self.setMouseTracking(True) self.setCenterOnScroll(True) self.setLineWrapMode(self.NoWrap) self.setCursorWidth(2) def __repr__(self): return '%s(path=%r)' % (self.__class__.__name__, self.file.path) def split(self): """ Split the code editor widget, return a clone of the widget ready to be used (and synchronised with its original). Splitting the widget is done in 2 steps: - first we clone the widget, you can override ``clone`` if your widget needs additional arguments. - then we link the two text document and disable some modes on the cloned instance (such as the watcher mode). """ # cache cursor position so that the clone open at the current cursor # pos l, c = TextHelper(self).cursor_position() clone = self.clone() self.link(clone) TextHelper(clone).goto_line(l, c) self.clones.append(clone) return clone def clone(self): """ Clone ourselves, return an instance of the same class, using the default QWidget constructor. """ clone = self.__class__(parent=self.parent()) return clone def link(self, clone): """ Links the clone with its original. We copy the file manager infos (path, mimetype, ...) and setup the clone text document as reference to our text document. :param clone: clone to link. """ clone.file._path = self.file.path clone.file._encoding = self.file.encoding clone.file._mimetype = self.file.mimetype clone.setDocument(self.document()) for original_mode, mode in zip(list(self.modes), list(clone.modes)): mode.enabled = original_mode.enabled mode.clone_settings(original_mode) for original_panel, panel in zip( list(self.panels), list(clone.panels)): panel.enabled = original_panel.isEnabled() panel.clone_settings(original_panel) if not original_panel.isVisible(): panel.setVisible(False) clone.use_spaces_instead_of_tabs = self.use_spaces_instead_of_tabs clone.tab_length = self.tab_length clone._save_on_focus_out = self._save_on_focus_out clone.show_whitespaces = self.show_whitespaces clone.font_name = self.font_name clone.font_size = self.font_size clone.zoom_level = self.zoom_level clone.background = self.background clone.foreground = self.foreground clone.whitespaces_foreground = self.whitespaces_foreground clone.selection_background = self.selection_background clone.selection_foreground = self.selection_foreground clone.word_separators = self.word_separators clone.file.clone_settings(self.file) def close(self, clear=True): """ Closes the editor, stops the backend and removes any installed mode/panel. This is also where we cache the cursor position. :param clear: True to clear the editor content before closing. """ if self._tooltips_runner: self._tooltips_runner.cancel_requests() self._tooltips_runner = None self.decorations.clear() self.modes.clear() self.panels.clear() self.backend.stop() Cache().set_cursor_position( self.file.path, self.textCursor().position()) super(CodeEdit, self).close() def set_mouse_cursor(self, cursor): """ Changes the viewport's cursor :param cursor: the mouse cursor to set. :type cursor: QtWidgets.QCursor """ self.viewport().setCursor(cursor) def show_tooltip(self, pos, tooltip, _sender_deco=None): """ Show a tool tip at the specified position :param pos: Tooltip position :param tooltip: Tooltip text :param _sender_deco: TextDecoration which is the sender of the show tooltip request. (for internal use only). """ if _sender_deco is not None and _sender_deco not in self.decorations: return QtWidgets.QToolTip.showText(pos, tooltip[0: 1024], self) def setPlainText(self, txt, mime_type, encoding): """ Extends setPlainText to force the user to setup an encoding and a mime type. Emits the new_text_set signal. :param txt: The new text to set. :param mime_type: Associated mimetype. Setting the mime will update the pygments lexer. :param encoding: text encoding """ self.file.mimetype = mime_type self.file._encoding = encoding self._original_text = txt self._modified_lines.clear() import time t = time.time() super(CodeEdit, self).setPlainText(txt) _logger().log(5, 'setPlainText duration: %fs' % (time.time() - t)) self.new_text_set.emit() self.redoAvailable.emit(False) self.undoAvailable.emit(False) def add_action(self, action, sub_menu='Advanced'): """ Adds an action to the editor's context menu. :param action: QAction to add to the context menu. :param sub_menu: The name of a sub menu where to put the action. 'Advanced' by default. If None or empty, the action will be added at the root of the submenu. """ if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: mnu = QtWidgets.QMenu(sub_menu) self.add_menu(mnu) self._sub_menus[sub_menu] = mnu finally: mnu.addAction(action) else: self._actions.append(action) action.setShortcutContext(QtCore.Qt.WidgetShortcut) self.addAction(action) def insert_action(self, action, prev_action): """ Inserts an action to the editor's context menu. :param action: action to insert :param prev_action: the action after which the new action must be inserted or the insert index """ if isinstance(prev_action, QtWidgets.QAction): index = self._actions.index(prev_action) else: index = prev_action action.setShortcutContext(QtCore.Qt.WidgetShortcut) self._actions.insert(index, action) def actions(self): """ Returns the list of actions/sepqrators of the context menu. """ return self._actions def add_separator(self, sub_menu='Advanced'): """ Adds a sepqrator to the editor's context menu. :return: The sepator that has been added. :rtype: QtWidgets.QAction """ action = QtWidgets.QAction(self) action.setSeparator(True) if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: pass else: mnu.addAction(action) else: self._actions.append(action) return action def remove_action(self, action, sub_menu='Advanced'): """ Removes an action/separator from the editor's context menu. :param action: Action/seprator to remove. :param advanced: True to remove the action from the advanced submenu. """ if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: pass else: mnu.removeAction(action) else: try: self._actions.remove(action) except ValueError: pass self.removeAction(action) def add_menu(self, menu): """ Adds a sub-menu to the editor context menu. Menu are put at the bottom of the context menu. .. note:: to add a menu in the middle of the context menu, you can always add its menuAction(). :param menu: menu to add """ self._menus.append(menu) self._menus = sorted(list(set(self._menus)), key=lambda x: x.title()) for action in menu.actions(): action.setShortcutContext(QtCore.Qt.WidgetShortcut) self.addActions(menu.actions()) def remove_menu(self, menu): """ Removes a sub-menu from the context menu. :param menu: Sub-menu to remove. """ self._menus.remove(menu) for action in menu.actions(): self.removeAction(action) def menus(self): """ Returns the list of sub context menus. """ return self._menus def delete(self): """ Deletes the selected text """ self.textCursor().removeSelectedText() def goto_line(self): """ Shows the *go to line dialog* and go to the selected line. """ helper = TextHelper(self) line, result = DlgGotoLine.get_line( self, helper.current_line_nbr(), helper.line_count()) if not result: return return helper.goto_line(line, move=True) def rehighlight(self): """ Calls ``rehighlight`` on the installed syntax highlighter mode. """ if self.syntax_highlighter: self.syntax_highlighter.rehighlight() def reset_zoom(self): """ Resets the zoom level. """ self._zoom_level = 0 self._reset_stylesheet() def zoom_in(self, increment=1): """ Zooms in the editor (makes the font bigger). :param increment: zoom level increment. Default is 1. """ self.zoom_level += increment TextHelper(self).mark_whole_doc_dirty() self._reset_stylesheet() def zoom_out(self, decrement=1): """ Zooms out the editor (makes the font smaller). :param decrement: zoom level decrement. Default is 1. The value is given as an absolute value. """ self.zoom_level -= decrement # make sure font size remains > 0 if self.font_size + self.zoom_level <= 0: self.zoom_level = -self._font_size + 1 TextHelper(self).mark_whole_doc_dirty() self._reset_stylesheet() def duplicate_line(self): """ Duplicates the line under the cursor. If multiple lines are selected, only the last one is duplicated. """ cursor = self.textCursor() assert isinstance(cursor, QtGui.QTextCursor) has_selection = True if not cursor.hasSelection(): cursor.select(cursor.LineUnderCursor) has_selection = False line = cursor.selectedText() line = '\n'.join(line.split('\u2029')) end = cursor.selectionEnd() cursor.setPosition(end) cursor.beginEditBlock() cursor.insertText('\n') cursor.insertText(line) cursor.endEditBlock() if has_selection: pos = cursor.position() cursor.setPosition(end + 1) cursor.setPosition(pos, cursor.KeepAnchor) self.setTextCursor(cursor) def indent(self): """ Indents the text cursor or the selection. Emits the :attr:`pyqode.core.api.CodeEdit.indent_requested` signal, the :class:`pyqode.core.modes.IndenterMode` will perform the actual indentation. """ self.indent_requested.emit() def un_indent(self): """ Un-indents the text cursor or the selection. Emits the :attr:`pyqode.core.api.CodeEdit.unindent_requested` signal, the :class:`pyqode.core.modes.IndenterMode` will perform the actual un-indentation. """ self.unindent_requested.emit() def eventFilter(self, obj, event): if obj == self and event.type() == QtCore.QEvent.KeyPress: if event.key() == QtCore.Qt.Key_X and \ int(event.modifiers()) == QtCore.Qt.ControlModifier: self.cut() return True if event.key() == QtCore.Qt.Key_C and \ int(event.modifiers()) == QtCore.Qt.ControlModifier: self.copy() return True return False def cut(self): """ Cuts the selected text or the whole line if no text was selected. """ tc = self.textCursor() helper = TextHelper(self) tc.beginEditBlock() no_selection = False if not helper.current_line_text(): tc.deleteChar() else: if not self.textCursor().hasSelection(): no_selection = True TextHelper(self).select_whole_line() super(CodeEdit, self).cut() if no_selection: tc.deleteChar() tc.endEditBlock() self.setTextCursor(tc) def copy(self): """ Copy the selected text to the clipboard. If no text was selected, the entire line is copied (this feature can be turned off by setting :attr:`select_line_on_copy_empty` to False. """ if self.select_line_on_copy_empty and not self.textCursor().hasSelection(): TextHelper(self).select_whole_line() super(CodeEdit, self).copy() def resizeEvent(self, e): """ Overrides resize event to resize the editor's panels. :param e: resize event """ super(CodeEdit, self).resizeEvent(e) self.panels.resize() def closeEvent(self, e): self.close() super(CodeEdit, self).closeEvent(e) def paintEvent(self, e): """ Overrides paint event to update the list of visible blocks and emit the painted event. :param e: paint event """ self._update_visible_blocks(e) super(CodeEdit, self).paintEvent(e) self.painted.emit(e) def keyPressEvent(self, event): """ Overrides the keyPressEvent to emit the key_pressed signal. Also takes care of indenting and handling smarter home key. :param event: QKeyEvent """ if self.isReadOnly(): return initial_state = event.isAccepted() event.ignore() self.key_pressed.emit(event) state = event.isAccepted() if not event.isAccepted(): if event.key() == QtCore.Qt.Key_Tab and event.modifiers() == \ QtCore.Qt.NoModifier: self.indent() event.accept() elif event.key() == QtCore.Qt.Key_Backtab and \ event.modifiers() == QtCore.Qt.NoModifier: self.un_indent() event.accept() elif event.key() == QtCore.Qt.Key_Home and \ int(event.modifiers()) & QtCore.Qt.ControlModifier == 0: self._do_home_key( event, int(event.modifiers()) & QtCore.Qt.ShiftModifier) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).keyPressEvent(event) new_state = event.isAccepted() event.setAccepted(state) self.post_key_pressed.emit(event) event.setAccepted(new_state) def keyReleaseEvent(self, event): """ Overrides keyReleaseEvent to emit the key_released signal. :param event: QKeyEvent """ if self.isReadOnly(): return initial_state = event.isAccepted() event.ignore() self.key_released.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).keyReleaseEvent(event) def mouseDoubleClickEvent(self, event): initial_state = event.isAccepted() event.ignore() self.mouse_double_clicked.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mouseDoubleClickEvent(event) def focusInEvent(self, event): """ Overrides focusInEvent to emits the focused_in signal :param event: QFocusEvent """ self.focused_in.emit(event) super(CodeEdit, self).focusInEvent(event) def focusOutEvent(self, event): # Saves content if save_on_focus_out is True. if self._save_on_focus_out and self.dirty and self.file.path: self.file.save() super(CodeEdit, self).focusOutEvent(event) def mousePressEvent(self, event): """ Overrides mousePressEvent to emits mouse_pressed signal :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_pressed.emit(event) if event.button() == QtCore.Qt.LeftButton: cursor = self.cursorForPosition(event.pos()) for sel in self.decorations: if sel.cursor.blockNumber() == cursor.blockNumber(): if sel.contains_cursor(cursor): sel.signals.clicked.emit(sel) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mousePressEvent(event) def mouseReleaseEvent(self, event): """ Emits mouse_released signal. :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_released.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mouseReleaseEvent(event) def wheelEvent(self, event): """ Emits the mouse_wheel_activated signal. :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_wheel_activated.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).wheelEvent(event) def mouseMoveEvent(self, event): """ Overrides mouseMovedEvent to display any decoration tooltip and emits the mouse_moved event. :param event: QMouseEvent """ cursor = self.cursorForPosition(event.pos()) self._last_mouse_pos = event.pos() block_found = False for sel in self.decorations: if sel.contains_cursor(cursor) and sel.tooltip: if (self._prev_tooltip_block_nbr != cursor.blockNumber() or not QtWidgets.QToolTip.isVisible()): pos = event.pos() # add left margin pos.setX(pos.x() + self.panels.margin_size()) # add top margin pos.setY(pos.y() + self.panels.margin_size(0)) self._tooltips_runner.request_job( self.show_tooltip, self.mapToGlobal(pos), sel.tooltip[0: 1024], sel) self._prev_tooltip_block_nbr = cursor.blockNumber() block_found = True break if not block_found and self._prev_tooltip_block_nbr != -1: QtWidgets.QToolTip.hideText() self._prev_tooltip_block_nbr = -1 self._tooltips_runner.cancel_requests() self.mouse_moved.emit(event) super(CodeEdit, self).mouseMoveEvent(event) def showEvent(self, event): """ Overrides showEvent to update the viewport margins """ super(CodeEdit, self).showEvent(event) self.panels.refresh() def setReadOnly(self, read_only): if read_only != self.isReadOnly(): super(CodeEdit, self).setReadOnly(read_only) from pyqode.core.panels import ReadOnlyPanel try: panel = self.panels.get(ReadOnlyPanel) except KeyError: self.panels.append( ReadOnlyPanel(), ReadOnlyPanel.Position.TOP) else: panel.setVisible(read_only) def get_context_menu(self): """ Gets the editor context menu. :return: QMenu """ mnu = QtWidgets.QMenu() mnu.addActions(self._actions) mnu.addSeparator() for menu in self._menus: mnu.addMenu(menu) return mnu def _show_context_menu(self, point): """ Shows the context menu """ tc = self.textCursor() nc = self.cursorForPosition(point) if not nc.position() in range(tc.selectionStart(), tc.selectionEnd()): self.setTextCursor(nc) self._mnu = self.get_context_menu() if len(self._mnu.actions()) > 1 and self.show_context_menu: self._mnu.popup(self.mapToGlobal(point)) def _set_whitespaces_flags(self, show): """ Sets show white spaces flag """ doc = self.document() options = doc.defaultTextOption() if show: options.setFlags(options.flags() | QtGui.QTextOption.ShowTabsAndSpaces) else: options.setFlags( options.flags() & ~QtGui.QTextOption.ShowTabsAndSpaces) doc.setDefaultTextOption(options) def _init_actions(self, create_standard_actions): """ Init context menu action """ menu_advanced = QtWidgets.QMenu(_('Advanced')) self.add_menu(menu_advanced) self._sub_menus = { 'Advanced': menu_advanced } if create_standard_actions: # Undo action = QtWidgets.QAction(_('Undo'), self) action.setShortcut('Ctrl+Z') action.setIcon(icons.icon( 'edit-undo', ':/pyqode-icons/rc/edit-undo.png', 'fa.undo')) action.triggered.connect(self.undo) self.undoAvailable.connect(action.setVisible) action.setVisible(False) self.add_action(action, sub_menu=None) self.action_undo = action # Redo action = QtWidgets.QAction(_('Redo'), self) action.setShortcut('Ctrl+Y') action.setIcon(icons.icon( 'edit-redo', ':/pyqode-icons/rc/edit-redo.png', 'fa.repeat')) action.triggered.connect(self.redo) self.redoAvailable.connect(action.setVisible) action.setVisible(False) self.add_action(action, sub_menu=None) self.action_redo = action # Copy action = QtWidgets.QAction(_('Copy'), self) action.setShortcut(QtGui.QKeySequence.Copy) action.setIcon(icons.icon( 'edit-copy', ':/pyqode-icons/rc/edit-copy.png', 'fa.copy')) action.triggered.connect(self.copy) self.add_action(action, sub_menu=None) self.action_copy = action # cut action = QtWidgets.QAction(_('Cut'), self) action.setShortcut(QtGui.QKeySequence.Cut) action.setIcon(icons.icon( 'edit-cut', ':/pyqode-icons/rc/edit-cut.png', 'fa.cut')) action.triggered.connect(self.cut) self.add_action(action, sub_menu=None) self.action_cut = action # paste action = QtWidgets.QAction(_('Paste'), self) action.setShortcut(QtGui.QKeySequence.Paste) action.setIcon(icons.icon( 'edit-paste', ':/pyqode-icons/rc/edit-paste.png', 'fa.paste')) action.triggered.connect(self.paste) self.add_action(action, sub_menu=None) self.action_paste = action # duplicate line action = QtWidgets.QAction(_('Duplicate line'), self) action.setShortcut('Ctrl+D') action.triggered.connect(self.duplicate_line) self.add_action(action, sub_menu=None) self.action_duplicate_line = action # select all action = QtWidgets.QAction(_('Select all'), self) action.setShortcut(QtGui.QKeySequence.SelectAll) action.triggered.connect(self.selectAll) self.action_select_all = action self.add_action(self.action_select_all, sub_menu=None) self.add_separator(sub_menu=None) if create_standard_actions: # indent action = QtWidgets.QAction(_('Indent'), self) action.setShortcut('Tab') action.setIcon(icons.icon( 'format-indent-more', ':/pyqode-icons/rc/format-indent-more.png', 'fa.indent')) action.triggered.connect(self.indent) self.add_action(action) self.action_indent = action # unindent action = QtWidgets.QAction(_('Un-indent'), self) action.setShortcut('Shift+Tab') action.setIcon(icons.icon( 'format-indent-less', ':/pyqode-icons/rc/format-indent-less.png', 'fa.dedent')) action.triggered.connect(self.un_indent) self.add_action(action) self.action_un_indent = action self.add_separator() # goto action = QtWidgets.QAction(_('Go to line'), self) action.setShortcut('Ctrl+G') action.setIcon(icons.icon( 'go-jump', ':/pyqode-icons/rc/goto-line.png', 'fa.share')) action.triggered.connect(self.goto_line) self.add_action(action) self.action_goto_line = action def _init_settings(self): """ Init setting """ self._show_whitespaces = False self._tab_length = 4 self._use_spaces_instead_of_tabs = True self.setTabStopWidth(self._tab_length * self.fontMetrics().width(" ")) self._set_whitespaces_flags(self._show_whitespaces) def _init_style(self): """ Inits style options """ self._background = QtGui.QColor('white') self._foreground = QtGui.QColor('black') self._whitespaces_foreground = QtGui.QColor('light gray') app = QtWidgets.QApplication.instance() self._sel_background = app.palette().highlight().color() self._sel_foreground = app.palette().highlightedText().color() self._font_size = 10 self.font_name = "" def _update_visible_blocks(self, *args): """ Updates the list of visible blocks """ self._visible_blocks[:] = [] block = self.firstVisibleBlock() block_nbr = block.blockNumber() top = int(self.blockBoundingGeometry(block).translated( self.contentOffset()).top()) bottom = top + int(self.blockBoundingRect(block).height()) ebottom_top = 0 ebottom_bottom = self.height() while block.isValid(): visible = (top >= ebottom_top and bottom <= ebottom_bottom) if not visible: break if block.isVisible(): self._visible_blocks.append((top, block_nbr, block)) block = block.next() top = bottom bottom = top + int(self.blockBoundingRect(block).height()) block_nbr = block.blockNumber() def _on_text_changed(self): """ Adjust dirty flag depending on editor's content """ if not self._cleaning: ln = TextHelper(self).cursor_position()[0] self._modified_lines.add(ln) def _reset_stylesheet(self): """ Resets stylesheet""" self.setFont(QtGui.QFont(self._font_family, self._font_size + self._zoom_level)) flg_stylesheet = hasattr(self, '_flg_stylesheet') if QtWidgets.QApplication.instance().styleSheet() or flg_stylesheet: self._flg_stylesheet = True # On Window, if the application once had a stylesheet, we must # keep on using a stylesheet otherwise strange colors appear # see https://github.com/OpenCobolIDE/OpenCobolIDE/issues/65 # Also happen on plasma 5 try: plasma = os.environ['DESKTOP_SESSION'] == 'plasma' except KeyError: plasma = False if sys.platform == 'win32' or plasma: self.setStyleSheet('''QPlainTextEdit { background-color: %s; color: %s; } ''' % (self.background.name(), self.foreground.name())) else: # on linux/osx we just have to set an empty stylesheet to # cancel any previous stylesheet and still keep a correct # style for scrollbars self.setStyleSheet('') else: p = self.palette() p.setColor(QtGui.QPalette.Base, self.background) p.setColor(QtGui.QPalette.Text, self.foreground) p.setColor(QtGui.QPalette.Highlight, self.selection_background) p.setColor(QtGui.QPalette.HighlightedText, self.selection_foreground) self.setPalette(p) self.repaint() def _do_home_key(self, event=None, select=False): """ Performs home key action """ # get nb char to first significative char delta = (self.textCursor().positionInBlock() - TextHelper(self).line_indent()) cursor = self.textCursor() move = QtGui.QTextCursor.MoveAnchor if select: move = QtGui.QTextCursor.KeepAnchor if delta > 0: cursor.movePosition(QtGui.QTextCursor.Left, move, delta) else: cursor.movePosition(QtGui.QTextCursor.StartOfBlock, move) self.setTextCursor(cursor) if event: event.accept() def _emit_dirty_changed(self, state): self.dirty_changed.emit(state) for c in self.clones: c.dirty_changed.emit(state) Turing-0.11-beta/pyqode/core/api/decoration.py 0000664 0000000 0000000 00000015234 13314727572 0021337 0 ustar 00root root 0000000 0000000 """ This module contains the text decoration API. """ from pyqode.qt import QtWidgets, QtCore, QtGui class TextDecoration(QtWidgets.QTextEdit.ExtraSelection): """ Helper class to quickly create a text decoration. The text decoration is an utility class that adds a few utility methods to QTextEdit.ExtraSelection. In addition to the helper methods, a tooltip can be added to a decoration. (useful for errors markers and so on...) Text decoration expose a **clicked** signal stored in a separate QObject: :attr:`pyqode.core.api.TextDecoration.Signals` .. code-block:: python deco = TextDecoration() deco.signals.clicked.connect(a_slot) def a_slot(decoration): print(decoration) """ class Signals(QtCore.QObject): """ Holds the signals for a TextDecoration (since we cannot make it a QObject, we need to store its signals in an external QObject). """ #: Signal emitted when a TextDecoration has been clicked. clicked = QtCore.Signal(object) def __init__(self, cursor_or_bloc_or_doc, start_pos=None, end_pos=None, start_line=None, end_line=None, draw_order=0, tooltip=None, full_width=False): """ Creates a text decoration. .. note:: start_pos/end_pos and start_line/end_line pairs let you easily specify the selected text. You should use one pair or the other or they will conflict between each others. If you don't specify any values, the selection will be based on the cursor. :param cursor_or_bloc_or_doc: Reference to a valid QTextCursor/QTextBlock/QTextDocument :param start_pos: Selection start position :param end_pos: Selection end position :param start_line: Selection start line. :param end_line: Selection end line. :param draw_order: The draw order of the selection, highest values will appear on top of the lowest values. :param tooltip: An optional tooltips that will be automatically shown when the mouse cursor hover the decoration. :param full_width: True to select the full line width. .. note:: Use the cursor selection if startPos and endPos are none. """ super(TextDecoration, self).__init__() self.signals = self.Signals() self.draw_order = draw_order self.tooltip = tooltip self.cursor = QtGui.QTextCursor(cursor_or_bloc_or_doc) if full_width: self.set_full_width(full_width) if start_pos is not None: self.cursor.setPosition(start_pos) if end_pos is not None: self.cursor.setPosition(end_pos, QtGui.QTextCursor.KeepAnchor) if start_line is not None: self.cursor.movePosition(self.cursor.Start, self.cursor.MoveAnchor) self.cursor.movePosition(self.cursor.Down, self.cursor.MoveAnchor, start_line) if end_line is not None: self.cursor.movePosition(self.cursor.Down, self.cursor.KeepAnchor, end_line - start_line) def contains_cursor(self, cursor): """ Checks if the textCursor is in the decoration :param cursor: The text cursor to test :type cursor: QtGui.QTextCursor :returns: True if the cursor is over the selection """ start = self.cursor.selectionStart() end = self.cursor.selectionEnd() if cursor.atBlockEnd(): end -= 1 return start <= cursor.position() <= end def set_as_bold(self): """ Uses bold text """ self.format.setFontWeight(QtGui.QFont.Bold) def set_foreground(self, color): """ Sets the foreground color. :param color: Color :type color: QtGui.QColor """ self.format.setForeground(color) def set_background(self, brush): """ Sets the background brush. :param brush: Brush :type brush: QtGui.QBrush """ self.format.setBackground(brush) def set_outline(self, color): """ Uses an outline rectangle. :param color: Color of the outline rect :type color: QtGui.QColor """ self.format.setProperty(QtGui.QTextFormat.OutlinePen, QtGui.QPen(color)) def select_line(self): """ Select the entire line but starts at the first non whitespace character and stops at the non-whitespace character. :return: """ self.cursor.movePosition(self.cursor.StartOfBlock) text = self.cursor.block().text() lindent = len(text) - len(text.lstrip()) self.cursor.setPosition(self.cursor.block().position() + lindent) self.cursor.movePosition(self.cursor.EndOfBlock, self.cursor.KeepAnchor) def set_full_width(self, flag=True, clear=True): """ Enables FullWidthSelection (the selection does not stops at after the character instead it goes up to the right side of the widget). :param flag: True to use full width selection. :type flag: bool :param clear: True to clear any previous selection. Default is True. :type clear: bool """ if clear: self.cursor.clearSelection() self.format.setProperty(QtGui.QTextFormat.FullWidthSelection, flag) def set_as_underlined(self, color=QtCore.Qt.blue): """ Underlines the text :param color: underline color. """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) self.format.setUnderlineColor(color) def set_as_spell_check(self, color=QtCore.Qt.blue): """ Underlines text as a spellcheck error. :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.SpellCheckUnderline) self.format.setUnderlineColor(color) def set_as_error(self, color=QtCore.Qt.red): """ Highlights text as a syntax error. :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.WaveUnderline) self.format.setUnderlineColor(color) def set_as_warning(self, color=QtGui.QColor("orange")): """ Highlights text as a syntax warning :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.WaveUnderline) self.format.setUnderlineColor(color) Turing-0.11-beta/pyqode/core/api/encodings.py 0000664 0000000 0000000 00000012117 13314727572 0021156 0 ustar 00root root 0000000 0000000 """ This module contains the list of possible encodings, taken from the standard library documentation: https://docs.python.org/3.4/library/codecs.html#standard-encodings """ #: Encodings map, map a codec name to a an alias/language pair.#: ENCODINGS_MAP = { "ascii": ("US-ASCII", "English"), "big5": ("Big5", "Chinese traditional"), "big5hkscs": ("Big5-HKSCS", "Chinese traditional"), "cp037": ("IBM037", "English"), "cp424": ("IBM242", "Hebrew"), "cp437": ("IBM437", "English"), "cp500": ("IBM500", "Western"), "cp737": ("IBM737", "Greek"), "cp775": ("IBM775", "Baltic"), "cp850": ("IBM850", "Western"), "cp852": ("IBM852", "Central European"), "cp855": ("IBM855", "Cyrillic"), "cp856": ("IBM856", "Hebrew"), "cp857": ("IBM857", "Turkish"), "cp860": ("IBM860", "Portugese"), "cp861": ("IBM861", "Icelandic"), "cp862": ("IBM862", "Hebrew"), "cp863": ("IBM863", "Canadian"), "cp864": ("IBM864", "Arabic"), "cp865": ("IBM865", "Nordic"), "cp866": ("IBM866", "Russian"), "cp869": ("IBM869", "Greek"), "cp874": ("IBM874", "Thai"), "cp875": ("IBM875", "Greek"), "cp932": ("IBM932", "Japanese"), "cp949": ("IBM949", "Korean"), "cp950": ("IBM950", "Chinese traditional"), "cp1006": ("IBM1006", "Urdu"), "cp1026": ("IBM1026", "Turkish"), "cp1140": ("IBM1140", "Western"), "cp1250": ("windows-1250", "Central European"), "cp1251": ("windows-1251", "Cyrillic"), "cp1252": ("windows-1252", "Western"), "cp1253": ("windows-1253", "Greek"), "cp1254": ("windows-1254", " Turkish"), "cp1255": ("windows-1255", "Hebrew"), "cp1256": ("windows-1256", " Arabic"), "cp1257": ("windows-1257", "Baltic"), "cp1258": ("windows-1258", "Vietnamese"), "euc_jp": ("EUC-JP", "Japanese"), "euc_jis_2004": ("EUC-JIS-2004", "Japanese"), "euc_jisx0213": ("EUC-JISX0213", "Japanese"), "euc_kr": ("EUC-KR", "Korean"), "gb2312": ("GB2312", "Chinese simplified"), "gbk": ("GBK", "Chinese unified"), "gb18030": ("GB18030", "Chinese unified"), "hz": ("HZ", "Chinese simplified"), "iso2022_jp": ("ISO-2022-JP", "Japanese"), "iso2022_jp_1": ("ISO-2022-JP-1", "Japanese"), "iso2022_jp_2": ("ISO-2022-JP-2", "Japanese"), "iso2022_jp_2004": ("ISO-2022-JP-2004", "Japanese"), "iso2022_jp_3": ("ISO-2022-JP-3", "Japanese"), "iso2022_jp_ext": ("ISO-2022-JP-EXT", "Japanese"), "iso2022_kr": ("ISO-2022-KR", "Korean"), "latin_1": ("ISO-8859-1", "Western"), "iso8859_2": ("ISO-8859-2", "Central European"), "iso8859_3": ("ISO-8859-3", "South European"), "iso8859_4": ("ISO-8859-4", "Baltic"), "iso8859_5": ("ISO-8859-5", "Cyrillic"), "iso8859_6": ("ISO-8859-6", "Arabic"), "iso8859_7": ("ISO-8859-7", "Greek"), "iso8859_8": ("ISO-8859-8", "Hebrew"), "iso8859_9": ("ISO-8859-9", "Turkish"), "iso8859_10": ("ISO-8859-10", "Nordic"), "iso8859_13": ("ISO-8859-13", "Baltic"), "iso8859_14": ("ISO-8859-14", "Celtic"), "iso8859_15": ("ISO-8859-15", "Western"), "johab": ("Johab", "Korean"), "koi8_r": ("KOI8-R", "Russian"), "koi8_u": ("KOI8-U", "Ukrainian"), "mac_cyrillic": ("MacCyrillic", "Cyrillic"), "mac_greek": ("MacGreek", "Greek"), "mac_iceland": ("MacIceland", "Icelandic"), "mac_latin2": ("MacCentralEurope", "Central European"), "mac_roman": ("MacRoman", "Western"), "mac_turkish": ("MacTurkish", "Turkish"), "ptcp154": ("PTCP154", "Cyrillic Asian"), "shift_jis": ("Shift_JIS", "Japanese"), "shift_jis_2004": ("Shift_JIS-2004", "Japanese"), "shift_jisx0213": ("Shift_JISX0213", "Japanese"), "utf_16": ("UTF-16", "Unicode"), "utf_16_be": ("UTF-16BE", "Unicode"), "utf_16_le": ("UTF-16LE", "Unicode"), "utf_7": ("UTF-7", "Unicode"), "utf_8": ("UTF-8", "Unicode") } def convert_to_codec_key(value): """ Normalize code key value (encoding codecs must be lower case and must not contain any dashes). :param value: value to convert. """ if not value: # fallback to utf-8 value = 'UTF-8' # UTF-8 -> utf_8 converted = value.replace('-', '_').lower() # fix some corner cases, see https://github.com/pyQode/pyQode/issues/11 all_aliases = { 'ascii': [ 'us_ascii', 'us', 'ansi_x3.4_1968', 'cp367', 'csascii', 'ibm367', 'iso_ir_6', 'iso646_us', 'iso_646.irv:1991' ], 'utf-7': [ 'csunicode11utf7', 'unicode_1_1_utf_7', 'unicode_2_0_utf_7', 'x_unicode_1_1_utf_7', 'x_unicode_2_0_utf_7', ], 'utf_8': [ 'unicode_1_1_utf_8', 'unicode_2_0_utf_8', 'x_unicode_1_1_utf_8', 'x_unicode_2_0_utf_8', ], 'utf_16': [ 'utf_16le', 'ucs_2', 'unicode', 'iso_10646_ucs2' ], 'latin_1': ['iso_8859_1'] } for key, aliases in all_aliases.items(): if converted in aliases: return key return converted Turing-0.11-beta/pyqode/core/api/folding.py 0000664 0000000 0000000 00000032036 13314727572 0020631 0 ustar 00root root 0000000 0000000 """ This module contains the code folding API. """ from __future__ import print_function import logging import sys from pyqode.core.api.utils import TextBlockHelper def print_tree(editor, file=sys.stdout, print_blocks=False): """ Prints the editor fold tree to stdout, for debugging purpose. :param editor: CodeEdit instance. :param file: file handle where the tree will be printed. Default is stdout. :param print_blocks: True to print all blocks, False to only print blocks that are fold triggers """ block = editor.document().firstBlock() while block.isValid(): trigger = TextBlockHelper().is_fold_trigger(block) trigger_state = TextBlockHelper().is_collapsed(block) lvl = TextBlockHelper().get_fold_lvl(block) visible = 'V' if block.isVisible() else 'I' if trigger: trigger = '+' if trigger_state else '-' print('l%d:%s%s%s' % (block.blockNumber() + 1, lvl, trigger, visible), file=file) elif print_blocks: print('l%d:%s%s' % (block.blockNumber() + 1, lvl, visible), file=file) block = block.next() def _logger(): return logging.getLogger(__name__) class FoldDetector(object): """ Base class for fold detectors. A fold detector takes care of detecting the text blocks fold levels that are used by the FoldingPanel to render the document outline. To use a FoldDetector, simply set it on a syntax_highlighter:: editor.syntax_highlighter.fold_detector = my_fold_detector """ @property def editor(self): if self._editor: return self._editor() return None def __init__(self): #: Reference to the parent editor, automatically set by the syntax #: highlighter before process any block. self._editor = None #: Fold level limit, any level greater or equal is skipped. #: Default is sys.maxsize (i.e. all levels are accepted) self.limit = sys.maxsize def process_block(self, current_block, previous_block, text): """ Processes a block and setup its folding info. This method call ``detect_fold_level`` and handles most of the tricky corner cases so that all you have to do is focus on getting the proper fold level foreach meaningful block, skipping the blank ones. :param current_block: current block to process :param previous_block: previous block :param text: current block text """ prev_fold_level = TextBlockHelper.get_fold_lvl(previous_block) if text.strip() == '': # blank line always have the same level as the previous line fold_level = prev_fold_level else: fold_level = self.detect_fold_level( previous_block, current_block) if fold_level > self.limit: fold_level = self.limit prev_fold_level = TextBlockHelper.get_fold_lvl(previous_block) if fold_level > prev_fold_level: # apply on previous blank lines block = current_block.previous() while block.isValid() and block.text().strip() == '': TextBlockHelper.set_fold_lvl(block, fold_level) block = block.previous() TextBlockHelper.set_fold_trigger( block, True) # update block fold level if text.strip(): TextBlockHelper.set_fold_trigger( previous_block, fold_level > prev_fold_level) TextBlockHelper.set_fold_lvl(current_block, fold_level) # user pressed enter at the beginning of a fold trigger line # the previous blank line will keep the trigger state and the new line # (which actually contains the trigger) must use the prev state ( # and prev state must then be reset). prev = current_block.previous() # real prev block (may be blank) if (prev and prev.isValid() and prev.text().strip() == '' and TextBlockHelper.is_fold_trigger(prev)): # prev line has the correct trigger fold state TextBlockHelper.set_collapsed( current_block, TextBlockHelper.is_collapsed( prev)) # make empty line not a trigger TextBlockHelper.set_fold_trigger(prev, False) TextBlockHelper.set_collapsed(prev, False) def detect_fold_level(self, prev_block, block): """ Detects the block fold level. The default implementation is based on the block **indentation**. .. note:: Blocks fold level must be contiguous, there cannot be a difference greater than 1 between two successive block fold levels. :param prev_block: first previous **non-blank** block or None if this is the first line of the document :param block: The block to process. :return: Fold level """ raise NotImplementedError class IndentFoldDetector(FoldDetector): """ Simple fold detector based on the line indentation level """ def detect_fold_level(self, prev_block, block): """ Detects fold level by looking at the block indentation. :param prev_block: previous text block :param block: current block to highlight """ text = block.text() # round down to previous indentation guide to ensure contiguous block # fold level evolution. return (len(text) - len(text.lstrip())) // self.editor.tab_length class CharBasedFoldDetector(FoldDetector): """ Fold detector based on trigger charachters (e.g. a { increase fold level and } decrease fold level). """ def __init__(self, open_chars=('{'), close_chars=('}')): super(CharBasedFoldDetector, self).__init__() self.open_chars = open_chars self.close_chars = close_chars def detect_fold_level(self, prev_block, block): if prev_block: prev_text = prev_block.text().strip() else: prev_text = '' text = block.text().strip() if text in self.open_chars: return TextBlockHelper.get_fold_lvl(prev_block) + 1 if prev_text.endswith(self.open_chars) and prev_text not in \ self.open_chars: return TextBlockHelper.get_fold_lvl(prev_block) + 1 if self.close_chars in prev_text: return TextBlockHelper.get_fold_lvl(prev_block) - 1 return TextBlockHelper.get_fold_lvl(prev_block) class FoldScope(object): """ Utility class for manipulating fold-able code scope (fold/unfold, get range, child and parent scopes and so on). A scope is built from a fold trigger (QTextBlock). """ @property def trigger_level(self): """ Returns the fold level of the block trigger :return: """ return TextBlockHelper.get_fold_lvl(self._trigger) @property def scope_level(self): """ Returns the fold level of the first block of the foldable scope ( just after the trigger) :return: """ return TextBlockHelper.get_fold_lvl(self._trigger.next()) @property def collapsed(self): """ Returns True if the block is collasped, False if it is expanded. """ return TextBlockHelper.is_collapsed(self._trigger) def __init__(self, block): """ Create a fold-able region from a fold trigger block. :param block: The block **must** be a fold trigger. :type block: QTextBlock :raise: `ValueError` if the text block is not a fold trigger. """ if not TextBlockHelper.is_fold_trigger(block): raise ValueError('Not a fold trigger') self._trigger = block def get_range(self, ignore_blank_lines=True): """ Gets the fold region range (start and end line). .. note:: Start line do no encompass the trigger line. :param ignore_blank_lines: True to ignore blank lines at the end of the scope (the method will rewind to find that last meaningful block that is part of the fold scope). :returns: tuple(int, int) """ ref_lvl = self.trigger_level first_line = self._trigger.blockNumber() block = self._trigger.next() last_line = block.blockNumber() lvl = self.scope_level if ref_lvl == lvl: # for zone set programmatically such as imports # in pyqode.python ref_lvl -= 1 while (block.isValid() and TextBlockHelper.get_fold_lvl(block) > ref_lvl): last_line = block.blockNumber() block = block.next() if ignore_blank_lines and last_line: block = block.document().findBlockByNumber(last_line) while block.blockNumber() and block.text().strip() == '': block = block.previous() last_line = block.blockNumber() return first_line, last_line def fold(self): """ Folds the region. """ start, end = self.get_range() TextBlockHelper.set_collapsed(self._trigger, True) block = self._trigger.next() while block.blockNumber() <= end and block.isValid(): block.setVisible(False) block = block.next() def unfold(self): """ Unfolds the region. """ # set all direct child blocks which are not triggers to be visible self._trigger.setVisible(True) TextBlockHelper.set_collapsed(self._trigger, False) for block in self.blocks(ignore_blank_lines=False): block.setVisible(True) if TextBlockHelper.is_fold_trigger(block): TextBlockHelper.set_collapsed(block, False) def blocks(self, ignore_blank_lines=True): """ This generator generates the list of blocks directly under the fold region. This list does not contain blocks from child regions. :param ignore_blank_lines: True to ignore last blank lines. """ start, end = self.get_range(ignore_blank_lines=ignore_blank_lines) block = self._trigger.next() while block.blockNumber() <= end and block.isValid(): yield block block = block.next() def child_regions(self): """ This generator generates the list of direct child regions. """ start, end = self.get_range() block = self._trigger.next() ref_lvl = self.scope_level while block.blockNumber() <= end and block.isValid(): lvl = TextBlockHelper.get_fold_lvl(block) trigger = TextBlockHelper.is_fold_trigger(block) if lvl == ref_lvl and trigger: yield FoldScope(block) block = block.next() def parent(self): """ Return the parent scope. :return: FoldScope or None """ if TextBlockHelper.get_fold_lvl(self._trigger) > 0 and \ self._trigger.blockNumber(): block = self._trigger.previous() ref_lvl = self.trigger_level - 1 while (block.blockNumber() and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): block = block.previous() try: return FoldScope(block) except ValueError: return None return None def text(self, max_lines=sys.maxsize): """ Get the scope text, with a possible maximum number of lines. :param max_lines: limit the number of lines returned to a maximum. :return: str """ ret_val = [] block = self._trigger.next() _, end = self.get_range() while (block.isValid() and block.blockNumber() <= end and len(ret_val) < max_lines): ret_val.append(block.text()) block = block.next() return '\n'.join(ret_val) @staticmethod def find_parent_scope(block): """ Find parent scope, if the block is not a fold trigger. :param block: block from which the research will start """ # if we moved up for more than n lines, just give up otherwise this # would take too much time. limit = 5000 counter = 0 original = block if not TextBlockHelper.is_fold_trigger(block): # search level of next non blank line while block.text().strip() == '' and block.isValid(): block = block.next() ref_lvl = TextBlockHelper.get_fold_lvl(block) - 1 block = original while (block.blockNumber() and counter < limit and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): counter += 1 block = block.previous() if counter < limit: return block return None def __repr__(self): return 'FoldScope(start=%r, end=%d)' % self.get_range() Turing-0.11-beta/pyqode/core/api/manager.py 0000664 0000000 0000000 00000002266 13314727572 0020623 0 ustar 00root root 0000000 0000000 """ This module contains the Manager API. """ import weakref class Manager(object): """ A manager manages a specific aspect of a CodeEdit instance: - backend management (start/stop server, request work,...) - modes management - panels management and drawing - file manager Managers are typically created internally when you create a CodeEdit. You interact with them later, e.g. when you want to start the backend process or when you want to install/retrieve a mode or a panel. :: editor = CodeEdit() # use the backend manager to start the backend server editor.backend.start(...) editor.backend.send_request(...) # use the panels controller to install a panel editor.panels.install(MyPanel(), MyPanel.Position.Right) my_panel = editor.panels.get(MyPanel) # and so on """ @property def editor(self): """ Return a reference to the parent code edit widget. """ return self._editor() def __init__(self, editor): """ :param editor: CodeEdit instance to control """ self._editor = weakref.ref(editor) Turing-0.11-beta/pyqode/core/api/mode.py 0000664 0000000 0000000 00000007116 13314727572 0020134 0 ustar 00root root 0000000 0000000 """ This module contains the editor extension API. """ import logging def _logger(): return logging.getLogger(__name__) class Mode(object): """ Base class for editor extensions. An extension is a "thing" that can be installed on an editor to add new behaviours or to modify its appearance. A mode is added to an editor by using the ModesManager/PanelsManager: - :meth:`pyqode.core.api.CodeEdit.modes.append` or - :meth:`pyqode.core.api.CodeEdit.panels.append` Subclasses may/should override the following methods: - :meth:`pyqode.core.api.Mode.on_install` - :meth:`pyqode.core.api.Mode.on_uninstall` - :meth:`pyqode.core.api.Mode.on_state_changed` ..warning: The mode will be identified by its class name, this means that **there cannot be two modes of the same type on the same editor instance!** """ @property def editor(self): """ Returns a reference to the parent editor widget. **READ ONLY** :rtype: pyqode.core.api.code_edit.CodeEdit """ if self._editor is not None: return self._editor else: return None @property def enabled(self): """ Tells if the mode is enabled, :meth:`pyqode.core.api.Mode.on_state_changed` will be called as soon as the mode state changed. :type: bool """ return self._enabled @enabled.setter def enabled(self, enabled): if enabled != self._enabled: self._enabled = enabled self.on_state_changed(enabled) def __init__(self): #: Mode name/identifier. :class:`pyqode.core.api.CodeEdit` uses # that as the attribute key when you install a mode. self.name = self.__class__.__name__ #: Mode description self.description = self.__doc__ self._enabled = False self._editor = None self._on_close = False def __del__(self): _logger().log(5, '%s.__del__', type(self)) def on_install(self, editor): """ Installs the extension on the editor. :param editor: editor widget instance :type editor: pyqode.core.api.code_edit.CodeEdit .. note:: This method is called by editor when you install a Mode. You should never call it yourself, even in a subclasss. .. warning:: Don't forget to call **super** when subclassing """ self._editor = editor self.enabled = True def on_uninstall(self): """ Uninstalls the mode from the editor. """ self._on_close = True self.enabled = False self._editor = None def on_state_changed(self, state): """ Called when the enable state has changed. This method does not do anything, you may override it if you need to connect/disconnect to the editor's signals (connect when state is true and disconnect when it is false). :param state: True = enabled, False = disabled :type state: bool """ pass def clone_settings(self, original): """ Clone the settings from another mode (same class). This method is called when splitting an editor widget. :param original: other mode (must be the same class). .. note:: The base method does not do anything, you must implement this method for every new mode/panel (if you plan on using the split feature). You should also make sure any properties will be propagated to the clones. """ pass Turing-0.11-beta/pyqode/core/api/panel.py 0000664 0000000 0000000 00000007327 13314727572 0020313 0 ustar 00root root 0000000 0000000 """ This module contains the panel API. """ import logging from pyqode.core.api.mode import Mode from pyqode.qt import QtWidgets, QtGui def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class Panel(QtWidgets.QWidget, Mode): """ Base class for editor panels. A panel is a mode and a QWidget. .. note:: Use enabled to disable panel actions and setVisible to change the visibility of the panel. """ class Position(object): """ Enumerates the possible panel positions """ #: Top margin TOP = 0 #: Left margin LEFT = 1 #: Right margin RIGHT = 2 #: Bottom margin BOTTOM = 3 @classmethod def iterable(cls): """ Returns possible positions as an iterable (list) """ return [cls.TOP, cls.LEFT, cls.RIGHT, cls.BOTTOM] @property def scrollable(self): """ A scrollable panel will follow the editor's scroll-bars. Left and right panels follow the vertical scrollbar. Top and bottom panels follow the horizontal scrollbar. :type: bool """ return self._scrollable @scrollable.setter def scrollable(self, value): self._scrollable = value def __init__(self, dynamic=False): Mode.__init__(self) QtWidgets.QWidget.__init__(self) #: Specifies whether the panel is dynamic. A dynamic panel is a panel #: that will be shown/hidden depending on the context. #: Dynamic panel should not appear in any GUI menu (e.g. no display #: in the panels menu of the notepad example). self.dynamic = dynamic #: Panel order into the zone it is installed to. This value is #: automatically set when installing the panel but it can be changed #: later (negative values can also be used). self.order_in_zone = -1 self._scrollable = False self._background_brush = None self._foreground_pen = None #: Position in the editor (top, left, right, bottom) self.position = -1 def on_install(self, editor): """ Extends :meth:`pyqode.core.api.Mode.on_install` method to set the editor instance as the parent widget. .. warning:: Don't forget to call **super** if you override this method! :param editor: editor instance :type editor: pyqode.core.api.CodeEdit """ Mode.on_install(self, editor) self.setParent(editor) self.setPalette(QtWidgets.QApplication.instance().palette()) self.setFont(QtWidgets.QApplication.instance().font()) self.editor.panels.refresh() self._background_brush = QtGui.QBrush(QtGui.QColor( self.palette().window().color())) self._foreground_pen = QtGui.QPen(QtGui.QColor( self.palette().windowText().color())) def paintEvent(self, event): # Fills the panel background using QPalette if self.isVisible(): # fill background self._background_brush = QtGui.QBrush(QtGui.QColor( self.palette().window().color())) self._foreground_pen = QtGui.QPen(QtGui.QColor( self.palette().windowText().color())) painter = QtGui.QPainter(self) painter.fillRect(event.rect(), self._background_brush) def setVisible(self, visible): """ Shows/Hides the panel Automatically call CodeEdit.refresh_panels. :param visible: Visible state """ _logger().log(5, '%s visibility changed', self.name) super(Panel, self).setVisible(visible) if self.editor: self.editor.panels.refresh() Turing-0.11-beta/pyqode/core/api/syntax_highlighter.py 0000664 0000000 0000000 00000031746 13314727572 0023122 0 ustar 00root root 0000000 0000000 """ This module contains the syntax highlighter API. """ import logging import sys import time import weakref from pygments.styles import get_style_by_name, get_all_styles from pygments.token import Token, Punctuation from pygments.util import ClassNotFound from pyqode.core.api.mode import Mode from pyqode.core.api.utils import drift_color from pyqode.qt import QtGui, QtCore, QtWidgets def _logger(): return logging.getLogger(__name__) #: A sorted list of available pygments styles, for convenience PYGMENTS_STYLES = sorted(set(list(get_all_styles()) + ['darcula', 'qt'])) #: The list of color schemes keys (and their associated pygments token) COLOR_SCHEME_KEYS = { # editor background "background": None, # highlight color (used for caret line) "highlight": None, # normal text "normal": Token.Text, # any keyword "keyword": Token.Keyword, # namespace keywords (from ... import ... as) "namespace": Token.Keyword.Namespace, # type keywords "type": Token.Keyword.Type, # reserved keyword "keyword_reserved": Token.Keyword.Reserved, # any builtin name "builtin": Token.Name.Builtin, # any definition (class or function) "definition": Token.Name.Class, # any comment "comment": Token.Comment, # any string "string": Token.Literal.String, # any docstring (python docstring, c++ doxygen comment,...) "docstring": Token.Literal.String.Doc, # any number "number": Token.Number, # any instance variable "instance": Token.Name.Variable, # whitespace color "whitespace": Token.Text.Whitespace, # any tag name (e.g. shinx doctags,...) 'tag': Token.Name.Tag, # self paramter (or this in other languages) 'self': Token.Name.Builtin.Pseudo, # python decorators 'decorator': Token.Name.Decorator, # colors of punctuation characters 'punctuation': Punctuation, # name or keyword constant 'constant': Token.Name.Constant, # function definition 'function': Token.Name.Function, # operator 'operator': Token.Operator, # operator words (and, not) 'operator_word': Token.Operator.Word } class ColorScheme(object): """ Translates a pygments style into a dictionary of colors associated with a style key. See :attr:`pyqode.core.api.syntax_highligter.COLOR_SCHEM_KEYS` for the available keys. """ @property def name(self): """ Name of the color scheme, this is usually the name of the associated pygments style. """ return self._name @property def background(self): """ Gets the background color. :return: """ return self.formats['background'].background().color() @property def highlight(self): """ Gets the highlight color. :return: """ return self.formats['highlight'].background().color() def __init__(self, style): """ :param style: name of the pygments style to load """ self._name = style self._brushes = {} #: Dictionary of formats colors (keys are the same as for #: :attr:`pyqode.core.api.COLOR_SCHEME_KEYS` self.formats = {} try: style = get_style_by_name(style) except ClassNotFound: if style == 'darcula': from pyqode.core.styles.darcula import DarculaStyle style = DarculaStyle else: from pyqode.core.styles.qt import QtStyle style = QtStyle self._load_formats_from_style(style) def _load_formats_from_style(self, style): # background self.formats['background'] = self._get_format_from_color( style.background_color) # highlight self.formats['highlight'] = self._get_format_from_color( style.highlight_color) for key, token in COLOR_SCHEME_KEYS.items(): if token and key: self.formats[key] = self._get_format_from_style(token, style) def _get_format_from_color(self, color): fmt = QtGui.QTextCharFormat() fmt.setBackground(self._get_brush(color)) return fmt def _get_format_from_style(self, token, style): """ Returns a QTextCharFormat for token by reading a Pygments style. """ result = QtGui.QTextCharFormat() items = list(style.style_for_token(token).items()) for key, value in items: if value is None and key == 'color': # make sure to use a default visible color for the foreground # brush value = drift_color(self.background, 1000).name() if value: if key == 'color': result.setForeground(self._get_brush(value)) elif key == 'bgcolor': result.setBackground(self._get_brush(value)) elif key == 'bold': result.setFontWeight(QtGui.QFont.Bold) elif key == 'italic': result.setFontItalic(value) elif key == 'underline': result.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) elif key == 'sans': result.setFontStyleHint(QtGui.QFont.SansSerif) elif key == 'roman': result.setFontStyleHint(QtGui.QFont.Times) elif key == 'mono': result.setFontStyleHint(QtGui.QFont.TypeWriter) if token in [Token.Literal.String, Token.Literal.String.Doc, Token.Comment]: # mark strings, comments and docstrings regions for further queries result.setObjectType(result.UserObject) return result def _get_brush(self, color): """ Returns a brush for the color. """ result = self._brushes.get(color) if result is None: qcolor = self._get_color(color) result = QtGui.QBrush(qcolor) self._brushes[color] = result return result @staticmethod def _get_color(color): """ Returns a QColor built from a Pygments color string. """ color = str(color).replace("#", "") qcolor = QtGui.QColor() qcolor.setRgb(int(color[:2], base=16), int(color[2:4], base=16), int(color[4:6], base=16)) return qcolor class SyntaxHighlighter(QtGui.QSyntaxHighlighter, Mode): """ Abstract base class for syntax highlighter modes. It fills up the document with our custom block data (fold levels, triggers,...). It **does not do any syntax highlighting**, that task is left to sublasses such as :class:`pyqode.core.modes.PygmentsSyntaxHighlighter`. Subclasses **must** override the :meth:`pyqode.core.api.SyntaxHighlighter.highlight_block` method to apply custom highlighting. .. note:: Since version 2.1 and for performance reasons, we store all our data in the block user state as a bit-mask. You should always use :class:`pyqode.core.api.TextBlockHelper` to retrieve or modify those data. """ #: Signal emitted at the start of highlightBlock. Parameters are the #: highlighter instance and the current text block block_highlight_started = QtCore.Signal(object, object) #: Signal emitted at the end of highlightBlock. Parameters are the #: highlighter instance and the current text block block_highlight_finished = QtCore.Signal(object, object) @property def formats(self): """ Returns the color shcme formats dict. """ return self._color_scheme.formats @property def color_scheme(self): """ Gets/Sets the color scheme of the syntax highlighter, this will trigger a rehighlight automatically. """ return self._color_scheme @color_scheme.setter def color_scheme(self, color_scheme): if isinstance(color_scheme, str): color_scheme = ColorScheme(color_scheme) if color_scheme.name != self._color_scheme.name: self._color_scheme = color_scheme self.refresh_editor(color_scheme) self.rehighlight() def refresh_editor(self, color_scheme): """ Refresh editor settings (background and highlight colors) when color scheme changed. :param color_scheme: new color scheme. """ self.editor.background = color_scheme.background self.editor.foreground = color_scheme.formats[ 'normal'].foreground().color() self.editor.whitespaces_foreground = color_scheme.formats[ 'whitespace'].foreground().color() try: mode = self.editor.modes.get('CaretLineHighlighterMode') except KeyError: pass else: mode.background = color_scheme.highlight mode.refresh() try: mode = self.editor.panels.get('FoldingPanel') except KeyError: pass else: mode.refresh_decorations(force=True) self.editor._reset_stylesheet() def __init__(self, parent, color_scheme=None): """ :param parent: parent document (QTextDocument) :param color_scheme: color scheme to use. """ QtGui.QSyntaxHighlighter.__init__(self, parent) Mode.__init__(self) if not color_scheme: color_scheme = ColorScheme('qt') self._color_scheme = color_scheme self._spaces_ptrn = QtCore.QRegExp(r'[ \t]+') #: Fold detector. Set it to a valid FoldDetector to get code folding #: to work. Default is None self.fold_detector = None self.WHITESPACES = QtCore.QRegExp(r'\s+') def on_state_changed(self, state): if self._on_close: return if state: self.setDocument(self.editor.document()) else: self.setDocument(None) def _highlight_whitespaces(self, text): index = self.WHITESPACES.indexIn(text, 0) while index >= 0: index = self.WHITESPACES.pos(0) length = len(self.WHITESPACES.cap(0)) self.setFormat(index, length, self.formats['whitespace']) index = self.WHITESPACES.indexIn(text, index + length) @staticmethod def _find_prev_non_blank_block(current_block): previous_block = (current_block.previous() if current_block.blockNumber() else None) # find the previous non-blank block while (previous_block and previous_block.blockNumber() and previous_block.text().strip() == ''): previous_block = previous_block.previous() return previous_block def highlightBlock(self, text): """ Highlights a block of text. Please do not override, this method. Instead you should implement :func:`pyqode.core.api.SyntaxHighlighter.highlight_block`. :param text: text to highlight. """ if not self.enabled: return current_block = self.currentBlock() previous_block = self._find_prev_non_blank_block(current_block) if self.editor: self.highlight_block(text, current_block) if self.editor.show_whitespaces: self._highlight_whitespaces(text) if self.fold_detector is not None: self.fold_detector._editor = weakref.ref(self.editor) self.fold_detector.process_block( current_block, previous_block, text) def highlight_block(self, text, block): """ Abstract method. Override this to apply syntax highlighting. :param text: Line of text to highlight. :param block: current block """ raise NotImplementedError() def rehighlight(self): """ Rehighlight the entire document, may be slow. """ start = time.time() QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.WaitCursor)) try: super(SyntaxHighlighter, self).rehighlight() except RuntimeError: # cloned widget, no need to rehighlight the same document twice ;) pass QtWidgets.QApplication.restoreOverrideCursor() end = time.time() _logger().debug('rehighlight duration: %fs' % (end - start)) def on_install(self, editor): super(SyntaxHighlighter, self).on_install(editor) self.refresh_editor(self.color_scheme) self.document().setParent(editor) self.setParent(editor) def clone_settings(self, original): self._color_scheme = original.color_scheme class TextBlockUserData(QtGui.QTextBlockUserData): """ Custom text block user data, mainly used to store checker messages and markers. """ def __init__(self): super(TextBlockUserData, self).__init__() #: List of checker messages associated with the block. self.messages = [] #: List of markers draw by a marker panel. self.markers = [] Turing-0.11-beta/pyqode/core/api/utils.py 0000664 0000000 0000000 00000113035 13314727572 0020346 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains utility functions/classes. """ import functools import logging import weakref from pyqode.qt import QtCore, QtGui, QtWidgets def _logger(): """ Returns module logger """ return logging.getLogger(__name__) class memoized(object): """ Decorator. Caches a function's return value each time it is called. If called later with the same arguments, the cached value is returned (not reevaluated). """ def __init__(self, func): self.func = func self.cache = {} def __call__(self, *args): try: if args in self.cache: return self.cache[args] else: value = self.func(*args) self.cache[args] = value return value except TypeError: return self.func(*args) def __repr__(self): """ Return the function's docstring.""" return self.func.__doc__ def __get__(self, obj, objtype): """ Support instance methods. """ return functools.partial(self.__call__, obj) def drift_color(base_color, factor=110): """ Return color that is lighter or darker than the base color. If base_color.lightness is higher than 128, the returned color is darker otherwise is is lighter. :param base_color: The base color to drift from ;:param factor: drift factor (%) :return A lighter or darker color. """ base_color = QtGui.QColor(base_color) if base_color.lightness() > 128: return base_color.darker(factor) else: if base_color == QtGui.QColor('#000000'): return drift_color(QtGui.QColor('#101010'), factor + 20) else: return base_color.lighter(factor + 10) class DelayJobRunner(object): """ Utility class for running job after a certain delay. If a new request is made during this delay, the previous request is dropped and the timer is restarted for the new request. We use this to implement a cooldown effect that prevents jobs from being executed while the IDE is not idle. A job is a simple callable. """ def __init__(self, delay=500): """ :param delay: Delay to wait before running the job. This delay applies to all requests and cannot be changed afterwards. """ self._timer = QtCore.QTimer() self.delay = delay self._timer.timeout.connect(self._exec_requested_job) self._args = [] self._kwargs = {} self._job = lambda x: None def request_job(self, job, *args, **kwargs): """ Request a job execution. The job will be executed after the delay specified in the DelayJobRunner contructor elapsed if no other job is requested until then. :param job: job. :type job: callable :param args: job's position arguments :param kwargs: job's keyworded arguments """ self.cancel_requests() self._job = job self._args = args self._kwargs = kwargs self._timer.start(self.delay) def cancel_requests(self): """ Cancels pending requests. """ self._timer.stop() self._job = None self._args = None self._kwargs = None def _exec_requested_job(self): """ Execute the requested job after the timer has timeout. """ self._timer.stop() self._job(*self._args, **self._kwargs) class TextHelper(object): """ Text helper helps you manipulate the content of CodeEdit and extends the Qt text api for an easier usage. """ @property def _editor(self): try: return self._editor_ref() except TypeError: return self._editor_ref def __init__(self, editor): """ :param editor: The editor to work on. """ try: self._editor_ref = weakref.ref(editor) except TypeError: self._editor_ref = editor def goto_line(self, line, column=0, move=True): """ Moves the text cursor to the specified position.. :param line: Number of the line to go to (0 based) :param column: Optional column number. Default is 0 (start of line). :param move: True to move the cursor. False will return the cursor without setting it on the editor. :return: The new text cursor :rtype: QtGui.QTextCursor """ text_cursor = self._move_cursor_to(line) if column: text_cursor.movePosition(text_cursor.Right, text_cursor.MoveAnchor, column) if move: block = text_cursor.block() # unfold parent fold trigger if the block is collapsed try: folding_panel = self._editor.panels.get('FoldingPanel') except KeyError: pass else: from pyqode.core.api.folding import FoldScope if not block.isVisible(): block = FoldScope.find_parent_scope(block) if TextBlockHelper.is_collapsed(block): folding_panel.toggle_fold_trigger(block) self._editor.setTextCursor(text_cursor) return text_cursor def selected_text(self): """ Returns the selected text. """ return self._editor.textCursor().selectedText() def word_under_cursor(self, select_whole_word=False, text_cursor=None): """ Gets the word under cursor using the separators defined by :attr:`pyqode.core.api.CodeEdit.word_separators`. .. note: Instead of returning the word string, this function returns a QTextCursor, that way you may get more information than just the string. To get the word, just call ``selectedText`` on the returned value. :param select_whole_word: If set to true the whole word is selected, else the selection stops at the cursor position. :param text_cursor: Optional custom text cursor (e.g. from a QTextDocument clone) :returns: The QTextCursor that contains the selected word. """ editor = self._editor if not text_cursor: text_cursor = editor.textCursor() word_separators = editor.word_separators end_pos = start_pos = text_cursor.position() # select char by char until we are at the original cursor position. while not text_cursor.atStart(): text_cursor.movePosition( text_cursor.Left, text_cursor.KeepAnchor, 1) try: char = text_cursor.selectedText()[0] word_separators = editor.word_separators selected_txt = text_cursor.selectedText() if (selected_txt in word_separators and (selected_txt != "n" and selected_txt != "t") or char.isspace()): break # start boundary found except IndexError: break # nothing selectable start_pos = text_cursor.position() text_cursor.setPosition(start_pos) if select_whole_word: # select the resot of the word text_cursor.setPosition(end_pos) while not text_cursor.atEnd(): text_cursor.movePosition(text_cursor.Right, text_cursor.KeepAnchor, 1) char = text_cursor.selectedText()[0] selected_txt = text_cursor.selectedText() if (selected_txt in word_separators and (selected_txt != "n" and selected_txt != "t") or char.isspace()): break # end boundary found end_pos = text_cursor.position() text_cursor.setPosition(end_pos) # now that we habe the boundaries, we can select the text text_cursor.setPosition(start_pos) text_cursor.setPosition(end_pos, text_cursor.KeepAnchor) return text_cursor def word_under_mouse_cursor(self): """ Selects the word under the **mouse** cursor. :return: A QTextCursor with the word under mouse cursor selected. """ editor = self._editor text_cursor = editor.cursorForPosition(editor._last_mouse_pos) text_cursor = self.word_under_cursor(True, text_cursor) return text_cursor def cursor_position(self): """ Returns the QTextCursor position. The position is a tuple made up of the line number (0 based) and the column number (0 based). :return: tuple(line, column) """ return (self._editor.textCursor().blockNumber(), self._editor.textCursor().columnNumber()) def current_line_nbr(self): """ Returns the text cursor's line number. :return: Line number """ return self.cursor_position()[0] def current_column_nbr(self): """ Returns the text cursor's column number. :return: Column number """ return self.cursor_position()[1] def line_count(self): """ Returns the line count of the specified editor :return: number of lines in the document. """ return self._editor.document().blockCount() def line_text(self, line_nbr): """ Gets the text of the specified line :param line_nbr: The line number of the text to get :return: Entire line's text :rtype: str """ doc = self._editor.document() block = doc.findBlockByNumber(line_nbr) return block.text() def previous_line_text(self): """ Gets the previous line text (relative to the current cursor pos). :return: previous line text (str) """ if self.current_line_nbr(): return self.line_text(self.current_line_nbr() - 1) return '' def current_line_text(self): """ Returns the text of the current line. :return: Text of the current line """ return self.line_text(self.current_line_nbr()) def set_line_text(self, line_nbr, new_text): """ Replace an entire line with ``new_text``. :param line_nbr: line number of the line to change. :param new_text: The replacement text. """ editor = self._editor text_cursor = self._move_cursor_to(line_nbr) text_cursor.select(text_cursor.LineUnderCursor) text_cursor.insertText(new_text) editor.setTextCursor(text_cursor) def remove_last_line(self): """ Removes the last line of the document. """ editor = self._editor text_cursor = editor.textCursor() text_cursor.movePosition(text_cursor.End, text_cursor.MoveAnchor) text_cursor.select(text_cursor.LineUnderCursor) text_cursor.removeSelectedText() text_cursor.deletePreviousChar() editor.setTextCursor(text_cursor) def clean_document(self): """ Removes trailing whitespaces and ensure one single blank line at the end of the QTextDocument. ..deprecated: since pyqode 2.6.3, document is cleaned on disk only. """ editor = self._editor value = editor.verticalScrollBar().value() pos = self.cursor_position() editor.textCursor().beginEditBlock() # cleanup whitespaces editor._cleaning = True eaten = 0 removed = set() for line in editor._modified_lines: # parse line before and line after modified line (for cases where # key_delete or key_return has been pressed) for j in range(-1, 2): # skip current line if line + j != pos[0]: if line + j >= 0: txt = self.line_text(line + j) stxt = txt.rstrip() if txt != stxt: self.set_line_text(line + j, stxt) removed.add(line + j) editor._modified_lines -= removed # ensure there is only one blank line left at the end of the file i = self.line_count() while i: line = self.line_text(i - 1) if line.strip(): break self.remove_last_line() i -= 1 if self.line_text(self.line_count() - 1): editor.appendPlainText('') # restore cursor and scrollbars text_cursor = editor.textCursor() doc = editor.document() assert isinstance(doc, QtGui.QTextDocument) text_cursor = self._move_cursor_to(pos[0]) text_cursor.movePosition(text_cursor.StartOfLine, text_cursor.MoveAnchor) cpos = text_cursor.position() text_cursor.select(text_cursor.LineUnderCursor) if text_cursor.selectedText(): text_cursor.setPosition(cpos) offset = pos[1] - eaten text_cursor.movePosition(text_cursor.Right, text_cursor.MoveAnchor, offset) else: text_cursor.setPosition(cpos) editor.setTextCursor(text_cursor) editor.verticalScrollBar().setValue(value) text_cursor.endEditBlock() editor._cleaning = False def select_whole_line(self, line=None, apply_selection=True): """ Selects an entire line. :param line: Line to select. If None, the current line will be selected :param apply_selection: True to apply selection on the text editor widget, False to just return the text cursor without setting it on the editor. :return: QTextCursor """ if line is None: line = self.current_line_nbr() return self.select_lines(line, line, apply_selection=apply_selection) def _move_cursor_to(self, line): cursor = self._editor.textCursor() block = self._editor.document().findBlockByNumber(line) cursor.setPosition(block.position()) return cursor def select_lines(self, start=0, end=-1, apply_selection=True): """ Selects entire lines between start and end line numbers. This functions apply the selection and returns the text cursor that contains the selection. Optionally it is possible to prevent the selection from being applied on the code editor widget by setting ``apply_selection`` to False. :param start: Start line number (0 based) :param end: End line number (0 based). Use -1 to select up to the end of the document :param apply_selection: True to apply the selection before returning the QTextCursor. :returns: A QTextCursor that holds the requested selection """ editor = self._editor if end == -1: end = self.line_count() - 1 if start < 0: start = 0 text_cursor = self._move_cursor_to(start) if end > start: # Going down text_cursor.movePosition(text_cursor.Down, text_cursor.KeepAnchor, end - start) text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.KeepAnchor) elif end < start: # going up # don't miss end of line ! text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.MoveAnchor) text_cursor.movePosition(text_cursor.Up, text_cursor.KeepAnchor, start - end) text_cursor.movePosition(text_cursor.StartOfLine, text_cursor.KeepAnchor) else: text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.KeepAnchor) if apply_selection: editor.setTextCursor(text_cursor) return text_cursor def selection_range(self): """ Returns the selected lines boundaries (start line, end line) :return: tuple(int, int) """ editor = self._editor doc = editor.document() start = doc.findBlock( editor.textCursor().selectionStart()).blockNumber() end = doc.findBlock( editor.textCursor().selectionEnd()).blockNumber() text_cursor = QtGui.QTextCursor(editor.textCursor()) text_cursor.setPosition(editor.textCursor().selectionEnd()) if text_cursor.columnNumber() == 0 and start != end: end -= 1 return start, end def line_pos_from_number(self, line_number): """ Computes line position on Y-Axis (at the center of the line) from line number. :param line_number: The line number for which we want to know the position in pixels. :return: The center position of the line. """ editor = self._editor block = editor.document().findBlockByNumber(line_number) if block.isValid(): return int(editor.blockBoundingGeometry(block).translated( editor.contentOffset()).top()) if line_number <= 0: return 0 else: return int(editor.blockBoundingGeometry( block.previous()).translated(editor.contentOffset()).bottom()) def line_nbr_from_position(self, y_pos): """ Returns the line number from the y_pos :param y_pos: Y pos in the editor :return: Line number (0 based), -1 if out of range """ editor = self._editor height = editor.fontMetrics().height() for top, line, block in editor.visible_blocks: if top <= y_pos <= top + height: return line return -1 def mark_whole_doc_dirty(self): """ Marks the whole document as dirty to force a full refresh. **SLOW** """ text_cursor = self._editor.textCursor() text_cursor.select(text_cursor.Document) self._editor.document().markContentsDirty(text_cursor.selectionStart(), text_cursor.selectionEnd()) def line_indent(self, line_nbr=None): """ Returns the indent level of the specified line :param line_nbr: Number of the line to get indentation (1 base). Pass None to use the current line number. Note that you can also pass a QTextBlock instance instead of an int. :return: Number of spaces that makes the indentation level of the current line """ if line_nbr is None: line_nbr = self.current_line_nbr() elif isinstance(line_nbr, QtGui.QTextBlock): line_nbr = line_nbr.blockNumber() line = self.line_text(line_nbr) indentation = len(line) - len(line.lstrip()) return indentation def get_right_word(self, cursor=None): """ Gets the character on the right of the text cursor. :param cursor: QTextCursor where the search will start. :return: The word that is on the right of the text cursor. """ if cursor is None: cursor = self._editor.textCursor() cursor.movePosition(QtGui.QTextCursor.WordRight, QtGui.QTextCursor.KeepAnchor) return cursor.selectedText().strip() def get_right_character(self, cursor=None): """ Gets the character that is on the right of the text cursor. :param cursor: QTextCursor that defines the position where the search will start. """ next_char = self.get_right_word(cursor=cursor) if len(next_char): next_char = next_char[0] else: next_char = None return next_char def insert_text(self, text, keep_position=True): """ Inserts text at the cursor position. :param text: text to insert :param keep_position: Flag that specifies if the cursor position must be kept. Pass False for a regular insert (the cursor will be at the end of the inserted text). """ text_cursor = self._editor.textCursor() if keep_position: s = text_cursor.selectionStart() e = text_cursor.selectionEnd() text_cursor.insertText(text) if keep_position: text_cursor.setPosition(s) text_cursor.setPosition(e, text_cursor.KeepAnchor) self._editor.setTextCursor(text_cursor) def clear_selection(self): """ Clears text cursor selection """ text_cursor = self._editor.textCursor() text_cursor.clearSelection() self._editor.setTextCursor(text_cursor) def move_right(self, keep_anchor=False, nb_chars=1): """ Moves the cursor on the right. :param keep_anchor: True to keep anchor (to select text) or False to move the anchor (no selection) :param nb_chars: Number of characters to move. """ text_cursor = self._editor.textCursor() text_cursor.movePosition( text_cursor.Right, text_cursor.KeepAnchor if keep_anchor else text_cursor.MoveAnchor, nb_chars) self._editor.setTextCursor(text_cursor) def selected_text_to_lower(self): """ Replaces the selected text by its lower version """ txt = self.selected_text() self.insert_text(txt.lower()) def selected_text_to_upper(self): """ Replaces the selected text by its upper version """ txt = self.selected_text() self.insert_text(txt.upper()) def search_text(self, text_cursor, search_txt, search_flags): """ Searches a text in a text document. :param text_cursor: Current text cursor :param search_txt: Text to search :param search_flags: QTextDocument.FindFlags :returns: the list of occurrences, the current occurrence index :rtype: tuple([], int) """ def compare_cursors(cursor_a, cursor_b): """ Compares two QTextCursor :param cursor_a: cursor a :param cursor_b: cursor b :returns; True if both cursor are identical (same position, same selection) """ return (cursor_b.selectionStart() >= cursor_a.selectionStart() and cursor_b.selectionEnd() <= cursor_a.selectionEnd()) text_document = self._editor.document() occurrences = [] index = -1 cursor = text_document.find(search_txt, 0, search_flags) original_cursor = text_cursor while not cursor.isNull(): if compare_cursors(cursor, original_cursor): index = len(occurrences) occurrences.append((cursor.selectionStart(), cursor.selectionEnd())) cursor.setPosition(cursor.position() + 1) cursor = text_document.find(search_txt, cursor, search_flags) return occurrences, index def is_comment_or_string(self, cursor_or_block, formats=None): """ Checks if a block/cursor is a string or a comment. :param cursor_or_block: QTextCursor or QTextBlock :param formats: the list of color scheme formats to consider. By default, it will consider the following keys: 'comment', 'string', 'docstring'. """ if formats is None: formats = ["comment", "string", "docstring"] layout = None pos = 0 if isinstance(cursor_or_block, QtGui.QTextBlock): pos = len(cursor_or_block.text()) - 1 layout = cursor_or_block.layout() elif isinstance(cursor_or_block, QtGui.QTextCursor): b = cursor_or_block.block() pos = cursor_or_block.position() - b.position() layout = b.layout() if layout is not None: additional_formats = layout.additionalFormats() sh = self._editor.syntax_highlighter if sh: ref_formats = sh.color_scheme.formats for r in additional_formats: if r.start <= pos < (r.start + r.length): for fmt_type in formats: is_user_obj = (r.format.objectType() == r.format.UserObject) if (ref_formats[fmt_type] == r.format and is_user_obj): return True return False def select_extended_word(self, continuation_chars=('.',)): """ Performs extended word selection. Extended selection consists in selecting the word under cursor and any other words that are linked by a ``continuation_chars``. :param continuation_chars: the list of characters that may extend a word. """ cursor = self._editor.textCursor() original_pos = cursor.position() start_pos = None end_pos = None # go left stop = False seps = self._editor.word_separators + [' '] while not stop: cursor.clearSelection() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if cursor.atBlockStart(): stop = True start_pos = cursor.position() elif char in seps and char not in continuation_chars: stop = True start_pos = cursor.position() + 1 # go right cursor.setPosition(original_pos) stop = False while not stop: cursor.clearSelection() cursor.movePosition(cursor.Right, cursor.KeepAnchor) char = cursor.selectedText() if cursor.atBlockEnd(): stop = True end_pos = cursor.position() if char in seps: end_pos -= 1 elif char in seps and char not in continuation_chars: stop = True end_pos = cursor.position() - 1 if start_pos and end_pos: cursor.setPosition(start_pos) cursor.movePosition(cursor.Right, cursor.KeepAnchor, end_pos - start_pos) self._editor.setTextCursor(cursor) def match_select(self, ignored_symbols=None): """ Performs matched selection, selects text between matching quotes or parentheses. :param ignored_symbols; matching symbols to ignore. """ def filter_matching(ignored_symbols, matching): """ Removes any ignored symbol from the match dict. """ if ignored_symbols is not None: for symbol in matching.keys(): if symbol in ignored_symbols: matching.pop(symbol) return matching def find_opening_symbol(cursor, matching): """ Find the position ot the opening symbol :param cursor: Current text cursor :param matching: symbol matches map """ start_pos = None opening_char = None closed = {k: 0 for k in matching.values() if k not in ['"', "'"]} # go left stop = False while not stop and not cursor.atStart(): cursor.clearSelection() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if char in closed.keys(): closed[char] += 1 elif char in matching.keys(): opposite = matching[char] if opposite in closed.keys() and closed[opposite]: closed[opposite] -= 1 continue else: # found opening quote or parenthesis start_pos = cursor.position() + 1 stop = True opening_char = char return opening_char, start_pos def find_closing_symbol(cursor, matching, opening_char, original_pos): """ Finds the position of the closing symbol :param cursor: current text cursor :param matching: symbold matching dict :param opening_char: the opening character :param original_pos: position of the opening character. """ end_pos = None cursor.setPosition(original_pos) rev_matching = {v: k for k, v in matching.items()} opened = {k: 0 for k in rev_matching.values() if k not in ['"', "'"]} stop = False while not stop and not cursor.atEnd(): cursor.clearSelection() cursor.movePosition(cursor.Right, cursor.KeepAnchor) char = cursor.selectedText() if char in opened.keys(): opened[char] += 1 elif char in rev_matching.keys(): opposite = rev_matching[char] if opposite in opened.keys() and opened[opposite]: opened[opposite] -= 1 continue elif matching[opening_char] == char: # found opening quote or parenthesis end_pos = cursor.position() - 1 stop = True return end_pos matching = {'(': ')', '{': '}', '[': ']', '"': '"', "'": "'"} filter_matching(ignored_symbols, matching) cursor = self._editor.textCursor() original_pos = cursor.position() end_pos = None opening_char, start_pos = find_opening_symbol(cursor, matching) if opening_char: end_pos = find_closing_symbol( cursor, matching, opening_char, original_pos) if start_pos and end_pos: cursor.setPosition(start_pos) cursor.movePosition(cursor.Right, cursor.KeepAnchor, end_pos - start_pos) self._editor.setTextCursor(cursor) return True else: return False class TextBlockHelper(object): """ Helps retrieving the various part of the user state bitmask. This helper should be used to replace calls to ``QTextBlock.setUserState``/``QTextBlock.getUserState`` as well as ``QSyntaxHighlighter.setCurrentBlockState``/ ``QSyntaxHighlighter.currentBlockState`` and ``QSyntaxHighlighter.previousBlockState``. The bitmask is made up of the following fields: - bit0 -> bit26: User state (for syntax highlighting) - bit26: fold trigger state - bit27-bit29: fold level (8 level max) - bit30: fold trigger flag - bit0 -> bit15: 16 bits for syntax highlighter user state ( for syntax highlighting) - bit16-bit25: 10 bits for the fold level (1024 levels) - bit26: 1 bit for the fold trigger flag (trigger or not trigger) - bit27: 1 bit for the fold trigger state (expanded/collapsed) """ @staticmethod def get_state(block): """ Gets the user state, generally used for syntax highlighting. :param block: block to access :return: The block state """ if block is None: return -1 state = block.userState() if state == -1: return state return state & 0x0000FFFF @staticmethod def set_state(block, state): """ Sets the user state, generally used for syntax highlighting. :param block: block to modify :param state: new state value. :return: """ if block is None: return user_state = block.userState() if user_state == -1: user_state = 0 higher_part = user_state & 0x7FFF0000 state &= 0x0000FFFF state |= higher_part block.setUserState(state) @staticmethod def get_fold_lvl(block): """ Gets the block fold level :param block: block to access. :returns: The block fold level """ if block is None: return 0 state = block.userState() if state == -1: state = 0 return (state & 0x03FF0000) >> 16 @staticmethod def set_fold_lvl(block, val): """ Sets the block fold level. :param block: block to modify :param val: The new fold level [0-7] """ if block is None: return state = block.userState() if state == -1: state = 0 if val >= 0x3FF: val = 0x3FF state &= 0x7C00FFFF state |= val << 16 block.setUserState(state) @staticmethod def is_fold_trigger(block): """ Checks if the block is a fold trigger. :param block: block to check :return: True if the block is a fold trigger (represented as a node in the fold panel) """ if block is None: return False state = block.userState() if state == -1: state = 0 return bool(state & 0x04000000) @staticmethod def set_fold_trigger(block, val): """ Set the block fold trigger flag (True means the block is a fold trigger). :param block: block to set :param val: value to set """ if block is None: return state = block.userState() if state == -1: state = 0 state &= 0x7BFFFFFF state |= int(val) << 26 block.setUserState(state) @staticmethod def is_collapsed(block): """ Checks if the block is expanded or collased. :param block: QTextBlock :return: False for an open trigger, True for for closed trigger """ if block is None: return False state = block.userState() if state == -1: state = 0 return bool(state & 0x08000000) @staticmethod def set_collapsed(block, val): """ Sets the fold trigger state (collapsed or expanded). :param block: The block to modify :param val: The new trigger state (True=collapsed, False=expanded) """ if block is None: return state = block.userState() if state == -1: state = 0 state &= 0x77FFFFFF state |= int(val) << 27 block.setUserState(state) class ParenthesisInfo(object): """ Stores information about a parenthesis in a line of code. """ def __init__(self, pos, char): #: Position of the parenthesis, expressed as a number of character self.position = pos #: The parenthesis character, one of "(", ")", "{", "}", "[", "]" self.character = char def get_block_symbol_data(editor, block): """ Gets the list of ParenthesisInfo for specific text block. :param editor: Code edit instance :param block: block to parse """ def list_symbols(editor, block, character): """ Retuns a list of symbols found in the block text :param editor: code edit instance :param block: block to parse :param character: character to look for. """ text = block.text() symbols = [] cursor = QtGui.QTextCursor(block) cursor.movePosition(cursor.StartOfBlock) pos = text.find(character, 0) cursor.movePosition(cursor.Right, cursor.MoveAnchor, pos) while pos != -1: if not TextHelper(editor).is_comment_or_string(cursor): # skips symbols in string literal or comment info = ParenthesisInfo(pos, character) symbols.append(info) pos = text.find(character, pos + 1) cursor.movePosition(cursor.StartOfBlock) cursor.movePosition(cursor.Right, cursor.MoveAnchor, pos) return symbols parentheses = sorted( list_symbols(editor, block, '(') + list_symbols(editor, block, ')'), key=lambda x: x.position) square_brackets = sorted( list_symbols(editor, block, '[') + list_symbols(editor, block, ']'), key=lambda x: x.position) braces = sorted( list_symbols(editor, block, '{') + list_symbols(editor, block, '}'), key=lambda x: x.position) return parentheses, square_brackets, braces def keep_tc_pos(func): """ Cache text cursor position and restore it when the wrapped function exits. This decorator can only be used on modes or panels. :param func: wrapped function """ @functools.wraps(func) def wrapper(editor, *args, **kwds): """ Decorator """ sb = editor.verticalScrollBar() spos = sb.sliderPosition() pos = editor.textCursor().position() retval = func(editor, *args, **kwds) text_cursor = editor.textCursor() text_cursor.setPosition(pos) editor.setTextCursor(text_cursor) sb.setSliderPosition(spos) return retval return wrapper def with_wait_cursor(func): """ Show a wait cursor while the wrapped function is running. The cursor is restored as soon as the function exits. :param func: wrapped function """ @functools.wraps(func) def wrapper(*args, **kwargs): QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.WaitCursor)) try: ret_val = func(*args, **kwargs) finally: QtWidgets.QApplication.restoreOverrideCursor() return ret_val return wrapper Turing-0.11-beta/pyqode/core/backend/ 0000775 0000000 0000000 00000000000 13314727572 0017447 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/backend/__init__.py 0000664 0000000 0000000 00000007434 13314727572 0021570 0 ustar 00root root 0000000 0000000 """ The backend package contains the API to use on the server side: - server + methods for running it - workers definitions pyQode uses a client-server architecture for running heavy tasks such as code analysis (lint), code completion,... Protocol -------- We use a worker based json messaging server using the TCP/IP transport. We build our own, very simple protocol where each message is made up of two parts: - a header: simply contains the length of the payload - a payload: a json formatted string, the content of the message. There are two type of json object: a request and a response. Request +++++++ For a request, the object will contains the following fields: - 'request_id': uuid generated client side - 'worker': fully qualified name to the worker callable (class or function), e.g. 'pyqode.core.backend.workers.echo_worker' - 'data': data specific to the chose worker. E.g:: { 'request_id': 'a97285af-cc88-48a4-ac69-7459b9c7fa66', 'worker': 'pyqode.core.backend.workers.echo_worker', 'data': ['some code', 0] } Response ++++++++ For a response, the object will contains the following fields: - 'request_id': uuid generated client side that is simply echoed back - 'results': worker results (list, tuple, string,...) E.g:: { 'request_id': 'a97285af-cc88-48a4-ac69-7459b9c7fa66', 'results': ['some code', 0] } Server script ------------- The server script must be written by the user. Don't worry, it's very simple. All you have to do is to create and run a JsonTcpServer instance. We choose to let you write the main script to let you easily configure it. Some workers will requires some tweaking (for the completion worker, you will want to add custom completion providers, you might also want to modify sys.path,...). It also makes the packaging process more consistent, your script will be packaged on linux using setup.py and will be frozen on windows using cx_Freeze. Here is the most simple and basic example of a server script: .. code-block: python from pyqode.core import backend if __name__ == '__main__': backend.serve_forever() .. warning:: The user can choose the python interpreter that will run the server. That means that classes and functions that run on the server side ( workers) **should fully support python2 syntax** and that pyqode.core should be installed on the target interpreter sys path!!! (even for a virtual env). An alternative is to keep pyqode.core package (and all dependencies in a zip archive that you mount on the sys path in your server script. .. note:: print statements on the server side will be logged as debug messages on the client side. To have your messages logged as error message just print to sys.stderr. """ from .server import JsonServer from .server import default_parser from .server import serve_forever from .workers import CodeCompletionWorker from .workers import DocumentWordsProvider from .workers import echo_worker class NotConnected(Exception): """ Raised if the client is not connected to the server when an operation is requested. .. deprecated:: Since v2.3, you should instead use ``NotRunning``. This will be removed in v2.5 """ def __init__(self): super(NotConnected, self).__init__( 'Client socket not connected or server not started') class NotRunning(Exception): """ Raise if the backend process is not running and a backend operation is requested. """ def __init__(self): super(NotRunning, self).__init__( 'Backend process not running') __all__ = [ 'JsonServer', 'default_parser', 'serve_forever', 'CodeCompletionWorker', 'DocumentWordsProvider', 'echo_worker', 'NotConnected', 'NotRunning' ] Turing-0.11-beta/pyqode/core/backend/server.py 0000664 0000000 0000000 00000016561 13314727572 0021340 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the server socket definition. """ import argparse import inspect import logging import json import os import struct import sys import time import traceback import threading try: import socketserver PY33 = True except ImportError: import SocketServer as socketserver PY33 = False def _logger(): """ Returns the module's logger """ return logging.getLogger(__name__) HEARTBEAT_DELAY = 60 # delay max without heartbeat signal def import_class(klass): """ Imports a class from a fully qualified name string. :param klass: class string, e.g. "pyqode.core.backend.workers.CodeCompletionWorker" :return: The corresponding class """ path = klass.rfind(".") class_name = klass[path + 1: len(klass)] try: module = __import__(klass[0:path], globals(), locals(), [class_name]) klass = getattr(module, class_name) except ImportError as e: raise ImportError('%s: %s' % (klass, str(e))) except AttributeError: raise ImportError(klass) else: return klass class JsonServer(socketserver.TCPServer): """ A server socket based on a json messaging system. """ class _Handler(socketserver.BaseRequestHandler): def read_bytes(self, size): """ Read x bytes :param size: number of bytes to read. """ if not PY33: data = '' else: data = bytes() while len(data) < size: tmp = self.request.recv(size - len(data)) data += tmp if tmp == '': raise RuntimeError("socket connection broken") return data def get_msg_len(self): """ Gets message len """ data = self.read_bytes(4) payload = struct.unpack('=I', data) return payload[0] def read(self): """ Reads a json string from socket and load it. """ size = self.get_msg_len() data = self.read_bytes(size).decode('utf-8') return json.loads(data) def send(self, obj): """ Sends a python obj as a json string on the socket. :param obj: The object to send, must be Json serializable. """ msg = json.dumps(obj).encode('utf-8') _logger().log(1, 'sending %d bytes for the payload', len(msg)) header = struct.pack('=I', len(msg)) self.request.sendall(header) self.request.sendall(msg) def handle(self): """ Hanlde the request and keep it alive while shutdown signal has not been received """ self.srv.reset_heartbeat() # make sure to have enough time to handle the request self.srv.timeout = HEARTBEAT_DELAY * 10 data = self.read() self._handle(data) self.srv.timeout = HEARTBEAT_DELAY self.srv.reset_heartbeat() def _handle(self, data): """ Handles a work request. """ try: _logger().log(1, 'handling request %r', data) assert data['worker'] assert data['request_id'] assert data['data'] is not None response = {'request_id': data['request_id'], 'results': []} try: worker = import_class(data['worker']) except ImportError: _logger().exception('Failed to import worker class') else: if inspect.isclass(worker): worker = worker() _logger().log(1, 'worker: %r', worker) _logger().log(1, 'data: %r', data['data']) try: ret_val = worker(data['data']) except Exception: _logger().exception( 'something went bad with worker %r(data=%r)', worker, data['data']) ret_val = None if ret_val is None: ret_val = [] response = {'request_id': data['request_id'], 'results': ret_val} finally: _logger().log(1, 'sending response: %r', response) try: self.send(response) except ConnectionAbortedError: pass except: _logger().warn('error with data=%r', data) exc1, exc2, exc3 = sys.exc_info() traceback.print_exception(exc1, exc2, exc3, file=sys.stderr) def __init__(self, args=None): """ :param args: Argument parser args. If None, the server will setup and use its own argument parser (using :meth:`pyqode.core.backend.default_parser`) """ self.reset_heartbeat() if not args: args = default_parser().parse_args() self.port = args.port self.timeout = HEARTBEAT_DELAY self._Handler.srv = self socketserver.TCPServer.__init__( self, ('127.0.0.1', int(args.port)), self._Handler) print('started on 127.0.0.1:%d' % int(args.port)) print('running with python %d.%d.%d' % (sys.version_info[:3])) self._heartbeat_thread = threading.Thread(target=self.heartbeat) self._heartbeat_thread.setDaemon(True) self._heartbeat_thread.start() def reset_heartbeat(self): self.last_time = time.time() self.elapsed_time = 0 def heartbeat(self): while True: elapsed_time = time.time() - self.last_time if elapsed_time > self.timeout: self.shutdown() sys.exit(1) time.sleep(1) def default_parser(): """ Configures and return the default argument parser. You should use this parser as a base if you want to add custom arguments. The default parser only has one argument, the tcp port used to start the server socket. *(CodeEdit picks up a free port and use it to run the server and connect its client socket)* :returns: The default server argument parser. """ parser = argparse.ArgumentParser() parser.add_argument("port", help="the local tcp port to use to run " "the server") return parser def serve_forever(args=None): """ Creates the server and serves forever :param args: Optional args if you decided to use your own argument parser. Default is None to let the JsonServer setup its own parser and parse command line arguments. """ class Unbuffered(object): def __init__(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def __getattr__(self, attr): return getattr(self.stream, attr) sys.stdout = Unbuffered(sys.stdout) sys.stderr = Unbuffered(sys.stderr) server = JsonServer(args=args) server.serve_forever() # Server script example if __name__ == '__main__': from pyqode.core import backend backend.CodeCompletionWorker.providers.append( backend.DocumentWordsProvider()) serve_forever() Turing-0.11-beta/pyqode/core/backend/workers.py 0000664 0000000 0000000 00000017727 13314727572 0021533 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the worker functions/classes used on the server side. A worker is a function or a callable which receive one single argument (the decoded json object) and returns a tuple made up of a status (bool) and a response object (json serializable). A worker is always tightly coupled with its caller, so are the data. .. warning:: This module should keep its dependencies as low as possible and fully supports python2 syntax. This is badly needed since the server might be run with a python2 interpreter. We don't want to force the user to install all the pyqode dependencies twice (if the user choose to run the server with python2, which might happen in pyqode.python to support python2 syntax). """ import logging import re import sys import traceback def echo_worker(data): """ Example of worker that simply echoes back the received data. :param data: Request data dict. :returns: True, data """ print('echo worker running') return data class CodeCompletionWorker(object): """ This is the worker associated with the code completion mode. The worker does not actually do anything smart, the real work of collecting code completions is accomplished by the completion providers (see the :class:`pyqode.core.backend.workers.CodeCompletionWorker.Provider` interface) listed in :attr:`pyqode.core.backend.workers.CompletionWorker.providers`. Completion providers must be installed on the CodeCompletionWorker at the beginning of the main server script, e.g.:: from pyqode.core.backend import CodeCompletionWorker CodeCompletionWorker.providers.insert(0, MyProvider()) """ #: The list of code completion provider to run on each completion request. providers = [] class Provider(object): """ This class describes the expected interface for code completion providers. You can inherit from this class but this is not required as long as you implement a ``complete`` method which returns the list of completions and have the expected signature:: def complete(self, code, line, column, path, encoding, prefix): pass """ def complete(self, code, line, column, path, encoding, prefix): """ Returns a list of completions. A completion is dictionary with the following keys: - 'name': name of the completion, this the text displayed and inserted when the user select a completion in the list - 'icon': an optional icon file name - 'tooltip': an optional tooltip string :param code: code string :param line: line number (0 based) :param column: column number (0 based) :param path: file path :param encoding: file encoding :param prefix: completion prefix (text before cursor) :returns: A list of completion dicts as described above. :rtype: list """ raise NotImplementedError() def __call__(self, data): """ Do the work (this will be called in the child process by the SubprocessServer). """ code = data['code'] line = data['line'] column = data['column'] path = data['path'] encoding = data['encoding'] prefix = data['prefix'] req_id = data['request_id'] completions = [] for prov in CodeCompletionWorker.providers: try: results = prov.complete( code, line, column, path, encoding, prefix) completions.append(results) if len(completions): break except: sys.stderr.write('Failed to get completions from provider %r' % prov) exc1, exc2, exc3 = sys.exc_info() traceback.print_exception(exc1, exc2, exc3, file=sys.stderr) return [(line, column, req_id)] + completions class DocumentWordsProvider(object): """ Provides completions based on the document words """ words = {} # word separators separators = [ '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+', '{', '}', '|', ':', '"', "'", "<", ">", "?", ",", ".", "/", ";", '[', ']', '\\', '\n', '\t', '=', '-', ' ' ] @staticmethod def split(txt, seps): """ Splits a text in a meaningful list of words based on a list of word separators (define in pyqode.core.settings) :param txt: Text to split :param seps: List of words separators :return: A **set** of words found in the document (excluding punctuations, numbers, ...) """ # replace all possible separators with a default sep default_sep = seps[0] for sep in seps[1:]: if sep: txt = txt.replace(sep, default_sep) # now we can split using the default_sep raw_words = txt.split(default_sep) words = set() for word in raw_words: # w = w.strip() if word.replace('_', '').isalpha(): words.add(word) return sorted(words) def complete(self, code, *args): """ Provides completions based on the document words. :param code: code to complete :param args: additional (unused) arguments. """ completions = [] for word in self.split(code, self.separators): completions.append({'name': word}) return completions def finditer_noregex(string, sub, whole_word): """ Search occurrences using str.find instead of regular expressions. :param string: string to parse :param sub: search string :param whole_word: True to select whole words only """ start = 0 while True: start = string.find(sub, start) if start == -1: return if whole_word: if start: pchar = string[start - 1] else: pchar = ' ' try: nchar = string[start + len(sub)] except IndexError: nchar = ' ' if nchar in DocumentWordsProvider.separators and \ pchar in DocumentWordsProvider.separators: yield start start += len(sub) else: yield start start += 1 def findalliter(string, sub, regex=False, case_sensitive=False, whole_word=False): """ Generator that finds all occurrences of ``sub`` in ``string`` :param string: string to parse :param sub: string to search :param regex: True to search using regex :param case_sensitive: True to match case, False to ignore case :param whole_word: True to returns only whole words :return: """ if not sub: return if regex: flags = re.MULTILINE if not case_sensitive: flags |= re.IGNORECASE for val in re.finditer(sub, string, flags): yield val.span() else: if not case_sensitive: string = string.lower() sub = sub.lower() for val in finditer_noregex(string, sub, whole_word): yield val, val + len(sub) def findall(data): """ Worker that finds all occurrences of a given string (or regex) in a given text. :param data: Request data dict:: { 'string': string to search in text 'sub': input text 'regex': True to consider string as a regular expression 'whole_word': True to match whole words only. 'case_sensitive': True to match case, False to ignore case } :return: list of occurrence positions in text """ return list(findalliter( data['string'], data['sub'], regex=data['regex'], whole_word=data['whole_word'], case_sensitive=data['case_sensitive'])) Turing-0.11-beta/pyqode/core/cache.py 0000664 0000000 0000000 00000011612 13314727572 0017476 0 ustar 00root root 0000000 0000000 """ This module contains a class to access the pyQode settings (QSettings). QSettings are used to cache some specific settings. At the moment, we use it to store the lists of encoding that appears in the encoding menu (to not have a too big encoding menu, user can choose which encoding should be display, offering a small compact menu with all its favorite encodings). We also cache encoding used to save or load a file so that we can reuse it automatically next time the user want to open the same file. We also use this to cache some editor states (such as the last cursor position for a specific file path) We do not store editor styles and settings here. Those kind of settings are better handled at the application level. """ import json import locale import logging from pyqode.qt import QtCore try: from future.builtins import open from future.builtins import str except: pass # python 3.2 not supported class Cache(object): """ Provides an easy acces to the cache by exposing some wrapper properties over QSettings. """ def __init__(self, suffix='', qsettings=None): if qsettings is None: self._settings = QtCore.QSettings('pyQode', 'pyqode.core%s' % suffix) else: self._settings = qsettings def clear(self): """ Clears the cache. """ self._settings.clear() @property def preferred_encodings(self): """ The list of user defined encodings, for display in the encodings menu/combobox. """ default_encodings = [ locale.getpreferredencoding().lower().replace('-', '_')] if 'utf_8' not in default_encodings: default_encodings.append('utf_8') default_encodings = list(set(default_encodings)) return json.loads(self._settings.value( 'userDefinedEncodings', json.dumps(default_encodings))) @preferred_encodings.setter def preferred_encodings(self, value): from pyqode.core.api import encodings lst = [encodings.convert_to_codec_key(v) for v in value] self._settings.setValue('userDefinedEncodings', json.dumps(list(set(lst)))) def get_file_encoding(self, file_path, preferred_encoding=None): """ Gets an eventual cached encoding for file_path. Raises a KeyError if no encoding were cached for the specified file path. :param file_path: path of the file to look up :returns: The cached encoding. """ _logger().debug('getting encoding for %s', file_path) try: map = json.loads(self._settings.value('cachedFileEncodings')) except TypeError: map = {} try: return map[file_path] except KeyError: encodings = self.preferred_encodings if preferred_encoding: encodings.insert(0, preferred_encoding) for encoding in encodings: _logger().debug('trying encoding: %s', encoding) try: with open(file_path, encoding=encoding) as f: f.read() except (UnicodeDecodeError, IOError, OSError): pass else: return encoding raise KeyError(file_path) def set_file_encoding(self, path, encoding): """ Cache encoding for the specified file path. :param path: path of the file to cache :param encoding: encoding to cache """ try: map = json.loads(self._settings.value('cachedFileEncodings')) except TypeError: map = {} map[path] = encoding self._settings.setValue('cachedFileEncodings', json.dumps(map)) def get_cursor_position(self, file_path): """ Gets the cached cursor position for file_path :param file_path: path of the file in the cache :return: Cached cursor position or (0, 0) """ try: map = json.loads(self._settings.value('cachedCursorPosition')) except TypeError: map = {} try: pos = map[file_path] except KeyError: pos = 0 if isinstance(pos, list): # changed in pyqode 2.6.3, now we store the cursor position # instead of the line and column (faster) pos = 0 return pos def set_cursor_position(self, path, position): """ Cache encoding for the specified file path. :param path: path of the file to cache :param position: cursor position to cache """ try: map = json.loads(self._settings.value('cachedCursorPosition')) except TypeError: map = {} map[path] = position self._settings.setValue('cachedCursorPosition', json.dumps(map)) def _logger(): return logging.getLogger(__name__) Turing-0.11-beta/pyqode/core/dialogs/ 0000775 0000000 0000000 00000000000 13314727572 0017502 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/dialogs/__init__.py 0000664 0000000 0000000 00000000533 13314727572 0021614 0 ustar 00root root 0000000 0000000 """ This package contains all the pyqode specific dialogs. """ from .goto import DlgGotoLine from .encodings import DlgPreferredEncodingsEditor from .encodings import DlgEncodingsChoice from .unsaved_files import DlgUnsavedFiles __all__ = [ 'DlgPreferredEncodingsEditor', 'DlgGotoLine', 'DlgUnsavedFiles', 'DlgEncodingsChoice' ] Turing-0.11-beta/pyqode/core/dialogs/encodings.py 0000664 0000000 0000000 00000016352 13314727572 0022034 0 ustar 00root root 0000000 0000000 """ This module contains some dialogs to help you manage encodings in you application. """ import locale from pyqode.core import icons from pyqode.core.api import encodings from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache from pyqode.core._forms import dlg_preferred_encodings_editor_ui class DlgPreferredEncodingsEditor(QtWidgets.QDialog): """ This dialog is used to edit the preferred encodings that appears in the encodings menu/combo box. """ def __init__(self, parent=None): super(DlgPreferredEncodingsEditor, self).__init__(parent) self.ui = dlg_preferred_encodings_editor_ui.Ui_Dialog() self.ui.setupUi(self) self._load_preferred() self.ui.pushButtonAdd.clicked.connect(self._add) self.ui.pushButtonAdd.setIcon(icons.icon( 'go-next', ':/pyqode-icons/rc/go-next.png', 'fa.arrow-right')) self.ui.pushButtonRemove.setIcon(icons.icon( 'go-previous', ':/pyqode-icons/rc/go-previous.png', 'fa.arrow-left')) self.ui.pushButtonRemove.clicked.connect(self._remove) def _load_available(self): self.ui.tableWidgetAvailable.setColumnCount(2) self.ui.tableWidgetAvailable.setSelectionMode( self.ui.tableWidgetAvailable.SingleSelection) self.ui.tableWidgetAvailable.setSelectionBehavior( self.ui.tableWidgetAvailable.SelectRows) self.ui.tableWidgetAvailable.setHorizontalHeaderLabels([ 'Encoding', 'Language']) self.ui.tableWidgetAvailable.verticalHeader().hide() self.ui.tableWidgetAvailable.setSortingEnabled(True) preferred = Cache().preferred_encodings for key in sorted(encodings.ENCODINGS_MAP.keys()): value = encodings.ENCODINGS_MAP[key] if key not in preferred: # lang_item.setData(QtCore.Qt.UserRole, key) row = self.ui.tableWidgetAvailable.rowCount() self.ui.tableWidgetAvailable.insertRow(row) for column in range(2): item = QtWidgets.QTableWidgetItem(value[column].strip()) item.setData(QtCore.Qt.UserRole, key) # item.setData(QtCore.Qt.UserRole, key) self.ui.tableWidgetAvailable.setItem(row, column, item) self.ui.tableWidgetAvailable.sortByColumn(0, QtCore.Qt.AscendingOrder) def _load_preferred(self): self._load_available() # setup preferred encodings self.ui.tableWidgetPreferred.setColumnCount(2) self.ui.tableWidgetPreferred.setSelectionMode( self.ui.tableWidgetPreferred.SingleSelection) self.ui.tableWidgetPreferred.setSelectionBehavior( self.ui.tableWidgetPreferred.SelectRows) self.ui.tableWidgetPreferred.setHorizontalHeaderLabels([ 'Encoding', 'Language']) self.ui.tableWidgetPreferred.verticalHeader().hide() self.ui.tableWidgetPreferred.setSortingEnabled(True) for i, encoding in enumerate(Cache().preferred_encodings): encoding = encodings.convert_to_codec_key(encoding) value = encodings.ENCODINGS_MAP[encoding] row = self.ui.tableWidgetPreferred.rowCount() self.ui.tableWidgetPreferred.insertRow(row) for column in range(2): item = QtWidgets.QTableWidgetItem(value[column].strip()) item.setData(QtCore.Qt.UserRole, encoding) self.ui.tableWidgetPreferred.setItem(row, column, item) self.ui.tableWidgetPreferred.sortByColumn(0, QtCore.Qt.AscendingOrder) def _transfer_selected_items(self, source, destination): # keeping sorting enabled cause bug for the second transferred item destination.setSortingEnabled(False) row = source.currentRow() if row != -1: # take items from source items = [] encoding = source.item(row, 0).data(QtCore.Qt.UserRole) is_locale = encoding == encodings.convert_to_codec_key( locale.getpreferredencoding()) if source == self.ui.tableWidgetPreferred and is_locale: destination.setSortingEnabled(True) return for i in range(2): items.append(source.takeItem(row, i)) source.removeRow(row) # insert a new row in the taken items into destination row = destination.rowCount() destination.insertRow(row) for col, item in enumerate(items): item = QtWidgets.QTableWidgetItem(item) destination.setItem(row, col, item) destination.setSortingEnabled(True) def _add(self): self._transfer_selected_items(self.ui.tableWidgetAvailable, self.ui.tableWidgetPreferred) def _remove(self): self._transfer_selected_items(self.ui.tableWidgetPreferred, self.ui.tableWidgetAvailable) def get_preferred_encodings(self): """ Gets the list of preferred encodings. :return: list """ encodings = [] for row in range(self.ui.tableWidgetPreferred.rowCount()): item = self.ui.tableWidgetPreferred.item(row, 0) encodings.append(item.data(QtCore.Qt.UserRole)) return encodings @classmethod def edit_encoding(cls, parent): """ Static helper method that shows the encoding editor dialog If the dialog was accepted the new encodings are added to the settings. :param parent: parent widget :return: True in case of succes, False otherwise """ dlg = cls(parent) if dlg.exec_() == dlg.Accepted: settings = Cache() settings.preferred_encodings = dlg.get_preferred_encodings() return True return False class DlgEncodingsChoice(QtWidgets.QDialog): """ This dialogs ask the user to choose an encoding from a combo box. You can use it if you're not using the encoding panel when there is a decoding error when opening a file. """ def __init__(self, parent, path, encoding): super(DlgEncodingsChoice, self).__init__(parent) self.setWindowTitle('Choose encoding') # avoid circular references with CodeEdit from pyqode.core._forms import dlg_encodings_ui self.ui = dlg_encodings_ui.Ui_Dialog() self.ui.setupUi(self) self.ui.comboBoxEncodings.current_encoding = encoding self.ui.lblDescription.setText( self.ui.lblDescription.text() % (_('There was a problem opening the file %r with encoding: %s') % (path, encoding))) @classmethod def choose_encoding(cls, parent, path, encoding): """ Show the encodings dialog and returns the user choice. :param parent: parent widget. :param path: file path :param encoding: current file encoding :return: selected encoding """ dlg = cls(parent, path, encoding) dlg.exec_() return dlg.ui.comboBoxEncodings.current_encoding if __name__ == '__main__': import sys app = QtWidgets.QApplication(sys.argv) new_encoding = DlgEncodingsChoice.choose_encoding(None, __file__, 'utf-8') print(new_encoding) Turing-0.11-beta/pyqode/core/dialogs/goto.py 0000664 0000000 0000000 00000002733 13314727572 0021031 0 ustar 00root root 0000000 0000000 """ This module contains the go to line dialog. """ from pyqode.core._forms import dlg_goto_line_ui from pyqode.qt import QtWidgets class DlgGotoLine(QtWidgets.QDialog, dlg_goto_line_ui.Ui_Dialog): """ Goto line dialog. """ def __init__(self, parent, current_line, line_count): QtWidgets.QDialog.__init__(self, parent) dlg_goto_line_ui.Ui_Dialog.__init__(self) self.setupUi(self) self.buttonBox.accepted.connect(self.accept) self.buttonBox.rejected.connect(self.reject) self.spinBox.setMaximum(line_count) self.spinBox.setValue(current_line) self.lblCurrentLine.setText("%d" % current_line) self.lblLineCount.setText("%d" % line_count) self.buttonBox.button(self.buttonBox.Ok).setText(_("Go")) self.buttonBox.button(self.buttonBox.Cancel).setText( "I'm going nowhere") self.spinBox.setFocus() @classmethod def get_line(cls, parent, current_line, line_count): """ Gets user selected line. :param parent: Parent widget :param current_line: Current line number :param line_count: Number of lines in the current text document. :returns: tuple(line, status) status is False if the dialog has been rejected. """ dlg = DlgGotoLine(parent, current_line + 1, line_count) if dlg.exec_() == dlg.Accepted: return dlg.spinBox.value() - 1, True return current_line, False Turing-0.11-beta/pyqode/core/dialogs/unsaved_files.py 0000664 0000000 0000000 00000003773 13314727572 0022715 0 ustar 00root root 0000000 0000000 """ This module contains the unsaved files dialog. """ from pyqode.qt.QtWidgets import QDialog from pyqode.core._forms.dlg_unsaved_files_ui import Ui_Dialog from pyqode.qt import QtWidgets, QtCore class DlgUnsavedFiles(QDialog, Ui_Dialog): """ This dialog shows the list of unsaved file in the CodeEditTabWidget. Use can choose to: - cancel: nothing changed, no tab will be closed - save all/save selected: save the selected files or all files - discard all changes: nothing will be saved but all tabs will be closed. """ def __init__(self, parent, files=None): if files is None: files = [] QtWidgets.QDialog.__init__(self, parent) Ui_Dialog.__init__(self) self.setupUi(self) self.bt_save_all = self.buttonBox.button( QtWidgets.QDialogButtonBox.SaveAll) self.bt_save_all.clicked.connect(self.accept) self.discarded = False self.bt_discard = self.buttonBox.button( QtWidgets.QDialogButtonBox.Discard) self.bt_discard.clicked.connect(self._set_discarded) self.bt_discard.clicked.connect(self.accept) for file in files: self._add_file(file) self.listWidget.itemSelectionChanged.connect( self._on_selection_changed) self._on_selection_changed() def _add_file(self, path): icon = QtWidgets.QFileIconProvider().icon(QtCore.QFileInfo(path)) item = QtWidgets.QListWidgetItem(icon, path) self.listWidget.addItem(item) def _set_discarded(self): self.discarded = True def _on_selection_changed(self): nb_items = len(self.listWidget.selectedItems()) if nb_items == 0: self.bt_save_all.setText(_("Save")) self.bt_save_all.setEnabled(False) else: self.bt_save_all.setEnabled(True) self.bt_save_all.setText(_("Save selected")) if nb_items == self.listWidget.count(): self.bt_save_all.setText(_("Save all")) Turing-0.11-beta/pyqode/core/icons.py 0000664 0000000 0000000 00000003611 13314727572 0017546 0 ustar 00root root 0000000 0000000 """ This module contains a wrapper api over the various icon source pyqode could use: - icon from theme (linux only) - icon from qrc - icon from qtawesome qtawesome is an optional dependency, it is disabled by default. If your application use qtawesome, just set ``USE_QTAWESOME`` to True. """ from pyqode.qt import QtGui try: import qtawesome as qta except ImportError: qta = None #: This flag controls qtawesome icons should be preferred to theme/qrc icons. USE_QTAWESOME = False #: Default options used for rendering an icon from qtawesome. #: Options cannot be changed after the icon has been rendered so make sure #: to setup those options at startup (i.e. before you create any icon). QTA_OPTIONS = { 'color': '', 'color_disabled': '' } def icon(theme_name='', path='', qta_name='', qta_options=None, use_qta=None): """ Creates an icon from qtawesome, from theme or from path. :param theme_name: icon name in the current theme (GNU/Linux only) :param path: path of the icon (from file system or qrc) :param qta_name: icon name in qtawesome :param qta_options: the qtawesome options to use for controlling icon rendering. If None, QTA_OPTIONS are used. :param use_qta: True to use qtawesome, False to use icon from theme/path. None to use the global setting: USE_QTAWESOME. :returns: QtGui.QIcon """ ret_val = None if use_qta is None: use_qta = USE_QTAWESOME if qta_options is None: qta_options = QTA_OPTIONS if qta is not None and use_qta is True: ret_val = qta.icon(qta_name, **qta_options) else: if theme_name and path: ret_val = QtGui.QIcon.fromTheme(theme_name, QtGui.QIcon(path)) elif theme_name: ret_val = QtGui.QIcon.fromTheme(theme_name) elif path: ret_val = QtGui.QIcon(path) return ret_val Turing-0.11-beta/pyqode/core/managers/ 0000775 0000000 0000000 00000000000 13314727572 0017655 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/managers/__init__.py 0000664 0000000 0000000 00000001473 13314727572 0021773 0 ustar 00root root 0000000 0000000 """ The managers package contains a series of managers classes for CodeEdit. A manager is class that takes care of a specific aspect of CodeEdit: - FileManager: open, save, encoding detection - BackendManager: manage the backend process (start the process and handle communication through sockets). - ModesManager: manage the list of modes of an editor - PanelsManager: manage the list of panels and draw them into the editor margins. - DecorationManager: manage text decorations """ from .backend import BackendManager from .decorations import TextDecorationsManager from .file import FileManager from .modes import ModesManager from .panels import PanelsManager __all__ = [ 'BackendManager', 'FileManager', 'ModesManager', 'PanelsManager', 'TextDecorationsManager', ] Turing-0.11-beta/pyqode/core/managers/backend.py 0000664 0000000 0000000 00000020564 13314727572 0021625 0 ustar 00root root 0000000 0000000 """ This module contains the backend controller """ import logging import socket import sys from pyqode.qt import QtCore from pyqode.core.api.client import JsonTcpClient, BackendProcess from pyqode.core.api.manager import Manager from pyqode.core.backend import NotRunning, echo_worker def _logger(): return logging.getLogger(__name__) #: log level for communication COMM = 1 def comm(msg, *args): _logger().log(COMM, msg, *args) class BackendManager(Manager): """ The backend controller takes care of controlling the client-server architecture. It is responsible of starting the backend process and the client socket and exposes an API to easily control the backend: - start - stop - send_request """ LAST_PORT = None LAST_PROCESS = None SHARE_COUNT = 0 def __init__(self, editor): super(BackendManager, self).__init__(editor) self._process = None self._sockets = [] self.server_script = None self.interpreter = None self.args = None self._shared = False self._heartbeat_timer = QtCore.QTimer() self._heartbeat_timer.setInterval(1000) self._heartbeat_timer.timeout.connect(self._send_heartbeat) self._heartbeat_timer.start() @staticmethod def pick_free_port(): """ Picks a free port """ test_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) test_socket.bind(('127.0.0.1', 0)) free_port = int(test_socket.getsockname()[1]) test_socket.close() return free_port def start(self, script, interpreter=sys.executable, args=None, error_callback=None, reuse=False): """ Starts the backend process. The backend is a python script that starts a :class:`pyqode.core.backend.JsonServer`. You must write the backend script so that you can apply your own backend configuration. The script can be run with a custom interpreter. The default is to use sys.executable. .. note:: This restart the backend process if it was previously running. :param script: Path to the backend script. :param interpreter: The python interpreter to use to run the backend script. If None, sys.executable is used unless we are in a frozen application (frozen backends do not require an interpreter). :param args: list of additional command line args to use to start the backend process. :param reuse: True to reuse an existing backend process. WARNING: to use this, your application must have one single server script. If you're creating an app which supports multiple programming languages you will need to merge all backend scripts into one single script, otherwise the wrong script might be picked up). """ self._shared = reuse if reuse and BackendManager.SHARE_COUNT: self._port = BackendManager.LAST_PORT self._process = BackendManager.LAST_PROCESS BackendManager.SHARE_COUNT += 1 else: if self.running: self.stop() self.server_script = script self.interpreter = interpreter self.args = args backend_script = script.replace('.pyc', '.py') self._port = self.pick_free_port() if hasattr(sys, "frozen") and not backend_script.endswith('.py'): # frozen backend script on windows/mac does not need an # interpreter program = backend_script pgm_args = [str(self._port)] else: program = interpreter pgm_args = [backend_script, str(self._port)] if args: pgm_args += args self._process = BackendProcess(self.editor) if error_callback: self._process.error.connect(error_callback) self._process.start(program, pgm_args) if reuse: BackendManager.LAST_PROCESS = self._process BackendManager.LAST_PORT = self._port BackendManager.SHARE_COUNT += 1 comm('starting backend process: %s %s', program, ' '.join(pgm_args)) self._heartbeat_timer.start() def stop(self): """ Stops the backend process. """ if self._process is None: return if self._shared: BackendManager.SHARE_COUNT -= 1 if BackendManager.SHARE_COUNT: return comm('stopping backend process') # close all sockets for s in self._sockets: s._callback = None s.close() self._sockets[:] = [] # prevent crash logs from being written if we are busy killing # the process self._process._prevent_logs = True while self._process.state() != self._process.NotRunning: self._process.waitForFinished(1) if sys.platform == 'win32': # Console applications on Windows that do not run an event # loop, or whose event loop does not handle the WM_CLOSE # message, can only be terminated by calling kill(). self._process.kill() else: self._process.terminate() self._process._prevent_logs = False self._heartbeat_timer.stop() comm('backend process terminated') def send_request(self, worker_class_or_function, args, on_receive=None): """ Requests some work to be done by the backend. You can get notified of the work results by passing a callback (on_receive). :param worker_class_or_function: Worker class or function :param args: worker args, any Json serializable objects :param on_receive: an optional callback executed when we receive the worker's results. The callback will be called with one arguments: the results of the worker (object) :raise: backend.NotRunning if the backend process is not running. """ if not self.running: try: # try to restart the backend if it crashed. self.start(self.server_script, interpreter=self.interpreter, args=self.args) except AttributeError: pass # not started yet finally: # caller should try again, later raise NotRunning() else: comm('sending request, worker=%r' % worker_class_or_function) # create a socket, the request will be send as soon as the socket # has connected socket = JsonTcpClient( self.editor, self._port, worker_class_or_function, args, on_receive=on_receive) socket.finished.connect(self._rm_socket) self._sockets.append(socket) # restart heartbeat timer self._heartbeat_timer.start() def _send_heartbeat(self): try: self.send_request(echo_worker, {'heartbeat': True}) except NotRunning: self._heartbeat_timer.stop() def _rm_socket(self, socket): try: socket.close() self._sockets.remove(socket) socket.deleteLater() except ValueError: pass @property def running(self): """ Tells whether the backend process is running. :return: True if the process is running, otherwise False """ try: return (self._process is not None and self._process.state() != self._process.NotRunning) except RuntimeError: return False @property def connected(self): """ Checks if the client socket is connected to the backend. .. deprecated: Since v2.3, a socket is created per request. Checking for global connection status does not make any sense anymore. This property now returns ``running``. This will be removed in v2.5 """ return self.running @property def exit_code(self): """ Returns the backend process exit status or None if the process is till running. """ if self.running: return None else: return self._process.exitCode() Turing-0.11-beta/pyqode/core/managers/decorations.py 0000664 0000000 0000000 00000003346 13314727572 0022547 0 ustar 00root root 0000000 0000000 """ Contains the text decorations manager """ import logging from pyqode.core.api.manager import Manager def _logger(): return logging.getLogger(__name__) class TextDecorationsManager(Manager): """ Manages the collection of TextDecoration that have been set on the editor widget. """ def __init__(self, editor): super(TextDecorationsManager, self).__init__(editor) self._decorations = [] def append(self, decoration): """ Adds a text decoration on a CodeEdit instance :param decoration: Text decoration to add :type decoration: pyqode.core.api.TextDecoration """ if decoration not in self._decorations: self._decorations.append(decoration) self._decorations = sorted( self._decorations, key=lambda sel: sel.draw_order) self.editor.setExtraSelections(self._decorations) return True return False def remove(self, decoration): """ Removes a text decoration from the editor. :param decoration: Text decoration to remove :type decoration: pyqode.core.api.TextDecoration """ try: self._decorations.remove(decoration) self.editor.setExtraSelections(self._decorations) return True except ValueError: return False def clear(self): """ Removes all text decoration from the editor. """ self._decorations[:] = [] try: self.editor.setExtraSelections(self._decorations) except RuntimeError: pass def __iter__(self): return iter(self._decorations) def __len__(self): return len(self._decorations) Turing-0.11-beta/pyqode/core/managers/file.py 0000664 0000000 0000000 00000036204 13314727572 0021153 0 ustar 00root root 0000000 0000000 """ This module contains the file helper implementation """ try: from future.builtins import open from future.builtins import str except: pass # python 3.2 not supported import locale import logging import mimetypes import os from pyqode.core.api.manager import Manager from pyqode.core.api.utils import TextHelper from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache # needed on windows mimetypes.add_type('text/x-python', '.py') mimetypes.add_type('text/xml', '.ui') def _logger(): return logging.getLogger(__name__) class FileManager(Manager): """ Helps manage file operations: - opening and saving files - providing file icon - detecting mimetype Example of usage:: editor = CodeEdit() assert editor.file.path == '' # open a file with default locale encoding or using the cached one. editor.open(__file__) assert editor.file.path == __file__ print(editor.file.encoding) # reload with another encoding editor.open(__file__, encoding='cp1252', use_cached_encoding=False) assert editor.file.path == __file__ editor.file.encoding == 'cp1252' """ class EOL: """ This class enumerates the possible EOL conventions: - System: apply the system EOL - Linux: force the use of Linux EOL (\n) - Mac: force the use of Macintosh EOL (\r) - Windows: force the use of Windows EOL (\r\n) """ #: System = 0 #: Linux EOL: \n Linux = 1 #: Macintosh EOL: \r Mac = 2 #: Windows EOL: \r\n Windows = 3 _map = { System: os.linesep, Linux: '\n', Mac: '\r', Windows: '\r\n' } @classmethod def string(cls, value): return cls._map[value] @property def path(self): """ Gets the file path """ if self._path: return os.path.normpath(self._path) return '' @property def name(self): """ Gets the file base name """ return os.path.split(self.path)[1] @property def extension(self): """ Gets the file path """ return os.path.splitext(self.path)[1] @property def dirname(self): """ Gets the file directory name """ return os.path.dirname(self._path) @property def encoding(self): """ Gets the file encoding """ return self._encoding @property def icon(self): """ Gets the file icon, provided by _get_icon """ return self._get_icon() @property def autodetect_eol(self): return self._autodetect_eol @autodetect_eol.setter def autodetect_eol(self, value): self._autodetect_eol = value if not self._autodetect_eol: self._eol = self.EOL.string(self._preferred_eol) @property def preferred_eol(self): return self._preferred_eol @preferred_eol.setter def preferred_eol(self, eol): self._preferred_eol = eol if not self._autodetect_eol: self._eol = self.EOL.string(self._preferred_eol) @property def file_size_limit(self): """ Returns the file size limit. If the size of the file to open is superior to the limit, then we disabled syntax highlighting, code folding,... to improve the load time and the runtime performances. Default is 10MB. """ return self._limit @file_size_limit.setter def file_size_limit(self, value): self._limit = value def _get_icon(self): return QtWidgets.QFileIconProvider().icon(QtCore.QFileInfo(self.path)) def __init__(self, editor, replace_tabs_by_spaces=True): """ :param editor: Code edit instance to work on. :param replace_tabs_by_spaces: True to replace tabs by spaces on load/save. """ super(FileManager, self).__init__(editor) self._limit = 10000000 self._path = '' #: File mimetype self.mimetype = '' #: store the last file encoding used to open or save the file. self._encoding = locale.getpreferredencoding() #: True to replace tabs by spaces self.replace_tabs_by_spaces = replace_tabs_by_spaces #: Opening flag. Set to true during the opening of a file. self.opening = False #: Saving flag. Set to while saving the editor content to a file. self.saving = True #: If True, the file is saved to a temporary file first. If the save #: went fine, the temporary file is renamed to the final filename. self.safe_save = True #: True to clean trailing whitespaces of changed lines. Default is #: True self.clean_trailing_whitespaces = True #: True to restore cursor position (if the document has already been # opened once). self.restore_cursor = True #: Preferred EOL convention. This setting will be used for saving the #: document unles autodetect_eol is True. self._preferred_eol = self.EOL.System self._eol = self.EOL.string(self._preferred_eol) #: If true, automatically detects file EOL and use it instead of the #: preferred EOL when saving files. self._autodetect_eol = True @staticmethod def get_mimetype(path): """ Guesses the mime type of a file. If mime type cannot be detected, plain text is assumed. :param path: path of the file :return: the corresponding mime type. """ filename = os.path.split(path)[1] mimetype = mimetypes.guess_type(filename)[0] if mimetype is None: mimetype = 'text/x-plain' _logger().debug('mimetype detected: %s', mimetype) return mimetype def open(self, path, encoding=None, use_cached_encoding=True): """ Open a file and set its content on the editor widget. pyqode does not try to guess encoding. It's up to the client code to handle encodings. You can either use a charset detector to detect encoding or rely on a settings in your application. It is also up to you to handle UnicodeDecodeError, unless you've added class:`pyqode.core.panels.EncodingPanel` on the editor. pyqode automatically caches file encoding that you can later reuse it automatically. :param path: Path of the file to open. :param encoding: Default file encoding. Default is to use the locale encoding. :param use_cached_encoding: True to use the cached encoding instead of ``encoding``. Set it to True if you want to force reload with a new encoding. :raises: UnicodeDecodeError in case of error if no EncodingPanel were set on the editor. """ ret_val = False if encoding is None: encoding = locale.getpreferredencoding() self.opening = True settings = Cache() self._path = path # get encoding from cache if use_cached_encoding: try: cached_encoding = settings.get_file_encoding( path, preferred_encoding=encoding) except KeyError: pass else: encoding = cached_encoding enable_modes = os.path.getsize(path) < self._limit for m in self.editor.modes: if m.enabled: m.enabled = enable_modes # open file and get its content try: with open(path, 'Ur', encoding=encoding) as file: content = file.read() if self.autodetect_eol: self._eol = file.newlines if isinstance(self._eol, tuple): self._eol = self._eol[0] if self._eol is None: # empty file has no newlines self._eol = self.EOL.string(self.preferred_eol) else: self._eol = self.EOL.string(self.preferred_eol) except (UnicodeDecodeError, UnicodeError) as e: try: from pyqode.core.panels import EncodingPanel panel = self.editor.panels.get(EncodingPanel) except KeyError: raise e # panel not found, not automatic error management else: panel.on_open_failed(path, encoding) else: # success! Cache the encoding settings.set_file_encoding(path, encoding) self._encoding = encoding # replace tabs by spaces if self.replace_tabs_by_spaces: content = content.replace("\t", " " * self.editor.tab_length) # set plain text self.editor.setPlainText( content, self.get_mimetype(path), self.encoding) self.editor.setDocumentTitle(self.editor.file.name) ret_val = True _logger().debug('file open: %s', path) self.opening = False if self.restore_cursor: self._restore_cached_pos() self._check_for_readonly() return ret_val def _check_for_readonly(self): self.read_only = not os.access(self.path, os.W_OK) self.editor.setReadOnly(self.read_only) def _restore_cached_pos(self): pos = Cache().get_cursor_position(self.path) max_pos = self.editor.document().characterCount() if pos > max_pos: pos = max_pos - 1 tc = self.editor.textCursor() tc.setPosition(pos) self.editor.setTextCursor(tc) QtCore.QTimer.singleShot(1, self.editor.centerCursor) def reload(self, encoding): """ Reload the file with another encoding. :param encoding: the new encoding to use to reload the file. """ assert os.path.exists(self.path) self.open(self.path, encoding=encoding, use_cached_encoding=False) @staticmethod def _rm(tmp_path): if os.path.exists(tmp_path): os.remove(tmp_path) def _reset_selection(self, sel_end, sel_start): text_cursor = self.editor.textCursor() text_cursor.setPosition(sel_start) text_cursor.setPosition(sel_end, text_cursor.KeepAnchor) self.editor.setTextCursor(text_cursor) def _get_selection(self): sel_start = self.editor.textCursor().selectionStart() sel_end = self.editor.textCursor().selectionEnd() return sel_end, sel_start def _get_text(self, encoding): lines = self.editor.toPlainText().splitlines() if self.clean_trailing_whitespaces: lines = [l.rstrip() for l in lines] # remove emtpy ending lines try: last_line = lines[-1] except IndexError: pass # empty file else: while last_line == '': try: lines.pop() last_line = lines[-1] except IndexError: last_line = None text = self._eol.join(lines) + self._eol return text.encode(encoding) def save(self, path=None, encoding=None, fallback_encoding=None): """ Save the editor content to a file. :param path: optional file path. Set it to None to save using the current path (save), set a new path to save as. :param encoding: optional encoding, will use the current file encoding if None. :param fallback_encoding: Fallback encoding to use in case of encoding error. None to use the locale preferred encoding """ if not self.editor.dirty and \ (encoding is None and encoding == self.encoding) and \ (path is None and path == self.path): # avoid saving if editor not dirty or if encoding or path did not # change return if fallback_encoding is None: fallback_encoding = locale.getpreferredencoding() _logger().log( 5, "saving %r with %r encoding", path, encoding) if path is None: if self.path: path = self.path else: _logger().debug( 'failed to save file, path argument cannot be None if ' 'FileManager.path is also None') return False # use cached encoding if None were specified if encoding is None: encoding = self._encoding self.saving = True self.editor.text_saving.emit(str(path)) # get file persmission on linux try: st_mode = os.stat(path).st_mode except (ImportError, TypeError, AttributeError, OSError): st_mode = None # perform a safe save: we first save to a temporary file, if the save # succeeded we just rename the temporary file to the final file name # and remove it. if self.safe_save: tmp_path = path + '~' else: tmp_path = path try: with open(tmp_path, 'wb') as file: file.write(self._get_text(encoding)) except UnicodeEncodeError: # fallback to utf-8 in case of error. with open(tmp_path, 'wb') as file: file.write(self._get_text(fallback_encoding)) except (IOError, OSError) as e: self._rm(tmp_path) self.saving = False self.editor.text_saved.emit(str(path)) raise e # cache update encoding Cache().set_file_encoding(path, encoding) self._encoding = encoding # remove path and rename temp file, if safe save is on if self.safe_save: self._rm(path) os.rename(tmp_path, path) self._rm(tmp_path) # reset dirty flags self.editor.document().setModified(False) # remember path for next save self._path = os.path.normpath(path) self.editor.text_saved.emit(str(path)) self.saving = False _logger().debug('file saved: %s', path) self._check_for_readonly() # restore file permission if st_mode: try: os.chmod(path, st_mode) except (ImportError, TypeError, AttributeError): pass def close(self, clear=True): """ Close the file open in the editor: - clear editor content - reset file attributes to their default values :param clear: True to clear the editor content. Default is True. """ Cache().set_cursor_position( self.path, self.editor.textCursor().position()) self.editor._original_text = '' if clear: self.editor.clear() self._path = '' self.mimetype = '' self._encoding = locale.getpreferredencoding() def clone_settings(self, original): self.replace_tabs_by_spaces = original.replace_tabs_by_spaces self.safe_save = original.replace_tabs_by_spaces self.clean_trailing_whitespaces = original.clean_trailing_whitespaces self.restore_cursor = original.restore_cursor Turing-0.11-beta/pyqode/core/managers/modes.py 0000664 0000000 0000000 00000004311 13314727572 0021335 0 ustar 00root root 0000000 0000000 """ This module contains the modes controller. """ import logging from pyqode.core.api.manager import Manager def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class ModesManager(Manager): """ Manages the list of modes of the code edit widget. """ def __init__(self, editor): super(ModesManager, self).__init__(editor) self._modes = {} def append(self, mode): """ Adds a mode to the editor. :param mode: The mode instance to append. """ _logger().log(5, 'adding mode %r', mode.name) self._modes[mode.name] = mode mode.on_install(self.editor) return mode def remove(self, name_or_klass): """ Removes a mode from the editor. :param name_or_klass: The name (or class) of the mode to remove. :returns: The removed mode. """ _logger().log(5, 'removing mode %r', name_or_klass) mode = self.get(name_or_klass) mode.on_uninstall() self._modes.pop(mode.name) return mode def clear(self): """ Removes all modes from the editor. All modes are removed from list and deleted. """ while len(self._modes): key = sorted(list(self._modes.keys()))[0] self.remove(key) def get(self, name_or_klass): """ Gets a mode by name (or class) :param name_or_klass: The name or the class of the mode to get :type name_or_klass: str or type :rtype: pyqode.core.api.Mode """ if not isinstance(name_or_klass, str): name_or_klass = name_or_klass.__name__ return self._modes[name_or_klass] def keys(self): """ Returns the list of the names of the installed modes. """ return self._modes.keys() def values(self): """ Returns the list of installed modes. """ return self._modes.values() def __len__(self): return len(list(self._modes.values())) def __iter__(self): """ Returns the list of modes. :return: """ return iter([v for k, v in sorted(self._modes.items())]) Turing-0.11-beta/pyqode/core/managers/panels.py 0000664 0000000 0000000 00000024654 13314727572 0021524 0 ustar 00root root 0000000 0000000 """ This module contains the panels controller, responsible of drawing panel inside CodeEdit's margins """ import logging from pyqode.core.api.utils import TextHelper from pyqode.core.api.manager import Manager from pyqode.core.api.panel import Panel def _logger(): return logging.getLogger(__name__) class PanelsManager(Manager): """ Manages the list of panels and draws them inised the margin of the code edit widget. """ def __init__(self, editor): super(PanelsManager, self).__init__(editor) self._cached_cursor_pos = (-1, -1) self._margin_sizes = (0, 0, 0, 0) self._top = self._left = self._right = self._bottom = -1 self._panels = { Panel.Position.TOP: {}, Panel.Position.LEFT: {}, Panel.Position.RIGHT: {}, Panel.Position.BOTTOM: {} } try: editor.blockCountChanged.connect(self._update_viewport_margins) editor.updateRequest.connect(self._update) except AttributeError: # QTextEdit editor.document().blockCountChanged.connect( self._update_viewport_margins) def append(self, panel, position=Panel.Position.LEFT): """ Installs a panel on the editor. :param panel: Panel to install :param position: Position where the panel must be installed. :return: The installed panel """ assert panel is not None pos_to_string = { Panel.Position.BOTTOM: 'bottom', Panel.Position.LEFT: 'left', Panel.Position.RIGHT: 'right', Panel.Position.TOP: 'top' } _logger().log(5, 'adding panel %s at %r', panel.name, pos_to_string[position]) panel.order_in_zone = len(self._panels[position]) self._panels[position][panel.name] = panel panel.position = position panel.on_install(self.editor) _logger().log(5, 'panel %s installed', panel.name) return panel def remove(self, name_or_klass): """ Removes the specified panel. :param name_or_klass: Name or class of the panel to remove. :return: The removed panel """ _logger().log(5, 'removing panel %r', name_or_klass) panel = self.get(name_or_klass) panel.on_uninstall() panel.hide() panel.setParent(None) return self._panels[panel.position].pop(panel.name, None) def clear(self): """ Removes all panel from the editor. """ for i in range(4): while len(self._panels[i]): key = sorted(list(self._panels[i].keys()))[0] panel = self.remove(key) panel.setParent(None) panel.deleteLater() def get(self, name_or_klass): """ Gets a specific panel instance. :param name_or_klass: Name or class of the panel to retrieve. :return: The specified panel instance. """ if not isinstance(name_or_klass, str): name_or_klass = name_or_klass.__name__ for zone in range(4): try: panel = self._panels[zone][name_or_klass] except KeyError: pass else: return panel raise KeyError(name_or_klass) def keys(self): """ Returns the list of installed panel names. """ return self._modes.keys() def values(self): """ Returns the list of installed panels. """ return self._modes.values() def __iter__(self): lst = [] for zone, zone_dict in self._panels.items(): for name, panel in zone_dict.items(): lst.append(panel) return iter(lst) def __len__(self): lst = [] for zone, zone_dict in self._panels.items(): for name, panel in zone_dict.items(): lst.append(panel) return len(lst) def panels_for_zone(self, zone): """ Gets the list of panels attached to the specified zone. :param zone: Panel position. :return: List of panels instances. """ return list(self._panels[zone].values()) def refresh(self): """ Refreshes the editor panels (resize and update margins) """ _logger().log(5, 'refresh_panels') self.resize() self._update(self.editor.contentsRect(), 0, force_update_margins=True) def resize(self): """ Resizes panels """ crect = self.editor.contentsRect() view_crect = self.editor.viewport().contentsRect() s_bottom, s_left, s_right, s_top = self._compute_zones_sizes() tw = s_left + s_right th = s_bottom + s_top w_offset = crect.width() - (view_crect.width() + tw) h_offset = crect.height() - (view_crect.height() + th) left = 0 panels = self.panels_for_zone(Panel.Position.LEFT) panels.sort(key=lambda panel: panel.order_in_zone, reverse=True) for panel in panels: if not panel.isVisible(): continue panel.adjustSize() size_hint = panel.sizeHint() panel.setGeometry(crect.left() + left, crect.top() + s_top, size_hint.width(), crect.height() - s_bottom - s_top - h_offset) left += size_hint.width() right = 0 panels = self.panels_for_zone(Panel.Position.RIGHT) panels.sort(key=lambda panel: panel.order_in_zone, reverse=True) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry( crect.right() - right - size_hint.width() - w_offset, crect.top() + s_top, size_hint.width(), crect.height() - s_bottom - s_top - h_offset) right += size_hint.width() top = 0 panels = self.panels_for_zone(Panel.Position.TOP) panels.sort(key=lambda panel: panel.order_in_zone) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry(crect.left(), crect.top() + top, crect.width() - w_offset, size_hint.height()) top += size_hint.height() bottom = 0 panels = self.panels_for_zone(Panel.Position.BOTTOM) panels.sort(key=lambda panel: panel.order_in_zone) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry( crect.left(), crect.bottom() - bottom - size_hint.height() - h_offset, crect.width() - w_offset, size_hint.height()) bottom += size_hint.height() def _update(self, rect, delta_y, force_update_margins=False): """ Updates panels """ helper = TextHelper(self.editor) if not self: return for zones_id, zone in self._panels.items(): if zones_id == Panel.Position.TOP or \ zones_id == Panel.Position.BOTTOM: continue panels = list(zone.values()) for panel in panels: if panel.scrollable and delta_y: panel.scroll(0, delta_y) line, col = helper.cursor_position() oline, ocol = self._cached_cursor_pos if line != oline or col != ocol or panel.scrollable: panel.update(0, rect.y(), panel.width(), rect.height()) self._cached_cursor_pos = helper.cursor_position() if (rect.contains(self.editor.viewport().rect()) or force_update_margins): self._update_viewport_margins() def _update_viewport_margins(self): """ Update viewport margins """ top = 0 left = 0 right = 0 bottom = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if panel.isVisible(): width = panel.sizeHint().width() left += width for panel in self.panels_for_zone(Panel.Position.RIGHT): if panel.isVisible(): width = panel.sizeHint().width() right += width for panel in self.panels_for_zone(Panel.Position.TOP): if panel.isVisible(): height = panel.sizeHint().height() top += height for panel in self.panels_for_zone(Panel.Position.BOTTOM): if panel.isVisible(): height = panel.sizeHint().height() bottom += height self._margin_sizes = (top, left, right, bottom) self.editor.setViewportMargins(left, top, right, bottom) def margin_size(self, position=Panel.Position.LEFT): """ Gets the size of a specific margin. :param position: Margin position. See :class:`pyqode.core.api.Panel.Position` :return: The size of the specified margin :rtype: float """ return self._margin_sizes[position] def _compute_zones_sizes(self): """ Compute panel zone sizes """ # Left panels left = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if not panel.isVisible(): continue size_hint = panel.sizeHint() left += size_hint.width() # Right panels right = 0 for panel in self.panels_for_zone(Panel.Position.RIGHT): if not panel.isVisible(): continue size_hint = panel.sizeHint() right += size_hint.width() # Top panels top = 0 for panel in self.panels_for_zone(Panel.Position.TOP): if not panel.isVisible(): continue size_hint = panel.sizeHint() top += size_hint.height() # Bottom panels bottom = 0 for panel in self.panels_for_zone(Panel.Position.BOTTOM): if not panel.isVisible(): continue size_hint = panel.sizeHint() bottom += size_hint.height() self._top, self._left, self._right, self._bottom = ( top, left, right, bottom) return bottom, left, right, top Turing-0.11-beta/pyqode/core/modes/ 0000775 0000000 0000000 00000000000 13314727572 0017167 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/modes/__init__.py 0000664 0000000 0000000 00000003177 13314727572 0021310 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This package contains the core modes. """ from .autocomplete import AutoCompleteMode from .autoindent import AutoIndentMode from .backspace import SmartBackSpaceMode from .caret_line_highlight import CaretLineHighlighterMode from .case_converter import CaseConverterMode from .checker import CheckerMode from .checker import CheckerMessage from .checker import CheckerMessages from .cursor_history import CursorHistoryMode from .code_completion import CodeCompletionMode from .extended_selection import ExtendedSelectionMode from .filewatcher import FileWatcherMode from .indenter import IndenterMode from .line_highlighter import LineHighlighterMode from .matcher import SymbolMatcherMode from .occurences import OccurrencesHighlighterMode from .outline import OutlineMode from .right_margin import RightMarginMode from .pygments_sh import PygmentsSH from .wordclick import WordClickMode from .zoom import ZoomMode # for backward compatibility from ..api.syntax_highlighter import PYGMENTS_STYLES from .pygments_sh import PygmentsSH as PygmentsSyntaxHighlighter __all__ = [ 'AutoCompleteMode', 'AutoIndentMode', 'CaretLineHighlighterMode', 'CaseConverterMode', 'CheckerMode', 'CheckerMessage', 'CheckerMessages', 'CodeCompletionMode', 'CursorHistoryMode', 'ExtendedSelectionMode', 'FileWatcherMode', 'IndenterMode', 'LineHighlighterMode', 'OccurrencesHighlighterMode', 'OutlineMode', 'PygmentsSH', 'PygmentsSyntaxHighlighter', 'PYGMENTS_STYLES', 'RightMarginMode', 'SmartBackSpaceMode', 'SymbolMatcherMode', 'WordClickMode', 'ZoomMode', ] Turing-0.11-beta/pyqode/core/modes/autocomplete.py 0000664 0000000 0000000 00000010725 13314727572 0022247 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the AutoCompleteMode """ import logging from pyqode.qt import QtCore, QtGui from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode class AutoCompleteMode(Mode): """ Automatically complete quotes and parentheses Generic auto complete mode that automatically completes the following symbols: - " -> " - ' -> ' - ( -> ) - [ -> ] - { -> } """ def __init__(self): super(AutoCompleteMode, self).__init__() #: Auto complete mapping, maps input key with completion text. self.MAPPING = {'"': '"', "'": "'", "(": ")", "{": "}", "[": "]"} #: The format to use for each symbol in mapping when there is a selection self.SELECTED_QUOTES_FORMATS = {key: '%s%s%s' for key in self.MAPPING.keys()} #: The format to use for each symbol in mapping when there is no selection self.QUOTES_FORMATS = {key: '%s' for key in self.MAPPING.keys()} self.logger = logging.getLogger(__name__) self._ignore_post = False def on_state_changed(self, state): if state: self.editor.post_key_pressed.connect(self._on_post_key_pressed) self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.post_key_pressed.disconnect(self._on_post_key_pressed) self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_post_key_pressed(self, event): if not event.isAccepted() and not self._ignore_post: txt = event.text() trav = self.editor.textCursor() assert isinstance(trav, QtGui.QTextCursor) trav.movePosition(trav.Left, trav.MoveAnchor, 2) literal = TextHelper(self.editor).is_comment_or_string(trav) if not literal: next_char = TextHelper(self.editor).get_right_character() if txt in self.MAPPING: to_insert = self.MAPPING[txt] if (not next_char or next_char in self.MAPPING.keys() or next_char in self.MAPPING.values() or next_char.isspace()): TextHelper(self.editor).insert_text( self.QUOTES_FORMATS[txt] % to_insert) self._ignore_post = False def _on_key_pressed(self, event): txt = event.text() cursor = self.editor.textCursor() from pyqode.qt import QtGui assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): # quoting of selected text if event.text() in self.MAPPING.keys(): first = event.text() last = self.MAPPING[event.text()] cursor.insertText( self.SELECTED_QUOTES_FORMATS[event.text()] % ( first, cursor.selectedText(), last)) self.editor.setTextCursor(cursor) event.accept() else: self._ignore_post = True return next_char = TextHelper(self.editor).get_right_character() self.logger.debug('next char: %s', next_char) ignore = False if event.key() == QtCore.Qt.Key_Backspace: # get the character that will get deleted tc = self.editor.textCursor() pos = tc.position() tc.movePosition(tc.Left) tc.movePosition(tc.Right, tc.KeepAnchor) del_char = tc.selectedText() if del_char in self.MAPPING and \ self.MAPPING[del_char] == next_char: tc.beginEditBlock() tc.movePosition(tc.Right, tc.KeepAnchor) tc.insertText('') tc.setPosition(pos - 2) tc.endEditBlock() self.editor.setTextCursor(tc) ignore = True elif txt and next_char == txt and next_char in self.MAPPING: ignore = True elif event.text() == ')' or event.text() == ']' or event.text() == '}': # if typing the same symbol twice, the symbol should not be written # and the cursor moved just after the char # e.g. if you type ) just before ), the cursor will just move after # the existing ) if next_char == event.text(): ignore = True if ignore: event.accept() TextHelper(self.editor).clear_selection() TextHelper(self.editor).move_right() Turing-0.11-beta/pyqode/core/modes/autoindent.py 0000664 0000000 0000000 00000003611 13314727572 0021714 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the automatic generic indenter """ from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt.QtCore import Qt class AutoIndentMode(Mode): """ Indents text automatically. Generic indenter mode that indents the text when the user press RETURN. You can customize this mode by overriding :meth:`pyqode.core.modes.AutoIndentMode._get_indent` """ def __init__(self): super(AutoIndentMode, self).__init__() def _get_indent(self, cursor): """ Return the indentation text (a series of spaces or tabs) :param cursor: QTextCursor :returns: Tuple (text before new line, text after new line) """ indent = TextHelper(self.editor).line_indent() * ' ' return "", indent def on_state_changed(self, state): if state is True: self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): """ Auto indent if the released key is the return key. :param event: the key event """ if not event.isAccepted(): if event.key() == Qt.Key_Return or event.key() == Qt.Key_Enter: cursor = self.editor.textCursor() pre, post = self._get_indent(cursor) cursor.beginEditBlock() cursor.insertText("%s\n%s" % (pre, post)) # eats possible whitespaces cursor.movePosition(cursor.WordRight, cursor.KeepAnchor) txt = cursor.selectedText() if txt.startswith(' '): new_txt = txt.replace(" ", '') if len(txt) > len(new_txt): cursor.insertText(new_txt) cursor.endEditBlock() event.accept() Turing-0.11-beta/pyqode/core/modes/backspace.py 0000664 0000000 0000000 00000003551 13314727572 0021461 0 ustar 00root root 0000000 0000000 """ This module contains the smart backspace mode """ from pyqode.qt import QtCore, QtGui from pyqode.core.api import Mode class SmartBackSpaceMode(Mode): """ Improves backspace behaviour. When you press backspace and there are spaces on the left of the cursor, those spaces will be deleted (at most tab_len spaces). Basically this turns backspace into Shitf+Tab """ def on_state_changed(self, state): if state: self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): no_modifiers = int(event.modifiers()) == QtCore.Qt.NoModifier if event.key() == QtCore.Qt.Key_Backspace and no_modifiers: if self.editor.textCursor().atBlockStart(): return tab_len = self.editor.tab_length tab_len = self.editor.textCursor().positionInBlock() % tab_len if tab_len == 0: tab_len = self.editor.tab_length # count the number of spaces deletable, stop at tab len spaces = 0 cursor = QtGui.QTextCursor(self.editor.textCursor()) while spaces < tab_len or cursor.atBlockStart(): pos = cursor.position() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if char == " ": spaces += 1 else: break cursor.setPosition(pos - 1) cursor = self.editor.textCursor() if spaces == 0: return cursor.beginEditBlock() for _ in range(spaces): cursor.deletePreviousChar() cursor.endEditBlock() self.editor.setTextCursor(cursor) event.accept() Turing-0.11-beta/pyqode/core/modes/caret_line_highlight.py 0000664 0000000 0000000 00000005251 13314727572 0023700 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the care line highlighter mode """ from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.core.api.utils import drift_color from pyqode.qt import QtGui class CaretLineHighlighterMode(Mode): """ Highlights the caret line """ @property def background(self): """ Background color of the caret line. Default is to use a color slightly darker/lighter than the background color. You can override the automatic color by setting up this property """ if self._color or not self.editor: return self._color else: return drift_color(self.editor.background, 110) @background.setter def background(self, value): self._color = value self.refresh() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): super(CaretLineHighlighterMode, self).__init__() self._decoration = None self._pos = -1 self._color = None def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self.refresh) self.editor.new_text_set.connect(self.refresh) self.refresh() else: self.editor.cursorPositionChanged.disconnect( self.refresh) self.editor.new_text_set.disconnect(self.refresh) self._clear_deco() def on_install(self, editor): super(CaretLineHighlighterMode, self).on_install(editor) self.refresh() def _clear_deco(self): """ Clear line decoration """ if self._decoration: self.editor.decorations.remove(self._decoration) self._decoration = None def refresh(self): """ Updates the current line decoration """ if self.enabled: self._clear_deco() if self._color: color = self._color else: color = drift_color(self.editor.background, 110) brush = QtGui.QBrush(color) self._decoration = TextDecoration(self.editor.textCursor()) self._decoration.set_background(brush) self._decoration.set_full_width() self.editor.decorations.append(self._decoration) def clone_settings(self, original): self.background = original.background Turing-0.11-beta/pyqode/core/modes/case_converter.py 0000664 0000000 0000000 00000003722 13314727572 0022547 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains a case converter mode. """ from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtWidgets class CaseConverterMode(Mode): """ Provides context actions for converting case of the selected text. Converts selected text to lower case or UPPER case. It does so by adding two new menu entries to the editor's context menu: - *Convert to lower case*: ctrl-u - *Convert to UPPER CASE*: ctrl+shift+u """ def __init__(self): Mode.__init__(self) self._actions_created = False self.action_to_lower = None self.action_to_upper = None def to_upper(self): """ Converts selected text to upper """ TextHelper(self.editor).selected_text_to_upper() def to_lower(self): """ Converts selected text to lower """ TextHelper(self.editor).selected_text_to_lower() def _create_actions(self): """ Create associated actions """ self.action_to_lower = QtWidgets.QAction(self.editor) self.action_to_lower.triggered.connect(self.to_lower) self.action_to_upper = QtWidgets.QAction(self.editor) self.action_to_upper.triggered.connect(self.to_upper) self.action_to_lower.setText(_('Convert to lower case')) self.action_to_lower.setShortcut('Ctrl+U') self.action_to_upper.setText(_('Convert to UPPER CASE')) self.action_to_upper.setShortcut('Ctrl+Shift+U') self.menu = QtWidgets.QMenu(_('Case'), self.editor) self.menu.addAction(self.action_to_lower) self.menu.addAction(self.action_to_upper) self._actions_created = True def on_state_changed(self, state): if state: if not self._actions_created: self._create_actions() self.editor.add_action(self.menu.menuAction()) else: self.editor.remove_action(self.menu.menuAction()) Turing-0.11-beta/pyqode/core/modes/checker.py 0000664 0000000 0000000 00000030165 13314727572 0021152 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the checker mode, a base class for code checker modes. """ import logging from pyqode.core.api import TextBlockUserData from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.core.backend import NotRunning from pyqode.core.api.utils import DelayJobRunner from pyqode.qt import QtCore, QtGui class CheckerMessages(object): """ Enumerates the possible checker message types. """ #: Status value for an information message. INFO = 0 #: Status value for a warning message. WARNING = 1 #: Status value for an error message. ERROR = 2 class CheckerMessage(object): """ Holds data for a message displayed by the :class:`pyqode.core.modes.CheckerMode`. """ #: Default colors foreach message status COLORS = {CheckerMessages.INFO: "#4040DD", CheckerMessages.WARNING: "#DDDD40", CheckerMessages.ERROR: "#DD4040"} @classmethod def status_to_string(cls, status): """ Converts a message status to a string. :param status: Status to convert (p yqode.core.modes.CheckerMessages) :return: The status string. :rtype: str """ strings = {CheckerMessages.INFO: "Info", CheckerMessages.WARNING: "Warning", CheckerMessages.ERROR: "Error"} return strings[status] @property def status_string(self): """ Returns the message status as a string. :return: The status string. """ return self.status_to_string(self.status) def __init__(self, description, status, line, col=None, icon=None, color=None, path=None): """ :param description: The message description (used as a tooltip) :param status: The status associated with the message. :param line: The message line number :param col: The message start column (at the moment the message ends at the end of the line). :param icon: Unused, we keep it for backward compatiblity. :param color: Text decoration color :param path: file path. Optional """ assert 0 <= status <= 2 #: The description of the message, used as a tooltip. self.description = description #: The status associated with the message. One of: #: * :const:`pyqode.core.modes.CheckerMessages.INFO` #: * :const:`pyqode.core.modes.CheckerMessages.WARNING` #: * :const:`pyqode.core.modes.CheckerMessages.ERROR` self.status = status #: The line of the message self.line = line #: The start column (used for the text decoration). If the col is None, #: the whole line is highlighted. self.col = col #: The color used for the text decoration. If None, the default color #: is used (:const:`pyqode.core.CheckerMessage.COLORS`) self.color = color if self.color is None: self.color = self.COLORS[status] self.decoration = None self.path = path #: store a reference to the associated QTextBlock, for quick acces self.block = None def __str__(self): return "{0} l{1}".format(self.description, self.line) def __eq__(self, other): return (self.block == other.block and self.description == other.description) def _logger(klass): return logging.getLogger('%s [%s]' % (__name__, klass.__name__)) class CheckerMode(Mode, QtCore.QObject): """ Performs a user defined code analysis job using the backend and display the results on the editor instance. The user defined code analysis job is a simple **function** with the following signature: .. code-block:: python def analysisProcess(data) where data is the request data: .. code-block:: python request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } and the return value is a tuple made up of the following elements: (description, status, line, [col], [icon], [color], [path]) The background process is ran when the text changed and the ide is an idle state for a few seconds. You can also request an analysis manually using :meth:`pyqode.core.modes.CheckerMode.request_analysis` Messages are displayed as text decorations on the editor. A checker panel will take care of display message icons next to each line. """ @property def messages(self): """ Returns the entire list of checker messages. """ return self._messages def __init__(self, worker, delay=500, show_tooltip=True): """ :param worker: The process function or class to call remotely. :param delay: The delay used before running the analysis process when trigger is set to :class:pyqode.core.modes.CheckerTriggers` :param show_tooltip: Specify if a tooltip must be displayed when the mouse is over a checker message decoration. """ Mode.__init__(self) QtCore.QObject.__init__(self) # max number of messages to keep good performances self.limit = 200 self.ignore_rules = [] self._job_runner = DelayJobRunner(delay=delay) self._messages = [] self._worker = worker self._mutex = QtCore.QMutex() self._show_tooltip = show_tooltip self._pending_msg = [] self._finished = True def set_ignore_rules(self, rules): """ Sets the ignore rules for the linter. Rules are a list of string that the actual linter function will check to reject some warnings/errors. """ self.ignore_rules = rules def add_messages(self, messages): """ Adds a message or a list of message. :param messages: A list of messages or a single message """ # remove old messages if len(messages) > self.limit: messages = messages[:self.limit] _logger(self.__class__).log(5, 'adding %s messages' % len(messages)) self._finished = False self._new_messages = messages self._to_check = list(self._messages) self._pending_msg = messages # start removing messages, new message won't be added until we # checked all message that need to be removed QtCore.QTimer.singleShot(1, self._remove_batch) def _remove_batch(self): if self.editor is None: return for i in range(100): if not len(self._to_check): # all messages checker, start adding messages now QtCore.QTimer.singleShot(1, self._add_batch) self.editor.repaint() return False msg = self._to_check.pop(0) if msg.block is None: msg.block = self.editor.document().findBlockByNumber(msg.line) if msg not in self._new_messages: self.remove_message(msg) self.editor.repaint() QtCore.QTimer.singleShot(1, self._remove_batch) def _add_batch(self): if self.editor is None: return for i in range(10): if not len(self._pending_msg): # all pending message added self._finished = True _logger(self.__class__).log(5, 'finished') self.editor.repaint() return False message = self._pending_msg.pop(0) if message.line >= 0: try: usd = message.block.userData() except AttributeError: message.block = self.editor.document().findBlockByNumber(message.line) usd = message.block.userData() if usd is None: usd = TextBlockUserData() message.block.setUserData(usd) # check if the same message already exists if message in usd.messages: continue self._messages.append(message) usd.messages.append(message) tooltip = None if self._show_tooltip: tooltip = message.description message.decoration = TextDecoration( self.editor.textCursor(), start_line=message.line, tooltip=tooltip, draw_order=3) message.decoration.set_full_width() message.decoration.set_as_error(color=QtGui.QColor( message.color)) self.editor.decorations.append(message.decoration) QtCore.QTimer.singleShot(1, self._add_batch) self.editor.repaint() return True def remove_message(self, message): """ Removes a message. :param message: Message to remove """ import time _logger(self.__class__).log(5, 'removing message %s' % message) t = time.time() usd = message.block.userData() if usd: try: usd.messages.remove(message) except (AttributeError, ValueError): pass if message.decoration: self.editor.decorations.remove(message.decoration) self._messages.remove(message) def clear_messages(self): """ Clears all messages. """ while len(self._messages): msg = self._messages.pop(0) usd = msg.block.userData() if usd and hasattr(usd, 'messages'): usd.messages[:] = [] if msg.decoration: self.editor.decorations.remove(msg.decoration) def on_state_changed(self, state): if state: self.editor.textChanged.connect(self.request_analysis) self.editor.new_text_set.connect(self.clear_messages) self.request_analysis() else: self.editor.textChanged.disconnect(self.request_analysis) self.editor.new_text_set.disconnect(self.clear_messages) self._job_runner.cancel_requests() self.clear_messages() def _on_work_finished(self, results): """ Display results. :param status: Response status :param results: Response data, messages. """ messages = [] for msg in results: msg = CheckerMessage(*msg) if msg.line >= self.editor.blockCount(): msg.line = self.editor.blockCount() - 1 block = self.editor.document().findBlockByNumber(msg.line) msg.block = block messages.append(msg) self.add_messages(messages) def request_analysis(self): """ Requests an analysis. """ if self._finished: _logger(self.__class__).log(5, 'running analysis') self._job_runner.request_job(self._request) elif self.editor: # retry later _logger(self.__class__).log( 5, 'delaying analysis (previous analysis not finished)') QtCore.QTimer.singleShot(500, self.request_analysis) def _request(self): """ Requests a checking of the editor content. """ try: self.editor.toPlainText() except (TypeError, RuntimeError): return try: max_line_length = self.editor.modes.get( 'RightMarginMode').position except KeyError: max_line_length = 79 request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding, 'ignore_rules': self.ignore_rules, 'max_line_length': max_line_length, } try: self.editor.backend.send_request( self._worker, request_data, on_receive=self._on_work_finished) self._finished = False except NotRunning: # retry later QtCore.QTimer.singleShot(100, self._request) Turing-0.11-beta/pyqode/core/modes/code_completion.py 0000664 0000000 0000000 00000060063 13314727572 0022711 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the code completion mode and the related classes. """ import logging import re import sys import time from pyqode.core.api.mode import Mode from pyqode.core.backend import NotRunning from pyqode.qt import QtWidgets, QtCore, QtGui from pyqode.core.api.utils import TextHelper from pyqode.core import backend def _logger(): return logging.getLogger(__name__) def debug(msg, *args): """ Log internal debugger messages (user should not see them, even in debug mode) """ return _logger().log(5, msg, *args) class SubsequenceSortFilterProxyModel(QtCore.QSortFilterProxyModel): """ Performs subsequence matching/sorting (see pyQode/pyQode#1). """ def __init__(self, case, parent=None): QtCore.QSortFilterProxyModel.__init__(self, parent) self.case = case def set_prefix(self, prefix): self.filter_patterns = [] self.filter_patterns_case_sensitive = [] self.sort_patterns = [] if self.case == QtCore.Qt.CaseInsensitive: flags = re.IGNORECASE else: flags = 0 for i in reversed(range(1, len(prefix) + 1)): ptrn = '.*%s.*%s' % (prefix[0:i], prefix[i:]) try: self.filter_patterns.append(re.compile(ptrn, flags)) self.filter_patterns_case_sensitive.append(re.compile(ptrn, 0)) ptrn = '%s.*%s' % (prefix[0:i], prefix[i:]) self.sort_patterns.append(re.compile(ptrn, flags)) except Exception: continue self.prefix = prefix def filterAcceptsRow(self, row, _): completion = self.sourceModel().data(self.sourceModel().index(row, 0)) if len(completion) < len(self.prefix): return False if len(self.prefix) == 1: try: prefix = self.prefix if self.case == QtCore.Qt.CaseInsensitive: completion = completion.lower() prefix = self.prefix.lower() rank = completion.index(prefix) self.sourceModel().setData( self.sourceModel().index(row, 0), rank, QtCore.Qt.UserRole) return prefix in completion except ValueError: return False for i, patterns in enumerate(zip(self.filter_patterns, self.filter_patterns_case_sensitive, self.sort_patterns)): pattern, pattern_case, sort_pattern = patterns match = re.match(pattern, completion) if match: # compute rank, the lowest rank the closer it is from the # completion start = sys.maxsize for m in sort_pattern.finditer(completion): start, end = m.span() rank = start + i * 10 if re.match(pattern_case, completion): # favorise completions where case is matched rank -= 10 self.sourceModel().setData( self.sourceModel().index(row, 0), rank, QtCore.Qt.UserRole) return True return len(self.prefix) == 0 class SubsequenceCompleter(QtWidgets.QCompleter): """ QCompleter specialised for subsequence matching """ def __init__(self, *args): super(SubsequenceCompleter, self).__init__(*args) self.local_completion_prefix = "" self.source_model = None self.filterProxyModel = SubsequenceSortFilterProxyModel( self.caseSensitivity(), parent=self) self.filterProxyModel.setSortRole(QtCore.Qt.UserRole) self._force_next_update = True def setModel(self, model): self.source_model = model self.filterProxyModel = SubsequenceSortFilterProxyModel( self.caseSensitivity(), parent=self) self.filterProxyModel.setSortRole(QtCore.Qt.UserRole) self.filterProxyModel.set_prefix(self.local_completion_prefix) self.filterProxyModel.setSourceModel(self.source_model) super(SubsequenceCompleter, self).setModel(self.filterProxyModel) self.filterProxyModel.invalidate() self.filterProxyModel.sort(0) self._force_next_update = True def update_model(self): if (self.completionCount() or len(self.local_completion_prefix) <= 1 or self._force_next_update): self.filterProxyModel.set_prefix(self.local_completion_prefix) self.filterProxyModel.invalidate() # force sorting/filtering if self.completionCount() > 1: self.filterProxyModel.sort(0) self._force_next_update = False def splitPath(self, path): self.local_completion_prefix = path self.update_model() return [''] class CodeCompletionMode(Mode, QtCore.QObject): """ Provides code completions when typing or when pressing Ctrl+Space. This mode provides a code completion system which is extensible. It takes care of running the completion request in a background process using one or more completion provider and display the results in a QCompleter. To add code completion for a specific language, you only need to implement a new :class:`pyqode.core.backend.workers.CodeCompletionWorker.Provider` The completion popup is shown when the user press **ctrl+space** or automatically while the user is typing some code (this can be configured using a series of properties). """ #: Filter completions based on the prefix. FAST FILTER_PREFIX = 0 #: Filter completions based on whether the prefix is contained in the #: suggestion. Only available with PyQt5, if set with PyQt4, FILTER_PREFIX #: will be used instead. FAST FILTER_CONTAINS = 1 #: Fuzzy filtering, using the subsequence matcher. This is the most #: powerful filter mode but also the SLOWEST. FILTER_FUZZY = 2 @property def filter_mode(self): """ The completion filter mode """ return self._filter_mode @filter_mode.setter def filter_mode(self, value): self._filter_mode = value self._create_completer() @property def trigger_key(self): """ The key that triggers code completion (Default is **Space**: Ctrl + Space). """ return self._trigger_key @trigger_key.setter def trigger_key(self, value): self._trigger_key = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_key = value except KeyError: # this should never happen since we're working with clones pass @property def trigger_length(self): """ The trigger length defines the word length required to run code completion. """ return self._trigger_len @trigger_length.setter def trigger_length(self, value): self._trigger_len = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_length = value except KeyError: # this should never happen since we're working with clones pass @property def trigger_symbols(self): """ Defines the list of symbols that immediately trigger a code completion requiest. BY default, this list contains the dot character. For C++, we would add the '->' operator to that list. """ return self._trigger_symbols @trigger_symbols.setter def trigger_symbols(self, value): self._trigger_symbols = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_symbols = value except KeyError: # this should never happen since we're working with clones pass @property def case_sensitive(self): """ True to performs case sensitive completion matching. """ return self._case_sensitive @case_sensitive.setter def case_sensitive(self, value): self._case_sensitive = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).case_sensitive = value except KeyError: # this should never happen since we're working with clones pass @property def completion_prefix(self): """ Returns the current completion prefix """ return self._helper.word_under_cursor( select_whole_word=False).selectedText().strip() @property def show_tooltips(self): """ True to show tooltips next to the current completion. """ return self._show_tooltips @show_tooltips.setter def show_tooltips(self, value): self._show_tooltips = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).show_tooltips = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Mode.__init__(self) QtCore.QObject.__init__(self) self._current_completion = "" self._trigger_key = QtCore.Qt.Key_Space self._trigger_len = 1 self._trigger_symbols = ['.'] self._case_sensitive = False self._completer = None self._filter_mode = self.FILTER_FUZZY self._last_cursor_line = -1 self._last_cursor_column = -1 self._tooltips = {} self._show_tooltips = False self._request_id = self._last_request_id = 0 def clone_settings(self, original): self.trigger_key = original.trigger_key self.trigger_length = original.trigger_length self.trigger_symbols = original.trigger_symbols self.show_tooltips = original.show_tooltips self.case_sensitive = original.case_sensitive # # Mode interface # def _create_completer(self): if self.filter_mode != self.FILTER_FUZZY: self._completer = QtWidgets.QCompleter([''], self.editor) if self.filter_mode == self.FILTER_CONTAINS: try: self._completer.setFilterMode(QtCore.Qt.MatchContains) except AttributeError: # only available with PyQt5 pass else: self._completer = SubsequenceCompleter(self.editor) self._completer.setCompletionMode(self._completer.PopupCompletion) if self.case_sensitive: self._completer.setCaseSensitivity(QtCore.Qt.CaseSensitive) else: self._completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive) self._completer.activated.connect(self._insert_completion) self._completer.highlighted.connect( self._on_selected_completion_changed) self._completer.highlighted.connect(self._display_completion_tooltip) def on_install(self, editor): self._create_completer() self._completer.setModel(QtGui.QStandardItemModel()) self._helper = TextHelper(editor) Mode.on_install(self, editor) def on_uninstall(self): Mode.on_uninstall(self) self._completer.popup().hide() self._completer = None def on_state_changed(self, state): if state: self.editor.focused_in.connect(self._on_focus_in) self.editor.key_pressed.connect(self._on_key_pressed) self.editor.post_key_pressed.connect(self._on_key_released) else: self.editor.focused_in.disconnect(self._on_focus_in) self.editor.key_pressed.disconnect(self._on_key_pressed) self.editor.post_key_pressed.disconnect(self._on_key_released) # # Slots # def _on_key_pressed(self, event): def _handle_completer_events(): nav_key = self._is_navigation_key(event) mod = QtCore.Qt.ControlModifier ctrl = int(event.modifiers() & mod) == mod # complete if event.key() in [ QtCore.Qt.Key_Enter, QtCore.Qt.Key_Return, QtCore.Qt.Key_Tab]: self._insert_completion(self._current_completion) self._hide_popup() event.accept() # hide elif (event.key() in [ QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backtab] or nav_key and ctrl): self._reset_sync_data() # move into list elif event.key() == QtCore.Qt.Key_Home: self._show_popup(index=0) event.accept() elif event.key() == QtCore.Qt.Key_End: self._show_popup(index=self._completer.completionCount() - 1) event.accept() debug('key pressed: %s' % event.text()) is_shortcut = self._is_shortcut(event) # handle completer popup events ourselves if self._completer.popup().isVisible(): if is_shortcut: event.accept() else: _handle_completer_events() elif is_shortcut: self._reset_sync_data() self.request_completion() event.accept() def _on_key_released(self, event): if self._is_shortcut(event) or event.isAccepted(): return debug('key released:%s' % event.text()) word = self._helper.word_under_cursor( select_whole_word=True).selectedText() debug('word: %s' % word) if event.text(): if event.key() == QtCore.Qt.Key_Escape: self._hide_popup() return if self._is_navigation_key(event) and \ (not self._is_popup_visible() or word == ''): self._reset_sync_data() return if event.key() == QtCore.Qt.Key_Return: return if event.text() in self._trigger_symbols: # symbol trigger, force request self._reset_sync_data() self.request_completion() elif len(word) >= self._trigger_len and event.text() not in \ self.editor.word_separators: # Length trigger if int(event.modifiers()) in [ QtCore.Qt.NoModifier, QtCore.Qt.ShiftModifier]: self.request_completion() else: self._hide_popup() else: self._reset_sync_data() else: if self._is_navigation_key(event): if self._is_popup_visible() and word: self._show_popup() return else: self._reset_sync_data() def _on_focus_in(self, event): """ Resets completer's widget :param event: QFocusEvents """ self._completer.setWidget(self.editor) def _on_selected_completion_changed(self, completion): self._current_completion = completion def _insert_completion(self, completion): cursor = self._helper.word_under_cursor(select_whole_word=False) cursor.insertText(completion) self.editor.setTextCursor(cursor) def _on_results_available(self, results): debug("completion results (completions=%r), prefix=%s", results, self.completion_prefix) context = results[0] results = results[1:] line, column, request_id = context debug('request context: %r', context) debug('latest context: %r', (self._last_cursor_line, self._last_cursor_column, self._request_id)) self._last_request_id = request_id if (line == self._last_cursor_line and column == self._last_cursor_column): if self.editor: all_results = [] for res in results: all_results += res self._show_completions(all_results) else: debug('outdated request, dropping') # # Helper methods # def _is_popup_visible(self): return self._completer.popup().isVisible() def _reset_sync_data(self): debug('reset sync data and hide popup') self._last_cursor_line = -1 self._last_cursor_column = -1 self._hide_popup() def request_completion(self): line = self._helper.current_line_nbr() column = self._helper.current_column_nbr() - \ len(self.completion_prefix) same_context = (line == self._last_cursor_line and column == self._last_cursor_column) if same_context: if self._request_id - 1 == self._last_request_id: # context has not changed and the correct results can be # directly shown debug('request completion ignored, context has not ' 'changed') self._show_popup() else: # same context but result not yet available pass return True else: debug('requesting completion') data = { 'code': self.editor.toPlainText(), 'line': line, 'column': column, 'path': self.editor.file.path, 'encoding': self.editor.file.encoding, 'prefix': self.completion_prefix, 'request_id': self._request_id } try: self.editor.backend.send_request( backend.CodeCompletionWorker, args=data, on_receive=self._on_results_available) except NotRunning: _logger().exception('failed to send the completion request') return False else: debug('request sent: %r', data) self._last_cursor_column = column self._last_cursor_line = line self._request_id += 1 return True def _is_shortcut(self, event): """ Checks if the event's key and modifiers make the completion shortcut (Ctrl+Space) :param event: QKeyEvent :return: bool """ modifier = (QtCore.Qt.MetaModifier if sys.platform == 'darwin' else QtCore.Qt.ControlModifier) valid_modifier = int(event.modifiers() & modifier) == modifier valid_key = event.key() == self._trigger_key return valid_key and valid_modifier def _hide_popup(self): """ Hides the completer popup """ debug('hide popup') if (self._completer.popup() is not None and self._completer.popup().isVisible()): self._completer.popup().hide() self._last_cursor_column = -1 self._last_cursor_line = -1 QtWidgets.QToolTip.hideText() def _get_popup_rect(self): cursor_rec = self.editor.cursorRect() char_width = self.editor.fontMetrics().width('A') prefix_len = (len(self.completion_prefix) * char_width) cursor_rec.translate( self.editor.panels.margin_size() - prefix_len, self.editor.panels.margin_size(0) + 5) popup = self._completer.popup() width = popup.verticalScrollBar().sizeHint().width() cursor_rec.setWidth( self._completer.popup().sizeHintForColumn(0) + width) return cursor_rec def _show_popup(self, index=0): """ Shows the popup at the specified index. :param index: index :return: """ full_prefix = self._helper.word_under_cursor( select_whole_word=False).selectedText() if self._case_sensitive: self._completer.setCaseSensitivity(QtCore.Qt.CaseSensitive) else: self._completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive) # set prefix self._completer.setCompletionPrefix(self.completion_prefix) cnt = self._completer.completionCount() selected = self._completer.currentCompletion() if (full_prefix == selected) and cnt == 1: debug('user already typed the only completion that we ' 'have') self._hide_popup() else: # show the completion list if self.editor.isVisible(): if self._completer.widget() != self.editor: self._completer.setWidget(self.editor) self._completer.complete(self._get_popup_rect()) self._completer.popup().setCurrentIndex( self._completer.completionModel().index(index, 0)) debug( "popup shown: %r" % self._completer.popup().isVisible()) else: debug('cannot show popup, editor is not visible') def _show_completions(self, completions): debug("showing %d completions" % len(completions)) debug('popup state: %r', self._completer.popup().isVisible()) t = time.time() self._update_model(completions) elapsed = time.time() - t debug("completion model updated: %d items in %f seconds", self._completer.model().rowCount(), elapsed) self._show_popup() def _update_model(self, completions): """ Creates a QStandardModel that holds the suggestion from the completion models for the QCompleter :param completionPrefix: """ # build the completion model cc_model = QtGui.QStandardItemModel() self._tooltips.clear() for completion in completions: name = completion['name'] item = QtGui.QStandardItem() item.setData(name, QtCore.Qt.DisplayRole) if 'tooltip' in completion and completion['tooltip']: self._tooltips[name] = completion['tooltip'] if 'icon' in completion: icon = completion['icon'] if isinstance(icon, list): icon = QtGui.QIcon.fromTheme(icon[0], QtGui.QIcon(icon[1])) else: icon = QtGui.QIcon(icon) item.setData(QtGui.QIcon(icon), QtCore.Qt.DecorationRole) cc_model.appendRow(item) try: self._completer.setModel(cc_model) except RuntimeError: self._create_completer() self._completer.setModel(cc_model) return cc_model def _display_completion_tooltip(self, completion): if not self._show_tooltips: return if completion not in self._tooltips: QtWidgets.QToolTip.hideText() return tooltip = self._tooltips[completion].strip() pos = self._completer.popup().pos() pos.setX(pos.x() + self._completer.popup().size().width()) pos.setY(pos.y() - 15) QtWidgets.QToolTip.showText(pos, tooltip, self.editor) @staticmethod def _is_navigation_key(event): return (event.key() == QtCore.Qt.Key_Backspace or event.key() == QtCore.Qt.Key_Back or event.key() == QtCore.Qt.Key_Delete or event.key() == QtCore.Qt.Key_End or event.key() == QtCore.Qt.Key_Home or event.key() == QtCore.Qt.Key_Left or event.key() == QtCore.Qt.Key_Right or event.key() == QtCore.Qt.Key_Up or event.key() == QtCore.Qt.Key_Down or event.key() == QtCore.Qt.Key_Space) Turing-0.11-beta/pyqode/core/modes/cursor_history.py 0000664 0000000 0000000 00000005456 13314727572 0022651 0 ustar 00root root 0000000 0000000 import weakref from pyqode.qt import QtCore, QtWidgets from pyqode.core import api class MoveCursorCommand(QtWidgets.QUndoCommand): def __init__(self, new_pos, prev_pos, editor): super(MoveCursorCommand, self).__init__( '(Goto line %d)' % (new_pos[0] + 1)) self._new_pos = new_pos self._prev_pos = prev_pos self._editor = weakref.ref(editor) def _move(self, line, column): self._editor().blockSignals(True) api.TextHelper(self._editor()).goto_line(line, column) self._editor().blockSignals(False) try: caret_mode = self._editor().modes.get('CaretLineHighlighterMode') except KeyError: pass else: caret_mode.refresh() def redo(self): self._move(*self._new_pos) def undo(self): self._move(*self._prev_pos) class CursorHistoryMode(api.Mode): def __init__(self): super(CursorHistoryMode, self).__init__() self._prev_pos = 0, 0 self.undo_stack = QtWidgets.QUndoStack() self.undo_stack.setUndoLimit(10) def on_state_changed(self, state): if state: menu = QtWidgets.QMenu(self.editor) menu.setTitle(_('Cursor history')) self.action_undo = self.undo_stack.createUndoAction(self.editor) self.action_undo.setShortcut('Ctrl+Alt+Z') self.action_undo.setEnabled(True) menu.addAction(self.action_undo) self.action_redo = self.undo_stack.createRedoAction(self.editor) self.action_redo.setShortcut('Ctrl+Alt+Y') menu.addAction(self.action_redo) self.editor.add_action(menu.menuAction()) self.editor.cursorPositionChanged.connect( self._on_cursor_position_changed) self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.cursorPositionChanged.disconnect( self._on_cursor_position_changed) self.editor.remove_action(self.action_undo) self.editor.remove_action(self.action_redo) def _on_cursor_position_changed(self): if self.editor.textCursor().hasSelection(): return new_pos = api.TextHelper(self.editor).cursor_position() if abs(new_pos[0] - self._prev_pos[0]) > 1: # only record when line changed and don't record change if the user # just wen to the previous/next line cmd = MoveCursorCommand(new_pos, self._prev_pos, self.editor) self.undo_stack.push(cmd) self._prev_pos = new_pos def _on_key_pressed(self, event): control = event.modifiers() & QtCore.Qt.ControlModifier alt = event.modifiers() & QtCore.Qt.AltModifier if event.text() in ['Z', 'Y'] and control and alt: event.accept() Turing-0.11-beta/pyqode/core/modes/extended_selection.py 0000664 0000000 0000000 00000014162 13314727572 0023412 0 ustar 00root root 0000000 0000000 """ This module contains the extended selection mode. """ from pyqode.qt import QtCore, QtWidgets, QtGui from pyqode.core.api import Mode, TextHelper class ExtendedSelectionMode(Mode): """ Adds extended selection capabilities (Ctrl/Alt + Double click). This mode adds extended selections capabilities to CodeEdit. Extended selection is a feature that can be found in the Ulipad editor: https://code.google.com/p/ulipad It consists in adding a few shortcuts and contextual action to do some smarter selections. This mode adds the following new kind of selections: - word selection: select word under cursor - extended word selection: select word under cursor including continuation characters such as ".". - matched selection: select text inside quotes or parenthesis - line selection: select the whole line - select all: select entire document Extended selection and matched selection can be performed by combining ctrl or alt with a double click (modifiers are configurable through ``extended_sel_modifier`` or ``matched_sel_modifier``). """ def __init__(self): super(ExtendedSelectionMode, self).__init__() self.extended_sel_modifier = QtCore.Qt.ControlModifier self.matched_sel_modifier = QtCore.Qt.AltModifier self.continuation_characters = ('.',) self.word_sel_shortcut = QtGui.QKeySequence('Ctrl+Alt+M') self.action_select_word = QtWidgets.QAction(self.editor) self.action_select_word.setText(_('Select word')) self.action_select_word.setShortcut(self.word_sel_shortcut) self.action_select_word.triggered.connect(self.perform_word_selection) self.action_select_word.setShortcutContext( QtCore.Qt.WidgetShortcut) self.extended_sel_shortcut = QtGui.QKeySequence('Ctrl+Shift+M') self.action_select_extended_word = QtWidgets.QAction(self.editor) self.action_select_extended_word.setText(_('Select extended word')) self.action_select_extended_word.setShortcut( self.extended_sel_shortcut) self.action_select_extended_word.triggered.connect( self.perform_extended_selection) self.action_select_extended_word.setShortcutContext( QtCore.Qt.WidgetShortcut) self.matched_sel_shortcut = QtGui.QKeySequence('Ctrl+E') self.action_select_matched = QtWidgets.QAction(self.editor) self.action_select_matched.setText(_('Matched select')) self.action_select_matched.setShortcut(self.matched_sel_shortcut) self.action_select_matched.triggered.connect( self.perform_matched_selection) self.action_select_matched.setShortcutContext( QtCore.Qt.WidgetShortcut) self.line_sel_shortcut = QtGui.QKeySequence('Ctrl+Shift+L') self.action_select_line = QtWidgets.QAction(self.editor) self.action_select_line.setText(_('Select line')) self.action_select_line.setShortcut(self.line_sel_shortcut) self.action_select_line.triggered.connect(self.perform_line_selection) self.action_select_line.setShortcutContext( QtCore.Qt.WidgetShortcut) def create_menu(self): """ Creates the extended selection menu. """ # setup menu menu = QtWidgets.QMenu(self.editor) menu.setTitle(_('Select')) menu.menuAction().setIcon(QtGui.QIcon.fromTheme('edit-select')) # setup actions menu.addAction(self.action_select_word) menu.addAction(self.action_select_extended_word) menu.addAction(self.action_select_matched) menu.addAction(self.action_select_line) menu.addSeparator() menu.addAction(self.editor.action_select_all) icon = QtGui.QIcon.fromTheme( 'edit-select-all', QtGui.QIcon( ':/pyqode-icons/rc/edit-select-all.png')) self.editor.action_select_all.setIcon(icon) return menu def on_install(self, editor): super(ExtendedSelectionMode, self).on_install(editor) try: self.editor.remove_action(self.editor.action_select_all) except (ValueError, AttributeError): pass self.editor.add_action(self.create_menu().menuAction()) self.editor.addActions([ self.action_select_extended_word, self.action_select_line, self.action_select_matched, self.action_select_word]) def on_state_changed(self, state): if state: self.editor.mouse_double_clicked.connect(self._on_double_click) else: self.editor.mouse_double_clicked.disconnect(self._on_double_click) def _on_double_click(self, event): modifiers = event.modifiers() if modifiers & self.extended_sel_modifier: self.editor.textCursor().clearSelection() self.perform_extended_selection(event=event) elif modifiers & self.matched_sel_modifier: # self.editor.textCursor().clearSelection() self.perform_matched_selection(event=event) elif int(modifiers) == QtCore.Qt.NoModifier: self.perform_word_selection(event=event) def perform_word_selection(self, event=None): """ Performs word selection :param event: QMouseEvent """ self.editor.setTextCursor( TextHelper(self.editor).word_under_cursor(True)) if event: event.accept() def perform_extended_selection(self, event=None): """ Performs extended word selection. :param event: QMouseEvent """ TextHelper(self.editor).select_extended_word( continuation_chars=self.continuation_characters) if event: event.accept() def perform_matched_selection(self, event): """ Performs matched selection. :param event: QMouseEvent """ selected = TextHelper(self.editor).match_select() if selected and event: event.accept() def perform_line_selection(self): """ Performs line selection (select the entire line). """ TextHelper(self.editor).select_whole_line() Turing-0.11-beta/pyqode/core/modes/filewatcher.py 0000664 0000000 0000000 00000016546 13314727572 0022052 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the mode that control the external changes of file. """ import os from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache class FileWatcherMode(Mode, QtCore.QObject): """ Watches the current file for external modifications. FileWatcher mode, check if the opened file has changed externally. """ #: Signal emitted when the file has been deleted. The Signal is emitted #: with the current editor instance so that user have a chance to close #: the editor. file_deleted = QtCore.Signal(object) #: Signal emitted when the file has been reloaded in the editor. file_reloaded = QtCore.Signal() @property def auto_reload(self): """ Automatically reloads changed files """ return self._auto_reload @auto_reload.setter def auto_reload(self, value): self._auto_reload = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(FileWatcherMode).auto_reload = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): QtCore.QObject.__init__(self) Mode.__init__(self) self._auto_reload = False self._flg_notify = False self._data = (None, None) self._timer = QtCore.QTimer() self._timer.setInterval(1000) self._timer.timeout.connect(self._check_file) self._mtime = 0 self._notification_pending = False self._processing = False def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self._update_mtime) self.editor.new_text_set.connect(self._timer.start) self.editor.text_saving.connect(self._cancel_next_change) self.editor.text_saved.connect(self._update_mtime) self.editor.text_saved.connect(self._restart_monitoring) self.editor.focused_in.connect(self._check_for_pending) else: self._timer.stop() self.editor.new_text_set.connect(self._update_mtime) self.editor.new_text_set.connect(self._timer.start) self.editor.text_saving.disconnect(self._cancel_next_change) self.editor.text_saved.disconnect(self._restart_monitoring) self.editor.focused_in.disconnect(self._check_for_pending) self._timer.stop() def _cancel_next_change(self): self._timer.stop() for e in self.editor.clones: try: w = e.modes.get(self.__class__) except KeyError: pass else: w._cancel_next_change() def _restart_monitoring(self): self._update_mtime() for e in self.editor.clones: try: w = e.modes.get(self.__class__) except KeyError: pass else: w._restart_monitoring() self._timer.start() def _update_mtime(self): """ Updates modif time """ try: self._mtime = os.path.getmtime(self.editor.file.path) except OSError: # file_path does not exists. self._mtime = 0 self._timer.stop() except (TypeError, AttributeError): # file path is none, this happen if you use setPlainText instead of # openFile. This is perfectly fine, we just do not have anything to # watch try: self._timer.stop() except AttributeError: pass def _check_file(self): """ Checks watched file moficiation time and permission changes. """ try: self.editor.toPlainText() except RuntimeError: self._timer.stop() return if self.editor and self.editor.file.path: if not os.path.exists(self.editor.file.path) and self._mtime: self._notify_deleted_file() else: mtime = os.path.getmtime(self.editor.file.path) if mtime > self._mtime: self._mtime = mtime self._notify_change() # check for permission change writeable = os.access(self.editor.file.path, os.W_OK) self.editor.setReadOnly(not writeable) def _notify(self, title, message, expected_action=None): """ Notify user from external event """ if self.editor is None: return inital_value = self.editor.save_on_focus_out self.editor.save_on_focus_out = False self._flg_notify = True dlg_type = (QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No) expected_action = ( lambda *x: None) if not expected_action else expected_action if (self._auto_reload or QtWidgets.QMessageBox.question( self.editor, title, message, dlg_type, QtWidgets.QMessageBox.Yes) == QtWidgets.QMessageBox.Yes): expected_action(self.editor.file.path) self._update_mtime() self.editor.save_on_focus_out = inital_value def _notify_change(self): """ Notify user from external change if autoReloadChangedFiles is False then reload the changed file in the editor """ def inner_action(*args): """ Inner action: open file """ # cache cursor position before reloading so that the cursor # position is restored automatically after reload has finished. # See OpenCobolIDE/OpenCobolIDE#97 Cache().set_cursor_position( self.editor.file.path, self.editor.textCursor().position()) if os.path.exists(self.editor.file.path): self.editor.file.open(self.editor.file.path) self.file_reloaded.emit() else: # file moved just after a change, see OpenCobolIDE/OpenCobolIDE#337 self._notify_deleted_file() args = (_("File changed"), _("The file %s has changed externally.\nDo you want to " "reload it?") % os.path.basename(self.editor.file.path)) kwargs = {"expected_action": inner_action} if self.editor.hasFocus() or self.auto_reload: self._notify(*args, **kwargs) else: # show the reload prompt as soon as the editor has focus self._notification_pending = True self._data = (args, kwargs) def _check_for_pending(self, *args, **kwargs): """ Checks if a notification is pending. """ if self._notification_pending and not self._processing: self._processing = True args, kwargs = self._data self._notify(*args, **kwargs) self._notification_pending = False self._processing = False def _notify_deleted_file(self): """ Notify user from external file deletion. """ self.file_deleted.emit(self.editor) # file deleted, disable file watcher self.enabled = False def clone_settings(self, original): self.auto_reload = original.auto_reload Turing-0.11-beta/pyqode/core/modes/indenter.py 0000664 0000000 0000000 00000014112 13314727572 0021350 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the default indenter. """ import logging from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtGui def _logger(): return logging.getLogger(__name__) def debug(msg, *args): return _logger().log(5, msg, *args) class IndenterMode(Mode): """ Implements classic indentation/tabulation (Tab/Shift+Tab) It inserts/removes tabulations (a series of spaces defined by the tabLength settings) at the cursor position if there is no selection, otherwise it fully indents/un-indents selected lines. To trigger an indentation/un-indentation programatically, you must emit :attr:`pyqode.core.api.CodeEdit.indent_requested` or :attr:`pyqode.core.api.CodeEdit.unindent_requested`. """ def __init__(self): super(IndenterMode, self).__init__() def on_state_changed(self, state): if state: self.editor.indent_requested.connect(self.indent) self.editor.unindent_requested.connect(self.unindent) else: self.editor.indent_requested.disconnect(self.indent) self.editor.unindent_requested.disconnect(self.unindent) def indent_selection(self, cursor): """ Indent selected text :param cursor: QTextCursor """ doc = self.editor.document() tab_len = self.editor.tab_length cursor.beginEditBlock() nb_lines = len(cursor.selection().toPlainText().splitlines()) c = self.editor.textCursor() if c.atBlockStart() and c.position() == c.selectionEnd(): nb_lines += 1 block = doc.findBlock(cursor.selectionStart()) i = 0 # indent every lines while i < nb_lines: nb_space_to_add = tab_len cursor = QtGui.QTextCursor(block) cursor.movePosition(cursor.StartOfLine, cursor.MoveAnchor) if self.editor.use_spaces_instead_of_tabs: for _ in range(nb_space_to_add): cursor.insertText(" ") else: cursor.insertText('\t') block = block.next() i += 1 cursor.endEditBlock() def unindent_selection(self, cursor): """ Un-indents selected text :param cursor: QTextCursor """ doc = self.editor.document() tab_len = self.editor.tab_length nb_lines = len(cursor.selection().toPlainText().splitlines()) if nb_lines == 0: nb_lines = 1 block = doc.findBlock(cursor.selectionStart()) assert isinstance(block, QtGui.QTextBlock) i = 0 debug('unindent selection: %d lines', nb_lines) while i < nb_lines: txt = block.text() debug('line to unindent: %s', txt) debug('self.editor.use_spaces_instead_of_tabs: %r', self.editor.use_spaces_instead_of_tabs) if self.editor.use_spaces_instead_of_tabs: indentation = (len(txt) - len(txt.lstrip())) else: indentation = len(txt) - len(txt.replace('\t', '')) debug('unindent line %d: %d spaces', i, indentation) if indentation > 0: c = QtGui.QTextCursor(block) c.movePosition(c.StartOfLine, cursor.MoveAnchor) for _ in range(tab_len): txt = block.text() if len(txt) and txt[0] == ' ': c.deleteChar() block = block.next() i += 1 return cursor def indent(self): """ Indents text at cursor position. """ cursor = self.editor.textCursor() assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): self.indent_selection(cursor) else: # simply insert indentation at the cursor position tab_len = self.editor.tab_length cursor.beginEditBlock() if self.editor.use_spaces_instead_of_tabs: nb_space_to_add = tab_len - cursor.positionInBlock() % tab_len cursor.insertText(nb_space_to_add * " ") else: cursor.insertText('\t') cursor.endEditBlock() def count_deletable_spaces(self, cursor, max_spaces): # count the number of spaces deletable, stop at tab len max_spaces = abs(max_spaces) if max_spaces > self.editor.tab_length: max_spaces = self.editor.tab_length spaces = 0 trav_cursor = QtGui.QTextCursor(cursor) while spaces < max_spaces or trav_cursor.atBlockStart(): pos = trav_cursor.position() trav_cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = trav_cursor.selectedText() if char == " ": spaces += 1 else: break trav_cursor.setPosition(pos - 1) return spaces def unindent(self): """ Un-indents text at cursor position. """ debug('unindent') cursor = self.editor.textCursor() debug('cursor has selection %r', cursor.hasSelection()) if cursor.hasSelection(): cursor.beginEditBlock() self.unindent_selection(cursor) cursor.endEditBlock() self.editor.setTextCursor(cursor) else: tab_len = self.editor.tab_length indentation = cursor.positionInBlock() max_spaces = tab_len - (indentation - (indentation % tab_len)) spaces = self.count_deletable_spaces(cursor, max_spaces) debug('deleting %d space before cursor' % spaces) cursor.beginEditBlock() if spaces: # delete spaces before cursor for _ in range(spaces): cursor.deletePreviousChar() else: # un-indent whole line debug('un-indent whole line') cursor = self.unindent_selection(cursor) cursor.endEditBlock() self.editor.setTextCursor(cursor) debug(cursor.block().text()) Turing-0.11-beta/pyqode/core/modes/line_highlighter.py 0000664 0000000 0000000 00000005102 13314727572 0023044 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the care line highlighter mode """ from pyqode.qt import QtGui from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode class LineHighlighterMode(Mode): """ Highlights a line in the editor.""" @property def background(self): """ Background color of the highlighted line. """ return self._color @background.setter def background(self, value): self._color = value self.refresh() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def line(self): if self._block: return self._block.blockNumber() else: return self._block @line.setter def line(self, value): if value is None: self._block = value self._clear_deco() else: self._block = self.editor.document().findBlockByNumber(value) self.refresh() def __init__(self): super(LineHighlighterMode, self).__init__() self._decoration = None self._block = None self._color = QtGui.QColor('#DD8080') def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self.refresh) self.refresh() else: self.editor.new_text_set.disconnect(self.refresh) self._clear_deco() def on_install(self, editor): super(LineHighlighterMode, self).on_install(editor) self.refresh() def _clear_deco(self): """ Clear line decoration """ if self._decoration: self.editor.decorations.remove(self._decoration) self._decoration = None def refresh(self): """ Updates the current line decoration """ if self.enabled and self.line: self._clear_deco() brush = QtGui.QBrush(self._color) self._decoration = TextDecoration( self.editor.textCursor(), start_line=self.line) self._decoration.set_background(brush) self._decoration.set_full_width() self._decoration.draw_order = 255 self.editor.decorations.append(self._decoration) def clone_settings(self, original): self.background = original.background Turing-0.11-beta/pyqode/core/modes/matcher.py 0000664 0000000 0000000 00000023154 13314727572 0021171 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the symbol matcher mode """ from pyqode.core.api import get_block_symbol_data from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.qt import QtGui #: symbols indices in SymbolMatcherMode.SYMBOLS map PAREN = 0 SQUARE = 1 BRACE = 2 #: character indices in SymbolMatcherMode.SYMBOLS map OPEN = 0 CLOSE = 1 class SymbolMatcherMode(Mode): """ Highlights matching symbols (parentheses, braces,...) .. note:: This mode requires the document to be filled with :class:`pyqode.core.api.TextBlockUserData`, i.e. a :class:`pyqode.core.api.SyntaxHighlighter` must be installed on the editor instance. """ #: known symbols {SYMBOL: (OPEN, CLOSE)}, you can customise this map to #: add support for other symbols SYMBOLS = { PAREN: ('(', ')'), SQUARE: ('[', ']'), BRACE: ('{', '}') } @property def match_background(self): """ Background color of matching symbols. """ return self._match_background @match_background.setter def match_background(self, value): self._match_background = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).match_background = value except KeyError: # this should never happen since we're working with clones pass @property def match_foreground(self): """ Foreground color of matching symbols. """ return self._match_foreground @match_foreground.setter def match_foreground(self, value): self._match_foreground = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).match_foreground = value except KeyError: # this should never happen since we're working with clones pass @property def unmatch_background(self): """ Background color of non-matching symbols. """ return self._unmatch_background @unmatch_background.setter def unmatch_background(self, value): self._unmatch_background = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).unmatch_background = value except KeyError: # this should never happen since we're working with clones pass @property def unmatch_foreground(self): """ Foreground color of matching symbols. """ return self._unmatch_foreground @unmatch_foreground.setter def unmatch_foreground(self, value): self._unmatch_foreground = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).unmatch_foreground = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): super(SymbolMatcherMode, self).__init__() self._decorations = [] self._match_background = QtGui.QBrush(QtGui.QColor('#B4EEB4')) self._match_foreground = QtGui.QColor('red') self._unmatch_background = QtGui.QBrush(QtGui.QColor('transparent')) self._unmatch_foreground = QtGui.QColor('red') def _clear_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) self._decorations[:] = [] def symbol_pos(self, cursor, character_type=OPEN, symbol_type=PAREN): """ Find the corresponding symbol position (line, column) of the specified symbol. If symbol type is PAREN and character_type is OPEN, the function will look for '('. :param cursor: QTextCursor :param character_type: character type to look for (open or close char) :param symbol_type: symbol type (index in the SYMBOLS map). """ retval = None, None original_cursor = self.editor.textCursor() self.editor.setTextCursor(cursor) block = cursor.block() data = get_block_symbol_data(self.editor, block) self._match(symbol_type, data, block.position()) for deco in self._decorations: if deco.character == self.SYMBOLS[symbol_type][character_type]: retval = deco.line, deco.column break self.editor.setTextCursor(original_cursor) self._clear_decorations() return retval def _refresh_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) if deco.match: deco.set_foreground(self._match_foreground) deco.set_background(self._match_background) else: deco.set_foreground(self._unmatch_foreground) deco.set_background(self._unmatch_background) self.editor.decorations.append(deco) def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self.do_symbols_matching) else: self.editor.cursorPositionChanged.disconnect( self.do_symbols_matching) def _match(self, symbol, data, cursor_pos): symbols = data[symbol] for i, info in enumerate(symbols): pos = (self.editor.textCursor().position() - self.editor.textCursor().block().position()) if info.character == self.SYMBOLS[symbol][OPEN] and \ info.position == pos: self._create_decoration( cursor_pos + info.position, self._match_left( symbol, self.editor.textCursor().block(), i + 1, 0)) elif info.character == self.SYMBOLS[symbol][CLOSE] and \ info.position == pos - 1: self._create_decoration( cursor_pos + info.position, self._match_right( symbol, self.editor.textCursor().block(), i - 1, 0)) def _match_left(self, symbol, current_block, i, cpt): while current_block.isValid(): data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] for j in range(i, len(parentheses)): info = parentheses[j] if info.character == self.SYMBOLS[symbol][OPEN]: cpt += 1 continue if info.character == self.SYMBOLS[symbol][CLOSE] and cpt == 0: self._create_decoration(current_block.position() + info.position) return True elif info.character == self.SYMBOLS[symbol][CLOSE]: cpt -= 1 current_block = current_block.next() i = 0 return False def _match_right(self, symbol, current_block, i, nb_right_paren): while current_block.isValid(): data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] for j in range(i, -1, -1): if j >= 0: info = parentheses[j] if info.character == self.SYMBOLS[symbol][CLOSE]: nb_right_paren += 1 continue if info.character == self.SYMBOLS[symbol][OPEN]: if nb_right_paren == 0: self._create_decoration( current_block.position() + info.position) return True else: nb_right_paren -= 1 current_block = current_block.previous() data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] i = len(parentheses) - 1 return False def do_symbols_matching(self): """ Performs symbols matching. """ self._clear_decorations() current_block = self.editor.textCursor().block() data = get_block_symbol_data(self.editor, current_block) pos = self.editor.textCursor().block().position() for symbol in [PAREN, SQUARE, BRACE]: self._match(symbol, data, pos) def _create_decoration(self, pos, match=True): cursor = self.editor.textCursor() cursor.setPosition(pos) cursor.movePosition(cursor.NextCharacter, cursor.KeepAnchor) deco = TextDecoration(cursor, draw_order=10) deco.line = cursor.blockNumber() deco.column = cursor.columnNumber() deco.character = cursor.selectedText() deco.match = match if match: deco.set_foreground(self._match_foreground) deco.set_background(self._match_background) else: deco.set_foreground(self._unmatch_foreground) deco.set_background(self._unmatch_background) self._decorations.append(deco) self.editor.decorations.append(deco) return cursor def clone_settings(self, original): self.match_background = original.match_background self.match_foreground = original.match_foreground self.unmatch_background = original.unmatch_background self.unmatch_foreground = original.unmatch_foreground Turing-0.11-beta/pyqode/core/modes/occurences.py 0000664 0000000 0000000 00000014465 13314727572 0021704 0 ustar 00root root 0000000 0000000 """ This module contains the occurrences highlighter mode. """ from pyqode.qt import QtGui from pyqode.core.api import Mode, DelayJobRunner, TextHelper, TextDecoration from pyqode.core.backend import NotRunning from pyqode.core.backend.workers import findall class OccurrencesHighlighterMode(Mode): """ Highlights occurrences of the word under the text text cursor. The ``delay`` before searching for occurrences is configurable. """ @property def delay(self): """ Delay before searching for occurrences. The timer is rearmed as soon as the cursor position changed. """ return self.timer.delay @delay.setter def delay(self, value): self.timer.delay = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).delay = value except KeyError: # this should never happen since we're working with clones pass @property def background(self): """ Background or underline color (if underlined is True). """ return self._background @background.setter def background(self, value): self._background = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): """ Foreground color of occurences, not used if underlined is True. """ return self._foreground @foreground.setter def foreground(self, value): self._foreground = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass @property def underlined(self): """ True to use to underlined occurrences instead of changing the background. Default is True. If this mode is ON, the foreground color is ignored, the background color is then used as the underline color. """ return self._underlined @underlined.setter def underlined(self, value): self._underlined = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).underlined = value except KeyError: # this should never happen since we're working with clones pass @property def case_sensitive(self): return self._case_sensitive @case_sensitive.setter def case_sensitive(self, value): self._case_sensitive = value self._request_highlight() def __init__(self): super(OccurrencesHighlighterMode, self).__init__() self._decorations = [] #: Timer used to run the search request with a specific delay self.timer = DelayJobRunner(delay=1000) self._sub = None self._background = QtGui.QColor('#CCFFCC') self._foreground = None self._underlined = False self._case_sensitive = False def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self._request_highlight) else: self.editor.cursorPositionChanged.disconnect( self._request_highlight) self.timer.cancel_requests() def _clear_decos(self): for d in self._decorations: self.editor.decorations.remove(d) self._decorations[:] = [] def _request_highlight(self): if self.editor is not None: sub = TextHelper(self.editor).word_under_cursor( select_whole_word=True).selectedText() if sub != self._sub: self._clear_decos() if len(sub) > 1: self.timer.request_job(self._send_request) def _send_request(self): if self.editor is None: return cursor = self.editor.textCursor() self._sub = TextHelper(self.editor).word_under_cursor( select_whole_word=True).selectedText() if not cursor.hasSelection() or cursor.selectedText() == self._sub: request_data = { 'string': self.editor.toPlainText(), 'sub': self._sub, 'regex': False, 'whole_word': True, 'case_sensitive': self.case_sensitive } try: self.editor.backend.send_request(findall, request_data, self._on_results_available) except NotRunning: self._request_highlight() def _on_results_available(self, results): if len(results) > 500: # limit number of results (on very big file where a lots of # occurrences can be found, this would totally freeze the editor # during a few seconds, with a limit of 500 we can make sure # the editor will always remain responsive). results = results[:500] current = self.editor.textCursor().position() if len(results) > 1: for start, end in results: if start <= current <= end: continue deco = TextDecoration(self.editor.textCursor(), start_pos=start, end_pos=end) if self.underlined: deco.set_as_underlined(self._background) else: deco.set_background(QtGui.QBrush(self._background)) if self._foreground is not None: deco.set_foreground(self._foreground) deco.draw_order = 3 self.editor.decorations.append(deco) self._decorations.append(deco) def clone_settings(self, original): self.delay = original.delay self.background = original.background self.foreground = original.foreground self.underlined = original.underlined Turing-0.11-beta/pyqode/core/modes/outline.py 0000664 0000000 0000000 00000005450 13314727572 0021224 0 ustar 00root root 0000000 0000000 import logging from pyqode.core.api import Mode from pyqode.core.api import DelayJobRunner from pyqode.core.backend import NotRunning from pyqode.core.share import Definition from pyqode.qt import QtCore def _logger(): return logging.getLogger(__name__) class OutlineMode(Mode, QtCore.QObject): """ Generic mode that provides outline information through the document_changed signal and a specialised worker function. To use this mode, you need to write a worker function that returns a list of pyqode.core.share.Definition (see pyqode.python.backend.workers.defined_names() for an example of how to implement the worker function). """ #: Signal emitted when the document structure changed. document_changed = QtCore.Signal() @property def definitions(self): """ Gets the list of top level definitions. """ return self._results def __init__(self, worker, delay=1000): Mode.__init__(self) QtCore.QObject.__init__(self) self._worker = worker self._jobRunner = DelayJobRunner(delay=delay) #: The list of definitions found in the file, each item is a #: pyqode.core.share.Definition. self._results = [] def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self._run_analysis) self.editor.textChanged.connect(self._request_analysis) else: self.editor.textChanged.disconnect(self._request_analysis) self.editor.new_text_set.disconnect(self._run_analysis) self._jobRunner.cancel_requests() def _request_analysis(self): self._jobRunner.request_job(self._run_analysis) def _run_analysis(self): try: self.editor.file self.editor.toPlainText() except (RuntimeError, AttributeError): # called by the timer after the editor got deleted return if self.enabled: request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } try: self.editor.backend.send_request( self._worker, request_data, on_receive=self._on_results_available) except NotRunning: QtCore.QTimer.singleShot(100, self._run_analysis) else: self._results = [] self.document_changed.emit() def _on_results_available(self, results): if results: results = [Definition.from_dict(ddict) for ddict in results] self._results = results if self._results is not None: _logger().log(5, "Document structure changed") self.document_changed.emit() Turing-0.11-beta/pyqode/core/modes/pygments_sh.py 0000664 0000000 0000000 00000033775 13314727572 0022120 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains Syntax Highlighting mode and the QSyntaxHighlighter based on pygments. .. note: This code is taken and adapted from the IPython project. """ import logging import mimetypes import sys from pygments.formatters.html import HtmlFormatter from pygments.lexer import Error, RegexLexer, Text, _TokenType from pygments.lexers import get_lexer_for_filename, get_lexer_for_mimetype from pygments.lexers.agile import PythonLexer from pygments.lexers.compiled import CLexer, CppLexer from pygments.lexers.dotnet import CSharpLexer from pygments.lexers.special import TextLexer from pygments.styles import get_style_by_name, get_all_styles from pygments.token import Whitespace, Comment, Token from pygments.util import ClassNotFound from pyqode.qt import QtGui from pyqode.qt.QtCore import QRegExp from pyqode.core.api.syntax_highlighter import ( SyntaxHighlighter, ColorScheme, TextBlockUserData) def _logger(): """ Returns the module's logger """ return logging.getLogger(__name__) #: A sorted list of available pygments styles, for convenience PYGMENTS_STYLES = sorted(list(get_all_styles())) if hasattr(sys, 'frozen'): PYGMENTS_STYLES += ['darcula', 'qt'] def get_tokens_unprocessed(self, text, stack=('root',)): """ Split ``text`` into (tokentype, text) pairs. Monkeypatched to store the final stack on the object itself. """ pos = 0 tokendefs = self._tokens if hasattr(self, '_saved_state_stack'): statestack = list(self._saved_state_stack) else: statestack = list(stack) statetokens = tokendefs[statestack[-1]] while 1: for rexmatch, action, new_state in statetokens: m = rexmatch(text, pos) if m: if action is not None: if type(action) is _TokenType: yield pos, action, m.group() else: for item in action(self, m): yield item pos = m.end() if new_state is not None: # state transition if isinstance(new_state, tuple): for state in new_state: if state == '#pop': statestack.pop() elif state == '#push': statestack.append(statestack[-1]) else: statestack.append(state) elif isinstance(new_state, int): # pop del statestack[new_state:] elif new_state == '#push': statestack.append(statestack[-1]) else: assert False, "wrong state def: %r" % new_state statetokens = tokendefs[statestack[-1]] break else: try: if text[pos] == '\n': # at EOL, reset state to "root" pos += 1 statestack = ['root'] statetokens = tokendefs['root'] yield pos, Text, '\n' continue yield pos, Error, text[pos] pos += 1 except IndexError: break self._saved_state_stack = list(statestack) # Monkeypatch! RegexLexer.get_tokens_unprocessed = get_tokens_unprocessed # Even with the above monkey patch to store state, multiline comments do not # work since they are stateless (Pygments uses a single multiline regex for # these comments, but Qt lexes by line). So we need to append a state for # comments # to the C and C++ lexers. This means that nested multiline # comments will appear to be valid C/C++, but this is better than the # alternative for now. def replace_pattern(tokens, new_pattern): """ Given a RegexLexer token dictionary 'tokens', replace all patterns that match the token specified in 'new_pattern' with 'new_pattern'. """ for state in tokens.values(): for index, pattern in enumerate(state): if isinstance(pattern, tuple) and pattern[1] == new_pattern[1]: state[index] = new_pattern # More monkeypatching! COMMENT_START = (r'/\*', Comment.Multiline, 'comment') COMMENT_STATE = [(r'[^*/]', Comment.Multiline), (r'/\*', Comment.Multiline, '#push'), (r'\*/', Comment.Multiline, '#pop'), (r'[*/]', Comment.Multiline)] replace_pattern(CLexer.tokens, COMMENT_START) replace_pattern(CppLexer.tokens, COMMENT_START) CLexer.tokens['comment'] = COMMENT_STATE CppLexer.tokens['comment'] = COMMENT_STATE CSharpLexer.tokens['comment'] = COMMENT_STATE class PygmentsSH(SyntaxHighlighter): """ Highlights code using the pygments parser. This mode enable syntax highlighting using the pygments library. This is a generic syntax highlighter, it is slower than a native highlighter and does not do any code folding detection. Use it as a fallback for languages that do not have a native highlighter available. Check the other pyqode namespace packages to see what other languages are available (at the time of writing, only python has specialised support). .. warning:: There are some issues with multi-line comments, they are not properly highlighted until a full re-highlight is triggered. The text is automatically re-highlighted on save. """ #: Mode description DESCRIPTION = "Apply syntax highlighting to the editor using pygments" @property def pygments_style(self): """ Gets/Sets the pygments style """ return self.color_scheme.name @pygments_style.setter def pygments_style(self, value): self._pygments_style = value self._update_style() # triggers a rehighlight self.color_scheme = ColorScheme(value) def __init__(self, document, lexer=None, color_scheme=None): super(PygmentsSH, self).__init__(document, color_scheme=color_scheme) self._pygments_style = self.color_scheme.name self._style = None self._formatter = HtmlFormatter(nowrap=True) self._lexer = lexer if lexer else PythonLexer() self._brushes = {} self._formats = {} self._init_style() self._prev_block = None def _init_style(self): """ Init pygments style """ self._update_style() def on_install(self, editor): """ :type editor: pyqode.code.api.CodeEdit """ self._clear_caches() self._update_style() super(PygmentsSH, self).on_install(editor) def set_mime_type(self, mime_type): """ Update the highlighter lexer based on a mime type. :param mime_type: mime type of the new lexer to setup. """ try: self.set_lexer_from_mime_type(mime_type) except ClassNotFound: _logger().exception('failed to get lexer from mimetype') self._lexer = TextLexer() return False except ImportError: # import error while loading some pygments plugins, the editor # should not crash _logger().warning('failed to get lexer from mimetype (%s)' % mime_type) self._lexer = TextLexer() return False else: return True def set_lexer_from_filename(self, filename): """ Change the lexer based on the filename (actually only the extension is needed) :param filename: Filename or extension """ self._lexer = None if filename.endswith("~"): filename = filename[0:len(filename) - 1] try: self._lexer = get_lexer_for_filename(filename) except (ClassNotFound, ImportError): print('class not found for url', filename) try: m = mimetypes.guess_type(filename) print(m) self._lexer = get_lexer_for_mimetype(m[0]) except (ClassNotFound, IndexError, ImportError): self._lexer = get_lexer_for_mimetype('text/plain') if self._lexer is None: _logger().warning('failed to get lexer from filename: %s, using ' 'plain text instead...', filename) self._lexer = TextLexer() def set_lexer_from_mime_type(self, mime, **options): """ Sets the pygments lexer from mime type. :param mime: mime type :param options: optional addtional options. """ self._lexer = get_lexer_for_mimetype(mime, **options) _logger().debug('lexer for mimetype (%s): %r', mime, self._lexer) def highlight_block(self, text, block): """ Highlights the block using a pygments lexer. :param text: text of the block to highlith :param block: block to highlight """ if self.color_scheme.name != self._pygments_style: self._pygments_style = self.color_scheme.name self._update_style() original_text = text if self.editor and self._lexer and self.enabled: if block.blockNumber(): prev_data = self._prev_block.userData() if prev_data: if hasattr(prev_data, "syntax_stack"): self._lexer._saved_state_stack = prev_data.syntax_stack elif hasattr(self._lexer, '_saved_state_stack'): del self._lexer._saved_state_stack # Lex the text using Pygments index = 0 usd = block.userData() if usd is None: usd = TextBlockUserData() block.setUserData(usd) tokens = list(self._lexer.get_tokens(text)) for token, text in tokens: length = len(text) fmt = self._get_format(token) if token in [Token.Literal.String, Token.Literal.String.Doc, Token.Comment]: fmt.setObjectType(fmt.UserObject) self.setFormat(index, length, fmt) index += length if hasattr(self._lexer, '_saved_state_stack'): setattr(usd, "syntax_stack", self._lexer._saved_state_stack) # Clean up for the next go-round. del self._lexer._saved_state_stack # spaces text = original_text expression = QRegExp(r'\s+') index = expression.indexIn(text, 0) while index >= 0: index = expression.pos(0) length = len(expression.cap(0)) self.setFormat(index, length, self._get_format(Whitespace)) index = expression.indexIn(text, index + length) self._prev_block = block def _update_style(self): """ Sets the style to the specified Pygments style. """ try: self._style = get_style_by_name(self._pygments_style) except ClassNotFound: # unknown style, also happen with plugins style when used from a # frozen app. if self._pygments_style == 'qt': from pyqode.core.styles import QtStyle self._style = QtStyle elif self._pygments_style == 'darcula': from pyqode.core.styles import DarculaStyle self._style = DarculaStyle else: self._style = get_style_by_name('default') self._pygments_style = 'default' self._clear_caches() def _clear_caches(self): """ Clear caches for brushes and formats. """ self._brushes.clear() self._formats.clear() def _get_format(self, token): """ Returns a QTextCharFormat for token or None. """ if token == Whitespace: return self.editor.whitespaces_foreground if token in self._formats: return self._formats[token] result = self._get_format_from_style(token, self._style) self._formats[token] = result return result def _get_format_from_style(self, token, style): """ Returns a QTextCharFormat for token by reading a Pygments style. """ result = QtGui.QTextCharFormat() try: style = style.style_for_token(token) except KeyError: # fallback to plain text style = style.style_for_token(Text) for key, value in list(style.items()): if value: if key == 'color': result.setForeground(self._get_brush(value)) elif key == 'bgcolor': result.setBackground(self._get_brush(value)) elif key == 'bold': result.setFontWeight(QtGui.QFont.Bold) elif key == 'italic': result.setFontItalic(True) elif key == 'underline': result.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) elif key == 'sans': result.setFontStyleHint(QtGui.QFont.SansSerif) elif key == 'roman': result.setFontStyleHint(QtGui.QFont.Times) elif key == 'mono': result.setFontStyleHint(QtGui.QFont.TypeWriter) return result def _get_brush(self, color): """ Returns a brush for the color. """ result = self._brushes.get(color) if result is None: qcolor = self._get_color(color) result = QtGui.QBrush(qcolor) self._brushes[color] = result return result @staticmethod def _get_color(color): """ Returns a QColor built from a Pygments color string. """ color = str(color).replace("#", "") qcolor = QtGui.QColor() qcolor.setRgb(int(color[:2], base=16), int(color[2:4], base=16), int(color[4:6], base=16)) return qcolor Turing-0.11-beta/pyqode/core/modes/right_margin.py 0000664 0000000 0000000 00000005221 13314727572 0022213 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the right margin mode. """ from pyqode.core.api import TextHelper from pyqode.core.api import Mode from pyqode.qt import QtGui class RightMarginMode(Mode): """ Displays a right margin at column the specified position. """ @property def color(self): """ Gets/sets the color of the margin """ return self._color @color.setter def color(self, value): self._color = value self._pen = QtGui.QPen(self._color) TextHelper(self.editor).mark_whole_doc_dirty() self.editor.repaint() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def position(self): """ Gets/sets the position of the margin """ return self._margin_pos @position.setter def position(self, value): self._margin_pos = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).position = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Mode.__init__(self) self._margin_pos = 79 self._color = QtGui.QColor('red') self._pen = QtGui.QPen(self._color) def on_state_changed(self, state): """ Connects/Disconnects to the painted event of the editor :param state: Enable state """ if state: self.editor.painted.connect(self._paint_margin) self.editor.repaint() else: self.editor.painted.disconnect(self._paint_margin) self.editor.repaint() def _paint_margin(self, event): """ Paints the right margin after editor paint event. """ font = QtGui.QFont(self.editor.font_name, self.editor.font_size + self.editor.zoom_level) metrics = QtGui.QFontMetricsF(font) pos = self._margin_pos offset = self.editor.contentOffset().x() + \ self.editor.document().documentMargin() x80 = round(metrics.width(' ') * pos) + offset painter = QtGui.QPainter(self.editor.viewport()) painter.setPen(self._pen) painter.drawLine(x80, 0, x80, 2 ** 16) def clone_settings(self, original): self.color = original.color self.position = original.position Turing-0.11-beta/pyqode/core/modes/wordclick.py 0000664 0000000 0000000 00000011356 13314727572 0021530 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the WordClickMode """ from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtGui from pyqode.core.api import TextHelper, DelayJobRunner class WordClickMode(Mode, QtCore.QObject): """ Adds support for word click events. It will highlight the click-able word when the user press control and move the mouse over a word. Detecting whether a word is click-able is the responsability of the subclasses. You must override ``_check_word_cursor`` and call ``_select_word_cursor`` if this is a click-able word (this process might be asynchrone) otherwise _clear_selection. :attr:`pyqode.core.modes.WordClickMode.word_clicked` is emitted when the word is clicked by the user (while keeping control pressed). """ #: Signal emitted when a word is clicked. The parameter is a #: QTextCursor with the clicked word set as the selected text. word_clicked = QtCore.Signal(QtGui.QTextCursor) def __init__(self): QtCore.QObject.__init__(self) Mode.__init__(self) self._previous_cursor_start = -1 self._previous_cursor_end = -1 self._deco = None self._cursor = None self._timer = DelayJobRunner(delay=200) def on_state_changed(self, state): if state: self.editor.mouse_moved.connect(self._on_mouse_moved) self.editor.mouse_released.connect(self._on_mouse_released) self.editor.key_released.connect(self._on_key_released) self.editor.mouse_double_clicked.connect( self._on_mouse_double_clicked) else: self.editor.mouse_moved.disconnect(self._on_mouse_moved) self.editor.mouse_released.disconnect(self._on_mouse_released) self.editor.key_released.disconnect(self._on_key_released) self.editor.mouse_double_clicked.disconnect( self._on_mouse_double_clicked) def _on_mouse_double_clicked(self): self._timer.cancel_requests() def _on_key_released(self, event): if event.key() == QtCore.Qt.Key_Control: self._clear_selection() self._cursor = None def _select_word_cursor(self): """ Selects the word under the mouse cursor. """ cursor = TextHelper(self.editor).word_under_mouse_cursor() if (self._previous_cursor_start != cursor.selectionStart() and self._previous_cursor_end != cursor.selectionEnd()): self._remove_decoration() self._add_decoration(cursor) self._previous_cursor_start = cursor.selectionStart() self._previous_cursor_end = cursor.selectionEnd() def _clear_selection(self): try: self._remove_decoration() except ValueError: pass self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) self._previous_cursor_start = -1 self._previous_cursor_end = -1 def _on_mouse_moved(self, event): """ mouse moved callback """ if event.modifiers() & QtCore.Qt.ControlModifier: cursor = TextHelper(self.editor).word_under_mouse_cursor() if (not self._cursor or cursor.position() != self._cursor.position()): self._check_word_cursor(cursor) self._cursor = cursor else: self._cursor = None self._clear_selection() def _check_word_cursor(self, cursor): pass def _on_mouse_released(self, event): """ mouse pressed callback """ if event.button() == 1 and self._deco: cursor = TextHelper(self.editor).word_under_mouse_cursor() if cursor and cursor.selectedText(): self._timer.request_job( self.word_clicked.emit, cursor) def _add_decoration(self, cursor): """ Adds a decoration for the word under ``cursor``. """ if self._deco is None: if cursor.selectedText(): self._deco = TextDecoration(cursor) if self.editor.background.lightness() < 128: self._deco.set_foreground(QtGui.QColor('#0681e0')) else: self._deco.set_foreground(QtCore.Qt.blue) self._deco.set_as_underlined() self.editor.decorations.append(self._deco) self.editor.set_mouse_cursor(QtCore.Qt.PointingHandCursor) else: self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) def _remove_decoration(self): """ Removes the word under cursor's decoration """ if self._deco is not None: self.editor.decorations.remove(self._deco) self._deco = None Turing-0.11-beta/pyqode/core/modes/zoom.py 0000664 0000000 0000000 00000006365 13314727572 0020537 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the ZoomMode which lets you zoom in and out the editor. """ from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtGui, QtWidgets class ZoomMode(Mode): """ Zooms/Unzooms the editor (Ctrl+mouse wheel or Ctrl + 0 to reset). This mode make it possible to zoom in/out the editor view. Here are the controls: * **zoom out**: *ctrl+-* or *ctrl+mouse wheel backward* * **zoom in**: *ctrl++* or *ctrl+mouse wheel forward* * **reset**: *ctrl + 0* """ def __init__(self): super(ZoomMode, self).__init__() self.prev_delta = 0 self.default_font_size = 10 def on_state_changed(self, state): if state: self.editor.mouse_wheel_activated.connect( self._on_wheel_event) self.editor.key_pressed.connect(self._on_key_pressed) self.mnu_zoom = QtWidgets.QMenu("Zoom") a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-in'), 'Zoom in') a.setShortcut('Ctrl++') a.triggered.connect(self.editor.zoom_in) a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-out'), 'Zoom out') a.setShortcut('Ctrl+-') a.triggered.connect(self.editor.zoom_out) a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-fit-best'), 'Reset zoom') a.setShortcut('Ctrl+0') a.triggered.connect(self.editor.reset_zoom) a = self.mnu_zoom.menuAction() a.setIcon(QtGui.QIcon.fromTheme('zoom')) self.editor.add_action(a, sub_menu=None) else: self.editor.mouse_wheel_activated.disconnect( self._on_wheel_event) self.editor.remove_action(self.mnu_zoom.menuAction(), sub_menu=None) self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): """ Resets editor font size to the default font size :param event: wheelEvent :type event: QKeyEvent """ if (int(event.modifiers()) & QtCore.Qt.ControlModifier > 0 and not int(event.modifiers()) & QtCore.Qt.ShiftModifier): if event.key() == QtCore.Qt.Key_0: self.editor.reset_zoom() event.accept() if event.key() == QtCore.Qt.Key_Plus: self.editor.zoom_in() event.accept() if event.key() == QtCore.Qt.Key_Minus: self.editor.zoom_out() event.accept() def _on_wheel_event(self, event): """ Increments or decrements editor fonts settings on mouse wheel event if ctrl modifier is on. :param event: wheel event :type event: QWheelEvent """ try: delta = event.angleDelta().y() except AttributeError: # PyQt4/PySide delta = event.delta() if int(event.modifiers()) & QtCore.Qt.ControlModifier > 0: if delta < self.prev_delta: self.editor.zoom_out() event.accept() else: self.editor.zoom_in() event.accept() Turing-0.11-beta/pyqode/core/panels/ 0000775 0000000 0000000 00000000000 13314727572 0017342 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/panels/__init__.py 0000664 0000000 0000000 00000001155 13314727572 0021455 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This package contains the core panels """ from .encodings import EncodingPanel from .line_number import LineNumberPanel from .marker import Marker from .marker import MarkerPanel from .checker import CheckerPanel from .folding import FoldingPanel from .search_and_replace import SearchAndReplacePanel from .global_checker import GlobalCheckerPanel from .read_only import ReadOnlyPanel __all__ = [ 'CheckerPanel', 'EncodingPanel', 'FoldingPanel', 'LineNumberPanel', 'Marker', 'MarkerPanel', 'SearchAndReplacePanel', 'GlobalCheckerPanel', 'ReadOnlyPanel' ] Turing-0.11-beta/pyqode/core/panels/checker.py 0000664 0000000 0000000 00000010537 13314727572 0021326 0 ustar 00root root 0000000 0000000 """ Checker panels: - CheckerPanel: draw checker messages in front of each line - GlobalCheckerPanel: draw all checker markers as colored rectangle to offer a global view of all errors """ from pyqode.core import icons from pyqode.core.api import DelayJobRunner, TextHelper, CodeEdit from pyqode.core.api.panel import Panel, _logger from pyqode.core.modes.checker import CheckerMessages from pyqode.qt import QtCore, QtGui, QtWidgets class CheckerPanel(Panel): """ Shows messages collected by one or more checker modes """ def __init__(self): super(CheckerPanel, self).__init__() self._previous_line = -1 self.scrollable = True self._job_runner = DelayJobRunner(delay=100) self.setMouseTracking(True) #: Info icon self.info_icon = icons.icon( 'dialog-info', ':pyqode-icons/rc/dialog-info.png', 'fa.info-circle', qta_options={'color': '#4040DD'}) self.warning_icon = icons.icon( 'dialog-warning', ':pyqode-icons/rc/dialog-warning.png', 'fa.exclamation-triangle', qta_options={'color': '#DDDD40'}) self.error_icon = icons.icon( 'dialog-error', ':pyqode-icons/rc/dialog-error.png', 'fa.exclamation-circle', qta_options={'color': '#DD4040'}) def marker_for_line(self, line): """ Returns the marker that is displayed at the specified line number if any. :param line: The marker line. :return: Marker of None :rtype: pyqode.core.Marker """ block = self.editor.document().findBlockByNumber(line) try: return block.userData().messages except AttributeError: return [] def sizeHint(self): """ Returns the panel size hint. (fixed with of 16px) """ metrics = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(metrics.height(), metrics.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def on_uninstall(self): self._job_runner.cancel_requests() super(CheckerPanel, self).on_uninstall() def paintEvent(self, event): super(CheckerPanel, self).paintEvent(event) painter = QtGui.QPainter(self) for top, block_nbr, block in self.editor.visible_blocks: user_data = block.userData() if user_data and user_data.messages: for msg in user_data.messages: icon = self._icon_from_message(msg) if icon: rect = QtCore.QRect() rect.setX(0) rect.setY(top) rect.setWidth(self.sizeHint().width()) rect.setHeight(self.sizeHint().height()) icon.paint(painter, rect) def _icon_from_message(self, message): icons = { CheckerMessages.INFO: self.info_icon, CheckerMessages.WARNING: self.warning_icon, CheckerMessages.ERROR: self.error_icon } return icons[message.status] def mouseMoveEvent(self, event): # Requests a tooltip if the cursor is currently over a marker. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) if line: markers = self.marker_for_line(line) text = '\n'.join([marker.description for marker in markers if marker.description]) if len(markers): if self._previous_line != line: top = TextHelper(self.editor).line_pos_from_number( markers[0].line) if top: self._job_runner.request_job(self._display_tooltip, text, top) else: self._job_runner.cancel_requests() self._previous_line = line def leaveEvent(self, *args): """ Hide tooltip when leaving the panel region. """ QtWidgets.QToolTip.hideText() self._previous_line = -1 def _display_tooltip(self, tooltip, top): """ Display tooltip at the specified top position. """ QtWidgets.QToolTip.showText(self.mapToGlobal(QtCore.QPoint( self.sizeHint().width(), top)), tooltip, self) Turing-0.11-beta/pyqode/core/panels/encodings.py 0000664 0000000 0000000 00000017675 13314727572 0021705 0 ustar 00root root 0000000 0000000 """ Contains a panel to manage unicode decoding/encoding errors. """ from pyqode.core.api.panel import Panel from pyqode.core.api.decoration import TextDecoration from pyqode.qt import QtCore, QtGui, QtWidgets class EncodingPanel(Panel): """ Displays a warning when an encoding error occured and let you reload. This panel display a warning in case encoding/decoding error and give the user the possibility to try out another encoding, to edit any way or to close the editor. The panel is automatically shown by :class:`pyqode.core.managers.FileManager` in case of error so that you don't have to worry about encoding issues. The only think you might do is to provide to your user a way to specify the default encoding, i.e. the one that is tried before showing this panel. The panel is a simple widget with a label describing the error, an encoding menu and 3 buttons: ``Retry``, ``Edit`` anyway and ``Cancel``. It is strongly inspired by the GEdit encoding panel. You can change the background color and the label foreground color by setting up the ``color`` and ``foreground`` properties. It's up to the client code to handle cancel requests. To do that simply connect ``cancel_requested`` signal to remove the editor from your application. """ #: Signal emitted when the user pressed on cancel. It is up to the client #: code to handle this event. cancel_requested = QtCore.Signal(object) _description = ('%s' '
' 'The file you opened has some invalid characters. ' 'If you continue editing this file you could corrupt this ' 'document. You can also choose another character encoding ' 'and try again.
') @property def color(self): """ Returns the panel color. """ return self._color @color.setter def color(self, value): self._color = value self._refresh_stylesheet() if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._refresh_stylesheet() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def _refresh_stylesheet(self): try: self._lbl_stylesheet = ('color: %s;background: %s' % (self._foreground.name(), self._color.name())) for lbl in self._labels: lbl.setStyleSheet(self._lbl_stylesheet) except AttributeError: pass def __init__(self, add_context_menu=True): super(EncodingPanel, self).__init__(dynamic=True) # leave it here otherwise you will have circular import errors from pyqode.core._forms.pnl_encoding_ui import Ui_Form self.ui = Ui_Form() self.ui.setupUi(self) self.__add_ctx_mnu = add_context_menu self._labels = [self.ui.label, self.ui.lblDescription] self._color = None self.color = QtGui.QColor('#8AADD4') self._foreground = None self.foreground = QtGui.QColor('#FFFFFF') self._deco = None self.ui.pushButtonRetry.clicked.connect(self._reload) self.ui.pushButtonEdit.clicked.connect(self._edit_anyway) self.ui.pushButtonCancel.clicked.connect(self.cancel) self.hide() def enable_caret_line(self, value=True): try: from pyqode.core.modes import CaretLineHighlighterMode mode = self.editor.modes.get(CaretLineHighlighterMode) except KeyError: pass else: mode.enabled = value def on_open_failed(self, path, encoding): self.enable_caret_line(False) self.ui.comboBoxEncodings.current_encoding = encoding self.ui.lblDescription.setText( self._description % (_('There was a problem opening the file %r') % path)) # load text as binary and mark it as red, user might make use the # binary to recognize the original encoding try: with open(path, 'rb') as file: content = str(file.read(16)) except OSError: content = '' # set plain text self.editor.setPlainText( content, self.editor.file.get_mimetype(path), self.editor.file.encoding) self.editor.setDocumentTitle(self.editor.file.name) self.editor.setWindowTitle(self.editor.file.name) # Delay because the editor might not have been shown yet QtCore.QTimer.singleShot(1, self.show) def show(self): super(EncodingPanel, self).show() self.editor.selectAll() self._deco = TextDecoration(self.editor.textCursor()) self._deco.set_background(QtCore.Qt.red) self._deco.set_foreground(QtCore.Qt.black) self.editor.decorations.append(self._deco) cursor = self.editor.textCursor() cursor.clearSelection() cursor.setPosition(0) self.editor.setTextCursor(cursor) self.editor.setReadOnly(True) def paintEvent(self, event): """ Fills the panel background. """ super(EncodingPanel, self).paintEvent(event) if self.isVisible(): # fill background painter = QtGui.QPainter(self) self._background_brush = QtGui.QBrush(self._color) painter.fillRect(event.rect(), self._background_brush) def on_install(self, editor): super(EncodingPanel, self).on_install(editor) if self.__add_ctx_mnu: # add context menu from pyqode.core.widgets import EncodingsContextMenu EncodingsContextMenu(parent=editor) def _reload(self): self.hide() self._rm_deco() self.editor.setReadOnly(False) self.enable_caret_line(True) self.editor.file.reload(self.ui.comboBoxEncodings.current_encoding) def _edit_anyway(self): self._rm_deco() self.editor.setReadOnly(False) self.enable_caret_line(True) self.hide() def _rm_deco(self): if self._deco: self.editor.decorations.remove(self._deco) self._deco = None def cancel(self): if self.sender(): self.editor.clear() self.close_panel() def close_panel(self): self._rm_deco() self.enable_caret_line(True) self.cancel_requested.emit(self.editor) self.hide() def clone_settings(self, original): self.color = original.color self.foreground = original.foreground if __name__ == '__main__': import locale import sys from pyqode.core.api import CodeEdit def simulate_open(): pnl.on_open_failed(__file__, locale.getpreferredencoding()) def simulate_save(): pnl.on_save_failed(__file__, locale.getpreferredencoding()) app = QtWidgets.QApplication(sys.argv) # app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) edit = CodeEdit() edit.setMinimumSize(800, 600) edit.file.open(__file__) pnl = EncodingPanel() edit.panels.append(pnl, pnl.Position.TOP) edit.show() simulate_open() QtCore.QTimer.singleShot(5000, simulate_save) app.exec_() Turing-0.11-beta/pyqode/core/panels/folding.py 0000664 0000000 0000000 00000076416 13314727572 0021354 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the marker panel """ import logging import os import sys from pyqode.core.api import TextBlockHelper, folding, TextDecoration, \ DelayJobRunner from pyqode.core.api.folding import FoldScope from pyqode.core.api.panel import Panel from pyqode.qt import QtCore, QtWidgets, QtGui, PYQT5_API from pyqode.core.api.utils import TextHelper, drift_color, keep_tc_pos def _logger(): """ Gets module's logger """ return logging.getLogger(__name__) class FoldingPanel(Panel): """ Displays the document outline and lets the user collapse/expand blocks. The data represented by the panel come from the text block user state and is set by the SyntaxHighlighter mode. The panel does not expose any function that you can use directly. To interact with the fold tree, you need to modify text block fold level or trigger state using :class:`pyqode.core.api.utils.TextBlockHelper` or :mod:`pyqode.core.api.folding` """ #: signal emitted when a fold trigger state has changed, parameters are #: the concerned text block and the new state (collapsed or not). trigger_state_changed = QtCore.Signal(QtGui.QTextBlock, bool) collapse_all_triggered = QtCore.Signal() expand_all_triggered = QtCore.Signal() @property def native_look(self): """ Defines whether the panel will use native indicator icons and color or use custom one. If you want to use custom indicator icons and color, you must first set this flag to False. """ return self._native @native_look.setter def native_look(self, value): self._native = value # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).native_look = value except KeyError: # this should never happen since we're working with clones pass @property def custom_indicators_icons(self): """ Gets/sets the custom icon for the fold indicators. The list of indicators is interpreted as follow:: (COLLAPSED_OFF, COLLAPSED_ON, EXPANDED_OFF, EXPANDED_ON) To use this property you must first set `native_look` to False. :returns: tuple(str, str, str, str) """ return self._custom_indicators @custom_indicators_icons.setter def custom_indicators_icons(self, value): if len(value) != 4: raise ValueError('The list of custom indicators must contains 4 ' 'strings') self._custom_indicators = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get( self.__class__).custom_indicators_icons = value except KeyError: # this should never happen since we're working with clones pass @property def custom_fold_region_background(self): """ Custom base color for the fold region background :return: QColor """ return self._custom_color @custom_fold_region_background.setter def custom_fold_region_background(self, value): self._custom_color = value # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get( self.__class__).custom_fold_region_background = value except KeyError: # this should never happen since we're working with clones pass @property def highlight_caret_scope(self): """ True to highlight the caret scope automatically. (Similar to the ``Highlight blocks in Qt Creator``. Default is False. """ return self._highlight_caret @highlight_caret_scope.setter def highlight_caret_scope(self, value): if value != self._highlight_caret: self._highlight_caret = value if self.editor: if value: self._block_nbr = -1 self.editor.cursorPositionChanged.connect( self._highlight_caret_scope) else: self._block_nbr = -1 self.editor.cursorPositionChanged.disconnect( self._highlight_caret_scope) for clone in self.editor.clones: try: clone.modes.get( self.__class__).highlight_caret_scope = value except KeyError: # this should never happen since we're working with # clones pass def __init__(self, highlight_caret_scope=False): Panel.__init__(self) self._native = True self._custom_indicators = ( ':/pyqode-icons/rc/arrow_right_off.png', ':/pyqode-icons/rc/arrow_right_on.png', ':/pyqode-icons/rc/arrow_down_off.png', ':/pyqode-icons/rc/arrow_down_on.png' ) self._custom_color = QtGui.QColor('gray') self._block_nbr = -1 self._highlight_caret = False self.highlight_caret_scope = highlight_caret_scope self._indic_size = 16 #: the list of deco used to highlight the current fold region ( #: surrounding regions are darker) self._scope_decos = [] #: the list of folded blocs decorations self._block_decos = [] self.setMouseTracking(True) self.scrollable = True self._mouse_over_line = None self._current_scope = None self._prev_cursor = None self.context_menu = None self.action_collapse = None self.action_expand = None self.action_collapse_all = None self.action_expand_all = None self._original_background = None self._highlight_runner = DelayJobRunner(delay=250) def on_install(self, editor): """ Add the folding menu to the editor, on install. :param editor: editor instance on which the mode has been installed to. """ super(FoldingPanel, self).on_install(editor) self.context_menu = QtWidgets.QMenu(_('Folding'), self.editor) action = self.action_collapse = QtWidgets.QAction( _('Collapse'), self.context_menu) action.setShortcut('Shift+-') action.triggered.connect(self._on_action_toggle) self.context_menu.addAction(action) action = self.action_expand = QtWidgets.QAction(_('Expand'), self.context_menu) action.setShortcut('Shift++') action.triggered.connect(self._on_action_toggle) self.context_menu.addAction(action) self.context_menu.addSeparator() action = self.action_collapse_all = QtWidgets.QAction( _('Collapse all'), self.context_menu) action.setShortcut('Ctrl+Shift+-') action.triggered.connect(self._on_action_collapse_all_triggered) self.context_menu.addAction(action) action = self.action_expand_all = QtWidgets.QAction( _('Expand all'), self.context_menu) action.setShortcut('Ctrl+Shift++') action.triggered.connect(self._on_action_expand_all_triggered) self.context_menu.addAction(action) self.editor.add_menu(self.context_menu) def sizeHint(self): """ Returns the widget size hint (based on the editor font size) """ fm = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(fm.height(), fm.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def paintEvent(self, event): # Paints the fold indicators and the possible fold region background # on the folding panel. super(FoldingPanel, self).paintEvent(event) painter = QtGui.QPainter(self) # Draw background over the selected non collapsed fold region if self._mouse_over_line is not None: block = self.editor.document().findBlockByNumber( self._mouse_over_line) try: self._draw_fold_region_background(block, painter) except ValueError: pass # Draw fold triggers for top_position, line_number, block in self.editor.visible_blocks: if TextBlockHelper.is_fold_trigger(block): collapsed = TextBlockHelper.is_collapsed(block) mouse_over = self._mouse_over_line == line_number self._draw_fold_indicator( top_position, mouse_over, collapsed, painter) if collapsed: # check if the block already has a decoration, it might # have been folded by the parent editor/document in the # case of cloned editor for deco in self._block_decos: if deco.block == block: # no need to add a deco, just go to the next block break else: self._add_fold_decoration(block, FoldScope(block)) else: for deco in self._block_decos: # check if the block decoration has been removed, it # might have been unfolded by the parent # editor/document in the case of cloned editor if deco.block == block: # remove it and self._block_decos.remove(deco) self.editor.decorations.remove(deco) del deco break def _draw_fold_region_background(self, block, painter): """ Draw the fold region when the mouse is over and non collapsed indicator. :param top: Top position :param block: Current block. :param painter: QPainter """ r = folding.FoldScope(block) th = TextHelper(self.editor) start, end = r.get_range(ignore_blank_lines=True) if start > 0: top = th.line_pos_from_number(start) else: top = 0 bottom = th.line_pos_from_number(end + 1) h = bottom - top if h == 0: h = self.sizeHint().height() w = self.sizeHint().width() self._draw_rect(QtCore.QRectF(0, top, w, h), painter) def _draw_rect(self, rect, painter): """ Draw the background rectangle using the current style primitive color or foldIndicatorBackground if nativeFoldingIndicator is true. :param rect: The fold zone rect to draw :param painter: The widget's painter. """ c = self._custom_color if self._native: c = self.get_system_bck_color() grad = QtGui.QLinearGradient(rect.topLeft(), rect.topRight()) if sys.platform == 'darwin': grad.setColorAt(0, c.lighter(100)) grad.setColorAt(1, c.lighter(110)) outline = c.darker(110) else: grad.setColorAt(0, c.lighter(110)) grad.setColorAt(1, c.lighter(130)) outline = c.darker(100) painter.fillRect(rect, grad) painter.setPen(QtGui.QPen(outline)) painter.drawLine(rect.topLeft() + QtCore.QPointF(1, 0), rect.topRight() - QtCore.QPointF(1, 0)) painter.drawLine(rect.bottomLeft() + QtCore.QPointF(1, 0), rect.bottomRight() - QtCore.QPointF(1, 0)) painter.drawLine(rect.topRight() + QtCore.QPointF(0, 1), rect.bottomRight() - QtCore.QPointF(0, 1)) painter.drawLine(rect.topLeft() + QtCore.QPointF(0, 1), rect.bottomLeft() - QtCore.QPointF(0, 1)) @staticmethod def get_system_bck_color(): """ Gets a system color for drawing the fold scope background. """ def merged_colors(colorA, colorB, factor): maxFactor = 100 colorA = QtGui.QColor(colorA) colorB = QtGui.QColor(colorB) tmp = colorA tmp.setRed((tmp.red() * factor) / maxFactor + (colorB.red() * (maxFactor - factor)) / maxFactor) tmp.setGreen((tmp.green() * factor) / maxFactor + (colorB.green() * (maxFactor - factor)) / maxFactor) tmp.setBlue((tmp.blue() * factor) / maxFactor + (colorB.blue() * (maxFactor - factor)) / maxFactor) return tmp pal = QtWidgets.QApplication.instance().palette() b = pal.window().color() h = pal.highlight().color() return merged_colors(b, h, 50) def _draw_fold_indicator(self, top, mouse_over, collapsed, painter): """ Draw the fold indicator/trigger (arrow). :param top: Top position :param mouse_over: Whether the mouse is over the indicator :param collapsed: Whether the trigger is collapsed or not. :param painter: QPainter """ rect = QtCore.QRect(0, top, self.sizeHint().width(), self.sizeHint().height()) if self._native: if os.environ['QT_API'].lower() not in PYQT5_API: opt = QtGui.QStyleOptionViewItemV2() else: opt = QtWidgets.QStyleOptionViewItem() opt.rect = rect opt.state = (QtWidgets.QStyle.State_Active | QtWidgets.QStyle.State_Item | QtWidgets.QStyle.State_Children) if not collapsed: opt.state |= QtWidgets.QStyle.State_Open if mouse_over: opt.state |= (QtWidgets.QStyle.State_MouseOver | QtWidgets.QStyle.State_Enabled | QtWidgets.QStyle.State_Selected) opt.palette.setBrush(QtGui.QPalette.Window, self.palette().highlight()) opt.rect.translate(-2, 0) self.style().drawPrimitive(QtWidgets.QStyle.PE_IndicatorBranch, opt, painter, self) else: index = 0 if not collapsed: index = 2 if mouse_over: index += 1 QtGui.QIcon(self._custom_indicators[index]).paint(painter, rect) @staticmethod def find_parent_scope(block): """ Find parent scope, if the block is not a fold trigger. """ original = block if not TextBlockHelper.is_fold_trigger(block): # search level of next non blank line while block.text().strip() == '' and block.isValid(): block = block.next() ref_lvl = TextBlockHelper.get_fold_lvl(block) - 1 block = original while (block.blockNumber() and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): block = block.previous() return block def _clear_scope_decos(self): """ Clear scope decorations (on the editor) """ for deco in self._scope_decos: self.editor.decorations.remove(deco) self._scope_decos[:] = [] def _get_scope_highlight_color(self): """ Gets the base scope highlight color (derivated from the editor background) """ color = self.editor.background if color.lightness() < 128: color = drift_color(color, 130) else: color = drift_color(color, 105) return color def _add_scope_deco(self, start, end, parent_start, parent_end, base_color, factor): """ Adds a scope decoration that enclose the current scope :param start: Start of the current scope :param end: End of the current scope :param parent_start: Start of the parent scope :param parent_end: End of the parent scope :param base_color: base color for scope decoration :param factor: color factor to apply on the base color (to make it darker). """ color = drift_color(base_color, factor=factor) # upper part if start > 0: d = TextDecoration(self.editor.document(), start_line=parent_start, end_line=start) d.set_full_width(True, clear=False) d.draw_order = 2 d.set_background(color) self.editor.decorations.append(d) self._scope_decos.append(d) # lower part if end <= self.editor.document().blockCount(): d = TextDecoration(self.editor.document(), start_line=end, end_line=parent_end + 1) d.set_full_width(True, clear=False) d.draw_order = 2 d.set_background(color) self.editor.decorations.append(d) self._scope_decos.append(d) def _add_scope_decorations(self, block, start, end): """ Show a scope decoration on the editor widget :param start: Start line :param end: End line """ try: parent = FoldScope(block).parent() except ValueError: parent = None if TextBlockHelper.is_fold_trigger(block): base_color = self._get_scope_highlight_color() factor_step = 5 if base_color.lightness() < 128: factor_step = 10 factor = 70 else: factor = 100 while parent: # highlight parent scope parent_start, parent_end = parent.get_range() self._add_scope_deco( start, end + 1, parent_start, parent_end, base_color, factor) # next parent scope start = parent_start end = parent_end parent = parent.parent() factor += factor_step # global scope parent_start = 0 parent_end = self.editor.document().blockCount() self._add_scope_deco( start, end + 1, parent_start, parent_end, base_color, factor + factor_step) else: self._clear_scope_decos() def _highlight_surrounding_scopes(self, block): """ Highlights the scopes surrounding the current fold scope. :param block: Block that starts the current fold scope. """ scope = FoldScope(block) if (self._current_scope is None or self._current_scope.get_range() != scope.get_range()): self._current_scope = scope self._clear_scope_decos() # highlight surrounding parent scopes with a darker color start, end = scope.get_range() if not TextBlockHelper.is_collapsed(block): self._add_scope_decorations(block, start, end) def mouseMoveEvent(self, event): """ Detect mouser over indicator and highlight the current scope in the editor (up and down decoration arround the foldable text when the mouse is over an indicator). :param event: event """ super(FoldingPanel, self).mouseMoveEvent(event) th = TextHelper(self.editor) line = th.line_nbr_from_position(event.pos().y()) if line >= 0: block = FoldScope.find_parent_scope( self.editor.document().findBlockByNumber(line)) if TextBlockHelper.is_fold_trigger(block): if self._mouse_over_line is None: # mouse enter fold scope QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.PointingHandCursor)) if self._mouse_over_line != block.blockNumber() and \ self._mouse_over_line is not None: # fold scope changed, a previous block was highlighter so # we quickly update our highlighting self._mouse_over_line = block.blockNumber() self._highlight_surrounding_scopes(block) else: # same fold scope, request highlight self._mouse_over_line = block.blockNumber() self._highlight_runner.request_job( self._highlight_surrounding_scopes, block) self._highight_block = block else: # no fold scope to highlight, cancel any pending requests self._highlight_runner.cancel_requests() self._mouse_over_line = None QtWidgets.QApplication.restoreOverrideCursor() self.repaint() def leaveEvent(self, event): """ Removes scope decorations and background from the editor and the panel if highlight_caret_scope, else simply update the scope decorations to match the caret scope. """ super(FoldingPanel, self).leaveEvent(event) QtWidgets.QApplication.restoreOverrideCursor() self._highlight_runner.cancel_requests() if not self.highlight_caret_scope: self._clear_scope_decos() self._mouse_over_line = None self._current_scope = None else: self._block_nbr = -1 self._highlight_caret_scope() self.editor.repaint() def _add_fold_decoration(self, block, region): """ Add fold decorations (boxes arround a folded block in the editor widget). """ deco = TextDecoration(block) deco.signals.clicked.connect(self._on_fold_deco_clicked) deco.tooltip = region.text(max_lines=25) deco.draw_order = 1 deco.block = block deco.select_line() deco.set_outline(drift_color( self._get_scope_highlight_color(), 110)) deco.set_background(self._get_scope_highlight_color()) deco.set_foreground(QtGui.QColor('#808080')) self._block_decos.append(deco) self.editor.decorations.append(deco) def toggle_fold_trigger(self, block): """ Toggle a fold trigger block (expand or collapse it). :param block: The QTextBlock to expand/collapse """ if not TextBlockHelper.is_fold_trigger(block): return region = FoldScope(block) if region.collapsed: region.unfold() if self._mouse_over_line is not None: self._add_scope_decorations( region._trigger, *region.get_range()) else: region.fold() self._clear_scope_decos() self._refresh_editor_and_scrollbars() self.trigger_state_changed.emit(region._trigger, region.collapsed) def mousePressEvent(self, event): """ Folds/unfolds the pressed indicator if any. """ if self._mouse_over_line is not None: block = self.editor.document().findBlockByNumber( self._mouse_over_line) self.toggle_fold_trigger(block) def _on_fold_deco_clicked(self, deco): """ Unfold a folded block that has just been clicked by the user """ self.toggle_fold_trigger(deco.block) def on_state_changed(self, state): """ On state changed we (dis)connect to the cursorPositionChanged signal """ if state: self.editor.key_pressed.connect(self._on_key_pressed) if self._highlight_caret: self.editor.cursorPositionChanged.connect( self._highlight_caret_scope) self._block_nbr = -1 self.editor.new_text_set.connect(self._clear_block_deco) else: self.editor.key_pressed.disconnect(self._on_key_pressed) if self._highlight_caret: self.editor.cursorPositionChanged.disconnect( self._highlight_caret_scope) self._block_nbr = -1 self.editor.new_text_set.disconnect(self._clear_block_deco) def _on_key_pressed(self, event): """ Override key press to select the current scope if the user wants to deleted a folded scope (without selecting it). """ delete_request = event.key() in [QtCore.Qt.Key_Backspace, QtCore.Qt.Key_Delete] if event.text() or delete_request: cursor = self.editor.textCursor() if cursor.hasSelection(): # change selection to encompass the whole scope. positions_to_check = cursor.selectionStart(), cursor.selectionEnd() else: positions_to_check = (cursor.position(), ) for pos in positions_to_check: block = self.editor.document().findBlock(pos) th = TextBlockHelper() if th.is_fold_trigger(block) and th.is_collapsed(block): self.toggle_fold_trigger(block) if delete_request and cursor.hasSelection(): scope = FoldScope(self.find_parent_scope(block)) tc = TextHelper(self.editor).select_lines(*scope.get_range()) if tc.selectionStart() > cursor.selectionStart(): start = cursor.selectionStart() else: start = tc.selectionStart() if tc.selectionEnd() < cursor.selectionEnd(): end = cursor.selectionEnd() else: end = tc.selectionEnd() tc.setPosition(start) tc.setPosition(end, tc.KeepAnchor) self.editor.setTextCursor(tc) @staticmethod def _show_previous_blank_lines(block): """ Show the block previous blank lines """ # set previous blank lines visibles pblock = block.previous() while (pblock.text().strip() == '' and pblock.blockNumber() >= 0): pblock.setVisible(True) pblock = pblock.previous() def refresh_decorations(self, force=False): """ Refresh decorations colors. This function is called by the syntax highlighter when the style changed so that we may update our decorations colors according to the new style. """ cursor = self.editor.textCursor() if (self._prev_cursor is None or force or self._prev_cursor.blockNumber() != cursor.blockNumber()): for deco in self._block_decos: self.editor.decorations.remove(deco) for deco in self._block_decos: deco.set_outline(drift_color( self._get_scope_highlight_color(), 110)) deco.set_background(self._get_scope_highlight_color()) self.editor.decorations.append(deco) self._prev_cursor = cursor def _refresh_editor_and_scrollbars(self): """ Refrehes editor content and scollbars. We generate a fake resize event to refresh scroll bar. We have the same problem as described here: http://www.qtcentre.org/threads/44803 and we apply the same solution (don't worry, there is no visual effect, the editor does not grow up at all, even with a value = 500) """ TextHelper(self.editor).mark_whole_doc_dirty() self.editor.repaint() s = self.editor.size() s.setWidth(s.width() + 1) self.editor.resizeEvent(QtGui.QResizeEvent(self.editor.size(), s)) def collapse_all(self): """ Collapses all triggers and makes all blocks with fold level > 0 invisible. """ self._clear_block_deco() block = self.editor.document().firstBlock() last = self.editor.document().lastBlock() while block.isValid(): lvl = TextBlockHelper.get_fold_lvl(block) trigger = TextBlockHelper.is_fold_trigger(block) if trigger: if lvl == 0: self._show_previous_blank_lines(block) TextBlockHelper.set_collapsed(block, True) block.setVisible(lvl == 0) if block == last and block.text().strip() == '': block.setVisible(True) self._show_previous_blank_lines(block) block = block.next() self._refresh_editor_and_scrollbars() tc = self.editor.textCursor() tc.movePosition(tc.Start) self.editor.setTextCursor(tc) self.collapse_all_triggered.emit() def _clear_block_deco(self): """ Clear the folded block decorations. """ for deco in self._block_decos: self.editor.decorations.remove(deco) self._block_decos[:] = [] def expand_all(self): """ Expands all fold triggers. """ block = self.editor.document().firstBlock() while block.isValid(): TextBlockHelper.set_collapsed(block, False) block.setVisible(True) block = block.next() self._clear_block_deco() self._refresh_editor_and_scrollbars() self.expand_all_triggered.emit() def _on_action_toggle(self): """ Toggle the current fold trigger. """ block = FoldScope.find_parent_scope(self.editor.textCursor().block()) self.toggle_fold_trigger(block) def _on_action_collapse_all_triggered(self): """ Closes all top levels fold triggers recursively """ self.collapse_all() def _on_action_expand_all_triggered(self): """ Expands all fold triggers :return: """ self.expand_all() def _highlight_caret_scope(self): """ Highlight the scope surrounding the current caret position. This get called only if :attr:` pyqode.core.panels.FoldingPanel.highlight_care_scope` is True. """ cursor = self.editor.textCursor() block_nbr = cursor.blockNumber() if self._block_nbr != block_nbr: block = FoldScope.find_parent_scope( self.editor.textCursor().block()) try: s = FoldScope(block) except ValueError: self._clear_scope_decos() else: self._mouse_over_line = block.blockNumber() if TextBlockHelper.is_fold_trigger(block): self._highlight_surrounding_scopes(block) self._block_nbr = block_nbr def clone_settings(self, original): self.native_look = original.native_look self.custom_indicators_icons = original.custom_indicators_icons self.highlight_caret_scope = original.highlight_caret_scope self.custom_fold_region_background = \ original.custom_fold_region_background Turing-0.11-beta/pyqode/core/panels/global_checker.py 0000664 0000000 0000000 00000006561 13314727572 0022650 0 ustar 00root root 0000000 0000000 """ This module contains the GlobalCheckerPanel. """ from pyqode.core import modes from pyqode.core.api import Panel, TextHelper from pyqode.qt import QtCore, QtGui class GlobalCheckerPanel(Panel): """ Displays all checker messages found in the document. The user can click on a marker to quickly go the the error line. """ def __init__(self): super(GlobalCheckerPanel, self).__init__() self.scrollable = True def _draw_messages(self, painter): """ Draw messages from all subclass of CheckerMode currently installed on the editor. :type painter: QtGui.QPainter """ checker_modes = [] for m in self.editor.modes: if isinstance(m, modes.CheckerMode): checker_modes.append(m) for checker_mode in checker_modes: for msg in checker_mode.messages: block = msg.block color = QtGui.QColor(msg.color) brush = QtGui.QBrush(color) rect = QtCore.QRect() rect.setX(self.sizeHint().width() / 4) rect.setY(block.blockNumber() * self.get_marker_height()) rect.setSize(self.get_marker_size()) painter.fillRect(rect, brush) def _draw_visible_area(self, painter): """ Draw the visible area. This method does not take folded blocks into account. :type painter: QtGui.QPainter """ if self.editor.visible_blocks: start = self.editor.visible_blocks[0][-1] end = self.editor.visible_blocks[-1][-1] rect = QtCore.QRect() rect.setX(0) rect.setY(start.blockNumber() * self.get_marker_height()) rect.setWidth(self.sizeHint().width()) rect.setBottom(end.blockNumber() * self.get_marker_height()) if self.editor.background.lightness() < 128: c = self.editor.background.darker(150) else: c = self.editor.background.darker(110) c.setAlpha(128) painter.fillRect(rect, c) def paintEvent(self, event): """ Pains the messages and the visible area on the panel. :param event: paint event infos """ if self.isVisible(): # fill background self._background_brush = QtGui.QBrush(self.editor.background) painter = QtGui.QPainter(self) painter.fillRect(event.rect(), self._background_brush) self._draw_messages(painter) self._draw_visible_area(painter) def sizeHint(self): """ The panel has a fixed width of 8 pixels. """ return QtCore.QSize(12, 16) def get_marker_height(self): """ Gets the height of message marker. """ return self.editor.viewport().height() / TextHelper( self.editor).line_count() def get_marker_size(self): """ Gets the size of a message marker. :return: QSize """ h = self.get_marker_height() if h < 1: h = 1 return QtCore.QSize(self.sizeHint().width() / 2, h) def mousePressEvent(self, event): # Moves the editor text cursor to the clicked line. height = event.pos().y() line = height // self.get_marker_height() TextHelper(self.editor).goto_line(line) Turing-0.11-beta/pyqode/core/panels/line_number.py 0000664 0000000 0000000 00000010160 13314727572 0022211 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the line number panel """ from pyqode.core.api.panel import Panel from pyqode.core.api.utils import drift_color, TextHelper from pyqode.qt import QtCore, QtGui class LineNumberPanel(Panel): """ Displays the document line numbers. """ def __init__(self): Panel.__init__(self) self.scrollable = True self._selecting = False self._start_line = -1 self._sel_start = -1 self._line_color_u = self.palette().color( QtGui.QPalette.Disabled, QtGui.QPalette.WindowText) self._line_color_s = self.palette().color( QtGui.QPalette.Normal, QtGui.QPalette.WindowText) def sizeHint(self): """ Returns the panel size hint (as the panel is on the left, we only need to compute the width """ return QtCore.QSize(self.line_number_area_width(), 50) def line_number_area_width(self): """ Computes the lineNumber area width depending on the number of lines in the document :return: Widtg """ digits = 1 count = max(1, self.editor.blockCount()) while count >= 10: count /= 10 digits += 1 space = 5 + self.editor.fontMetrics().width("9") * digits return space def mousePressEvent(self, e): """ Starts selecting """ self._selecting = True self._sel_start = e.pos().y() start = end = TextHelper(self.editor).line_nbr_from_position( self._sel_start) self._start_line = start TextHelper(self.editor).select_lines(start, end) def cancel_selection(self): """ Cancels line selection. """ self._selecting = False self._sel_start = -1 def mouseReleaseEvent(self, event): # Cancels selection self.cancel_selection() # def leaveEvent(self, event): # # Cancels selection # self.cancel_selection() def mouseMoveEvent(self, e): # Updates end of selection if we are currently selecting if self._selecting: end_pos = e.pos().y() end_line = TextHelper(self.editor).line_nbr_from_position( end_pos) if end_line == -1 and self.editor.visible_blocks: # take last visible block if end_pos < 50: _, end_line, _ = self.editor.visible_blocks[0] end_line -= 1 else: _, end_line, _ = self.editor.visible_blocks[-1] end_line += 1 TextHelper(self.editor).select_lines(self._start_line, end_line) def paintEvent(self, event): # Paints the line numbers self._line_color_u = drift_color(self._background_brush.color(), 250) self._line_color_s = drift_color(self._background_brush.color(), 280) Panel.paintEvent(self, event) if self.isVisible(): painter = QtGui.QPainter(self) # get style options (font, size) width = self.width() height = self.editor.fontMetrics().height() font = self.editor.font() bold_font = self.editor.font() bold_font.setBold(True) pen = QtGui.QPen(self._line_color_u) pen_selected = QtGui.QPen(self._line_color_s) painter.setFont(font) # get selection range sel_start, sel_end = TextHelper(self.editor).selection_range() has_sel = sel_start != sel_end cl = TextHelper(self.editor).current_line_nbr() # draw every visible blocks for top, line, block in self.editor.visible_blocks: if ((has_sel and sel_start <= line <= sel_end) or (not has_sel and cl == line)): painter.setPen(pen_selected) painter.setFont(bold_font) else: painter.setPen(pen) painter.setFont(font) painter.drawText(-3, top, width, height, QtCore.Qt.AlignRight, str(line + 1)) Turing-0.11-beta/pyqode/core/panels/marker.py 0000664 0000000 0000000 00000017525 13314727572 0021207 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the marker panel """ import logging from pyqode.core.api import TextDecoration from pyqode.core.api.panel import Panel from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.qt import QtCore, QtWidgets, QtGui def _logger(): """ Gets module's logger """ return logging.getLogger(__name__) class Marker(QtCore.QObject): """ A marker is an icon draw on a marker panel at a specific line position and with a possible tooltip. """ @property def position(self): """ Gets the marker position (line number) :type: int """ try: return self.block.blockNumber() except AttributeError: return self._position # not added yet @property def icon(self): """ Gets the icon file name. Read-only. """ if isinstance(self._icon, str): if QtGui.QIcon.hasThemeIcon(self._icon): return QtGui.QIcon.fromTheme(self._icon) else: return QtGui.QIcon(self._icon) elif isinstance(self._icon, tuple): return QtGui.QIcon.fromTheme(self._icon[0], QtGui.QIcon(self._icon[1])) elif isinstance(self._icon, QtGui.QIcon): return self._icon return QtGui.QIcon() @property def description(self): """ Gets the marker description. """ return self._description def __init__(self, position, icon="", description="", parent=None): """ :param position: The marker position/line number. :type position: int :param icon: The icon to display :type icon: QtGui.QIcon :param parent: The optional parent object. :type parent: QtCore.QObject or None """ QtCore.QObject.__init__(self, parent) #: The position of the marker (line number) self._position = position self._icon = icon self._description = description class MarkerPanel(Panel): """ General purpose marker panel. This panels takes care of drawing icons at a specific line number. Use addMarker, removeMarker and clearMarkers to manage the collection of displayed makers. You can create a user editable panel (e.g. a breakpoints panel) by using the following signals: - :attr:`pyqode.core.panels.MarkerPanel.add_marker_requested` - :attr:`pyqode.core.panels.MarkerPanel.remove_marker_requested` """ #: Signal emitted when the user clicked in a place where there is no #: marker. add_marker_requested = QtCore.Signal(int) #: Signal emitted when the user right clicked on an existing marker. edit_marker_requested = QtCore.Signal(int) #: Signal emitted when the user left clicked on an existing marker. remove_marker_requested = QtCore.Signal(int) @property def background(self): """ Marker background color in editor. Use None if no text decoration should be used. """ return self._background @background.setter def background(self, value): self._background = value def __init__(self): Panel.__init__(self) self._background = QtGui.QColor('#FFC8C8') self._markers = [] self._icons = {} self._previous_line = -1 self.scrollable = True self._job_runner = DelayJobRunner(delay=100) self.setMouseTracking(True) self._to_remove = [] @property def markers(self): """ Gets all markers. """ return self._markers def add_marker(self, marker): """ Adds the marker to the panel. :param marker: Marker to add :type marker: pyqode.core.modes.Marker """ self._markers.append(marker) doc = self.editor.document() assert isinstance(doc, QtGui.QTextDocument) block = doc.findBlockByLineNumber(marker._position) marker.block = block d = TextDecoration(block) d.set_full_width() if self._background: d.set_background(QtGui.QBrush(self._background)) marker.decoration = d self.editor.decorations.append(d) self.repaint() def remove_marker(self, marker): """ Removes a marker from the panel :param marker: Marker to remove :type marker: pyqode.core.Marker """ self._markers.remove(marker) self._to_remove.append(marker) if hasattr(marker, 'decoration'): self.editor.decorations.remove(marker.decoration) self.repaint() def clear_markers(self): """ Clears the markers list """ while len(self._markers): self.remove_marker(self._markers[0]) def marker_for_line(self, line): """ Returns the marker that is displayed at the specified line number if any. :param line: The marker line. :return: Marker of None :rtype: pyqode.core.Marker """ markers = [] for marker in self._markers: if line == marker.position: markers.append(marker) return markers def sizeHint(self): """ Returns the panel size hint. (fixed with of 16px) """ metrics = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(metrics.height(), metrics.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def paintEvent(self, event): Panel.paintEvent(self, event) painter = QtGui.QPainter(self) for top, block_nbr, block in self.editor.visible_blocks: for marker in self._markers: if marker.block == block and marker.icon: rect = QtCore.QRect() rect.setX(0) rect.setY(top) rect.setWidth(self.sizeHint().width()) rect.setHeight(self.sizeHint().height()) marker.icon.paint(painter, rect) def mousePressEvent(self, event): # Handle mouse press: # - emit add marker signal if there were no marker under the mouse # cursor # - emit remove marker signal if there were one or more markers under # the mouse cursor. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) if self.marker_for_line(line): if event.button() == QtCore.Qt.LeftButton: self.remove_marker_requested.emit(line) else: self.edit_marker_requested.emit(line) else: self.add_marker_requested.emit(line) def mouseMoveEvent(self, event): # Requests a tooltip if the cursor is currently over a marker. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) markers = self.marker_for_line(line) text = '\n'.join([marker.description for marker in markers if marker.description]) if len(markers): if self._previous_line != line: top = TextHelper(self.editor).line_pos_from_number( markers[0].position) if top: self._job_runner.request_job(self._display_tooltip, text, top) else: self._job_runner.cancel_requests() self._previous_line = line def leaveEvent(self, *args, **kwargs): """ Hide tooltip when leaving the panel region. """ QtWidgets.QToolTip.hideText() self._previous_line = -1 def _display_tooltip(self, tooltip, top): """ Display tooltip at the specified top position. """ QtWidgets.QToolTip.showText(self.mapToGlobal(QtCore.QPoint( self.sizeHint().width(), top)), tooltip, self) Turing-0.11-beta/pyqode/core/panels/read_only.py 0000664 0000000 0000000 00000005023 13314727572 0021670 0 ustar 00root root 0000000 0000000 """ Contains a panel to manage unicode decoding/encoding errors. """ from pyqode.core.api.panel import Panel from pyqode.core.api.decoration import TextDecoration from pyqode.qt import QtCore, QtGui, QtWidgets class ReadOnlyPanel(Panel): """ Displays a message if the opened file is read-only """ @property def color(self): """ Returns the panel color. """ return self._color @color.setter def color(self, value): self._color = value self._refresh_stylesheet() if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._refresh_stylesheet() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def _refresh_stylesheet(self): try: self._lbl_stylesheet = ('color: %s;background: %s' % (self._foreground.name(), self._color.name())) self.ui.lblDescription.setStyleSheet(self._lbl_stylesheet) except AttributeError: pass def __init__(self): super(ReadOnlyPanel, self).__init__(dynamic=True) # leave it here otherwise you will have circular import errors from pyqode.core._forms.pnl_read_only_ui import Ui_Form self.ui = Ui_Form() self.ui.setupUi(self) self._color = None self.color = QtGui.QColor('#8AADD4') self._foreground = None self.foreground = QtGui.QColor('#FFFFFF') self.hide() def paintEvent(self, event): """ Fills the panel background. """ super(ReadOnlyPanel, self).paintEvent(event) if self.isVisible(): # fill background painter = QtGui.QPainter(self) self._background_brush = QtGui.QBrush(self._color) painter.fillRect(event.rect(), self._background_brush) Turing-0.11-beta/pyqode/core/panels/search_and_replace.py 0000664 0000000 0000000 00000057122 13314727572 0023505 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the search and replace panel """ import re import sre_constants from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core import icons from pyqode.core._forms.search_panel_ui import Ui_SearchPanel from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.panel import Panel from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.core.backend import NotRunning from pyqode.core.backend.workers import findall class SearchAndReplacePanel(Panel, Ui_SearchPanel): """ Lets the user search and replace text in the current document. It uses the backend API to search for some text. Search operation is performed in a background process (the backend process).. The search panel can also be used programatically. To do that, the client code must first requests a search using :meth:`requestSearch` and connects to :attr:`search_finished`. The results of the search can then be retrieved using :attr:`cpt_occurences` and :meth:`get_oOccurrences`. The client code may now navigate through occurrences using :meth:`select_next` or :meth:`select_previous`, or replace the occurrences with a specific text using :meth:`replace` or :meth:`replace_all`. """ STYLESHEET = """SearchAndReplacePanel { background-color: %(bck)s; color: %(color)s; } QtoolButton { color: %(color)s; background-color: transparent; padding: 5px; min-height: 24px; min-width: 24px; border: none; } QtoolButton:hover { background-color: %(highlight)s; border: none; border-radius: 5px; color: %(color)s; } QtoolButton:pressed, QCheckBox:pressed { border: 1px solid %(bck)s; } QtoolButton:disabled { color: %(highlight)s; } QCheckBox { padding: 4px; color: %(color)s; } QCheckBox:hover { background-color: %(highlight)s; color: %(color)s; border-radius: 5px; } """ _KEYS = ["panelBackground", "background", "panelForeground", "panelHighlight"] #: Signal emitted when a search operation finished search_finished = QtCore.Signal() #: Define the maximum number of occurences that can be highlighted #: in the document. #: #: .. note:: The search operation itself is fast but the creation of all #: the extra selection used to highlight search result can be slow. MAX_HIGHLIGHTED_OCCURENCES = 500 @property def background(self): """ Text decoration background """ return self._bg @background.setter def background(self, value): self._bg = value self._refresh_decorations() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): """ Text decoration foreground """ return self._fg @foreground.setter def foreground(self, value): self._fg = value self._refresh_decorations() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Panel.__init__(self, dynamic=True) self.job_runner = DelayJobRunner(delay=500) Ui_SearchPanel.__init__(self) self.setupUi(self) self.toolButtonClose.clicked.connect(self.on_close) self.actionSearch.triggered.connect(self.on_search) self.actionActionSearchAndReplace.triggered.connect(self.on_search_and_replace) self.lineEditReplace.prompt_text = _(' Replace') #: Occurrences counter self.cpt_occurences = 0 self._previous_stylesheet = "" self._separator = None self._decorations = [] self._occurrences = [] self._current_occurrence_index = 0 self._bg = None self._fg = None self._update_buttons(txt="") self.lineEditSearch.installEventFilter(self) self.lineEditReplace.installEventFilter(self) self._init_actions() self._init_style() self.checkBoxRegex.stateChanged.connect( self.checkBoxWholeWords.setDisabled) def _init_actions(self): icon_size = QtCore.QSize(16, 16) icon = icons.icon('edit-find', ':/pyqode-icons/rc/edit-find.png', 'fa.search') self.actionSearch.setIcon(icon) self.actionSearch.setShortcut('Ctrl+F') self.labelSearch.setPixmap(icon.pixmap(icon_size)) icon = icons.icon( 'edit-find-replace', ':/pyqode-icons/rc/edit-find-replace.png', 'fa.search-plus') self.actionActionSearchAndReplace.setShortcut( 'Ctrl+H') self.actionActionSearchAndReplace.setIcon(icon) self.labelReplace.setPixmap(icon.pixmap(icon_size)) icon = icons.icon('go-up', ':/pyqode-icons/rc/go-up.png', 'fa.arrow-up') self.actionFindPrevious.setShortcut('Shift+F3') self.actionFindPrevious.setIcon(icon) self.toolButtonPrevious.setIcon(icon) self.toolButtonPrevious.setIconSize(icon_size) icon = icons.icon('go-down', ':/pyqode-icons/rc/go-down.png', 'fa.arrow-down') self.actionFindNext.setShortcut('F3') self.actionFindNext.setIcon(icon) self.toolButtonNext.setIcon(icon) self.toolButtonNext.setIconSize(icon_size) icon = icons.icon('window-close', ':/pyqode-icons/rc/close.png', 'fa.close') self.toolButtonClose.setIcon(icon) self.toolButtonClose.setIconSize(icon_size) self.menu = QtWidgets.QMenu(self.editor) self.menu.setTitle(_('Search')) self.menu.menuAction().setIcon(self.actionSearch.icon()) self.menu.addAction(self.actionSearch) self.actionSearch.setShortcutContext(QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionActionSearchAndReplace) self.actionActionSearchAndReplace.setShortcutContext( QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionFindNext) self.actionFindNext.setShortcutContext( QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionFindPrevious) self.actionFindPrevious.setShortcutContext( QtCore.Qt.WidgetShortcut) def _init_style(self): self._bg = QtGui.QColor('yellow') self._outline = QtGui.QPen(QtGui.QColor('gray'), 1) def on_install(self, editor): super(SearchAndReplacePanel, self).on_install(editor) self.hide() self.text_helper = TextHelper(editor) def _refresh_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) deco.set_background(QtGui.QBrush(self.background)) deco.set_outline(self._outline) self.editor.decorations.append(deco) def on_state_changed(self, state): super(SearchAndReplacePanel, self).on_state_changed(state) if state: # menu self.editor.add_action(self.menu.menuAction()) # requestSearch slot self.editor.textChanged.connect(self.request_search) self.lineEditSearch.textChanged.connect(self.request_search) self.checkBoxCase.stateChanged.connect(self.request_search) self.checkBoxWholeWords.stateChanged.connect(self.request_search) self.checkBoxRegex.stateChanged.connect(self.request_search) self.checkBoxInSelection.stateChanged.connect(self.request_search) # navigation slots self.toolButtonNext.clicked.connect(self.select_next) self.actionFindNext.triggered.connect(self.select_next) self.toolButtonPrevious.clicked.connect(self.select_previous) self.actionFindPrevious.triggered.connect(self.select_previous) # replace slots self.toolButtonReplace.clicked.connect(self.replace) self.toolButtonReplaceAll.clicked.connect(self.replace_all) # internal updates slots self.lineEditReplace.textChanged.connect(self._update_buttons) self.search_finished.connect(self._on_search_finished) else: self.editor.remove_action(self.menu.menuAction()) # requestSearch slot self.editor.textChanged.disconnect(self.request_search) self.lineEditSearch.textChanged.disconnect(self.request_search) self.checkBoxCase.stateChanged.disconnect(self.request_search) self.checkBoxWholeWords.stateChanged.disconnect( self.request_search) self.checkBoxRegex.stateChanged.disconnect(self.request_search) self.checkBoxInSelection.stateChanged.disconnect( self.request_search) # navigation slots self.toolButtonNext.clicked.disconnect(self.select_next) self.actionFindNext.triggered.disconnect(self.select_next) self.toolButtonPrevious.clicked.disconnect(self.select_previous) # replace slots self.toolButtonReplace.clicked.disconnect(self.replace) self.toolButtonReplaceAll.clicked.disconnect(self.replace_all) # internal updates slots self.lineEditReplace.textChanged.disconnect(self._update_buttons) self.search_finished.disconnect(self._on_search_finished) def close_panel(self): """ Closes the panel """ self.hide() self.lineEditReplace.clear() self.lineEditSearch.clear() def on_close(self): self.close_panel() def on_search(self): self.widgetSearch.show() self.widgetReplace.hide() self.show() new_text = self.text_helper.selected_text() old_text = self.lineEditSearch.text() text_changed = new_text != old_text self.lineEditSearch.setText(new_text) self.lineEditSearch.selectAll() self.lineEditSearch.setFocus() self.setFocusPolicy(QtCore.Qt.ClickFocus) if not text_changed: self.request_search(new_text) def on_search_and_replace(self): self.widgetSearch.show() self.widgetReplace.show() self.show() new_txt = self.text_helper.selected_text() old_txt = self.lineEditSearch.text() txt_changed = new_txt != old_txt self.lineEditSearch.setText(new_txt) self.lineEditReplace.clear() self.lineEditReplace.setFocus() if not txt_changed: self.request_search(new_txt) def focusOutEvent(self, event): self.job_runner.cancel_requests() Panel.focusOutEvent(self, event) def request_search(self, txt=None): """ Requests a search operation. :param txt: The text to replace. If None, the content of lineEditSearch is used instead. """ if self.checkBoxRegex.isChecked(): try: re.compile(self.lineEditSearch.text(), re.DOTALL) except sre_constants.error as e: self._show_error(e) return else: self._show_error(None) if txt is None or isinstance(txt, int): txt = self.lineEditSearch.text() if txt: self.job_runner.request_job( self._exec_search, txt, self._search_flags()) else: self.job_runner.cancel_requests() self._clear_occurrences() self._on_search_finished() @staticmethod def _set_widget_background_color(widget, color): """ Changes the base color of a widget (background). :param widget: widget to modify :param color: the color to apply """ pal = widget.palette() pal.setColor(pal.Base, color) widget.setPalette(pal) def _show_error(self, error): if error: self._set_widget_background_color( self.lineEditSearch, QtGui.QColor('#FFCCCC')) self.lineEditSearch.setToolTip(str(error)) else: self._set_widget_background_color( self.lineEditSearch, self.palette().color( self.palette().Base)) self.lineEditSearch.setToolTip('') def get_occurences(self): """ Returns the list of text occurrences. An occurrence is a tuple that contains start and end positions. :return: List of tuple(int, int) """ return self._occurrences def select_next(self): """ Selects the next occurrence. :return: True in case of success, false if no occurrence could be selected. """ current_occurence = self._current_occurrence() occurrences = self.get_occurences() if not occurrences: return current = self._occurrences[current_occurence] cursor_pos = self.editor.textCursor().position() if cursor_pos not in range(current[0], current[1] + 1) or \ current_occurence == -1: # search first occurrence that occurs after the cursor position current_occurence = 0 for i, (start, end) in enumerate(self._occurrences): if end > cursor_pos: current_occurence = i break else: if (current_occurence == -1 or current_occurence >= len(occurrences) - 1): current_occurence = 0 else: current_occurence += 1 self._set_current_occurrence(current_occurence) try: cursor = self.editor.textCursor() cursor.setPosition(occurrences[current_occurence][0]) cursor.setPosition(occurrences[current_occurence][1], cursor.KeepAnchor) self.editor.setTextCursor(cursor) return True except IndexError: return False def select_previous(self): """ Selects previous occurrence. :return: True in case of success, false if no occurrence could be selected. """ current_occurence = self._current_occurrence() occurrences = self.get_occurences() if not occurrences: return current = self._occurrences[current_occurence] cursor_pos = self.editor.textCursor().position() if cursor_pos not in range(current[0], current[1] + 1) or \ current_occurence == -1: # search first occurrence that occurs before the cursor position current_occurence = len(self._occurrences) - 1 for i, (start, end) in enumerate(self._occurrences): if end >= cursor_pos: current_occurence = i - 1 break else: if (current_occurence == -1 or current_occurence == 0): current_occurence = len(occurrences) - 1 else: current_occurence -= 1 self._set_current_occurrence(current_occurence) try: cursor = self.editor.textCursor() cursor.setPosition(occurrences[current_occurence][0]) cursor.setPosition(occurrences[current_occurence][1], cursor.KeepAnchor) self.editor.setTextCursor(cursor) return True except IndexError: return False def replace(self, text=None): """ Replaces the selected occurrence. :param text: The replacement text. If it is None, the lineEditReplace's text is used instead. :return True if the text could be replace properly, False if there is no more occurrences to replace. """ if text is None or isinstance(text, bool): text = self.lineEditReplace.text() current_occurences = self._current_occurrence() occurrences = self.get_occurences() if current_occurences == -1: self.select_next() current_occurences = self._current_occurrence() try: # prevent search request due to editor textChanged try: self.editor.textChanged.disconnect(self.request_search) except (RuntimeError, TypeError): # already disconnected pass occ = occurrences[current_occurences] cursor = self.editor.textCursor() cursor.setPosition(occ[0]) cursor.setPosition(occ[1], cursor.KeepAnchor) len_to_replace = len(cursor.selectedText()) len_replacement = len(text) offset = len_replacement - len_to_replace cursor.insertText(text) self.editor.setTextCursor(cursor) self._remove_occurrence(current_occurences, offset) current_occurences -= 1 self._set_current_occurrence(current_occurences) self.select_next() self.cpt_occurences = len(self.get_occurences()) self._update_label_matches() self._update_buttons() return True except IndexError: return False finally: self.editor.textChanged.connect(self.request_search) def replace_all(self, text=None): """ Replaces all occurrences in the editor's document. :param text: The replacement text. If None, the content of the lineEdit replace will be used instead """ cursor = self.editor.textCursor() cursor.beginEditBlock() remains = self.replace(text=text) while remains: remains = self.replace(text=text) cursor.endEditBlock() def eventFilter(self, obj, event): if event.type() == QtCore.QEvent.KeyPress: if (event.key() == QtCore.Qt.Key_Tab or event.key() == QtCore.Qt.Key_Backtab): return True elif (event.key() == QtCore.Qt.Key_Return or event.key() == QtCore.Qt.Key_Enter): if obj == self.lineEditReplace: if event.modifiers() & QtCore.Qt.ControlModifier: self.replace_all() else: self.replace() elif obj == self.lineEditSearch: if event.modifiers() & QtCore.Qt.ShiftModifier: self.select_previous() else: self.select_next() return True elif event.key() == QtCore.Qt.Key_Escape: self.on_close() return Panel.eventFilter(self, obj, event) def _search_flags(self): """ Returns the user search flag: (regex, case_sensitive, whole_words). """ return (self.checkBoxRegex.isChecked(), self.checkBoxCase.isChecked(), self.checkBoxWholeWords.isChecked(), self.checkBoxInSelection.isChecked()) def _exec_search(self, sub, flags): if self.editor is None: return regex, case_sensitive, whole_word, in_selection = flags tc = self.editor.textCursor() assert isinstance(tc, QtGui.QTextCursor) if in_selection and tc.hasSelection(): text = tc.selectedText() self._offset = tc.selectionStart() else: text = self.editor.toPlainText() self._offset = 0 request_data = { 'string': text, 'sub': sub, 'regex': regex, 'whole_word': whole_word, 'case_sensitive': case_sensitive } try: self.editor.backend.send_request(findall, request_data, self._on_results_available) except AttributeError: self._on_results_available(findall(request_data)) except NotRunning: QtCore.QTimer.singleShot(100, self.request_search) def _on_results_available(self, results): self._occurrences = [(start + self._offset, end + self._offset) for start, end in results] self._on_search_finished() def _update_label_matches(self): self.labelMatches.setText(_("{0} matches").format(self.cpt_occurences)) color = "#DD0000" if self.cpt_occurences: color = "#00DD00" self.labelMatches.setStyleSheet("color: %s" % color) if self.lineEditSearch.text() == "": self.labelMatches.clear() def _on_search_finished(self): self._clear_decorations() all_occurences = self.get_occurences() occurrences = all_occurences[:self.MAX_HIGHLIGHTED_OCCURENCES] for i, occurrence in enumerate(occurrences): deco = self._create_decoration(occurrence[0], occurrence[1]) self._decorations.append(deco) self.editor.decorations.append(deco) self.cpt_occurences = len(all_occurences) if not self.cpt_occurences: self._current_occurrence_index = -1 else: self._current_occurrence_index = -1 self._update_label_matches() self._update_buttons(txt=self.lineEditReplace.text()) def _current_occurrence(self): ret_val = self._current_occurrence_index return ret_val def _clear_occurrences(self): self._occurrences[:] = [] def _create_decoration(self, selection_start, selection_end): """ Creates the text occurences decoration """ deco = TextDecoration(self.editor.document(), selection_start, selection_end) deco.set_background(QtGui.QBrush(self.background)) deco.set_outline(self._outline) deco.set_foreground(QtCore.Qt.black) deco.draw_order = 1 return deco def _clear_decorations(self): """ Remove all decorations """ for deco in self._decorations: self.editor.decorations.remove(deco) self._decorations[:] = [] def _set_current_occurrence(self, current_occurence_index): self._current_occurrence_index = current_occurence_index def _remove_occurrence(self, i, offset=0): self._occurrences.pop(i) if offset: updated_occurences = [] for j, occ in enumerate(self._occurrences): if j >= i: updated_occurences.append( (occ[0] + offset, occ[1] + offset)) else: updated_occurences.append((occ[0], occ[1])) self._occurrences = updated_occurences def _update_buttons(self, txt=""): enable = self.cpt_occurences > 1 self.toolButtonNext.setEnabled(enable) self.toolButtonPrevious.setEnabled(enable) self.actionFindNext.setEnabled(enable) self.actionFindPrevious.setEnabled(enable) enable = (txt != self.lineEditSearch.text() and self.cpt_occurences) self.toolButtonReplace.setEnabled(enable) self.toolButtonReplaceAll.setEnabled(enable) def clone_settings(self, original): self.background = original.background self.foreground = original.foreground Turing-0.11-beta/pyqode/core/share.py 0000664 0000000 0000000 00000004700 13314727572 0017535 0 ustar 00root root 0000000 0000000 """ This module contains some definition that can be shared between the backend and the frontend (e.g. this module can be imported without requiring any additional libraries). """ class Definition(object): """ Represents a definition in a source file. This class is used by the OutlineExplorerWidget to show the defined names in a source file. Definition usually form a tree (a definition may have some child definition, e.g. methods of a class). """ def __init__(self, name, line, column=0, icon='', description='', user_data=None, file_path=None): #: Icon resource name associated with the definition, can be None self.icon = icon #: Definition name (name of the class, method, variable) self.name = name #: The line of the definition in the current editor text self.line = line #: The column of the definition in the current editor text self.column = column #: Possible list of children (only classes have children) self.children = [] #: description (tooltip) self.description = description #: user data self.user_data = user_data #: File path of the definition self.file_path = file_path def add_child(self, definition): """ Adds a child definition """ self.children.append(definition) def to_dict(self): """ Serializes a definition to a dictionary, ready for json. Children are serialised recursively. """ ddict = {'name': self.name, 'icon': self.icon, 'line': self.line, 'column': self.column, 'children': [], 'description': self.description, 'user_data': self.user_data, 'path': self.file_path} for child in self.children: ddict['children'].append(child.to_dict()) return ddict @staticmethod def from_dict(ddict): """ Deserializes a definition from a simple dict. """ d = Definition(ddict['name'], ddict['line'], ddict['column'], ddict['icon'], ddict['description'], ddict['user_data'], ddict['path']) for child_dict in ddict['children']: d.children.append(Definition.from_dict(child_dict)) return d def __repr__(self): return 'Definition(%r, %r, %r, %r)' % ( self.name, self.line, self.column, self.icon) Turing-0.11-beta/pyqode/core/styles/ 0000775 0000000 0000000 00000000000 13314727572 0017403 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/styles/__init__.py 0000664 0000000 0000000 00000000442 13314727572 0021514 0 ustar 00root root 0000000 0000000 """ This packages contains some pyqode specific pygments color schemes: - qt (inpired by the QtCreator color scheme) - darcula (inspired from the darcula them of PyCharm) """ from .qt import QtStyle from .darcula import DarculaStyle __all__ = [ 'QtStyle', 'DarculaStyle' ] Turing-0.11-beta/pyqode/core/styles/darcula.py 0000664 0000000 0000000 00000004075 13314727572 0021376 0 ustar 00root root 0000000 0000000 """ This module contains the darcula pygments theme. """ from pygments.style import Style from pygments.token import Comment, Error, Generic, Keyword, Literal, Name, \ Operator, Text, Punctuation class DarculaStyle(Style): """ Pygments color scheme inspired by the darcula theme (Pycharm/IntelliJ Idea) """ background_color = '#252525' highlight_color = '#353535' styles = { Comment.Multiline: ' #808080', Comment.Preproc: '#808080', Comment.Single: ' #808080', Comment.Special: 'bold #808080', Comment: ' #808080', Error: '#CC0000', Generic.Deleted: '#CC4040', Generic.Emph: ' #A9B7C6', Generic.Error: '#aa0000', Generic.Heading: '#999999', Generic.Inserted: '#40CC40', Generic.Output: '#888888', Generic.Prompt: '#555555', Generic.Strong: 'bold', Generic.Subheading: '#aaaaaa', Generic.Traceback: '#aa0000', Keyword.Constant: '#CC7832 ', Keyword.Declaration: '#CC7832', Keyword.Namespace: '#CC7832', Keyword.Pseudo: '#CC7832', Keyword.Reserved: '#CC7832', Keyword.Type: '#A9B7C6 bold', Keyword: '#CC7832 bold', Literal.Number: '#6897B3', Literal.String: '#008080 ', Literal.String.Doc: '#629755 ', Name.Attribute: '#800080', Name.Builtin.Pseudo: '#94558D', Name.Builtin: '#8888C6', Name.Class: '#A9B7C6 bold', Name.Constant: '#B200B2', Name.Decorator: '#BBB529', Name.Entity: '#A9B7C6', Name.Exception: '#A9B7C6 bold', Name.Function: '#A9B7C6 bold', Name.Label: '#A9B7C6 bold', Name.Namespace: '#A9B7C6', Name.Tag: '#A5C261 bold', Name.Variable.Class: '#A9B7C6 bold', Name.Variable.Global: '#A9B7C6 bold', Name.Variable.Instance: '#A9B7C6', Name.Variable: '#A9B7C6', Operator: '#808080 bold', Operator.Word: '#CC7832 bold', Text: '#A9B7C6', Text.Whitespace: '#656565', Punctuation: '#A9B7C6' } Turing-0.11-beta/pyqode/core/styles/qt.py 0000664 0000000 0000000 00000004023 13314727572 0020400 0 ustar 00root root 0000000 0000000 """ This module contains the Qt pygments style. """ from pygments.style import Style from pygments.token import Comment, Error, Generic, Keyword, Literal, Name, \ Operator, Text, Punctuation class QtStyle(Style): """ Port of the qt style """ default_style = '' background_color = '#ffffff' highlight_color = '#c7e7f9' styles = { Comment.Multiline: ' #008000', Comment.Preproc: '#000080', Comment.Single: ' #808080', Comment.Special: 'bold #000080', Comment: ' #808080', Error: '#CC0000', Generic.Deleted: 'bg:#ffdddd #000000', Generic.Emph: ' #000000', Generic.Error: '#aa0000', Generic.Heading: '#999999', Generic.Inserted: 'bg:#ddffdd #000000', Generic.Output: '#888888', Generic.Prompt: '#555555', Generic.Strong: 'bold', Generic.Subheading: '#aaaaaa', Generic.Traceback: '#aa0000', Keyword.Constant: '#808000 ', Keyword.Declaration: '#808000', Keyword.Namespace: '#000080', Keyword.Pseudo: '#808000', Keyword.Reserved: '#808000 bold', Keyword.Type: '#800080', Keyword: '#808000 bold', Literal.Number: '#000080', Literal.String: '#008000', Literal.String.Doc: '#000080', Name.Attribute: '#800080', Name.Builtin.Pseudo: '#94558D', Name.Builtin: '#AA00AA', Name.Class: '#800080 bold', Name.Constant: '#800080', Name.Decorator: '#808000', Name.Entity: '#000000', Name.Exception: '#800080', Name.Function: '#800000 bold', Name.Label: '#800000', Name.Namespace: '#000000', Name.Tag: '#2984C6 bold', Name.Variable.Class: '#800080', Name.Variable.Global: '#000000', Name.Variable.Instance: '#800000', Name.Variable: '#000000', Operator.Word: '#808000 bold', Operator: '#808000 bold', Text: '#000000', Text.Whitespace: '#BFBFBF', Punctuation: '#202020' } Turing-0.11-beta/pyqode/core/tools/ 0000775 0000000 0000000 00000000000 13314727572 0017220 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/tools/__init__.py 0000664 0000000 0000000 00000000376 13314727572 0021337 0 ustar 00root root 0000000 0000000 """ This package contains generic tools that might be useful for IDE: - console: offer an external console wrapper that prompt the user to press a key at the end of the console program. Useful for running short program in an external terminal. """ Turing-0.11-beta/pyqode/core/tools/console.py 0000664 0000000 0000000 00000002156 13314727572 0021240 0 ustar 00root root 0000000 0000000 """ This script wraps the execution of console program so that a prompt appear after the end of the console program (so that the console does not close as soon as the user program finished). Usage: pyqode-console program [options] Example: $ pyqode-console python /path/to/a/script.py --spam eggs $ ... $ The process terminated with exit code 0. $ Press a key to close this window... $ """ import os import sys import subprocess def main(): """ pyqode-console main function. """ global program, args, ret print(os.getcwd()) ret = 0 if '--help' in sys.argv or '-h' in sys.argv or len(sys.argv) == 1: print(__doc__) else: program = sys.argv[1] args = sys.argv[2:] if args: ret = subprocess.call([program] + args) else: ret = subprocess.call([program]) print('\nProcess terminated with exit code %d' % ret) prompt = 'Press ENTER to close this window...' if sys.version_info[0] == 3: input(prompt) else: raw_input(prompt) sys.exit(ret) if __name__ == '__main__': main() Turing-0.11-beta/pyqode/core/widgets/ 0000775 0000000 0000000 00000000000 13314727572 0017526 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/core/widgets/__init__.py 0000664 0000000 0000000 00000004723 13314727572 0021645 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This package contains a set of widgets that might be useful when writing pyqode applications: - TextCodeEdit: code edit specialised for plain text - GenericCodeEdit: generic code edit, using PygmentsSH. Not really fast, not really smart. - InteractiveConsole: QTextEdit made for running background process interactively. Can be used in an IDE for running programs or to display the compiler output,... - CodeEditTabWidget: tab widget made to handle CodeEdit instances (or any other object that have the same interface). - ErrorsTable: a QTableWidget specialised to show CheckerMessage. - OutlineTreeWidget: a widget that show the outline of an editor. """ from pyqode.core.widgets.code_edits import TextCodeEdit, GenericCodeEdit from pyqode.core.widgets.encodings import (EncodingsComboBox, EncodingsMenu, EncodingsContextMenu) from pyqode.core.widgets.errors_table import ErrorsTable from pyqode.core.widgets.file_icons_provider import FileIconProvider from pyqode.core.widgets.interactive import InteractiveConsole # Deprecated from pyqode.core.widgets.menu_recents import MenuRecentFiles from pyqode.core.widgets.menu_recents import RecentFilesManager from pyqode.core.widgets.preview import HtmlPreviewWidget from pyqode.core.widgets.tabs import TabWidget from pyqode.core.widgets.tab_bar import TabBar from pyqode.core.widgets.prompt_line_edit import PromptLineEdit from pyqode.core.widgets.outline import OutlineTreeWidget from pyqode.core.widgets.splittable_tab_widget import ( SplittableTabWidget, SplittableCodeEditTabWidget) from pyqode.core.widgets.filesystem_treeview import FileSystemTreeView from pyqode.core.widgets.filesystem_treeview import FileSystemContextMenu from pyqode.core.widgets.filesystem_treeview import FileSystemHelper from pyqode.core.widgets.output_window import OutputWindow from pyqode.core.widgets.terminal import Terminal __all__ = [ 'ErrorsTable', 'FileSystemContextMenu', 'FileSystemTreeView', 'InteractiveConsole', 'FileIconProvider', 'FileSystemHelper', 'MenuRecentFiles', 'RecentFilesManager', 'TabWidget', 'EncodingsComboBox', 'EncodingsMenu', 'EncodingsContextMenu', 'TextCodeEdit', 'GenericCodeEdit', 'PromptLineEdit', 'OutlineTreeWidget', 'SplittableTabWidget', 'SplittableCodeEditTabWidget', 'TabBar', 'HtmlPreviewWidget', 'OutputWindow', 'Terminal' ] Turing-0.11-beta/pyqode/core/widgets/_pty.py 0000664 0000000 0000000 00000012050 13314727572 0021051 0 ustar 00root root 0000000 0000000 """Pseudo terminal utilities.""" # Bugs: No signal handling. Doesn't set slave termios and window size. # Only tested on Linux. # See: W. Richard Stevens. 1992. Advanced Programming in the # UNIX Environment. Chapter 19. # Author: Steen Lumholt -- with additions by Guido. from select import select import os import tty __all__ = ["openpty","fork","spawn"] STDIN_FILENO = 0 STDOUT_FILENO = 1 STDERR_FILENO = 2 CHILD = 0 def openpty(): """openpty() -> (master_fd, slave_fd) Open a pty master/slave pair, using os.openpty() if possible.""" try: return os.openpty() except (AttributeError, OSError): pass master_fd, slave_name = _open_terminal() slave_fd = slave_open(slave_name) return master_fd, slave_fd def master_open(): """master_open() -> (master_fd, slave_name) Open a pty master and return the fd, and the filename of the slave end. Deprecated, use openpty() instead.""" try: master_fd, slave_fd = os.openpty() except (AttributeError, OSError): pass else: slave_name = os.ttyname(slave_fd) os.close(slave_fd) return master_fd, slave_name return _open_terminal() def _open_terminal(): """Open pty master and return (master_fd, tty_name).""" for x in 'pqrstuvwxyzPQRST': for y in '0123456789abcdef': pty_name = '/dev/pty' + x + y try: fd = os.open(pty_name, os.O_RDWR) except OSError: continue return (fd, '/dev/tty' + x + y) raise OSError('out of pty devices') def slave_open(tty_name): """slave_open(tty_name) -> slave_fd Open the pty slave and acquire the controlling terminal, returning opened filedescriptor. Deprecated, use openpty() instead.""" result = os.open(tty_name, os.O_RDWR) try: from fcntl import ioctl, I_PUSH except ImportError: return result try: ioctl(result, I_PUSH, "ptem") ioctl(result, I_PUSH, "ldterm") except OSError: pass return result def fork(): """fork() -> (pid, master_fd) Fork and make the child a session leader with a controlling terminal.""" try: pid, fd = os.forkpty() except (AttributeError, OSError): pass else: if pid == CHILD: try: os.setsid() except OSError: # os.forkpty() already set us session leader pass return pid, fd master_fd, slave_fd = openpty() pid = os.fork() if pid == CHILD: # Establish a new session. os.setsid() os.close(master_fd) # Slave becomes stdin/stdout/stderr of child. os.dup2(slave_fd, STDIN_FILENO) os.dup2(slave_fd, STDOUT_FILENO) os.dup2(slave_fd, STDERR_FILENO) if (slave_fd > STDERR_FILENO): os.close (slave_fd) # Explicitly open the tty to make it become a controlling tty. tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR) os.close(tmp_fd) else: os.close(slave_fd) # Parent and child process. return pid, master_fd def _writen(fd, data): """Write all the data to a descriptor.""" while data: n = os.write(fd, data) data = data[n:] def _read(fd): """Default read function.""" return os.read(fd, 1024) def _copy(master_fd, master_read=_read, stdin_read=_read): """Parent copy loop. Copies pty master -> standard output (master_read) standard input -> pty master (stdin_read)""" fds = [master_fd, STDIN_FILENO] while True: rfds, wfds, xfds = select(fds, [], []) if master_fd in rfds: data = master_read(master_fd) if not data: # Reached EOF. return else: os.write(STDOUT_FILENO, data) if STDIN_FILENO in rfds: data = stdin_read(STDIN_FILENO) if not data: fds.remove(STDIN_FILENO) else: _writen(master_fd, data) def spawn(argv, master_read=_read, stdin_read=_read): """Create a spawned process.""" if type(argv) == type(''): argv = (argv,) pid, master_fd = fork() if pid == CHILD: try: os.execlp(argv[0], *argv) except: # If we wanted to be really clever, we would use # the same method as subprocess() to pass the error # back to the parent. For now just dump stack trace. traceback.print_exc() finally: os._exit(1) try: mode = tty.tcgetattr(STDIN_FILENO) tty.setraw(STDIN_FILENO) restore = 1 except tty.error: # This is the same as termios.error restore = 0 try: _copy(master_fd, master_read, stdin_read) except OSError: # Some OSes never return an EOF on pty, just raise # an error instead. pass finally: if restore: tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode) os.close(master_fd) return os.waitpid(pid, 0)[1] Turing-0.11-beta/pyqode/core/widgets/code_edits.py 0000664 0000000 0000000 00000015201 13314727572 0022201 0 ustar 00root root 0000000 0000000 """ This module contains core code edits: - TextEdit: code edit specialised for plain text - GenericCodeEdit: generic code editor, not that smart and slow. Use it as a fallback and look other pyqode packages for language specific cod edits. """ import sys from pyqode.core.backend import server from pyqode.core.api import CodeEdit, Panel, SyntaxHighlighter, \ CharBasedFoldDetector, IndentFoldDetector, ColorScheme class TextCodeEdit(CodeEdit): """ CodeEdit specialised for plain text. Especially useful for long text file such as log files because it's syntax highlighter does not do anything. """ class TextSH(SyntaxHighlighter): """ Empty highlighter, does not do anything (very fast at loading very big files). """ def highlight_block(self, text, user_data): """ Does nothing """ pass mimetypes = ['text/x-plain', 'text/x-log', 'text/plain'] DEFAULT_SERVER = server.__file__ def __init__(self, parent=None, server_script=None, interpreter=sys.executable, args=None, create_default_actions=True, color_scheme='qt', reuse_backend=False): from pyqode.core import panels from pyqode.core import modes if server_script is None: server_script = TextCodeEdit.DEFAULT_SERVER super(TextCodeEdit, self).__init__(parent, create_default_actions) self.backend.start(server_script, interpreter, args, reuse=reuse_backend) # append panels self.panels.append(panels.SearchAndReplacePanel(), Panel.Position.BOTTOM) self.panels.append(panels.FoldingPanel()) self.panels.append(panels.LineNumberPanel()) # append modes self.modes.append(modes.AutoCompleteMode()) self.modes.append(modes.ExtendedSelectionMode()) self.modes.append(modes.CaseConverterMode()) self.modes.append(modes.FileWatcherMode()) self.modes.append(modes.CaretLineHighlighterMode()) self.modes.append(modes.RightMarginMode()) self.modes.append(TextCodeEdit.TextSH( self.document(), ColorScheme(color_scheme))) self.modes.append(modes.ZoomMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.AutoIndentMode()) self.modes.append(modes.IndenterMode()) self.modes.append(modes.SymbolMatcherMode()) self.panels.append(panels.EncodingPanel(), Panel.Position.TOP) self.panels.append(panels.ReadOnlyPanel(), Panel.Position.TOP) def clone(self): clone = self.__class__( parent=self.parent(), server_script=self.backend.server_script, interpreter=self.backend.interpreter, args=self.backend.args, color_scheme=self.syntax_highlighter.color_scheme.name) return clone class GenericCodeEdit(CodeEdit): """ This generic code edit uses the PygmentSH for syntax highlighting and commpletion engine based on the document words. It is not very smart and is probably 2 times slower than a native specialised code edit. It is meant to be used as a fallback editor in case you're missing a specialised editor. """ # generic mimetypes = [] #: the list of mimetypes that use char based fold detector _char_based_mimetypes = [ 'text/x-php', 'text/x-c++hdr', 'text/x-c++src', 'text/x-chdr', 'text/x-csrc', 'text/x-csharp', 'application/javascript' ] DEFAULT_SERVER = server.__file__ def __init__(self, parent=None, server_script=None, interpreter=sys.executable, args=None, create_default_actions=True, color_scheme='qt', reuse_backend=False): super(GenericCodeEdit, self).__init__(parent, create_default_actions) from pyqode.core import panels from pyqode.core import modes if server_script is None: server_script = GenericCodeEdit.DEFAULT_SERVER self.backend.start(server_script, interpreter, args, reuse=reuse_backend) # append panels self.panels.append(panels.LineNumberPanel()) self.panels.append(panels.SearchAndReplacePanel(), Panel.Position.BOTTOM) self.panels.append(panels.FoldingPanel()) # append modes self.modes.append(modes.CursorHistoryMode()) self.modes.append(modes.AutoCompleteMode()) self.modes.append(modes.ExtendedSelectionMode()) self.modes.append(modes.CaseConverterMode()) self.modes.append(modes.FileWatcherMode()) self.modes.append(modes.CaretLineHighlighterMode()) self.modes.append(modes.RightMarginMode()) self.modes.append(modes.PygmentsSyntaxHighlighter( self.document(), color_scheme=ColorScheme(color_scheme))) self.modes.append(modes.ZoomMode()) self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.AutoIndentMode()) self.modes.append(modes.IndenterMode()) self.modes.append(modes.SymbolMatcherMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.SmartBackSpaceMode()) self.panels.append(panels.EncodingPanel(), Panel.Position.TOP) self.panels.append(panels.ReadOnlyPanel(), Panel.Position.TOP) def setPlainText(self, txt, mime_type='', encoding=''): if mime_type is None: mime_type = self.file.mimetype if encoding is None: encoding = self.file.encoding try: self.syntax_highlighter.set_lexer_from_filename(self.file.path) try: mimetype = self.syntax_highlighter._lexer.mimetypes[0] except (AttributeError, IndexError): mimetype = '' if mimetype in self._char_based_mimetypes: self.syntax_highlighter.fold_detector = CharBasedFoldDetector() else: self.syntax_highlighter.fold_detector = IndentFoldDetector() except AttributeError: # syntax highlighter removed, e.g. file size > FileManager.limit pass super(GenericCodeEdit, self).setPlainText(txt, mime_type, encoding) def clone(self): clone = self.__class__( parent=self.parent(), server_script=self.backend.server_script, interpreter=self.backend.interpreter, args=self.backend.args, color_scheme=self.syntax_highlighter.color_scheme.name) return clone Turing-0.11-beta/pyqode/core/widgets/encodings.py 0000664 0000000 0000000 00000016057 13314727572 0022062 0 ustar 00root root 0000000 0000000 """ This module contains the encodings related widgets (combox, menus,...) """ import locale import logging from pyqode.core.api import ENCODINGS_MAP, convert_to_codec_key from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache def _logger(): return logging.getLogger(__name__) class EncodingsComboBox(QtWidgets.QComboBox): """ This combo box display the list of user preferred encoding. The last item let you choose an additional encoding from the list of encodings define in :mod:`pyqode.core.api.encodings` using the EncodingsEditorDialog. You can also set the current encoding, it will be automatically appended if not in the user list or set as the current index. """ @property def current_encoding(self): """ Gets/Sets the current encoding """ return self._current_encoding @current_encoding.setter def current_encoding(self, value): self._current_encoding = convert_to_codec_key(value) self._refresh_items() def __init__(self, parent, default_encoding=locale.getpreferredencoding()): super(EncodingsComboBox, self).__init__(parent) self._current_encoding = default_encoding self._lock = False self._refresh_items() self.currentIndexChanged.connect(self._on_current_changed) def _on_current_changed(self, index): if self._lock: return if index == self.count() - 1: from pyqode.core.dialogs import DlgPreferredEncodingsEditor if DlgPreferredEncodingsEditor.edit_encoding(self): self._refresh_items() else: self._current_encoding = self.itemData(index, QtCore.Qt.UserRole) def _refresh_items(self): self._lock = True self.clear() for i, encoding in enumerate(sorted(Cache().preferred_encodings)): encoding = convert_to_codec_key(encoding) try: alias, lang = ENCODINGS_MAP[encoding] except KeyError: _logger().warning('KeyError with encoding: %s', encoding) else: self.addItem('%s (%s)' % (alias, lang)) self.setItemData(i, encoding, QtCore.Qt.UserRole) if encoding == self._current_encoding or \ convert_to_codec_key(alias) == self._current_encoding: self.setCurrentIndex(i) self.insertSeparator(self.count()) self.addItem('Add or remove') self._lock = False class EncodingsMenu(QtWidgets.QMenu): """ Implements a menu that show the user preferred encoding and emit reload_requested when the user changed the selected encoding. This menu is a general purpose menu that you can put anywhere in your application but you will have to manage the reload operation yourself. For an integrated context menu, prefer using :class:`pyqode.core.widgets.EncodingsContextMenu`. """ #: Signal emitted when the user triggered an action. reload_requested = QtCore.Signal(str) @property def current_encoding(self): """ Gets/Sets the current encoding """ return self._current_encoding @current_encoding.setter def current_encoding(self, value): self._current_encoding = convert_to_codec_key(value) self._refresh() def __init__(self, title=_('Encodings'), parent=None, selected_encoding=locale.getpreferredencoding()): super(EncodingsMenu, self).__init__(parent) self.setTitle(title) self._group = QtWidgets.QActionGroup(self) self._edit_action = None self._current_encoding = '' self.current_encoding = selected_encoding def _clear_actions(self): for action in self._group.actions(): self._group.removeAction(action) self.removeAction(action) self.removeAction(self._edit_action) def _refresh(self): self._clear_actions() for i, encoding in enumerate(sorted(Cache().preferred_encodings)): encoding = convert_to_codec_key(encoding) try: alias, lang = ENCODINGS_MAP[encoding] except KeyError: _logger().warn('KeyError with encoding:', encoding) else: action = QtWidgets.QAction('%s (%s)' % (alias, lang), self) action.setData(encoding) action.setCheckable(True) if encoding == self._current_encoding or \ convert_to_codec_key(alias) == self._current_encoding: action.setChecked(True) self.addAction(action) self._group.addAction(action) self._group.triggered.connect(self._on_encoding_triggered) self.addSeparator() self._edit_action = QtWidgets.QAction(_('Add or remove'), self) self._edit_action.triggered.connect(self._on_edit_requested) self.addAction(self._edit_action) def _on_edit_requested(self): from pyqode.core.dialogs import DlgPreferredEncodingsEditor if DlgPreferredEncodingsEditor.edit_encoding(self): self._refresh() def _on_encoding_triggered(self, action): self.reload_requested.emit(action.data()) class EncodingsContextMenu(EncodingsMenu): """ Extends the encoding menu to be tightly coupled with a CodeEdit instance for an easier integration (automatically reload the editor file content when the encoding changed). The parent widget of the menu must be set to a CodeEdit instance. """ def __init__(self, title='Encodings', parent=None, selected_encoding=locale.getpreferredencoding()): from pyqode.core.api import CodeEdit assert isinstance(parent, CodeEdit) super(EncodingsContextMenu, self).__init__( title, parent, selected_encoding) self.reload_requested.connect(self._on_reload_requested) parent.new_text_set.connect(self._refresh) sep = QtWidgets.QAction(self.parent()) sep.setSeparator(True) self.parent().add_menu(self) self._timer = QtCore.QTimer() self._timer.setInterval(1) self._timer.timeout.connect(self._reload) self._refresh() def _refresh(self): self._current_encoding = convert_to_codec_key( self.parent().file.encoding) super(EncodingsContextMenu, self)._refresh() def _on_reload_requested(self, encoding): self._encoding = encoding self._timer.start() def _reload(self): self._timer.stop() try: self.parent().file.reload(self._encoding) except UnicodeDecodeError: QtWidgets.QMessageBox.warning( self.parent(), _('Decoding error'), _('Failed to reload file with encoding %s') % self._encoding) else: try: from pyqode.core.panels import EncodingPanel panel = self.parent().panels.get(EncodingPanel) except KeyError: pass else: panel.close_panel() Turing-0.11-beta/pyqode/core/widgets/errors_table.py 0000664 0000000 0000000 00000013276 13314727572 0022574 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains a custom QTableWidget for easier displaying of CheckerMessages """ from pyqode.core.api.utils import memoized from pyqode.core.modes import CheckerMessage, CheckerMessages from pyqode.qt import QtCore, QtWidgets, QtGui COL_TYPE = 0 COL_FILE_NAME = 1 COL_LINE_NBR = 2 COL_MSG = 3 class ErrorsTable(QtWidgets.QTableWidget): """ Extends a QtWidgets.QTableWidget to easily show :class:`pyqode.core.modes.CheckerMessage`. You add messages to the table using :meth:`pyqode.core.widgets.ErrorsTable.add_message`. You clear the table using :meth:`pyqode.core.widgets.ErrorsTable`. """ #: Signal emitted when a message is activated, the clicked signal is passed #: as a parameter msg_activated = QtCore.Signal(CheckerMessage) ICONS = { CheckerMessages.INFO: ':pyqode-icons/rc/dialog-info.png', CheckerMessages.WARNING: ':pyqode-icons/rc/dialog-warning.png', CheckerMessages.ERROR: ':pyqode-icons/rc/dialog-error.png', } def __init__(self, parent=None): QtWidgets.QTableWidget.__init__(self, parent) self.setColumnCount(6) self.setHorizontalHeaderLabels( ["Type", "File name", "Line", "Description", 'Details']) try: # pyqt4 self.horizontalHeader().setResizeMode( QtWidgets.QHeaderView.ResizeToContents) self.horizontalHeader().setResizeMode( COL_MSG, QtWidgets.QHeaderView.Stretch) except AttributeError: # pyqt5 self.horizontalHeader().setSectionResizeMode( QtWidgets.QHeaderView.ResizeToContents) self.horizontalHeader().setSectionResizeMode( COL_MSG, QtWidgets.QHeaderView.Stretch) self.setMinimumSize(900, 200) self.itemActivated.connect(self._on_item_activated) self.setSelectionMode(self.SingleSelection) self.setSelectionBehavior(self.SelectRows) self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self.context_mnu = QtWidgets.QMenu() self.action_details = QtWidgets.QAction(_('View details'), self) self.action_details.triggered.connect(self.showDetails) self.action_copy = QtWidgets.QAction(_('Copy error'), self) self.action_copy.triggered.connect(self._copy_cell_text) self.context_mnu.addAction(self.action_details) self.context_mnu.addAction(self.action_copy) self.clear() def _copy_cell_text(self): """ Copies the description of the selected message to the clipboard """ txt = self.currentItem().text() QtWidgets.QApplication.clipboard().setText(txt) def _show_context_menu(self, pos): """ Shows the context menu """ self.context_mnu.exec_(self.mapToGlobal(pos)) def clear(self): """ Clears the tables and the message list """ QtWidgets.QTableWidget.clear(self) self.setRowCount(0) self.setColumnCount(4) self.setHorizontalHeaderLabels( ["Type", "File name", "Line", "Description"]) @classmethod @memoized def _make_icon(cls, status): """ Make icon from icon filename/tuple (if you want to use a theme) """ icon = cls.ICONS[status] if isinstance(icon, tuple): return QtGui.QIcon.fromTheme( icon[0], QtGui.QIcon(icon[1])) elif isinstance(icon, str): return QtGui.QIcon(icon) elif isinstance(icon, QtGui.QIcon): return icon else: return None def add_message(self, msg): """ Adds a checker message to the table. :param msg: The message to append :type msg: pyqode.core.modes.CheckerMessage """ row = self.rowCount() self.insertRow(row) # type item = QtWidgets.QTableWidgetItem( self._make_icon(msg.status), msg.status_string) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_TYPE, item) # filename item = QtWidgets.QTableWidgetItem( QtCore.QFileInfo(msg.path).fileName()) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_FILE_NAME, item) # line if msg.line < 0: item = QtWidgets.QTableWidgetItem("-") else: item = QtWidgets.QTableWidgetItem(str(msg.line + 1)) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_LINE_NBR, item) # desc item = QtWidgets.QTableWidgetItem(msg.description) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_MSG, item) def _on_item_activated(self, item): """ Emits the message activated signal """ msg = item.data(QtCore.Qt.UserRole) self.msg_activated.emit(msg) def showDetails(self): """ Shows the error details. """ msg = self.currentItem().data(QtCore.Qt.UserRole) desc = msg.description desc = desc.replace('\r\n', '\n').replace('\r', '\n') desc = desc.replace('\n', 'Description:
%s
File:
%s
Line:
%d
{0}.{1}(".format( call['call.module.name'], call['call.call_name']) for i, param in enumerate(call['call.params']): if i < len(call['call.params']) - 1 and not param.endswith(','): param += ", " if param.endswith(','): param += ' ' # pep8 calltip if i == call['call.index']: calltip += "" calltip += param if i == call['call.index']: calltip += "" calltip += ')
' # set tool tip position at the start of the bracket char_width = self.editor.fontMetrics().width('A') w_offset = (col - call['call.bracket_start'][1]) * char_width position = QtCore.QPoint( self.editor.cursorRect().x() - w_offset, self.editor.cursorRect().y() + char_width + self.editor.panels.margin_size(0)) position = self.editor.mapToGlobal(position) # show tooltip QtWidgets.QToolTip.showText(position, calltip, self.editor) Turing-0.11-beta/pyqode/python/modes/comments.py 0000664 0000000 0000000 00000011333 13314727572 0021760 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- import sys import os from pyqode.core import api, icons from pyqode.qt import QtGui, QtCore, QtWidgets class CommentsMode(api.Mode): """ Comments/uncomments a set of lines using Ctrl+/. """ def __init__(self): super(CommentsMode, self).__init__() self.action = QtWidgets.QAction(_("Comment/Uncomment"), self.editor) self.action.setShortcut("Ctrl+/") icon = icons.icon(qta_name='fa.comment') if icon: self.action.setIcon(icon) def on_state_changed(self, state): """ Called when the mode is activated/deactivated """ if state: self.action.triggered.connect(self.comment) self.editor.add_action(self.action, sub_menu='Python') if 'pyqt5' in os.environ['QT_API'].lower(): self.editor.key_pressed.connect(self.on_key_pressed) else: self.editor.remove_action(self.action, sub_menu='Python') self.action.triggered.disconnect(self.comment) if 'pyqt5' in os.environ['QT_API'].lower(): self.editor.key_pressed.disconnect(self.on_key_pressed) def on_key_pressed(self, key_event): ctrl = (key_event.modifiers() & QtCore.Qt.ControlModifier == QtCore.Qt.ControlModifier) if key_event.key() == QtCore.Qt.Key_Slash and ctrl: self.comment() key_event.accept() def check_selection(self, cursor): sel_start = cursor.selectionStart() sel_end = cursor.selectionEnd() reversed_selection = cursor.position() == sel_start # were there any selected lines? If not select the current line has_selection = True if not cursor.hasSelection(): cursor.select(QtGui.QTextCursor.LineUnderCursor) has_selection = False return has_selection, reversed_selection, sel_end, sel_start def get_selected_lines(self): nb_lines = len( api.TextHelper(self.editor).selected_text().splitlines()) cursor = self.editor.textCursor() self._move_cursor_to_selection_start(cursor) lines = [] for i in range(nb_lines): lines.append(cursor.block().text()) cursor.movePosition(cursor.NextBlock) return lines def get_operation(self): lines = self.get_selected_lines() if not lines: lines = [api.TextHelper(self.editor).current_line_text()] min_indent = sys.maxsize comment = False for l in lines: indent = len(l) - len(l.lstrip()) if indent < min_indent and l: min_indent = indent if not l.lstrip().startswith('# ') and l: comment = True return min_indent, comment, len(lines) def comment(self): """ Comments/Uncomments the selected lines or the current lines if there is no selection. """ cursor = self.editor.textCursor() # get the indent at which comment should be inserted and whether to # comment or uncomment the selected text indent, comment, nb_lines = self.get_operation() has_selection = cursor.hasSelection() if nb_lines > 1: self._move_cursor_to_selection_start(cursor) cursor.beginEditBlock() for i in range(nb_lines): self.comment_line(indent, cursor, comment) cursor.movePosition(cursor.NextBlock) cursor.endEditBlock() else: # comment a single line cursor.beginEditBlock() self.comment_line(indent, cursor, comment) if not has_selection: # move to the first non-whitespace character of the next line cursor.movePosition(cursor.NextBlock) text = cursor.block().text() indent = len(text) - len(text.lstrip()) cursor.movePosition(cursor.Right, cursor.MoveAnchor, indent) cursor.endEditBlock() self.editor.setTextCursor(cursor) else: cursor.endEditBlock() def _move_cursor_to_selection_start(self, cursor): start = cursor.selectionStart() end = cursor.selectionEnd() if start > end: start = end cursor.setPosition(start) def comment_line(self, indent, cursor, comment): if not cursor.block().text(): return cursor.movePosition(cursor.StartOfLine) cursor.movePosition(cursor.Right, cursor.MoveAnchor, indent) if comment: cursor.insertText('# ') if cursor.atEnd(): cursor.insertText('\n') else: cursor.deleteChar() cursor.deleteChar() Turing-0.11-beta/pyqode/python/modes/frosted_checker.py 0000664 0000000 0000000 00000000701 13314727572 0023262 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the pyFlakes checker mode """ from pyqode.core.modes import CheckerMode from pyqode.python.backend.workers import run_pyflakes class PyFlakesChecker(CheckerMode): """ Runs pyflakes on you code while you're typing This checker mode runs pyflakes on the fly to check your python syntax. """ def __init__(self): super(PyFlakesChecker, self).__init__(run_pyflakes, delay=1200) Turing-0.11-beta/pyqode/python/modes/goto_assignements.py 0000664 0000000 0000000 00000015442 13314727572 0023670 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the go to assignments mode. """ import logging import os from pyqode.core import icons from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core.api import Mode, TextHelper, DelayJobRunner, CodeEdit from pyqode.core.backend import NotRunning from pyqode.core.modes import WordClickMode from pyqode.python.backend import workers def _logger(): return logging.getLogger(__name__) class Assignment(object): """ Defines an assignment. Used by :class:`GoToAssignmentsMode`. """ def __init__(self, path, line, column, full_name): if path: path = path.replace(".pyc", ".py") #: File path of the module where the assignment can be found self.module_path = path #: Line number self.line = line #: Column number self.column = column #: Assignement full name self.full_name = full_name def __str__(self): if self.line and self.column: return "%s (%s, %s)" % (self.full_name, self.line + 1, self.column + 1) return self.full_name def __repr__(self): return "Definition(%r, %r, %r, %r)" % (self.module_path, self.line, self.column, self.full_name) class GoToAssignmentsMode(WordClickMode): """ Goes to the assignments (using jedi.Script.goto_assignments) when the user execute the shortcut or click word. If there are more than one assignments, an input dialog is used to ask the user to choose the desired assignment. This mode will emit the :attr:`out_of_doc` signal if the definition can not be reached in the current document. IDE will typically connects a slot that open a new editor tab and goes to the definition position. """ #: Signal emitted when the definition cannot be reached in the current #: document out_of_doc = QtCore.Signal(Assignment) #: Signal emitted when no results could be found. no_results_found = QtCore.Signal() shortcut = 'Alt+F2' def __init__(self): super(GoToAssignmentsMode, self).__init__() self._definitions = [] self._goto_requested = False self.action_goto = QtWidgets.QAction(_("Go to assignments"), self) self.action_goto.setShortcut(self.shortcut) self.action_goto.triggered.connect(self.request_goto) icon = icons.icon(qta_name='fa.share') if icon: self.action_goto.setIcon(icon) self.word_clicked.connect(self._on_word_clicked) self._runner = DelayJobRunner(delay=1) def on_state_changed(self, state): super(GoToAssignmentsMode, self).on_state_changed(state) if state: self.editor.add_action(self.action_goto, sub_menu='Python') else: self.editor.remove_action(self.action_goto, sub_menu='Python') def request_goto(self): """ Request a goto action for the word under the text cursor. """ self._goto_requested = True self._check_word_cursor() def _check_word_cursor(self, tc=None): """ Request a go to assignment. :param tc: Text cursor which contains the text that we must look for its assignment. Can be None to go to the text that is under the text cursor. :type tc: QtGui.QTextCursor """ if not tc: tc = TextHelper(self.editor).word_under_cursor() request_data = { 'code': self.editor.toPlainText(), 'line': tc.blockNumber(), 'column': tc.columnNumber(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } try: self.editor.backend.send_request( workers.goto_assignments, request_data, on_receive=self._on_results_available) except NotRunning: pass def _goto(self, definition): fp = '' if self.editor.file.path: fp = os.path.normpath(self.editor.file.path.replace(".pyc", ".py")) if definition.module_path == fp: line = definition.line col = definition.column _logger().debug("Go to %s" % definition) self._runner.request_job( TextHelper(self.editor).goto_line, line, move=True, column=col) else: _logger().debug("Out of doc: %s" % definition) self.out_of_doc.emit(definition) def _unique(self, seq): """ Not performant but works. """ # order preserving checked = [] for e in seq: present = False for c in checked: if str(c) == str(e): present = True break if not present: checked.append(e) return checked def _clear_selection(self): super(GoToAssignmentsMode, self)._clear_selection() self._definitions[:] = [] def _validate_definitions(self, definitions): if definitions: if len(definitions) == 1: return definitions[0].line is not None return True return False def _on_results_available(self, definitions): _logger().debug("Got %r" % definitions) definitions = [Assignment(path, line, col, full_name) for path, line, col, full_name in definitions] definitions = self._unique(definitions) self._definitions = definitions if self._validate_definitions(definitions): if self._goto_requested: self._perform_goto(definitions) else: self._select_word_cursor() self.editor.set_mouse_cursor(QtCore.Qt.PointingHandCursor) else: self._clear_selection() self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) self._goto_requested = False def _perform_goto(self, definitions): if len(definitions) == 1: definition = definitions[0] if definition: self._goto(definition) elif len(definitions) > 1: _logger().debug( "More than 1 assignments in different modules, user " "need to make a choice: %s" % definitions) def_str, result = QtWidgets.QInputDialog.getItem( self.editor, _("Choose a definition"), _("Choose the definition you want to go to:"), [str(d) for d in definitions]) if result: for definition in definitions: if definition and str(definition) == def_str: self._goto(definition) break def _on_word_clicked(self): self._perform_goto(self._definitions) Turing-0.11-beta/pyqode/python/modes/indenter.py 0000664 0000000 0000000 00000004575 13314727572 0021755 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the python indenter. """ from pyqode.qt import QtGui from pyqode.core.modes import IndenterMode class PyIndenterMode(IndenterMode): """ Extends the core indenter to add the ability to always indent the whole line instead of inserting a tab at the cursor position. This behaviour can be turned off at runtime by setting :attr:`tab_always_indent` to False. """ @property def tab_always_indent(self): """ When this flag is set to True, any call to indent will indent the whole line instead of inserting a tab at the cursor position. """ return self._tab_always_indent @tab_always_indent.setter def tab_always_indent(self, value): self._tab_always_indent = value if self.editor: for c in self.editor.clones: try: c.modes.get(self.__class__).tab_always_indent = value except KeyError: pass def __init__(self): super(PyIndenterMode, self).__init__() self._tab_always_indent = None self.tab_always_indent = True def indent(self): """ Performs an indentation """ if not self.tab_always_indent: super(PyIndenterMode, self).indent() else: cursor = self.editor.textCursor() assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): self.indent_selection(cursor) else: # simply insert indentation at the cursor position tab_len = self.editor.tab_length cursor.beginEditBlock() if self.editor.use_spaces_instead_of_tabs: cursor.insertText(tab_len * " ") else: cursor.insertText('\t') cursor.endEditBlock() self.editor.setTextCursor(cursor) def unindent(self): """ Performs an un-indentation """ if self.tab_always_indent: cursor = self.editor.textCursor() if not cursor.hasSelection(): cursor.select(cursor.LineUnderCursor) self.unindent_selection(cursor) else: super(PyIndenterMode, self).unindent() def clone_settings(self, original): self.tab_always_indent = original.tab_always_indent Turing-0.11-beta/pyqode/python/modes/pep8_checker.py 0000664 0000000 0000000 00000000561 13314727572 0022474 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This module contains the pyFlakes checker mode """ from pyqode.core.modes import CheckerMode from pyqode.python.backend.workers import run_pep8 class PEP8CheckerMode(CheckerMode): """ This checker mode runs pep8.py on the fly to check your python style. """ def __init__(self): CheckerMode.__init__(self, run_pep8) Turing-0.11-beta/pyqode/python/modes/sh.py 0000664 0000000 0000000 00000023130 13314727572 0020543 0 ustar 00root root 0000000 0000000 """ This module contains a native python syntax highlighter, strongly inspired from spyderlib.widgets.source_code.syntax_higlighter.PythonSH but modified to highlight docstrings with a different color than the string color and to highlight decorators and self parameters. It is approximately 3 time faster then :class:`pyqode.core.modes.PygmentsSH`. """ try: #it works on windows import builtins except ImportError: #it works on osx builtins = __import__('__builtin__') import re from pyqode.core.api import SyntaxHighlighter as BaseSH from pyqode.core.api import TextBlockHelper def any(name, alternates): """Return a named group pattern matching list of alternates.""" return "(?P<%s>" % name + "|".join(alternates) + ")" kwlist = [ 'self', 'False', 'None', 'True', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'global', 'if', 'lambda', 'nonlocal', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield', ] kw_namespace_list = ['from', 'import', 'as'] wordop_list = ['and', 'or', 'not', 'in', 'is'] def make_python_patterns(additional_keywords=[], additional_builtins=[]): """Strongly inspired from idlelib.ColorDelegator.make_pat""" kw = r"\b" + any("keyword", kwlist + additional_keywords) + r"\b" kw_namespace = r"\b" + any("namespace", kw_namespace_list) + r"\b" word_operators = r"\b" + any("operator_word", wordop_list) + r"\b" builtinlist = [str(name) for name in dir(builtins) if not name.startswith('_')] + additional_builtins for v in ['None', 'True', 'False']: builtinlist.remove(v) builtin = r"([^.'\"\\#]\b|^)" + any("builtin", builtinlist) + r"\b" builtin_fct = any("builtin_fct", [r'_{2}[a-zA-Z_]*_{2}']) comment = any("comment", [r"#[^\n]*"]) instance = any("instance", [r"\bself\b", r"\bcls\b"]) decorator = any('decorator', [r'@\w*', r'.setter']) number = any("number", [r"\b[+-]?[0-9]+[lLjJ]?\b", r"\b[+-]?0[xX][0-9A-Fa-f]+[lL]?\b", r"\b[+-]?0[oO][0-7]+[lL]?\b", r"\b[+-]?0[bB][01]+[lL]?\b", r"\b[+-]?[0-9]+(?:\.[0-9]+)?(?:[eE][+-]?[0-9]+)?[jJ]?\b"]) sqstring = r"(\b[rRuU])?'[^'\\\n]*(\\.[^'\\\n]*)*'?" dqstring = r'(\b[rRuU])?"[^"\\\n]*(\\.[^"\\\n]*)*"?' uf_sqstring = r"(\b[rRuU])?'[^'\\\n]*(\\.[^'\\\n]*)*(\\)$(?!')$" uf_dqstring = r'(\b[rRuU])?"[^"\\\n]*(\\.[^"\\\n]*)*(\\)$(?!")$' sq3string = r"(\b[rRuU])?'''[^'\\]*((\\.|'(?!''))[^'\\]*)*(''')?" dq3string = r'(\b[rRuU])?"""[^"\\]*((\\.|"(?!""))[^"\\]*)*(""")?' uf_sq3string = r"(\b[rRuU])?'''[^'\\]*((\\.|'(?!''))[^'\\]*)*(\\)?(?!''')$" uf_dq3string = r'(\b[rRuU])?"""[^"\\]*((\\.|"(?!""))[^"\\]*)*(\\)?(?!""")$' string = any("string", [sq3string, dq3string, sqstring, dqstring]) ufstring1 = any("uf_sqstring", [uf_sqstring]) ufstring2 = any("uf_dqstring", [uf_dqstring]) ufstring3 = any("uf_sq3string", [uf_sq3string]) ufstring4 = any("uf_dq3string", [uf_dq3string]) return "|".join([instance, decorator, kw, kw_namespace, builtin, word_operators, builtin_fct, comment, ufstring1, ufstring2, ufstring3, ufstring4, string, number, any("SYNC", [r"\n"])]) # # Pygments Syntax highlighter # class PythonSH(BaseSH): """ Highlights python syntax in the editor. """ mimetype = 'text/x-python' # Syntax highlighting rules: PROG = re.compile(make_python_patterns(), re.S) IDPROG = re.compile(r"\s+(\w+)", re.S) ASPROG = re.compile(r".*?\b(as)\b") # Syntax highlighting states (from one text block to another): (NORMAL, INSIDE_SQ3STRING, INSIDE_DQ3STRING, INSIDE_SQSTRING, INSIDE_DQSTRING) = list(range(5)) # Comments suitable for Outline Explorer OECOMMENT = re.compile('^(# ?--[-]+|##[#]+ )[ -]*[^- ]+') def __init__(self, parent, color_scheme=None): super(PythonSH, self).__init__(parent, color_scheme) self.import_statements = [] self.global_import_statements = [] self.docstrings = [] def highlight_block(self, text, block): prev_block = block.previous() prev_state = TextBlockHelper.get_state(prev_block) if prev_state == self.INSIDE_DQ3STRING: offset = -4 text = r'""" ' + text elif prev_state == self.INSIDE_SQ3STRING: offset = -4 text = r"''' " + text elif prev_state == self.INSIDE_DQSTRING: offset = -2 text = r'" ' + text elif prev_state == self.INSIDE_SQSTRING: offset = -2 text = r"' " + text else: offset = 0 import_stmt = None # set docstring dynamic attribute, used by the fold detector. block.docstring = False self.setFormat(0, len(text), self.formats["normal"]) state = self.NORMAL match = self.PROG.search(text) while match: for key, value in list(match.groupdict().items()): if value: start, end = match.span(key) start = max([0, start + offset]) end = max([0, end + offset]) if key == "uf_sq3string": self.setFormat(start, end - start, self.formats["docstring"]) block.docstring = True state = self.INSIDE_SQ3STRING elif key == "uf_dq3string": self.setFormat(start, end - start, self.formats["docstring"]) block.docstring = True state = self.INSIDE_DQ3STRING elif key == "uf_sqstring": self.setFormat(start, end - start, self.formats["string"]) state = self.INSIDE_SQSTRING elif key == "uf_dqstring": self.setFormat(start, end - start, self.formats["string"]) state = self.INSIDE_DQSTRING elif key == 'builtin_fct': # trick to highlight __init__, __add__ and so on with # builtin color self.setFormat(start, end - start, self.formats["constant"]) else: if ('"""' in value or "'''" in value) and \ key != 'comment': # highlight docstring with a different color block.docstring = True self.setFormat(start, end - start, self.formats["docstring"]) elif key == 'decorator': # highlight decorators self.setFormat(start, end - start, self.formats["decorator"]) elif value in ['self', 'cls']: # highlight self attribute self.setFormat(start, end - start, self.formats["self"]) else: # highlight all other tokens self.setFormat(start, end - start, self.formats[key]) if key == "keyword": if value in ("def", "class"): match1 = self.IDPROG.match(text, end) if match1: start1, end1 = match1.span(1) fmt_key = ('definition' if value == 'class' else 'function') fmt = self.formats[fmt_key] self.setFormat(start1, end1 - start1, fmt) if key == 'namespace': import_stmt = text.strip() # color all the "as" words on same line, except # if in a comment; cheap approximation to the # truth if '#' in text: endpos = text.index('#') else: endpos = len(text) while True: match1 = self.ASPROG.match(text, end, endpos) if not match1: break start, end = match1.span(1) self.setFormat(start, end - start, self.formats["namespace"]) # next match match = self.PROG.search(text, match.end()) TextBlockHelper.set_state(block, state) # update import zone if import_stmt is not None: block.import_stmt = import_stmt self.import_statements.append(block) block.import_stmt = True elif block.docstring: self.docstrings.append(block) def rehighlight(self): self.import_statements[:] = [] self.global_import_statements[:] = [] self.docstrings[:] = [] super(PythonSH, self).rehighlight() Turing-0.11-beta/pyqode/python/panels/ 0000775 0000000 0000000 00000000000 13314727572 0017733 5 ustar 00root root 0000000 0000000 Turing-0.11-beta/pyqode/python/panels/__init__.py 0000664 0000000 0000000 00000001253 13314727572 0022045 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ This packages contains the python specific panels: - QuickDocPanel: show docstring of functions/classes. - SymbolBrowserPanel: combo box that shows the symbols in the current document. """ from pyqode.python.panels.symbol_browser import SymbolBrowserPanel from pyqode.python.panels.quick_doc import QuickDocPanel try: # load pyqode.python resources (code completion icons) from pyqode.python._forms import pyqode_python_icons_rc # DO NOT REMOVE!!! except ImportError: # PyQt/PySide might not be available for the interpreter that run the # backend pass __all__ = [ 'QuickDocPanel', 'SymbolBrowserPanel', ] Turing-0.11-beta/pyqode/python/panels/quick_doc.py 0000664 0000000 0000000 00000010014 13314727572 0022242 0 ustar 00root root 0000000 0000000 # -*- coding: utf-8 -*- """ Contains the quick documentation panel """ from docutils.core import publish_parts from pyqode.core import icons from pyqode.qt import QtCore, QtWidgets from pyqode.core.api import Panel, TextHelper from pyqode.python.backend.workers import quick_doc class QuickDocPanel(Panel): """ Shows the python documentation for the word under the text cursor. This panel quickly shows the documentation of the symbol under cursor. """ _KEYS = ['panelBackground', 'background', 'panelForeground', 'panelHighlight'] def __init__(self): super(QuickDocPanel, self).__init__(dynamic=True) # layouts layout = QtWidgets.QHBoxLayout() self.setLayout(layout) child_layout = QtWidgets.QVBoxLayout() # A QTextEdit to show the doc self.text_edit = QtWidgets.QTextEdit() self.text_edit.setReadOnly(True) self.text_edit.setAcceptRichText(True) layout.addWidget(self.text_edit) # A QPushButton (inside a child layout for a better alignment) # to close the panel self.bt_close = QtWidgets.QPushButton() self.bt_close.setIcon(icons.icon( 'window-close', ':/pyqode-icons/rc/close.png', 'fa.close')) self.bt_close.setIconSize(QtCore.QSize(16, 16)) self.bt_close.clicked.connect(self.hide) child_layout.addWidget(self.bt_close) child_layout.addStretch() layout.addLayout(child_layout) # Action self.action_quick_doc = QtWidgets.QAction( _('Show documentation'), self) self.action_quick_doc.setShortcut('Alt+Q') icon = icons.icon(qta_name='fa.book') if icon: self.action_quick_doc.setIcon(icon) self.action_quick_doc.triggered.connect( self._on_action_quick_doc_triggered) def on_install(self, editor): super(QuickDocPanel, self).on_install(editor) self.setVisible(False) def on_state_changed(self, state): super(QuickDocPanel, self).on_state_changed(state) if state: self.editor.add_action(self.action_quick_doc, sub_menu='Python') else: self.editor.remove_action(self.action_quick_doc, sub_menu='Python') def _on_action_quick_doc_triggered(self): tc = TextHelper(self.editor).word_under_cursor(select_whole_word=True) request_data = { 'code': self.editor.toPlainText(), 'line': tc.blockNumber(), 'column': tc.columnNumber(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } self.editor.backend.send_request( quick_doc, request_data, on_receive=self._on_results_available) def _on_results_available(self, results): self.setVisible(True) if len(results) and results[0] != '': string = '\n\n'.join(results) string = publish_parts( string, writer_name='html', settings_overrides={'output_encoding': 'unicode'})[ 'html_body'] string = string.replace('colspan="2"', 'colspan="0"') string = string.replace('