content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
# Advent of Code - Day 7 - Part One
from collections import defaultdict
from defaultlist import defaultlist
| [
2,
33732,
286,
6127,
532,
3596,
767,
532,
2142,
1881,
198,
198,
6738,
17268,
1330,
4277,
11600,
198,
6738,
4277,
4868,
1330,
4277,
4868,
628,
198
] | 4.269231 | 26 |
import numpy as np
import gym
from gym import spaces
from gym.utils import seeding
from nsmr.envs.nsmr import NSMR
from nsmr.envs.renderer import Renderer
| [
11748,
299,
32152,
355,
45941,
198,
11748,
11550,
198,
6738,
11550,
1330,
9029,
198,
6738,
11550,
13,
26791,
1330,
384,
8228,
198,
198,
6738,
299,
5796,
81,
13,
268,
14259,
13,
77,
5796,
81,
1330,
10896,
13599,
198,
6738,
299,
5796,
81,
13,
268,
14259,
13,
10920,
11882,
1330,
28703,
11882,
198
] | 3 | 52 |
from django.conf import settings as django_settings
| [
6738,
42625,
14208,
13,
10414,
1330,
6460,
355,
42625,
14208,
62,
33692,
628
] | 4.076923 | 13 |
from distutils.core import setup, Extension
from Cython.Build import cythonize
extension = [Extension('server_c', ['server_c.pyx'])]
setup(ext_modules = cythonize(extension)) | [
6738,
1233,
26791,
13,
7295,
1330,
9058,
11,
27995,
198,
6738,
327,
7535,
13,
15580,
1330,
3075,
400,
261,
1096,
198,
198,
2302,
3004,
796,
685,
11627,
3004,
10786,
15388,
62,
66,
3256,
37250,
15388,
62,
66,
13,
9078,
87,
6,
12962,
60,
198,
198,
40406,
7,
2302,
62,
18170,
796,
3075,
400,
261,
1096,
7,
2302,
3004,
4008
] | 2.983051 | 59 |
"""
The module sanity_check includes classes to check that train and tests are similar.
"""
from .similar_columns import SimilarColumns
__all__ = [
"SimilarColumns",
]
| [
37811,
198,
464,
8265,
34182,
62,
9122,
3407,
6097,
284,
2198,
326,
4512,
290,
5254,
389,
2092,
13,
198,
37811,
198,
198,
6738,
764,
38610,
62,
28665,
82,
1330,
11014,
39470,
82,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
18925,
39470,
82,
1600,
198,
60,
198
] | 3.411765 | 51 |
from abc import abstractmethod, ABC
placeholders = [FormId, ResponseId]
_yt_link = 'dQw4w9WgXcQ'
yt_url = f'https://youtu.be/{_yt_link}'
| [
6738,
450,
66,
1330,
12531,
24396,
11,
9738,
628,
628,
198,
198,
5372,
10476,
796,
685,
8479,
7390,
11,
18261,
7390,
60,
628,
628,
198,
62,
20760,
62,
8726,
796,
705,
67,
48,
86,
19,
86,
24,
54,
70,
55,
66,
48,
6,
198,
20760,
62,
6371,
796,
277,
6,
5450,
1378,
32594,
13,
1350,
14,
90,
62,
20760,
62,
8726,
92,
6,
198
] | 2.28125 | 64 |
'''
Created on Feb 24, 2019
@author: ramon
'''
from PyQt5 import QtCore, QtGui, QtWidgets
import numpy as np
from Components import Frame_Template
DEGREE = 57.2958
class Frame_Transform( Frames_Template ):
'''
classdocs
'''
def __init__(self, parent):
'''
Constructor
'''
super().__init__( parent)
# Create widgets
self.init_widgets()
# Label them
self.retranslateUi()
# Seekbar signals
self.frame_sb_x_origin.valueChanged.connect(self.on_x_origin_changed)
self.frame_sb_y_origin.valueChanged.connect(self.on_y_origin_changed)
self.frame_sb_z_origin.valueChanged.connect(self.on_z_origin_changed)
self.frame_sb_x_trans.valueChanged.connect(self.on_x_trans_changed)
self.frame_sb_y_trans.valueChanged.connect(self.on_y_trans_changed)
self.frame_sb_z_trans.valueChanged.connect(self.on_z_trans_changed)
self.frame_sb_x_angle.valueChanged.connect(self.on_x_angle_changed)
self.frame_sb_y_angle.valueChanged.connect(self.on_y_angle_changed)
self.frame_sb_z_angle.valueChanged.connect(self.on_z_angle_changed)
# DoubleSpinBox signals
self.frame_spinb_x_origin.valueChanged.connect(self.on_x_origin_changed)
self.frame_spinb_y_origin.valueChanged.connect(self.on_y_origin_changed)
self.frame_spinb_z_origin.valueChanged.connect(self.on_z_origin_changed)
self.frame_spinb_x_trans.valueChanged.connect(self.on_x_trans_changed)
self.frame_spinb_y_trans.valueChanged.connect(self.on_y_trans_changed)
self.frame_spinb_z_trans.valueChanged.connect(self.on_z_trans_changed)
self.frame_spinb_x_angle.valueChanged.connect(self.on_x_angle_changed)
self.frame_spinb_y_angle.valueChanged.connect(self.on_y_angle_changed)
self.frame_spinb_z_angle.valueChanged.connect(self.on_z_angle_changed)
self.show()
# Get a label number
# Destroy/Clean object and release its label
# Callbacks
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
@QtCore.pyqtSlot()
# Manage sequence of Transformations
if __name__ == '__main__':
a = Frame_Transform()
print('casa')
| [
7061,
6,
198,
41972,
319,
3158,
1987,
11,
13130,
198,
198,
31,
9800,
25,
15770,
261,
198,
7061,
6,
628,
198,
6738,
9485,
48,
83,
20,
1330,
33734,
14055,
11,
33734,
8205,
72,
11,
33734,
54,
312,
11407,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
36109,
1330,
25184,
62,
30800,
198,
198,
35,
7156,
11587,
796,
7632,
13,
1959,
3365,
628,
220,
220,
220,
220,
628,
198,
4871,
25184,
62,
41762,
7,
36291,
62,
30800,
15179,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1398,
31628,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2560,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
28407,
273,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
15003,
834,
7,
2560,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
40803,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
15003,
62,
28029,
11407,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36052,
606,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1186,
26084,
17660,
52,
72,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
40749,
5657,
10425,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
87,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
88,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
89,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
87,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
88,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
89,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
87,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
88,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
36299,
62,
89,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11198,
4561,
259,
14253,
10425,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
87,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
88,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
89,
62,
47103,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
47103,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
87,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
88,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
89,
62,
7645,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
7645,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
87,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
87,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
88,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
88,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
39706,
65,
62,
89,
62,
9248,
13,
8367,
31813,
13,
8443,
7,
944,
13,
261,
62,
89,
62,
9248,
62,
40985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12860,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
257,
6167,
1271,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
19448,
14,
32657,
2134,
290,
2650,
663,
6167,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4889,
10146,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
48,
83,
14055,
13,
9078,
39568,
38963,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1869,
496,
8379,
286,
26981,
602,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
257,
796,
25184,
62,
41762,
3419,
198,
220,
220,
220,
3601,
10786,
66,
15462,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220
] | 2.056045 | 1,249 |
import os
import shutil
import codecs
from jinja2 import Environment, FileSystemLoader
CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
TEMPLATE_ENVIRONMENT = Environment(loader=FileSystemLoader(os.path.join(CURRENT_PATH, 'templates')))
TEMPLATE = "report.html"
| [
11748,
28686,
198,
11748,
4423,
346,
198,
11748,
40481,
82,
198,
6738,
474,
259,
6592,
17,
1330,
9344,
11,
9220,
11964,
17401,
198,
198,
34,
39237,
62,
34219,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
198,
51,
3620,
6489,
6158,
62,
1677,
53,
4663,
1340,
10979,
796,
9344,
7,
29356,
28,
8979,
11964,
17401,
7,
418,
13,
6978,
13,
22179,
7,
34,
39237,
62,
34219,
11,
705,
11498,
17041,
6,
22305,
198,
51,
3620,
6489,
6158,
796,
366,
13116,
13,
6494,
1,
198
] | 2.833333 | 96 |
#!/usr/bin/env python
import sys
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
25064,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.354839 | 31 |
# API FORMS
from django import forms | [
2,
7824,
7473,
5653,
198,
198,
6738,
42625,
14208,
1330,
5107
] | 3.363636 | 11 |
from io import StringIO
from dateutil.relativedelta import relativedelta
from django.core.management import call_command
from django.test import TestCase, override_settings
from django.utils import timezone
from hypha.apply.home.models import ApplyHomePage
from .factories import ProjectFactory, ReportConfigFactory, ReportFactory
@override_settings(ROOT_URLCONF='hypha.apply.urls')
| [
6738,
33245,
1330,
10903,
9399,
198,
198,
6738,
3128,
22602,
13,
2411,
265,
1572,
12514,
1330,
48993,
1572,
12514,
198,
6738,
42625,
14208,
13,
7295,
13,
27604,
1330,
869,
62,
21812,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
11,
20957,
62,
33692,
198,
6738,
42625,
14208,
13,
26791,
1330,
640,
11340,
198,
198,
6738,
2537,
7566,
13,
39014,
13,
11195,
13,
27530,
1330,
27967,
16060,
9876,
198,
198,
6738,
764,
22584,
1749,
1330,
4935,
22810,
11,
6358,
16934,
22810,
11,
6358,
22810,
628,
198,
31,
2502,
13154,
62,
33692,
7,
13252,
2394,
62,
4261,
5639,
1340,
37,
11639,
12114,
7566,
13,
39014,
13,
6371,
82,
11537,
198
] | 3.559633 | 109 |
CPT_ONEINCH_V1 = '1inch-v1'
CPT_ONEINCH_V2 = '1inch-v2'
| [
8697,
51,
62,
11651,
1268,
3398,
62,
53,
16,
796,
705,
16,
8589,
12,
85,
16,
6,
198,
8697,
51,
62,
11651,
1268,
3398,
62,
53,
17,
796,
705,
16,
8589,
12,
85,
17,
6,
198
] | 1.555556 | 36 |
#
# PySNMP MIB module ZXR10-MACPING-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZXR10-MACPING-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:48:20 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
NotificationType, ModuleIdentity, Counter32, enterprises, mgmt, IpAddress, iso, Bits, Unsigned32, MibIdentifier, TimeTicks, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Integer32, experimental, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "ModuleIdentity", "Counter32", "enterprises", "mgmt", "IpAddress", "iso", "Bits", "Unsigned32", "MibIdentifier", "TimeTicks", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Integer32", "experimental", "ObjectIdentity")
DisplayString, RowStatus, MacAddress, TruthValue, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "RowStatus", "MacAddress", "TruthValue", "TextualConvention")
zxr10L2vpn, = mibBuilder.importSymbols("ZXR10-SMI", "zxr10L2vpn")
zxr10MacPingMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4))
zxr10MacPingTable = MibTable((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1), )
if mibBuilder.loadTexts: zxr10MacPingTable.setStatus('current')
if mibBuilder.loadTexts: zxr10MacPingTable.setDescription('mac ping information table.')
zxr10MacPingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1), ).setIndexNames((0, "ZXR10-MACPING-MIB", "zxr10PingMacSerial"))
if mibBuilder.loadTexts: zxr10MacPingEntry.setStatus('current')
if mibBuilder.loadTexts: zxr10MacPingEntry.setDescription('')
zxr10PingMacSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacSerial.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacSerial.setDescription('')
zxr10PingMacDestMac = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 2), MacAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacDestMac.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacDestMac.setDescription('dest mac')
zxr10PingMacControlOutEtherIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacControlOutEtherIf.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacControlOutEtherIf.setDescription('output interface if-index')
zxr10PingMacIfOption = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("none", 0), ("option", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacIfOption.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacIfOption.setDescription('option,default:none ')
zxr10PingMacPacketCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacPacketCount.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacPacketCount.setDescription('packet count')
zxr10PingMacTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 60))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacTimeOut.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacTimeOut.setDescription('timeout ')
zxr10PingMacHops = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacHops.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacHops.setDescription('hops ')
zxr10PingMacControlResultType = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("summary", 0), ("detail", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacControlResultType.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacControlResultType.setDescription('result type ')
zxr10PingMacTrapOncompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 9), TruthValue().clone('true')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacTrapOncompletion.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacTrapOncompletion.setDescription('')
zxr10PingMacRosStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("not-active", 1), ("start-ping", 2), ("ping-processing", 3), ("ping-completed", 4))).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacRosStatus.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacRosStatus.setDescription('')
zxr10PingMacEntryOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 11), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacEntryOwner.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacEntryOwner.setDescription('')
zxr10PingMacIfPeOption = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 12), OptionType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacIfPeOption.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacIfPeOption.setDescription('')
zxr10PingMacVfiName = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 13), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacVfiName.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacVfiName.setDescription('')
zxr10PingMacPeerAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 1, 1, 14), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: zxr10PingMacPeerAddress.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacPeerAddress.setDescription('')
zxr10PingMacResultTable = MibTable((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2), )
if mibBuilder.loadTexts: zxr10PingMacResultTable.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultTable.setDescription('mac ping result table.')
zxr10pingMacResultEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1), ).setIndexNames((0, "ZXR10-MACPING-MIB", "zxr10PingMacResultSerial"))
if mibBuilder.loadTexts: zxr10pingMacResultEntry.setStatus('current')
if mibBuilder.loadTexts: zxr10pingMacResultEntry.setDescription('')
zxr10PingMacResultSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultSerial.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultSerial.setDescription('')
zxr10PingMacResultSentPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultSentPkts.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultSentPkts.setDescription('send packets')
zxr10PingMacResultRcvPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRcvPkts.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRcvPkts.setDescription('receive packets')
zxr10PingMacResultRoundTripMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripMinTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripMinTime.setDescription('min RTT')
zxr10PingMacResultRoundTripMaxTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripMaxTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripMaxTime.setDescription('max RTT')
zxr10PingMacResultRoundTripAvgTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripAvgTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundTripAvgTime.setDescription('average RTT')
zxr10PingMacResultType = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("summary", 0), ("detail", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultType.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultType.setDescription('result type:(0:summary,1:detail)')
zxr10PingMacExtResultDestIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultDestIfName.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultDestIfName.setDescription('destion interface')
zxr10PingMacExtResultDestHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultDestHostName.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultDestHostName.setDescription('destion hostname')
zxr10PingMacExtResultSourceIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultSourceIfName.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultSourceIfName.setDescription('source interface')
zxr10PingMacExtResultSourceHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 17))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultSourceHostName.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultSourceHostName.setDescription('source hostname')
zxr10PingMacExtResultOutVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultOutVlanId.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultOutVlanId.setDescription('out vlanid')
zxr10PingMacExtResultInVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacExtResultInVlanId.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacExtResultInVlanId.setDescription('in vlanid')
zxr10PingMacResultEntryOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 14), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultEntryOwner.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultEntryOwner.setDescription('')
zxr10PingMacResultRoundWobbleMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleMinTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleMinTime.setDescription('min RWT')
zxr10PingMacResultRoundWobbleMaxTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleMaxTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleMaxTime.setDescription('max RWT')
zxr10PingMacResultRoundWobbleAvgTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 2, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleAvgTime.setStatus('current')
if mibBuilder.loadTexts: zxr10PingMacResultRoundWobbleAvgTime.setDescription('average RWT')
macpingNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 3))
macpingTrapResult = NotificationType((1, 3, 6, 1, 4, 1, 3902, 3, 104, 4, 3, 1)).setObjects(("ZXR10-MACPING-MIB", "zxr10PingMacResultSerial"), ("ZXR10-MACPING-MIB", "zxr10PingMacResultSentPkts"), ("ZXR10-MACPING-MIB", "zxr10PingMacResultRcvPkts"), ("ZXR10-MACPING-MIB", "zxr10PingMacResultRoundTripMinTime"), ("ZXR10-MACPING-MIB", "zxr10PingMacResultRoundTripMaxTime"), ("ZXR10-MACPING-MIB", "zxr10PingMacResultRoundTripAvgTime"))
if mibBuilder.loadTexts: macpingTrapResult.setStatus('current')
if mibBuilder.loadTexts: macpingTrapResult.setDescription("The newMaster trap indicates that the sending agent has transitioned to 'Master' state.")
mibBuilder.exportSymbols("ZXR10-MACPING-MIB", zxr10pingMacResultEntry=zxr10pingMacResultEntry, zxr10PingMacTimeOut=zxr10PingMacTimeOut, zxr10PingMacPacketCount=zxr10PingMacPacketCount, macpingTrapResult=macpingTrapResult, zxr10PingMacResultType=zxr10PingMacResultType, zxr10PingMacResultRoundTripMaxTime=zxr10PingMacResultRoundTripMaxTime, zxr10PingMacVfiName=zxr10PingMacVfiName, zxr10PingMacExtResultSourceHostName=zxr10PingMacExtResultSourceHostName, zxr10PingMacEntryOwner=zxr10PingMacEntryOwner, zxr10PingMacControlResultType=zxr10PingMacControlResultType, zxr10PingMacIfPeOption=zxr10PingMacIfPeOption, zxr10PingMacControlOutEtherIf=zxr10PingMacControlOutEtherIf, zxr10MacPingMIB=zxr10MacPingMIB, DisplayString=DisplayString, zxr10PingMacResultRoundWobbleAvgTime=zxr10PingMacResultRoundWobbleAvgTime, zxr10PingMacResultRcvPkts=zxr10PingMacResultRcvPkts, zxr10PingMacTrapOncompletion=zxr10PingMacTrapOncompletion, zxr10PingMacExtResultDestIfName=zxr10PingMacExtResultDestIfName, zxr10MacPingEntry=zxr10MacPingEntry, zxr10PingMacExtResultOutVlanId=zxr10PingMacExtResultOutVlanId, zxr10PingMacHops=zxr10PingMacHops, zxr10PingMacResultRoundWobbleMaxTime=zxr10PingMacResultRoundWobbleMaxTime, zxr10PingMacResultSerial=zxr10PingMacResultSerial, zxr10PingMacIfOption=zxr10PingMacIfOption, zxr10PingMacResultSentPkts=zxr10PingMacResultSentPkts, zxr10PingMacExtResultInVlanId=zxr10PingMacExtResultInVlanId, zxr10PingMacPeerAddress=zxr10PingMacPeerAddress, zxr10PingMacResultRoundWobbleMinTime=zxr10PingMacResultRoundWobbleMinTime, macpingNotifications=macpingNotifications, zxr10PingMacExtResultDestHostName=zxr10PingMacExtResultDestHostName, zxr10PingMacRosStatus=zxr10PingMacRosStatus, zxr10PingMacResultTable=zxr10PingMacResultTable, zxr10PingMacResultEntryOwner=zxr10PingMacResultEntryOwner, zxr10MacPingTable=zxr10MacPingTable, zxr10PingMacResultRoundTripMinTime=zxr10PingMacResultRoundTripMinTime, zxr10PingMacSerial=zxr10PingMacSerial, zxr10PingMacResultRoundTripAvgTime=zxr10PingMacResultRoundTripAvgTime, zxr10PingMacExtResultSourceIfName=zxr10PingMacExtResultSourceIfName, OptionType=OptionType, zxr10PingMacDestMac=zxr10PingMacDestMac)
| [
2,
198,
2,
9485,
15571,
7378,
337,
9865,
8265,
1168,
55,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
357,
4023,
1378,
16184,
76,
489,
8937,
13,
785,
14,
79,
893,
11632,
8,
198,
2,
7054,
45,
13,
16,
2723,
2393,
1378,
14,
14490,
14,
67,
615,
47562,
19,
14,
13603,
14,
76,
571,
82,
13,
16184,
76,
489,
8937,
13,
785,
14,
292,
77,
16,
14,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
198,
2,
21522,
771,
416,
279,
893,
11632,
12,
15,
13,
18,
13,
19,
379,
3300,
1737,
220,
352,
1315,
25,
2780,
25,
1238,
13130,
198,
2,
1550,
2583,
42274,
54,
15567,
19,
12,
44,
12,
1415,
2425,
3859,
21450,
2196,
1248,
13,
20,
13,
15,
416,
2836,
288,
615,
47562,
19,
198,
2,
8554,
11361,
2196,
513,
13,
22,
13,
18,
357,
12286,
11,
1526,
2681,
13130,
11,
7769,
25,
1954,
25,
1314,
8,
220,
198,
2,
198,
10267,
33234,
7483,
11,
34142,
11,
2556,
316,
10100,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
1600,
366,
10267,
33234,
7483,
1600,
366,
46541,
1600,
366,
12349,
316,
10100,
4943,
198,
45,
2434,
40161,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
1677,
5883,
1137,
6234,
1600,
366,
45,
2434,
40161,
4943,
198,
11395,
10699,
3103,
2536,
2913,
11,
11052,
17257,
3103,
2536,
2913,
11,
1482,
2536,
6003,
9492,
5458,
11,
1482,
2536,
6003,
38176,
11,
14206,
11395,
3103,
2536,
2913,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
2200,
20032,
12529,
1600,
366,
11395,
10699,
3103,
2536,
2913,
1600,
366,
11395,
17257,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
9492,
5458,
1600,
366,
3103,
2536,
6003,
38176,
1600,
366,
28008,
11395,
3103,
2536,
2913,
4943,
198,
26796,
38143,
3610,
11,
42808,
13247,
11,
9515,
13247,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
10943,
37,
1600,
366,
26796,
38143,
3610,
1600,
366,
3673,
2649,
13247,
1600,
366,
10267,
13247,
4943,
198,
3673,
2649,
6030,
11,
19937,
7390,
26858,
11,
15034,
2624,
11,
23941,
11,
10527,
16762,
11,
314,
79,
20231,
11,
47279,
11,
44733,
11,
791,
32696,
2624,
11,
337,
571,
33234,
7483,
11,
3862,
51,
3378,
11,
15034,
2414,
11,
337,
571,
3351,
282,
283,
11,
337,
571,
10962,
11,
337,
571,
10962,
25166,
11,
337,
571,
10962,
39470,
11,
35094,
469,
2624,
11,
34142,
2624,
11,
11992,
11,
9515,
7390,
26858,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
50,
8895,
1600,
366,
3673,
2649,
6030,
1600,
366,
26796,
7390,
26858,
1600,
366,
31694,
2624,
1600,
366,
9255,
18166,
1600,
366,
11296,
16762,
1600,
366,
40,
79,
20231,
1600,
366,
26786,
1600,
366,
33,
896,
1600,
366,
3118,
32696,
2624,
1600,
366,
44,
571,
33234,
7483,
1600,
366,
7575,
51,
3378,
1600,
366,
31694,
2414,
1600,
366,
44,
571,
3351,
282,
283,
1600,
366,
44,
571,
10962,
1600,
366,
44,
571,
10962,
25166,
1600,
366,
44,
571,
10962,
39470,
1600,
366,
38,
559,
469,
2624,
1600,
366,
46541,
2624,
1600,
366,
23100,
9134,
1600,
366,
10267,
7390,
26858,
4943,
198,
23114,
10100,
11,
11314,
19580,
11,
4100,
20231,
11,
14056,
11395,
11,
8255,
723,
3103,
4018,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
4825,
1600,
366,
23114,
10100,
1600,
366,
25166,
19580,
1600,
366,
14155,
20231,
1600,
366,
38782,
11395,
1600,
366,
8206,
723,
3103,
4018,
4943,
198,
42592,
81,
940,
43,
17,
85,
21999,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
40692,
49,
940,
12,
50,
8895,
1600,
366,
42592,
81,
940,
43,
17,
85,
21999,
4943,
198,
42592,
81,
940,
14155,
49806,
8895,
33,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
4008,
198,
198,
42592,
81,
940,
14155,
49806,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
14155,
49806,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
14155,
49806,
10962,
13,
2617,
11828,
10786,
20285,
29400,
1321,
3084,
2637,
8,
198,
42592,
81,
940,
14155,
49806,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
32634,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
14155,
49806,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
14155,
49806,
30150,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
32634,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
32634,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
32634,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
24159,
14155,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
362,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
24159,
14155,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
24159,
14155,
13,
2617,
11828,
10786,
16520,
8352,
11537,
198,
42592,
81,
940,
49806,
14155,
15988,
7975,
36,
490,
1532,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
15988,
7975,
36,
490,
1532,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
15988,
7975,
36,
490,
1532,
13,
2617,
11828,
10786,
22915,
7071,
611,
12,
9630,
11537,
198,
42592,
81,
940,
49806,
14155,
1532,
19722,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
23108,
1600,
657,
828,
5855,
18076,
1600,
352,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
1532,
19722,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
1532,
19722,
13,
2617,
11828,
10786,
18076,
11,
12286,
25,
23108,
705,
8,
198,
42592,
81,
940,
49806,
14155,
47,
8317,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
47,
8317,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
47,
8317,
12332,
13,
2617,
11828,
10786,
8002,
316,
954,
11537,
198,
42592,
81,
940,
49806,
14155,
7575,
7975,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
3126,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
7575,
7975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
7575,
7975,
13,
2617,
11828,
10786,
48678,
705,
8,
198,
42592,
81,
940,
49806,
14155,
39,
2840,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
838,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
39,
2840,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
39,
2840,
13,
2617,
11828,
10786,
21936,
705,
8,
198,
42592,
81,
940,
49806,
14155,
15988,
23004,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
49736,
1600,
657,
828,
5855,
49170,
1600,
352,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
15988,
23004,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
15988,
23004,
6030,
13,
2617,
11828,
10786,
20274,
2099,
705,
8,
198,
42592,
81,
940,
49806,
14155,
51,
2416,
2202,
785,
24547,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
860,
828,
14056,
11395,
22446,
21018,
10786,
7942,
11537,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
51,
2416,
2202,
785,
24547,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
51,
2416,
2202,
785,
24547,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
35740,
19580,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1662,
12,
5275,
1600,
352,
828,
5855,
9688,
12,
13886,
1600,
362,
828,
5855,
13886,
12,
36948,
1600,
513,
828,
5855,
13886,
12,
785,
16838,
1600,
604,
4008,
737,
21018,
7,
16,
29720,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
35740,
19580,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
35740,
19580,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
30150,
42419,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
1367,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
30150,
42419,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
30150,
42419,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
1532,
6435,
19722,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
1105,
828,
16018,
6030,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
1532,
6435,
19722,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
1532,
6435,
19722,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
53,
12463,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
1511,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
53,
12463,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
53,
12463,
5376,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
6435,
263,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
352,
11,
352,
11,
1478,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
6435,
263,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
6435,
263,
20231,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
23004,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
10962,
13,
2617,
11828,
10786,
20285,
29400,
1255,
3084,
2637,
8,
198,
42592,
81,
940,
13886,
14155,
23004,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
32634,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
13886,
14155,
23004,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
13886,
14155,
23004,
30150,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
23004,
32634,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
352,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
32634,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
32634,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
13,
2617,
11828,
10786,
21280,
24624,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
13,
2617,
11828,
10786,
260,
15164,
24624,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
13,
2617,
11828,
10786,
1084,
11923,
51,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
13,
2617,
11828,
10786,
9806,
11923,
51,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
13,
2617,
11828,
10786,
23913,
11923,
51,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
49736,
1600,
657,
828,
5855,
49170,
1600,
352,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
6030,
13,
2617,
11828,
10786,
20274,
2099,
37498,
15,
25,
49736,
11,
16,
25,
49170,
8,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
24159,
1532,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
807,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
3933,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
1532,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
1532,
5376,
13,
2617,
11828,
10786,
16520,
295,
7071,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
24159,
17932,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
860,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
1596,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
17932,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
17932,
5376,
13,
2617,
11828,
10786,
16520,
295,
2583,
3672,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
7416,
1532,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
838,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
3933,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
1532,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
1532,
5376,
13,
2617,
11828,
10786,
10459,
7071,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
7416,
17932,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1367,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
1596,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
17932,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
17932,
5376,
13,
2617,
11828,
10786,
10459,
2583,
3672,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
7975,
53,
9620,
7390,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
42479,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7975,
53,
9620,
7390,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7975,
53,
9620,
7390,
13,
2617,
11828,
10786,
448,
410,
9620,
312,
11537,
198,
42592,
81,
940,
49806,
14155,
11627,
23004,
818,
53,
9620,
7390,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
42479,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
818,
53,
9620,
7390,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
818,
53,
9620,
7390,
13,
2617,
11828,
10786,
259,
410,
9620,
312,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
30150,
42419,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1478,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
30150,
42419,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
30150,
42419,
13,
2617,
11828,
7,
7061,
8,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
9452,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1315,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
9452,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
9452,
7575,
13,
2617,
11828,
10786,
1084,
33212,
51,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
11518,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1467,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
11518,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
11518,
7575,
13,
2617,
11828,
10786,
9806,
33212,
51,
11537,
198,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
48997,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
362,
11,
352,
11,
1596,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
48997,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
48997,
7575,
13,
2617,
11828,
10786,
23913,
33212,
51,
11537,
198,
20285,
13886,
3673,
6637,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
513,
4008,
198,
20285,
13886,
51,
2416,
23004,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
5014,
2999,
11,
513,
11,
14436,
11,
604,
11,
513,
11,
352,
29720,
2617,
10267,
82,
7,
7203,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
32634,
12340,
5855,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
12340,
5855,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
12340,
5855,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
12340,
5855,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
12340,
5855,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
366,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
8352,
13886,
51,
2416,
23004,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
8352,
13886,
51,
2416,
23004,
13,
2617,
11828,
7203,
464,
649,
18254,
12840,
9217,
326,
262,
7216,
5797,
468,
49237,
284,
705,
18254,
6,
1181,
19570,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
40692,
49,
940,
12,
44,
33056,
2751,
12,
8895,
33,
1600,
1976,
87,
81,
940,
13886,
14155,
23004,
30150,
28,
42592,
81,
940,
13886,
14155,
23004,
30150,
11,
1976,
87,
81,
940,
49806,
14155,
7575,
7975,
28,
42592,
81,
940,
49806,
14155,
7575,
7975,
11,
1976,
87,
81,
940,
49806,
14155,
47,
8317,
12332,
28,
42592,
81,
940,
49806,
14155,
47,
8317,
12332,
11,
8352,
13886,
51,
2416,
23004,
28,
20285,
13886,
51,
2416,
23004,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
6030,
28,
42592,
81,
940,
49806,
14155,
23004,
6030,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
11518,
7575,
11,
1976,
87,
81,
940,
49806,
14155,
53,
12463,
5376,
28,
42592,
81,
940,
49806,
14155,
53,
12463,
5376,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
17932,
5376,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
7416,
17932,
5376,
11,
1976,
87,
81,
940,
49806,
14155,
30150,
42419,
28,
42592,
81,
940,
49806,
14155,
30150,
42419,
11,
1976,
87,
81,
940,
49806,
14155,
15988,
23004,
6030,
28,
42592,
81,
940,
49806,
14155,
15988,
23004,
6030,
11,
1976,
87,
81,
940,
49806,
14155,
1532,
6435,
19722,
28,
42592,
81,
940,
49806,
14155,
1532,
6435,
19722,
11,
1976,
87,
81,
940,
49806,
14155,
15988,
7975,
36,
490,
1532,
28,
42592,
81,
940,
49806,
14155,
15988,
7975,
36,
490,
1532,
11,
1976,
87,
81,
940,
14155,
49806,
8895,
33,
28,
42592,
81,
940,
14155,
49806,
8895,
33,
11,
16531,
10100,
28,
23114,
10100,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
48997,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
48997,
7575,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
28,
42592,
81,
940,
49806,
14155,
23004,
49,
33967,
47,
74,
912,
11,
1976,
87,
81,
940,
49806,
14155,
51,
2416,
2202,
785,
24547,
28,
42592,
81,
940,
49806,
14155,
51,
2416,
2202,
785,
24547,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
1532,
5376,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
24159,
1532,
5376,
11,
1976,
87,
81,
940,
14155,
49806,
30150,
28,
42592,
81,
940,
14155,
49806,
30150,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7975,
53,
9620,
7390,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
7975,
53,
9620,
7390,
11,
1976,
87,
81,
940,
49806,
14155,
39,
2840,
28,
42592,
81,
940,
49806,
14155,
39,
2840,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
11518,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
11518,
7575,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
32634,
28,
42592,
81,
940,
49806,
14155,
23004,
32634,
11,
1976,
87,
81,
940,
49806,
14155,
1532,
19722,
28,
42592,
81,
940,
49806,
14155,
1532,
19722,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
28,
42592,
81,
940,
49806,
14155,
23004,
31837,
47,
74,
912,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
818,
53,
9620,
7390,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
818,
53,
9620,
7390,
11,
1976,
87,
81,
940,
49806,
14155,
6435,
263,
20231,
28,
42592,
81,
940,
49806,
14155,
6435,
263,
20231,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
9452,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
54,
672,
903,
9452,
7575,
11,
8352,
13886,
3673,
6637,
28,
20285,
13886,
3673,
6637,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
24159,
17932,
5376,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
24159,
17932,
5376,
11,
1976,
87,
81,
940,
49806,
14155,
35740,
19580,
28,
42592,
81,
940,
49806,
14155,
35740,
19580,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
10962,
28,
42592,
81,
940,
49806,
14155,
23004,
10962,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
30150,
42419,
28,
42592,
81,
940,
49806,
14155,
23004,
30150,
42419,
11,
1976,
87,
81,
940,
14155,
49806,
10962,
28,
42592,
81,
940,
14155,
49806,
10962,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
9452,
7575,
11,
1976,
87,
81,
940,
49806,
14155,
32634,
28,
42592,
81,
940,
49806,
14155,
32634,
11,
1976,
87,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
28,
42592,
81,
940,
49806,
14155,
23004,
22685,
51,
5528,
48997,
7575,
11,
1976,
87,
81,
940,
49806,
14155,
11627,
23004,
7416,
1532,
5376,
28,
42592,
81,
940,
49806,
14155,
11627,
23004,
7416,
1532,
5376,
11,
16018,
6030,
28,
19722,
6030,
11,
1976,
87,
81,
940,
49806,
14155,
24159,
14155,
28,
42592,
81,
940,
49806,
14155,
24159,
14155,
8,
198
] | 2.674347 | 5,816 |
{
"targets": [
{
"target_name": "zlib",
"type": "static_library",
"include_dirs": [
"config",
"zlib",
],
"direct_dependent_settings": {
"include_dirs": [
"zlib",
],
},
"msvs_settings": {
"VCCLCompilerTool": {
"RuntimeLibrary": 2,
},
"VCLinkerTool": {
"GenerateDebugInformation": "false",
},
},
"xcode_settings": {
"OTHER_CFLAGS": [
"-fPIC",
"-DPIC",
"-O3",
"-Wno-implicit-function-declaration",
],
},
"cflags": [
"-fPIC",
"-DPIC",
"-O3",
"-Wno-implicit-function-declaration",
],
"sources": [
"zlib/adler32.c",
"zlib/compress.c",
"zlib/crc32.c",
"zlib/deflate.c",
"zlib/gzclose.c",
"zlib/gzlib.c",
"zlib/gzread.c",
"zlib/gzwrite.c",
"zlib/infback.c",
"zlib/inffast.c",
"zlib/inflate.c",
"zlib/inftrees.c",
"zlib/trees.c",
"zlib/uncompr.c",
"zlib/zutil.c",
],
},
],
}
| [
90,
198,
220,
220,
220,
366,
83,
853,
1039,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16793,
62,
3672,
1298,
366,
89,
8019,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
366,
12708,
62,
32016,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17256,
62,
15908,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11250,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12942,
62,
21186,
62,
33692,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17256,
62,
15908,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
907,
14259,
62,
33692,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
53,
4093,
5639,
3361,
5329,
25391,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41006,
23377,
1298,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
53,
5097,
24275,
25391,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8645,
378,
27509,
21918,
1298,
366,
9562,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
87,
8189,
62,
33692,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
31858,
62,
34,
38948,
50,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
69,
47,
2149,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
6322,
2149,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
46,
18,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
54,
3919,
12,
23928,
3628,
12,
8818,
12,
32446,
10186,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
66,
33152,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
69,
47,
2149,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
6322,
2149,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
46,
18,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
54,
3919,
12,
23928,
3628,
12,
8818,
12,
32446,
10186,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
82,
2203,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
324,
1754,
2624,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
5589,
601,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
66,
6015,
2624,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
4299,
17660,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
34586,
19836,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
34586,
8019,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
34586,
961,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
34586,
13564,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
10745,
1891,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
259,
487,
459,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
259,
2704,
378,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
259,
701,
6037,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
83,
6037,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
403,
785,
1050,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
89,
8019,
14,
89,
22602,
13,
66,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
16589,
198,
92,
198
] | 1.390917 | 1,123 |
from . import (
sequence,
stats
) | [
6738,
764,
1330,
357,
198,
220,
220,
220,
8379,
11,
198,
220,
220,
220,
9756,
198,
8
] | 2.411765 | 17 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
curdir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(curdir))
prodir = os.path.dirname(curdir)
sys.path.insert(0, prodir)
import warnings
warnings.filterwarnings('ignore', category=FutureWarning)
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' # or any {'0', '1', '3'}
from Network import Network
from tf_models.layers.attention import *
from tf_models.layers.transformer import *
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
628,
198,
11748,
28686,
198,
11748,
25064,
198,
198,
66,
2799,
343,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
198,
17597,
13,
6978,
13,
28463,
7,
15,
11,
28686,
13,
6978,
13,
15908,
3672,
7,
66,
2799,
343,
4008,
198,
1676,
15908,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
66,
2799,
343,
8,
198,
17597,
13,
6978,
13,
28463,
7,
15,
11,
386,
15908,
8,
198,
11748,
14601,
198,
198,
40539,
654,
13,
24455,
40539,
654,
10786,
46430,
3256,
6536,
28,
29783,
20361,
8,
198,
198,
418,
13,
268,
2268,
17816,
10234,
62,
8697,
47,
62,
23678,
62,
25294,
62,
2538,
18697,
20520,
796,
705,
17,
6,
220,
1303,
393,
597,
1391,
6,
15,
3256,
705,
16,
3256,
705,
18,
6,
92,
198,
6738,
7311,
1330,
7311,
198,
6738,
48700,
62,
27530,
13,
75,
6962,
13,
1078,
1463,
1330,
1635,
198,
6738,
48700,
62,
27530,
13,
75,
6962,
13,
7645,
16354,
1330,
1635,
628
] | 2.536842 | 190 |
# -*- coding: utf-8 -*-
# @Time : 2020/12/1 下午11:34
# @Author : 司云中
# @File : wsgi.py
# @Software: Pycharm
# gunicorn 启动
from application import create_app
app = create_app()
celery = app.config.get('CELERY_INSTANCE') # celery -A wsgi:celery worker -l info
if __name__ == '__main__':
# 启动flask服务
app.run(host='127.0.0.1', port=5001)
# app.run(host='192.168.1.102', port=5000)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
2488,
7575,
220,
1058,
12131,
14,
1065,
14,
16,
220,
10310,
233,
39355,
230,
1157,
25,
2682,
198,
2,
2488,
13838,
1058,
10263,
237,
116,
12859,
239,
40792,
198,
2,
2488,
8979,
1058,
266,
82,
12397,
13,
9078,
198,
2,
2488,
25423,
25,
9485,
354,
1670,
198,
198,
2,
2485,
291,
1211,
10263,
238,
107,
27950,
101,
198,
6738,
3586,
1330,
2251,
62,
1324,
198,
1324,
796,
2251,
62,
1324,
3419,
198,
7015,
88,
796,
598,
13,
11250,
13,
1136,
10786,
34,
3698,
19664,
62,
38604,
19240,
11537,
220,
1303,
18725,
1924,
532,
32,
266,
82,
12397,
25,
7015,
88,
8383,
532,
75,
7508,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
10263,
238,
107,
27950,
101,
2704,
2093,
17312,
235,
27950,
94,
198,
220,
220,
220,
598,
13,
5143,
7,
4774,
11639,
16799,
13,
15,
13,
15,
13,
16,
3256,
2493,
28,
4059,
16,
8,
198,
220,
220,
220,
1303,
598,
13,
5143,
7,
4774,
11639,
17477,
13,
14656,
13,
16,
13,
15377,
3256,
2493,
28,
27641,
8,
198
] | 2.020619 | 194 |
# -*- coding:utf-8 -*-
from unittest import TestCase
from bambou.utils import Sha1
| [
2,
532,
9,
12,
19617,
25,
40477,
12,
23,
532,
9,
12,
198,
6738,
555,
715,
395,
1330,
6208,
20448,
198,
198,
6738,
275,
4131,
280,
13,
26791,
1330,
19413,
16,
628
] | 2.65625 | 32 |
import importlib
from django.conf import settings
from is_valid import is_dict_where, is_in
LOADED_GAMES = {}
| [
11748,
1330,
8019,
198,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
198,
6738,
318,
62,
12102,
1330,
318,
62,
11600,
62,
3003,
11,
318,
62,
259,
628,
198,
35613,
1961,
62,
38,
29559,
796,
23884,
628,
198
] | 2.974359 | 39 |
post_body_park_info_by_name = {
"name": "Big Basin Redwoods SP"
}
park_post_body = {
"googlePlaceSearchParameters": {
"Latitude": "37.171596527103105",
"Longitude": "-122.22204589843994",
"Filter": "true",
"AvailabilitySearchParams": {
"StartDate": "8/30/2017",
"Nights": 1,
"CategoryId": 0,
"ParkCategory": 8,
"ChooseActivity": 1
},
"MapboxPlaceid": 3
}
}
park_post_body_full = {
"googlePlaceSearchParameters": {
"Latitude": "37.171596527103105",
"Longitude": "-122.22204589843994",
"South": 37.1511444242048,
"North": 37.192043095819,
"East": -122.15037727356562,
"West": -122.29371452332231,
"Filter": True,
"BackToHome": "",
"CenterLatitude": 37.171596527103105,
"CenterLongitude": -122.22204589843994,
"ChangeDragandZoom": False,
"BacktoFacility": True,
"ChooseActivity": None,
"IsFilterClick": False,
"AvailabilitySearchParams": {
"RegionId": 0,
"PlaceId": [
0
],
"FacilityId": 0,
"StartDate": "8/30/2017",
"Nights": 1,
"CategoryId": 0,
"UnitTypeIds": [
],
"ShowOnlyAdaUnits": False,
"ShowOnlyTentSiteUnits": "False",
"ShowOnlyRvSiteUnits": "False",
"MinimumVehicleLength": 0,
"PageIndex": 0,
"PageSize": 20,
"Page1": 20,
"NoOfRecords": 100,
"ShowSiteUnitsName": 0,
"Autocomplitename": "Big Basin Redwoods SP",
"ParkFinder": [
],
"ParkCategory": 8,
"ChooseActivity": 1,
"IsPremium": False
},
"IsFacilityLevel": False,
"PlaceIdFacilityLevel": 0,
"MapboxPlaceid": 3
}
}
campsites_reservations_post_body = {
"FacilityId": 332,
"PlaceId": 3,
"MaximumDates": 120,
"IsTablet": True,
"MaximumStayforGrid": 1
}
advance_search_form = {
"__EVENTTARGET": "",
"__EVENTARGUMENT": "",
"__VIEWSTATE": "/wEPDwULLTEzMTY2NTM4ODUPFgYeCVVuaXRUeXBlczKjKAABAAAA/////wEAAAAAAAAABAEAAADVAlN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLkxpc3RgMVtbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuS2V5VmFsdWVQYWlyYDJbW1N5c3RlbS5JbnQzMiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24DAADlAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dW10ICAkCAAAAWAAAAFgAAAAHAgAAAAABAAAAgAAAAAPjAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dBP3////jAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAgAAAANrZXkFdmFsdWUAAQjsEAAABgQAAAANQm9hdCBDYW1wc2l0ZQH7/////f///+sQAAAGBgAAABBCb2F0IEluIENhbXBzaXRlAfn////9////6hAAAAYIAAAAGkJvYXQgSW4gUHJpbWl0aXZlIENhbXBzaXRlAff////9////bBEAAAYKAAAAD0NhbXBpbmcgUGFja2FnZQH1/////f///20RAAAGDAAAAAxEZWx1eGUgQ2FiaW4B8/////3////tEAAABg4AAAAfRG91YmxlIEhvb2sgVXAgKEUvVy9TKSBDYW1wc2l0ZQHx/////f///0cRAAAGEAAAABRIb3RlbCBSb29tIChCYWxjb255KQHv/////f///0kRAAAGEgAAABJIb3RlbCBSb29tIChCYXNpYykB7f////3///9IEQAABhQAAAAVSG90ZWwgUm9vbSAoU3RhbmRhcmQpAev////9////6RAAAAYWAAAAHk9mZiBSb2FkIFZlaGljbGUgVGVudCBDYW1wc2l0ZQHp/////f///0oRAAAGGAAAACJQcmVtaXVtIEJvYXQgSW4gUHJpbWl0aXZlIENhbXBzaXRlAef////9////VREAAAYaAAAAEVByZW1pdW0gQ2FiaW4gKDIpAeX////9////VxEAAAYcAAAAEVByZW1pdW0gQ2FiaW4gKDMpAeP////9////VhEAAAYeAAAAEVByZW1pdW0gQ2FiaW4gKDUpAeH////9////SxEAAAYgAAAAEFByZW1pdW0gQ2FtcHNpdGUB3/////3///81EQAABiIAAAAPUHJlbWl1bSBDb3R0YWdlAd3////9////XhEAAAYkAAAAE1ByZW1pdW0gQ290dGFnZSAoMikB2/////3///9fEQAABiYAAAATUHJlbWl1bSBDb3R0YWdlICgzKQHZ/////f///2ARAAAGKAAAABNQcmVtaXVtIENvdHRhZ2UgKDQpAdf////9////YREAAAYqAAAAE1ByZW1pdW0gQ290dGFnZSAoNikB1f////3///9jEQAABiwAAAATUHJlbWl1bSBDb3R0YWdlICg4KQHT/////f///1gRAAAGLgAAACdQcmVtaXVtIERvdWJsZSBIb29rIFVwIChFL1cvUykgQ2FtcHNpdGUB0f////3///9kEQAABjAAAAAeUHJlbWl1bSBHcm91cCBCb2F0LUluIENhbXBzaXRlAc/////9////VBEAAAYyAAAAFlByZW1pdW0gR3JvdXAgQ2FtcHNpdGUBzf////3///9lEQAABjQAAAAbUHJlbWl1bSBHcm91cCBUZW50IENhbXBzaXRlAcv////9////WhEAAAY2AAAAHVByZW1pdW0gSG9vayBVcCAoRSApIENhbXBzaXRlAcn////9////WxEAAAY4AAAAHlByZW1pdW0gSG9vayBVcCAoRS9XKSBDYW1wc2l0ZQHH/////f///1wRAAAGOgAAACBQcmVtaXVtIEhvb2sgVXAgKEUvVy9TKSBDYW1wc2l0ZQHF/////f///10RAAAGPAAAABhQcmVtaXVtIEhvb2sgVXAgQ2FtcHNpdGUBw/////3///9eBAAABj4AAAAaUHJlbWl1bSBQcmltaXRpdmUgQ2FtcHNpdGUBwf////3///9SEQAABkAAAAAVUHJlbWl1bSBUZW50IENhbXBzaXRlAb/////9////JhEAAAZCAAAACUJvYXQgU2xpcAG9/////f///0YEAAAGRAAAAAhZdXJ0ICg0KQG7/////f///y0EAAAGRgAAAAhZdXJ0ICg2KQG5/////f///ycRAAAGSAAAAApDYWJpbiAoMTApAbf////9////KBEAAAZKAAAACUNhYmluICgyKQG1/////f///ykRAAAGTAAAAAlDYWJpbiAoMykBs/////3///8yAAAABk4AAAAHQm9hdC1JbgGx/////f///yoRAAAGUAAAAAlDYWJpbiAoNCkBr/////3///8rEQAABlIAAAAJQ2FiaW4gKDUpAa3////9////LBEAAAZUAAAACUNhYmluICg2KQGr/////f///y0RAAAGVgAAAAlDYWJpbiAoOCkBqf////3///83AAAABlgAAAAWR3JvdXAgQm9hdC1JbiBDYW1wc2l0ZQGn/////f///zARAAAGWgAAAAtDb3R0YWdlICg0KQGl/////f///zIRAAAGXAAAAAtDb3R0YWdlICg2KQGj/////f///zQRAAAGXgAAAAtDb3R0YWdlICg4KQGh/////f///zcRAAAGYAAAAChFcXVlc3RyYWluIEdyb3VwIFRlbnQgUHJpbWl0aXZlIENhbXBzaXRlAZ/////9////OBEAAAZiAAAAI0VxdWVzdHJpYW4gR3JvdXAgUHJpbWl0aXZlIENhbXBzaXRlAZ3////9////OREAAAZkAAAAHkVxdWVzdHJpYW4gR3JvdXAgVGVudCBDYW1wc2l0ZQGb/////f///zoRAAAGZgAAACdFcXVlc3RyaWFuIEhpa2UvQmlrZSBQcmltaXRpdmUgQ2FtcHNpdGUBmf////3////NEAAABmgAAAAQQmlrZSBJbiBDYW1wc2l0ZQGX/////f///zsRAAAGagAAABZGbG9hdGluZyBDYW1wIENhbXBzaXRlAZX////9////zhAAAAZsAAAAGkJpa2UgSW4gUHJpbWl0aXZlIENhbXBzaXRlAZP////9////PBEAAAZuAAAAFkdyb3VwIEhpa2UgSW4gQ2FtcHNpdGUBkf////3////PEAAABnAAAAAIQ2FtcHNpdGUBj/////3///89EQAABnIAAAAgR3JvdXAgSGlrZSBJbiBQcmltaXRpdmUgQ2FtcHNpdGUBjf////3////QEAAABnQAAAAQRGF5IFVzZSBQYXZpbGlvbgGL/////f///z4RAAAGdgAAAB1Hcm91cCBUZW50IFByaW1pdGl2ZSBDYW1wc2l0ZQGJ/////f///9EQAAAGeAAAABBFbnJvdXRlIENhbXBzaXRlAYf////9////0hAAAAZ6AAAAE0VxdWVzdHJpYW4gQ2FtcHNpdGUBhf////3////TEAAABnwAAAAZRXF1ZXN0cmlhbiBHcm91cCBDYW1wc2l0ZQGD/////f///0ERAAAGfgAAABBIb29rIFVwIENhbXBzaXRlAYH////9////1BAAAAaAAAAAHUVxdWVzdHJpYW4gUHJpbWl0aXZlIENhbXBzaXRlAX/////9////QhEAAAaCAAAADlJlbnRhbCAoRS9XL1MpAX3////9////1RAAAAaEAAAAGEVxdWVzdHJpYW4gVGVudCBDYW1wc2l0ZQF7/////f///0MRAAAGhgAAABVUZW50IEhpa2UgSW4gQ2FtcHNpdGUBef////3////WEAAABogAAAAZR3JvdXAgIFByaW1pdGl2ZSBDYW1wc2l0ZQF3/////f///0QRAAAGigAAAB9UZW50IEhpa2UgSW4gUHJpbWl0aXZlIENhbXBzaXRlAXX////9////1xAAAAaMAAAADUdyb3VwIENhbXBpbmcBc/////3///9FEQAABo4AAAAhVGVudCBIaWtlL0Jpa2UgUHJpbWl0aXZlIENhbXBzaXRlAXH////9////2BAAAAaQAAAADkdyb3VwIENhbXBzaXRlAW/////9////RhEAAAaSAAAAF1RlbnQgUHJpbWl0aXZlIENhbXBzaXRlAW3////9////2RAAAAaUAAAADUdyb3VwIERheSBVc2UBa/////3////aEAAABpYAAAAgR3JvdXAgSG9vayBVcCAoRSApIFRlbnQgQ2FtcHNpdGUBaf////3////bEAAABpgAAAAYR3JvdXAgUHJpbWl0aXZlIENhbXBzaXRlAWf////9////3BAAAAaaAAAAE0dyb3VwIFRlbnQgQ2FtcHNpdGUBZf////3////dEAAABpwAAAAQSGlrZSBpbiBDYW1wc2l0ZQFj/////f///94QAAAGngAAABpIaWtlIEluIFByaW1pdGl2ZSBDYW1wc2l0ZQFh/////f///98QAAAGoAAAABhIaWtlIEluL0Jpa2UgSW4gQ2FtcHNpdGUBX/////3////gEAAABqIAAAASSGlrZS9CaWtlIENhbXBzaXRlAV3////9////4RAAAAakAAAAFUhvb2sgVXAgKEUgKSBDYW1wc2l0ZQFb/////f///+IQAAAGpgAAABZIb29rIFVwIChFL1cpIENhbXBzaXRlAVn////9////4xAAAAaoAAAAGEhvb2sgVXAgKEUvVy9HKSBDYW1wc2l0ZQFX/////f///+QQAAAGqgAAABhIb29rIFVwIChFL1cvUykgQ2FtcHNpdGUBVf////3////lEAAABqwAAAAWSG9vayBVcCAoVy9TKSBDYW1wc2l0ZQFT/////f///+YQAAAGrgAAABJIb3RlbCBSb29tIChRdWVlbikBUf////3////nEAAABrAAAAASUHJpbWl0aXZlIENhbXBzaXRlAU/////9////6BAAAAayAAAADVRlbnQgQ2FtcHNpdGUBTf////3///8AAAAACgFM/////f///wAAAAAKAUv////9////AAAAAAoBSv////3///8AAAAACgFJ/////f///wAAAAAKAUj////9////AAAAAAoBR/////3///8AAAAACgFG/////f///wAAAAAKAUX////9////AAAAAAoBRP////3///8AAAAACgFD/////f///wAAAAAKAUL////9////AAAAAAoBQf////3///8AAAAACgFA/////f///wAAAAAKAT/////9////AAAAAAoBPv////3///8AAAAACgE9/////f///wAAAAAKATz////9////AAAAAAoBO/////3///8AAAAACgE6/////f///wAAAAAKATn////9////AAAAAAoBOP////3///8AAAAACgE3/////f///wAAAAAKATb////9////AAAAAAoBNf////3///8AAAAACgE0/////f///wAAAAAKATP////9////AAAAAAoBMv////3///8AAAAACgEx/////f///wAAAAAKATD////9////AAAAAAoBL/////3///8AAAAACgEu/////f///wAAAAAKAS3////9////AAAAAAoBLP////3///8AAAAACgEr/////f///wAAAAAKASr////9////AAAAAAoBKf////3///8AAAAACgEo/////f///wAAAAAKASf////9////AAAAAAoBJv////3///8AAAAACgseEkFycml2YWxEYXRlRGlzcGxheQZP8JADL+fUiB4LQXJyaXZhbERhdGUGT/CQAy/n1IgWAmYPDxYCHhZGdXR1cmVCb29raW5nU3RhcnREYXRlBgAAlGZe59QIZBYIZg9kFgICCg8WAh4EaHJlZgVNaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9TdHlsZXMvanF1ZXJ5LXVpLm1pbi5jc3NkAgIPDxYEHhRGdXR1cmVCb29raW5nRW5kRGF0ZQYAQCy4K3fVCB4LTWF4aW11bVN0YXkCHmRkAgMPZBYIAgQPDxYEHwEGT/CQAy/n1IgfAgZP8JADL+fUiGQWCAIFDxAPFgIeC18hRGF0YUJvdW5kZ2RkZGQCBw8PFgIeBFRleHQFCTgvMTkvMjAxN2RkAggPZBYCAgMPEA8WAh8HZ2QQFR4BMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzAVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBQrAx5nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2cWAWZkAgkPDxYMHwIGT/CQAy/n1IgfBQYAQCy4K3fVCB4GTmlnaHRzAgEfAwYAAJRmXufUCB4LTWluaW11bVN0YXkCAR8GAh5kFgRmDxUBowEvQ2FsaWZvcm5pYVdlYkhvbWUvRmFjaWxpdGllcy9BZHZhbmNlTWFwSW1hZ2VHZW5lcmF0b3IuYXNweD9tYXBfbGV2ZWw9RW50ZXJwcmlzZSZtYXBfaWQ9MCZhcnJpdmFsX2RhdGU9OC8xOS8yMDE3Jm5pZ2h0cz0xJnJuZD0yMzI5OTAwODcmdW5pdF90eXBlPTAmdW5pdF9jYXRlZ29yeT0wZAIBD2QWBGYPFQMBMAEwDG5vTGVnZW5kLnBuZ2QCAQ8VAgEwBHRydWVkAgUPZBYCAgEPZBYGAg4PEGQQFQkSU2VsZWN0IFJlbnRhbCBUeXBlB0JvYXRpbmcHQ2FtcGluZwhEYWlseVVzZRJFcXVlc3RyYWluIENhbXBpbmcNR3JvdXAgQ2FtcGluZw9Ib29rIFVwIENhbXBpbmcHTG9kZ2luZw5SZW1vdGUgQ2FtcGluZxUJAAQxMDEwATEBNwQxMDE2ATIEMTAxNQQxMDA4BDEwMTQUKwMJZ2dnZ2dnZ2dnFgFmZAIQDxAPFggeDURhdGFUZXh0RmllbGQFBlZhbHVlMR4ORGF0YVZhbHVlRmllbGQFBEtleTEfB2ceB0VuYWJsZWRnZBAVBxZTZWxlY3QgQ2FtcGluZyBFcXVpcC4gDFJWL01vdG9yaG9tZQRUZW50CVRlbnQgT25seQdUcmFpbGVyDFRyYWlsZXIgT25seQ1UcnVjay9TVVYvVmFuFQcBMAI3NQI4MwI3NgI3NAI4NwI3ORQrAwdnZ2dnZ2dnZGQCEQ8QDxYCHw1nZBAVCA5UcmFpbGVyIExlbmd0aAQ+IDE1BD4gMjAEPiAzMAQ+IDQwBD4gNTAEPiA2MAQ+IDcwFQgOVHJhaWxlciBMZW5ndGgEPiAxNQQ+IDIwBD4gMzAEPiA0MAQ+IDUwBD4gNjAEPiA3MBQrAwhnZ2dnZ2dnZ2RkAgcPFgIfCAXGBDxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9EZWZhdWx0LmFzcHgiPg0KCQlIT01FDQoJPC9hPg0KPC9saT4NCjxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9GYWNpbGl0aWVzL0FkdmFuY2VTZWFyY2guYXNweCI+DQoJCUNBTVBJTkcgQU5EIExPREdJTkcNCgk8L2E+DQo8L2xpPg0KPGxpIGNsYXNzPSJkcm9wZG93biI+DQoJCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9BY3Rpdml0aWVzL1Byb2dyYW1zQW5kVG91cnMuYXNweCI+DQoJCQlUT1VSUw0KCQk8L2E+PC9saT4NCgkJPGxpIGNsYXNzPSJkcm9wZG93biI+DQoJCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9BY3Rpdml0aWVzL0hlYXJzdENhc3RsZVRvdXJzLmFzcHgiPg0KCQkJSEVBUlNUIENBU1RMRSBUT1VSDQoJCTwvYT48L2xpPmQCEQ9kFhACLg8PFggfBQYAQCy4K3fVCB8DBgAAlGZe59QIHwIGT/CQAy/n1IgfBgIeZGQCLw8QDxYGHwsFBE5hbWUfDAUCSWQfB2dkEBVyD0FuZ2VsIElzbGFuZCBTUBZBbnphLUJvcnJlZ28gRGVzZXJ0IFNQCkF1YnVybiBTUkEQQXVzdGluIENyZWVrIFNSQQ9CZW5ib3cgTGFrZSBTUkELQmVuaWNpYSBTUkEbQmlkd2VsbC1TYWNyYW1lbnRvIFJpdmVyIFNQFUJpZyBCYXNpbiBSZWR3b29kcyBTUCFCaWcgQmFzaW4gUmVkd29vZHMgU1AgVGVudCBDYWJpbnMOQm9sc2EgQ2hpY2EgU0IUQm90aGUtTmFwYSBWYWxsZXkgU1ASQnJhbm5hbiBJc2xhbmQgU1JBCUJ1dGFubyBTUBZDYWxhdmVyYXMgQmlnIFRyZWVzIFNQDUNhcm5lZ2llIFNWUkEOQ2FycGludGVyaWEgU0IPQ2FzdGxlIENyYWdzIFNQE0Nhc3dlbGwgTWVtb3JpYWwgU1ANQ2hpbmEgQ2FtcCBTUA5DaGlubyBIaWxscyBTUA1DbGVhciBMYWtlIFNQHkNyeXN0YWwgQ292ZSBTUCBCZWFjaCBDb3R0YWdlcxRDbGVhciBMYWtlIFNQIENhYmlucxdDb2xvbmVsIEFsbGVuc3dvcnRoIFNIUCBDb2x1bWJpYSBTSFAgSG90ZWxzIGFuZCBDb3R0YWdlcxtDb2x1c2EtU2FjcmFtZW50byBSaXZlciBTUkESQ29zbW9wb2xpdGFuIEhvdGVsH0NyeXN0YWwgQ292ZSBTUCBNb3JvIENhbXBncm91bmQSQ3V5YW1hY2EgUmFuY2hvIFNQDUQuTC4gQmxpc3MgU1AwRGVsIE5vcnRlIENvYXN0IFJlZHdvb2QgU1AgTWlsbCBDcmVlayBDYW1wZ3JvdW5kCURvaGVueSBTQhJEb25uZXIgTWVtb3JpYWwgU1ANRWwgQ2FwaXRhbiBTQg5FbWVyYWxkIEJheSBTUAxFbW1hIFdvb2QgU0IPRm9sc29tIExha2UgU1JBDkZvcnQgVGVqb24gU0hQD0ZyZW1vbnQgUGVhayBTUApHYXZpb3RhIFNQFkdlb3JnZSBKLiBIYXRmaWVsZCBTUkEZR3JpenpseSBDcmVlayBSZWR3b29kcyBTUBVHcm92ZXIgSG90IFNQcmluZ3MgU1AQSGFsZiBNb29uIEJheSBTQhRIZWFyc3QgU2FuIFNpbWVvbiBTUA5IZW5keSBXb29kcyBTUBhIZW5yeSBDb3dlbGwgUmVkd29vZHMgU1AOSGVucnkgVyBDb2UgU1AUSG9sbGlzdGVyIEhpbGxzIFNWUkEUSHVtYm9sZHQgUmVkd29vZHMgU1ASSHVuZ3J5IFZhbGxleSBTVlJBGEluZGlhbiBHcmluZGluZyBSb2NrIFNIUBpKZWRlZGlhaCBTbWl0aCBSZWR3b29kcyBTUBdKdWxpYSBQZmVpZmZlciBCdXJucyBTUBFMYWtlIE9yb3ZpbGxlIFNSQQ9MYWtlIFBlcnJpcyBTUkEPTGVvIENhcnJpbGxvIFNCC0xpbWVraWxuIFNQF0xpdHRsZSBCYXNpbiBTdGF0ZSBQYXJrD01hY2tlcnJpY2hlciBTUBRNYWxha29mZiBEaWdnaW5zIFNIUA9NYWxpYnUgQ3JlZWsgU1ANTWFuY2hlc3RlciBTUApNYW5yZXNhIFNCI01jYXJ0aHVyLUJ1cm5leSBGYWxscyBNZW0gU1AgQ2FiaW5zIU1jYXJ0aHVyLUJ1cm5leSBGYWxscyBNZW1vcmlhbCBTUA1NY2Nvbm5lbGwgU1JBCk1jZ3JhdGggU0ISTWlsbGVydG9uIExha2UgU1JBEU1vbnRhbmEgRGUgT3JvIFNQDE1vcnJvIEJheSBTUA9Nb3JybyBTdHJhbmQgU0IPTW91bnQgRGlhYmxvIFNQEk1vdW50IFRhbWFscGFpcyBTUBJNdC4gU2FuIEphY2ludG8gU1APTmV3IEJyaWdodG9uIFNCEU9jZWFubyBEdW5lcyBTVlJBE1BhbG9tYXIgTW91bnRhaW4gU1ARUGF0cmlja3MgUG9pbnQgU1ATUGZlaWZmZXIgQmlnIFN1ciBTUAhQaXNtbyBTQhBQbHVtYXMtRXVyZWthIFNQDVBvaW50IE11Z3UgU1ATUG9ydG9sYSBSZWR3b29kcyBTUDBQcmFpcmllIENyZWVrIFJlZHdvb2RzIFNQIEVsayBQcmFpcmllIENhbXBncm91bmQxUHJhaXJpZSBDcmVlayBSZWR3b29kcyBTUCBHb2xkIEJsdWZmcyBCZWFjaCBDYW1wZwpSZWZ1Z2lvIFNCE1JpY2hhcmRzb24gR3JvdmUgU1AQUnVzc2lhbiBHdWxjaCBTUBNTYWRkbGViYWNrIEJ1dHRlIFNQDVNhbHQgUG9pbnQgU1AOU2FsdG9uIFNlYSBTUkETU2FtdWVsIFAuIFRheWxvciBTUBpTYW11ZWwgUC4gVGF5bG9yIFNQIENhYmlucw9TYW4gQ2xlbWVudGUgU0IrU2FuIENsZW1lbnRlIFNCIChIb2xpZGF5cyBWaW50YWdlIFRyYWlsZXJzKQxTYW4gRWxpam8gU0IWU2FuIEx1aXMgUmVzZXJ2b2lyIFNSQQ1TYW4gT25vZnJlIFNCC1NlYWNsaWZmIFNCEFNpbHZlciBTdHJhbmQgU0ITU2lsdmVyd29vZCBMYWtlIFNSQQ9Tb25vbWEgQ29hc3QgU0IRU291dGggQ2FybHNiYWQgU0ITU3RhbmRpc2gtSGlja2V5IFNSQRNTdWdhciBQaW5lIFBvaW50IFNQElN1Z2FybG9hZiBSaWRnZSBTUAlTdW5zZXQgU0IJVGFob2UgU1JBEFR1cmxvY2sgTGFrZSBTUkEMVmFuIERhbW1lIFNQGVdlc3Rwb3J0LVVuaW9uIExhbmRpbmcgU0IPV2lsZGVyIFJhbmNoIFNQEldvb2Rzb24gQnJpZGdlIFNSQRVyAzYxNAEyAzYxNgQxMDg1AzYxNwQxMDkwBDEwOTMBMwM2MTgDNjE5AzYyMAM2MjEDNjIyATUEMTEwNwE2AzYyNAM2MjUDNjI2AzYyNwM2MjgDNjM0AzYyOQM2MzADNjMxAzYzMgM2MzMDNjM1ATcDNjM3AzYzOAM2MzkDNjQwATgDNjQxAzY0MgM2NDMDNjQ0AzY0NQM2NDYDNjQ4AzY1MAM2NTEDNjUyAzcxMwM2NTQDNjU1AzY1NgQxMTM2AzY1NwQxMTM4AzY1OQM2NjADNjYxAzY2MgM2NjMDNjY1AzY2NgM2NjcDNjY4AzY2OQM2NzADNjcxAzY3MgM2NzUDNjc0AzY3NgM2NzcDNjc4AzY3OQM2ODADNjgxAzY4MwM2ODIDNjg0AzY4NQM2ODYDNjg3AzY4OAM2OTADNjkxAzY5MgM2OTQDNjk1AzY5NgM2OTcDNjk5AzcwMAM3MDEDNzAyAzcwMwM3MDQDNzA1AzcwNgM3MDcDNzA4AzcwOQM3MTEDNzEyAzcxNAM3MTUDNzE2AzcxOAM3MjADNzIxAzcyNAM3MjUDNzI2AzcyOAM3MzADNzMxBDEyMzUEMTIzNgM3MzIUKwNyZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnFgFmZAIyDxBkEBUeBzEgTmlnaHQIMiBOaWdodHMIMyBOaWdodHMINCBOaWdodHMINSBOaWdodHMINiBOaWdodHMINyBOaWdodHMIOCBOaWdodHMIOSBOaWdodHMJMTAgTmlnaHRzCTExIE5pZ2h0cwkxMiBOaWdodHMJMTMgTmlnaHRzCTE0IE5pZ2h0cwkxNSBOaWdodHMJMTYgTmlnaHRzCTE3IE5pZ2h0cwkxOCBOaWdodHMJMTkgTmlnaHRzCTIwIE5pZ2h0cwkyMSBOaWdodHMJMjIgTmlnaHRzCTIzIE5pZ2h0cwkyNCBOaWdodHMJMjUgTmlnaHRzCTI2IE5pZ2h0cwkyNyBOaWdodHMJMjggTmlnaHRzCTI5IE5pZ2h0cwkzMCBOaWdodHMVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBQrAx5nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dkZAIzDw8WBB8BBk/wkAMv59SIHwIGT/CQAy/n1IhkFgpmDxAPFgYfB2cfDAUEa2V5cx8LBQZ2YWx1ZXNkEBUEE0NhbXBpbmcgYW5kIExvZGdpbmcTSGVhcnN0IENhc3RsZSBUb3VycxZPdGhlciBUb3Vycy9BY3Rpdml0aWVzGEJvYXQgTGF1bmNoIFJlc2VydmF0aW9ucxUEATEBNAEzATUUKwMEZ2dnZ2RkAgEPDxYCHwgFCTgvMTkvMjAxN2RkAgIPEA8WAh8HZ2QQFR4HMSBOaWdodAgyIE5pZ2h0cwgzIE5pZ2h0cwg0IE5pZ2h0cwg1IE5pZ2h0cwg2IE5pZ2h0cwg3IE5pZ2h0cwg4IE5pZ2h0cwg5IE5pZ2h0cwkxMCBOaWdodHMJMTEgTmlnaHRzCTEyIE5pZ2h0cwkxMyBOaWdodHMJMTQgTmlnaHRzCTE1IE5pZ2h0cwkxNiBOaWdodHMJMTcgTmlnaHRzCTE4IE5pZ2h0cwkxOSBOaWdodHMJMjAgTmlnaHRzCTIxIE5pZ2h0cwkyMiBOaWdodHMJMjMgTmlnaHRzCTI0IE5pZ2h0cwkyNSBOaWdodHMJMjYgTmlnaHRzCTI3IE5pZ2h0cwkyOCBOaWdodHMJMjkgTmlnaHRzCTMwIE5pZ2h0cxUeATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDHmdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZxYBZmQCAw8QDxYCHwdnZGRkZAIEDw8WDB8CBk/wkAMv59SIHwUGAEAsuCt31QgfCgIBHwYCHh8JAgEfAwYAAJRmXufUCGQWBGYPFQGkAS9DYWxpZm9ybmlhV2ViSG9tZS9GYWNpbGl0aWVzL0FkdmFuY2VNYXBJbWFnZUdlbmVyYXRvci5hc3B4P21hcF9sZXZlbD1FbnRlcnByaXNlJm1hcF9pZD0wJmFycml2YWxfZGF0ZT04LzE5LzIwMTcmbmlnaHRzPTEmcm5kPTEwMDM1MTgwMTUmdW5pdF90eXBlPTAmdW5pdF9jYXRlZ29yeT0wZAIBD2QWBGYPFQMBMAEwDG5vTGVnZW5kLnBuZ2QCAQ8VAgEwBHRydWVkAjQPZBYCAgEPZBYCAgEPZBYCZg9kFggCBQ8QZGQWAGQCBw8PFgIfCAUJOC8xOS8yMDE3ZGQCCA9kFgICAw8QZGQWAGQCCQ8PFgQfBQYAQCy4K3fVCB8DBgAAlGZe59QIZGQCNg9kFgICAQ8PFgYfBQYAQCy4K3fVCB8DBgAAlGZe59QIHwYCHmRkAjcPZBYGAgwPEGQQFQkSU2VsZWN0IFJlbnRhbCBUeXBlB0JvYXRpbmcHQ2FtcGluZwhEYWlseVVzZRJFcXVlc3RyYWluIENhbXBpbmcNR3JvdXAgQ2FtcGluZw9Ib29rIFVwIENhbXBpbmcHTG9kZ2luZw5SZW1vdGUgQ2FtcGluZxUJAAQxMDEwATEBNwQxMDE2ATIEMTAxNQQxMDA4BDEwMTQUKwMJZ2dnZ2dnZ2dnFgFmZAIODxAPFggfCwUGVmFsdWUxHwwFBEtleTEfB2cfDWdkEBUHFlNlbGVjdCBDYW1waW5nIEVxdWlwLiAMUlYvTW90b3Job21lBFRlbnQJVGVudCBPbmx5B1RyYWlsZXIMVHJhaWxlciBPbmx5DVRydWNrL1NVVi9WYW4VBwEwAjc1AjgzAjc2Ajc0Ajg3Ajc5FCsDB2dnZ2dnZ2dkZAIPDxAPFgIfDWdkEBUIDlRyYWlsZXIgTGVuZ3RoBD4gMTUEPiAyMAQ+IDMwBD4gNDAEPiA1MAQ+IDYwBD4gNzAVCA5UcmFpbGVyIExlbmd0aAQ+IDE1BD4gMjAEPiAzMAQ+IDQwBD4gNTAEPiA2MAQ+IDcwFCsDCGdnZ2dnZ2dnZGQCOg9kFgICAQ9kFgICAQ8PFgIeB1Zpc2libGVoZGQCBA8WAh4JaW5uZXJodG1sBeUOPGZvb3Rlcj4NCjxkaXYgY2xhc3M9ImNvbnRhaW5lciI+DQo8ZGl2IGNsYXNzPSJyb3ciPg0KPGRpdiBjbGFzcz0iY29sLW1kLTEyIiBzdHlsZT0idGV4dC1hbGlnbjogY2VudGVyOyI+PGltZyBjbGFzcz0iZm90LWFyb3ciIHRpdGxlPSJkb3duIGFycm93IiBzcmM9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS90aGVtZXMvQ2FsaWZvcm5pYS9mb290ZXItYXJyb3cuanBnIiBhbHQ9ImFlcnJvdyIgLz4NCjxkaXYgY2xhc3M9ImJvdC1saW5rcyBwYWdlbGlua3MiPjxhIGhyZWY9IkRlZmF1bHQuYXNweCI+SE9NRSA8L2E+IHwgPGEgaHJlZj0iRmFjaWxpdGllcy9BZHZhbmNlU2VhcmNoLmFzcHgiPkNBTVBJTkcgQU5EIExPREdJTkcgPC9hPiB8IDxhIGhyZWY9IkFjdGl2aXRpZXMvUHJvZ3JhbXNBbmRUb3Vycy5hc3B4Ij5BQ1RJVklUSUVTIDwvYT4gfCA8YSBocmVmPSJBY3Rpdml0aWVzL0hlYXJzdENhc3RsZVRvdXJzLmFzcHgiPkhFQVJTVCBDQVNUTEU8L2E+IHwgPCEtLSAgICAgIDxhIGhyZWY9IkdpZnRjYXJkcy9HaWZ0Y2FyZHNhbGUuYXNweCI+R0lGVCBDQVJEUzwvYT4NCiAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgIC0tPiAgPCEtLSAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSJDdXN0b21lcnMvTmV3Q3VzdG9tZXIuYXNweCI+Q1JFQVRFIEFDQ09VTlQNCiAgICAgICAgICAgICAgICAgICAgPC9hPiAtLT48L2Rpdj4NCjxkaXYgY2xhc3M9ImJvdC1saW5rcyBjb2wtbWQtMTIiPjwhLS0gPGEgb25jbGljaz0iamF2YXNjcmlwdDp2YXIgcnVsZXM9d2luZG93Lm9wZW4oJycsICdydWxlcycsJ3dpZHRoPTYwMCwgaGVpZ2h0PTQwMCwgc2Nyb2xsYmFycz0xLCByZXNpemFibGU9MScpOyByZXR1cm4gZmFsc2U7IiB0YXJnZXQ9Il9ibGFuayIgIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKTsiPi0tPiA8YSBocmVmPSJodHRwOi8vd3d3LnBhcmtzLmNhLmdvdi8/cGFnZV9pZD0yMTMwMCIgdGFyZ2V0PSJfYmxhbmsiPiA8c3Ryb25nPlBBUksgUlVMRVMgPC9zdHJvbmc+IDwvYT4gfCA8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQ29udGFjdFVzLmFzcHgiPiA8c3Ryb25nPkNPTlRBQ1QgVVMgPC9zdHJvbmc+IDwvYT4gfCA8YSBocmVmPSJodHRwOi8vd3d3LnBhcmtzLmNhLmdvdi9Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayI+IDxzdHJvbmc+UFJJVkFDWSBQT0xJQ1kgPC9zdHJvbmc+IDwvYT48L2Rpdj4NCjxiciAvPg0KPGRpdiBjbGFzcz0icm93Ij48c3BhbiBpZD0iTGFiZWwxIiBzdHlsZT0iY29sb3I6IHdoaXRlOyBmb250LXNpemU6IDEycHg7Ij5Db250YWN0IFVzOiAxLTgwMC00NDQtNzI3NSA4OjAwYW0gLSA2OjAwcG0gUGFjaWZpYyBUaW1lIChQVCkgPC9zcGFuPiA8IS0tICA8c3BhbiBzdHlsZT0iY29sb3I6IFdoaXRlOyBmb250LXNpemU6IDEycHg7IiBpZD0iTGFiZWwxIj5OZWVkIEhlbHA/IENhbGwgdXMgOCBBLk0uIHRvIDYgUC5NLiBEYWlseSA4MDAtNDQ0LTcyNzUgKENsb3NlZCBDaHJpc3RtYXMgRGF5LCBOZXcgWWVhcnMgRGF5LCBhbmQgVGhhbmtzZ2l2aW5nKTwvc3Bhbj4gIC0tPjwvZGl2Pg0KPGRpdiBjbGFzcz0icm93MSI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtMTIgY29sLXNtLTEyIGNvcHlyaWdodHMiPkNvcHlyaWdodCAmY29weTsgMjAxNyZuYnNwOyBTdGF0ZSBvZiBDYWxpZm9ybmlhPC9kaXY+DQo8L2Rpdj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0iaW5jbHVkZUZvb3RlciI+Jm5ic3A7PC9kaXY+DQo8L2Rpdj4NCjwvZGl2Pg0KPC9mb290ZXI+ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgU1Y3RsMDEkbWFpbkNvbnRlbnQkTGVmdE1lbnVBZHZhbmNlRmlsdGVyJGNoa0FjY2Vzc2libGUFNGN0bDAxJG1haW5Db250ZW50JExlZnRNZW51QWR2YW5jZUZpbHRlciRjaGtJc1ByZW1pdW1lheu/MTDYLIrPULDpul3uaKT0u1IsERFYLp8pUi2c8g==",
"__VIEWSTATEGENERATOR": "6660105B",
"ctl01$mainContent$txtDateRange": "8/30/2017",
"ctl01$mainContent$Grid_ddlNights": "1",
"ctl01$mainContent$hdnPlaceid": "3",
"ctl01$mainContent$hdnFacilityid": "339"
}
advance_search_form_full = {
"__EVENTTARGET": "",
"__EVENTARGUMENT": "",
"__VIEWSTATE": "/wEPDwULLTEzMTY2NTM4ODUPFgYeCVVuaXRUeXBlczKjKAABAAAA/////wEAAAAAAAAABAEAAADVAlN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLkxpc3RgMVtbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuS2V5VmFsdWVQYWlyYDJbW1N5c3RlbS5JbnQzMiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24DAADlAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dW10ICAkCAAAAWAAAAFgAAAAHAgAAAAABAAAAgAAAAAPjAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dBP3////jAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLktleVZhbHVlUGFpcmAyW1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAgAAAANrZXkFdmFsdWUAAQjsEAAABgQAAAANQm9hdCBDYW1wc2l0ZQH7/////f///+sQAAAGBgAAABBCb2F0IEluIENhbXBzaXRlAfn////9////6hAAAAYIAAAAGkJvYXQgSW4gUHJpbWl0aXZlIENhbXBzaXRlAff////9////bBEAAAYKAAAAD0NhbXBpbmcgUGFja2FnZQH1/////f///20RAAAGDAAAAAxEZWx1eGUgQ2FiaW4B8/////3////tEAAABg4AAAAfRG91YmxlIEhvb2sgVXAgKEUvVy9TKSBDYW1wc2l0ZQHx/////f///0cRAAAGEAAAABRIb3RlbCBSb29tIChCYWxjb255KQHv/////f///0kRAAAGEgAAABJIb3RlbCBSb29tIChCYXNpYykB7f////3///9IEQAABhQAAAAVSG90ZWwgUm9vbSAoU3RhbmRhcmQpAev////9////6RAAAAYWAAAAHk9mZiBSb2FkIFZlaGljbGUgVGVudCBDYW1wc2l0ZQHp/////f///0oRAAAGGAAAACJQcmVtaXVtIEJvYXQgSW4gUHJpbWl0aXZlIENhbXBzaXRlAef////9////VREAAAYaAAAAEVByZW1pdW0gQ2FiaW4gKDIpAeX////9////VxEAAAYcAAAAEVByZW1pdW0gQ2FiaW4gKDMpAeP////9////VhEAAAYeAAAAEVByZW1pdW0gQ2FiaW4gKDUpAeH////9////SxEAAAYgAAAAEFByZW1pdW0gQ2FtcHNpdGUB3/////3///81EQAABiIAAAAPUHJlbWl1bSBDb3R0YWdlAd3////9////XhEAAAYkAAAAE1ByZW1pdW0gQ290dGFnZSAoMikB2/////3///9fEQAABiYAAAATUHJlbWl1bSBDb3R0YWdlICgzKQHZ/////f///2ARAAAGKAAAABNQcmVtaXVtIENvdHRhZ2UgKDQpAdf////9////YREAAAYqAAAAE1ByZW1pdW0gQ290dGFnZSAoNikB1f////3///9jEQAABiwAAAATUHJlbWl1bSBDb3R0YWdlICg4KQHT/////f///1gRAAAGLgAAACdQcmVtaXVtIERvdWJsZSBIb29rIFVwIChFL1cvUykgQ2FtcHNpdGUB0f////3///9kEQAABjAAAAAeUHJlbWl1bSBHcm91cCBCb2F0LUluIENhbXBzaXRlAc/////9////VBEAAAYyAAAAFlByZW1pdW0gR3JvdXAgQ2FtcHNpdGUBzf////3///9lEQAABjQAAAAbUHJlbWl1bSBHcm91cCBUZW50IENhbXBzaXRlAcv////9////WhEAAAY2AAAAHVByZW1pdW0gSG9vayBVcCAoRSApIENhbXBzaXRlAcn////9////WxEAAAY4AAAAHlByZW1pdW0gSG9vayBVcCAoRS9XKSBDYW1wc2l0ZQHH/////f///1wRAAAGOgAAACBQcmVtaXVtIEhvb2sgVXAgKEUvVy9TKSBDYW1wc2l0ZQHF/////f///10RAAAGPAAAABhQcmVtaXVtIEhvb2sgVXAgQ2FtcHNpdGUBw/////3///9eBAAABj4AAAAaUHJlbWl1bSBQcmltaXRpdmUgQ2FtcHNpdGUBwf////3///9SEQAABkAAAAAVUHJlbWl1bSBUZW50IENhbXBzaXRlAb/////9////JhEAAAZCAAAACUJvYXQgU2xpcAG9/////f///0YEAAAGRAAAAAhZdXJ0ICg0KQG7/////f///y0EAAAGRgAAAAhZdXJ0ICg2KQG5/////f///ycRAAAGSAAAAApDYWJpbiAoMTApAbf////9////KBEAAAZKAAAACUNhYmluICgyKQG1/////f///ykRAAAGTAAAAAlDYWJpbiAoMykBs/////3///8yAAAABk4AAAAHQm9hdC1JbgGx/////f///yoRAAAGUAAAAAlDYWJpbiAoNCkBr/////3///8rEQAABlIAAAAJQ2FiaW4gKDUpAa3////9////LBEAAAZUAAAACUNhYmluICg2KQGr/////f///y0RAAAGVgAAAAlDYWJpbiAoOCkBqf////3///83AAAABlgAAAAWR3JvdXAgQm9hdC1JbiBDYW1wc2l0ZQGn/////f///zARAAAGWgAAAAtDb3R0YWdlICg0KQGl/////f///zIRAAAGXAAAAAtDb3R0YWdlICg2KQGj/////f///zQRAAAGXgAAAAtDb3R0YWdlICg4KQGh/////f///zcRAAAGYAAAAChFcXVlc3RyYWluIEdyb3VwIFRlbnQgUHJpbWl0aXZlIENhbXBzaXRlAZ/////9////OBEAAAZiAAAAI0VxdWVzdHJpYW4gR3JvdXAgUHJpbWl0aXZlIENhbXBzaXRlAZ3////9////OREAAAZkAAAAHkVxdWVzdHJpYW4gR3JvdXAgVGVudCBDYW1wc2l0ZQGb/////f///zoRAAAGZgAAACdFcXVlc3RyaWFuIEhpa2UvQmlrZSBQcmltaXRpdmUgQ2FtcHNpdGUBmf////3////NEAAABmgAAAAQQmlrZSBJbiBDYW1wc2l0ZQGX/////f///zsRAAAGagAAABZGbG9hdGluZyBDYW1wIENhbXBzaXRlAZX////9////zhAAAAZsAAAAGkJpa2UgSW4gUHJpbWl0aXZlIENhbXBzaXRlAZP////9////PBEAAAZuAAAAFkdyb3VwIEhpa2UgSW4gQ2FtcHNpdGUBkf////3////PEAAABnAAAAAIQ2FtcHNpdGUBj/////3///89EQAABnIAAAAgR3JvdXAgSGlrZSBJbiBQcmltaXRpdmUgQ2FtcHNpdGUBjf////3////QEAAABnQAAAAQRGF5IFVzZSBQYXZpbGlvbgGL/////f///z4RAAAGdgAAAB1Hcm91cCBUZW50IFByaW1pdGl2ZSBDYW1wc2l0ZQGJ/////f///9EQAAAGeAAAABBFbnJvdXRlIENhbXBzaXRlAYf////9////0hAAAAZ6AAAAE0VxdWVzdHJpYW4gQ2FtcHNpdGUBhf////3////TEAAABnwAAAAZRXF1ZXN0cmlhbiBHcm91cCBDYW1wc2l0ZQGD/////f///0ERAAAGfgAAABBIb29rIFVwIENhbXBzaXRlAYH////9////1BAAAAaAAAAAHUVxdWVzdHJpYW4gUHJpbWl0aXZlIENhbXBzaXRlAX/////9////QhEAAAaCAAAADlJlbnRhbCAoRS9XL1MpAX3////9////1RAAAAaEAAAAGEVxdWVzdHJpYW4gVGVudCBDYW1wc2l0ZQF7/////f///0MRAAAGhgAAABVUZW50IEhpa2UgSW4gQ2FtcHNpdGUBef////3////WEAAABogAAAAZR3JvdXAgIFByaW1pdGl2ZSBDYW1wc2l0ZQF3/////f///0QRAAAGigAAAB9UZW50IEhpa2UgSW4gUHJpbWl0aXZlIENhbXBzaXRlAXX////9////1xAAAAaMAAAADUdyb3VwIENhbXBpbmcBc/////3///9FEQAABo4AAAAhVGVudCBIaWtlL0Jpa2UgUHJpbWl0aXZlIENhbXBzaXRlAXH////9////2BAAAAaQAAAADkdyb3VwIENhbXBzaXRlAW/////9////RhEAAAaSAAAAF1RlbnQgUHJpbWl0aXZlIENhbXBzaXRlAW3////9////2RAAAAaUAAAADUdyb3VwIERheSBVc2UBa/////3////aEAAABpYAAAAgR3JvdXAgSG9vayBVcCAoRSApIFRlbnQgQ2FtcHNpdGUBaf////3////bEAAABpgAAAAYR3JvdXAgUHJpbWl0aXZlIENhbXBzaXRlAWf////9////3BAAAAaaAAAAE0dyb3VwIFRlbnQgQ2FtcHNpdGUBZf////3////dEAAABpwAAAAQSGlrZSBpbiBDYW1wc2l0ZQFj/////f///94QAAAGngAAABpIaWtlIEluIFByaW1pdGl2ZSBDYW1wc2l0ZQFh/////f///98QAAAGoAAAABhIaWtlIEluL0Jpa2UgSW4gQ2FtcHNpdGUBX/////3////gEAAABqIAAAASSGlrZS9CaWtlIENhbXBzaXRlAV3////9////4RAAAAakAAAAFUhvb2sgVXAgKEUgKSBDYW1wc2l0ZQFb/////f///+IQAAAGpgAAABZIb29rIFVwIChFL1cpIENhbXBzaXRlAVn////9////4xAAAAaoAAAAGEhvb2sgVXAgKEUvVy9HKSBDYW1wc2l0ZQFX/////f///+QQAAAGqgAAABhIb29rIFVwIChFL1cvUykgQ2FtcHNpdGUBVf////3////lEAAABqwAAAAWSG9vayBVcCAoVy9TKSBDYW1wc2l0ZQFT/////f///+YQAAAGrgAAABJIb3RlbCBSb29tIChRdWVlbikBUf////3////nEAAABrAAAAASUHJpbWl0aXZlIENhbXBzaXRlAU/////9////6BAAAAayAAAADVRlbnQgQ2FtcHNpdGUBTf////3///8AAAAACgFM/////f///wAAAAAKAUv////9////AAAAAAoBSv////3///8AAAAACgFJ/////f///wAAAAAKAUj////9////AAAAAAoBR/////3///8AAAAACgFG/////f///wAAAAAKAUX////9////AAAAAAoBRP////3///8AAAAACgFD/////f///wAAAAAKAUL////9////AAAAAAoBQf////3///8AAAAACgFA/////f///wAAAAAKAT/////9////AAAAAAoBPv////3///8AAAAACgE9/////f///wAAAAAKATz////9////AAAAAAoBO/////3///8AAAAACgE6/////f///wAAAAAKATn////9////AAAAAAoBOP////3///8AAAAACgE3/////f///wAAAAAKATb////9////AAAAAAoBNf////3///8AAAAACgE0/////f///wAAAAAKATP////9////AAAAAAoBMv////3///8AAAAACgEx/////f///wAAAAAKATD////9////AAAAAAoBL/////3///8AAAAACgEu/////f///wAAAAAKAS3////9////AAAAAAoBLP////3///8AAAAACgEr/////f///wAAAAAKASr////9////AAAAAAoBKf////3///8AAAAACgEo/////f///wAAAAAKASf////9////AAAAAAoBJv////3///8AAAAACgseEkFycml2YWxEYXRlRGlzcGxheQZP8JADL+fUiB4LQXJyaXZhbERhdGUGT/CQAy/n1IgWAmYPDxYCHhZGdXR1cmVCb29raW5nU3RhcnREYXRlBgAAlGZe59QIZBYIZg9kFgICCg8WAh4EaHJlZgVNaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9TdHlsZXMvanF1ZXJ5LXVpLm1pbi5jc3NkAgIPDxYEHhRGdXR1cmVCb29raW5nRW5kRGF0ZQYAQCy4K3fVCB4LTWF4aW11bVN0YXkCHmRkAgMPZBYIAgQPDxYEHwEGT/CQAy/n1IgfAgZP8JADL+fUiGQWCAIFDxAPFgIeC18hRGF0YUJvdW5kZ2RkZGQCBw8PFgIeBFRleHQFCTgvMTkvMjAxN2RkAggPZBYCAgMPEA8WAh8HZ2QQFR4BMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzAVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBQrAx5nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2cWAWZkAgkPDxYMHwIGT/CQAy/n1IgfBQYAQCy4K3fVCB4GTmlnaHRzAgEfAwYAAJRmXufUCB4LTWluaW11bVN0YXkCAR8GAh5kFgRmDxUBowEvQ2FsaWZvcm5pYVdlYkhvbWUvRmFjaWxpdGllcy9BZHZhbmNlTWFwSW1hZ2VHZW5lcmF0b3IuYXNweD9tYXBfbGV2ZWw9RW50ZXJwcmlzZSZtYXBfaWQ9MCZhcnJpdmFsX2RhdGU9OC8xOS8yMDE3Jm5pZ2h0cz0xJnJuZD0yMzI5OTAwODcmdW5pdF90eXBlPTAmdW5pdF9jYXRlZ29yeT0wZAIBD2QWBGYPFQMBMAEwDG5vTGVnZW5kLnBuZ2QCAQ8VAgEwBHRydWVkAgUPZBYCAgEPZBYGAg4PEGQQFQkSU2VsZWN0IFJlbnRhbCBUeXBlB0JvYXRpbmcHQ2FtcGluZwhEYWlseVVzZRJFcXVlc3RyYWluIENhbXBpbmcNR3JvdXAgQ2FtcGluZw9Ib29rIFVwIENhbXBpbmcHTG9kZ2luZw5SZW1vdGUgQ2FtcGluZxUJAAQxMDEwATEBNwQxMDE2ATIEMTAxNQQxMDA4BDEwMTQUKwMJZ2dnZ2dnZ2dnFgFmZAIQDxAPFggeDURhdGFUZXh0RmllbGQFBlZhbHVlMR4ORGF0YVZhbHVlRmllbGQFBEtleTEfB2ceB0VuYWJsZWRnZBAVBxZTZWxlY3QgQ2FtcGluZyBFcXVpcC4gDFJWL01vdG9yaG9tZQRUZW50CVRlbnQgT25seQdUcmFpbGVyDFRyYWlsZXIgT25seQ1UcnVjay9TVVYvVmFuFQcBMAI3NQI4MwI3NgI3NAI4NwI3ORQrAwdnZ2dnZ2dnZGQCEQ8QDxYCHw1nZBAVCA5UcmFpbGVyIExlbmd0aAQ+IDE1BD4gMjAEPiAzMAQ+IDQwBD4gNTAEPiA2MAQ+IDcwFQgOVHJhaWxlciBMZW5ndGgEPiAxNQQ+IDIwBD4gMzAEPiA0MAQ+IDUwBD4gNjAEPiA3MBQrAwhnZ2dnZ2dnZ2RkAgcPFgIfCAXGBDxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9EZWZhdWx0LmFzcHgiPg0KCQlIT01FDQoJPC9hPg0KPC9saT4NCjxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9GYWNpbGl0aWVzL0FkdmFuY2VTZWFyY2guYXNweCI+DQoJCUNBTVBJTkcgQU5EIExPREdJTkcNCgk8L2E+DQo8L2xpPg0KPGxpIGNsYXNzPSJkcm9wZG93biI+DQoJCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9BY3Rpdml0aWVzL1Byb2dyYW1zQW5kVG91cnMuYXNweCI+DQoJCQlUT1VSUw0KCQk8L2E+PC9saT4NCgkJPGxpIGNsYXNzPSJkcm9wZG93biI+DQoJCTxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9BY3Rpdml0aWVzL0hlYXJzdENhc3RsZVRvdXJzLmFzcHgiPg0KCQkJSEVBUlNUIENBU1RMRSBUT1VSDQoJCTwvYT48L2xpPmQCEQ9kFhACLg8PFggfBQYAQCy4K3fVCB8DBgAAlGZe59QIHwIGT/CQAy/n1IgfBgIeZGQCLw8QDxYGHwsFBE5hbWUfDAUCSWQfB2dkEBVyD0FuZ2VsIElzbGFuZCBTUBZBbnphLUJvcnJlZ28gRGVzZXJ0IFNQCkF1YnVybiBTUkEQQXVzdGluIENyZWVrIFNSQQ9CZW5ib3cgTGFrZSBTUkELQmVuaWNpYSBTUkEbQmlkd2VsbC1TYWNyYW1lbnRvIFJpdmVyIFNQFUJpZyBCYXNpbiBSZWR3b29kcyBTUCFCaWcgQmFzaW4gUmVkd29vZHMgU1AgVGVudCBDYWJpbnMOQm9sc2EgQ2hpY2EgU0IUQm90aGUtTmFwYSBWYWxsZXkgU1ASQnJhbm5hbiBJc2xhbmQgU1JBCUJ1dGFubyBTUBZDYWxhdmVyYXMgQmlnIFRyZWVzIFNQDUNhcm5lZ2llIFNWUkEOQ2FycGludGVyaWEgU0IPQ2FzdGxlIENyYWdzIFNQE0Nhc3dlbGwgTWVtb3JpYWwgU1ANQ2hpbmEgQ2FtcCBTUA5DaGlubyBIaWxscyBTUA1DbGVhciBMYWtlIFNQHkNyeXN0YWwgQ292ZSBTUCBCZWFjaCBDb3R0YWdlcxRDbGVhciBMYWtlIFNQIENhYmlucxdDb2xvbmVsIEFsbGVuc3dvcnRoIFNIUCBDb2x1bWJpYSBTSFAgSG90ZWxzIGFuZCBDb3R0YWdlcxtDb2x1c2EtU2FjcmFtZW50byBSaXZlciBTUkESQ29zbW9wb2xpdGFuIEhvdGVsH0NyeXN0YWwgQ292ZSBTUCBNb3JvIENhbXBncm91bmQSQ3V5YW1hY2EgUmFuY2hvIFNQDUQuTC4gQmxpc3MgU1AwRGVsIE5vcnRlIENvYXN0IFJlZHdvb2QgU1AgTWlsbCBDcmVlayBDYW1wZ3JvdW5kCURvaGVueSBTQhJEb25uZXIgTWVtb3JpYWwgU1ANRWwgQ2FwaXRhbiBTQg5FbWVyYWxkIEJheSBTUAxFbW1hIFdvb2QgU0IPRm9sc29tIExha2UgU1JBDkZvcnQgVGVqb24gU0hQD0ZyZW1vbnQgUGVhayBTUApHYXZpb3RhIFNQFkdlb3JnZSBKLiBIYXRmaWVsZCBTUkEZR3JpenpseSBDcmVlayBSZWR3b29kcyBTUBVHcm92ZXIgSG90IFNQcmluZ3MgU1AQSGFsZiBNb29uIEJheSBTQhRIZWFyc3QgU2FuIFNpbWVvbiBTUA5IZW5keSBXb29kcyBTUBhIZW5yeSBDb3dlbGwgUmVkd29vZHMgU1AOSGVucnkgVyBDb2UgU1AUSG9sbGlzdGVyIEhpbGxzIFNWUkEUSHVtYm9sZHQgUmVkd29vZHMgU1ASSHVuZ3J5IFZhbGxleSBTVlJBGEluZGlhbiBHcmluZGluZyBSb2NrIFNIUBpKZWRlZGlhaCBTbWl0aCBSZWR3b29kcyBTUBdKdWxpYSBQZmVpZmZlciBCdXJucyBTUBFMYWtlIE9yb3ZpbGxlIFNSQQ9MYWtlIFBlcnJpcyBTUkEPTGVvIENhcnJpbGxvIFNCC0xpbWVraWxuIFNQF0xpdHRsZSBCYXNpbiBTdGF0ZSBQYXJrD01hY2tlcnJpY2hlciBTUBRNYWxha29mZiBEaWdnaW5zIFNIUA9NYWxpYnUgQ3JlZWsgU1ANTWFuY2hlc3RlciBTUApNYW5yZXNhIFNCI01jYXJ0aHVyLUJ1cm5leSBGYWxscyBNZW0gU1AgQ2FiaW5zIU1jYXJ0aHVyLUJ1cm5leSBGYWxscyBNZW1vcmlhbCBTUA1NY2Nvbm5lbGwgU1JBCk1jZ3JhdGggU0ISTWlsbGVydG9uIExha2UgU1JBEU1vbnRhbmEgRGUgT3JvIFNQDE1vcnJvIEJheSBTUA9Nb3JybyBTdHJhbmQgU0IPTW91bnQgRGlhYmxvIFNQEk1vdW50IFRhbWFscGFpcyBTUBJNdC4gU2FuIEphY2ludG8gU1APTmV3IEJyaWdodG9uIFNCEU9jZWFubyBEdW5lcyBTVlJBE1BhbG9tYXIgTW91bnRhaW4gU1ARUGF0cmlja3MgUG9pbnQgU1ATUGZlaWZmZXIgQmlnIFN1ciBTUAhQaXNtbyBTQhBQbHVtYXMtRXVyZWthIFNQDVBvaW50IE11Z3UgU1ATUG9ydG9sYSBSZWR3b29kcyBTUDBQcmFpcmllIENyZWVrIFJlZHdvb2RzIFNQIEVsayBQcmFpcmllIENhbXBncm91bmQxUHJhaXJpZSBDcmVlayBSZWR3b29kcyBTUCBHb2xkIEJsdWZmcyBCZWFjaCBDYW1wZwpSZWZ1Z2lvIFNCE1JpY2hhcmRzb24gR3JvdmUgU1AQUnVzc2lhbiBHdWxjaCBTUBNTYWRkbGViYWNrIEJ1dHRlIFNQDVNhbHQgUG9pbnQgU1AOU2FsdG9uIFNlYSBTUkETU2FtdWVsIFAuIFRheWxvciBTUBpTYW11ZWwgUC4gVGF5bG9yIFNQIENhYmlucw9TYW4gQ2xlbWVudGUgU0IrU2FuIENsZW1lbnRlIFNCIChIb2xpZGF5cyBWaW50YWdlIFRyYWlsZXJzKQxTYW4gRWxpam8gU0IWU2FuIEx1aXMgUmVzZXJ2b2lyIFNSQQ1TYW4gT25vZnJlIFNCC1NlYWNsaWZmIFNCEFNpbHZlciBTdHJhbmQgU0ITU2lsdmVyd29vZCBMYWtlIFNSQQ9Tb25vbWEgQ29hc3QgU0IRU291dGggQ2FybHNiYWQgU0ITU3RhbmRpc2gtSGlja2V5IFNSQRNTdWdhciBQaW5lIFBvaW50IFNQElN1Z2FybG9hZiBSaWRnZSBTUAlTdW5zZXQgU0IJVGFob2UgU1JBEFR1cmxvY2sgTGFrZSBTUkEMVmFuIERhbW1lIFNQGVdlc3Rwb3J0LVVuaW9uIExhbmRpbmcgU0IPV2lsZGVyIFJhbmNoIFNQEldvb2Rzb24gQnJpZGdlIFNSQRVyAzYxNAEyAzYxNgQxMDg1AzYxNwQxMDkwBDEwOTMBMwM2MTgDNjE5AzYyMAM2MjEDNjIyATUEMTEwNwE2AzYyNAM2MjUDNjI2AzYyNwM2MjgDNjM0AzYyOQM2MzADNjMxAzYzMgM2MzMDNjM1ATcDNjM3AzYzOAM2MzkDNjQwATgDNjQxAzY0MgM2NDMDNjQ0AzY0NQM2NDYDNjQ4AzY1MAM2NTEDNjUyAzcxMwM2NTQDNjU1AzY1NgQxMTM2AzY1NwQxMTM4AzY1OQM2NjADNjYxAzY2MgM2NjMDNjY1AzY2NgM2NjcDNjY4AzY2OQM2NzADNjcxAzY3MgM2NzUDNjc0AzY3NgM2NzcDNjc4AzY3OQM2ODADNjgxAzY4MwM2ODIDNjg0AzY4NQM2ODYDNjg3AzY4OAM2OTADNjkxAzY5MgM2OTQDNjk1AzY5NgM2OTcDNjk5AzcwMAM3MDEDNzAyAzcwMwM3MDQDNzA1AzcwNgM3MDcDNzA4AzcwOQM3MTEDNzEyAzcxNAM3MTUDNzE2AzcxOAM3MjADNzIxAzcyNAM3MjUDNzI2AzcyOAM3MzADNzMxBDEyMzUEMTIzNgM3MzIUKwNyZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnFgFmZAIyDxBkEBUeBzEgTmlnaHQIMiBOaWdodHMIMyBOaWdodHMINCBOaWdodHMINSBOaWdodHMINiBOaWdodHMINyBOaWdodHMIOCBOaWdodHMIOSBOaWdodHMJMTAgTmlnaHRzCTExIE5pZ2h0cwkxMiBOaWdodHMJMTMgTmlnaHRzCTE0IE5pZ2h0cwkxNSBOaWdodHMJMTYgTmlnaHRzCTE3IE5pZ2h0cwkxOCBOaWdodHMJMTkgTmlnaHRzCTIwIE5pZ2h0cwkyMSBOaWdodHMJMjIgTmlnaHRzCTIzIE5pZ2h0cwkyNCBOaWdodHMJMjUgTmlnaHRzCTI2IE5pZ2h0cwkyNyBOaWdodHMJMjggTmlnaHRzCTI5IE5pZ2h0cwkzMCBOaWdodHMVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBQrAx5nZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dkZAIzDw8WBB8BBk/wkAMv59SIHwIGT/CQAy/n1IhkFgpmDxAPFgYfB2cfDAUEa2V5cx8LBQZ2YWx1ZXNkEBUEE0NhbXBpbmcgYW5kIExvZGdpbmcTSGVhcnN0IENhc3RsZSBUb3VycxZPdGhlciBUb3Vycy9BY3Rpdml0aWVzGEJvYXQgTGF1bmNoIFJlc2VydmF0aW9ucxUEATEBNAEzATUUKwMEZ2dnZ2RkAgEPDxYCHwgFCTgvMTkvMjAxN2RkAgIPEA8WAh8HZ2QQFR4HMSBOaWdodAgyIE5pZ2h0cwgzIE5pZ2h0cwg0IE5pZ2h0cwg1IE5pZ2h0cwg2IE5pZ2h0cwg3IE5pZ2h0cwg4IE5pZ2h0cwg5IE5pZ2h0cwkxMCBOaWdodHMJMTEgTmlnaHRzCTEyIE5pZ2h0cwkxMyBOaWdodHMJMTQgTmlnaHRzCTE1IE5pZ2h0cwkxNiBOaWdodHMJMTcgTmlnaHRzCTE4IE5pZ2h0cwkxOSBOaWdodHMJMjAgTmlnaHRzCTIxIE5pZ2h0cwkyMiBOaWdodHMJMjMgTmlnaHRzCTI0IE5pZ2h0cwkyNSBOaWdodHMJMjYgTmlnaHRzCTI3IE5pZ2h0cwkyOCBOaWdodHMJMjkgTmlnaHRzCTMwIE5pZ2h0cxUeATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDHmdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZxYBZmQCAw8QDxYCHwdnZGRkZAIEDw8WDB8CBk/wkAMv59SIHwUGAEAsuCt31QgfCgIBHwYCHh8JAgEfAwYAAJRmXufUCGQWBGYPFQGkAS9DYWxpZm9ybmlhV2ViSG9tZS9GYWNpbGl0aWVzL0FkdmFuY2VNYXBJbWFnZUdlbmVyYXRvci5hc3B4P21hcF9sZXZlbD1FbnRlcnByaXNlJm1hcF9pZD0wJmFycml2YWxfZGF0ZT04LzE5LzIwMTcmbmlnaHRzPTEmcm5kPTEwMDM1MTgwMTUmdW5pdF90eXBlPTAmdW5pdF9jYXRlZ29yeT0wZAIBD2QWBGYPFQMBMAEwDG5vTGVnZW5kLnBuZ2QCAQ8VAgEwBHRydWVkAjQPZBYCAgEPZBYCAgEPZBYCZg9kFggCBQ8QZGQWAGQCBw8PFgIfCAUJOC8xOS8yMDE3ZGQCCA9kFgICAw8QZGQWAGQCCQ8PFgQfBQYAQCy4K3fVCB8DBgAAlGZe59QIZGQCNg9kFgICAQ8PFgYfBQYAQCy4K3fVCB8DBgAAlGZe59QIHwYCHmRkAjcPZBYGAgwPEGQQFQkSU2VsZWN0IFJlbnRhbCBUeXBlB0JvYXRpbmcHQ2FtcGluZwhEYWlseVVzZRJFcXVlc3RyYWluIENhbXBpbmcNR3JvdXAgQ2FtcGluZw9Ib29rIFVwIENhbXBpbmcHTG9kZ2luZw5SZW1vdGUgQ2FtcGluZxUJAAQxMDEwATEBNwQxMDE2ATIEMTAxNQQxMDA4BDEwMTQUKwMJZ2dnZ2dnZ2dnFgFmZAIODxAPFggfCwUGVmFsdWUxHwwFBEtleTEfB2cfDWdkEBUHFlNlbGVjdCBDYW1waW5nIEVxdWlwLiAMUlYvTW90b3Job21lBFRlbnQJVGVudCBPbmx5B1RyYWlsZXIMVHJhaWxlciBPbmx5DVRydWNrL1NVVi9WYW4VBwEwAjc1AjgzAjc2Ajc0Ajg3Ajc5FCsDB2dnZ2dnZ2dkZAIPDxAPFgIfDWdkEBUIDlRyYWlsZXIgTGVuZ3RoBD4gMTUEPiAyMAQ+IDMwBD4gNDAEPiA1MAQ+IDYwBD4gNzAVCA5UcmFpbGVyIExlbmd0aAQ+IDE1BD4gMjAEPiAzMAQ+IDQwBD4gNTAEPiA2MAQ+IDcwFCsDCGdnZ2dnZ2dnZGQCOg9kFgICAQ9kFgICAQ8PFgIeB1Zpc2libGVoZGQCBA8WAh4JaW5uZXJodG1sBeUOPGZvb3Rlcj4NCjxkaXYgY2xhc3M9ImNvbnRhaW5lciI+DQo8ZGl2IGNsYXNzPSJyb3ciPg0KPGRpdiBjbGFzcz0iY29sLW1kLTEyIiBzdHlsZT0idGV4dC1hbGlnbjogY2VudGVyOyI+PGltZyBjbGFzcz0iZm90LWFyb3ciIHRpdGxlPSJkb3duIGFycm93IiBzcmM9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS90aGVtZXMvQ2FsaWZvcm5pYS9mb290ZXItYXJyb3cuanBnIiBhbHQ9ImFlcnJvdyIgLz4NCjxkaXYgY2xhc3M9ImJvdC1saW5rcyBwYWdlbGlua3MiPjxhIGhyZWY9IkRlZmF1bHQuYXNweCI+SE9NRSA8L2E+IHwgPGEgaHJlZj0iRmFjaWxpdGllcy9BZHZhbmNlU2VhcmNoLmFzcHgiPkNBTVBJTkcgQU5EIExPREdJTkcgPC9hPiB8IDxhIGhyZWY9IkFjdGl2aXRpZXMvUHJvZ3JhbXNBbmRUb3Vycy5hc3B4Ij5BQ1RJVklUSUVTIDwvYT4gfCA8YSBocmVmPSJBY3Rpdml0aWVzL0hlYXJzdENhc3RsZVRvdXJzLmFzcHgiPkhFQVJTVCBDQVNUTEU8L2E+IHwgPCEtLSAgICAgIDxhIGhyZWY9IkdpZnRjYXJkcy9HaWZ0Y2FyZHNhbGUuYXNweCI+R0lGVCBDQVJEUzwvYT4NCiAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgIC0tPiAgPCEtLSAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSJDdXN0b21lcnMvTmV3Q3VzdG9tZXIuYXNweCI+Q1JFQVRFIEFDQ09VTlQNCiAgICAgICAgICAgICAgICAgICAgPC9hPiAtLT48L2Rpdj4NCjxkaXYgY2xhc3M9ImJvdC1saW5rcyBjb2wtbWQtMTIiPjwhLS0gPGEgb25jbGljaz0iamF2YXNjcmlwdDp2YXIgcnVsZXM9d2luZG93Lm9wZW4oJycsICdydWxlcycsJ3dpZHRoPTYwMCwgaGVpZ2h0PTQwMCwgc2Nyb2xsYmFycz0xLCByZXNpemFibGU9MScpOyByZXR1cm4gZmFsc2U7IiB0YXJnZXQ9Il9ibGFuayIgIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKTsiPi0tPiA8YSBocmVmPSJodHRwOi8vd3d3LnBhcmtzLmNhLmdvdi8/cGFnZV9pZD0yMTMwMCIgdGFyZ2V0PSJfYmxhbmsiPiA8c3Ryb25nPlBBUksgUlVMRVMgPC9zdHJvbmc+IDwvYT4gfCA8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQ29udGFjdFVzLmFzcHgiPiA8c3Ryb25nPkNPTlRBQ1QgVVMgPC9zdHJvbmc+IDwvYT4gfCA8YSBocmVmPSJodHRwOi8vd3d3LnBhcmtzLmNhLmdvdi9Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayI+IDxzdHJvbmc+UFJJVkFDWSBQT0xJQ1kgPC9zdHJvbmc+IDwvYT48L2Rpdj4NCjxiciAvPg0KPGRpdiBjbGFzcz0icm93Ij48c3BhbiBpZD0iTGFiZWwxIiBzdHlsZT0iY29sb3I6IHdoaXRlOyBmb250LXNpemU6IDEycHg7Ij5Db250YWN0IFVzOiAxLTgwMC00NDQtNzI3NSA4OjAwYW0gLSA2OjAwcG0gUGFjaWZpYyBUaW1lIChQVCkgPC9zcGFuPiA8IS0tICA8c3BhbiBzdHlsZT0iY29sb3I6IFdoaXRlOyBmb250LXNpemU6IDEycHg7IiBpZD0iTGFiZWwxIj5OZWVkIEhlbHA/IENhbGwgdXMgOCBBLk0uIHRvIDYgUC5NLiBEYWlseSA4MDAtNDQ0LTcyNzUgKENsb3NlZCBDaHJpc3RtYXMgRGF5LCBOZXcgWWVhcnMgRGF5LCBhbmQgVGhhbmtzZ2l2aW5nKTwvc3Bhbj4gIC0tPjwvZGl2Pg0KPGRpdiBjbGFzcz0icm93MSI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtMTIgY29sLXNtLTEyIGNvcHlyaWdodHMiPkNvcHlyaWdodCAmY29weTsgMjAxNyZuYnNwOyBTdGF0ZSBvZiBDYWxpZm9ybmlhPC9kaXY+DQo8L2Rpdj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0iaW5jbHVkZUZvb3RlciI+Jm5ic3A7PC9kaXY+DQo8L2Rpdj4NCjwvZGl2Pg0KPC9mb290ZXI+ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgU1Y3RsMDEkbWFpbkNvbnRlbnQkTGVmdE1lbnVBZHZhbmNlRmlsdGVyJGNoa0FjY2Vzc2libGUFNGN0bDAxJG1haW5Db250ZW50JExlZnRNZW51QWR2YW5jZUZpbHRlciRjaGtJc1ByZW1pdW1lheu/MTDYLIrPULDpul3uaKT0u1IsERFYLp8pUi2c8g==",
"__VIEWSTATEGENERATOR": "6660105B",
"ctl01$Hidscreenresolutionmain": "",
"ctl01$hdnCulture": "",
"ctl01$AdvanceMainSearch$hdnAutoPlaceId": "",
"ctl01$AdvanceMainSearch$hdnLat": "37.17159652709961",
"ctl01$AdvanceMainSearch$hdnLag": "-122.2220458984375",
"ctl01$AdvanceMainSearch$hdnautocomplete": "",
"ctl01$AdvanceMainSearch$hdncustomautocomplete": "",
"ctl01$AdvanceMainSearch$hdnArrivalDate": "8/30/2017",
"ctl01$AdvanceMainSearch$txtArrivalDate": "8/30/2017",
"ctl01$AdvanceMainSearch$hdnNights": "1",
"ctl01$AdvanceMainSearch$ddlNights": "1",
"ctl01$ctl11$indexValue": "",
"ctl01$ctl11$hidddlCategories": "",
"ctl01$ctl11$hidddlUnitType": "",
"ctl01$ctl11$hdnParkFinder": "",
"ctl01$ctl11$hdnSelectRentalType": "0",
"ctl01$ctl11$hdnSelectCampingEquip": "0",
"ctl01$ctl11$hdnLeftUnitTypeName": "",
"ctl01$ctl11$hdnSelectedCategoryName": "",
"ctl01$ctl11$hdnSelectedRegionId": "0",
"ctl01$ctl11$hdnSelectedUnittypeId": "",
"ctl01$ctl11$hdnplaceid": "",
"ctl01$ctl11$hdnMultiSelect": "",
"ctl01$ctl11$hdnIsPremium": "false",
"ctl01$ctl11$ddlCategories": "",
"ctl01$ctl11$ddlCampingUnit": "0",
"ctl01$ctl11$ddlLenght": "Trailer Length",
"ctl01$mainContent$hdnUnitTotalDay": "6",
"ctl01$mainContent$hdnFilterSouth": "",
"ctl01$mainContent$hdnFilterNorth": "",
"ctl01$mainContent$hdnFilterEast": "",
"ctl01$mainContent$hdnFilterWest": "",
"ctl01$mainContent$hdnFilterCenterLat": "",
"ctl01$mainContent$hdnFilterCenterLong": "",
"ctl01$mainContent$btngetFacilitiess": "Hure",
"ctl01$mainContent$hdndefaultLag": "-122.22203",
"ctl01$mainContent$hdndefaultLat": "37.17159",
"ctl01$mainContent$hdnCheckListDatalistmode": "1",
"ctl01$mainContent$hdnWebConfigRadiusCheck": "0",
"ctl01$mainContent$hdnWebConfigRadiusValue": "150",
"ctl01$mainContent$Hidscreenresolution": "1440",
"ctl01$mainContent$hdnAllhideControl": "",
"ctl01$mainContent$hidddlUnitType": "",
"ctl01$mainContent$hdnPlaceid": "3",
"ctl01$mainContent$hdnPlaceFacilirySize": "large",
"ctl01$mainContent$hdnDDLPlaceId": "",
"ctl01$mainContent$hdnFacilityid": "335",
"ctl01$mainContent$hdnFacilityType": "1",
"ctl01$mainContent$hdnNodeclick": "0",
"ctl01$mainContent$hiddenPlaceLevel": "Facility",
"ctl01$mainContent$hdnPlaceCategoryId": "",
"ctl01$mainContent$hdClient": "",
"ctl01$mainContent$hdnFav": "",
"ctl01$mainContent$hdnCheckAfterpostback": "",
"ctl01$mainContent$hiddenRPlaceLevel": "",
"ctl01$mainContent$hdnBPlaceID": "",
"ctl01$mainContent$hdnBFacilityID": "",
"ctl01$mainContent$hdnGoback": "",
"ctl01$mainContent$hdnSouth": "",
"ctl01$mainContent$hdnNorth": "",
"ctl01$mainContent$hdnEast": "",
"ctl01$mainContent$hdnWest": "",
"ctl01$mainContent$hdnCenterlat": "37.171589999999085",
"ctl01$mainContent$hdnCenterlong": "-122.2220299999957",
"ctl01$mainContent$hdnCenterpointName": "0",
"ctl01$mainContent$hdnCenterpointlat": "0",
"ctl01$mainContent$hdnCenterpointlng": "0",
"ctl01$mainContent$hdnGooglePlaceRefId": "0",
"ctl01$mainContent$hdnGoogleFacilityName": "0",
"ctl01$mainContent$hdnGoolgePlaceImage": "0",
"ctl01$mainContent$hdnCheckParkDataField": "0",
"ctl01$mainContent$facilityChanged": "",
"ctl01$mainContent$txtDateRange": "8/30/2017",
"ctl01$mainContent$Grid_ddlNights": "1",
"ctl01$mainContent$TopMenuMainSearch$ddlFacilityCategory": "1",
"ctl01$mainContent$TopMenuMainSearch$txtTopArrivalDate": "8/30/2017",
"ctl01$mainContent$TopMenuMainSearch$ddlTopNights": "1",
"ctl01$mainContent$TopMenuMainSearch$ddlSortBy": "3",
"ctl01$mainContent$ugReservationGrid$hdnnotavailableunitAdvanced": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hidddlLeft_UnitType": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hdnLeft_SelectedCategoryName": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hidddlLeft_Categories": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$Left_indexValue": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hdnLeft_SelectedUnittypeId": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hdnLeft_SelectRentalType": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$hdnLeft_SelectCampingEquip": "0",
"ctl01$mainContent$LeftMenuAdvanceFilter$hdnLeft_placeid": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$ddlLeft_Categories": "",
"ctl01$mainContent$LeftMenuAdvanceFilter$ddlLeft_CampingUnit": "0",
"ctl01$mainContent$LeftMenuAdvanceFilter$ddlLeft_Lenght": "Trailer Length",
"ctl01$mainContent$mapGooglePlaces$hidEventName": "",
"ctl01$mainContent$mapGooglePlaces$hidEventValue": ""
}
one_campsite_post_body = {
"FacilityId": 332,
"PlaceId": 3,
"MaximumDates": 1,
"IsTablet": True,
"MaximumStayforGrid": 1
}
web_home_short = {
"__EVENTTARGET": "",
"__EVENTARGUMENT": "",
"__VIEWSTATE": "/wEPDwUJNTYwNzY5OTkyD2QWAmYPDxYEHhJBcnJpdmFsRGF0ZURpc3BsYXkGAEB4j97s1AgeC0Fycml2YWxEYXRlBgBAeI/e7NQIZBYCZg8PFgIeFkZ1dHVyZUJvb2tpbmdTdGFydERhdGUGAEB4j97s1AhkFghmD2QWAgIKDxYCHgRocmVmBU1odHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL1N0eWxlcy9qcXVlcnktdWkubWluLmNzc2QCAg8PFgQeFEZ1dHVyZUJvb2tpbmdFbmREYXRlBgCAEOGrfNUIHgtNYXhpbXVtU3RheQIeZGQCAw9kFgYCBA8PFgQfAAYAQHiP3uzUCB8BBgBAeI/e7NQIZBYIAgUPEA8WAh4LXyFEYXRhQm91bmRnZGRkZAIHDw8WAh4EVGV4dAUJOC8yNy8yMDE3ZGQCCA9kFgICAw8QDxYCHwZnZBAVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBUeATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDHmdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZxYBZmQCCQ8PFgofAgYAQHiP3uzUCB8EBgCAEOGrfNUIHwEGAEB4j97s1AgeC01pbmltdW1TdGF5AgEfBQIeZBYEZg8VAaMBL0NhbGlmb3JuaWFXZWJIb21lL0ZhY2lsaXRpZXMvQWR2YW5jZU1hcEltYWdlR2VuZXJhdG9yLmFzcHg/bWFwX2xldmVsPUVudGVycHJpc2UmbWFwX2lkPTAmYXJyaXZhbF9kYXRlPTgvMjcvMjAxNyZuaWdodHM9MCZybmQ9NTIyODU2NjQ0JnVuaXRfdHlwZT0wJnVuaXRfY2F0ZWdvcnk9MGQCAQ9kFgRmDxUDATABMAxub0xlZ2VuZC5wbmdkAgEPFQIBMAR0cnVlZAIHDxYCHwcFxgQ8bGkgY2xhc3M9ImRyb3Bkb3duIj4NCgk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvRGVmYXVsdC5hc3B4Ij4NCgkJSE9NRQ0KCTwvYT4NCjwvbGk+DQo8bGkgY2xhc3M9ImRyb3Bkb3duIj4NCgk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvRmFjaWxpdGllcy9BZHZhbmNlU2VhcmNoLmFzcHgiPg0KCQlDQU1QSU5HIEFORCBMT0RHSU5HDQoJPC9hPg0KPC9saT4NCjxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCQk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQWN0aXZpdGllcy9Qcm9ncmFtc0FuZFRvdXJzLmFzcHgiPg0KCQkJVE9VUlMNCgkJPC9hPjwvbGk+DQoJCTxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCQk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQWN0aXZpdGllcy9IZWFyc3RDYXN0bGVUb3Vycy5hc3B4Ij4NCgkJCUhFQVJTVCBDQVNUTEUgVE9VUg0KCQk8L2E+PC9saT5kAhEPZBYGAgMPZBYEAgcPEA8WBh4ORGF0YVZhbHVlRmllbGQFBGtleXMeDURhdGFUZXh0RmllbGQFBnZhbHVlcx8GZ2QQFQQTQ2FtcGluZyBhbmQgTG9kZ2luZxNIZWFyc3QgQ2FzdGxlIFRvdXJzFk90aGVyIFRvdXJzL0FjdGl2aXRpZXMYQm9hdCBMYXVuY2ggUmVzZXJ2YXRpb25zFQQBMQE0ATMBNRQrAwRnZ2dnZGQCCQ8QZBAVHwABMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzAVHwEwATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDH2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2cWAWZkAgQPFgIeCWlubmVyaHRtbAXeFzxzZWN0aW9uIGNsYXNzPSJiYW5uZXItcGFydCIgc3R5bGU9ImRpc3BsYXk6bm9uZTsiPg0KDQogICAgDQogICAgPGRpdiBjbGFzcz0ic2xpZGVyIGxhenkiPg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzEuanBnIiB0aXRsZT0iQmFubmVyIE9uZSIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgT25lIiAvPiANCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWcyLmpwZyIgdGl0bGU9IkJhbm5lciBUd28iIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIFR3byIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nMy5qcGciIHRpdGxlPSJCYW5uZXIgVGhyZWUiIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIFRocmVlIiAvPg0KICAgICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nNC5qcGciIHRpdGxlPSJCYW5uZXIgRm91ciIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRm91ciIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWc1LmpwZyIgdGl0bGU9IkJhbm5lciBGaXZlIiBhbHQ9IkJhbm5lciBmb3IgZGlzcGxheSBpbWFnZSBGaXZlIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzYuanBnIiB0aXRsZT0iQmFubmVyIFNpeCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgU2l4IiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzcuanBnIiB0aXRsZT0iQmFubmVyIFNldmVuIiBhbHQ9IkJhbm5lciBmb3IgZGlzcGxheSBpbWFnZSBTZXZlbiIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWc4LmpwZyIgdGl0bGU9IkJhbm5lciBFaWdodCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWlnaHQiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KCQ0KCSAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzkuanBnIiB0aXRsZT0iQmFubmVyIEZpdmUiIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIE5pbmUiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nMTAuanBnIiB0aXRsZT0iQmFubmVyIFNpeCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgVGVuIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzExLmpwZyIgdGl0bGU9IkJhbm5lciBTZXZlbiIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWxldmVuIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzEyLmpwZyIgdGl0bGU9IkJhbm5lciBFaWdodCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWlnaHQiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KCQ0KCQ0KICAJPC9kaXY+DQogICAgDQogICAgDQogICAgDQogICAgDQogICAgDQogICAgDQo8L3NlY3Rpb24+DQogZAIFD2QWAgIEDxYCHwcFxyI8ZGl2IGNsYXNzPSJjb250YWluZXIiPg0KICAgIDxkaXYgY2xhc3M9InJvdyBwdWxsLXRvcCI+DQogICAgDQogICAgICAgIDxkaXYgY2xhc3M9ImNvbC1zbS00Ij4NCiAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94Ij4NCiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iZmVhdHVyZS1ib3gtaW5mbyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8aDIgc3R5bGU9ImZvbnQtZmFtaWx5OiAnU2F0aXNmeScsIGN1cnNpdmU7IHRleHQtYWxpZ246IGNlbnRlcjsgZm9udC1zaXplOiAzZW07Ij5XZWxjb21lIHRvIFJlc2VydmVDYWxpZm9ybmlhJnRyYWRlOzwvaDI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWltYWdlIiBzdHlsZT0ibWFyZ2luLWJvdHRvbTogMzBweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vd3d3LnBhcmtzLmNhLmdvdi9JbWFnZXMvY29udGVudC9mZWF0dXJlZC9XZWxjb21lSW1hZ2UuanBnIiBhbHQ9IldlbGNvbWUgdG8gUmVzZXJ2ZUNhbGlmb3JuaWEiIHRpdGxlPSJXZWxjb21lIHRvIFJlc2VydmVDYWxpZm9ybmlhIiAvPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwPldlbGNvbWUgdG8gUmVzZXJ2ZUNhbGlmb3JuaWEmdHJhZGU7LiAgT3VyIG5ldyBzeXN0ZW0gaXMgZWFzeSB0byB1c2UgLSBzaW1pbGFyIHRvIGJvb2tpbmcgaG90ZWxzLCBhaXJsaW5lIHRpY2tldHMgYW5kIG90aGVyIGNvbXBhcmFibGUgc2VydmljZXMuIEEgdmFyaWV0eSBvZiBuZXcgZmVhdHVyZXMgd2lsbCBiZSBwaGFzZWQgaW4gYmV0d2VlbiBBdWd1c3QgMSwgMjAxNyBhbmQgTWFyY2ggMSwgMjAxOCwgaW5jbHVkaW5nIG1vdmluZyBmcm9tIGEgZmlyc3Qtb2YtdGhlLW1vbnRoIG9uLXNhbGUgZGF5cyB0byBhIG5ldyByb2xsaW5nIHdpbmRvdyByZXNlcnZhdGlvbiBzZXJ2aWNlLiBUaGlzIG1lYW5zIHRoYXQgeW91IHdpbGwgYmUgYWJsZSB0byByZXNlcnZlIGNhbXBzaXRlcyBhbmQgbG9kZ2luZyBzaXggbW9udGhzIGluIGFkdmFuY2UgZnJvbSB0aGUgY3VycmVudCBkYXRlLiBCb29rIHlvdXIgbmV4dCBhZHZlbnR1cmUgd2l0aCB1cyAtIDxhIGhyZWY9Ii4vQ3VzdG9tZXJzL05ld0N1c3RvbWVyLmFzcHgiPmNyZWF0ZSB5b3VyIHByb2ZpbGUgaGVyZS48L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCg0KICAgICAgICA8ZGl2IGNsYXNzPSJjb2wtc20tNCI+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJmZWF0dXJlLWJveCI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWluZm8iPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGgyIHN0eWxlPSJmb250LWZhbWlseTogJ1NhdGlzZnknLCBjdXJzaXZlOyB0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogM2VtOyI+RmluZCBZb3VyIFJlc2VydmF0aW9uPC9oMj4NCiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iZmVhdHVyZS1ib3gtaW1hZ2UiIHN0eWxlPSJtYXJnaW4tYm90dG9tOiAzMHB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly93d3cucGFya3MuY2EuZ292L0ltYWdlcy9jb250ZW50L2ZlYXR1cmVkL1BmZWlmZmVyQ2FiaW4uanBnIiBhbHQ9IkFkdmVudHVyZSBvZiB0aGUgTW9udGgiIHRpdGxlPSJBZHZlbnR1cmUgb2YgdGhlIE1vbnRoIiAvPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwPlJlc2VydmF0aW9ucyBtYWRlIHRocm91Z2ggUmVzZXJ2ZUFtZXJpY2EgcHJpb3IgdG8gSnVseSAyNywgMjAxNyB3aWxsIGJlIGFjY2Vzc2libGUgb24gdGhlIG5ldyBzeXN0ZW0gb24gQXVndXN0IDEuIFRvIHZpZXcsIG1vZGlmeSwgb3IgY2FuY2VsIHlvdXIgcmVzZXJ2YXRpb24sIHlvdSB3aWxsIG5lZWQgdG8gbG9nIGludG8gUmVzZXJ2ZUNhbGlmb3JuaWEmdHJhZGU7IHVzaW5nIHRoZSBlbWFpbCB0aGF0IHdhcyB1c2VkIHdoZW4gdGhlIG9yaWdpbmFsIHJlc2VydmF0aW9uIHdhcyBjcmVhdGVkIGFuZCB0aGVuIHJlc2V0IHlvdXIgcGFzc3dvcmQuIEN1c3RvbWVycyB0aGF0IGRvIG5vdCBoYXZlIGEgY3VycmVudCByZXNlcnZhdGlvbiB3aWxsIG5lZWQgdG8gY3JlYXRlIGEgbmV3IFJlc2VydmVDYWxpZm9ybmlhJnRyYWRlOyBhY2NvdW50LiBQbGFuIHlvdXIgbmV4dCBhZHZlbnR1cmUgd2l0aCB1cyBub3cgYW5kIDxhIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKTsiIG9uY2xpY2s9JyQoIiNteU1vZGFsIikubW9kYWwoKTsnPmxvZyBpbnRvIG91ciBzeXN0ZW0uPC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPC9kaXY+DQogICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgICAgIA0KICAgICAgICA8ZGl2IGNsYXNzPSJjb2wtc20tNCI+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJmZWF0dXJlLWJveCI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWluZm8iPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGgyIHN0eWxlPSJmb250LWZhbWlseTogJ1NhdGlzZnknLCBjdXJzaXZlOyB0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogM2VtOyI+UGFzcyBFeGNoYW5nZSBQcm9ncmFtPC9oMj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWltYWdlIiBzdHlsZT0ibWFyZ2luLWJvdHRvbTogMzBweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL3d3dy5wYXJrcy5jYS5nb3YvSW1hZ2VzL2NvbnRlbnQvZmVhdHVyZWQvUGFzc0V4Y2hhbmdlSWNvbi5wbmciIGFsdD0iUGFzcyBFeGNoYW5nZSIgdGl0bGU9IlBhc3MgRXhjaGFuZ2UgUHJvZ3JhbSIgLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHA+V2UgYXJlIG1vZGVybml6aW5nIHRoZSB3YXkgd2UgbWFuYWdlIHRoZSBEaXN0aW5ndWlzaGVkIFZldGVyYW4gYW5kIERpc2FibGVkIERpc2NvdW50IHBhc3MgcHJvZ3JhbXMuIE5ldyBjcmVkaXQgY2FyZCBkZXNpZ24gcGFzc2VzIGFyZSBiZWluZyBpc3N1ZWQgZm9yIGN1cnJlbnQgcGFzcyBob2xkZXJzLiBJZiB5b3UgaGF2ZSBvbmUsIHBsZWFzZSB2aXNpdCB1cyBvbmxpbmUgb3IgdmlzaXQgb25lIG9mIHRoZSA0NyBkZXNpZ25hdGVkIHN0YXRlIHBhcmsgbG9jYXRpb25zIHNvIHRoYXQgeW91IG1heSBjb250aW51ZSB0byBlYXNpbHkgYWNjZXNzIHlvdXIgZmF2b3JpdGUgc3RhdGUgcGFya3MuIE5PVEU6IEN1cnJlbnQgdmV0ZXJhbiBvciBkaXNhYmxlZCBwYXNzIGhvbGRlcnMgd2lsbCBuZWVkIG5ldyBwYXNzZXMgZm9yIGNhbXBpbmcgcmVzZXJ2YXRpb25zIGFmdGVyIEF1Z3VzdCAxLiBJbmRpdmlkdWFscyBtYXkgdXNlIHRoZWlyIGN1cnJlbnQgcGFzcyBmb3IgZGF5IHVzZSB0aHJvdWdoIEZlYi4gMjgsIDIwMTguIE9sZCBwYXNzZXMgd2lsbCBub3QgYmUgdmFsaWQgYWZ0ZXIgdGhlc2UgZGF0ZXMuPGEgaHJlZj0iaHR0cDovL3d3dy5wYXJrcy5jYS5nb3YvP3BhZ2VfaWQ9Mjk2MTAiIHRhcmdldD0iX2JsYW5rIj4gVmlldyBkZXRhaWxzLjwvYT48L3A+DQogICAgICAgICAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgICAgICANCiAgICA8L2Rpdj4NCjwvZGl2Pg0KDQo8ZGl2IGNsYXNzPSJjb250YWluZXIiPg0KICAgIDxkaXYgY2xhc3M9InJvdyIgc3R5bGU9Im1hcmdpbi10b3A6IDMwcHg7Ij4NCgkJCTxwPlBsZWFzZSBjaGVjayBvdXQgb3VyIDxhIGhyZWY9Imh0dHBzOi8vd3d3LnBhcmtzLmNhLmdvdi8/cGFnZV9pZD0yOTY3NiIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJ0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPmZyZXF1ZW50bHkgYXNrZWQgcXVlc3Rpb25zIChGQVFzKTwvYT4gZm9yIGRldGFpbHMgb24gdGhlIG5ldyBzeXN0ZW0gb3IgPGEgaHJlZj0iaHR0cHM6Ly92aXNpdG9yLnIyMC5jb25zdGFudGNvbnRhY3QuY29tL21hbmFnZS9vcHRpbj92PTAwMXYycGhPM0J6SDJWNU5oRzBZSEVZa2FOclZ5WjJZMHpKWEJhdmJvdW00RENUQzQ0VERycjRtWm1ncDY1eDRaSzNJNnc1TXZlSS1mT0diRWhPZG9CQk80Q29LZk92WUpNTGN2WDRxdlRUSG9uMG1Zak1fUTlzSnFRVDlqbW9uVjZvenVpUVRnS1pKYi1MZUViYWtUTlAzZnIzNE1HSGNtbS1JTG9IOGpEa0drTSUzRCIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJ0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPnN1YnNjcmliZTwvYT4gdG8gb3VyIG5ld3MgZmVlZCB0byByZWNlaXZlIHRoZSBsYXRlc3QgaW5mb3JtYXRpb24uPC9wPg0KCTwvZGl2Pg0KPC9kaXY+ZAIEDxYCHwsF5Q48Zm9vdGVyPg0KPGRpdiBjbGFzcz0iY29udGFpbmVyIj4NCjxkaXYgY2xhc3M9InJvdyI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtMTIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7Ij48aW1nIGNsYXNzPSJmb3QtYXJvdyIgdGl0bGU9ImRvd24gYXJyb3ciIHNyYz0iaHR0cHM6Ly93d3cucmVzZXJ2ZWNhbGlmb3JuaWEuY29tL0NhbGlmb3JuaWFXZWJIb21lL3RoZW1lcy9DYWxpZm9ybmlhL2Zvb3Rlci1hcnJvdy5qcGciIGFsdD0iYWVycm93IiAvPg0KPGRpdiBjbGFzcz0iYm90LWxpbmtzIHBhZ2VsaW5rcyI+PGEgaHJlZj0iRGVmYXVsdC5hc3B4Ij5IT01FIDwvYT4gfCA8YSBocmVmPSJGYWNpbGl0aWVzL0FkdmFuY2VTZWFyY2guYXNweCI+Q0FNUElORyBBTkQgTE9ER0lORyA8L2E+IHwgPGEgaHJlZj0iQWN0aXZpdGllcy9Qcm9ncmFtc0FuZFRvdXJzLmFzcHgiPkFDVElWSVRJRVMgPC9hPiB8IDxhIGhyZWY9IkFjdGl2aXRpZXMvSGVhcnN0Q2FzdGxlVG91cnMuYXNweCI+SEVBUlNUIENBU1RMRTwvYT4gfCA8IS0tICAgICAgPGEgaHJlZj0iR2lmdGNhcmRzL0dpZnRjYXJkc2FsZS5hc3B4Ij5HSUZUIENBUkRTPC9hPg0KICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgLS0+ICA8IS0tICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9IkN1c3RvbWVycy9OZXdDdXN0b21lci5hc3B4Ij5DUkVBVEUgQUNDT1VOVA0KICAgICAgICAgICAgICAgICAgICA8L2E+IC0tPjwvZGl2Pg0KPGRpdiBjbGFzcz0iYm90LWxpbmtzIGNvbC1tZC0xMiI+PCEtLSA8YSBvbmNsaWNrPSJqYXZhc2NyaXB0OnZhciBydWxlcz13aW5kb3cub3BlbignJywgJ3J1bGVzJywnd2lkdGg9NjAwLCBoZWlnaHQ9NDAwLCBzY3JvbGxiYXJzPTEsIHJlc2l6YWJsZT0xJyk7IHJldHVybiBmYWxzZTsiIHRhcmdldD0iX2JsYW5rIiAgaHJlZj0iamF2YXNjcmlwdDp2b2lkKDApOyI+LS0+IDxhIGhyZWY9Imh0dHA6Ly93d3cucGFya3MuY2EuZ292Lz9wYWdlX2lkPTIxMzAwIiB0YXJnZXQ9Il9ibGFuayI+IDxzdHJvbmc+UEFSSyBSVUxFUyA8L3N0cm9uZz4gPC9hPiB8IDxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9Db250YWN0VXMuYXNweCI+IDxzdHJvbmc+Q09OVEFDVCBVUyA8L3N0cm9uZz4gPC9hPiB8IDxhIGhyZWY9Imh0dHA6Ly93d3cucGFya3MuY2EuZ292L1ByaXZhY3kiIHRhcmdldD0iX2JsYW5rIj4gPHN0cm9uZz5QUklWQUNZIFBPTElDWSA8L3N0cm9uZz4gPC9hPjwvZGl2Pg0KPGJyIC8+DQo8ZGl2IGNsYXNzPSJyb3ciPjxzcGFuIGlkPSJMYWJlbDEiIHN0eWxlPSJjb2xvcjogd2hpdGU7IGZvbnQtc2l6ZTogMTJweDsiPkNvbnRhY3QgVXM6IDEtODAwLTQ0NC03Mjc1IDg6MDBhbSAtIDY6MDBwbSBQYWNpZmljIFRpbWUgKFBUKSA8L3NwYW4+IDwhLS0gIDxzcGFuIHN0eWxlPSJjb2xvcjogV2hpdGU7IGZvbnQtc2l6ZTogMTJweDsiIGlkPSJMYWJlbDEiPk5lZWQgSGVscD8gQ2FsbCB1cyA4IEEuTS4gdG8gNiBQLk0uIERhaWx5IDgwMC00NDQtNzI3NSAoQ2xvc2VkIENocmlzdG1hcyBEYXksIE5ldyBZZWFycyBEYXksIGFuZCBUaGFua3NnaXZpbmcpPC9zcGFuPiAgLS0+PC9kaXY+DQo8ZGl2IGNsYXNzPSJyb3cxIj4NCjxkaXYgY2xhc3M9ImNvbC1tZC0xMiBjb2wtc20tMTIgY29weXJpZ2h0cyI+Q29weXJpZ2h0ICZjb3B5OyAyMDE3Jm5ic3A7IFN0YXRlIG9mIENhbGlmb3JuaWE8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJpbmNsdWRlRm9vdGVyIj4mbmJzcDs8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8L2Zvb3Rlcj5kZLZ6sfXPPuFkFOOQG/etH5eIc3BOxlVkEyEvX7usToX0",
"__VIEWSTATEGENERATOR": "34651395",
"ctl00$ctl00$mainContent$hdnMasterPlaceId": "3",
"ctl00$ctl00$mainContent$txtArrivalDate": "08/30/2017",
"ctl00$ctl00$mainContent$ddlHomeNights": "1",
"ctl00$ctl00$mainContent$btnSearch": "Go"
}
web_home = {
"__EVENTTARGET": "",
"__EVENTARGUMENT": "",
"__VIEWSTATE": "/wEPDwUJNTYwNzY5OTkyD2QWAmYPDxYEHhJBcnJpdmFsRGF0ZURpc3BsYXkGAEB4j97s1AgeC0Fycml2YWxEYXRlBgBAeI/e7NQIZBYCZg8PFgIeFkZ1dHVyZUJvb2tpbmdTdGFydERhdGUGAEB4j97s1AhkFghmD2QWAgIKDxYCHgRocmVmBU1odHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL1N0eWxlcy9qcXVlcnktdWkubWluLmNzc2QCAg8PFgQeFEZ1dHVyZUJvb2tpbmdFbmREYXRlBgCAEOGrfNUIHgtNYXhpbXVtU3RheQIeZGQCAw9kFgYCBA8PFgQfAAYAQHiP3uzUCB8BBgBAeI/e7NQIZBYIAgUPEA8WAh4LXyFEYXRhQm91bmRnZGRkZAIHDw8WAh4EVGV4dAUJOC8yNy8yMDE3ZGQCCA9kFgICAw8QDxYCHwZnZBAVHgExATIBMwE0ATUBNgE3ATgBOQIxMAIxMQIxMgIxMwIxNAIxNQIxNgIxNwIxOAIxOQIyMAIyMQIyMgIyMwIyNAIyNQIyNgIyNwIyOAIyOQIzMBUeATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDHmdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZxYBZmQCCQ8PFgofAgYAQHiP3uzUCB8EBgCAEOGrfNUIHwEGAEB4j97s1AgeC01pbmltdW1TdGF5AgEfBQIeZBYEZg8VAaMBL0NhbGlmb3JuaWFXZWJIb21lL0ZhY2lsaXRpZXMvQWR2YW5jZU1hcEltYWdlR2VuZXJhdG9yLmFzcHg/bWFwX2xldmVsPUVudGVycHJpc2UmbWFwX2lkPTAmYXJyaXZhbF9kYXRlPTgvMjcvMjAxNyZuaWdodHM9MCZybmQ9NTIyODU2NjQ0JnVuaXRfdHlwZT0wJnVuaXRfY2F0ZWdvcnk9MGQCAQ9kFgRmDxUDATABMAxub0xlZ2VuZC5wbmdkAgEPFQIBMAR0cnVlZAIHDxYCHwcFxgQ8bGkgY2xhc3M9ImRyb3Bkb3duIj4NCgk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvRGVmYXVsdC5hc3B4Ij4NCgkJSE9NRQ0KCTwvYT4NCjwvbGk+DQo8bGkgY2xhc3M9ImRyb3Bkb3duIj4NCgk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvRmFjaWxpdGllcy9BZHZhbmNlU2VhcmNoLmFzcHgiPg0KCQlDQU1QSU5HIEFORCBMT0RHSU5HDQoJPC9hPg0KPC9saT4NCjxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCQk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQWN0aXZpdGllcy9Qcm9ncmFtc0FuZFRvdXJzLmFzcHgiPg0KCQkJVE9VUlMNCgkJPC9hPjwvbGk+DQoJCTxsaSBjbGFzcz0iZHJvcGRvd24iPg0KCQk8YSBocmVmPSJodHRwczovL3d3dy5yZXNlcnZlY2FsaWZvcm5pYS5jb20vQ2FsaWZvcm5pYVdlYkhvbWUvQWN0aXZpdGllcy9IZWFyc3RDYXN0bGVUb3Vycy5hc3B4Ij4NCgkJCUhFQVJTVCBDQVNUTEUgVE9VUg0KCQk8L2E+PC9saT5kAhEPZBYGAgMPZBYEAgcPEA8WBh4ORGF0YVZhbHVlRmllbGQFBGtleXMeDURhdGFUZXh0RmllbGQFBnZhbHVlcx8GZ2QQFQQTQ2FtcGluZyBhbmQgTG9kZ2luZxNIZWFyc3QgQ2FzdGxlIFRvdXJzFk90aGVyIFRvdXJzL0FjdGl2aXRpZXMYQm9hdCBMYXVuY2ggUmVzZXJ2YXRpb25zFQQBMQE0ATMBNRQrAwRnZ2dnZGQCCQ8QZBAVHwABMQEyATMBNAE1ATYBNwE4ATkCMTACMTECMTICMTMCMTQCMTUCMTYCMTcCMTgCMTkCMjACMjECMjICMjMCMjQCMjUCMjYCMjcCMjgCMjkCMzAVHwEwATEBMgEzATQBNQE2ATcBOAE5AjEwAjExAjEyAjEzAjE0AjE1AjE2AjE3AjE4AjE5AjIwAjIxAjIyAjIzAjI0AjI1AjI2AjI3AjI4AjI5AjMwFCsDH2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2cWAWZkAgQPFgIeCWlubmVyaHRtbAXeFzxzZWN0aW9uIGNsYXNzPSJiYW5uZXItcGFydCIgc3R5bGU9ImRpc3BsYXk6bm9uZTsiPg0KDQogICAgDQogICAgPGRpdiBjbGFzcz0ic2xpZGVyIGxhenkiPg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzEuanBnIiB0aXRsZT0iQmFubmVyIE9uZSIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgT25lIiAvPiANCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWcyLmpwZyIgdGl0bGU9IkJhbm5lciBUd28iIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIFR3byIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nMy5qcGciIHRpdGxlPSJCYW5uZXIgVGhyZWUiIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIFRocmVlIiAvPg0KICAgICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nNC5qcGciIHRpdGxlPSJCYW5uZXIgRm91ciIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRm91ciIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWc1LmpwZyIgdGl0bGU9IkJhbm5lciBGaXZlIiBhbHQ9IkJhbm5lciBmb3IgZGlzcGxheSBpbWFnZSBGaXZlIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzYuanBnIiB0aXRsZT0iQmFubmVyIFNpeCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgU2l4IiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzcuanBnIiB0aXRsZT0iQmFubmVyIFNldmVuIiBhbHQ9IkJhbm5lciBmb3IgZGlzcGxheSBpbWFnZSBTZXZlbiIgLz4NCiAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgDQogICAgCTxkaXY+DQogICAgICAgICAgPGRpdiBjbGFzcz0iaW1hZ2UiPiANCiAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vY2FsaS1jb250ZW50LnVzZWRpcmVjdC5jb20vdGhlbWVzL0NhbGlmb3JuaWEvQmFubmVycy9pbWc4LmpwZyIgdGl0bGU9IkJhbm5lciBFaWdodCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWlnaHQiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KCQ0KCSAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzkuanBnIiB0aXRsZT0iQmFubmVyIEZpdmUiIGFsdD0iQmFubmVyIGZvciBkaXNwbGF5IGltYWdlIE5pbmUiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgIA0KICAgIAk8ZGl2Pg0KICAgICAgICAgIDxkaXYgY2xhc3M9ImltYWdlIj4gDQogICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL2NhbGktY29udGVudC51c2VkaXJlY3QuY29tL3RoZW1lcy9DYWxpZm9ybmlhL0Jhbm5lcnMvaW1nMTAuanBnIiB0aXRsZT0iQmFubmVyIFNpeCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgVGVuIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzExLmpwZyIgdGl0bGU9IkJhbm5lciBTZXZlbiIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWxldmVuIiAvPg0KICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAJPGRpdj4NCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbWFnZSI+IA0KICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly9jYWxpLWNvbnRlbnQudXNlZGlyZWN0LmNvbS90aGVtZXMvQ2FsaWZvcm5pYS9CYW5uZXJzL2ltZzEyLmpwZyIgdGl0bGU9IkJhbm5lciBFaWdodCIgYWx0PSJCYW5uZXIgZm9yIGRpc3BsYXkgaW1hZ2UgRWlnaHQiIC8+DQogICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KCQ0KCQ0KICAJPC9kaXY+DQogICAgDQogICAgDQogICAgDQogICAgDQogICAgDQogICAgDQo8L3NlY3Rpb24+DQogZAIFD2QWAgIEDxYCHwcFxyI8ZGl2IGNsYXNzPSJjb250YWluZXIiPg0KICAgIDxkaXYgY2xhc3M9InJvdyBwdWxsLXRvcCI+DQogICAgDQogICAgICAgIDxkaXYgY2xhc3M9ImNvbC1zbS00Ij4NCiAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94Ij4NCiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iZmVhdHVyZS1ib3gtaW5mbyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8aDIgc3R5bGU9ImZvbnQtZmFtaWx5OiAnU2F0aXNmeScsIGN1cnNpdmU7IHRleHQtYWxpZ246IGNlbnRlcjsgZm9udC1zaXplOiAzZW07Ij5XZWxjb21lIHRvIFJlc2VydmVDYWxpZm9ybmlhJnRyYWRlOzwvaDI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWltYWdlIiBzdHlsZT0ibWFyZ2luLWJvdHRvbTogMzBweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBzcmM9Imh0dHBzOi8vd3d3LnBhcmtzLmNhLmdvdi9JbWFnZXMvY29udGVudC9mZWF0dXJlZC9XZWxjb21lSW1hZ2UuanBnIiBhbHQ9IldlbGNvbWUgdG8gUmVzZXJ2ZUNhbGlmb3JuaWEiIHRpdGxlPSJXZWxjb21lIHRvIFJlc2VydmVDYWxpZm9ybmlhIiAvPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwPldlbGNvbWUgdG8gUmVzZXJ2ZUNhbGlmb3JuaWEmdHJhZGU7LiAgT3VyIG5ldyBzeXN0ZW0gaXMgZWFzeSB0byB1c2UgLSBzaW1pbGFyIHRvIGJvb2tpbmcgaG90ZWxzLCBhaXJsaW5lIHRpY2tldHMgYW5kIG90aGVyIGNvbXBhcmFibGUgc2VydmljZXMuIEEgdmFyaWV0eSBvZiBuZXcgZmVhdHVyZXMgd2lsbCBiZSBwaGFzZWQgaW4gYmV0d2VlbiBBdWd1c3QgMSwgMjAxNyBhbmQgTWFyY2ggMSwgMjAxOCwgaW5jbHVkaW5nIG1vdmluZyBmcm9tIGEgZmlyc3Qtb2YtdGhlLW1vbnRoIG9uLXNhbGUgZGF5cyB0byBhIG5ldyByb2xsaW5nIHdpbmRvdyByZXNlcnZhdGlvbiBzZXJ2aWNlLiBUaGlzIG1lYW5zIHRoYXQgeW91IHdpbGwgYmUgYWJsZSB0byByZXNlcnZlIGNhbXBzaXRlcyBhbmQgbG9kZ2luZyBzaXggbW9udGhzIGluIGFkdmFuY2UgZnJvbSB0aGUgY3VycmVudCBkYXRlLiBCb29rIHlvdXIgbmV4dCBhZHZlbnR1cmUgd2l0aCB1cyAtIDxhIGhyZWY9Ii4vQ3VzdG9tZXJzL05ld0N1c3RvbWVyLmFzcHgiPmNyZWF0ZSB5b3VyIHByb2ZpbGUgaGVyZS48L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICA8L2Rpdj4NCg0KICAgICAgICA8ZGl2IGNsYXNzPSJjb2wtc20tNCI+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJmZWF0dXJlLWJveCI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWluZm8iPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGgyIHN0eWxlPSJmb250LWZhbWlseTogJ1NhdGlzZnknLCBjdXJzaXZlOyB0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogM2VtOyI+RmluZCBZb3VyIFJlc2VydmF0aW9uPC9oMj4NCiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iZmVhdHVyZS1ib3gtaW1hZ2UiIHN0eWxlPSJtYXJnaW4tYm90dG9tOiAzMHB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8aW1nIHNyYz0iaHR0cHM6Ly93d3cucGFya3MuY2EuZ292L0ltYWdlcy9jb250ZW50L2ZlYXR1cmVkL1BmZWlmZmVyQ2FiaW4uanBnIiBhbHQ9IkFkdmVudHVyZSBvZiB0aGUgTW9udGgiIHRpdGxlPSJBZHZlbnR1cmUgb2YgdGhlIE1vbnRoIiAvPg0KICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwPlJlc2VydmF0aW9ucyBtYWRlIHRocm91Z2ggUmVzZXJ2ZUFtZXJpY2EgcHJpb3IgdG8gSnVseSAyNywgMjAxNyB3aWxsIGJlIGFjY2Vzc2libGUgb24gdGhlIG5ldyBzeXN0ZW0gb24gQXVndXN0IDEuIFRvIHZpZXcsIG1vZGlmeSwgb3IgY2FuY2VsIHlvdXIgcmVzZXJ2YXRpb24sIHlvdSB3aWxsIG5lZWQgdG8gbG9nIGludG8gUmVzZXJ2ZUNhbGlmb3JuaWEmdHJhZGU7IHVzaW5nIHRoZSBlbWFpbCB0aGF0IHdhcyB1c2VkIHdoZW4gdGhlIG9yaWdpbmFsIHJlc2VydmF0aW9uIHdhcyBjcmVhdGVkIGFuZCB0aGVuIHJlc2V0IHlvdXIgcGFzc3dvcmQuIEN1c3RvbWVycyB0aGF0IGRvIG5vdCBoYXZlIGEgY3VycmVudCByZXNlcnZhdGlvbiB3aWxsIG5lZWQgdG8gY3JlYXRlIGEgbmV3IFJlc2VydmVDYWxpZm9ybmlhJnRyYWRlOyBhY2NvdW50LiBQbGFuIHlvdXIgbmV4dCBhZHZlbnR1cmUgd2l0aCB1cyBub3cgYW5kIDxhIGhyZWY9ImphdmFzY3JpcHQ6dm9pZCgwKTsiIG9uY2xpY2s9JyQoIiNteU1vZGFsIikubW9kYWwoKTsnPmxvZyBpbnRvIG91ciBzeXN0ZW0uPC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPC9kaXY+DQogICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgPC9kaXY+DQogICAgICAgIA0KICAgICAgICA8ZGl2IGNsYXNzPSJjb2wtc20tNCI+DQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJmZWF0dXJlLWJveCI+DQogICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWluZm8iPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGgyIHN0eWxlPSJmb250LWZhbWlseTogJ1NhdGlzZnknLCBjdXJzaXZlOyB0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogM2VtOyI+UGFzcyBFeGNoYW5nZSBQcm9ncmFtPC9oMj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZlYXR1cmUtYm94LWltYWdlIiBzdHlsZT0ibWFyZ2luLWJvdHRvbTogMzBweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgc3JjPSJodHRwczovL3d3dy5wYXJrcy5jYS5nb3YvSW1hZ2VzL2NvbnRlbnQvZmVhdHVyZWQvUGFzc0V4Y2hhbmdlSWNvbi5wbmciIGFsdD0iUGFzcyBFeGNoYW5nZSIgdGl0bGU9IlBhc3MgRXhjaGFuZ2UgUHJvZ3JhbSIgLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHA+V2UgYXJlIG1vZGVybml6aW5nIHRoZSB3YXkgd2UgbWFuYWdlIHRoZSBEaXN0aW5ndWlzaGVkIFZldGVyYW4gYW5kIERpc2FibGVkIERpc2NvdW50IHBhc3MgcHJvZ3JhbXMuIE5ldyBjcmVkaXQgY2FyZCBkZXNpZ24gcGFzc2VzIGFyZSBiZWluZyBpc3N1ZWQgZm9yIGN1cnJlbnQgcGFzcyBob2xkZXJzLiBJZiB5b3UgaGF2ZSBvbmUsIHBsZWFzZSB2aXNpdCB1cyBvbmxpbmUgb3IgdmlzaXQgb25lIG9mIHRoZSA0NyBkZXNpZ25hdGVkIHN0YXRlIHBhcmsgbG9jYXRpb25zIHNvIHRoYXQgeW91IG1heSBjb250aW51ZSB0byBlYXNpbHkgYWNjZXNzIHlvdXIgZmF2b3JpdGUgc3RhdGUgcGFya3MuIE5PVEU6IEN1cnJlbnQgdmV0ZXJhbiBvciBkaXNhYmxlZCBwYXNzIGhvbGRlcnMgd2lsbCBuZWVkIG5ldyBwYXNzZXMgZm9yIGNhbXBpbmcgcmVzZXJ2YXRpb25zIGFmdGVyIEF1Z3VzdCAxLiBJbmRpdmlkdWFscyBtYXkgdXNlIHRoZWlyIGN1cnJlbnQgcGFzcyBmb3IgZGF5IHVzZSB0aHJvdWdoIEZlYi4gMjgsIDIwMTguIE9sZCBwYXNzZXMgd2lsbCBub3QgYmUgdmFsaWQgYWZ0ZXIgdGhlc2UgZGF0ZXMuPGEgaHJlZj0iaHR0cDovL3d3dy5wYXJrcy5jYS5nb3YvP3BhZ2VfaWQ9Mjk2MTAiIHRhcmdldD0iX2JsYW5rIj4gVmlldyBkZXRhaWxzLjwvYT48L3A+DQogICAgICAgICAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICAgICAgPC9kaXY+DQogICAgICAgIDwvZGl2Pg0KICAgICAgICANCiAgICA8L2Rpdj4NCjwvZGl2Pg0KDQo8ZGl2IGNsYXNzPSJjb250YWluZXIiPg0KICAgIDxkaXYgY2xhc3M9InJvdyIgc3R5bGU9Im1hcmdpbi10b3A6IDMwcHg7Ij4NCgkJCTxwPlBsZWFzZSBjaGVjayBvdXQgb3VyIDxhIGhyZWY9Imh0dHBzOi8vd3d3LnBhcmtzLmNhLmdvdi8/cGFnZV9pZD0yOTY3NiIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJ0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPmZyZXF1ZW50bHkgYXNrZWQgcXVlc3Rpb25zIChGQVFzKTwvYT4gZm9yIGRldGFpbHMgb24gdGhlIG5ldyBzeXN0ZW0gb3IgPGEgaHJlZj0iaHR0cHM6Ly92aXNpdG9yLnIyMC5jb25zdGFudGNvbnRhY3QuY29tL21hbmFnZS9vcHRpbj92PTAwMXYycGhPM0J6SDJWNU5oRzBZSEVZa2FOclZ5WjJZMHpKWEJhdmJvdW00RENUQzQ0VERycjRtWm1ncDY1eDRaSzNJNnc1TXZlSS1mT0diRWhPZG9CQk80Q29LZk92WUpNTGN2WDRxdlRUSG9uMG1Zak1fUTlzSnFRVDlqbW9uVjZvenVpUVRnS1pKYi1MZUViYWtUTlAzZnIzNE1HSGNtbS1JTG9IOGpEa0drTSUzRCIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJ0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPnN1YnNjcmliZTwvYT4gdG8gb3VyIG5ld3MgZmVlZCB0byByZWNlaXZlIHRoZSBsYXRlc3QgaW5mb3JtYXRpb24uPC9wPg0KCTwvZGl2Pg0KPC9kaXY+ZAIEDxYCHwsF5Q48Zm9vdGVyPg0KPGRpdiBjbGFzcz0iY29udGFpbmVyIj4NCjxkaXYgY2xhc3M9InJvdyI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtMTIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7Ij48aW1nIGNsYXNzPSJmb3QtYXJvdyIgdGl0bGU9ImRvd24gYXJyb3ciIHNyYz0iaHR0cHM6Ly93d3cucmVzZXJ2ZWNhbGlmb3JuaWEuY29tL0NhbGlmb3JuaWFXZWJIb21lL3RoZW1lcy9DYWxpZm9ybmlhL2Zvb3Rlci1hcnJvdy5qcGciIGFsdD0iYWVycm93IiAvPg0KPGRpdiBjbGFzcz0iYm90LWxpbmtzIHBhZ2VsaW5rcyI+PGEgaHJlZj0iRGVmYXVsdC5hc3B4Ij5IT01FIDwvYT4gfCA8YSBocmVmPSJGYWNpbGl0aWVzL0FkdmFuY2VTZWFyY2guYXNweCI+Q0FNUElORyBBTkQgTE9ER0lORyA8L2E+IHwgPGEgaHJlZj0iQWN0aXZpdGllcy9Qcm9ncmFtc0FuZFRvdXJzLmFzcHgiPkFDVElWSVRJRVMgPC9hPiB8IDxhIGhyZWY9IkFjdGl2aXRpZXMvSGVhcnN0Q2FzdGxlVG91cnMuYXNweCI+SEVBUlNUIENBU1RMRTwvYT4gfCA8IS0tICAgICAgPGEgaHJlZj0iR2lmdGNhcmRzL0dpZnRjYXJkc2FsZS5hc3B4Ij5HSUZUIENBUkRTPC9hPg0KICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgLS0+ICA8IS0tICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9IkN1c3RvbWVycy9OZXdDdXN0b21lci5hc3B4Ij5DUkVBVEUgQUNDT1VOVA0KICAgICAgICAgICAgICAgICAgICA8L2E+IC0tPjwvZGl2Pg0KPGRpdiBjbGFzcz0iYm90LWxpbmtzIGNvbC1tZC0xMiI+PCEtLSA8YSBvbmNsaWNrPSJqYXZhc2NyaXB0OnZhciBydWxlcz13aW5kb3cub3BlbignJywgJ3J1bGVzJywnd2lkdGg9NjAwLCBoZWlnaHQ9NDAwLCBzY3JvbGxiYXJzPTEsIHJlc2l6YWJsZT0xJyk7IHJldHVybiBmYWxzZTsiIHRhcmdldD0iX2JsYW5rIiAgaHJlZj0iamF2YXNjcmlwdDp2b2lkKDApOyI+LS0+IDxhIGhyZWY9Imh0dHA6Ly93d3cucGFya3MuY2EuZ292Lz9wYWdlX2lkPTIxMzAwIiB0YXJnZXQ9Il9ibGFuayI+IDxzdHJvbmc+UEFSSyBSVUxFUyA8L3N0cm9uZz4gPC9hPiB8IDxhIGhyZWY9Imh0dHBzOi8vd3d3LnJlc2VydmVjYWxpZm9ybmlhLmNvbS9DYWxpZm9ybmlhV2ViSG9tZS9Db250YWN0VXMuYXNweCI+IDxzdHJvbmc+Q09OVEFDVCBVUyA8L3N0cm9uZz4gPC9hPiB8IDxhIGhyZWY9Imh0dHA6Ly93d3cucGFya3MuY2EuZ292L1ByaXZhY3kiIHRhcmdldD0iX2JsYW5rIj4gPHN0cm9uZz5QUklWQUNZIFBPTElDWSA8L3N0cm9uZz4gPC9hPjwvZGl2Pg0KPGJyIC8+DQo8ZGl2IGNsYXNzPSJyb3ciPjxzcGFuIGlkPSJMYWJlbDEiIHN0eWxlPSJjb2xvcjogd2hpdGU7IGZvbnQtc2l6ZTogMTJweDsiPkNvbnRhY3QgVXM6IDEtODAwLTQ0NC03Mjc1IDg6MDBhbSAtIDY6MDBwbSBQYWNpZmljIFRpbWUgKFBUKSA8L3NwYW4+IDwhLS0gIDxzcGFuIHN0eWxlPSJjb2xvcjogV2hpdGU7IGZvbnQtc2l6ZTogMTJweDsiIGlkPSJMYWJlbDEiPk5lZWQgSGVscD8gQ2FsbCB1cyA4IEEuTS4gdG8gNiBQLk0uIERhaWx5IDgwMC00NDQtNzI3NSAoQ2xvc2VkIENocmlzdG1hcyBEYXksIE5ldyBZZWFycyBEYXksIGFuZCBUaGFua3NnaXZpbmcpPC9zcGFuPiAgLS0+PC9kaXY+DQo8ZGl2IGNsYXNzPSJyb3cxIj4NCjxkaXYgY2xhc3M9ImNvbC1tZC0xMiBjb2wtc20tMTIgY29weXJpZ2h0cyI+Q29weXJpZ2h0ICZjb3B5OyAyMDE3Jm5ic3A7IFN0YXRlIG9mIENhbGlmb3JuaWE8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJpbmNsdWRlRm9vdGVyIj4mbmJzcDs8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8L2Zvb3Rlcj5kZLZ6sfXPPuFkFOOQG/etH5eIc3BOxlVkEyEvX7usToX0",
"__VIEWSTATEGENERATOR": "34651395",
"ctl00$ctl00$Hidscreenresolutionmain": "",
"ctl00$ctl00$hdnCulture": "",
"ctl00$ctl00$AdvanceMainSearch$hdnAutoPlaceId": "",
"ctl00$ctl00$AdvanceMainSearch$hdnLat": "37.17159",
"ctl00$ctl00$AdvanceMainSearch$hdnLag": "-122.22203",
"ctl00$ctl00$AdvanceMainSearch$hdnautocomplete": "",
"ctl00$ctl00$AdvanceMainSearch$hdncustomautocomplete": "Big Basin Redwoods SP",
"ctl00$ctl00$AdvanceMainSearch$hdnArrivalDate": "8/27/2017",
"ctl00$ctl00$AdvanceMainSearch$txtArrivalDate": "",
"ctl00$ctl00$AdvanceMainSearch$hdnNights": "1",
"ctl00$ctl00$AdvanceMainSearch$ddlNights": "1",
"ctl00$ctl00$mainContent$indexValue": "",
"ctl00$ctl00$mainContent$hdnScreenresolution": "1440",
"ctl00$ctl00$mainContent$hdndefaultLat": "37.17159652709961",
"ctl00$ctl00$mainContent$hdnSearchPlaceName": "Big Basin Redwoods SP",
"ctl00$ctl00$mainContent$hdndefaultLag": "-122.2220458984375",
"ctl00$ctl00$mainContent$hdnMasterPlaceId": "3",
"ctl00$ctl00$mainContent$txtSearchparkautocomplete": "Big Basin Redwoods SP",
"ctl00$ctl00$mainContent$ddlFacilityCategory": "1",
"ctl00$ctl00$mainContent$txtArrivalDate": "08/30/2017",
"ctl00$ctl00$mainContent$ddlHomeNights": "1",
"ctl00$ctl00$mainContent$btnSearch": "Go",
"ctl00$ctl00$mainContent$homeContent$indexValue": ""
}
set_night_by_place_id_and_facility_id_on_unit_grid = {
"facilityId": 0,
"placeId":3
}
| [
7353,
62,
2618,
62,
20928,
62,
10951,
62,
1525,
62,
3672,
796,
1391,
198,
220,
220,
220,
366,
3672,
1298,
366,
12804,
32666,
2297,
39493,
6226,
1,
198,
92,
198,
198,
20928,
62,
7353,
62,
2618,
796,
1391,
198,
220,
220,
220,
366,
13297,
27271,
18243,
48944,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24220,
3984,
1298,
366,
2718,
13,
1558,
19707,
2996,
1983,
15197,
13348,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14617,
3984,
1298,
27444,
18376,
13,
1828,
1238,
29334,
4089,
3559,
42691,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22417,
1298,
366,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
29841,
18243,
10044,
4105,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10434,
10430,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
45,
2337,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27313,
7390,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25478,
27313,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
31851,
16516,
1298,
352,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13912,
3524,
27271,
312,
1298,
513,
198,
220,
220,
220,
1782,
198,
92,
198,
198,
20928,
62,
7353,
62,
2618,
62,
12853,
796,
1391,
198,
220,
220,
220,
366,
13297,
27271,
18243,
48944,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24220,
3984,
1298,
366,
2718,
13,
1558,
19707,
2996,
1983,
15197,
13348,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14617,
3984,
1298,
27444,
18376,
13,
1828,
1238,
29334,
4089,
3559,
42691,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14942,
1298,
5214,
13,
1314,
1157,
30272,
1731,
1238,
2780,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14157,
1298,
5214,
13,
1129,
18638,
26895,
3365,
1129,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
25234,
1298,
532,
18376,
13,
8628,
26514,
1983,
2327,
2996,
5237,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15045,
1298,
532,
18376,
13,
1959,
2718,
18781,
25429,
1828,
3132,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22417,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7282,
2514,
16060,
1298,
366,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23656,
24220,
3984,
1298,
5214,
13,
1558,
19707,
2996,
1983,
15197,
13348,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23656,
14617,
3984,
1298,
532,
18376,
13,
1828,
1238,
29334,
4089,
3559,
42691,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19400,
46022,
392,
57,
4207,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7282,
1462,
47522,
879,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
31851,
16516,
1298,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3792,
22417,
8164,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
29841,
18243,
10044,
4105,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47371,
7390,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27271,
7390,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47522,
879,
7390,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10434,
10430,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
45,
2337,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27313,
7390,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26453,
6030,
7390,
82,
1298,
685,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15307,
10049,
2782,
64,
3118,
896,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15307,
10049,
51,
298,
29123,
3118,
896,
1298,
366,
25101,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15307,
10049,
49,
85,
29123,
3118,
896,
1298,
366,
25101,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44046,
37870,
1548,
24539,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9876,
15732,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9876,
10699,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9876,
16,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2949,
5189,
6690,
3669,
1298,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15307,
29123,
3118,
896,
5376,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16541,
420,
6316,
270,
12453,
1298,
366,
12804,
32666,
2297,
39493,
6226,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25478,
37,
5540,
1298,
685,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25478,
27313,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
31851,
16516,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3792,
36787,
1298,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3792,
47522,
879,
4971,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
27271,
7390,
47522,
879,
4971,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13912,
3524,
27271,
312,
1298,
513,
198,
220,
220,
220,
1782,
198,
92,
198,
198,
66,
9430,
2737,
62,
411,
712,
602,
62,
7353,
62,
2618,
796,
1391,
198,
220,
220,
220,
366,
47522,
879,
7390,
1298,
41423,
11,
198,
220,
220,
220,
366,
27271,
7390,
1298,
513,
11,
198,
220,
220,
220,
366,
40541,
35,
689,
1298,
7982,
11,
198,
220,
220,
220,
366,
3792,
10962,
83,
1298,
6407,
11,
198,
220,
220,
220,
366,
40541,
25681,
1640,
41339,
1298,
352,
198,
92,
198,
198,
324,
19259,
62,
12947,
62,
687,
796,
1391,
198,
220,
220,
220,
366,
834,
20114,
3525,
51,
46095,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
20114,
3525,
1503,
38,
5883,
3525,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
1298,
12813,
86,
36,
5760,
86,
9994,
9328,
89,
44,
9936,
17,
11251,
44,
19,
3727,
8577,
37,
70,
35543,
33538,
53,
6413,
55,
49,
52,
68,
55,
3629,
26691,
42,
73,
42,
3838,
33,
17922,
9705,
14,
86,
36,
43488,
32,
4339,
36,
3838,
2885,
53,
2348,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
87,
14751,
18,
49,
70,
44,
53,
83,
65,
52,
18,
75,
89,
67,
37094,
83,
43,
74,
45,
85,
65,
38,
87,
75,
56,
18,
49,
40842,
1495,
89,
43,
74,
25404,
20475,
53,
3972,
22117,
84,
50,
17,
53,
20,
53,
76,
37,
21282,
54,
53,
48,
56,
54,
306,
56,
35028,
65,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
41,
9374,
48,
89,
44,
14246,
22296,
55,
45,
73,
65,
18,
41,
11400,
54,
3792,
5064,
57,
75,
31522,
45,
40842,
21626,
7792,
19,
86,
43,
73,
32,
84,
9655,
86,
70,
48,
18,
53,
21282,
39,
53,
88,
57,
51,
16,
84,
40692,
53,
15,
11215,
42388,
5639,
33,
48,
67,
54,
41,
11400,
29767,
43,
40692,
75,
36609,
17,
83,
23160,
73,
16,
72,
45,
89,
34985,
45,
22117,
16,
45,
73,
36,
20,
44,
89,
49,
75,
12740,
70,
20,
55,
50,
30894,
52,
18,
75,
89,
67,
37094,
83,
43,
75,
45,
15,
11215,
2290,
57,
88,
86,
22296,
55,
45,
73,
65,
18,
41,
11400,
54,
3792,
5064,
57,
75,
31522,
45,
40842,
21626,
7792,
19,
86,
43,
73,
32,
84,
9655,
86,
70,
48,
18,
53,
21282,
39,
53,
88,
57,
51,
16,
84,
40692,
53,
15,
11215,
42388,
5639,
33,
48,
67,
54,
41,
11400,
29767,
43,
40692,
75,
36609,
17,
83,
23160,
73,
16,
72,
45,
89,
34985,
45,
22117,
16,
45,
73,
36,
20,
44,
89,
49,
75,
12740,
70,
20,
55,
53,
15,
82,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
23155,
17922,
57,
13331,
55,
49,
23160,
37643,
17213,
18,
45,
79,
368,
10080,
55,
18,
57,
75,
31522,
45,
40842,
1731,
5631,
2885,
75,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
54,
940,
25241,
74,
34,
17922,
54,
17922,
37,
70,
17922,
7801,
70,
17922,
6242,
17922,
70,
17922,
2969,
73,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
20866,
18,
9705,
73,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
10262,
29697,
1565,
81,
40692,
74,
37,
36020,
37,
21282,
54,
52,
3838,
48,
8457,
36,
3838,
6242,
70,
48,
29697,
1565,
48,
76,
24,
31298,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
22,
9705,
14,
69,
20379,
10,
82,
48,
29697,
4579,
70,
3838,
6242,
2749,
65,
17,
37,
15,
10008,
2290,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
17584,
77,
9705,
24,
9705,
21,
71,
17922,
56,
3539,
3838,
4760,
74,
41,
85,
56,
55,
48,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
35191,
9705,
24,
9705,
65,
12473,
3838,
4792,
42,
29697,
2885,
15,
45,
71,
65,
55,
33,
79,
20475,
66,
70,
7340,
37,
6592,
17,
37,
77,
57,
48,
39,
16,
9705,
14,
69,
20379,
1238,
49,
3838,
4760,
35,
17922,
31554,
36,
57,
54,
87,
16,
68,
38022,
70,
48,
17,
37,
544,
54,
19,
33,
23,
9705,
14,
18,
9705,
83,
36,
3838,
6242,
70,
19,
17922,
69,
48192,
6420,
56,
36802,
75,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
87,
9705,
14,
69,
20379,
15,
66,
49,
3838,
11879,
17922,
33,
7112,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
34,
56,
54,
87,
73,
65,
13381,
42,
48,
39,
85,
9705,
14,
69,
20379,
15,
74,
49,
3838,
11879,
70,
3838,
6242,
41,
40,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
34,
56,
55,
45,
79,
56,
88,
38841,
22,
69,
9705,
18,
20379,
24,
10008,
48,
3838,
33,
71,
48,
17922,
20304,
38,
3829,
57,
54,
86,
70,
37280,
24,
85,
65,
4090,
78,
52,
18,
38576,
20475,
38576,
11215,
48,
79,
32,
1990,
9705,
24,
9705,
21,
49,
17922,
56,
54,
17922,
39,
74,
24,
76,
57,
72,
4462,
65,
17,
37,
74,
5064,
57,
5031,
9861,
73,
65,
38022,
70,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
79,
9705,
14,
69,
20379,
15,
78,
49,
3838,
4760,
38,
29697,
2246,
41,
48,
11215,
53,
8326,
55,
53,
83,
10008,
41,
85,
56,
55,
48,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
32,
891,
9705,
24,
9705,
53,
2200,
3838,
4792,
64,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
17931,
79,
32,
68,
55,
9705,
24,
9705,
53,
87,
36,
3838,
4792,
66,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
23127,
79,
32,
68,
47,
9705,
24,
9705,
53,
71,
36,
3838,
4792,
68,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
35,
4933,
32,
68,
39,
9705,
24,
9705,
50,
87,
36,
3838,
4792,
70,
17922,
25425,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
18,
9705,
14,
18,
20379,
6659,
36,
48,
3838,
23286,
3539,
3838,
2969,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2782,
18,
9705,
24,
9705,
55,
71,
36,
3838,
4792,
74,
17922,
36,
16,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
24369,
67,
21713,
77,
57,
4090,
78,
44,
1134,
33,
17,
9705,
14,
18,
20379,
24,
69,
36,
48,
3838,
23286,
56,
29697,
1404,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2149,
34586,
42,
48,
39,
57,
9705,
14,
69,
20379,
17,
1503,
3838,
4760,
42,
17922,
15766,
48,
11215,
53,
8326,
55,
53,
83,
40,
1677,
20306,
17184,
71,
57,
17,
52,
70,
42,
35,
48,
79,
2782,
69,
9705,
24,
9705,
56,
2200,
3838,
4792,
80,
17922,
36,
16,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
24369,
67,
21713,
77,
57,
4090,
78,
40979,
33,
16,
69,
9705,
18,
20379,
24,
73,
36,
48,
3838,
33,
14246,
29697,
1404,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2149,
70,
19,
42,
48,
6535,
9705,
14,
69,
20379,
16,
70,
49,
3838,
4760,
43,
70,
3838,
2246,
67,
48,
11215,
53,
8326,
55,
53,
83,
38311,
20306,
54,
49044,
57,
50,
3483,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
33967,
52,
88,
10025,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
15,
69,
9705,
18,
20379,
24,
74,
36,
48,
3838,
33,
73,
17922,
32,
68,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
39,
11215,
6420,
66,
29208,
65,
17,
37,
15,
41596,
2290,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
9705,
14,
24,
9705,
53,
12473,
3838,
4792,
88,
17922,
7414,
3886,
57,
54,
16,
30094,
54,
15,
70,
49,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
89,
69,
9705,
18,
20379,
24,
75,
36,
48,
3838,
33,
73,
48,
17922,
65,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
39,
11215,
6420,
66,
34,
19499,
57,
54,
1120,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
85,
9705,
24,
9705,
1199,
36,
3838,
4792,
17,
17922,
39,
53,
3886,
57,
54,
16,
30094,
54,
15,
70,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
49,
4090,
79,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
77,
9705,
24,
9705,
54,
87,
36,
3838,
4792,
19,
17922,
39,
75,
3886,
57,
54,
16,
30094,
54,
15,
70,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
6998,
24,
55,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
16768,
9705,
14,
69,
20379,
16,
86,
49,
3838,
4760,
46,
70,
3838,
2246,
33,
48,
11215,
53,
8326,
55,
53,
83,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
29567,
9705,
14,
69,
20379,
940,
49,
3838,
4760,
47,
17922,
33,
71,
48,
11215,
53,
8326,
55,
53,
83,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
86,
9705,
14,
18,
20379,
24,
68,
33,
3838,
6242,
73,
19,
17922,
64,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
86,
69,
9705,
18,
20379,
24,
5188,
48,
3838,
33,
74,
17922,
10116,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
52,
57,
54,
1120,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4826,
9705,
14,
24,
9705,
41,
71,
36,
3838,
22778,
34,
29697,
2246,
52,
41,
85,
56,
55,
48,
70,
52,
17,
87,
14751,
4760,
24,
9705,
14,
69,
20379,
15,
48743,
3838,
4760,
49,
17922,
10910,
57,
67,
55,
41,
15,
2149,
70,
15,
42,
48,
38,
22,
9705,
14,
69,
20379,
88,
15,
36,
3838,
4760,
49,
70,
17922,
71,
57,
67,
55,
41,
15,
2149,
70,
17,
42,
48,
38,
20,
9705,
14,
69,
20379,
88,
66,
49,
3838,
4760,
50,
17922,
25189,
35,
56,
54,
41,
79,
8482,
32,
78,
44,
5603,
79,
4826,
69,
9705,
24,
9705,
42,
12473,
3838,
22778,
42,
29697,
2246,
4944,
71,
56,
76,
2290,
2149,
1360,
42,
48,
38,
16,
9705,
14,
69,
20379,
48361,
49,
3838,
4760,
51,
17922,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
3666,
74,
37000,
9705,
14,
18,
20379,
23,
88,
17922,
33,
74,
19,
17922,
41275,
76,
24,
31298,
34,
16,
41,
35904,
38,
87,
9705,
14,
69,
20379,
8226,
49,
3838,
4760,
52,
17922,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
7792,
74,
9414,
9705,
14,
18,
20379,
23,
81,
36,
48,
3838,
3629,
3539,
29697,
41,
48,
17,
37,
544,
54,
19,
70,
42,
35,
4933,
32,
64,
18,
9705,
24,
9705,
43,
12473,
3838,
22778,
52,
29697,
2246,
4944,
71,
56,
76,
2290,
2149,
70,
17,
42,
48,
8642,
9705,
14,
69,
20379,
88,
15,
49,
3838,
4760,
53,
70,
29697,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
4503,
38841,
80,
69,
9705,
18,
20379,
5999,
17922,
3629,
70,
17922,
18564,
18,
41,
20306,
55,
10262,
48,
76,
24,
31298,
34,
16,
41,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
77,
9705,
14,
69,
20379,
89,
1503,
3838,
4760,
54,
70,
29697,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
15,
42,
48,
9861,
9705,
14,
69,
20379,
89,
4663,
3838,
4760,
55,
17922,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
17,
42,
48,
38,
73,
9705,
14,
69,
20379,
89,
48,
49,
3838,
4760,
55,
70,
29697,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
19,
42,
48,
41126,
9705,
14,
69,
20379,
89,
66,
49,
3838,
4760,
56,
17922,
1925,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
7407,
88,
65,
18,
53,
86,
5064,
49,
75,
9374,
48,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
9705,
14,
24,
9705,
9864,
36,
3838,
22778,
72,
17922,
40,
15,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
49,
18,
41,
20306,
55,
10262,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
18,
9705,
24,
9705,
6965,
3838,
22778,
74,
17922,
39,
74,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
49,
18,
41,
20306,
55,
10262,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
49017,
9705,
14,
69,
20379,
10872,
49,
3838,
4760,
57,
70,
3838,
2246,
67,
37,
66,
55,
53,
44601,
18,
49,
3972,
54,
41133,
10008,
71,
8957,
17,
52,
85,
48,
4029,
81,
57,
16811,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
76,
69,
9705,
18,
9705,
12161,
3838,
6242,
11296,
17922,
48,
48,
4029,
81,
57,
16811,
41,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
55,
9705,
14,
69,
20379,
89,
82,
49,
3838,
4760,
363,
3838,
6242,
57,
49017,
38,
24,
31298,
38,
2290,
57,
88,
14529,
56,
54,
16,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
55,
9705,
24,
9705,
23548,
17922,
57,
82,
17922,
38,
74,
41,
8957,
17,
52,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
47,
9705,
24,
9705,
47,
12473,
3838,
22778,
84,
17922,
37,
74,
9892,
65,
18,
53,
86,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
74,
69,
9705,
18,
9705,
11401,
3838,
6242,
77,
17922,
20185,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
73,
9705,
14,
18,
20379,
4531,
36,
48,
3838,
33,
77,
3539,
3838,
10262,
49,
18,
41,
20306,
55,
10262,
50,
9861,
81,
57,
16811,
41,
8482,
33,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
73,
69,
9705,
18,
9705,
48,
36,
3838,
6242,
77,
48,
17922,
48,
49,
21713,
20,
5064,
53,
89,
57,
16811,
48,
56,
55,
57,
40842,
38,
6780,
35904,
8763,
9705,
14,
69,
20379,
89,
19,
49,
3838,
4760,
67,
70,
3838,
6242,
16,
39,
11215,
6420,
66,
34,
19499,
57,
54,
1120,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
41,
9705,
14,
69,
20379,
24,
36,
48,
3838,
4760,
68,
17922,
15199,
37,
9374,
41,
20306,
55,
49,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4792,
69,
9705,
24,
9705,
15,
71,
17922,
57,
21,
17922,
36,
15,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
71,
69,
9705,
18,
9705,
9328,
3838,
6242,
47516,
17922,
57,
49,
55,
37,
16,
40692,
45,
15,
66,
4029,
71,
8482,
33,
39,
11215,
6420,
66,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
45113,
9705,
14,
69,
20379,
15,
1137,
3838,
4760,
40616,
3838,
6242,
3483,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4792,
39,
9705,
24,
9705,
16,
33,
17922,
64,
17922,
18429,
31667,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
25922,
9705,
14,
24,
9705,
48,
71,
36,
29697,
64,
34,
29697,
2885,
75,
41,
75,
9374,
38576,
65,
8141,
78,
6998,
24,
32457,
16,
28861,
25922,
18,
9705,
24,
9705,
16,
49,
17922,
64,
36,
17922,
8264,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
22,
9705,
14,
69,
20379,
15,
13599,
3838,
4760,
71,
70,
3838,
6242,
53,
52,
57,
54,
1120,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
891,
9705,
18,
9705,
8845,
3838,
6242,
519,
17922,
57,
49,
18,
41,
20306,
55,
10262,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
18,
9705,
14,
69,
20379,
15,
48,
49,
3838,
4760,
328,
3838,
6242,
24,
52,
57,
54,
1120,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
32,
8051,
9705,
24,
9705,
16,
87,
17922,
64,
44,
29697,
2885,
52,
9892,
65,
18,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
33,
66,
9705,
14,
18,
20379,
24,
15112,
48,
3838,
16635,
19,
17922,
71,
53,
37094,
463,
34,
3483,
64,
54,
28781,
43,
15,
41,
8957,
17,
52,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
25922,
39,
9705,
24,
9705,
17,
33,
17922,
64,
48,
29697,
2885,
74,
9892,
65,
18,
53,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
9705,
14,
24,
9705,
38576,
36,
29697,
64,
50,
17922,
37,
16,
49,
75,
9374,
48,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
18,
9705,
24,
9705,
17,
49,
17922,
64,
52,
29697,
2885,
52,
9892,
65,
18,
53,
86,
38311,
258,
16811,
53,
66,
17,
10526,
64,
9705,
14,
18,
9705,
64,
36,
3838,
6242,
79,
56,
17922,
70,
49,
18,
41,
20306,
55,
10262,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
49,
4090,
79,
5064,
49,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
1878,
9705,
18,
9705,
65,
36,
3838,
6242,
6024,
17922,
38162,
18,
41,
20306,
55,
10262,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
69,
9705,
24,
9705,
18,
33,
17922,
7252,
17922,
36,
15,
9892,
65,
18,
53,
86,
5064,
49,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
57,
69,
9705,
18,
9705,
67,
36,
3838,
6242,
79,
86,
17922,
48,
50,
9861,
81,
57,
16811,
79,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
73,
9705,
14,
69,
20379,
5824,
48,
3838,
4760,
782,
3838,
6242,
79,
40,
64,
54,
28781,
10008,
2290,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
71,
9705,
14,
69,
20379,
4089,
48,
3838,
4760,
78,
17922,
33,
71,
40,
64,
54,
28781,
10008,
2290,
43,
15,
41,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
55,
9705,
14,
18,
9705,
70,
36,
3838,
6242,
80,
3539,
3838,
10705,
9861,
81,
57,
50,
24,
24334,
54,
28781,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
10116,
18,
9705,
24,
9705,
19,
49,
17922,
461,
17922,
37,
34653,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
70,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
65,
9705,
14,
69,
20379,
10,
33866,
3838,
4760,
6024,
3838,
6242,
48926,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
13155,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
10116,
77,
9705,
24,
9705,
19,
87,
17922,
5488,
17922,
8264,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
39,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
17213,
9705,
14,
69,
20379,
10,
48,
48,
3838,
4760,
80,
70,
3838,
6242,
71,
40,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
33967,
52,
88,
10025,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
53,
69,
9705,
18,
9705,
75,
36,
3838,
6242,
80,
86,
17922,
19416,
38,
24,
85,
323,
33,
53,
66,
8141,
78,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
9792,
9705,
14,
69,
20379,
10,
56,
48,
3838,
4760,
41345,
3838,
6242,
41,
40,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
49,
67,
54,
53,
23160,
1134,
19499,
69,
9705,
18,
9705,
77,
36,
3838,
6242,
81,
17922,
1921,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
26830,
9705,
14,
24,
9705,
21,
33,
17922,
323,
29697,
2885,
13024,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
51,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
23264,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
85,
9705,
24,
9705,
17922,
3838,
78,
4462,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
37,
41,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
73,
9705,
24,
9705,
17922,
3838,
78,
11473,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
30386,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
55,
9705,
24,
9705,
17922,
3838,
78,
11473,
47,
9705,
18,
20379,
23,
17922,
2246,
70,
26009,
9705,
14,
69,
20379,
86,
17922,
10206,
32,
6239,
9705,
24,
9705,
17922,
3838,
78,
33,
48,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
7708,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
9705,
14,
24,
9705,
17922,
3838,
78,
20866,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
24,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
89,
9705,
24,
9705,
17922,
3838,
78,
8202,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
36,
21,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
77,
9705,
24,
9705,
17922,
3838,
78,
33,
3185,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
18,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
65,
9705,
24,
9705,
17922,
3838,
78,
15766,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
15,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
47,
9705,
24,
9705,
17922,
3838,
78,
12261,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
3109,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
35,
9705,
24,
9705,
17922,
3838,
78,
9148,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
36,
84,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
18,
9705,
24,
9705,
17922,
3838,
78,
9148,
47,
9705,
18,
20379,
23,
17922,
2246,
70,
9139,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
81,
9705,
24,
9705,
17922,
3838,
78,
33,
42,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
78,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
69,
9705,
24,
9705,
17922,
3838,
78,
33,
41,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
325,
36,
74,
37,
88,
66,
4029,
17,
56,
54,
87,
22348,
55,
49,
75,
49,
9861,
89,
66,
38,
87,
258,
48,
57,
47,
23,
41,
2885,
43,
10,
69,
52,
72,
33,
19,
43,
48,
55,
41,
3972,
55,
57,
71,
65,
1137,
31298,
38,
7340,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
54,
5840,
56,
5760,
87,
56,
3398,
71,
57,
38,
67,
55,
49,
16,
11215,
15922,
65,
1959,
430,
54,
20,
77,
52,
18,
38576,
31522,
2200,
56,
55,
49,
75,
33,
70,
32,
2348,
38,
36056,
3270,
48,
14887,
17513,
14887,
70,
24,
74,
37,
70,
2149,
34,
70,
23,
54,
10910,
19,
36,
64,
39,
41,
75,
57,
70,
53,
26705,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
51,
67,
39,
7278,
57,
37643,
10438,
37,
16,
40692,
41,
20,
43,
55,
53,
79,
43,
76,
16,
79,
8482,
20,
48055,
18,
45,
74,
10262,
4061,
35,
87,
56,
42413,
71,
48192,
67,
55,
49,
16,
11215,
15922,
65,
1959,
430,
54,
20,
77,
46747,
20,
74,
49,
21713,
15,
57,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
19,
27734,
48397,
19,
64,
54,
1157,
65,
53,
45,
15,
56,
55,
74,
3398,
76,
49,
74,
10262,
7378,
57,
17513,
3539,
70,
48,
5760,
87,
56,
42413,
86,
7156,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
10262,
57,
47,
23,
41,
2885,
43,
10,
69,
52,
72,
38,
48,
54,
8141,
5064,
35,
87,
2969,
37,
70,
40,
68,
34,
1507,
71,
49,
21713,
15,
56,
52,
41,
20306,
54,
20,
74,
57,
17,
49,
74,
57,
38,
48,
23199,
86,
23,
42668,
70,
40,
68,
33,
10913,
293,
41275,
37,
4177,
70,
85,
13752,
74,
85,
44,
73,
31554,
45,
17,
49,
74,
46384,
47,
57,
17513,
8141,
70,
7378,
16412,
23,
54,
10910,
23,
39,
57,
17,
48,
48,
10913,
19,
12261,
48,
36287,
1404,
10744,
4535,
36,
16,
1404,
56,
15766,
86,
36,
19,
1404,
74,
34,
13752,
2246,
13752,
2943,
13752,
2149,
13752,
9655,
13752,
48,
34,
13752,
9598,
44,
9936,
34,
13752,
66,
34,
13752,
70,
34,
13752,
74,
24187,
73,
2246,
44,
73,
2943,
44,
73,
2149,
44,
73,
9655,
44,
73,
48,
24187,
73,
9598,
44,
73,
56,
24187,
48055,
24187,
73,
70,
24187,
73,
74,
24187,
89,
10116,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
48,
81,
31554,
20,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
66,
54,
12298,
57,
74,
10262,
74,
5760,
87,
56,
36208,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
19,
19555,
4029,
2616,
17184,
89,
10262,
36,
69,
23155,
56,
3838,
44817,
76,
55,
3046,
9598,
33,
19,
27734,
54,
40211,
54,
1157,
65,
53,
45,
15,
56,
55,
74,
20034,
23,
9273,
71,
20,
74,
37,
70,
49,
76,
35,
87,
10526,
322,
15200,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
34551,
37,
86,
17887,
16,
71,
57,
17,
53,
39,
57,
54,
20,
75,
11215,
37,
15,
65,
18,
40,
84,
56,
55,
45,
732,
35,
24,
83,
56,
55,
33,
21855,
37094,
17,
57,
54,
86,
24,
46747,
1120,
40692,
41,
86,
66,
4029,
89,
57,
50,
57,
83,
56,
55,
33,
13331,
54,
48,
24,
9655,
57,
71,
31522,
41,
30094,
76,
42388,
55,
17,
49,
31298,
38022,
24,
4503,
23,
87,
2640,
23,
88,
44,
7206,
18,
41,
76,
20,
79,
57,
17,
71,
15,
26691,
15,
87,
41,
77,
33018,
57,
35,
15,
88,
44,
89,
40,
20,
2394,
23155,
3727,
28758,
54,
20,
30094,
37,
3829,
68,
55,
3629,
47,
5603,
9132,
54,
20,
30094,
37,
24,
73,
56,
55,
49,
75,
57,
1959,
5948,
51,
15,
86,
34892,
9865,
35,
17,
48,
45607,
31212,
42668,
48,
10744,
5673,
36,
86,
35,
38,
20,
85,
35990,
53,
77,
57,
54,
20,
74,
43,
77,
38374,
57,
17,
48,
8141,
48,
23,
53,
10262,
36,
86,
33,
17184,
5173,
54,
53,
74,
10262,
8577,
57,
17513,
8141,
70,
8905,
57,
17513,
9273,
70,
19,
47,
7156,
48,
48,
37,
48,
74,
12564,
17,
23266,
57,
29767,
15,
5064,
41,
75,
9374,
38576,
65,
34,
19499,
68,
55,
3629,
33,
15,
41,
85,
56,
55,
49,
79,
20475,
66,
41275,
17,
37,
23047,
38,
2290,
57,
1929,
22348,
54,
75,
325,
53,
53,
89,
57,
49,
41,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
24723,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
38,
2290,
57,
86,
24,
40,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
6535,
38,
24,
74,
57,
17,
2290,
57,
86,
20,
50,
57,
54,
16,
20306,
38022,
70,
48,
17,
37,
23047,
38,
2290,
57,
87,
52,
41,
3838,
48,
87,
44,
7206,
86,
6158,
15766,
86,
48,
87,
44,
7206,
17,
1404,
40,
3620,
5603,
87,
45,
48,
48,
87,
44,
5631,
19,
33,
7206,
86,
13752,
10917,
42,
86,
43421,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
48,
35,
87,
2969,
37,
70,
469,
35,
4261,
31298,
21713,
52,
40692,
71,
15,
49,
76,
297,
65,
38,
48,
37,
3629,
57,
71,
65,
39,
53,
75,
13599,
19,
1581,
21713,
15,
56,
53,
57,
71,
65,
39,
53,
75,
49,
76,
297,
65,
38,
48,
37,
12473,
7100,
9328,
69,
33,
17,
344,
33,
15,
53,
84,
56,
54,
49044,
57,
18564,
77,
57,
4339,
44526,
87,
57,
51,
57,
54,
87,
75,
56,
18,
48,
70,
48,
17,
37,
23047,
38,
2290,
57,
88,
29499,
66,
55,
53,
14751,
34,
19,
70,
8068,
41,
54,
43,
486,
20306,
38,
24,
3972,
38,
24,
83,
57,
48,
49,
52,
57,
54,
1120,
34,
13024,
75,
9374,
48,
70,
51,
1495,
325,
48,
67,
52,
11215,
37,
40842,
37094,
88,
8068,
46987,
56,
54,
7278,
40692,
40,
70,
51,
1495,
325,
48,
16,
52,
31522,
53,
33708,
24,
6849,
53,
56,
85,
53,
76,
41133,
37,
48,
66,
33,
5673,
40,
18,
45,
48,
40,
19,
44,
86,
40,
18,
45,
70,
40,
18,
4535,
40,
19,
45,
86,
40,
18,
1581,
48,
81,
32,
16993,
77,
57,
17,
32656,
57,
17,
32656,
57,
38,
48,
5222,
48,
23,
48,
35,
87,
56,
3398,
86,
16,
77,
57,
4339,
53,
8141,
20,
52,
11215,
37,
40842,
37094,
88,
40,
3109,
23160,
9132,
15,
64,
32,
48,
10,
14114,
16,
14529,
19,
70,
44,
73,
32,
8905,
72,
26903,
5673,
48,
10,
2389,
48,
86,
14529,
19,
70,
45,
5603,
8905,
72,
32,
17,
5673,
48,
10,
2389,
66,
86,
37,
48,
70,
8874,
39,
41,
3099,
54,
87,
75,
979,
12261,
57,
54,
20,
358,
38,
70,
8905,
72,
31554,
45,
48,
48,
10,
2389,
40,
86,
14529,
19,
70,
44,
89,
32,
8905,
72,
32,
15,
5673,
48,
10,
2389,
52,
86,
14529,
19,
70,
45,
73,
32,
8905,
72,
32,
18,
10744,
48,
81,
32,
1929,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
49,
74,
10262,
66,
42668,
70,
1532,
8141,
55,
4579,
35,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
42,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
36,
57,
54,
57,
31298,
54,
87,
15,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
75,
2043,
486,
26009,
48,
78,
41,
5662,
24,
71,
31743,
15,
42,
5662,
24,
11400,
51,
19,
7792,
73,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
42,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
36392,
57,
48397,
88,
56,
17,
5162,
56,
55,
45,
732,
25690,
10,
35,
48,
78,
34382,
4944,
33,
6849,
33,
41,
51,
74,
66,
70,
10917,
20,
36,
40,
3109,
46437,
67,
41,
51,
74,
66,
7792,
70,
74,
23,
43,
17,
36,
10,
35,
48,
78,
23,
43,
17,
42372,
31743,
15,
42,
6968,
42372,
16284,
82,
56,
55,
45,
89,
3705,
41,
74,
11215,
24,
86,
57,
38,
6052,
8482,
40,
10,
35,
48,
78,
41,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
16,
3886,
65,
17,
9892,
56,
54,
16,
89,
48,
54,
20,
74,
43490,
6420,
31522,
33239,
56,
55,
45,
732,
25690,
10,
35,
48,
78,
34382,
48,
75,
3843,
16,
53,
12564,
86,
15,
36222,
48,
74,
23,
43,
17,
36,
10,
5662,
24,
11400,
51,
19,
7792,
70,
74,
41,
6968,
42372,
16284,
82,
56,
55,
45,
89,
3705,
41,
74,
11215,
24,
86,
57,
38,
6052,
8482,
40,
10,
35,
48,
78,
41,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
15,
18519,
56,
55,
41,
89,
67,
1677,
71,
66,
18,
31273,
57,
13024,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
74,
41,
5188,
53,
19499,
75,
45,
10080,
1677,
19499,
16,
29138,
6998,
47526,
16,
53,
10305,
48,
78,
41,
4177,
86,
85,
56,
51,
2780,
43,
17,
42372,
47,
76,
48,
5222,
48,
24,
74,
37,
71,
2246,
43,
70,
23,
42668,
1130,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
40,
39,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
33,
70,
40,
68,
57,
38,
48,
5097,
86,
23,
48,
35,
87,
56,
17511,
18504,
37,
12473,
20,
71,
65,
54,
52,
69,
5631,
52,
7902,
54,
48,
69,
33,
17,
34388,
30195,
53,
88,
35,
15,
41133,
57,
17,
23266,
40,
9527,
14969,
21713,
84,
57,
34,
19313,
10526,
57,
33,
9374,
746,
41596,
41,
28435,
77,
41,
75,
57,
2078,
70,
49,
37094,
89,
40692,
41,
15,
5064,
45,
48,
34,
74,
37,
16,
56,
77,
53,
88,
8482,
19313,
28425,
36,
48,
48,
55,
53,
89,
67,
38,
2290,
40,
1677,
88,
57,
54,
53,
81,
5064,
8035,
48,
48,
24,
34,
57,
54,
20,
571,
18,
66,
70,
35990,
6732,
57,
16811,
51,
28425,
3698,
48,
76,
53,
6413,
29767,
79,
16309,
19313,
28425,
36,
65,
48,
4029,
74,
67,
17,
23266,
65,
34,
16,
9936,
29767,
88,
56,
54,
16,
75,
9374,
49,
85,
5064,
41,
30094,
76,
53,
88,
5064,
45,
48,
38989,
41,
79,
57,
88,
2749,
56,
55,
45,
79,
8482,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
9598,
4851,
64,
54,
66,
70,
48,
76,
37,
4496,
54,
19,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
10262,
53,
37094,
463,
34,
14529,
56,
54,
41,
79,
9374,
11770,
48,
76,
24,
1416,
17,
36,
70,
48,
17,
24831,
56,
17,
36,
70,
52,
15,
44958,
48,
76,
3829,
64,
38,
18274,
51,
76,
37,
86,
16309,
48802,
56,
54,
34223,
40692,
10025,
52,
16,
1921,
48,
77,
41,
71,
20475,
20,
71,
8482,
33,
41,
66,
17,
87,
71,
20475,
48,
70,
52,
16,
41,
2749,
52,
41,
16,
67,
21713,
549,
88,
19313,
10526,
57,
35,
56,
54,
87,
31298,
76,
53,
88,
56,
37643,
70,
48,
4029,
77,
5064,
46987,
57,
54,
53,
89,
5064,
45,
48,
35,
4944,
71,
11215,
20,
75,
57,
17,
297,
5064,
27605,
28425,
4720,
48,
17,
37,
88,
66,
9861,
463,
37094,
3972,
8845,
70,
52,
15,
4061,
48,
17,
37,
89,
67,
38,
87,
75,
40,
1677,
88,
56,
54,
67,
89,
5064,
45,
48,
36,
15,
45,
71,
66,
18,
67,
23160,
38,
86,
70,
34551,
53,
83,
65,
18,
41,
79,
56,
54,
86,
70,
52,
16,
1565,
48,
17,
24831,
20475,
36,
70,
48,
17,
37,
23047,
34,
19313,
34970,
20,
26531,
9861,
549,
88,
3483,
64,
54,
34223,
948,
19313,
34970,
16,
43832,
37094,
71,
979,
12261,
56,
54,
28781,
5064,
45,
48,
39,
74,
45,
5948,
55,
45,
15,
56,
54,
86,
70,
48,
32759,
57,
16811,
51,
9598,
2749,
57,
48397,
6592,
34,
14529,
65,
18,
49,
15,
56,
54,
25404,
66,
87,
35257,
65,
37094,
71,
979,
12261,
56,
54,
28781,
5064,
45,
48,
40,
1677,
71,
56,
4029,
1229,
24954,
43832,
17,
87,
85,
20475,
23266,
10008,
37,
36299,
37094,
1229,
18,
67,
28435,
77,
15450,
5064,
22125,
9598,
14529,
65,
17,
87,
16,
65,
54,
41,
79,
16309,
33,
4694,
7708,
70,
38475,
3829,
57,
54,
87,
89,
3528,
41133,
57,
34,
14529,
65,
18,
49,
15,
56,
54,
25404,
66,
742,
43832,
17,
87,
16,
66,
17,
36,
83,
52,
17,
37,
73,
11215,
37,
83,
57,
54,
1120,
1525,
4462,
64,
55,
57,
75,
979,
19313,
28425,
1546,
48,
1959,
14969,
54,
24,
39346,
17,
87,
30094,
21713,
84,
10008,
71,
20306,
38,
23266,
39,
15,
45,
5948,
55,
45,
15,
56,
54,
86,
70,
48,
32759,
57,
16811,
51,
9598,
15766,
65,
18,
41,
85,
40,
1677,
71,
65,
55,
33,
10782,
76,
6420,
20475,
48,
50,
48,
18,
53,
20,
56,
54,
16,
71,
56,
17,
36,
70,
37280,
41133,
56,
17,
71,
85,
5064,
45,
48,
35,
52,
4507,
4825,
19,
70,
48,
36802,
14751,
18,
44,
70,
52,
16,
23155,
48192,
23266,
10008,
20,
28435,
77,
49,
75,
40,
1677,
85,
56,
55,
45,
15,
5064,
41,
75,
57,
39,
67,
85,
65,
17,
48,
70,
52,
16,
10262,
34551,
7278,
65,
34,
14529,
11215,
53,
10724,
14529,
56,
54,
16,
86,
57,
18,
41,
20306,
54,
20,
74,
34,
4261,
6862,
37094,
518,
16811,
51,
48,
71,
41,
36,
65,
1495,
84,
40692,
40,
70,
34551,
53,
83,
65,
18,
41,
79,
56,
54,
86,
70,
52,
16,
1565,
46747,
86,
70,
48,
17,
37,
10247,
55,
38576,
8482,
19313,
48,
70,
20,
37,
65,
54,
53,
88,
56,
54,
87,
74,
10008,
41,
258,
16811,
51,
52,
31554,
37,
65,
54,
16,
71,
5064,
67,
85,
65,
17,
48,
70,
52,
15,
4061,
49,
76,
24,
1416,
1959,
83,
40,
3109,
3099,
17,
52,
70,
52,
16,
41,
14529,
74,
57,
28435,
77,
48,
70,
53,
37094,
80,
65,
1731,
70,
52,
15,
71,
48,
35,
15,
57,
88,
57,
54,
16,
85,
9374,
48,
70,
7340,
53,
71,
323,
19313,
52,
25189,
42598,
55,
57,
40842,
18,
38576,
5064,
45,
48,
37,
74,
67,
23160,
18,
41,
77,
57,
16811,
42,
32304,
3483,
56,
55,
49,
2611,
54,
23266,
57,
34,
19313,
28425,
36,
57,
49,
18,
41,
3617,
7752,
50,
14529,
11215,
53,
10724,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
10526,
53,
39,
11215,
5892,
40692,
40,
70,
38475,
3829,
5064,
45,
48,
11215,
2290,
57,
18,
44,
70,
52,
16,
32,
48,
50,
21713,
82,
57,
72,
15766,
65,
1959,
84,
10008,
41,
258,
16811,
51,
48,
71,
7112,
57,
48397,
88,
66,
18,
48,
70,
52,
17,
41133,
5064,
45,
40842,
54,
53,
85,
8482,
19313,
34970,
20,
14887,
54,
20,
365,
16811,
55,
65,
1959,
74,
948,
19313,
10526,
71,
14887,
54,
20,
5948,
50,
14529,
65,
18,
67,
23160,
38,
86,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
32,
2640,
37094,
1229,
77,
10025,
53,
88,
14529,
65,
17,
52,
70,
52,
16,
32,
2937,
38,
24,
36299,
9861,
89,
67,
37094,
88,
10008,
24831,
65,
38,
87,
89,
5064,
27605,
28425,
36,
27143,
53,
83,
56,
76,
24,
82,
57,
41275,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
1921,
9693,
53,
84,
57,
18,
41,
20,
5064,
57,
71,
65,
38,
87,
293,
16811,
6849,
75,
47858,
8264,
2290,
57,
9861,
71,
8482,
33,
39,
11215,
2290,
57,
38,
2290,
57,
88,
4462,
65,
17,
45,
81,
5064,
22125,
10526,
79,
42,
57,
18564,
75,
57,
9861,
3099,
34,
19313,
65,
54,
75,
15,
64,
22923,
57,
18564,
18,
65,
1959,
74,
948,
19313,
10526,
67,
42,
67,
54,
42372,
16309,
33,
48,
57,
76,
53,
79,
57,
76,
57,
75,
979,
2749,
67,
55,
33018,
948,
19313,
10526,
23264,
56,
54,
28781,
10008,
24,
88,
65,
18,
57,
40842,
38,
87,
75,
5064,
8035,
48,
48,
24,
26708,
54,
28781,
5064,
3629,
31522,
41,
79,
948,
19313,
28425,
8905,
35990,
53,
85,
40,
1677,
71,
31522,
41,
40842,
38,
87,
85,
5064,
45,
4093,
15,
87,
40842,
54,
53,
430,
54,
87,
84,
5064,
45,
48,
37,
15,
87,
30094,
17184,
82,
57,
50,
2749,
56,
55,
45,
79,
8482,
19313,
67,
21713,
15,
57,
16811,
48,
56,
55,
50123,
35,
486,
71,
56,
17,
28781,
31522,
41,
79,
56,
17,
18519,
979,
19313,
10526,
49,
12805,
54,
87,
3099,
1959,
76,
57,
72,
12473,
64,
54,
67,
2616,
54,
20,
89,
5064,
22125,
34970,
24,
12805,
54,
42372,
56,
77,
52,
70,
48,
18,
41,
75,
57,
54,
45213,
52,
16,
8643,
54,
41133,
56,
17,
18519,
66,
18,
49,
75,
979,
19313,
52,
25189,
12805,
54,
20,
88,
40692,
45,
71,
5064,
7792,
40,
486,
73,
56,
55,
41,
15,
64,
39,
53,
88,
41596,
41,
16,
11215,
20,
293,
16811,
31212,
54,
34223,
948,
15766,
57,
54,
15,
70,
52,
16,
10262,
48,
17,
37,
544,
54,
20,
89,
44958,
16,
73,
56,
55,
41,
15,
64,
39,
53,
88,
41596,
41,
16,
11215,
20,
293,
16811,
31212,
54,
34223,
948,
15766,
57,
54,
16,
28435,
4029,
71,
65,
34,
19313,
34970,
16,
12805,
17,
45,
85,
20475,
20,
23160,
38,
86,
70,
52,
16,
41,
2749,
74,
16,
73,
57,
18,
41,
31298,
38,
1130,
52,
15,
8808,
54,
7278,
65,
37094,
5173,
38,
24,
84,
40,
3109,
3099,
17,
52,
70,
52,
16,
41,
12473,
52,
16,
85,
9374,
38576,
20475,
36,
70,
49,
38022,
70,
51,
18,
41,
85,
5064,
45,
48,
7206,
16,
28435,
77,
41,
85,
10008,
41,
258,
16811,
51,
34970,
24,
45,
65,
18,
41,
88,
1525,
19313,
67,
39,
41,
71,
20475,
48,
70,
52,
15,
4061,
34551,
6420,
9374,
48,
70,
49,
9861,
71,
56,
36802,
85,
5064,
45,
48,
36,
74,
16,
20306,
54,
1120,
5064,
38576,
65,
48397,
1416,
21713,
79,
948,
19313,
10526,
41,
45,
67,
34,
19,
70,
52,
17,
41133,
10008,
746,
56,
17,
75,
463,
38,
23,
70,
52,
16,
2969,
51,
76,
53,
18,
10008,
41,
3972,
54,
67,
375,
38,
24,
84,
5064,
45,
5222,
52,
24,
73,
57,
48397,
549,
88,
33,
7407,
54,
20,
75,
948,
33,
6849,
75,
41,
12473,
16,
33,
71,
65,
38,
24,
83,
56,
55,
40,
70,
34551,
6420,
9374,
49,
3099,
54,
19,
70,
52,
16,
1503,
7340,
37,
15,
66,
4029,
6592,
18,
44,
70,
7340,
24,
79,
9374,
48,
70,
52,
16,
1404,
7340,
57,
5031,
54,
57,
76,
40692,
40,
70,
48,
4029,
77,
5064,
45,
16,
979,
19313,
52,
10910,
48,
64,
55,
45,
83,
1525,
19313,
48,
71,
33,
48,
65,
39,
53,
83,
56,
37643,
83,
49,
55,
53,
88,
57,
54,
400,
5064,
45,
48,
35,
44526,
6862,
54,
1120,
10008,
1157,
57,
18,
52,
70,
52,
16,
1404,
7340,
24,
5173,
38,
24,
82,
16309,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
8322,
33,
48,
11215,
37,
79,
11215,
297,
40,
1677,
88,
57,
54,
53,
81,
5064,
41,
75,
57,
39,
67,
85,
65,
17,
49,
89,
5064,
45,
48,
10008,
53,
16706,
33,
48,
11215,
37,
79,
11215,
297,
40,
1677,
71,
65,
55,
33,
10782,
76,
6420,
20475,
48,
87,
52,
39,
41,
3099,
55,
41,
79,
57,
50,
14529,
11215,
53,
10724,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
9598,
33,
39,
65,
17,
87,
74,
10008,
41,
21282,
54,
57,
76,
948,
2749,
57,
48397,
6592,
34,
14529,
56,
54,
16,
86,
57,
24142,
50,
57,
54,
57,
16,
57,
17,
6780,
5064,
45,
5222,
16,
41,
79,
56,
17,
12337,
11215,
49,
14969,
1731,
70,
49,
18,
41,
20306,
76,
52,
70,
52,
16,
32,
48,
3118,
53,
89,
66,
17,
75,
71,
8482,
33,
39,
67,
54,
87,
6592,
34,
19313,
10526,
45,
9936,
18564,
32812,
37094,
72,
56,
29767,
81,
10008,
41,
16,
67,
17184,
75,
5064,
45,
48,
35,
53,
45,
71,
65,
41275,
70,
7340,
24,
79,
9374,
48,
70,
52,
16,
32,
2606,
17,
37,
21282,
38,
24,
84,
5064,
45,
75,
16309,
19313,
28425,
2767,
52,
17,
37,
8671,
54,
23266,
19071,
84,
5064,
49,
258,
54,
87,
85,
979,
19313,
10526,
79,
9936,
54,
1157,
57,
54,
86,
70,
9598,
19,
70,
53,
21713,
20,
65,
38,
24,
88,
5064,
45,
48,
40,
1677,
71,
56,
4029,
1229,
86,
24,
9936,
54,
19,
70,
48,
17,
87,
23160,
54,
53,
463,
38022,
70,
52,
15,
23820,
52,
17,
41133,
40,
1677,
82,
57,
54,
16,
75,
9374,
49,
75,
5064,
7792,
40,
1925,
40,
65,
17,
42372,
57,
21713,
20,
948,
33,
33484,
54,
1120,
56,
54,
25404,
5064,
46987,
56,
54,
7278,
40692,
41,
89,
42,
48,
87,
9936,
54,
19,
70,
46747,
42372,
321,
23,
70,
52,
15,
40,
54,
52,
17,
41133,
40,
3109,
16,
64,
37643,
70,
37280,
53,
89,
40692,
41,
17,
65,
17,
306,
5064,
8035,
48,
48,
16,
9936,
54,
19,
70,
51,
1495,
85,
57,
77,
41,
75,
5064,
45,
4093,
16,
45,
75,
56,
29767,
11400,
54,
57,
76,
5064,
45,
5222,
43221,
40842,
39,
57,
75,
979,
19313,
67,
39,
41,
71,
20475,
48,
70,
52,
15,
2043,
52,
17,
7278,
36020,
53,
5173,
1959,
85,
57,
34,
12261,
56,
54,
28781,
5064,
8035,
48,
48,
24,
51,
65,
1495,
85,
65,
8845,
70,
48,
1959,
71,
66,
18,
48,
70,
52,
15,
4663,
52,
33551,
67,
38,
1130,
48,
17,
37,
88,
65,
39,
34153,
56,
54,
48,
70,
52,
15,
2043,
52,
18,
38576,
20475,
49,
14751,
17,
13655,
50,
9861,
6592,
17,
53,
20,
5064,
8035,
48,
49,
11251,
67,
54,
34985,
979,
33,
48,
64,
54,
20,
75,
5064,
33,
6862,
54,
1120,
5064,
45,
48,
9527,
45,
16,
57,
17,
37,
88,
65,
38,
24,
71,
57,
72,
4462,
64,
18564,
77,
57,
16811,
51,
52,
2348,
51,
67,
54,
20,
89,
40692,
48,
70,
52,
15,
23852,
53,
21713,
672,
17,
52,
70,
52,
16,
41,
12473,
10913,
16,
11215,
87,
85,
56,
17,
45213,
35990,
6732,
57,
16811,
51,
28425,
3620,
53,
76,
41133,
38311,
71,
65,
54,
16,
75,
5064,
45,
48,
37094,
25404,
66,
18,
49,
39346,
18,
41,
15,
30976,
53,
6413,
54,
24,
84,
40,
3109,
71,
20475,
49,
79,
20475,
66,
70,
52,
15,
4061,
53,
17,
7278,
57,
37094,
88,
5064,
41,
71,
20475,
2949,
5064,
45,
48,
36,
335,
85,
65,
17,
49,
14969,
1731,
70,
48,
77,
41,
79,
57,
38,
25404,
5064,
8035,
48,
49,
53,
88,
26903,
56,
87,
4535,
36287,
26903,
56,
87,
45,
70,
48,
87,
12740,
70,
16,
26903,
56,
87,
45,
86,
48,
87,
12740,
46265,
33,
7206,
86,
2394,
10744,
44,
86,
44,
17,
13752,
70,
35504,
73,
36,
20,
26903,
56,
88,
44,
2390,
17,
44,
73,
1961,
45,
73,
40,
88,
1404,
52,
3620,
9328,
86,
45,
86,
36,
17,
26903,
56,
88,
45,
2390,
17,
44,
73,
8322,
45,
73,
40,
17,
26903,
56,
88,
45,
86,
44,
17,
44,
73,
70,
35504,
73,
44,
15,
26903,
56,
88,
46,
48,
44,
17,
44,
89,
2885,
45,
73,
44,
87,
26903,
56,
89,
44,
70,
44,
17,
44,
89,
12740,
45,
73,
44,
16,
1404,
66,
35504,
73,
44,
18,
26903,
56,
89,
46,
2390,
17,
44,
89,
74,
35504,
73,
48,
86,
1404,
70,
35504,
73,
48,
87,
26903,
56,
15,
44,
70,
44,
17,
8575,
12740,
45,
73,
48,
15,
26903,
56,
15,
45,
48,
44,
17,
8575,
56,
35504,
73,
48,
19,
26903,
56,
16,
44,
2390,
17,
11251,
1961,
45,
73,
52,
88,
26903,
66,
87,
44,
86,
44,
17,
11251,
48,
35504,
73,
52,
16,
26903,
56,
16,
45,
70,
48,
87,
13752,
44,
17,
26903,
56,
16,
45,
86,
48,
87,
13752,
44,
19,
26903,
56,
16,
46,
48,
44,
17,
45,
73,
2885,
45,
73,
56,
87,
26903,
56,
17,
44,
70,
44,
17,
45,
73,
12740,
45,
73,
56,
16,
26903,
56,
17,
45,
70,
44,
17,
45,
48055,
35504,
73,
56,
19,
26903,
56,
17,
46,
48,
44,
17,
45,
89,
2885,
45,
48055,
87,
26903,
56,
18,
44,
70,
44,
17,
45,
89,
8322,
45,
48055,
15,
26903,
56,
18,
45,
70,
44,
17,
45,
89,
66,
35504,
48055,
19,
26903,
56,
18,
46,
48,
44,
17,
3727,
2885,
45,
73,
70,
87,
26903,
56,
19,
44,
86,
44,
17,
3727,
2389,
45,
73,
70,
15,
26903,
56,
19,
45,
48,
44,
17,
33076,
35504,
73,
70,
18,
26903,
56,
19,
46,
2390,
17,
2394,
2885,
45,
73,
74,
87,
26903,
56,
20,
44,
70,
44,
17,
2394,
48,
35504,
73,
74,
16,
26903,
56,
20,
45,
70,
44,
17,
2394,
66,
35504,
73,
74,
20,
26903,
66,
86,
44,
2390,
18,
12740,
1961,
45,
89,
42012,
26903,
66,
86,
44,
86,
44,
18,
12740,
48,
35504,
89,
32,
16,
26903,
66,
86,
45,
70,
44,
18,
12740,
66,
35504,
89,
32,
19,
26903,
66,
86,
46,
48,
44,
18,
13752,
1961,
45,
89,
36287,
26903,
66,
87,
45,
2390,
18,
13752,
8322,
45,
89,
36,
17,
26903,
66,
87,
46,
2390,
18,
44,
73,
2885,
45,
89,
40,
87,
26903,
948,
45,
2390,
18,
44,
73,
8322,
45,
89,
40,
17,
26903,
948,
46,
2390,
18,
44,
89,
2885,
45,
89,
44,
87,
33,
7206,
88,
44,
89,
52,
3620,
25621,
89,
45,
70,
44,
18,
44,
89,
40,
15039,
86,
45,
88,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
88,
35,
87,
33,
74,
36,
19499,
68,
33,
89,
36,
70,
51,
4029,
2616,
41275,
3955,
72,
8202,
64,
54,
67,
375,
39,
8895,
3666,
8202,
64,
54,
67,
375,
39,
23678,
34,
8202,
64,
54,
67,
375,
36905,
20913,
8202,
64,
54,
67,
375,
39,
23678,
72,
8202,
64,
54,
67,
375,
39,
23678,
88,
8202,
64,
54,
67,
375,
39,
8895,
4503,
8202,
64,
54,
67,
375,
39,
8895,
2640,
8202,
64,
54,
67,
375,
36905,
50229,
5603,
70,
51,
4029,
2616,
17184,
89,
4177,
3109,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
41541,
8202,
64,
54,
67,
375,
36905,
41,
13752,
44,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
8035,
8202,
64,
54,
67,
375,
36905,
50229,
9936,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
4503,
8202,
64,
54,
67,
375,
36905,
41,
13752,
10025,
51,
4029,
2616,
17184,
89,
4177,
40,
86,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
5653,
8202,
64,
54,
67,
375,
36905,
50229,
73,
40,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
89,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
7792,
8202,
64,
54,
67,
375,
36905,
50229,
73,
52,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
17,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
45,
88,
8202,
64,
54,
67,
375,
36905,
50229,
73,
1130,
51,
4029,
2616,
17184,
89,
4177,
40,
20,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
89,
9655,
8202,
64,
54,
67,
375,
36905,
53,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
48,
81,
31554,
20,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
34388,
57,
20185,
89,
35,
86,
23,
54,
15199,
23,
15199,
74,
14,
43021,
2390,
85,
3270,
11584,
39,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
71,
74,
37,
70,
4426,
35,
87,
2969,
37,
70,
56,
69,
33,
17,
12993,
5631,
8924,
64,
17,
53,
20,
66,
87,
23,
30501,
48,
57,
17,
56,
54,
87,
16,
40692,
45,
74,
36,
19499,
6500,
15,
45,
71,
65,
55,
33,
79,
20475,
66,
70,
56,
54,
20,
74,
40,
3109,
85,
57,
38,
26059,
20475,
66,
4694,
37094,
71,
31522,
45,
15,
40,
1677,
71,
66,
18,
31273,
57,
16811,
36609,
18,
53,
88,
66,
87,
57,
47,
67,
38,
18519,
979,
19499,
65,
18,
53,
88,
948,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
8264,
41,
85,
56,
55,
48,
70,
51,
21713,
16,
20475,
2949,
5064,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
1229,
87,
8924,
6158,
33,
4535,
36,
89,
1404,
52,
15039,
86,
11682,
57,
17,
32656,
57,
17,
49,
74,
10262,
36,
5760,
87,
56,
3398,
86,
70,
37,
4177,
70,
85,
13752,
74,
85,
44,
73,
31554,
45,
17,
49,
74,
10262,
4061,
16412,
23,
54,
10910,
23,
39,
57,
17,
48,
48,
10913,
19,
39,
5653,
8202,
64,
54,
67,
375,
32,
1360,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
34586,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
16,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
17,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
19,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
20,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
9655,
8202,
64,
54,
67,
375,
36905,
50229,
9328,
70,
51,
4029,
2616,
17184,
89,
4177,
36287,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
3666,
8202,
64,
54,
67,
375,
36905,
41,
13752,
48,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
16,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
34153,
8202,
64,
54,
67,
375,
36905,
41,
13752,
66,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
19,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
2640,
8202,
64,
54,
67,
375,
36905,
50229,
73,
10262,
51,
4029,
2616,
17184,
89,
4177,
40,
87,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
41541,
8202,
64,
54,
67,
375,
36905,
50229,
73,
44,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
8035,
8202,
64,
54,
67,
375,
36905,
50229,
73,
56,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
4503,
8202,
64,
54,
67,
375,
36905,
50229,
73,
10025,
51,
4029,
2616,
17184,
89,
4177,
44,
86,
10008,
20,
79,
57,
17,
71,
15,
66,
87,
52,
68,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
9132,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
87,
56,
33,
57,
76,
48,
8141,
86,
23,
48,
35,
87,
56,
3398,
16993,
77,
57,
10761,
74,
34892,
19767,
86,
23,
54,
11012,
23,
23199,
74,
14,
43021,
2390,
85,
3270,
11584,
39,
86,
7340,
14242,
1722,
84,
33707,
3132,
48,
70,
69,
34,
70,
9865,
39,
86,
56,
3398,
71,
23,
41,
10262,
36,
69,
23155,
56,
3838,
44817,
76,
55,
3046,
9598,
38,
48,
45607,
31212,
42668,
48,
38,
74,
1921,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
53,
12805,
55,
33,
41,
65,
48397,
77,
57,
52,
25404,
20475,
53,
88,
56,
55,
49,
85,
979,
20,
71,
66,
18,
33,
19,
47,
2481,
71,
66,
37,
24,
82,
40692,
57,
23160,
35,
16,
37,
9374,
49,
75,
31522,
3886,
64,
55,
45,
75,
41,
76,
16,
71,
66,
37,
24,
79,
57,
35,
15,
86,
41,
76,
37,
88,
66,
4029,
17,
56,
54,
26152,
57,
21713,
15,
57,
51,
3023,
43,
89,
36,
20,
43,
89,
40,
86,
13752,
66,
2022,
4029,
2616,
17184,
89,
47,
9328,
76,
11215,
20,
74,
47,
9328,
86,
12740,
44,
16,
13752,
70,
86,
13752,
52,
9132,
54,
20,
30094,
37,
3829,
68,
55,
3629,
47,
5603,
9132,
54,
20,
30094,
37,
24,
73,
56,
55,
49,
75,
57,
1959,
5948,
51,
15,
86,
34892,
9865,
35,
17,
48,
45607,
31212,
42668,
48,
10744,
5673,
36,
86,
35,
38,
20,
85,
35990,
53,
77,
57,
54,
20,
74,
43,
77,
38374,
57,
17,
48,
8141,
48,
23,
53,
10262,
36,
86,
33,
17184,
5173,
54,
53,
74,
32,
73,
48,
47,
57,
17513,
8141,
70,
8905,
57,
17513,
8141,
70,
8905,
57,
17513,
34,
57,
70,
24,
74,
37,
1130,
23199,
48,
23,
48,
57,
38,
48,
54,
4760,
48,
23199,
86,
23,
42668,
70,
1532,
8141,
52,
41,
4503,
23,
87,
2640,
23,
88,
44,
7206,
18,
57,
38,
48,
4093,
32,
24,
74,
37,
70,
2149,
23155,
23,
48,
57,
38,
48,
54,
4760,
48,
4093,
48,
23,
42668,
70,
48,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
14887,
38,
48,
44175,
70,
24,
74,
37,
70,
25241,
48,
23,
42668,
70,
56,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
40,
39,
86,
56,
3398,
76,
49,
74,
32,
48055,
47,
57,
17513,
9273,
70,
86,
47,
7156,
48,
48,
37,
48,
74,
12564,
17,
23266,
57,
29767,
15,
5064,
41,
75,
9374,
38576,
65,
34,
19499,
68,
55,
3629,
33,
15,
41,
85,
56,
55,
49,
79,
20475,
66,
41275,
17,
37,
23047,
38,
2290,
57,
1929,
22348,
54,
75,
325,
53,
53,
89,
57,
49,
41,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
24723,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
38,
2290,
57,
86,
24,
40,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
6535,
38,
24,
74,
57,
17,
2290,
57,
86,
20,
50,
57,
54,
16,
20306,
38022,
70,
48,
17,
37,
23047,
38,
2290,
57,
87,
52,
41,
3838,
48,
87,
44,
7206,
86,
6158,
15766,
86,
48,
87,
44,
7206,
17,
1404,
40,
3620,
5603,
87,
45,
48,
48,
87,
44,
5631,
19,
33,
7206,
86,
13752,
10917,
42,
86,
43421,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
3727,
87,
2969,
37,
1130,
69,
34,
86,
7340,
53,
76,
37,
21282,
54,
52,
87,
39,
1383,
37,
12473,
7100,
9328,
69,
33,
17,
12993,
42955,
34388,
36,
19499,
39,
7414,
45,
23160,
37094,
73,
67,
34,
14529,
56,
54,
16,
10247,
54,
20,
77,
10008,
53,
24954,
54,
75,
86,
32304,
2390,
47920,
56,
85,
34551,
3829,
65,
18,
33308,
2481,
75,
33,
10913,
75,
9374,
48,
41697,
37094,
463,
34,
20866,
20475,
87,
20,
33,
16,
46987,
56,
54,
7278,
40692,
3955,
53,
39,
41,
3099,
54,
87,
75,
979,
20866,
20475,
87,
20,
35,
13024,
5173,
29767,
81,
43,
16,
27159,
38432,
24,
54,
56,
54,
19,
44526,
86,
36,
86,
32,
48055,
16,
32,
73,
34586,
32,
48055,
17,
32,
48055,
15,
32,
73,
70,
18,
32,
48055,
20,
4851,
82,
11012,
17,
32656,
57,
17,
32656,
57,
17,
34388,
34892,
4061,
35,
87,
2969,
37,
70,
1532,
42955,
34388,
36,
19499,
2389,
75,
46987,
56,
54,
7278,
40692,
40,
70,
35990,
53,
84,
57,
18,
15450,
14529,
19,
70,
13752,
52,
8905,
72,
42012,
5673,
48,
10,
2389,
44,
86,
14529,
19,
70,
45,
5631,
8905,
72,
32,
16,
5673,
48,
10,
2389,
56,
86,
14529,
19,
70,
45,
89,
10116,
8141,
20,
52,
11215,
37,
40842,
37094,
88,
40,
3109,
23160,
9132,
15,
64,
32,
48,
10,
14114,
16,
14529,
19,
70,
44,
73,
32,
8905,
72,
26903,
5673,
48,
10,
2389,
48,
86,
14529,
19,
70,
45,
5603,
8905,
72,
32,
17,
5673,
48,
10,
2389,
66,
86,
4851,
82,
9697,
38,
32656,
57,
17,
32656,
57,
17,
32656,
57,
38,
48,
8220,
70,
24,
74,
37,
70,
25241,
48,
24,
74,
37,
70,
25241,
48,
23,
42668,
70,
40,
68,
33,
16,
57,
14751,
17,
8019,
37094,
78,
57,
38,
48,
34,
4339,
23,
54,
10910,
19,
33186,
54,
20,
84,
40692,
41,
375,
38,
16,
82,
3856,
52,
3185,
38,
57,
85,
65,
18,
49,
44601,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
9374,
49,
3099,
54,
20,
75,
979,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
979,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
1959,
82,
43,
54,
16,
74,
43,
9328,
88,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
312,
37094,
19,
67,
34,
16,
71,
65,
9861,
46803,
73,
519,
56,
17,
53,
463,
37094,
88,
46,
88,
40,
10,
6968,
2528,
57,
88,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
3829,
43,
48397,
88,
65,
18,
979,
40,
17184,
30094,
38,
87,
75,
3705,
41,
32812,
18,
646,
3528,
37,
88,
11215,
6052,
40,
72,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
2022,
24369,
40692,
1026,
56,
55,
41,
88,
65,
18,
66,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
3546,
7414,
31522,
41,
85,
9892,
40,
70,
43,
89,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
41,
20306,
34,
16,
11400,
54,
20,
81,
948,
33,
86,
56,
54,
67,
23160,
38,
40211,
18,
41541,
47,
73,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
49,
75,
57,
76,
37,
16,
65,
39,
4507,
56,
55,
45,
732,
25690,
10,
5188,
24,
24723,
4090,
23,
43,
17,
36,
10,
40,
39,
86,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
52,
17,
53,
71,
11215,
2949,
43,
76,
37,
89,
66,
39,
12397,
47,
74,
32819,
6849,
33,
41,
51,
74,
66,
70,
10917,
20,
36,
40,
3109,
46437,
67,
41,
51,
74,
66,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
57,
37643,
85,
52,
39,
41,
85,
57,
18,
41,
71,
65,
55,
32819,
20475,
49,
36609,
18,
53,
88,
948,
20,
71,
66,
18,
33,
19,
40,
73,
20,
33,
48,
16,
49,
41697,
41582,
2937,
31667,
51,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
15,
18519,
56,
55,
41,
89,
67,
1677,
71,
66,
18,
31273,
57,
13024,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
47,
14636,
37,
48,
53,
41,
6849,
34,
14529,
48,
53,
45,
3843,
19684,
23,
43,
17,
36,
10,
40,
39,
86,
70,
47,
5222,
83,
43,
4090,
70,
2149,
10262,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
26059,
57,
77,
49,
73,
56,
55,
41,
74,
948,
24,
23303,
54,
57,
15,
56,
17,
37,
88,
57,
39,
45,
71,
65,
38022,
84,
56,
55,
45,
732,
25690,
10,
49,
15,
75,
38,
15922,
14529,
48,
53,
41,
19684,
89,
86,
85,
56,
51,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
15,
83,
38729,
10262,
47,
5222,
83,
43,
4090,
70,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
16309,
33,
420,
76,
53,
76,
3705,
37882,
67,
55,
45,
15,
65,
2481,
75,
31522,
44,
85,
51,
76,
53,
18,
48,
18,
53,
89,
67,
38,
24,
83,
40692,
40,
84,
56,
55,
45,
732,
25690,
10,
48,
16,
41,
37,
48,
13024,
37,
10008,
26009,
48,
2931,
36392,
75,
48,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
71,
38729,
2953,
27734,
2780,
43,
17,
49,
79,
28241,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
41,
20306,
34,
16,
11400,
54,
20,
81,
948,
33,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
72,
47,
73,
1929,
6561,
15,
70,
6968,
36,
22296,
1495,
73,
65,
9861,
73,
1031,
15,
1789,
37,
17,
56,
55,
45,
48055,
4029,
16993,
35,
79,
17,
56,
55,
40,
70,
31522,
23266,
57,
37643,
24,
67,
17,
2290,
57,
38,
6052,
43,
76,
24,
86,
57,
54,
19,
78,
41,
88,
6359,
2149,
67,
5173,
54,
87,
75,
948,
6359,
41,
18,
26059,
57,
39,
15450,
47,
9936,
86,
9655,
86,
4908,
37094,
79,
57,
17,
71,
15,
11571,
48,
86,
9655,
86,
36484,
17,
45,
88,
65,
17,
34223,
56,
76,
37,
88,
26691,
15,
87,
5639,
3886,
40692,
45,
79,
368,
37,
571,
38022,
24,
44,
3351,
79,
46,
88,
3886,
40692,
49,
16,
11215,
19,
70,
57,
76,
37,
1416,
17,
52,
22,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
70,
3528,
12114,
57,
54,
56,
24,
3546,
746,
36020,
37,
89,
56,
18,
41,
14751,
41275,
21,
36020,
24,
79,
57,
34,
70,
86,
42176,
13396,
38729,
15,
83,
38729,
32,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
23,
14,
66,
21713,
77,
57,
53,
24,
79,
57,
35,
15,
88,
13752,
44,
86,
9655,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
38729,
32,
23,
66,
18,
46987,
65,
1495,
77,
3646,
15199,
52,
591,
70,
47920,
53,
13599,
15996,
70,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
1959,
463,
21713,
73,
67,
37,
53,
89,
43,
76,
37,
89,
66,
39,
12397,
38729,
32,
23,
66,
18,
46987,
65,
1495,
77,
47,
74,
45,
11571,
75,
27912,
48,
16,
48,
70,
53,
15996,
70,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
24,
48,
66,
4029,
17,
56,
29767,
20,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
36820,
32178,
53,
74,
26009,
54,
16811,
48,
51,
15,
87,
41,
48,
16,
10025,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
2780,
43,
17,
49,
79,
28241,
19,
7792,
73,
87,
44070,
7355,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
76,
6052,
40,
73,
2780,
66,
18,
33,
71,
8482,
33,
79,
57,
35,
15,
72,
35990,
10547,
57,
54,
49345,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
72,
56,
1959,
36299,
18,
40,
21,
40,
39,
4598,
64,
55,
49,
75,
46,
88,
33,
2022,
9031,
43,
55,
45,
79,
368,
52,
21,
14114,
88,
66,
39,
70,
22,
40,
73,
20,
43832,
9031,
56,
29767,
15,
5064,
53,
89,
46,
72,
31554,
27734,
70,
86,
9655,
405,
8575,
48,
83,
45,
89,
40,
18,
47549,
19,
46,
73,
23155,
56,
54,
15,
70,
43,
4090,
17,
46,
73,
23155,
66,
38,
15,
70,
7340,
37,
6592,
54,
57,
79,
56,
88,
19499,
64,
54,
16,
75,
40,
1925,
48,
15922,
10025,
5662,
24,
89,
66,
21713,
84,
38729,
32,
23,
1797,
15,
83,
25241,
23,
66,
18,
33,
71,
8482,
33,
89,
67,
39,
7278,
57,
51,
15,
72,
56,
1959,
36299,
18,
40,
21,
5064,
4598,
64,
55,
49,
75,
46,
88,
33,
2022,
9031,
43,
55,
45,
79,
368,
52,
21,
14114,
88,
66,
39,
70,
22,
40,
72,
33,
79,
57,
35,
15,
72,
35990,
10547,
57,
54,
49345,
40,
73,
20,
46,
57,
54,
53,
74,
10008,
18519,
65,
7801,
14,
40,
1677,
71,
65,
38,
86,
21287,
37643,
70,
4503,
33,
9148,
74,
15,
84,
40,
17184,
85,
2389,
56,
70,
9598,
20,
45,
32304,
12473,
56,
54,
75,
325,
4090,
19,
12740,
2953,
8575,
48,
15,
27734,
948,
45,
89,
52,
70,
43959,
36299,
18,
45,
75,
57,
34,
14529,
64,
39,
41,
14751,
18,
49,
83,
56,
37643,
70,
49,
21713,
20,
5639,
8202,
40692,
66,
70,
17947,
53,
71,
31522,
44,
70,
49,
21713,
20,
5639,
33,
71,
20475,
48,
70,
43490,
12337,
65,
16762,
89,
57,
17,
75,
17,
64,
54,
20,
77,
42,
5080,
28435,
18,
33,
71,
50007,
19,
70,
2149,
15,
83,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
76,
6052,
5653,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
70,
56,
1959,
82,
43,
55,
45,
83,
43,
9328,
88,
16284,
28435,
39,
306,
64,
54,
67,
375,
36905,
72,
47,
74,
45,
28435,
39,
306,
64,
54,
67,
375,
34,
5840,
56,
1959,
732,
33758,
70,
44,
73,
31554,
45,
88,
57,
84,
56,
77,
45,
86,
46,
88,
19313,
67,
21713,
15,
57,
16811,
85,
57,
72,
14529,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
20,
73,
65,
39,
53,
74,
57,
52,
57,
85,
65,
18,
49,
75,
979,
40,
10,
41,
76,
20,
291,
18,
32,
22,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
2022,
24369,
40692,
40,
10,
57,
33,
70,
33,
11473,
20,
69,
55,
15,
45,
85,
9374,
46987,
65,
17,
87,
89,
37280,
53,
24954,
54,
306,
57,
44526,
28435,
18,
7397,
56,
29767,
81,
50,
17,
53,
20,
55,
1507,
54,
10262,
52,
16,
56,
18,
31273,
44,
7206,
32812,
48397,
40842,
74,
45,
85,
9374,
49,
75,
9374,
48,
74,
35990,
53,
9132,
36,
16,
75,
9374,
44526,
57,
39,
57,
71,
20475,
45,
75,
49,
4029,
21282,
37094,
88,
41,
38,
2949,
64,
15,
37,
73,
56,
17,
53,
89,
66,
17,
8019,
38,
36820,
10503,
45,
15,
65,
5631,
87,
41,
38,
16,
3099,
54,
20,
43832,
9031,
57,
54,
1120,
41,
3109,
75,
57,
77,
49,
37371,
54,
4349,
48,
18564,
17,
56,
54,
20,
73,
57,
52,
57,
40842,
17184,
75,
979,
49,
6592,
38,
83,
41,
66,
16,
3886,
57,
54,
16,
30094,
54,
16,
75,
258,
84,
14,
13752,
35,
45448,
23820,
5105,
11163,
79,
377,
18,
6413,
42176,
15,
84,
16,
3792,
1137,
43833,
43,
79,
23,
79,
52,
72,
17,
66,
23,
70,
855,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
35353,
1137,
25633,
1298,
366,
27310,
486,
2713,
33,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
14116,
10430,
17257,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
41339,
62,
1860,
75,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
27271,
312,
1298,
366,
18,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
47522,
879,
312,
1298,
366,
29626,
1,
198,
92,
198,
198,
324,
19259,
62,
12947,
62,
687,
62,
12853,
796,
1391,
198,
220,
220,
220,
366,
834,
20114,
3525,
51,
46095,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
20114,
3525,
1503,
38,
5883,
3525,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
1298,
12813,
86,
36,
5760,
86,
9994,
9328,
89,
44,
9936,
17,
11251,
44,
19,
3727,
8577,
37,
70,
35543,
33538,
53,
6413,
55,
49,
52,
68,
55,
3629,
26691,
42,
73,
42,
3838,
33,
17922,
9705,
14,
86,
36,
43488,
32,
4339,
36,
3838,
2885,
53,
2348,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
87,
14751,
18,
49,
70,
44,
53,
83,
65,
52,
18,
75,
89,
67,
37094,
83,
43,
74,
45,
85,
65,
38,
87,
75,
56,
18,
49,
40842,
1495,
89,
43,
74,
25404,
20475,
53,
3972,
22117,
84,
50,
17,
53,
20,
53,
76,
37,
21282,
54,
53,
48,
56,
54,
306,
56,
35028,
65,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
41,
9374,
48,
89,
44,
14246,
22296,
55,
45,
73,
65,
18,
41,
11400,
54,
3792,
5064,
57,
75,
31522,
45,
40842,
21626,
7792,
19,
86,
43,
73,
32,
84,
9655,
86,
70,
48,
18,
53,
21282,
39,
53,
88,
57,
51,
16,
84,
40692,
53,
15,
11215,
42388,
5639,
33,
48,
67,
54,
41,
11400,
29767,
43,
40692,
75,
36609,
17,
83,
23160,
73,
16,
72,
45,
89,
34985,
45,
22117,
16,
45,
73,
36,
20,
44,
89,
49,
75,
12740,
70,
20,
55,
50,
30894,
52,
18,
75,
89,
67,
37094,
83,
43,
75,
45,
15,
11215,
2290,
57,
88,
86,
22296,
55,
45,
73,
65,
18,
41,
11400,
54,
3792,
5064,
57,
75,
31522,
45,
40842,
21626,
7792,
19,
86,
43,
73,
32,
84,
9655,
86,
70,
48,
18,
53,
21282,
39,
53,
88,
57,
51,
16,
84,
40692,
53,
15,
11215,
42388,
5639,
33,
48,
67,
54,
41,
11400,
29767,
43,
40692,
75,
36609,
17,
83,
23160,
73,
16,
72,
45,
89,
34985,
45,
22117,
16,
45,
73,
36,
20,
44,
89,
49,
75,
12740,
70,
20,
55,
53,
15,
82,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
23155,
17922,
57,
13331,
55,
49,
23160,
37643,
17213,
18,
45,
79,
368,
10080,
55,
18,
57,
75,
31522,
45,
40842,
1731,
5631,
2885,
75,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
54,
940,
25241,
74,
34,
17922,
54,
17922,
37,
70,
17922,
7801,
70,
17922,
6242,
17922,
70,
17922,
2969,
73,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
20866,
18,
9705,
73,
10116,
45,
20,
66,
18,
49,
23160,
50,
20,
43832,
17,
34223,
57,
29767,
15,
64,
54,
24,
84,
948,
20,
39,
57,
54,
20,
44601,
4029,
73,
43,
74,
7100,
53,
57,
71,
65,
39,
53,
75,
7340,
37,
79,
11215,
42012,
54,
16,
83,
49568,
45,
15,
57,
54,
15,
84,
17887,
1120,
44,
89,
3792,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
15,
82,
54,
16,
45,
20,
66,
18,
49,
23160,
50,
20,
51,
67,
39,
41,
79,
20475,
6359,
3528,
16,
89,
56,
1959,
88,
65,
38,
4528,
5639,
48802,
40692,
41,
4496,
54,
24,
84,
11571,
4507,
9655,
19,
86,
43,
73,
1722,
40,
1677,
16,
65,
17184,
16,
11215,
52,
24,
20475,
53,
16,
67,
39,
41,
71,
65,
34,
86,
70,
52,
39,
53,
571,
9861,
73,
50,
17,
53,
20,
43490,
24,
81,
57,
54,
2920,
56,
48055,
18,
56,
6849,
73,
45,
9936,
87,
2394,
44,
15,
57,
5603,
19,
8874,
16,
67,
10262,
29697,
1565,
81,
40692,
74,
37,
36020,
37,
21282,
54,
52,
3838,
48,
8457,
36,
3838,
6242,
70,
48,
29697,
1565,
48,
76,
24,
31298,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
22,
9705,
14,
69,
20379,
10,
82,
48,
29697,
4579,
70,
3838,
6242,
2749,
65,
17,
37,
15,
10008,
2290,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
17584,
77,
9705,
24,
9705,
21,
71,
17922,
56,
3539,
3838,
4760,
74,
41,
85,
56,
55,
48,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
35191,
9705,
24,
9705,
65,
12473,
3838,
4792,
42,
29697,
2885,
15,
45,
71,
65,
55,
33,
79,
20475,
66,
70,
7340,
37,
6592,
17,
37,
77,
57,
48,
39,
16,
9705,
14,
69,
20379,
1238,
49,
3838,
4760,
35,
17922,
31554,
36,
57,
54,
87,
16,
68,
38022,
70,
48,
17,
37,
544,
54,
19,
33,
23,
9705,
14,
18,
9705,
83,
36,
3838,
6242,
70,
19,
17922,
69,
48192,
6420,
56,
36802,
75,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
87,
9705,
14,
69,
20379,
15,
66,
49,
3838,
11879,
17922,
33,
7112,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
34,
56,
54,
87,
73,
65,
13381,
42,
48,
39,
85,
9705,
14,
69,
20379,
15,
74,
49,
3838,
11879,
70,
3838,
6242,
41,
40,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
34,
56,
55,
45,
79,
56,
88,
38841,
22,
69,
9705,
18,
20379,
24,
10008,
48,
3838,
33,
71,
48,
17922,
20304,
38,
3829,
57,
54,
86,
70,
37280,
24,
85,
65,
4090,
78,
52,
18,
38576,
20475,
38576,
11215,
48,
79,
32,
1990,
9705,
24,
9705,
21,
49,
17922,
56,
54,
17922,
39,
74,
24,
76,
57,
72,
4462,
65,
17,
37,
74,
5064,
57,
5031,
9861,
73,
65,
38022,
70,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
39,
79,
9705,
14,
69,
20379,
15,
78,
49,
3838,
4760,
38,
29697,
2246,
41,
48,
11215,
53,
8326,
55,
53,
83,
10008,
41,
85,
56,
55,
48,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
32,
891,
9705,
24,
9705,
53,
2200,
3838,
4792,
64,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
17931,
79,
32,
68,
55,
9705,
24,
9705,
53,
87,
36,
3838,
4792,
66,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
23127,
79,
32,
68,
47,
9705,
24,
9705,
53,
71,
36,
3838,
4792,
68,
17922,
20114,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
544,
54,
19,
70,
42,
35,
4933,
32,
68,
39,
9705,
24,
9705,
50,
87,
36,
3838,
4792,
70,
17922,
25425,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
18,
9705,
14,
18,
20379,
6659,
36,
48,
3838,
23286,
3539,
3838,
2969,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2782,
18,
9705,
24,
9705,
55,
71,
36,
3838,
4792,
74,
17922,
36,
16,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
24369,
67,
21713,
77,
57,
4090,
78,
44,
1134,
33,
17,
9705,
14,
18,
20379,
24,
69,
36,
48,
3838,
23286,
56,
29697,
1404,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2149,
34586,
42,
48,
39,
57,
9705,
14,
69,
20379,
17,
1503,
3838,
4760,
42,
17922,
15766,
48,
11215,
53,
8326,
55,
53,
83,
40,
1677,
20306,
17184,
71,
57,
17,
52,
70,
42,
35,
48,
79,
2782,
69,
9705,
24,
9705,
56,
2200,
3838,
4792,
80,
17922,
36,
16,
3886,
57,
54,
16,
30094,
54,
15,
70,
48,
24369,
67,
21713,
77,
57,
4090,
78,
40979,
33,
16,
69,
9705,
18,
20379,
24,
73,
36,
48,
3838,
33,
14246,
29697,
1404,
52,
39,
41,
23160,
54,
75,
16,
65,
50,
14529,
65,
18,
49,
15,
56,
54,
25404,
2149,
70,
19,
42,
48,
6535,
9705,
14,
69,
20379,
16,
70,
49,
3838,
4760,
43,
70,
3838,
2246,
67,
48,
11215,
53,
8326,
55,
53,
83,
38311,
20306,
54,
49044,
57,
50,
3483,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
33967,
52,
88,
10025,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
15,
69,
9705,
18,
20379,
24,
74,
36,
48,
3838,
33,
73,
17922,
32,
68,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
39,
11215,
6420,
66,
29208,
65,
17,
37,
15,
41596,
2290,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
9705,
14,
24,
9705,
53,
12473,
3838,
4792,
88,
17922,
7414,
3886,
57,
54,
16,
30094,
54,
15,
70,
49,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
89,
69,
9705,
18,
20379,
24,
75,
36,
48,
3838,
33,
73,
48,
17922,
65,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
39,
11215,
6420,
66,
34,
19499,
57,
54,
1120,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
85,
9705,
24,
9705,
1199,
36,
3838,
4792,
17,
17922,
39,
53,
3886,
57,
54,
16,
30094,
54,
15,
70,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
49,
4090,
79,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12832,
77,
9705,
24,
9705,
54,
87,
36,
3838,
4792,
19,
17922,
39,
75,
3886,
57,
54,
16,
30094,
54,
15,
70,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
6998,
24,
55,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
16768,
9705,
14,
69,
20379,
16,
86,
49,
3838,
4760,
46,
70,
3838,
2246,
33,
48,
11215,
53,
8326,
55,
53,
83,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
29567,
9705,
14,
69,
20379,
940,
49,
3838,
4760,
47,
17922,
33,
71,
48,
11215,
53,
8326,
55,
53,
83,
10008,
71,
85,
65,
17,
45213,
53,
55,
10262,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
86,
9705,
14,
18,
20379,
24,
68,
33,
3838,
6242,
73,
19,
17922,
64,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
86,
69,
9705,
18,
20379,
24,
5188,
48,
3838,
33,
74,
17922,
10116,
52,
39,
41,
23160,
54,
75,
16,
65,
16811,
52,
57,
54,
1120,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4826,
9705,
14,
24,
9705,
41,
71,
36,
3838,
22778,
34,
29697,
2246,
52,
41,
85,
56,
55,
48,
70,
52,
17,
87,
14751,
4760,
24,
9705,
14,
69,
20379,
15,
48743,
3838,
4760,
49,
17922,
10910,
57,
67,
55,
41,
15,
2149,
70,
15,
42,
48,
38,
22,
9705,
14,
69,
20379,
88,
15,
36,
3838,
4760,
49,
70,
17922,
71,
57,
67,
55,
41,
15,
2149,
70,
17,
42,
48,
38,
20,
9705,
14,
69,
20379,
88,
66,
49,
3838,
4760,
50,
17922,
25189,
35,
56,
54,
41,
79,
8482,
32,
78,
44,
5603,
79,
4826,
69,
9705,
24,
9705,
42,
12473,
3838,
22778,
42,
29697,
2246,
4944,
71,
56,
76,
2290,
2149,
1360,
42,
48,
38,
16,
9705,
14,
69,
20379,
48361,
49,
3838,
4760,
51,
17922,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
3666,
74,
37000,
9705,
14,
18,
20379,
23,
88,
17922,
33,
74,
19,
17922,
41275,
76,
24,
31298,
34,
16,
41,
35904,
38,
87,
9705,
14,
69,
20379,
8226,
49,
3838,
4760,
52,
17922,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
7792,
74,
9414,
9705,
14,
18,
20379,
23,
81,
36,
48,
3838,
3629,
3539,
29697,
41,
48,
17,
37,
544,
54,
19,
70,
42,
35,
4933,
32,
64,
18,
9705,
24,
9705,
43,
12473,
3838,
22778,
52,
29697,
2246,
4944,
71,
56,
76,
2290,
2149,
70,
17,
42,
48,
8642,
9705,
14,
69,
20379,
88,
15,
49,
3838,
4760,
53,
70,
29697,
2348,
35,
56,
54,
41,
79,
8482,
32,
78,
4503,
38841,
80,
69,
9705,
18,
20379,
5999,
17922,
3629,
70,
17922,
18564,
18,
41,
20306,
55,
10262,
48,
76,
24,
31298,
34,
16,
41,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
77,
9705,
14,
69,
20379,
89,
1503,
3838,
4760,
54,
70,
29697,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
15,
42,
48,
9861,
9705,
14,
69,
20379,
89,
4663,
3838,
4760,
55,
17922,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
17,
42,
48,
38,
73,
9705,
14,
69,
20379,
89,
48,
49,
3838,
4760,
55,
70,
29697,
2953,
43832,
18,
49,
15,
56,
54,
25404,
2149,
70,
19,
42,
48,
41126,
9705,
14,
69,
20379,
89,
66,
49,
3838,
4760,
56,
17922,
1925,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
7407,
88,
65,
18,
53,
86,
5064,
49,
75,
9374,
48,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
9705,
14,
24,
9705,
9864,
36,
3838,
22778,
72,
17922,
40,
15,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
49,
18,
41,
20306,
55,
10262,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
18,
9705,
24,
9705,
6965,
3838,
22778,
74,
17922,
39,
74,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
49,
18,
41,
20306,
55,
10262,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
49017,
9705,
14,
69,
20379,
10872,
49,
3838,
4760,
57,
70,
3838,
2246,
67,
37,
66,
55,
53,
44601,
18,
49,
3972,
54,
41133,
10008,
71,
8957,
17,
52,
85,
48,
4029,
81,
57,
16811,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
76,
69,
9705,
18,
9705,
12161,
3838,
6242,
11296,
17922,
48,
48,
4029,
81,
57,
16811,
41,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
55,
9705,
14,
69,
20379,
89,
82,
49,
3838,
4760,
363,
3838,
6242,
57,
49017,
38,
24,
31298,
38,
2290,
57,
88,
14529,
56,
54,
16,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
55,
9705,
24,
9705,
23548,
17922,
57,
82,
17922,
38,
74,
41,
8957,
17,
52,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
22778,
47,
9705,
24,
9705,
47,
12473,
3838,
22778,
84,
17922,
37,
74,
9892,
65,
18,
53,
86,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
74,
69,
9705,
18,
9705,
11401,
3838,
6242,
77,
17922,
20185,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
73,
9705,
14,
18,
20379,
4531,
36,
48,
3838,
33,
77,
3539,
3838,
10262,
49,
18,
41,
20306,
55,
10262,
50,
9861,
81,
57,
16811,
41,
8482,
33,
48,
11215,
2528,
64,
55,
49,
30094,
76,
52,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
73,
69,
9705,
18,
9705,
48,
36,
3838,
6242,
77,
48,
17922,
48,
49,
21713,
20,
5064,
53,
89,
57,
16811,
48,
56,
55,
57,
40842,
38,
6780,
35904,
8763,
9705,
14,
69,
20379,
89,
19,
49,
3838,
4760,
67,
70,
3838,
6242,
16,
39,
11215,
6420,
66,
34,
19499,
57,
54,
1120,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
38,
41,
9705,
14,
69,
20379,
24,
36,
48,
3838,
4760,
68,
17922,
15199,
37,
9374,
41,
20306,
55,
49,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4792,
69,
9705,
24,
9705,
15,
71,
17922,
57,
21,
17922,
36,
15,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
71,
69,
9705,
18,
9705,
9328,
3838,
6242,
47516,
17922,
57,
49,
55,
37,
16,
40692,
45,
15,
66,
4029,
71,
8482,
33,
39,
11215,
6420,
66,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
45113,
9705,
14,
69,
20379,
15,
1137,
3838,
4760,
40616,
3838,
6242,
3483,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
4792,
39,
9705,
24,
9705,
16,
33,
17922,
64,
17922,
18429,
31667,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
25922,
9705,
14,
24,
9705,
48,
71,
36,
29697,
64,
34,
29697,
2885,
75,
41,
75,
9374,
38576,
65,
8141,
78,
6998,
24,
32457,
16,
28861,
25922,
18,
9705,
24,
9705,
16,
49,
17922,
64,
36,
17922,
8264,
53,
24954,
54,
53,
89,
67,
39,
41,
79,
56,
54,
19,
70,
53,
37094,
463,
34,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
22,
9705,
14,
69,
20379,
15,
13599,
3838,
4760,
71,
70,
3838,
6242,
53,
52,
57,
54,
1120,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
891,
9705,
18,
9705,
8845,
3838,
6242,
519,
17922,
57,
49,
18,
41,
20306,
55,
10262,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
18,
9705,
14,
69,
20379,
15,
48,
49,
3838,
4760,
328,
3838,
6242,
24,
52,
57,
54,
1120,
10008,
71,
8957,
17,
52,
70,
17887,
19,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
32,
8051,
9705,
24,
9705,
16,
87,
17922,
64,
44,
29697,
2885,
52,
9892,
65,
18,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
33,
66,
9705,
14,
18,
20379,
24,
15112,
48,
3838,
16635,
19,
17922,
71,
53,
37094,
463,
34,
3483,
64,
54,
28781,
43,
15,
41,
8957,
17,
52,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
25922,
39,
9705,
24,
9705,
17,
33,
17922,
64,
48,
29697,
2885,
74,
9892,
65,
18,
53,
86,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
9705,
14,
24,
9705,
38576,
36,
29697,
64,
50,
17922,
37,
16,
49,
75,
9374,
48,
70,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
18,
9705,
24,
9705,
17,
49,
17922,
64,
52,
29697,
2885,
52,
9892,
65,
18,
53,
86,
38311,
258,
16811,
53,
66,
17,
10526,
64,
9705,
14,
18,
9705,
64,
36,
3838,
6242,
79,
56,
17922,
70,
49,
18,
41,
20306,
55,
10262,
38475,
24,
85,
323,
33,
53,
66,
8141,
78,
49,
4090,
79,
5064,
49,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
1878,
9705,
18,
9705,
65,
36,
3838,
6242,
6024,
17922,
38162,
18,
41,
20306,
55,
10262,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
12298,
69,
9705,
24,
9705,
18,
33,
17922,
7252,
17922,
36,
15,
9892,
65,
18,
53,
86,
5064,
49,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
57,
69,
9705,
18,
9705,
67,
36,
3838,
6242,
79,
86,
17922,
48,
50,
9861,
81,
57,
16811,
79,
8482,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
73,
9705,
14,
69,
20379,
5824,
48,
3838,
4760,
782,
3838,
6242,
79,
40,
64,
54,
28781,
10008,
2290,
5064,
3886,
64,
54,
16,
30094,
9861,
17,
57,
50,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
71,
9705,
14,
69,
20379,
4089,
48,
3838,
4760,
78,
17922,
33,
71,
40,
64,
54,
28781,
10008,
2290,
43,
15,
41,
8957,
17,
52,
70,
17887,
19,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
55,
9705,
14,
18,
9705,
70,
36,
3838,
6242,
80,
3539,
3838,
10705,
9861,
81,
57,
50,
24,
24334,
54,
28781,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
10116,
18,
9705,
24,
9705,
19,
49,
17922,
461,
17922,
37,
34653,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
70,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
37,
65,
9705,
14,
69,
20379,
10,
33866,
3838,
4760,
6024,
3838,
6242,
48926,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
13155,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
10116,
77,
9705,
24,
9705,
19,
87,
17922,
5488,
17922,
8264,
71,
85,
65,
17,
45213,
53,
55,
10262,
7336,
52,
85,
53,
88,
24,
39,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
17213,
9705,
14,
69,
20379,
10,
48,
48,
3838,
4760,
80,
70,
3838,
6242,
71,
40,
65,
1959,
81,
5064,
53,
86,
40,
1925,
3697,
16,
33967,
52,
88,
10025,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
53,
69,
9705,
18,
9705,
75,
36,
3838,
6242,
80,
86,
17922,
19416,
38,
24,
85,
323,
33,
53,
66,
8141,
78,
53,
88,
24,
51,
27015,
14529,
56,
54,
16,
86,
66,
17,
75,
15,
57,
48,
9792,
9705,
14,
69,
20379,
10,
56,
48,
3838,
4760,
41345,
3838,
6242,
41,
40,
65,
18,
49,
23160,
22923,
65,
1959,
83,
40,
1925,
49,
67,
54,
53,
23160,
1134,
19499,
69,
9705,
18,
9705,
77,
36,
3838,
6242,
81,
17922,
1921,
52,
39,
41,
40842,
54,
75,
15,
64,
55,
57,
75,
40,
1677,
71,
65,
55,
33,
4496,
55,
49,
75,
26830,
9705,
14,
24,
9705,
21,
33,
17922,
323,
29697,
2885,
13024,
75,
9374,
48,
70,
48,
17,
37,
23047,
39,
45,
30094,
38,
10526,
51,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
23264,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
85,
9705,
24,
9705,
17922,
3838,
78,
4462,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
37,
41,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
73,
9705,
24,
9705,
17922,
3838,
78,
11473,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
30386,
9705,
14,
69,
20379,
86,
17922,
10206,
26830,
55,
9705,
24,
9705,
17922,
3838,
78,
11473,
47,
9705,
18,
20379,
23,
17922,
2246,
70,
26009,
9705,
14,
69,
20379,
86,
17922,
10206,
32,
6239,
9705,
24,
9705,
17922,
3838,
78,
33,
48,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
7708,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
9705,
14,
24,
9705,
17922,
3838,
78,
20866,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
24,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
89,
9705,
24,
9705,
17922,
3838,
78,
8202,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
36,
21,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
77,
9705,
24,
9705,
17922,
3838,
78,
33,
3185,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
18,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
65,
9705,
24,
9705,
17922,
3838,
78,
15766,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
15,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
47,
9705,
24,
9705,
17922,
3838,
78,
12261,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
3109,
9705,
14,
69,
20379,
86,
17922,
10206,
1404,
35,
9705,
24,
9705,
17922,
3838,
78,
9148,
9705,
14,
18,
20379,
23,
17922,
2246,
70,
36,
84,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
18,
9705,
24,
9705,
17922,
3838,
78,
9148,
47,
9705,
18,
20379,
23,
17922,
2246,
70,
9139,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
81,
9705,
24,
9705,
17922,
3838,
78,
33,
42,
69,
9705,
18,
20379,
23,
17922,
2246,
70,
36,
78,
9705,
14,
69,
20379,
86,
17922,
10206,
1921,
69,
9705,
24,
9705,
17922,
3838,
78,
33,
41,
85,
9705,
18,
20379,
23,
17922,
2246,
70,
325,
36,
74,
37,
88,
66,
4029,
17,
56,
54,
87,
22348,
55,
49,
75,
49,
9861,
89,
66,
38,
87,
258,
48,
57,
47,
23,
41,
2885,
43,
10,
69,
52,
72,
33,
19,
43,
48,
55,
41,
3972,
55,
57,
71,
65,
1137,
31298,
38,
7340,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
54,
5840,
56,
5760,
87,
56,
3398,
71,
57,
38,
67,
55,
49,
16,
11215,
15922,
65,
1959,
430,
54,
20,
77,
52,
18,
38576,
31522,
2200,
56,
55,
49,
75,
33,
70,
32,
2348,
38,
36056,
3270,
48,
14887,
17513,
14887,
70,
24,
74,
37,
70,
2149,
34,
70,
23,
54,
10910,
19,
36,
64,
39,
41,
75,
57,
70,
53,
26705,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
51,
67,
39,
7278,
57,
37643,
10438,
37,
16,
40692,
41,
20,
43,
55,
53,
79,
43,
76,
16,
79,
8482,
20,
48055,
18,
45,
74,
10262,
4061,
35,
87,
56,
42413,
71,
48192,
67,
55,
49,
16,
11215,
15922,
65,
1959,
430,
54,
20,
77,
46747,
20,
74,
49,
21713,
15,
57,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
19,
27734,
48397,
19,
64,
54,
1157,
65,
53,
45,
15,
56,
55,
74,
3398,
76,
49,
74,
10262,
7378,
57,
17513,
3539,
70,
48,
5760,
87,
56,
42413,
86,
7156,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
10262,
57,
47,
23,
41,
2885,
43,
10,
69,
52,
72,
38,
48,
54,
8141,
5064,
35,
87,
2969,
37,
70,
40,
68,
34,
1507,
71,
49,
21713,
15,
56,
52,
41,
20306,
54,
20,
74,
57,
17,
49,
74,
57,
38,
48,
23199,
86,
23,
42668,
70,
40,
68,
33,
10913,
293,
41275,
37,
4177,
70,
85,
13752,
74,
85,
44,
73,
31554,
45,
17,
49,
74,
46384,
47,
57,
17513,
8141,
70,
7378,
16412,
23,
54,
10910,
23,
39,
57,
17,
48,
48,
10913,
19,
12261,
48,
36287,
1404,
10744,
4535,
36,
16,
1404,
56,
15766,
86,
36,
19,
1404,
74,
34,
13752,
2246,
13752,
2943,
13752,
2149,
13752,
9655,
13752,
48,
34,
13752,
9598,
44,
9936,
34,
13752,
66,
34,
13752,
70,
34,
13752,
74,
24187,
73,
2246,
44,
73,
2943,
44,
73,
2149,
44,
73,
9655,
44,
73,
48,
24187,
73,
9598,
44,
73,
56,
24187,
48055,
24187,
73,
70,
24187,
73,
74,
24187,
89,
10116,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
48,
81,
31554,
20,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
66,
54,
12298,
57,
74,
10262,
74,
5760,
87,
56,
36208,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
19,
19555,
4029,
2616,
17184,
89,
10262,
36,
69,
23155,
56,
3838,
44817,
76,
55,
3046,
9598,
33,
19,
27734,
54,
40211,
54,
1157,
65,
53,
45,
15,
56,
55,
74,
20034,
23,
9273,
71,
20,
74,
37,
70,
49,
76,
35,
87,
10526,
322,
15200,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
34551,
37,
86,
17887,
16,
71,
57,
17,
53,
39,
57,
54,
20,
75,
11215,
37,
15,
65,
18,
40,
84,
56,
55,
45,
732,
35,
24,
83,
56,
55,
33,
21855,
37094,
17,
57,
54,
86,
24,
46747,
1120,
40692,
41,
86,
66,
4029,
89,
57,
50,
57,
83,
56,
55,
33,
13331,
54,
48,
24,
9655,
57,
71,
31522,
41,
30094,
76,
42388,
55,
17,
49,
31298,
38022,
24,
4503,
23,
87,
2640,
23,
88,
44,
7206,
18,
41,
76,
20,
79,
57,
17,
71,
15,
26691,
15,
87,
41,
77,
33018,
57,
35,
15,
88,
44,
89,
40,
20,
2394,
23155,
3727,
28758,
54,
20,
30094,
37,
3829,
68,
55,
3629,
47,
5603,
9132,
54,
20,
30094,
37,
24,
73,
56,
55,
49,
75,
57,
1959,
5948,
51,
15,
86,
34892,
9865,
35,
17,
48,
45607,
31212,
42668,
48,
10744,
5673,
36,
86,
35,
38,
20,
85,
35990,
53,
77,
57,
54,
20,
74,
43,
77,
38374,
57,
17,
48,
8141,
48,
23,
53,
10262,
36,
86,
33,
17184,
5173,
54,
53,
74,
10262,
8577,
57,
17513,
8141,
70,
8905,
57,
17513,
9273,
70,
19,
47,
7156,
48,
48,
37,
48,
74,
12564,
17,
23266,
57,
29767,
15,
5064,
41,
75,
9374,
38576,
65,
34,
19499,
68,
55,
3629,
33,
15,
41,
85,
56,
55,
49,
79,
20475,
66,
41275,
17,
37,
23047,
38,
2290,
57,
1929,
22348,
54,
75,
325,
53,
53,
89,
57,
49,
41,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
24723,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
38,
2290,
57,
86,
24,
40,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
6535,
38,
24,
74,
57,
17,
2290,
57,
86,
20,
50,
57,
54,
16,
20306,
38022,
70,
48,
17,
37,
23047,
38,
2290,
57,
87,
52,
41,
3838,
48,
87,
44,
7206,
86,
6158,
15766,
86,
48,
87,
44,
7206,
17,
1404,
40,
3620,
5603,
87,
45,
48,
48,
87,
44,
5631,
19,
33,
7206,
86,
13752,
10917,
42,
86,
43421,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
48,
35,
87,
2969,
37,
70,
469,
35,
4261,
31298,
21713,
52,
40692,
71,
15,
49,
76,
297,
65,
38,
48,
37,
3629,
57,
71,
65,
39,
53,
75,
13599,
19,
1581,
21713,
15,
56,
53,
57,
71,
65,
39,
53,
75,
49,
76,
297,
65,
38,
48,
37,
12473,
7100,
9328,
69,
33,
17,
344,
33,
15,
53,
84,
56,
54,
49044,
57,
18564,
77,
57,
4339,
44526,
87,
57,
51,
57,
54,
87,
75,
56,
18,
48,
70,
48,
17,
37,
23047,
38,
2290,
57,
88,
29499,
66,
55,
53,
14751,
34,
19,
70,
8068,
41,
54,
43,
486,
20306,
38,
24,
3972,
38,
24,
83,
57,
48,
49,
52,
57,
54,
1120,
34,
13024,
75,
9374,
48,
70,
51,
1495,
325,
48,
67,
52,
11215,
37,
40842,
37094,
88,
8068,
46987,
56,
54,
7278,
40692,
40,
70,
51,
1495,
325,
48,
16,
52,
31522,
53,
33708,
24,
6849,
53,
56,
85,
53,
76,
41133,
37,
48,
66,
33,
5673,
40,
18,
45,
48,
40,
19,
44,
86,
40,
18,
45,
70,
40,
18,
4535,
40,
19,
45,
86,
40,
18,
1581,
48,
81,
32,
16993,
77,
57,
17,
32656,
57,
17,
32656,
57,
38,
48,
5222,
48,
23,
48,
35,
87,
56,
3398,
86,
16,
77,
57,
4339,
53,
8141,
20,
52,
11215,
37,
40842,
37094,
88,
40,
3109,
23160,
9132,
15,
64,
32,
48,
10,
14114,
16,
14529,
19,
70,
44,
73,
32,
8905,
72,
26903,
5673,
48,
10,
2389,
48,
86,
14529,
19,
70,
45,
5603,
8905,
72,
32,
17,
5673,
48,
10,
2389,
66,
86,
37,
48,
70,
8874,
39,
41,
3099,
54,
87,
75,
979,
12261,
57,
54,
20,
358,
38,
70,
8905,
72,
31554,
45,
48,
48,
10,
2389,
40,
86,
14529,
19,
70,
44,
89,
32,
8905,
72,
32,
15,
5673,
48,
10,
2389,
52,
86,
14529,
19,
70,
45,
73,
32,
8905,
72,
32,
18,
10744,
48,
81,
32,
1929,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
49,
74,
10262,
66,
42668,
70,
1532,
8141,
55,
4579,
35,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
42,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
36,
57,
54,
57,
31298,
54,
87,
15,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
75,
2043,
486,
26009,
48,
78,
41,
5662,
24,
71,
31743,
15,
42,
5662,
24,
11400,
51,
19,
7792,
73,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
42,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
36392,
57,
48397,
88,
56,
17,
5162,
56,
55,
45,
732,
25690,
10,
35,
48,
78,
34382,
4944,
33,
6849,
33,
41,
51,
74,
66,
70,
10917,
20,
36,
40,
3109,
46437,
67,
41,
51,
74,
66,
7792,
70,
74,
23,
43,
17,
36,
10,
35,
48,
78,
23,
43,
17,
42372,
31743,
15,
42,
6968,
42372,
16284,
82,
56,
55,
45,
89,
3705,
41,
74,
11215,
24,
86,
57,
38,
6052,
8482,
40,
10,
35,
48,
78,
41,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
16,
3886,
65,
17,
9892,
56,
54,
16,
89,
48,
54,
20,
74,
43490,
6420,
31522,
33239,
56,
55,
45,
732,
25690,
10,
35,
48,
78,
34382,
48,
75,
3843,
16,
53,
12564,
86,
15,
36222,
48,
74,
23,
43,
17,
36,
10,
5662,
24,
11400,
51,
19,
7792,
70,
74,
41,
6968,
42372,
16284,
82,
56,
55,
45,
89,
3705,
41,
74,
11215,
24,
86,
57,
38,
6052,
8482,
40,
10,
35,
48,
78,
41,
4177,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
15,
18519,
56,
55,
41,
89,
67,
1677,
71,
66,
18,
31273,
57,
13024,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
74,
41,
5188,
53,
19499,
75,
45,
10080,
1677,
19499,
16,
29138,
6998,
47526,
16,
53,
10305,
48,
78,
41,
4177,
86,
85,
56,
51,
2780,
43,
17,
42372,
47,
76,
48,
5222,
48,
24,
74,
37,
71,
2246,
43,
70,
23,
42668,
1130,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
40,
39,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
70,
69,
33,
70,
40,
68,
57,
38,
48,
5097,
86,
23,
48,
35,
87,
56,
17511,
18504,
37,
12473,
20,
71,
65,
54,
52,
69,
5631,
52,
7902,
54,
48,
69,
33,
17,
34388,
30195,
53,
88,
35,
15,
41133,
57,
17,
23266,
40,
9527,
14969,
21713,
84,
57,
34,
19313,
10526,
57,
33,
9374,
746,
41596,
41,
28435,
77,
41,
75,
57,
2078,
70,
49,
37094,
89,
40692,
41,
15,
5064,
45,
48,
34,
74,
37,
16,
56,
77,
53,
88,
8482,
19313,
28425,
36,
48,
48,
55,
53,
89,
67,
38,
2290,
40,
1677,
88,
57,
54,
53,
81,
5064,
8035,
48,
48,
24,
34,
57,
54,
20,
571,
18,
66,
70,
35990,
6732,
57,
16811,
51,
28425,
3698,
48,
76,
53,
6413,
29767,
79,
16309,
19313,
28425,
36,
65,
48,
4029,
74,
67,
17,
23266,
65,
34,
16,
9936,
29767,
88,
56,
54,
16,
75,
9374,
49,
85,
5064,
41,
30094,
76,
53,
88,
5064,
45,
48,
38989,
41,
79,
57,
88,
2749,
56,
55,
45,
79,
8482,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
9598,
4851,
64,
54,
66,
70,
48,
76,
37,
4496,
54,
19,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
10262,
53,
37094,
463,
34,
14529,
56,
54,
41,
79,
9374,
11770,
48,
76,
24,
1416,
17,
36,
70,
48,
17,
24831,
56,
17,
36,
70,
52,
15,
44958,
48,
76,
3829,
64,
38,
18274,
51,
76,
37,
86,
16309,
48802,
56,
54,
34223,
40692,
10025,
52,
16,
1921,
48,
77,
41,
71,
20475,
20,
71,
8482,
33,
41,
66,
17,
87,
71,
20475,
48,
70,
52,
16,
41,
2749,
52,
41,
16,
67,
21713,
549,
88,
19313,
10526,
57,
35,
56,
54,
87,
31298,
76,
53,
88,
56,
37643,
70,
48,
4029,
77,
5064,
46987,
57,
54,
53,
89,
5064,
45,
48,
35,
4944,
71,
11215,
20,
75,
57,
17,
297,
5064,
27605,
28425,
4720,
48,
17,
37,
88,
66,
9861,
463,
37094,
3972,
8845,
70,
52,
15,
4061,
48,
17,
37,
89,
67,
38,
87,
75,
40,
1677,
88,
56,
54,
67,
89,
5064,
45,
48,
36,
15,
45,
71,
66,
18,
67,
23160,
38,
86,
70,
34551,
53,
83,
65,
18,
41,
79,
56,
54,
86,
70,
52,
16,
1565,
48,
17,
24831,
20475,
36,
70,
48,
17,
37,
23047,
34,
19313,
34970,
20,
26531,
9861,
549,
88,
3483,
64,
54,
34223,
948,
19313,
34970,
16,
43832,
37094,
71,
979,
12261,
56,
54,
28781,
5064,
45,
48,
39,
74,
45,
5948,
55,
45,
15,
56,
54,
86,
70,
48,
32759,
57,
16811,
51,
9598,
2749,
57,
48397,
6592,
34,
14529,
65,
18,
49,
15,
56,
54,
25404,
66,
87,
35257,
65,
37094,
71,
979,
12261,
56,
54,
28781,
5064,
45,
48,
40,
1677,
71,
56,
4029,
1229,
24954,
43832,
17,
87,
85,
20475,
23266,
10008,
37,
36299,
37094,
1229,
18,
67,
28435,
77,
15450,
5064,
22125,
9598,
14529,
65,
17,
87,
16,
65,
54,
41,
79,
16309,
33,
4694,
7708,
70,
38475,
3829,
57,
54,
87,
89,
3528,
41133,
57,
34,
14529,
65,
18,
49,
15,
56,
54,
25404,
66,
742,
43832,
17,
87,
16,
66,
17,
36,
83,
52,
17,
37,
73,
11215,
37,
83,
57,
54,
1120,
1525,
4462,
64,
55,
57,
75,
979,
19313,
28425,
1546,
48,
1959,
14969,
54,
24,
39346,
17,
87,
30094,
21713,
84,
10008,
71,
20306,
38,
23266,
39,
15,
45,
5948,
55,
45,
15,
56,
54,
86,
70,
48,
32759,
57,
16811,
51,
9598,
15766,
65,
18,
41,
85,
40,
1677,
71,
65,
55,
33,
10782,
76,
6420,
20475,
48,
50,
48,
18,
53,
20,
56,
54,
16,
71,
56,
17,
36,
70,
37280,
41133,
56,
17,
71,
85,
5064,
45,
48,
35,
52,
4507,
4825,
19,
70,
48,
36802,
14751,
18,
44,
70,
52,
16,
23155,
48192,
23266,
10008,
20,
28435,
77,
49,
75,
40,
1677,
85,
56,
55,
45,
15,
5064,
41,
75,
57,
39,
67,
85,
65,
17,
48,
70,
52,
16,
10262,
34551,
7278,
65,
34,
14529,
11215,
53,
10724,
14529,
56,
54,
16,
86,
57,
18,
41,
20306,
54,
20,
74,
34,
4261,
6862,
37094,
518,
16811,
51,
48,
71,
41,
36,
65,
1495,
84,
40692,
40,
70,
34551,
53,
83,
65,
18,
41,
79,
56,
54,
86,
70,
52,
16,
1565,
46747,
86,
70,
48,
17,
37,
10247,
55,
38576,
8482,
19313,
48,
70,
20,
37,
65,
54,
53,
88,
56,
54,
87,
74,
10008,
41,
258,
16811,
51,
52,
31554,
37,
65,
54,
16,
71,
5064,
67,
85,
65,
17,
48,
70,
52,
15,
4061,
49,
76,
24,
1416,
1959,
83,
40,
3109,
3099,
17,
52,
70,
52,
16,
41,
14529,
74,
57,
28435,
77,
48,
70,
53,
37094,
80,
65,
1731,
70,
52,
15,
71,
48,
35,
15,
57,
88,
57,
54,
16,
85,
9374,
48,
70,
7340,
53,
71,
323,
19313,
52,
25189,
42598,
55,
57,
40842,
18,
38576,
5064,
45,
48,
37,
74,
67,
23160,
18,
41,
77,
57,
16811,
42,
32304,
3483,
56,
55,
49,
2611,
54,
23266,
57,
34,
19313,
28425,
36,
57,
49,
18,
41,
3617,
7752,
50,
14529,
11215,
53,
10724,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
10526,
53,
39,
11215,
5892,
40692,
40,
70,
38475,
3829,
5064,
45,
48,
11215,
2290,
57,
18,
44,
70,
52,
16,
32,
48,
50,
21713,
82,
57,
72,
15766,
65,
1959,
84,
10008,
41,
258,
16811,
51,
48,
71,
7112,
57,
48397,
88,
66,
18,
48,
70,
52,
17,
41133,
5064,
45,
40842,
54,
53,
85,
8482,
19313,
34970,
20,
14887,
54,
20,
365,
16811,
55,
65,
1959,
74,
948,
19313,
10526,
71,
14887,
54,
20,
5948,
50,
14529,
65,
18,
67,
23160,
38,
86,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
32,
2640,
37094,
1229,
77,
10025,
53,
88,
14529,
65,
17,
52,
70,
52,
16,
32,
2937,
38,
24,
36299,
9861,
89,
67,
37094,
88,
10008,
24831,
65,
38,
87,
89,
5064,
27605,
28425,
36,
27143,
53,
83,
56,
76,
24,
82,
57,
41275,
70,
37280,
53,
74,
67,
1959,
85,
57,
36905,
70,
52,
16,
1921,
9693,
53,
84,
57,
18,
41,
20,
5064,
57,
71,
65,
38,
87,
293,
16811,
6849,
75,
47858,
8264,
2290,
57,
9861,
71,
8482,
33,
39,
11215,
2290,
57,
38,
2290,
57,
88,
4462,
65,
17,
45,
81,
5064,
22125,
10526,
79,
42,
57,
18564,
75,
57,
9861,
3099,
34,
19313,
65,
54,
75,
15,
64,
22923,
57,
18564,
18,
65,
1959,
74,
948,
19313,
10526,
67,
42,
67,
54,
42372,
16309,
33,
48,
57,
76,
53,
79,
57,
76,
57,
75,
979,
2749,
67,
55,
33018,
948,
19313,
10526,
23264,
56,
54,
28781,
10008,
24,
88,
65,
18,
57,
40842,
38,
87,
75,
5064,
8035,
48,
48,
24,
26708,
54,
28781,
5064,
3629,
31522,
41,
79,
948,
19313,
28425,
8905,
35990,
53,
85,
40,
1677,
71,
31522,
41,
40842,
38,
87,
85,
5064,
45,
4093,
15,
87,
40842,
54,
53,
430,
54,
87,
84,
5064,
45,
48,
37,
15,
87,
30094,
17184,
82,
57,
50,
2749,
56,
55,
45,
79,
8482,
19313,
67,
21713,
15,
57,
16811,
48,
56,
55,
50123,
35,
486,
71,
56,
17,
28781,
31522,
41,
79,
56,
17,
18519,
979,
19313,
10526,
49,
12805,
54,
87,
3099,
1959,
76,
57,
72,
12473,
64,
54,
67,
2616,
54,
20,
89,
5064,
22125,
34970,
24,
12805,
54,
42372,
56,
77,
52,
70,
48,
18,
41,
75,
57,
54,
45213,
52,
16,
8643,
54,
41133,
56,
17,
18519,
66,
18,
49,
75,
979,
19313,
52,
25189,
12805,
54,
20,
88,
40692,
45,
71,
5064,
7792,
40,
486,
73,
56,
55,
41,
15,
64,
39,
53,
88,
41596,
41,
16,
11215,
20,
293,
16811,
31212,
54,
34223,
948,
15766,
57,
54,
15,
70,
52,
16,
10262,
48,
17,
37,
544,
54,
20,
89,
44958,
16,
73,
56,
55,
41,
15,
64,
39,
53,
88,
41596,
41,
16,
11215,
20,
293,
16811,
31212,
54,
34223,
948,
15766,
57,
54,
16,
28435,
4029,
71,
65,
34,
19313,
34970,
16,
12805,
17,
45,
85,
20475,
20,
23160,
38,
86,
70,
52,
16,
41,
2749,
74,
16,
73,
57,
18,
41,
31298,
38,
1130,
52,
15,
8808,
54,
7278,
65,
37094,
5173,
38,
24,
84,
40,
3109,
3099,
17,
52,
70,
52,
16,
41,
12473,
52,
16,
85,
9374,
38576,
20475,
36,
70,
49,
38022,
70,
51,
18,
41,
85,
5064,
45,
48,
7206,
16,
28435,
77,
41,
85,
10008,
41,
258,
16811,
51,
34970,
24,
45,
65,
18,
41,
88,
1525,
19313,
67,
39,
41,
71,
20475,
48,
70,
52,
15,
4061,
34551,
6420,
9374,
48,
70,
49,
9861,
71,
56,
36802,
85,
5064,
45,
48,
36,
74,
16,
20306,
54,
1120,
5064,
38576,
65,
48397,
1416,
21713,
79,
948,
19313,
10526,
41,
45,
67,
34,
19,
70,
52,
17,
41133,
10008,
746,
56,
17,
75,
463,
38,
23,
70,
52,
16,
2969,
51,
76,
53,
18,
10008,
41,
3972,
54,
67,
375,
38,
24,
84,
5064,
45,
5222,
52,
24,
73,
57,
48397,
549,
88,
33,
7407,
54,
20,
75,
948,
33,
6849,
75,
41,
12473,
16,
33,
71,
65,
38,
24,
83,
56,
55,
40,
70,
34551,
6420,
9374,
49,
3099,
54,
19,
70,
52,
16,
1503,
7340,
37,
15,
66,
4029,
6592,
18,
44,
70,
7340,
24,
79,
9374,
48,
70,
52,
16,
1404,
7340,
57,
5031,
54,
57,
76,
40692,
40,
70,
48,
4029,
77,
5064,
45,
16,
979,
19313,
52,
10910,
48,
64,
55,
45,
83,
1525,
19313,
48,
71,
33,
48,
65,
39,
53,
83,
56,
37643,
83,
49,
55,
53,
88,
57,
54,
400,
5064,
45,
48,
35,
44526,
6862,
54,
1120,
10008,
1157,
57,
18,
52,
70,
52,
16,
1404,
7340,
24,
5173,
38,
24,
82,
16309,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
8322,
33,
48,
11215,
37,
79,
11215,
297,
40,
1677,
88,
57,
54,
53,
81,
5064,
41,
75,
57,
39,
67,
85,
65,
17,
49,
89,
5064,
45,
48,
10008,
53,
16706,
33,
48,
11215,
37,
79,
11215,
297,
40,
1677,
71,
65,
55,
33,
10782,
76,
6420,
20475,
48,
87,
52,
39,
41,
3099,
55,
41,
79,
57,
50,
14529,
11215,
53,
10724,
4462,
57,
18564,
18,
65,
1959,
74,
948,
19313,
9598,
33,
39,
65,
17,
87,
74,
10008,
41,
21282,
54,
57,
76,
948,
2749,
57,
48397,
6592,
34,
14529,
56,
54,
16,
86,
57,
24142,
50,
57,
54,
57,
16,
57,
17,
6780,
5064,
45,
5222,
16,
41,
79,
56,
17,
12337,
11215,
49,
14969,
1731,
70,
49,
18,
41,
20306,
76,
52,
70,
52,
16,
32,
48,
3118,
53,
89,
66,
17,
75,
71,
8482,
33,
39,
67,
54,
87,
6592,
34,
19313,
10526,
45,
9936,
18564,
32812,
37094,
72,
56,
29767,
81,
10008,
41,
16,
67,
17184,
75,
5064,
45,
48,
35,
53,
45,
71,
65,
41275,
70,
7340,
24,
79,
9374,
48,
70,
52,
16,
32,
2606,
17,
37,
21282,
38,
24,
84,
5064,
45,
75,
16309,
19313,
28425,
2767,
52,
17,
37,
8671,
54,
23266,
19071,
84,
5064,
49,
258,
54,
87,
85,
979,
19313,
10526,
79,
9936,
54,
1157,
57,
54,
86,
70,
9598,
19,
70,
53,
21713,
20,
65,
38,
24,
88,
5064,
45,
48,
40,
1677,
71,
56,
4029,
1229,
86,
24,
9936,
54,
19,
70,
48,
17,
87,
23160,
54,
53,
463,
38022,
70,
52,
15,
23820,
52,
17,
41133,
40,
1677,
82,
57,
54,
16,
75,
9374,
49,
75,
5064,
7792,
40,
1925,
40,
65,
17,
42372,
57,
21713,
20,
948,
33,
33484,
54,
1120,
56,
54,
25404,
5064,
46987,
56,
54,
7278,
40692,
41,
89,
42,
48,
87,
9936,
54,
19,
70,
46747,
42372,
321,
23,
70,
52,
15,
40,
54,
52,
17,
41133,
40,
3109,
16,
64,
37643,
70,
37280,
53,
89,
40692,
41,
17,
65,
17,
306,
5064,
8035,
48,
48,
16,
9936,
54,
19,
70,
51,
1495,
85,
57,
77,
41,
75,
5064,
45,
4093,
16,
45,
75,
56,
29767,
11400,
54,
57,
76,
5064,
45,
5222,
43221,
40842,
39,
57,
75,
979,
19313,
67,
39,
41,
71,
20475,
48,
70,
52,
15,
2043,
52,
17,
7278,
36020,
53,
5173,
1959,
85,
57,
34,
12261,
56,
54,
28781,
5064,
8035,
48,
48,
24,
51,
65,
1495,
85,
65,
8845,
70,
48,
1959,
71,
66,
18,
48,
70,
52,
15,
4663,
52,
33551,
67,
38,
1130,
48,
17,
37,
88,
65,
39,
34153,
56,
54,
48,
70,
52,
15,
2043,
52,
18,
38576,
20475,
49,
14751,
17,
13655,
50,
9861,
6592,
17,
53,
20,
5064,
8035,
48,
49,
11251,
67,
54,
34985,
979,
33,
48,
64,
54,
20,
75,
5064,
33,
6862,
54,
1120,
5064,
45,
48,
9527,
45,
16,
57,
17,
37,
88,
65,
38,
24,
71,
57,
72,
4462,
64,
18564,
77,
57,
16811,
51,
52,
2348,
51,
67,
54,
20,
89,
40692,
48,
70,
52,
15,
23852,
53,
21713,
672,
17,
52,
70,
52,
16,
41,
12473,
10913,
16,
11215,
87,
85,
56,
17,
45213,
35990,
6732,
57,
16811,
51,
28425,
3620,
53,
76,
41133,
38311,
71,
65,
54,
16,
75,
5064,
45,
48,
37094,
25404,
66,
18,
49,
39346,
18,
41,
15,
30976,
53,
6413,
54,
24,
84,
40,
3109,
71,
20475,
49,
79,
20475,
66,
70,
52,
15,
4061,
53,
17,
7278,
57,
37094,
88,
5064,
41,
71,
20475,
2949,
5064,
45,
48,
36,
335,
85,
65,
17,
49,
14969,
1731,
70,
48,
77,
41,
79,
57,
38,
25404,
5064,
8035,
48,
49,
53,
88,
26903,
56,
87,
4535,
36287,
26903,
56,
87,
45,
70,
48,
87,
12740,
70,
16,
26903,
56,
87,
45,
86,
48,
87,
12740,
46265,
33,
7206,
86,
2394,
10744,
44,
86,
44,
17,
13752,
70,
35504,
73,
36,
20,
26903,
56,
88,
44,
2390,
17,
44,
73,
1961,
45,
73,
40,
88,
1404,
52,
3620,
9328,
86,
45,
86,
36,
17,
26903,
56,
88,
45,
2390,
17,
44,
73,
8322,
45,
73,
40,
17,
26903,
56,
88,
45,
86,
44,
17,
44,
73,
70,
35504,
73,
44,
15,
26903,
56,
88,
46,
48,
44,
17,
44,
89,
2885,
45,
73,
44,
87,
26903,
56,
89,
44,
70,
44,
17,
44,
89,
12740,
45,
73,
44,
16,
1404,
66,
35504,
73,
44,
18,
26903,
56,
89,
46,
2390,
17,
44,
89,
74,
35504,
73,
48,
86,
1404,
70,
35504,
73,
48,
87,
26903,
56,
15,
44,
70,
44,
17,
8575,
12740,
45,
73,
48,
15,
26903,
56,
15,
45,
48,
44,
17,
8575,
56,
35504,
73,
48,
19,
26903,
56,
16,
44,
2390,
17,
11251,
1961,
45,
73,
52,
88,
26903,
66,
87,
44,
86,
44,
17,
11251,
48,
35504,
73,
52,
16,
26903,
56,
16,
45,
70,
48,
87,
13752,
44,
17,
26903,
56,
16,
45,
86,
48,
87,
13752,
44,
19,
26903,
56,
16,
46,
48,
44,
17,
45,
73,
2885,
45,
73,
56,
87,
26903,
56,
17,
44,
70,
44,
17,
45,
73,
12740,
45,
73,
56,
16,
26903,
56,
17,
45,
70,
44,
17,
45,
48055,
35504,
73,
56,
19,
26903,
56,
17,
46,
48,
44,
17,
45,
89,
2885,
45,
48055,
87,
26903,
56,
18,
44,
70,
44,
17,
45,
89,
8322,
45,
48055,
15,
26903,
56,
18,
45,
70,
44,
17,
45,
89,
66,
35504,
48055,
19,
26903,
56,
18,
46,
48,
44,
17,
3727,
2885,
45,
73,
70,
87,
26903,
56,
19,
44,
86,
44,
17,
3727,
2389,
45,
73,
70,
15,
26903,
56,
19,
45,
48,
44,
17,
33076,
35504,
73,
70,
18,
26903,
56,
19,
46,
2390,
17,
2394,
2885,
45,
73,
74,
87,
26903,
56,
20,
44,
70,
44,
17,
2394,
48,
35504,
73,
74,
16,
26903,
56,
20,
45,
70,
44,
17,
2394,
66,
35504,
73,
74,
20,
26903,
66,
86,
44,
2390,
18,
12740,
1961,
45,
89,
42012,
26903,
66,
86,
44,
86,
44,
18,
12740,
48,
35504,
89,
32,
16,
26903,
66,
86,
45,
70,
44,
18,
12740,
66,
35504,
89,
32,
19,
26903,
66,
86,
46,
48,
44,
18,
13752,
1961,
45,
89,
36287,
26903,
66,
87,
45,
2390,
18,
13752,
8322,
45,
89,
36,
17,
26903,
66,
87,
46,
2390,
18,
44,
73,
2885,
45,
89,
40,
87,
26903,
948,
45,
2390,
18,
44,
73,
8322,
45,
89,
40,
17,
26903,
948,
46,
2390,
18,
44,
89,
2885,
45,
89,
44,
87,
33,
7206,
88,
44,
89,
52,
3620,
25621,
89,
45,
70,
44,
18,
44,
89,
40,
15039,
86,
45,
88,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
88,
35,
87,
33,
74,
36,
19499,
68,
33,
89,
36,
70,
51,
4029,
2616,
41275,
3955,
72,
8202,
64,
54,
67,
375,
39,
8895,
3666,
8202,
64,
54,
67,
375,
39,
23678,
34,
8202,
64,
54,
67,
375,
36905,
20913,
8202,
64,
54,
67,
375,
39,
23678,
72,
8202,
64,
54,
67,
375,
39,
23678,
88,
8202,
64,
54,
67,
375,
39,
8895,
4503,
8202,
64,
54,
67,
375,
39,
8895,
2640,
8202,
64,
54,
67,
375,
36905,
50229,
5603,
70,
51,
4029,
2616,
17184,
89,
4177,
3109,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
41541,
8202,
64,
54,
67,
375,
36905,
41,
13752,
44,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
8035,
8202,
64,
54,
67,
375,
36905,
50229,
9936,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
4503,
8202,
64,
54,
67,
375,
36905,
41,
13752,
10025,
51,
4029,
2616,
17184,
89,
4177,
40,
86,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
5653,
8202,
64,
54,
67,
375,
36905,
50229,
73,
40,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
89,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
7792,
8202,
64,
54,
67,
375,
36905,
50229,
73,
52,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
17,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
45,
88,
8202,
64,
54,
67,
375,
36905,
50229,
73,
1130,
51,
4029,
2616,
17184,
89,
4177,
40,
20,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
89,
9655,
8202,
64,
54,
67,
375,
36905,
53,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
48,
81,
31554,
20,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
34388,
57,
20185,
89,
35,
86,
23,
54,
15199,
23,
15199,
74,
14,
43021,
2390,
85,
3270,
11584,
39,
86,
3528,
51,
14,
34,
48,
42012,
14,
77,
16,
40,
71,
74,
37,
70,
4426,
35,
87,
2969,
37,
70,
56,
69,
33,
17,
12993,
5631,
8924,
64,
17,
53,
20,
66,
87,
23,
30501,
48,
57,
17,
56,
54,
87,
16,
40692,
45,
74,
36,
19499,
6500,
15,
45,
71,
65,
55,
33,
79,
20475,
66,
70,
56,
54,
20,
74,
40,
3109,
85,
57,
38,
26059,
20475,
66,
4694,
37094,
71,
31522,
45,
15,
40,
1677,
71,
66,
18,
31273,
57,
16811,
36609,
18,
53,
88,
66,
87,
57,
47,
67,
38,
18519,
979,
19499,
65,
18,
53,
88,
948,
24,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
8264,
41,
85,
56,
55,
48,
70,
51,
21713,
16,
20475,
2949,
5064,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
1229,
87,
8924,
6158,
33,
4535,
36,
89,
1404,
52,
15039,
86,
11682,
57,
17,
32656,
57,
17,
49,
74,
10262,
36,
5760,
87,
56,
3398,
86,
70,
37,
4177,
70,
85,
13752,
74,
85,
44,
73,
31554,
45,
17,
49,
74,
10262,
4061,
16412,
23,
54,
10910,
23,
39,
57,
17,
48,
48,
10913,
19,
39,
5653,
8202,
64,
54,
67,
375,
32,
1360,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
34586,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
16,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
17,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
19,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
70,
20,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
9655,
8202,
64,
54,
67,
375,
36905,
50229,
9328,
70,
51,
4029,
2616,
17184,
89,
4177,
36287,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
3666,
8202,
64,
54,
67,
375,
36905,
41,
13752,
48,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
16,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
34153,
8202,
64,
54,
67,
375,
36905,
41,
13752,
66,
70,
51,
4029,
2616,
17184,
89,
4177,
36,
19,
10008,
20,
79,
57,
17,
71,
15,
66,
43021,
87,
2640,
8202,
64,
54,
67,
375,
36905,
50229,
73,
10262,
51,
4029,
2616,
17184,
89,
4177,
40,
87,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
41541,
8202,
64,
54,
67,
375,
36905,
50229,
73,
44,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
15,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
8035,
8202,
64,
54,
67,
375,
36905,
50229,
73,
56,
70,
51,
4029,
2616,
17184,
89,
4177,
40,
18,
10008,
20,
79,
57,
17,
71,
15,
66,
86,
2584,
4503,
8202,
64,
54,
67,
375,
36905,
50229,
73,
10025,
51,
4029,
2616,
17184,
89,
4177,
44,
86,
10008,
20,
79,
57,
17,
71,
15,
66,
87,
52,
68,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
9132,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
87,
56,
33,
57,
76,
48,
8141,
86,
23,
48,
35,
87,
56,
3398,
16993,
77,
57,
10761,
74,
34892,
19767,
86,
23,
54,
11012,
23,
23199,
74,
14,
43021,
2390,
85,
3270,
11584,
39,
86,
7340,
14242,
1722,
84,
33707,
3132,
48,
70,
69,
34,
70,
9865,
39,
86,
56,
3398,
71,
23,
41,
10262,
36,
69,
23155,
56,
3838,
44817,
76,
55,
3046,
9598,
38,
48,
45607,
31212,
42668,
48,
38,
74,
1921,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
53,
12805,
55,
33,
41,
65,
48397,
77,
57,
52,
25404,
20475,
53,
88,
56,
55,
49,
85,
979,
20,
71,
66,
18,
33,
19,
47,
2481,
71,
66,
37,
24,
82,
40692,
57,
23160,
35,
16,
37,
9374,
49,
75,
31522,
3886,
64,
55,
45,
75,
41,
76,
16,
71,
66,
37,
24,
79,
57,
35,
15,
86,
41,
76,
37,
88,
66,
4029,
17,
56,
54,
26152,
57,
21713,
15,
57,
51,
3023,
43,
89,
36,
20,
43,
89,
40,
86,
13752,
66,
2022,
4029,
2616,
17184,
89,
47,
9328,
76,
11215,
20,
74,
47,
9328,
86,
12740,
44,
16,
13752,
70,
86,
13752,
52,
9132,
54,
20,
30094,
37,
3829,
68,
55,
3629,
47,
5603,
9132,
54,
20,
30094,
37,
24,
73,
56,
55,
49,
75,
57,
1959,
5948,
51,
15,
86,
34892,
9865,
35,
17,
48,
45607,
31212,
42668,
48,
10744,
5673,
36,
86,
35,
38,
20,
85,
35990,
53,
77,
57,
54,
20,
74,
43,
77,
38374,
57,
17,
48,
8141,
48,
23,
53,
10262,
36,
86,
33,
17184,
5173,
54,
53,
74,
32,
73,
48,
47,
57,
17513,
8141,
70,
8905,
57,
17513,
8141,
70,
8905,
57,
17513,
34,
57,
70,
24,
74,
37,
1130,
23199,
48,
23,
48,
57,
38,
48,
54,
4760,
48,
23199,
86,
23,
42668,
70,
1532,
8141,
52,
41,
4503,
23,
87,
2640,
23,
88,
44,
7206,
18,
57,
38,
48,
4093,
32,
24,
74,
37,
70,
2149,
23155,
23,
48,
57,
38,
48,
54,
4760,
48,
4093,
48,
23,
42668,
70,
48,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
14887,
38,
48,
44175,
70,
24,
74,
37,
70,
25241,
48,
23,
42668,
70,
56,
69,
33,
48,
44947,
48,
20418,
19,
42,
18,
69,
15922,
33,
23,
11012,
70,
32,
2348,
38,
36056,
3270,
48,
40,
39,
86,
56,
3398,
76,
49,
74,
32,
48055,
47,
57,
17513,
9273,
70,
86,
47,
7156,
48,
48,
37,
48,
74,
12564,
17,
23266,
57,
29767,
15,
5064,
41,
75,
9374,
38576,
65,
34,
19499,
68,
55,
3629,
33,
15,
41,
85,
56,
55,
49,
79,
20475,
66,
41275,
17,
37,
23047,
38,
2290,
57,
1929,
22348,
54,
75,
325,
53,
53,
89,
57,
49,
41,
37,
66,
55,
53,
44601,
18,
46987,
56,
54,
2290,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
24723,
18,
41,
20306,
55,
10262,
48,
17,
37,
23047,
38,
2290,
57,
86,
24,
40,
65,
1959,
81,
5064,
53,
86,
40,
1677,
71,
65,
55,
33,
79,
20475,
66,
6535,
38,
24,
74,
57,
17,
2290,
57,
86,
20,
50,
57,
54,
16,
20306,
38022,
70,
48,
17,
37,
23047,
38,
2290,
57,
87,
52,
41,
3838,
48,
87,
44,
7206,
86,
6158,
15766,
86,
48,
87,
44,
7206,
17,
1404,
40,
3620,
5603,
87,
45,
48,
48,
87,
44,
5631,
19,
33,
7206,
86,
13752,
10917,
42,
86,
43421,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
37,
70,
37,
76,
57,
20185,
3727,
87,
2969,
37,
1130,
69,
34,
86,
7340,
53,
76,
37,
21282,
54,
52,
87,
39,
1383,
37,
12473,
7100,
9328,
69,
33,
17,
12993,
42955,
34388,
36,
19499,
39,
7414,
45,
23160,
37094,
73,
67,
34,
14529,
56,
54,
16,
10247,
54,
20,
77,
10008,
53,
24954,
54,
75,
86,
32304,
2390,
47920,
56,
85,
34551,
3829,
65,
18,
33308,
2481,
75,
33,
10913,
75,
9374,
48,
41697,
37094,
463,
34,
20866,
20475,
87,
20,
33,
16,
46987,
56,
54,
7278,
40692,
3955,
53,
39,
41,
3099,
54,
87,
75,
979,
20866,
20475,
87,
20,
35,
13024,
5173,
29767,
81,
43,
16,
27159,
38432,
24,
54,
56,
54,
19,
44526,
86,
36,
86,
32,
48055,
16,
32,
73,
34586,
32,
48055,
17,
32,
48055,
15,
32,
73,
70,
18,
32,
48055,
20,
4851,
82,
11012,
17,
32656,
57,
17,
32656,
57,
17,
34388,
34892,
4061,
35,
87,
2969,
37,
70,
1532,
42955,
34388,
36,
19499,
2389,
75,
46987,
56,
54,
7278,
40692,
40,
70,
35990,
53,
84,
57,
18,
15450,
14529,
19,
70,
13752,
52,
8905,
72,
42012,
5673,
48,
10,
2389,
44,
86,
14529,
19,
70,
45,
5631,
8905,
72,
32,
16,
5673,
48,
10,
2389,
56,
86,
14529,
19,
70,
45,
89,
10116,
8141,
20,
52,
11215,
37,
40842,
37094,
88,
40,
3109,
23160,
9132,
15,
64,
32,
48,
10,
14114,
16,
14529,
19,
70,
44,
73,
32,
8905,
72,
26903,
5673,
48,
10,
2389,
48,
86,
14529,
19,
70,
45,
5603,
8905,
72,
32,
17,
5673,
48,
10,
2389,
66,
86,
4851,
82,
9697,
38,
32656,
57,
17,
32656,
57,
17,
32656,
57,
38,
48,
8220,
70,
24,
74,
37,
70,
25241,
48,
24,
74,
37,
70,
25241,
48,
23,
42668,
70,
40,
68,
33,
16,
57,
14751,
17,
8019,
37094,
78,
57,
38,
48,
34,
4339,
23,
54,
10910,
19,
33186,
54,
20,
84,
40692,
41,
375,
38,
16,
82,
3856,
52,
3185,
38,
57,
85,
65,
18,
49,
44601,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
9374,
49,
3099,
54,
20,
75,
979,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
979,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
1959,
82,
43,
54,
16,
74,
43,
9328,
88,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
312,
37094,
19,
67,
34,
16,
71,
65,
9861,
46803,
73,
519,
56,
17,
53,
463,
37094,
88,
46,
88,
40,
10,
6968,
2528,
57,
88,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
3829,
43,
48397,
88,
65,
18,
979,
40,
17184,
30094,
38,
87,
75,
3705,
41,
32812,
18,
646,
3528,
37,
88,
11215,
6052,
40,
72,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
2022,
24369,
40692,
1026,
56,
55,
41,
88,
65,
18,
66,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
3546,
7414,
31522,
41,
85,
9892,
40,
70,
43,
89,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
41,
20306,
34,
16,
11400,
54,
20,
81,
948,
33,
86,
56,
54,
67,
23160,
38,
40211,
18,
41541,
47,
73,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
49,
75,
57,
76,
37,
16,
65,
39,
4507,
56,
55,
45,
732,
25690,
10,
5188,
24,
24723,
4090,
23,
43,
17,
36,
10,
40,
39,
86,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
52,
17,
53,
71,
11215,
2949,
43,
76,
37,
89,
66,
39,
12397,
47,
74,
32819,
6849,
33,
41,
51,
74,
66,
70,
10917,
20,
36,
40,
3109,
46437,
67,
41,
51,
74,
66,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
57,
37643,
85,
52,
39,
41,
85,
57,
18,
41,
71,
65,
55,
32819,
20475,
49,
36609,
18,
53,
88,
948,
20,
71,
66,
18,
33,
19,
40,
73,
20,
33,
48,
16,
49,
41697,
41582,
2937,
31667,
51,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
17513,
18,
49,
30094,
4029,
15,
64,
54,
53,
89,
43,
15,
18519,
56,
55,
41,
89,
67,
1677,
71,
66,
18,
31273,
57,
13024,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
47,
14636,
37,
48,
53,
41,
6849,
34,
14529,
48,
53,
45,
3843,
19684,
23,
43,
17,
36,
10,
40,
39,
86,
70,
47,
5222,
83,
43,
4090,
70,
2149,
10262,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
26059,
57,
77,
49,
73,
56,
55,
41,
74,
948,
24,
23303,
54,
57,
15,
56,
17,
37,
88,
57,
39,
45,
71,
65,
38022,
84,
56,
55,
45,
732,
25690,
10,
49,
15,
75,
38,
15922,
14529,
48,
53,
41,
19684,
89,
86,
85,
56,
51,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
15,
83,
38729,
10262,
47,
5222,
83,
43,
4090,
70,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
16309,
33,
420,
76,
53,
76,
3705,
37882,
67,
55,
45,
15,
65,
2481,
75,
31522,
44,
85,
51,
76,
53,
18,
48,
18,
53,
89,
67,
38,
24,
83,
40692,
40,
84,
56,
55,
45,
732,
25690,
10,
48,
16,
41,
37,
48,
13024,
37,
10008,
26009,
48,
2931,
36392,
75,
48,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
71,
38729,
2953,
27734,
2780,
43,
17,
49,
79,
28241,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
41,
20306,
34,
16,
11400,
54,
20,
81,
948,
33,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
72,
47,
73,
1929,
6561,
15,
70,
6968,
36,
22296,
1495,
73,
65,
9861,
73,
1031,
15,
1789,
37,
17,
56,
55,
45,
48055,
4029,
16993,
35,
79,
17,
56,
55,
40,
70,
31522,
23266,
57,
37643,
24,
67,
17,
2290,
57,
38,
6052,
43,
76,
24,
86,
57,
54,
19,
78,
41,
88,
6359,
2149,
67,
5173,
54,
87,
75,
948,
6359,
41,
18,
26059,
57,
39,
15450,
47,
9936,
86,
9655,
86,
4908,
37094,
79,
57,
17,
71,
15,
11571,
48,
86,
9655,
86,
36484,
17,
45,
88,
65,
17,
34223,
56,
76,
37,
88,
26691,
15,
87,
5639,
3886,
40692,
45,
79,
368,
37,
571,
38022,
24,
44,
3351,
79,
46,
88,
3886,
40692,
49,
16,
11215,
19,
70,
57,
76,
37,
1416,
17,
52,
22,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
70,
3528,
12114,
57,
54,
56,
24,
3546,
746,
36020,
37,
89,
56,
18,
41,
14751,
41275,
21,
36020,
24,
79,
57,
34,
70,
86,
42176,
13396,
38729,
15,
83,
38729,
32,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
23,
14,
66,
21713,
77,
57,
53,
24,
79,
57,
35,
15,
88,
13752,
44,
86,
9655,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
38729,
32,
23,
66,
18,
46987,
65,
1495,
77,
3646,
15199,
52,
591,
70,
47920,
53,
13599,
15996,
70,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
1959,
463,
21713,
73,
67,
37,
53,
89,
43,
76,
37,
89,
66,
39,
12397,
38729,
32,
23,
66,
18,
46987,
65,
1495,
77,
47,
74,
45,
11571,
75,
27912,
48,
16,
48,
70,
53,
15996,
70,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
24,
48,
66,
4029,
17,
56,
29767,
20,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
36820,
32178,
53,
74,
26009,
54,
16811,
48,
51,
15,
87,
41,
48,
16,
10025,
5662,
24,
89,
67,
39,
41,
85,
20475,
66,
10,
2389,
86,
85,
56,
51,
2780,
43,
17,
49,
79,
28241,
19,
7792,
73,
87,
44070,
7355,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
76,
6052,
40,
73,
2780,
66,
18,
33,
71,
8482,
33,
79,
57,
35,
15,
72,
35990,
10547,
57,
54,
49345,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
72,
56,
1959,
36299,
18,
40,
21,
40,
39,
4598,
64,
55,
49,
75,
46,
88,
33,
2022,
9031,
43,
55,
45,
79,
368,
52,
21,
14114,
88,
66,
39,
70,
22,
40,
73,
20,
43832,
9031,
56,
29767,
15,
5064,
53,
89,
46,
72,
31554,
27734,
70,
86,
9655,
405,
8575,
48,
83,
45,
89,
40,
18,
47549,
19,
46,
73,
23155,
56,
54,
15,
70,
43,
4090,
17,
46,
73,
23155,
66,
38,
15,
70,
7340,
37,
6592,
54,
57,
79,
56,
88,
19499,
64,
54,
16,
75,
40,
1925,
48,
15922,
10025,
5662,
24,
89,
66,
21713,
84,
38729,
32,
23,
1797,
15,
83,
25241,
23,
66,
18,
33,
71,
8482,
33,
89,
67,
39,
7278,
57,
51,
15,
72,
56,
1959,
36299,
18,
40,
21,
5064,
4598,
64,
55,
49,
75,
46,
88,
33,
2022,
9031,
43,
55,
45,
79,
368,
52,
21,
14114,
88,
66,
39,
70,
22,
40,
72,
33,
79,
57,
35,
15,
72,
35990,
10547,
57,
54,
49345,
40,
73,
20,
46,
57,
54,
53,
74,
10008,
18519,
65,
7801,
14,
40,
1677,
71,
65,
38,
86,
21287,
37643,
70,
4503,
33,
9148,
74,
15,
84,
40,
17184,
85,
2389,
56,
70,
9598,
20,
45,
32304,
12473,
56,
54,
75,
325,
4090,
19,
12740,
2953,
8575,
48,
15,
27734,
948,
45,
89,
52,
70,
43959,
36299,
18,
45,
75,
57,
34,
14529,
64,
39,
41,
14751,
18,
49,
83,
56,
37643,
70,
49,
21713,
20,
5639,
8202,
40692,
66,
70,
17947,
53,
71,
31522,
44,
70,
49,
21713,
20,
5639,
33,
71,
20475,
48,
70,
43490,
12337,
65,
16762,
89,
57,
17,
75,
17,
64,
54,
20,
77,
42,
5080,
28435,
18,
33,
71,
50007,
19,
70,
2149,
15,
83,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
76,
6052,
5653,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
70,
56,
1959,
82,
43,
55,
45,
83,
43,
9328,
88,
16284,
28435,
39,
306,
64,
54,
67,
375,
36905,
72,
47,
74,
45,
28435,
39,
306,
64,
54,
67,
375,
34,
5840,
56,
1959,
732,
33758,
70,
44,
73,
31554,
45,
88,
57,
84,
56,
77,
45,
86,
46,
88,
19313,
67,
21713,
15,
57,
16811,
85,
57,
72,
14529,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
20,
73,
65,
39,
53,
74,
57,
52,
57,
85,
65,
18,
49,
75,
979,
40,
10,
41,
76,
20,
291,
18,
32,
22,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
2022,
24369,
40692,
40,
10,
57,
33,
70,
33,
11473,
20,
69,
55,
15,
45,
85,
9374,
46987,
65,
17,
87,
89,
37280,
53,
24954,
54,
306,
57,
44526,
28435,
18,
7397,
56,
29767,
81,
50,
17,
53,
20,
55,
1507,
54,
10262,
52,
16,
56,
18,
31273,
44,
7206,
32812,
48397,
40842,
74,
45,
85,
9374,
49,
75,
9374,
48,
74,
35990,
53,
9132,
36,
16,
75,
9374,
44526,
57,
39,
57,
71,
20475,
45,
75,
49,
4029,
21282,
37094,
88,
41,
38,
2949,
64,
15,
37,
73,
56,
17,
53,
89,
66,
17,
8019,
38,
36820,
10503,
45,
15,
65,
5631,
87,
41,
38,
16,
3099,
54,
20,
43832,
9031,
57,
54,
1120,
41,
3109,
75,
57,
77,
49,
37371,
54,
4349,
48,
18564,
17,
56,
54,
20,
73,
57,
52,
57,
40842,
17184,
75,
979,
49,
6592,
38,
83,
41,
66,
16,
3886,
57,
54,
16,
30094,
54,
16,
75,
258,
84,
14,
13752,
35,
45448,
23820,
5105,
11163,
79,
377,
18,
6413,
42176,
15,
84,
16,
3792,
1137,
43833,
43,
79,
23,
79,
52,
72,
17,
66,
23,
70,
855,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
35353,
1137,
25633,
1298,
366,
27310,
486,
2713,
33,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
39,
312,
9612,
29268,
12417,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
31298,
77,
34,
6456,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
27722,
27271,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
24220,
1298,
366,
2718,
13,
1558,
19707,
2996,
20233,
2079,
5333,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
43,
363,
1298,
27444,
18376,
13,
1828,
1238,
29334,
4089,
3559,
2425,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
2306,
42829,
6677,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
10782,
1824,
2306,
42829,
6677,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
3163,
43171,
10430,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
14116,
3163,
43171,
10430,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
2782,
19259,
13383,
18243,
3,
1860,
75,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
9630,
11395,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
71,
1638,
25404,
34,
26129,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
71,
1638,
25404,
26453,
6030,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
25478,
37,
5540,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
17563,
49,
2470,
6030,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
17563,
21111,
278,
23588,
541,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
18819,
26453,
6030,
5376,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
4653,
12609,
27313,
5376,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
4653,
12609,
47371,
7390,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
4653,
12609,
3118,
715,
2981,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
5372,
312,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
29800,
17563,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
31298,
77,
3792,
36787,
1298,
366,
9562,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
1860,
75,
34,
26129,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
1860,
75,
21111,
278,
26453,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
34168,
1157,
3,
1860,
75,
30659,
456,
83,
1298,
366,
15721,
5329,
22313,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
26453,
14957,
12393,
1298,
366,
21,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
14942,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
14157,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
25234,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
15045,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
23656,
24220,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
22417,
23656,
14617,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18347,
782,
316,
47522,
6392,
72,
408,
1298,
366,
39,
495,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
358,
891,
1721,
43,
363,
1298,
27444,
18376,
13,
1828,
22416,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
358,
891,
1721,
24220,
1298,
366,
2718,
13,
1558,
19707,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
9787,
8053,
35,
10254,
396,
14171,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
13908,
16934,
15546,
3754,
9787,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
13908,
16934,
15546,
3754,
11395,
1298,
366,
8628,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
39,
312,
9612,
29268,
1298,
366,
1415,
1821,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
3237,
24717,
15988,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
71,
1638,
25404,
26453,
6030,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
27271,
312,
1298,
366,
18,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
27271,
47522,
346,
9045,
10699,
1298,
366,
11664,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
16458,
43,
27271,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
47522,
879,
312,
1298,
366,
27326,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
47522,
879,
6030,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
19667,
12976,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
30342,
27271,
4971,
1298,
366,
47522,
879,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
27271,
27313,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
11792,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
37,
615,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
9787,
3260,
7353,
1891,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
30342,
49,
27271,
4971,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
33,
27271,
2389,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
29499,
330,
879,
2389,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
38,
672,
441,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
14942,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
14157,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
25234,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
15045,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
23656,
15460,
1298,
366,
2718,
13,
1558,
21273,
24214,
17032,
2919,
20,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
23656,
6511,
1298,
27444,
18376,
13,
1828,
1238,
1959,
2079,
17032,
3553,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
23656,
4122,
5376,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
23656,
4122,
15460,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
23656,
4122,
75,
782,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
11708,
27271,
8134,
7390,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
11708,
47522,
879,
5376,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
38,
970,
469,
27271,
5159,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
31298,
77,
9787,
25478,
6601,
15878,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
38942,
879,
31813,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
14116,
10430,
17257,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
41339,
62,
1860,
75,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
9126,
23381,
13383,
18243,
3,
1860,
75,
47522,
879,
27313,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
9126,
23381,
13383,
18243,
3,
14116,
9126,
3163,
43171,
10430,
1298,
366,
23,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
9126,
23381,
13383,
18243,
3,
1860,
75,
9126,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
9126,
23381,
13383,
18243,
3,
1860,
75,
42758,
3886,
1298,
366,
18,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
1018,
4965,
13208,
41339,
3,
31298,
77,
1662,
15182,
20850,
28809,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
71,
1638,
25404,
18819,
62,
26453,
6030,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
31298,
77,
18819,
62,
4653,
12609,
27313,
5376,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
71,
1638,
25404,
18819,
62,
34,
26129,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
18819,
62,
9630,
11395,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
31298,
77,
18819,
62,
4653,
12609,
3118,
715,
2981,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
31298,
77,
18819,
62,
17563,
49,
2470,
6030,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
31298,
77,
18819,
62,
17563,
21111,
278,
23588,
541,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
31298,
77,
18819,
62,
5372,
312,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
1860,
75,
18819,
62,
34,
26129,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
1860,
75,
18819,
62,
21111,
278,
26453,
1298,
366,
15,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
18819,
23381,
2782,
19259,
22417,
3,
1860,
75,
18819,
62,
30659,
456,
83,
1298,
366,
15721,
5329,
22313,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
8899,
11708,
3646,
2114,
3,
49675,
9237,
5376,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
486,
3,
12417,
19746,
3,
8899,
11708,
3646,
2114,
3,
49675,
9237,
11395,
1298,
13538,
198,
92,
198,
198,
505,
62,
66,
9430,
578,
62,
7353,
62,
2618,
796,
1391,
198,
220,
220,
220,
366,
47522,
879,
7390,
1298,
41423,
11,
198,
220,
220,
220,
366,
27271,
7390,
1298,
513,
11,
198,
220,
220,
220,
366,
40541,
35,
689,
1298,
352,
11,
198,
220,
220,
220,
366,
3792,
10962,
83,
1298,
6407,
11,
198,
220,
220,
220,
366,
40541,
25681,
1640,
41339,
1298,
352,
198,
92,
198,
198,
12384,
62,
11195,
62,
19509,
796,
1391,
198,
220,
220,
220,
366,
834,
20114,
3525,
51,
46095,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
20114,
3525,
1503,
38,
5883,
3525,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
1298,
12813,
86,
36,
5760,
86,
52,
41,
45,
9936,
86,
45,
89,
56,
20,
2394,
2584,
35,
17,
48,
54,
5840,
56,
5760,
87,
56,
42413,
71,
47858,
31522,
41,
30094,
76,
42388,
49,
21713,
15,
57,
4261,
14751,
18,
37000,
56,
55,
74,
9273,
30195,
19,
73,
5607,
82,
16,
23396,
34,
15,
37,
88,
66,
4029,
17,
56,
54,
87,
22348,
55,
49,
75,
33,
70,
4339,
68,
40,
14,
68,
22,
45,
48,
14887,
17513,
34,
57,
70,
23,
42668,
70,
40,
68,
37,
74,
57,
16,
67,
39,
53,
88,
57,
52,
41,
85,
65,
17,
34788,
65,
9132,
51,
67,
21713,
5173,
1137,
31298,
38,
7340,
14242,
33,
19,
73,
5607,
82,
16,
10910,
74,
37,
456,
76,
35,
17,
48,
54,
10262,
18694,
35,
87,
56,
3398,
70,
49,
420,
76,
53,
76,
19499,
16,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
16,
45,
15,
68,
54,
87,
75,
948,
24,
80,
66,
55,
53,
75,
31522,
74,
8671,
54,
74,
549,
54,
2290,
43,
76,
45,
89,
66,
17,
48,
8141,
70,
23,
42668,
70,
48,
68,
15112,
57,
16,
67,
39,
53,
88,
57,
52,
41,
85,
65,
17,
34788,
65,
9132,
37,
20475,
2200,
56,
55,
49,
75,
33,
70,
8141,
4720,
8642,
69,
45,
10080,
39,
13655,
12805,
55,
24831,
65,
55,
53,
83,
52,
18,
49,
258,
48,
40,
68,
57,
38,
48,
8141,
86,
24,
74,
37,
70,
44816,
4339,
23,
42668,
70,
48,
69,
3838,
44947,
48,
17250,
47,
18,
10277,
9598,
33,
23,
15199,
70,
4339,
68,
40,
14,
68,
22,
45,
48,
14887,
17513,
3539,
70,
8577,
16412,
23,
54,
10910,
19,
43,
55,
88,
15112,
56,
55,
38576,
48,
76,
6420,
20475,
49,
77,
57,
10761,
74,
57,
20185,
10227,
86,
23,
54,
10910,
19,
20114,
37094,
19,
67,
26830,
41,
4503,
23,
88,
45,
88,
23,
88,
44,
7206,
18,
57,
38,
48,
4093,
32,
24,
74,
37,
70,
2149,
23155,
23,
48,
35,
87,
56,
3398,
86,
57,
77,
57,
4339,
53,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
52,
68,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
9132,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
87,
56,
33,
57,
76,
48,
4093,
48,
23,
42668,
70,
1659,
10262,
44947,
48,
17250,
47,
18,
10277,
9598,
33,
23,
30195,
70,
8141,
4720,
8642,
69,
45,
10080,
39,
86,
7156,
14242,
33,
19,
73,
5607,
82,
16,
23396,
34,
486,
79,
20475,
2528,
67,
54,
16,
51,
67,
21713,
20,
10262,
36,
69,
33,
48,
40,
68,
57,
17513,
36,
57,
70,
23,
11731,
64,
44,
9148,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
54,
17213,
57,
54,
41,
40,
65,
2481,
75,
43,
15,
57,
71,
56,
17,
7278,
64,
55,
49,
79,
57,
37643,
85,
48,
18564,
17,
56,
54,
20,
73,
57,
52,
16,
71,
66,
36,
2528,
56,
54,
25404,
49,
17,
53,
84,
40692,
41,
31298,
38,
24,
88,
43,
76,
37,
89,
66,
39,
70,
14,
65,
48397,
86,
55,
17,
87,
335,
76,
23266,
5105,
53,
463,
37094,
88,
66,
39,
41,
14751,
17,
52,
2022,
48397,
86,
55,
17,
75,
74,
47,
5603,
76,
56,
55,
41,
3972,
55,
57,
71,
65,
37,
24,
74,
56,
55,
49,
75,
11571,
70,
85,
44,
73,
33967,
44,
73,
31554,
45,
88,
57,
6413,
54,
67,
375,
36905,
24,
9655,
57,
88,
20475,
48,
24,
11251,
40,
88,
3727,
52,
17,
45,
73,
48,
15,
41,
77,
53,
6413,
55,
49,
16344,
39,
75,
86,
57,
51,
15,
86,
41,
77,
53,
6413,
55,
49,
69,
56,
17,
37,
15,
57,
54,
67,
28435,
77,
74,
24,
20474,
48,
8141,
48,
24,
74,
37,
70,
49,
76,
35,
87,
8322,
1404,
6242,
5673,
87,
549,
15,
87,
75,
57,
17,
53,
84,
57,
34,
20,
39346,
9132,
74,
10262,
8905,
37,
48,
9865,
40569,
15,
31522,
53,
75,
57,
20185,
10227,
87,
56,
3398,
86,
66,
37,
87,
70,
48,
23,
65,
38,
10025,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
46987,
65,
18,
33,
32812,
18,
646,
40,
73,
19,
7792,
70,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
37094,
76,
56,
55,
53,
21282,
34,
20,
71,
66,
18,
33,
19,
40,
73,
19,
7792,
70,
74,
41,
5188,
24,
24723,
48,
15,
42,
4177,
86,
85,
56,
51,
19,
7792,
73,
86,
85,
65,
38,
74,
10,
35,
48,
78,
23,
65,
38,
10025,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
46987,
65,
18,
33,
32812,
18,
646,
40,
73,
19,
7792,
70,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
52,
17,
53,
71,
11215,
2949,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
75,
35,
10917,
16,
48,
12564,
20,
39,
10008,
13775,
34,
12261,
51,
15,
49,
7998,
52,
20,
10227,
48,
78,
41,
5662,
24,
71,
31743,
15,
42,
5662,
24,
11400,
51,
19,
7792,
73,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
36222,
48,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
48,
11215,
24,
10782,
76,
37,
23047,
15,
41133,
57,
10913,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
74,
41,
6089,
24,
53,
47920,
44,
7792,
70,
74,
41,
5662,
24,
71,
47,
73,
86,
85,
65,
38,
74,
10,
35,
48,
78,
41,
4177,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
36222,
48,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
14887,
48397,
88,
66,
18,
35257,
56,
55,
45,
15,
65,
37094,
36609,
18,
53,
88,
948,
20,
71,
66,
18,
33,
19,
40,
73,
19,
7792,
70,
74,
34382,
34653,
37,
48,
53,
41,
6849,
34,
14529,
48,
53,
45,
3843,
19684,
70,
6089,
24,
53,
52,
70,
15,
36222,
48,
74,
23,
43,
17,
36,
10,
5662,
24,
11400,
51,
20,
74,
10910,
8905,
57,
17513,
9273,
70,
7378,
57,
17513,
36,
10262,
66,
11401,
32,
23,
45607,
71,
19,
1581,
21713,
15,
56,
53,
57,
71,
65,
39,
53,
75,
49,
76,
297,
65,
38,
48,
26001,
38,
7100,
55,
5308,
35,
4261,
31298,
21713,
52,
40692,
71,
15,
49,
76,
297,
65,
38,
48,
26001,
77,
57,
71,
65,
39,
53,
44601,
87,
23,
38,
57,
17,
48,
48,
37,
48,
48,
51,
48,
17,
37,
23047,
38,
2290,
57,
88,
33,
71,
20475,
48,
70,
35990,
24,
74,
57,
17,
2290,
57,
87,
45,
14887,
48397,
88,
66,
18,
48,
70,
48,
17,
37,
89,
67,
38,
87,
75,
5064,
49,
20306,
55,
41,
89,
37,
74,
3829,
64,
37094,
88,
5064,
49,
20306,
55,
41,
89,
43,
15,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
40692,
26708,
48,
76,
24,
31298,
34,
12261,
56,
55,
53,
84,
56,
17,
1130,
37280,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1495,
89,
37,
48,
48,
12261,
48,
36,
15,
1404,
10744,
24723,
48,
81,
23155,
49,
77,
57,
17,
32656,
57,
38,
48,
4093,
48,
23,
48,
57,
4339,
53,
39,
86,
6242,
49215,
36287,
1404,
10744,
4535,
36,
16,
1404,
56,
15766,
86,
36,
19,
1404,
74,
34,
13752,
2246,
13752,
2943,
13752,
2149,
13752,
9655,
13752,
48,
34,
13752,
9598,
44,
9936,
34,
13752,
66,
34,
13752,
70,
34,
13752,
74,
24187,
73,
2246,
44,
73,
2943,
44,
73,
2149,
44,
73,
9655,
44,
73,
48,
24187,
73,
9598,
44,
73,
56,
24187,
48055,
24187,
73,
70,
24187,
73,
74,
24187,
89,
10116,
39,
86,
36,
86,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
66,
54,
12298,
57,
74,
10262,
48,
42668,
70,
40,
68,
43538,
75,
549,
76,
53,
3972,
17184,
83,
65,
25922,
68,
37,
42592,
89,
57,
29767,
15,
64,
54,
24,
84,
16284,
82,
56,
55,
45,
89,
3705,
41,
72,
56,
54,
20,
84,
40692,
1026,
66,
21713,
5173,
25690,
36484,
18,
49,
20,
65,
38022,
24,
3546,
49,
14751,
18,
37000,
56,
55,
74,
21,
20475,
24,
84,
57,
51,
13396,
31743,
15,
42,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
17,
42372,
57,
37094,
88,
3528,
87,
831,
4106,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
36,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
10008,
24,
84,
57,
11584,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
51,
1495,
75,
40,
72,
7355,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
948,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
19499,
67,
2078,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
5064,
49,
18,
1525,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
3666,
20,
80,
66,
38,
979,
40,
17184,
30094,
38,
87,
75,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
43490,
12114,
57,
54,
52,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
5064,
49,
420,
76,
53,
75,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
7792,
20,
80,
66,
38,
979,
40,
17184,
30094,
38,
87,
75,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
49,
76,
6420,
979,
40,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
49,
76,
6420,
979,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
66,
16,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
35389,
55,
57,
75,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
2022,
18,
40,
70,
57,
9861,
89,
66,
38,
87,
258,
16811,
40842,
48397,
77,
57,
16811,
35389,
55,
57,
75,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
56,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
431,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
52,
17,
75,
19,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
66,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
335,
76,
53,
84,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
2022,
18,
40,
70,
57,
9861,
89,
66,
38,
87,
258,
16811,
40842,
48397,
77,
57,
16811,
51,
40692,
57,
75,
8482,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
66,
19,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
29499,
64,
54,
67,
375,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
75,
2616,
41275,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
36222,
48,
15,
36222,
4090,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
74,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
10008,
57,
30094,
76,
52,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
10008,
20,
79,
20475,
52,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
44,
5603,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
431,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
53,
37094,
84,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
3109,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
19313,
40692,
57,
75,
8482,
40,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
87,
335,
76,
53,
84,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
36287,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
29499,
64,
54,
67,
375,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
75,
2616,
41275,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
36222,
48,
15,
36222,
48,
15,
42,
25241,
41,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
78,
23,
43,
18,
45,
75,
56,
18,
49,
40842,
1731,
10,
35,
48,
519,
34892,
5064,
35,
17,
48,
54,
10262,
19767,
87,
56,
3398,
86,
66,
37,
5431,
40,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
9031,
56,
54,
2290,
40692,
40,
72,
31743,
15,
42,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
33,
16993,
54,
34223,
43,
55,
49,
28435,
25690,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
65,
34,
16,
14969,
50,
405,
40,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
40,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
53,
31298,
39,
53,
88,
57,
50,
16,
571,
18,
70,
8326,
54,
20,
76,
1525,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
17931,
36484,
18,
49,
20,
65,
38022,
24,
3546,
57,
85,
9374,
48,
83,
57,
76,
37,
8326,
54,
87,
20,
46,
72,
2025,
52,
17,
37,
15,
64,
55,
45,
1326,
3351,
82,
16284,
16,
31522,
45,
30094,
76,
52,
22,
40,
17184,
293,
41275,
83,
56,
54,
42372,
57,
26912,
16284,
75,
9374,
49,
44601,
8457,
70,
57,
76,
24,
463,
34,
16,
4496,
55,
489,
46,
72,
26903,
57,
54,
2998,
40,
73,
20,
55,
57,
54,
87,
73,
65,
2481,
75,
40,
17184,
85,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
41,
77,
46987,
56,
18564,
75,
46,
89,
86,
6862,
17931,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2528,
56,
54,
25404,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
571,
48397,
88,
57,
17,
2290,
43,
54,
41,
20306,
17184,
85,
65,
51,
519,
44,
89,
33,
732,
35,
13396,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
24,
41,
65,
48397,
77,
57,
37643,
85,
56,
1959,
463,
37094,
463,
34,
24,
76,
57,
48397,
15,
67,
55,
41,
75,
57,
34,
24,
55,
57,
54,
87,
73,
65,
2481,
75,
17887,
16,
71,
57,
17,
52,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
40,
335,
23160,
16630,
85,
65,
54,
52,
21287,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
72,
40,
17184,
30094,
38,
87,
75,
3705,
41,
55,
57,
54,
87,
73,
65,
2481,
75,
40,
17184,
85,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
86,
47,
335,
23160,
16630,
85,
65,
54,
52,
21287,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
9132,
39,
41,
71,
57,
38022,
22,
32304,
10262,
51,
18,
53,
88,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
4908,
37643,
70,
57,
48397,
2736,
16811,
15,
1525,
33,
16,
66,
17,
52,
70,
6561,
33,
4496,
54,
16,
40842,
21713,
88,
40,
17184,
85,
3528,
41,
85,
65,
17,
34788,
20475,
66,
4908,
38,
3829,
57,
54,
87,
89,
5639,
33,
3099,
55,
41,
11400,
54,
20,
75,
40,
17184,
79,
56,
17,
83,
335,
36905,
70,
56,
54,
20,
74,
3528,
3829,
64,
37094,
88,
16284,
85,
65,
55,
33,
71,
11215,
37,
571,
38022,
36484,
17,
53,
5173,
4029,
73,
40692,
33239,
40,
6500,
21287,
76,
37,
3972,
54,
53,
15,
68,
16811,
85,
57,
72,
38374,
40692,
66,
70,
57,
76,
53,
31298,
39,
53,
88,
57,
37643,
21287,
17,
7278,
65,
23199,
72,
57,
16811,
10247,
21713,
89,
57,
54,
48,
4908,
54,
19,
70,
56,
76,
53,
15,
67,
17,
53,
75,
8482,
15199,
67,
54,
67,
16,
66,
18,
48,
70,
5653,
86,
70,
44,
73,
31554,
45,
88,
33,
71,
20475,
48,
70,
34551,
37,
88,
56,
17,
1130,
5653,
86,
70,
44,
73,
31554,
4503,
86,
4908,
54,
20,
73,
65,
39,
53,
4914,
54,
20,
77,
3528,
16,
20306,
76,
2290,
57,
88,
33,
76,
11215,
24,
83,
3528,
36,
70,
57,
76,
306,
66,
18,
48,
83,
65,
17,
56,
8671,
38,
18519,
43,
54,
16,
85,
9374,
15450,
3528,
24,
84,
43,
55,
45,
71,
65,
38022,
70,
57,
21713,
20,
948,
33,
15,
1525,
33,
71,
3528,
20,
335,
88,
3886,
65,
17,
87,
11400,
54,
20,
77,
40,
39,
26059,
20475,
49,
85,
9892,
3886,
40692,
45,
75,
31522,
57,
31298,
38,
6780,
8482,
33,
89,
40692,
41,
17,
64,
29767,
75,
32304,
19499,
64,
9861,
89,
3528,
16,
75,
56,
54,
20,
89,
40,
39,
15450,
56,
55,
48,
469,
54,
6420,
40,
39,
26059,
65,
38,
86,
70,
56,
76,
52,
70,
56,
54,
49044,
57,
16811,
15,
1525,
3886,
40692,
45,
75,
31522,
57,
75,
16284,
71,
65,
55,
33,
4496,
55,
49,
75,
948,
33,
71,
20475,
48,
22296,
38,
24,
74,
57,
17,
2290,
57,
88,
33,
4496,
55,
1130,
65,
54,
24,
463,
38,
32179,
3528,
2290,
3528,
37,
74,
36020,
41133,
56,
17,
52,
70,
57,
77,
41,
85,
65,
16811,
15,
64,
38022,
70,
56,
18,
53,
88,
11215,
53,
463,
23199,
74,
56,
55,
49,
75,
32304,
2749,
65,
1959,
81,
40,
39,
6780,
67,
55,
40,
70,
20475,
53,
19,
67,
23199,
71,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
21287,
17,
75,
15,
64,
23199,
16,
948,
2953,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
72,
19,
85,
48,
18,
53,
89,
67,
38,
24,
83,
40692,
41,
89,
43,
2713,
335,
15,
45,
16,
66,
18,
49,
85,
65,
54,
53,
88,
43,
76,
37,
89,
66,
39,
12397,
47,
76,
45,
88,
57,
48397,
15,
57,
16811,
20,
65,
18,
53,
88,
40,
39,
3886,
65,
17,
57,
40842,
38022,
4908,
37094,
88,
57,
50,
2780,
43,
17,
36,
10,
5662,
24,
86,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
70,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
86,
23047,
1238,
83,
7792,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
76,
57,
48397,
15,
67,
55,
41,
75,
43,
54,
41,
303,
25690,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2290,
57,
76,
23,
72,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
1360,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
2022,
9031,
43,
54,
57,
71,
65,
54,
75,
325,
51,
519,
41,
16,
45,
31298,
9861,
89,
57,
77,
15418,
5639,
33,
73,
67,
55,
41,
4496,
55,
57,
75,
46,
88,
33,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
44,
17,
53,
83,
46,
88,
40,
10,
49,
76,
2290,
57,
23199,
57,
65,
18,
53,
88,
5064,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
5662,
24,
78,
44,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
53,
31298,
39,
53,
88,
57,
50,
16,
571,
18,
70,
8326,
54,
16,
71,
57,
17,
52,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
83,
56,
55,
41,
2616,
54,
19,
83,
56,
76,
3829,
67,
38,
24,
83,
46,
72,
26903,
44,
32886,
19,
46,
88,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
15,
2528,
56,
54,
25404,
948,
24,
73,
65,
9031,
57,
54,
1120,
43,
17,
57,
75,
56,
55,
49,
16,
11215,
53,
74,
43,
16,
33,
76,
57,
54,
75,
76,
57,
76,
53,
88,
48,
17,
37,
544,
54,
19,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
37,
74,
36020,
53,
463,
39,
53,
88,
57,
16811,
85,
57,
72,
33,
15,
64,
38022,
70,
34551,
24,
463,
38,
12397,
40,
17184,
30094,
38,
87,
75,
3705,
47858,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
22296,
17,
56,
21287,
38,
18519,
10008,
16,
85,
9374,
15450,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
86,
3646,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
948,
33,
83,
56,
18564,
75,
40,
17184,
420,
76,
6420,
57,
17,
1130,
37280,
53,
89,
40692,
41,
17,
57,
36820,
83,
40692,
41,
79,
56,
17,
36,
36484,
39,
41,
40842,
18,
40,
21287,
38,
23,
70,
16501,
53,
325,
4090,
88,
45,
88,
86,
70,
44,
73,
31554,
45,
88,
33,
18,
64,
54,
34223,
3528,
41,
75,
3528,
37,
73,
56,
17,
53,
89,
66,
17,
8019,
38022,
22296,
1731,
21287,
38,
18519,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
22296,
1731,
70,
48,
55,
53,
358,
55,
45,
15,
14114,
84,
5064,
49,
85,
40,
39,
57,
79,
40692,
6359,
3528,
16,
85,
57,
9861,
1326,
10462,
22296,
18,
40,
70,
56,
17,
41133,
56,
17,
23266,
40,
39,
6780,
67,
55,
40,
70,
11215,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1731,
82,
40,
39,
6780,
67,
16811,
18,
64,
54,
34223,
3528,
20,
75,
57,
54,
48,
21287,
38,
23,
22296,
38,
24,
77,
3528,
75,
463,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
9132,
39,
41,
71,
57,
38022,
22,
40,
39,
53,
4496,
54,
20,
77,
40,
39,
15450,
57,
50,
3629,
65,
48397,
40842,
23199,
15,
64,
21713,
15,
40,
39,
34985,
948,
33,
16,
66,
17,
53,
74,
40,
39,
4598,
57,
54,
19,
21287,
38,
18519,
3528,
24,
3972,
54,
26059,
20475,
42388,
40,
39,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
40,
39,
34985,
948,
33,
73,
11215,
53,
31298,
37094,
74,
3528,
41133,
57,
23199,
15,
64,
37094,
84,
40,
39,
41,
44601,
17,
53,
15,
40,
39,
6780,
67,
55,
40,
36484,
21713,
89,
66,
18,
67,
85,
11215,
4507,
40,
1677,
16,
66,
18,
49,
85,
65,
54,
53,
88,
948,
33,
15,
64,
21713,
15,
3528,
49,
85,
3528,
20,
20306,
34,
16635,
56,
55,
57,
75,
3528,
36,
70,
56,
18,
53,
88,
11215,
53,
463,
34,
3886,
40692,
45,
75,
31522,
57,
31298,
38,
6780,
8482,
33,
18,
64,
54,
34223,
3528,
20,
75,
57,
54,
48,
21287,
38,
23,
70,
56,
18,
41,
75,
56,
55,
49,
75,
3528,
36,
70,
20475,
53,
18,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
41,
77,
46987,
56,
18564,
75,
46,
88,
33,
71,
56,
17,
45,
20306,
54,
1120,
32304,
33,
48,
65,
21713,
84,
40,
39,
6780,
67,
55,
40,
70,
20475,
53,
19,
67,
23199,
71,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
21287,
17,
75,
15,
64,
23199,
16,
948,
33,
549,
18,
66,
70,
56,
54,
20,
74,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
746,
36020,
37,
89,
56,
18,
41,
14751,
41275,
21,
36020,
24,
79,
57,
34,
70,
86,
42176,
13396,
3528,
24,
84,
56,
17,
42372,
56,
17,
82,
24,
41,
88,
48,
78,
40,
72,
45,
660,
52,
16,
85,
57,
21713,
82,
40,
1134,
549,
54,
24,
74,
56,
54,
21638,
42176,
16184,
47,
36802,
85,
57,
88,
33,
79,
9374,
49,
85,
3528,
6420,
979,
33,
2736,
55,
45,
15,
57,
54,
15,
84,
5662,
24,
71,
47,
73,
86,
28435,
35,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
86,
23047,
1238,
83,
7792,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
76,
57,
48397,
15,
67,
55,
41,
75,
43,
54,
41,
303,
25690,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2290,
57,
76,
23,
72,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
1360,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
2022,
9031,
43,
54,
57,
71,
65,
54,
75,
325,
51,
519,
41,
16,
45,
31298,
9861,
89,
57,
77,
15418,
5639,
33,
73,
67,
55,
41,
4496,
55,
57,
75,
46,
88,
33,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
44,
17,
53,
83,
46,
88,
40,
10,
7340,
37,
89,
948,
33,
14304,
38,
2949,
56,
54,
20,
77,
57,
16811,
48,
11215,
24,
10782,
76,
37,
83,
5662,
24,
78,
44,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2528,
56,
54,
25404,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
571,
48397,
88,
57,
17,
2290,
43,
54,
41,
20306,
17184,
85,
65,
51,
519,
44,
89,
33,
732,
35,
13396,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
86,
56,
55,
50123,
948,
20,
73,
16309,
20,
46803,
18,
56,
85,
17887,
16,
71,
57,
17,
53,
89,
43,
17,
45,
85,
9374,
49,
75,
9374,
48,
85,
57,
76,
53,
31298,
39,
53,
88,
57,
54,
48,
85,
7340,
37,
89,
66,
15,
53,
19,
56,
17,
12337,
65,
9132,
75,
17887,
45,
85,
8482,
20,
86,
20475,
979,
3528,
37,
21282,
35,
15,
72,
7340,
37,
89,
948,
33,
14304,
38,
2949,
56,
54,
20,
77,
57,
11584,
21287,
9861,
15,
65,
38022,
24,
33666,
33,
71,
66,
18,
44,
70,
49,
55,
71,
6592,
21713,
84,
57,
17,
52,
70,
52,
39,
41,
85,
57,
18,
41,
71,
65,
11584,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
47,
7801,
10,
53,
17,
52,
70,
56,
55,
41,
75,
3528,
16,
85,
57,
37094,
88,
65,
4029,
21,
64,
54,
20,
77,
40,
39,
15450,
57,
16811,
18,
56,
55,
10025,
67,
17,
52,
22296,
54,
41133,
56,
54,
25404,
40,
39,
15450,
57,
50,
12473,
64,
55,
45,
15,
64,
54,
20,
358,
54,
75,
4496,
37094,
74,
5064,
57,
335,
37094,
88,
56,
54,
19,
70,
56,
54,
20,
74,
38311,
14751,
17,
37,
571,
37094,
74,
38311,
14751,
17,
45,
20306,
54,
1120,
40,
32886,
71,
66,
18,
44,
36484,
39,
41,
85,
57,
18,
41,
71,
65,
55,
33239,
10008,
20,
335,
88,
33,
73,
11215,
53,
4914,
55,
48,
70,
56,
17,
37,
88,
57,
23199,
74,
40692,
45,
79,
57,
1731,
36484,
21713,
89,
66,
17,
53,
89,
3528,
37,
88,
57,
16811,
72,
57,
54,
2290,
57,
88,
33,
14751,
18,
45,
16,
57,
54,
48,
70,
57,
76,
24,
88,
16284,
16,
31522,
41,
75,
9374,
48,
36484,
21713,
89,
948,
18861,
17,
87,
74,
40692,
41,
89,
32304,
33,
41,
57,
72,
33,
20,
65,
18,
52,
4908,
21713,
17,
57,
16811,
85,
20475,
5842,
40,
32886,
82,
57,
48397,
89,
57,
16811,
17,
64,
55,
45,
30094,
23199,
16,
948,
33,
85,
20475,
42372,
20475,
52,
22296,
18,
40,
21287,
4029,
4496,
55,
48,
22296,
1495,
75,
3528,
24,
76,
40,
39,
15450,
57,
4090,
15,
45,
88,
33,
74,
40692,
45,
79,
57,
1495,
31298,
37094,
74,
40,
39,
45,
15,
56,
55,
49,
75,
40,
32886,
71,
66,
19662,
65,
38,
24,
73,
56,
55,
49,
40842,
1495,
89,
40,
39,
45,
85,
40,
39,
15450,
56,
55,
48,
469,
54,
6420,
3528,
16,
258,
16811,
73,
65,
9031,
64,
54,
4349,
57,
16811,
15,
1525,
3629,
56,
55,
45,
40842,
39,
10025,
56,
29767,
73,
40692,
45,
89,
40,
39,
6780,
67,
55,
40,
70,
57,
76,
37,
17,
65,
18,
41,
30094,
38022,
36484,
18,
49,
31298,
38022,
36484,
21713,
3972,
18,
33239,
10008,
20,
47,
6089,
52,
21,
40,
1677,
16,
31522,
41,
75,
9374,
48,
21287,
76,
53,
15,
40692,
41,
71,
8482,
33,
85,
979,
33,
4914,
55,
45,
71,
56,
36802,
75,
57,
23199,
86,
56,
55,
45,
89,
3528,
71,
85,
65,
10761,
75,
31522,
44,
21287,
17,
7278,
65,
23199,
84,
57,
54,
53,
74,
3528,
20,
335,
88,
33,
86,
56,
55,
45,
89,
57,
37643,
70,
57,
76,
24,
88,
16284,
71,
65,
55,
33,
79,
20475,
66,
70,
11215,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1495,
89,
3528,
37,
9132,
37094,
88,
10008,
37,
16,
57,
18,
53,
89,
67,
8141,
87,
32304,
33,
41,
20475,
49,
30094,
4029,
74,
67,
54,
42388,
948,
33,
83,
56,
55,
10025,
67,
55,
45,
75,
40,
39,
15450,
57,
54,
306,
16284,
16,
31522,
41,
75,
9374,
48,
36484,
21713,
89,
948,
33,
2022,
18,
40,
70,
57,
21713,
20,
40,
39,
53,
89,
57,
16811,
15,
64,
39,
41,
20306,
54,
4598,
10008,
57,
75,
56,
72,
19,
70,
44,
73,
14542,
2389,
40,
86,
13752,
5162,
10008,
24,
82,
57,
23199,
86,
56,
55,
45,
89,
57,
37643,
21287,
17,
7278,
65,
23199,
549,
18,
48,
70,
56,
76,
52,
21287,
76,
37,
11400,
54,
48,
70,
56,
54,
57,
15,
40692,
40,
21287,
38,
18519,
66,
17,
52,
70,
57,
21713,
15,
40692,
33239,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
544,
17184,
15,
66,
35,
709,
43,
18,
67,
18,
9892,
20,
86,
56,
55,
50123,
948,
20,
73,
16309,
20,
46803,
18,
56,
47322,
18,
33,
71,
57,
17,
53,
13331,
54,
48,
24,
44,
73,
74,
17,
44,
5603,
72,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
73,
19,
70,
53,
76,
297,
9892,
33,
74,
40692,
49,
3099,
54,
87,
89,
43,
73,
86,
85,
56,
51,
2780,
43,
18,
32,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
20940,
72,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
9031,
56,
54,
2290,
40692,
40,
72,
31743,
15,
42,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
40,
36484,
18,
49,
20,
65,
38022,
24,
3546,
16,
71,
28758,
79,
8482,
940,
65,
18,
32,
21,
2389,
44,
86,
66,
39,
70,
22,
40,
73,
19,
7792,
70,
74,
41,
4177,
87,
86,
3646,
37000,
57,
48397,
89,
57,
16811,
6592,
37094,
33708,
33,
20306,
55,
48,
22296,
18,
53,
88,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
23,
14,
66,
21713,
77,
57,
53,
24,
79,
57,
35,
15,
88,
2394,
56,
18,
34153,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
18564,
75,
56,
1959,
88,
56,
55,
49,
40842,
26912,
40,
39,
53,
84,
57,
37094,
88,
65,
38,
2290,
57,
51,
13396,
47,
76,
57,
88,
40692,
37,
16,
57,
54,
1120,
65,
39,
10025,
56,
55,
45,
81,
57,
54,
48,
36484,
55,
53,
44601,
18,
49,
40842,
1495,
89,
40,
1925,
38,
48,
53,
37,
89,
42,
5080,
85,
56,
51,
19,
70,
57,
76,
24,
88,
3528,
49,
335,
21713,
40842,
36905,
22296,
1731,
21287,
38,
18519,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
22296,
18,
40,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
544,
17184,
15,
66,
36905,
21,
31633,
5892,
64,
55,
45,
30094,
38,
24,
88,
43,
77,
40,
88,
9655,
20,
73,
65,
1495,
89,
67,
21713,
463,
16630,
85,
9374,
38576,
56,
18,
4507,
56,
1959,
83,
43,
2481,
71,
20475,
37,
77,
57,
50,
24,
28435,
17184,
40842,
73,
5892,
47,
5603,
86,
44,
34278,
88,
66,
41126,
5868,
15,
41,
21,
10305,
41,
29767,
52,
20,
78,
49,
89,
33,
57,
5188,
53,
57,
64,
17,
6080,
565,
57,
20,
54,
73,
41,
57,
36208,
79,
42,
8845,
41,
31298,
76,
41,
20306,
54,
405,
49,
1677,
52,
48,
89,
48,
15,
5959,
88,
66,
73,
49,
83,
54,
76,
16,
10782,
35,
56,
16,
68,
7707,
64,
50,
89,
41074,
45,
10782,
16,
29551,
57,
75,
5432,
16,
76,
51,
15,
10989,
49,
1199,
47,
57,
38,
24,
34,
48,
74,
1795,
48,
1959,
43,
57,
74,
5892,
54,
4933,
11251,
16630,
17,
54,
7707,
24954,
75,
49,
2937,
38,
24,
84,
20474,
16,
57,
461,
16,
69,
3843,
75,
89,
16501,
10913,
8898,
75,
80,
65,
54,
24,
84,
53,
73,
57,
574,
53,
79,
52,
13024,
77,
50,
16,
79,
31159,
72,
16,
44,
57,
31667,
72,
56,
54,
83,
3843,
75,
26903,
57,
77,
40,
89,
12161,
16,
7998,
16630,
83,
65,
50,
16,
41,
35990,
24,
40,
7730,
79,
36,
64,
15,
7109,
4694,
52,
89,
7397,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
18564,
75,
56,
1959,
88,
56,
55,
49,
40842,
26912,
40,
39,
53,
84,
57,
37094,
88,
65,
38,
2290,
57,
51,
13396,
47,
77,
45,
16,
56,
77,
45,
48055,
4029,
72,
57,
5080,
85,
56,
51,
19,
21287,
38,
23,
22296,
18,
53,
88,
3528,
20,
335,
18,
44,
70,
57,
76,
53,
75,
57,
23199,
15,
1525,
3886,
57,
29767,
5031,
55,
57,
75,
40,
39,
15450,
57,
16811,
82,
56,
55,
49,
44601,
18,
48,
4908,
54,
20,
2022,
18,
41,
83,
56,
55,
49,
40842,
1731,
84,
5662,
24,
86,
31743,
15,
42,
4177,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
34892,
19767,
87,
56,
3398,
18504,
37,
20,
48,
2780,
57,
76,
24,
20306,
37094,
88,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
1959,
463,
21713,
79,
20475,
53,
88,
40,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
40,
73,
2780,
64,
54,
16,
77,
16284,
82,
56,
55,
45,
89,
3705,
41,
2022,
18,
48,
83,
56,
55,
41,
85,
9892,
40,
21287,
9861,
15,
65,
38022,
24,
3546,
49,
20306,
1731,
70,
56,
55,
41,
88,
65,
18,
979,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
6052,
67,
18,
66,
1229,
76,
53,
89,
40692,
41,
17,
57,
29767,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
84,
56,
1959,
83,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
54,
17213,
57,
54,
41,
40,
65,
2481,
75,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
17,
57,
85,
65,
18,
49,
75,
979,
16,
71,
31522,
41,
85,
9892,
20,
80,
66,
38,
979,
3528,
37,
21282,
35,
15,
72,
56,
54,
53,
88,
11215,
6052,
40,
72,
7355,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
76,
3829,
43,
54,
87,
40842,
16762,
89,
40,
32886,
71,
57,
17,
53,
11400,
54,
20,
81,
948,
40,
10,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
37094,
76,
56,
55,
53,
21282,
34,
20,
71,
66,
18,
33,
19,
40,
73,
20,
2043,
486,
37,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
36392,
57,
48397,
88,
56,
17,
5162,
56,
55,
45,
732,
25690,
10,
48,
15,
43221,
8924,
75,
1581,
88,
15199,
51,
74,
48,
70,
9328,
24,
1137,
15,
75,
1581,
88,
32,
23,
43,
17,
36,
10,
40,
39,
86,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
48,
11215,
24,
10782,
76,
37,
23047,
15,
41133,
57,
10913,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
47,
74,
26009,
6089,
75,
19416,
13024,
44817,
15996,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
57,
37643,
85,
50,
37094,
71,
31522,
45,
15,
48,
17,
37,
89,
67,
38,
87,
75,
43490,
6420,
31522,
33239,
56,
55,
45,
732,
25690,
10,
5188,
53,
19499,
75,
45,
10080,
1677,
19499,
16,
49,
13599,
5080,
85,
56,
51,
19,
70,
69,
8141,
23,
1797,
15,
83,
2149,
10262,
2149,
10262,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
17,
75,
9132,
16630,
71,
11215,
49,
89,
43,
15,
26059,
57,
77,
49,
73,
56,
55,
41,
74,
66,
17,
42388,
57,
50,
20,
71,
66,
18,
33,
19,
40,
73,
20,
7998,
52,
57,
10080,
1677,
19499,
74,
14181,
5662,
24,
71,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6561,
15,
10,
25241,
23,
1797,
15,
83,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
45,
16,
66,
18,
49,
85,
65,
54,
53,
88,
948,
24,
46,
40692,
67,
35,
67,
55,
45,
15,
65,
2481,
75,
979,
20,
71,
66,
18,
33,
19,
40,
73,
20,
35,
28425,
44526,
6089,
52,
70,
48,
4944,
24544,
16,
53,
41576,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
36,
10,
2149,
15,
83,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
76,
3829,
43,
54,
87,
40842,
16762,
89,
16284,
85,
65,
34,
16,
83,
57,
34,
15,
87,
41541,
40,
10,
47,
5222,
83,
43,
4090,
23,
16309,
33,
85,
20475,
45,
11400,
29767,
81,
3705,
41,
80,
56,
55,
57,
71,
66,
17,
45,
3972,
55,
33,
15,
2202,
57,
71,
979,
3886,
67,
54,
87,
75,
26691,
1485,
64,
54,
20,
32812,
18,
66,
549,
18,
3629,
65,
570,
41,
88,
86,
70,
41,
18,
41,
16,
65,
37094,
89,
41,
88,
86,
358,
17,
75,
74,
67,
38,
70,
24,
45,
73,
23155,
5639,
16635,
57,
54,
75,
2616,
41275,
24,
45,
5631,
86,
5639,
33,
89,
56,
18,
41,
85,
65,
38,
29992,
56,
55,
41,
89,
47,
9328,
82,
40,
39,
41,
44601,
17,
75,
21,
56,
54,
49044,
57,
51,
15,
87,
41,
48361,
22,
40,
39,
41,
335,
39,
53,
88,
8482,
33,
76,
56,
54,
87,
89,
57,
51,
13396,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
72,
32,
4908,
39,
41,
75,
57,
73,
15,
1789,
37,
17,
56,
55,
45,
48055,
4029,
16993,
35,
79,
17,
65,
17,
75,
74,
42,
5631,
79,
46,
88,
40,
10,
6561,
15,
10,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
7801,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
89,
24,
86,
56,
54,
25404,
55,
17,
75,
74,
11571,
40,
87,
44,
89,
23155,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
8924,
37,
5432,
88,
4462,
53,
52,
87,
38989,
88,
32,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
43832,
9031,
56,
29767,
15,
53,
55,
33239,
56,
55,
45,
732,
25690,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
48,
2931,
46,
6089,
26009,
15922,
33,
53,
52,
88,
32,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
7801,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
16,
3886,
64,
55,
57,
71,
56,
18,
4106,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
73,
19,
70,
11909,
45,
15,
11215,
24,
84,
57,
89,
20,
10917,
41582,
54,
48,
4944,
57,
5064,
20866,
9328,
75,
42955,
4090,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
41,
88,
2149,
23,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
979,
47,
73,
87,
89,
66,
21713,
84,
3528,
75,
74,
3705,
41,
26708,
54,
41,
23160,
7206,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
73,
65,
17,
87,
28435,
73,
519,
67,
17,
24831,
67,
38022,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
13752,
41,
732,
35,
13396,
47,
74,
45,
85,
9374,
38576,
56,
18,
48,
70,
53,
37643,
21,
14114,
83,
3727,
23155,
27734,
48,
15,
7792,
3070,
44,
48055,
16,
2389,
70,
21,
44,
11012,
71,
65,
50,
2953,
2389,
56,
21,
44,
11012,
39346,
16811,
48,
56,
29767,
79,
57,
4029,
73,
5064,
49,
40842,
54,
52,
70,
42,
26001,
15039,
4090,
23,
43,
18,
45,
86,
56,
54,
19,
10,
2389,
1929,
6561,
15,
70,
2389,
87,
89,
66,
21713,
84,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
73,
65,
17,
87,
28435,
73,
519,
53,
17,
24831,
67,
38022,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
13752,
41,
732,
35,
13396,
3528,
75,
74,
3705,
41,
26708,
54,
41,
23160,
7206,
72,
47,
74,
20,
75,
57,
54,
48,
70,
50,
37094,
1416,
35,
23,
70,
48,
17,
37,
36299,
23199,
16,
948,
32,
19,
40,
6500,
84,
4694,
19,
21287,
38,
23,
70,
34153,
33,
9711,
74,
15,
84,
38311,
3099,
54,
87,
20,
2389,
70,
86,
9655,
405,
8575,
48,
83,
45,
89,
40,
18,
47549,
78,
48,
17,
87,
28435,
17,
53,
74,
40,
1677,
420,
4029,
89,
67,
38,
16,
71,
948,
12473,
56,
55,
591,
10008,
20,
335,
88,
33,
30148,
48397,
88,
948,
12473,
56,
55,
591,
3528,
41133,
57,
34,
19499,
64,
21713,
6413,
18,
45,
2616,
55,
57,
79,
20475,
13155,
5662,
24,
89,
66,
21713,
84,
38729,
10262,
6561,
15,
10,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
66,
87,
40,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
65,
34,
16,
83,
57,
34,
15,
87,
41541,
33,
73,
65,
17,
86,
23047,
1238,
83,
13752,
40,
70,
56,
1959,
732,
55,
41,
79,
57,
17,
71,
15,
948,
40,
10,
48,
1959,
732,
55,
41,
79,
57,
17,
71,
15,
2149,
57,
73,
65,
18,
33,
20,
46,
88,
42012,
44,
7206,
18,
41,
76,
20,
291,
18,
32,
22,
5064,
45,
15,
56,
55,
49,
75,
3528,
24,
76,
40,
1677,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
79,
20475,
45,
21282,
18564,
75,
49,
76,
24,
20306,
37094,
88,
40,
73,
19,
2022,
76,
41,
89,
66,
30832,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
57,
85,
65,
18,
49,
44601,
73,
20,
74,
57,
43,
57,
21,
28202,
55,
10246,
84,
37,
74,
6080,
46,
48,
38,
14,
316,
39,
20,
68,
40,
66,
18,
8202,
87,
75,
53,
74,
36287,
15200,
55,
22,
385,
2514,
55,
15,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
35353,
1137,
25633,
1298,
366,
2682,
2996,
1485,
3865,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
77,
18254,
27271,
7390,
1298,
366,
18,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
14116,
3163,
43171,
10430,
1298,
366,
2919,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
1860,
75,
16060,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
46118,
18243,
1298,
366,
5247,
1,
198,
92,
198,
198,
12384,
62,
11195,
796,
1391,
198,
220,
220,
220,
366,
834,
20114,
3525,
51,
46095,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
20114,
3525,
1503,
38,
5883,
3525,
1298,
366,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
1298,
12813,
86,
36,
5760,
86,
52,
41,
45,
9936,
86,
45,
89,
56,
20,
2394,
2584,
35,
17,
48,
54,
5840,
56,
5760,
87,
56,
42413,
71,
47858,
31522,
41,
30094,
76,
42388,
49,
21713,
15,
57,
4261,
14751,
18,
37000,
56,
55,
74,
9273,
30195,
19,
73,
5607,
82,
16,
23396,
34,
15,
37,
88,
66,
4029,
17,
56,
54,
87,
22348,
55,
49,
75,
33,
70,
4339,
68,
40,
14,
68,
22,
45,
48,
14887,
17513,
34,
57,
70,
23,
42668,
70,
40,
68,
37,
74,
57,
16,
67,
39,
53,
88,
57,
52,
41,
85,
65,
17,
34788,
65,
9132,
51,
67,
21713,
5173,
1137,
31298,
38,
7340,
14242,
33,
19,
73,
5607,
82,
16,
10910,
74,
37,
456,
76,
35,
17,
48,
54,
10262,
18694,
35,
87,
56,
3398,
70,
49,
420,
76,
53,
76,
19499,
16,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
16,
45,
15,
68,
54,
87,
75,
948,
24,
80,
66,
55,
53,
75,
31522,
74,
8671,
54,
74,
549,
54,
2290,
43,
76,
45,
89,
66,
17,
48,
8141,
70,
23,
42668,
70,
48,
68,
15112,
57,
16,
67,
39,
53,
88,
57,
52,
41,
85,
65,
17,
34788,
65,
9132,
37,
20475,
2200,
56,
55,
49,
75,
33,
70,
8141,
4720,
8642,
69,
45,
10080,
39,
13655,
12805,
55,
24831,
65,
55,
53,
83,
52,
18,
49,
258,
48,
40,
68,
57,
38,
48,
8141,
86,
24,
74,
37,
70,
44816,
4339,
23,
42668,
70,
48,
69,
3838,
44947,
48,
17250,
47,
18,
10277,
9598,
33,
23,
15199,
70,
4339,
68,
40,
14,
68,
22,
45,
48,
14887,
17513,
3539,
70,
8577,
16412,
23,
54,
10910,
19,
43,
55,
88,
15112,
56,
55,
38576,
48,
76,
6420,
20475,
49,
77,
57,
10761,
74,
57,
20185,
10227,
86,
23,
54,
10910,
19,
20114,
37094,
19,
67,
26830,
41,
4503,
23,
88,
45,
88,
23,
88,
44,
7206,
18,
57,
38,
48,
4093,
32,
24,
74,
37,
70,
2149,
23155,
23,
48,
35,
87,
56,
3398,
86,
57,
77,
57,
4339,
53,
39,
70,
3109,
1404,
9865,
44,
86,
36,
15,
1404,
10526,
45,
70,
36,
18,
1404,
70,
8202,
48,
40,
87,
5673,
40,
87,
49215,
40,
87,
44,
70,
40,
87,
44,
86,
40,
87,
4535,
40,
87,
45,
48,
40,
87,
45,
70,
40,
87,
45,
86,
40,
87,
46,
20185,
87,
46,
48,
40,
88,
5673,
40,
88,
49215,
40,
88,
44,
70,
40,
88,
44,
86,
40,
88,
4535,
40,
88,
45,
48,
40,
88,
45,
70,
40,
88,
45,
86,
40,
88,
46,
20185,
88,
46,
48,
40,
89,
10744,
52,
68,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
9132,
77,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
87,
56,
33,
57,
76,
48,
4093,
48,
23,
42668,
70,
1659,
10262,
44947,
48,
17250,
47,
18,
10277,
9598,
33,
23,
30195,
70,
8141,
4720,
8642,
69,
45,
10080,
39,
86,
7156,
14242,
33,
19,
73,
5607,
82,
16,
23396,
34,
486,
79,
20475,
2528,
67,
54,
16,
51,
67,
21713,
20,
10262,
36,
69,
33,
48,
40,
68,
57,
17513,
36,
57,
70,
23,
11731,
64,
44,
9148,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
54,
17213,
57,
54,
41,
40,
65,
2481,
75,
43,
15,
57,
71,
56,
17,
7278,
64,
55,
49,
79,
57,
37643,
85,
48,
18564,
17,
56,
54,
20,
73,
57,
52,
16,
71,
66,
36,
2528,
56,
54,
25404,
49,
17,
53,
84,
40692,
41,
31298,
38,
24,
88,
43,
76,
37,
89,
66,
39,
70,
14,
65,
48397,
86,
55,
17,
87,
335,
76,
23266,
5105,
53,
463,
37094,
88,
66,
39,
41,
14751,
17,
52,
2022,
48397,
86,
55,
17,
75,
74,
47,
5603,
76,
56,
55,
41,
3972,
55,
57,
71,
65,
37,
24,
74,
56,
55,
49,
75,
11571,
70,
85,
44,
73,
33967,
44,
73,
31554,
45,
88,
57,
6413,
54,
67,
375,
36905,
24,
9655,
57,
88,
20475,
48,
24,
11251,
40,
88,
3727,
52,
17,
45,
73,
48,
15,
41,
77,
53,
6413,
55,
49,
16344,
39,
75,
86,
57,
51,
15,
86,
41,
77,
53,
6413,
55,
49,
69,
56,
17,
37,
15,
57,
54,
67,
28435,
77,
74,
24,
20474,
48,
8141,
48,
24,
74,
37,
70,
49,
76,
35,
87,
8322,
1404,
6242,
5673,
87,
549,
15,
87,
75,
57,
17,
53,
84,
57,
34,
20,
39346,
9132,
74,
10262,
8905,
37,
48,
9865,
40569,
15,
31522,
53,
75,
57,
20185,
10227,
87,
56,
3398,
86,
66,
37,
87,
70,
48,
23,
65,
38,
10025,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
46987,
65,
18,
33,
32812,
18,
646,
40,
73,
19,
7792,
70,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
37094,
76,
56,
55,
53,
21282,
34,
20,
71,
66,
18,
33,
19,
40,
73,
19,
7792,
70,
74,
41,
5188,
24,
24723,
48,
15,
42,
4177,
86,
85,
56,
51,
19,
7792,
73,
86,
85,
65,
38,
74,
10,
35,
48,
78,
23,
65,
38,
10025,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
46987,
65,
18,
33,
32812,
18,
646,
40,
73,
19,
7792,
70,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
49,
76,
37,
6592,
54,
87,
30094,
38,
297,
948,
24,
33,
57,
39,
57,
71,
20475,
45,
75,
52,
17,
53,
71,
11215,
2949,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
75,
35,
10917,
16,
48,
12564,
20,
39,
10008,
13775,
34,
12261,
51,
15,
49,
7998,
52,
20,
10227,
48,
78,
41,
5662,
24,
71,
31743,
15,
42,
5662,
24,
11400,
51,
19,
7792,
73,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
36222,
48,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
48,
11215,
24,
10782,
76,
37,
23047,
15,
41133,
57,
10913,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
31743,
15,
36222,
48,
74,
41,
6089,
24,
53,
47920,
44,
7792,
70,
74,
41,
5662,
24,
71,
47,
73,
86,
85,
65,
38,
74,
10,
35,
48,
78,
41,
4177,
87,
11400,
16811,
73,
65,
21713,
89,
26691,
15,
72,
57,
39,
41,
28435,
10761,
20306,
1731,
72,
31743,
15,
36222,
48,
74,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
88,
40692,
45,
75,
31522,
57,
75,
56,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
20,
73,
65,
1238,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
56,
53,
25404,
56,
14636,
85,
65,
54,
52,
85,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
14887,
48397,
88,
66,
18,
35257,
56,
55,
45,
15,
65,
37094,
36609,
18,
53,
88,
948,
20,
71,
66,
18,
33,
19,
40,
73,
19,
7792,
70,
74,
34382,
34653,
37,
48,
53,
41,
6849,
34,
14529,
48,
53,
45,
3843,
19684,
70,
6089,
24,
53,
52,
70,
15,
36222,
48,
74,
23,
43,
17,
36,
10,
5662,
24,
11400,
51,
20,
74,
10910,
8905,
57,
17513,
9273,
70,
7378,
57,
17513,
36,
10262,
66,
11401,
32,
23,
45607,
71,
19,
1581,
21713,
15,
56,
53,
57,
71,
65,
39,
53,
75,
49,
76,
297,
65,
38,
48,
26001,
38,
7100,
55,
5308,
35,
4261,
31298,
21713,
52,
40692,
71,
15,
49,
76,
297,
65,
38,
48,
26001,
77,
57,
71,
65,
39,
53,
44601,
87,
23,
38,
57,
17,
48,
48,
37,
48,
48,
51,
48,
17,
37,
23047,
38,
2290,
57,
88,
33,
71,
20475,
48,
70,
35990,
24,
74,
57,
17,
2290,
57,
87,
45,
14887,
48397,
88,
66,
18,
48,
70,
48,
17,
37,
89,
67,
38,
87,
75,
5064,
49,
20306,
55,
41,
89,
37,
74,
3829,
64,
37094,
88,
5064,
49,
20306,
55,
41,
89,
43,
15,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
40692,
26708,
48,
76,
24,
31298,
34,
12261,
56,
55,
53,
84,
56,
17,
1130,
37280,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1495,
89,
37,
48,
48,
12261,
48,
36,
15,
1404,
10744,
24723,
48,
81,
23155,
49,
77,
57,
17,
32656,
57,
38,
48,
4093,
48,
23,
48,
57,
4339,
53,
39,
86,
6242,
49215,
36287,
1404,
10744,
4535,
36,
16,
1404,
56,
15766,
86,
36,
19,
1404,
74,
34,
13752,
2246,
13752,
2943,
13752,
2149,
13752,
9655,
13752,
48,
34,
13752,
9598,
44,
9936,
34,
13752,
66,
34,
13752,
70,
34,
13752,
74,
24187,
73,
2246,
44,
73,
2943,
44,
73,
2149,
44,
73,
9655,
44,
73,
48,
24187,
73,
9598,
44,
73,
56,
24187,
48055,
24187,
73,
70,
24187,
73,
74,
24187,
89,
10116,
39,
86,
36,
86,
6158,
12261,
70,
36,
89,
1404,
48,
15766,
48,
36,
17,
1404,
66,
8202,
14242,
20,
32,
73,
36,
86,
32,
73,
3109,
32,
73,
36287,
32,
73,
36,
89,
32,
73,
36,
15,
32,
73,
36,
16,
32,
73,
36,
17,
32,
73,
36,
18,
32,
73,
36,
19,
32,
73,
36,
20,
32,
73,
40,
86,
32,
73,
40,
87,
32,
73,
40,
88,
32,
73,
40,
89,
32,
73,
40,
15,
32,
73,
40,
16,
32,
73,
40,
17,
32,
73,
40,
18,
32,
73,
40,
19,
32,
73,
40,
20,
32,
73,
44,
86,
4851,
82,
41473,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
32656,
57,
17,
66,
54,
12298,
57,
74,
10262,
48,
42668,
70,
40,
68,
43538,
75,
549,
76,
53,
3972,
17184,
83,
65,
25922,
68,
37,
42592,
89,
57,
29767,
15,
64,
54,
24,
84,
16284,
82,
56,
55,
45,
89,
3705,
41,
72,
56,
54,
20,
84,
40692,
1026,
66,
21713,
5173,
25690,
36484,
18,
49,
20,
65,
38022,
24,
3546,
49,
14751,
18,
37000,
56,
55,
74,
21,
20475,
24,
84,
57,
51,
13396,
31743,
15,
42,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
291,
17,
42372,
57,
37094,
88,
3528,
87,
831,
4106,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
36,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
10008,
24,
84,
57,
11584,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
51,
1495,
75,
40,
72,
7355,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
948,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
19499,
67,
2078,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
5064,
49,
18,
1525,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
3666,
20,
80,
66,
38,
979,
40,
17184,
30094,
38,
87,
75,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
43490,
12114,
57,
54,
52,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
5064,
49,
420,
76,
53,
75,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
7792,
20,
80,
66,
38,
979,
40,
17184,
30094,
38,
87,
75,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
49,
76,
6420,
979,
40,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
49,
76,
6420,
979,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
66,
16,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
35389,
55,
57,
75,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
2022,
18,
40,
70,
57,
9861,
89,
66,
38,
87,
258,
16811,
40842,
48397,
77,
57,
16811,
35389,
55,
57,
75,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
56,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
431,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
52,
17,
75,
19,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
66,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
335,
76,
53,
84,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
33,
2022,
18,
40,
70,
57,
9861,
89,
66,
38,
87,
258,
16811,
40842,
48397,
77,
57,
16811,
51,
40692,
57,
75,
8482,
40,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
4177,
87,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
544,
54,
16,
71,
57,
17,
52,
72,
38729,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
85,
56,
17,
37,
11400,
50,
16,
73,
65,
9031,
57,
54,
1120,
43,
77,
53,
89,
57,
18564,
79,
11215,
53,
73,
67,
34,
20,
73,
65,
1238,
20306,
38,
18519,
65,
54,
53,
89,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
85,
48,
76,
37,
549,
76,
53,
88,
948,
24,
40842,
54,
66,
19,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
29499,
64,
54,
67,
375,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
75,
2616,
41275,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
36222,
48,
15,
36222,
4090,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
74,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
10008,
57,
30094,
76,
52,
72,
3528,
37,
21282,
35,
15,
72,
48,
76,
37,
549,
76,
53,
88,
3528,
57,
85,
979,
33,
4914,
55,
45,
39346,
21713,
20,
3528,
2528,
56,
54,
25404,
10008,
20,
79,
20475,
52,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
3539,
15,
42,
2149,
10262,
3539,
74,
23,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
2528,
56,
54,
25404,
40,
73,
19,
70,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
17,
45,
71,
65,
38,
21841,
56,
1959,
463,
37094,
463,
34,
4349,
66,
17,
53,
4914,
55,
41,
75,
56,
18,
4507,
56,
1959,
83,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
15,
41,
71,
20475,
20,
75,
31522,
44,
6862,
54,
16,
77,
44,
5603,
7258,
33,
77,
40,
72,
33,
15,
64,
55,
31273,
57,
51,
15,
72,
48,
76,
37,
549,
76,
53,
88,
5064,
45,
431,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
53,
37094,
84,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
3109,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
19313,
40692,
57,
75,
8482,
40,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
87,
335,
76,
53,
84,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
20940,
72,
10262,
25241,
41,
6968,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
40842,
48397,
77,
57,
11584,
10,
3539,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
24,
73,
56,
54,
42372,
43,
29767,
85,
9374,
49,
75,
9374,
48,
463,
55,
45,
75,
57,
38,
306,
57,
29767,
15,
43,
76,
45,
85,
65,
50,
3829,
64,
37094,
83,
57,
37643,
85,
48,
17,
37,
11400,
54,
57,
85,
11215,
20,
79,
16309,
24,
34,
56,
54,
20,
84,
40692,
41,
89,
43,
17,
2528,
57,
89,
36287,
43,
3149,
86,
57,
88,
40,
21287,
9861,
15,
65,
38022,
24,
40,
74,
41,
71,
20475,
20,
75,
979,
29499,
64,
54,
67,
375,
25690,
70,
56,
54,
87,
15,
3705,
34382,
56,
54,
20,
84,
40692,
40,
70,
57,
76,
24,
88,
3528,
49,
14751,
18,
37000,
56,
55,
74,
4908,
54,
16,
71,
57,
17,
52,
70,
46747,
75,
2616,
41275,
72,
2149,
23,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
36222,
48,
15,
36222,
48,
15,
42,
25241,
41,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
35,
48,
78,
23,
43,
18,
45,
75,
56,
18,
49,
40842,
1731,
10,
35,
48,
519,
34892,
5064,
35,
17,
48,
54,
10262,
19767,
87,
56,
3398,
86,
66,
37,
5431,
40,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
9031,
56,
54,
2290,
40692,
40,
72,
31743,
15,
42,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
33,
16993,
54,
34223,
43,
55,
49,
28435,
25690,
10,
35,
48,
519,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
65,
34,
16,
14969,
50,
405,
40,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
40,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
53,
31298,
39,
53,
88,
57,
50,
16,
571,
18,
70,
8326,
54,
20,
76,
1525,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
17931,
36484,
18,
49,
20,
65,
38022,
24,
3546,
57,
85,
9374,
48,
83,
57,
76,
37,
8326,
54,
87,
20,
46,
72,
2025,
52,
17,
37,
15,
64,
55,
45,
1326,
3351,
82,
16284,
16,
31522,
45,
30094,
76,
52,
22,
40,
17184,
293,
41275,
83,
56,
54,
42372,
57,
26912,
16284,
75,
9374,
49,
44601,
8457,
70,
57,
76,
24,
463,
34,
16,
4496,
55,
489,
46,
72,
26903,
57,
54,
2998,
40,
73,
20,
55,
57,
54,
87,
73,
65,
2481,
75,
40,
17184,
85,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
41,
77,
46987,
56,
18564,
75,
46,
89,
86,
6862,
17931,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2528,
56,
54,
25404,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
571,
48397,
88,
57,
17,
2290,
43,
54,
41,
20306,
17184,
85,
65,
51,
519,
44,
89,
33,
732,
35,
13396,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
2528,
57,
88,
33,
89,
11215,
44,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
24,
41,
65,
48397,
77,
57,
37643,
85,
56,
1959,
463,
37094,
463,
34,
24,
76,
57,
48397,
15,
67,
55,
41,
75,
57,
34,
24,
55,
57,
54,
87,
73,
65,
2481,
75,
17887,
16,
71,
57,
17,
52,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
40,
335,
23160,
16630,
85,
65,
54,
52,
21287,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
72,
40,
17184,
30094,
38,
87,
75,
3705,
41,
55,
57,
54,
87,
73,
65,
2481,
75,
40,
17184,
85,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
86,
47,
335,
23160,
16630,
85,
65,
54,
52,
21287,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
9132,
39,
41,
71,
57,
38022,
22,
32304,
10262,
51,
18,
53,
88,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
4908,
37643,
70,
57,
48397,
2736,
16811,
15,
1525,
33,
16,
66,
17,
52,
70,
6561,
33,
4496,
54,
16,
40842,
21713,
88,
40,
17184,
85,
3528,
41,
85,
65,
17,
34788,
20475,
66,
4908,
38,
3829,
57,
54,
87,
89,
5639,
33,
3099,
55,
41,
11400,
54,
20,
75,
40,
17184,
79,
56,
17,
83,
335,
36905,
70,
56,
54,
20,
74,
3528,
3829,
64,
37094,
88,
16284,
85,
65,
55,
33,
71,
11215,
37,
571,
38022,
36484,
17,
53,
5173,
4029,
73,
40692,
33239,
40,
6500,
21287,
76,
37,
3972,
54,
53,
15,
68,
16811,
85,
57,
72,
38374,
40692,
66,
70,
57,
76,
53,
31298,
39,
53,
88,
57,
37643,
21287,
17,
7278,
65,
23199,
72,
57,
16811,
10247,
21713,
89,
57,
54,
48,
4908,
54,
19,
70,
56,
76,
53,
15,
67,
17,
53,
75,
8482,
15199,
67,
54,
67,
16,
66,
18,
48,
70,
5653,
86,
70,
44,
73,
31554,
45,
88,
33,
71,
20475,
48,
70,
34551,
37,
88,
56,
17,
1130,
5653,
86,
70,
44,
73,
31554,
4503,
86,
4908,
54,
20,
73,
65,
39,
53,
4914,
54,
20,
77,
3528,
16,
20306,
76,
2290,
57,
88,
33,
76,
11215,
24,
83,
3528,
36,
70,
57,
76,
306,
66,
18,
48,
83,
65,
17,
56,
8671,
38,
18519,
43,
54,
16,
85,
9374,
15450,
3528,
24,
84,
43,
55,
45,
71,
65,
38022,
70,
57,
21713,
20,
948,
33,
15,
1525,
33,
71,
3528,
20,
335,
88,
3886,
65,
17,
87,
11400,
54,
20,
77,
40,
39,
26059,
20475,
49,
85,
9892,
3886,
40692,
45,
75,
31522,
57,
31298,
38,
6780,
8482,
33,
89,
40692,
41,
17,
64,
29767,
75,
32304,
19499,
64,
9861,
89,
3528,
16,
75,
56,
54,
20,
89,
40,
39,
15450,
56,
55,
48,
469,
54,
6420,
40,
39,
26059,
65,
38,
86,
70,
56,
76,
52,
70,
56,
54,
49044,
57,
16811,
15,
1525,
3886,
40692,
45,
75,
31522,
57,
75,
16284,
71,
65,
55,
33,
4496,
55,
49,
75,
948,
33,
71,
20475,
48,
22296,
38,
24,
74,
57,
17,
2290,
57,
88,
33,
4496,
55,
1130,
65,
54,
24,
463,
38,
32179,
3528,
2290,
3528,
37,
74,
36020,
41133,
56,
17,
52,
70,
57,
77,
41,
85,
65,
16811,
15,
64,
38022,
70,
56,
18,
53,
88,
11215,
53,
463,
23199,
74,
56,
55,
49,
75,
32304,
2749,
65,
1959,
81,
40,
39,
6780,
67,
55,
40,
70,
20475,
53,
19,
67,
23199,
71,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
21287,
17,
75,
15,
64,
23199,
16,
948,
2953,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
72,
19,
85,
48,
18,
53,
89,
67,
38,
24,
83,
40692,
41,
89,
43,
2713,
335,
15,
45,
16,
66,
18,
49,
85,
65,
54,
53,
88,
43,
76,
37,
89,
66,
39,
12397,
47,
76,
45,
88,
57,
48397,
15,
57,
16811,
20,
65,
18,
53,
88,
40,
39,
3886,
65,
17,
57,
40842,
38022,
4908,
37094,
88,
57,
50,
2780,
43,
17,
36,
10,
5662,
24,
86,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
70,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
86,
23047,
1238,
83,
7792,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
76,
57,
48397,
15,
67,
55,
41,
75,
43,
54,
41,
303,
25690,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2290,
57,
76,
23,
72,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
1360,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
2022,
9031,
43,
54,
57,
71,
65,
54,
75,
325,
51,
519,
41,
16,
45,
31298,
9861,
89,
57,
77,
15418,
5639,
33,
73,
67,
55,
41,
4496,
55,
57,
75,
46,
88,
33,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
44,
17,
53,
83,
46,
88,
40,
10,
49,
76,
2290,
57,
23199,
57,
65,
18,
53,
88,
5064,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
5662,
24,
78,
44,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
57,
76,
53,
31298,
39,
53,
88,
57,
50,
16,
571,
18,
70,
8326,
54,
16,
71,
57,
17,
52,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
83,
56,
55,
41,
2616,
54,
19,
83,
56,
76,
3829,
67,
38,
24,
83,
46,
72,
26903,
44,
32886,
19,
46,
88,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
64,
54,
16,
77,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
15,
2528,
56,
54,
25404,
948,
24,
73,
65,
9031,
57,
54,
1120,
43,
17,
57,
75,
56,
55,
49,
16,
11215,
53,
74,
43,
16,
33,
76,
57,
54,
75,
76,
57,
76,
53,
88,
48,
17,
37,
544,
54,
19,
7258,
33,
77,
40,
72,
33,
71,
65,
41275,
24,
40,
74,
37,
74,
36020,
53,
463,
39,
53,
88,
57,
16811,
85,
57,
72,
33,
15,
64,
38022,
70,
34551,
24,
463,
38,
12397,
40,
17184,
30094,
38,
87,
75,
3705,
47858,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
22296,
17,
56,
21287,
38,
18519,
10008,
16,
85,
9374,
15450,
40,
72,
7355,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
86,
3646,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
948,
33,
83,
56,
18564,
75,
40,
17184,
420,
76,
6420,
57,
17,
1130,
37280,
53,
89,
40692,
41,
17,
57,
36820,
83,
40692,
41,
79,
56,
17,
36,
36484,
39,
41,
40842,
18,
40,
21287,
38,
23,
70,
16501,
53,
325,
4090,
88,
45,
88,
86,
70,
44,
73,
31554,
45,
88,
33,
18,
64,
54,
34223,
3528,
41,
75,
3528,
37,
73,
56,
17,
53,
89,
66,
17,
8019,
38022,
22296,
1731,
21287,
38,
18519,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
22296,
1731,
70,
48,
55,
53,
358,
55,
45,
15,
14114,
84,
5064,
49,
85,
40,
39,
57,
79,
40692,
6359,
3528,
16,
85,
57,
9861,
1326,
10462,
22296,
18,
40,
70,
56,
17,
41133,
56,
17,
23266,
40,
39,
6780,
67,
55,
40,
70,
11215,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1731,
82,
40,
39,
6780,
67,
16811,
18,
64,
54,
34223,
3528,
20,
75,
57,
54,
48,
21287,
38,
23,
22296,
38,
24,
77,
3528,
75,
463,
38,
23,
70,
37280,
53,
89,
40692,
41,
17,
57,
4944,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
9132,
39,
41,
71,
57,
38022,
22,
40,
39,
53,
4496,
54,
20,
77,
40,
39,
15450,
57,
50,
3629,
65,
48397,
40842,
23199,
15,
64,
21713,
15,
40,
39,
34985,
948,
33,
16,
66,
17,
53,
74,
40,
39,
4598,
57,
54,
19,
21287,
38,
18519,
3528,
24,
3972,
54,
26059,
20475,
42388,
40,
39,
41,
44601,
17,
53,
5173,
76,
37,
15,
64,
54,
24,
84,
40,
39,
34985,
948,
33,
73,
11215,
53,
31298,
37094,
74,
3528,
41133,
57,
23199,
15,
64,
37094,
84,
40,
39,
41,
44601,
17,
53,
15,
40,
39,
6780,
67,
55,
40,
36484,
21713,
89,
66,
18,
67,
85,
11215,
4507,
40,
1677,
16,
66,
18,
49,
85,
65,
54,
53,
88,
948,
33,
15,
64,
21713,
15,
3528,
49,
85,
3528,
20,
20306,
34,
16635,
56,
55,
57,
75,
3528,
36,
70,
56,
18,
53,
88,
11215,
53,
463,
34,
3886,
40692,
45,
75,
31522,
57,
31298,
38,
6780,
8482,
33,
18,
64,
54,
34223,
3528,
20,
75,
57,
54,
48,
21287,
38,
23,
70,
56,
18,
41,
75,
56,
55,
49,
75,
3528,
36,
70,
20475,
53,
18,
5064,
41,
44601,
17,
53,
5173,
76,
8898,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
41,
77,
46987,
56,
18564,
75,
46,
88,
33,
71,
56,
17,
45,
20306,
54,
1120,
32304,
33,
48,
65,
21713,
84,
40,
39,
6780,
67,
55,
40,
70,
20475,
53,
19,
67,
23199,
71,
57,
39,
57,
75,
9374,
49,
16,
11215,
52,
21287,
17,
75,
15,
64,
23199,
16,
948,
33,
549,
18,
66,
70,
56,
54,
20,
74,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
746,
36020,
37,
89,
56,
18,
41,
14751,
41275,
21,
36020,
24,
79,
57,
34,
70,
86,
42176,
13396,
3528,
24,
84,
56,
17,
42372,
56,
17,
82,
24,
41,
88,
48,
78,
40,
72,
45,
660,
52,
16,
85,
57,
21713,
82,
40,
1134,
549,
54,
24,
74,
56,
54,
21638,
42176,
16184,
47,
36802,
85,
57,
88,
33,
79,
9374,
49,
85,
3528,
6420,
979,
33,
2736,
55,
45,
15,
57,
54,
15,
84,
5662,
24,
71,
47,
73,
86,
28435,
35,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
3539,
15,
42,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
86,
23047,
1238,
83,
7792,
40,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
76,
57,
48397,
15,
67,
55,
41,
75,
43,
54,
41,
303,
25690,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2290,
57,
76,
23,
72,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6968,
1360,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
2022,
9031,
43,
54,
57,
71,
65,
54,
75,
325,
51,
519,
41,
16,
45,
31298,
9861,
89,
57,
77,
15418,
5639,
33,
73,
67,
55,
41,
4496,
55,
57,
75,
46,
88,
33,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
44,
17,
53,
83,
46,
88,
40,
10,
7340,
37,
89,
948,
33,
14304,
38,
2949,
56,
54,
20,
77,
57,
16811,
48,
11215,
24,
10782,
76,
37,
83,
5662,
24,
78,
44,
73,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
57,
75,
56,
55,
49,
16,
11215,
18274,
56,
76,
5824,
43,
54,
2528,
56,
54,
25404,
40,
72,
33,
89,
67,
39,
7278,
57,
51,
15,
571,
48397,
88,
57,
17,
2290,
43,
54,
41,
20306,
17184,
85,
65,
51,
519,
44,
89,
33,
732,
35,
13396,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
40842,
54,
66,
36484,
18,
41,
73,
3705,
41,
375,
17184,
86,
26691,
709,
43,
18,
67,
18,
9892,
20,
86,
56,
55,
50123,
948,
20,
73,
16309,
20,
46803,
18,
56,
85,
17887,
16,
71,
57,
17,
53,
89,
43,
17,
45,
85,
9374,
49,
75,
9374,
48,
85,
57,
76,
53,
31298,
39,
53,
88,
57,
54,
48,
85,
7340,
37,
89,
66,
15,
53,
19,
56,
17,
12337,
65,
9132,
75,
17887,
45,
85,
8482,
20,
86,
20475,
979,
3528,
37,
21282,
35,
15,
72,
7340,
37,
89,
948,
33,
14304,
38,
2949,
56,
54,
20,
77,
57,
11584,
21287,
9861,
15,
65,
38022,
24,
33666,
33,
71,
66,
18,
44,
70,
49,
55,
71,
6592,
21713,
84,
57,
17,
52,
70,
52,
39,
41,
85,
57,
18,
41,
71,
65,
11584,
70,
43,
89,
19,
7792,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
47,
7801,
10,
53,
17,
52,
70,
56,
55,
41,
75,
3528,
16,
85,
57,
37094,
88,
65,
4029,
21,
64,
54,
20,
77,
40,
39,
15450,
57,
16811,
18,
56,
55,
10025,
67,
17,
52,
22296,
54,
41133,
56,
54,
25404,
40,
39,
15450,
57,
50,
12473,
64,
55,
45,
15,
64,
54,
20,
358,
54,
75,
4496,
37094,
74,
5064,
57,
335,
37094,
88,
56,
54,
19,
70,
56,
54,
20,
74,
38311,
14751,
17,
37,
571,
37094,
74,
38311,
14751,
17,
45,
20306,
54,
1120,
40,
32886,
71,
66,
18,
44,
36484,
39,
41,
85,
57,
18,
41,
71,
65,
55,
33239,
10008,
20,
335,
88,
33,
73,
11215,
53,
4914,
55,
48,
70,
56,
17,
37,
88,
57,
23199,
74,
40692,
45,
79,
57,
1731,
36484,
21713,
89,
66,
17,
53,
89,
3528,
37,
88,
57,
16811,
72,
57,
54,
2290,
57,
88,
33,
14751,
18,
45,
16,
57,
54,
48,
70,
57,
76,
24,
88,
16284,
16,
31522,
41,
75,
9374,
48,
36484,
21713,
89,
948,
18861,
17,
87,
74,
40692,
41,
89,
32304,
33,
41,
57,
72,
33,
20,
65,
18,
52,
4908,
21713,
17,
57,
16811,
85,
20475,
5842,
40,
32886,
82,
57,
48397,
89,
57,
16811,
17,
64,
55,
45,
30094,
23199,
16,
948,
33,
85,
20475,
42372,
20475,
52,
22296,
18,
40,
21287,
4029,
4496,
55,
48,
22296,
1495,
75,
3528,
24,
76,
40,
39,
15450,
57,
4090,
15,
45,
88,
33,
74,
40692,
45,
79,
57,
1495,
31298,
37094,
74,
40,
39,
45,
15,
56,
55,
49,
75,
40,
32886,
71,
66,
19662,
65,
38,
24,
73,
56,
55,
49,
40842,
1495,
89,
40,
39,
45,
85,
40,
39,
15450,
56,
55,
48,
469,
54,
6420,
3528,
16,
258,
16811,
73,
65,
9031,
64,
54,
4349,
57,
16811,
15,
1525,
3629,
56,
55,
45,
40842,
39,
10025,
56,
29767,
73,
40692,
45,
89,
40,
39,
6780,
67,
55,
40,
70,
57,
76,
37,
17,
65,
18,
41,
30094,
38022,
36484,
18,
49,
31298,
38022,
36484,
21713,
3972,
18,
33239,
10008,
20,
47,
6089,
52,
21,
40,
1677,
16,
31522,
41,
75,
9374,
48,
21287,
76,
53,
15,
40692,
41,
71,
8482,
33,
85,
979,
33,
4914,
55,
45,
71,
56,
36802,
75,
57,
23199,
86,
56,
55,
45,
89,
3528,
71,
85,
65,
10761,
75,
31522,
44,
21287,
17,
7278,
65,
23199,
84,
57,
54,
53,
74,
3528,
20,
335,
88,
33,
86,
56,
55,
45,
89,
57,
37643,
70,
57,
76,
24,
88,
16284,
71,
65,
55,
33,
79,
20475,
66,
70,
11215,
53,
89,
40692,
41,
17,
56,
55,
49,
40842,
1495,
89,
3528,
37,
9132,
37094,
88,
10008,
37,
16,
57,
18,
53,
89,
67,
8141,
87,
32304,
33,
41,
20475,
49,
30094,
4029,
74,
67,
54,
42388,
948,
33,
83,
56,
55,
10025,
67,
55,
45,
75,
40,
39,
15450,
57,
54,
306,
16284,
16,
31522,
41,
75,
9374,
48,
36484,
21713,
89,
948,
33,
2022,
18,
40,
70,
57,
21713,
20,
40,
39,
53,
89,
57,
16811,
15,
64,
39,
41,
20306,
54,
4598,
10008,
57,
75,
56,
72,
19,
70,
44,
73,
14542,
2389,
40,
86,
13752,
5162,
10008,
24,
82,
57,
23199,
86,
56,
55,
45,
89,
57,
37643,
21287,
17,
7278,
65,
23199,
549,
18,
48,
70,
56,
76,
52,
21287,
76,
37,
11400,
54,
48,
70,
56,
54,
57,
15,
40692,
40,
21287,
38,
18519,
66,
17,
52,
70,
57,
21713,
15,
40692,
33239,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
544,
17184,
15,
66,
35,
709,
43,
18,
67,
18,
9892,
20,
86,
56,
55,
50123,
948,
20,
73,
16309,
20,
46803,
18,
56,
47322,
18,
33,
71,
57,
17,
53,
13331,
54,
48,
24,
44,
73,
74,
17,
44,
5603,
72,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
73,
19,
70,
53,
76,
297,
9892,
33,
74,
40692,
49,
3099,
54,
87,
89,
43,
73,
86,
85,
56,
51,
2780,
43,
18,
32,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
5662,
24,
4914,
34278,
10,
35,
48,
519,
2149,
10262,
2149,
10262,
2389,
86,
85,
57,
9861,
17,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
20940,
72,
10262,
25241,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
9031,
56,
54,
2290,
40692,
40,
72,
31743,
15,
42,
2149,
10262,
2389,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
40,
36484,
18,
49,
20,
65,
38022,
24,
3546,
16,
71,
28758,
79,
8482,
940,
65,
18,
32,
21,
2389,
44,
86,
66,
39,
70,
22,
40,
73,
19,
7792,
70,
74,
41,
4177,
87,
86,
3646,
37000,
57,
48397,
89,
57,
16811,
6592,
37094,
33708,
33,
20306,
55,
48,
22296,
18,
53,
88,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
33,
71,
11215,
22877,
43,
76,
45,
71,
43,
9132,
85,
10989,
23,
14,
66,
21713,
77,
57,
53,
24,
79,
57,
35,
15,
88,
2394,
56,
18,
34153,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
18564,
75,
56,
1959,
88,
56,
55,
49,
40842,
26912,
40,
39,
53,
84,
57,
37094,
88,
65,
38,
2290,
57,
51,
13396,
47,
76,
57,
88,
40692,
37,
16,
57,
54,
1120,
65,
39,
10025,
56,
55,
45,
81,
57,
54,
48,
36484,
55,
53,
44601,
18,
49,
40842,
1495,
89,
40,
1925,
38,
48,
53,
37,
89,
42,
5080,
85,
56,
51,
19,
70,
57,
76,
24,
88,
3528,
49,
335,
21713,
40842,
36905,
22296,
1731,
21287,
38,
18519,
3528,
20,
335,
88,
33,
2736,
55,
45,
15,
57,
54,
15,
22296,
18,
40,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
544,
17184,
15,
66,
36905,
21,
31633,
5892,
64,
55,
45,
30094,
38,
24,
88,
43,
77,
40,
88,
9655,
20,
73,
65,
1495,
89,
67,
21713,
463,
16630,
85,
9374,
38576,
56,
18,
4507,
56,
1959,
83,
43,
2481,
71,
20475,
37,
77,
57,
50,
24,
28435,
17184,
40842,
73,
5892,
47,
5603,
86,
44,
34278,
88,
66,
41126,
5868,
15,
41,
21,
10305,
41,
29767,
52,
20,
78,
49,
89,
33,
57,
5188,
53,
57,
64,
17,
6080,
565,
57,
20,
54,
73,
41,
57,
36208,
79,
42,
8845,
41,
31298,
76,
41,
20306,
54,
405,
49,
1677,
52,
48,
89,
48,
15,
5959,
88,
66,
73,
49,
83,
54,
76,
16,
10782,
35,
56,
16,
68,
7707,
64,
50,
89,
41074,
45,
10782,
16,
29551,
57,
75,
5432,
16,
76,
51,
15,
10989,
49,
1199,
47,
57,
38,
24,
34,
48,
74,
1795,
48,
1959,
43,
57,
74,
5892,
54,
4933,
11251,
16630,
17,
54,
7707,
24954,
75,
49,
2937,
38,
24,
84,
20474,
16,
57,
461,
16,
69,
3843,
75,
89,
16501,
10913,
8898,
75,
80,
65,
54,
24,
84,
53,
73,
57,
574,
53,
79,
52,
13024,
77,
50,
16,
79,
31159,
72,
16,
44,
57,
31667,
72,
56,
54,
83,
3843,
75,
26903,
57,
77,
40,
89,
12161,
16,
7998,
16630,
83,
65,
50,
16,
41,
35990,
24,
40,
7730,
79,
36,
64,
15,
7109,
4694,
52,
89,
7397,
40,
21287,
21713,
88,
57,
17,
53,
15,
3705,
41,
69,
56,
36802,
71,
65,
907,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
18564,
75,
56,
1959,
88,
56,
55,
49,
40842,
26912,
40,
39,
53,
84,
57,
37094,
88,
65,
38,
2290,
57,
51,
13396,
47,
77,
45,
16,
56,
77,
45,
48055,
4029,
72,
57,
5080,
85,
56,
51,
19,
21287,
38,
23,
22296,
18,
53,
88,
3528,
20,
335,
18,
44,
70,
57,
76,
53,
75,
57,
23199,
15,
1525,
3886,
57,
29767,
5031,
55,
57,
75,
40,
39,
15450,
57,
16811,
82,
56,
55,
49,
44601,
18,
48,
4908,
54,
20,
2022,
18,
41,
83,
56,
55,
49,
40842,
1731,
84,
5662,
24,
86,
31743,
15,
42,
4177,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
34892,
19767,
87,
56,
3398,
18504,
37,
20,
48,
2780,
57,
76,
24,
20306,
37094,
88,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
1959,
463,
21713,
79,
20475,
53,
88,
40,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
818,
41,
85,
9892,
40,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
73,
65,
17,
46569,
65,
54,
48,
83,
13752,
40,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
15,
40692,
71,
15,
43,
48397,
11400,
54,
646,
46,
72,
33,
73,
57,
54,
1120,
40692,
40,
22,
40,
73,
2780,
64,
54,
16,
77,
16284,
82,
56,
55,
45,
89,
3705,
41,
2022,
18,
48,
83,
56,
55,
41,
85,
9892,
40,
21287,
9861,
15,
65,
38022,
24,
3546,
49,
20306,
1731,
70,
56,
55,
41,
88,
65,
18,
979,
40,
39,
45,
88,
56,
89,
15,
544,
17184,
15,
66,
36905,
21,
31633,
6052,
67,
18,
66,
1229,
76,
53,
89,
40692,
41,
17,
57,
29767,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
84,
56,
1959,
83,
43,
15,
45,
71,
65,
9861,
2022,
18,
41,
6413,
54,
17213,
57,
54,
41,
40,
65,
2481,
75,
43,
18,
15450,
57,
54,
16,
75,
948,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
17,
57,
85,
65,
18,
49,
75,
979,
16,
71,
31522,
41,
85,
9892,
20,
80,
66,
38,
979,
3528,
37,
21282,
35,
15,
72,
56,
54,
53,
88,
11215,
6052,
40,
72,
7355,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
76,
3829,
43,
54,
87,
40842,
16762,
89,
40,
32886,
71,
57,
17,
53,
11400,
54,
20,
81,
948,
40,
10,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
37094,
76,
56,
55,
53,
21282,
34,
20,
71,
66,
18,
33,
19,
40,
73,
20,
2043,
486,
37,
2389,
86,
85,
56,
51,
19,
70,
69,
8141,
23,
16309,
33,
420,
76,
53,
76,
3705,
41,
31212,
29767,
40842,
9861,
15,
64,
54,
53,
89,
43,
15,
37,
74,
36020,
41133,
56,
17,
36392,
57,
48397,
88,
56,
17,
5162,
56,
55,
45,
732,
25690,
10,
48,
15,
43221,
8924,
75,
1581,
88,
15199,
51,
74,
48,
70,
9328,
24,
1137,
15,
75,
1581,
88,
32,
23,
43,
17,
36,
10,
40,
39,
86,
70,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
48,
29767,
15,
64,
55,
57,
30094,
38,
297,
948,
24,
48,
11215,
24,
10782,
76,
37,
23047,
15,
41133,
57,
10913,
20306,
55,
41,
89,
43,
76,
37,
89,
66,
39,
12397,
47,
74,
26009,
6089,
75,
19416,
13024,
44817,
15996,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
37,
73,
67,
9861,
17,
64,
55,
49,
79,
57,
37643,
85,
50,
37094,
71,
31522,
45,
15,
48,
17,
37,
89,
67,
38,
87,
75,
43490,
6420,
31522,
33239,
56,
55,
45,
732,
25690,
10,
5188,
53,
19499,
75,
45,
10080,
1677,
19499,
16,
49,
13599,
5080,
85,
56,
51,
19,
70,
69,
8141,
23,
1797,
15,
83,
2149,
10262,
2149,
10262,
6968,
36,
4908,
39,
41,
75,
57,
73,
15,
72,
49,
17,
75,
9132,
16630,
71,
11215,
49,
89,
43,
15,
26059,
57,
77,
49,
73,
56,
55,
41,
74,
66,
17,
42388,
57,
50,
20,
71,
66,
18,
33,
19,
40,
73,
20,
7998,
52,
57,
10080,
1677,
19499,
74,
14181,
5662,
24,
71,
31743,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
20940,
72,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
6561,
15,
10,
25241,
23,
1797,
15,
83,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
35,
48,
519,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
40,
74,
45,
16,
66,
18,
49,
85,
65,
54,
53,
88,
948,
24,
46,
40692,
67,
35,
67,
55,
45,
15,
65,
2481,
75,
979,
20,
71,
66,
18,
33,
19,
40,
73,
20,
35,
28425,
44526,
6089,
52,
70,
48,
4944,
24544,
16,
53,
41576,
15,
42,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
2149,
10262,
25241,
23,
43,
17,
36,
10,
2149,
15,
83,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
49,
79,
10989,
33,
73,
65,
21713,
89,
26691,
15,
72,
56,
76,
3829,
43,
54,
87,
40842,
16762,
89,
16284,
85,
65,
34,
16,
83,
57,
34,
15,
87,
41541,
40,
10,
47,
5222,
83,
43,
4090,
23,
16309,
33,
85,
20475,
45,
11400,
29767,
81,
3705,
41,
80,
56,
55,
57,
71,
66,
17,
45,
3972,
55,
33,
15,
2202,
57,
71,
979,
3886,
67,
54,
87,
75,
26691,
1485,
64,
54,
20,
32812,
18,
66,
549,
18,
3629,
65,
570,
41,
88,
86,
70,
41,
18,
41,
16,
65,
37094,
89,
41,
88,
86,
358,
17,
75,
74,
67,
38,
70,
24,
45,
73,
23155,
5639,
16635,
57,
54,
75,
2616,
41275,
24,
45,
5631,
86,
5639,
33,
89,
56,
18,
41,
85,
65,
38,
29992,
56,
55,
41,
89,
47,
9328,
82,
40,
39,
41,
44601,
17,
75,
21,
56,
54,
49044,
57,
51,
15,
87,
41,
48361,
22,
40,
39,
41,
335,
39,
53,
88,
8482,
33,
76,
56,
54,
87,
89,
57,
51,
13396,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
72,
32,
4908,
39,
41,
75,
57,
73,
15,
1789,
37,
17,
56,
55,
45,
48055,
4029,
16993,
35,
79,
17,
65,
17,
75,
74,
42,
5631,
79,
46,
88,
40,
10,
6561,
15,
10,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
7801,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
89,
24,
86,
56,
54,
25404,
55,
17,
75,
74,
11571,
40,
87,
44,
89,
23155,
40,
72,
33,
15,
56,
55,
41,
77,
40692,
48,
24,
33666,
24,
571,
21713,
30106,
40,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
8924,
37,
5432,
88,
4462,
53,
52,
87,
38989,
88,
32,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
32886,
89,
46,
72,
23,
20306,
18,
67,
18,
43,
77,
41,
44601,
17,
53,
5173,
76,
53,
73,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
43,
76,
45,
85,
65,
50,
24,
35,
56,
54,
42372,
57,
76,
24,
88,
65,
4029,
71,
53,
17,
38432,
38475,
24,
83,
57,
50,
24,
43832,
9031,
56,
29767,
15,
53,
55,
33239,
56,
55,
45,
732,
25690,
10,
2389,
87,
89,
67,
39,
41,
85,
20475,
66,
10,
48,
2931,
46,
6089,
26009,
15922,
33,
53,
52,
88,
32,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
38729,
33,
23,
2389,
87,
71,
3528,
12114,
57,
54,
56,
24,
3546,
71,
15,
67,
7801,
21,
31633,
6052,
67,
18,
66,
1229,
21713,
3972,
18,
33239,
56,
17,
36,
84,
57,
32759,
43,
16,
3886,
64,
55,
57,
71,
56,
18,
4106,
40,
17184,
71,
28758,
335,
35,
15,
72,
55,
17,
49044,
56,
54,
20,
81,
40,
73,
19,
70,
11909,
45,
15,
11215,
24,
84,
57,
89,
20,
10917,
41582,
54,
48,
4944,
57,
5064,
20866,
9328,
75,
42955,
4090,
23,
43,
18,
45,
15,
11215,
24,
84,
57,
89,
19,
70,
5662,
24,
71,
47,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
6968,
41,
88,
2149,
23,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
979,
47,
73,
87,
89,
66,
21713,
84,
3528,
75,
74,
3705,
41,
26708,
54,
41,
23160,
7206,
72,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
73,
65,
17,
87,
28435,
73,
519,
67,
17,
24831,
67,
38022,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
13752,
41,
732,
35,
13396,
47,
74,
45,
85,
9374,
38576,
56,
18,
48,
70,
53,
37643,
21,
14114,
83,
3727,
23155,
27734,
48,
15,
7792,
3070,
44,
48055,
16,
2389,
70,
21,
44,
11012,
71,
65,
50,
2953,
2389,
56,
21,
44,
11012,
39346,
16811,
48,
56,
29767,
79,
57,
4029,
73,
5064,
49,
40842,
54,
52,
70,
42,
26001,
15039,
4090,
23,
43,
18,
45,
86,
56,
54,
19,
10,
2389,
1929,
6561,
15,
70,
2389,
87,
89,
66,
21713,
84,
40,
39,
45,
15,
68,
54,
87,
75,
3705,
41,
73,
65,
17,
87,
28435,
73,
519,
53,
17,
24831,
67,
38022,
22,
3528,
57,
85,
9374,
48,
23047,
17,
75,
21,
57,
51,
519,
13752,
41,
732,
35,
13396,
3528,
75,
74,
3705,
41,
26708,
54,
41,
23160,
7206,
72,
47,
74,
20,
75,
57,
54,
48,
70,
50,
37094,
1416,
35,
23,
70,
48,
17,
37,
36299,
23199,
16,
948,
32,
19,
40,
6500,
84,
4694,
19,
21287,
38,
23,
70,
34153,
33,
9711,
74,
15,
84,
38311,
3099,
54,
87,
20,
2389,
70,
86,
9655,
405,
8575,
48,
83,
45,
89,
40,
18,
47549,
78,
48,
17,
87,
28435,
17,
53,
74,
40,
1677,
420,
4029,
89,
67,
38,
16,
71,
948,
12473,
56,
55,
591,
10008,
20,
335,
88,
33,
30148,
48397,
88,
948,
12473,
56,
55,
591,
3528,
41133,
57,
34,
19499,
64,
21713,
6413,
18,
45,
2616,
55,
57,
79,
20475,
13155,
5662,
24,
89,
66,
21713,
84,
38729,
10262,
6561,
15,
10,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
88,
65,
18,
66,
87,
40,
73,
19,
7792,
73,
87,
4914,
34278,
70,
56,
17,
87,
71,
66,
18,
44,
24,
3546,
45,
85,
65,
34,
16,
83,
57,
34,
15,
87,
41541,
33,
73,
65,
17,
86,
23047,
1238,
83,
13752,
40,
70,
56,
1959,
732,
55,
41,
79,
57,
17,
71,
15,
948,
40,
10,
48,
1959,
732,
55,
41,
79,
57,
17,
71,
15,
2149,
57,
73,
65,
18,
33,
20,
46,
88,
42012,
44,
7206,
18,
41,
76,
20,
291,
18,
32,
22,
5064,
45,
15,
56,
55,
49,
75,
3528,
24,
76,
40,
1677,
71,
65,
9861,
2022,
18,
41,
6413,
8845,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
57,
9861,
17,
16284,
82,
56,
55,
45,
89,
3705,
41,
79,
20475,
45,
21282,
18564,
75,
49,
76,
24,
20306,
37094,
88,
40,
73,
19,
2022,
76,
41,
89,
66,
30832,
23,
43,
17,
49,
79,
28241,
19,
7792,
73,
86,
85,
57,
9861,
17,
31743,
15,
42,
5662,
24,
4914,
34278,
10,
35,
48,
78,
23,
43,
17,
57,
85,
65,
18,
49,
44601,
73,
20,
74,
57,
43,
57,
21,
28202,
55,
10246,
84,
37,
74,
6080,
46,
48,
38,
14,
316,
39,
20,
68,
40,
66,
18,
8202,
87,
75,
53,
74,
36287,
15200,
55,
22,
385,
2514,
55,
15,
1600,
198,
220,
220,
220,
366,
834,
28206,
44724,
35353,
1137,
25633,
1298,
366,
2682,
2996,
1485,
3865,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
39,
312,
9612,
29268,
12417,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
31298,
77,
34,
6456,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
27722,
27271,
7390,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
24220,
1298,
366,
2718,
13,
1558,
19707,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
43,
363,
1298,
27444,
18376,
13,
1828,
22416,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
2306,
42829,
6677,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
10782,
1824,
2306,
42829,
6677,
1298,
366,
12804,
32666,
2297,
39493,
6226,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
3163,
43171,
10430,
1298,
366,
23,
14,
1983,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
14116,
3163,
43171,
10430,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
31298,
77,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
2782,
19259,
13383,
18243,
3,
1860,
75,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
9630,
11395,
1298,
366,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
77,
23901,
29268,
1298,
366,
1415,
1821,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
358,
891,
1721,
24220,
1298,
366,
2718,
13,
1558,
19707,
2996,
20233,
2079,
5333,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
77,
18243,
27271,
5376,
1298,
366,
12804,
32666,
2297,
39493,
6226,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
358,
891,
1721,
43,
363,
1298,
27444,
18376,
13,
1828,
1238,
29334,
4089,
3559,
2425,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
31298,
77,
18254,
27271,
7390,
1298,
366,
18,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
14116,
18243,
20928,
2306,
42829,
6677,
1298,
366,
12804,
32666,
2297,
39493,
6226,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
1860,
75,
47522,
879,
27313,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
14116,
3163,
43171,
10430,
1298,
366,
2919,
14,
1270,
14,
5539,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
1860,
75,
16060,
45,
2337,
1298,
366,
16,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
46118,
18243,
1298,
366,
5247,
1600,
198,
220,
220,
220,
366,
34168,
405,
3,
34168,
405,
3,
12417,
19746,
3,
11195,
19746,
3,
9630,
11395,
1298,
13538,
198,
92,
198,
198,
2617,
62,
3847,
62,
1525,
62,
5372,
62,
312,
62,
392,
62,
38942,
879,
62,
312,
62,
261,
62,
20850,
62,
25928,
796,
1391,
198,
220,
220,
220,
366,
38942,
879,
7390,
1298,
657,
11,
198,
220,
220,
220,
366,
5372,
7390,
1298,
18,
198,
92,
198
] | 1.433817 | 53,564 |
from typing import cast
from neighborly.core.ecs import World
from neighborly.core.life_event import LifeEventRule
from neighborly.core.builtin.statuses import ElderStatus, AdultStatus
from neighborly.core.builtin.events import DeathEvent
from neighborly.core.time import SimDateTime
from neighborly.core.character import GameCharacter
death_event_rule = LifeEventRule(
"Death",
pattern_fn=get_elder_characters,
probability=0.8,
)
depart_town_rule = LifeEventRule(
"Depart",
pattern_fn=get_adult_characters,
probability=0.3,
)
| [
6738,
19720,
1330,
3350,
198,
6738,
4780,
306,
13,
7295,
13,
721,
82,
1330,
2159,
198,
6738,
4780,
306,
13,
7295,
13,
6042,
62,
15596,
1330,
5155,
9237,
31929,
198,
6738,
4780,
306,
13,
7295,
13,
18780,
259,
13,
14269,
2664,
1330,
15624,
19580,
11,
21171,
19580,
198,
6738,
4780,
306,
13,
7295,
13,
18780,
259,
13,
31534,
1330,
5830,
9237,
198,
6738,
4780,
306,
13,
7295,
13,
2435,
1330,
3184,
10430,
7575,
198,
6738,
4780,
306,
13,
7295,
13,
22769,
1330,
3776,
27275,
628,
628,
198,
22595,
62,
15596,
62,
25135,
796,
5155,
9237,
31929,
7,
198,
220,
220,
220,
366,
20148,
1600,
198,
220,
220,
220,
3912,
62,
22184,
28,
1136,
62,
68,
6499,
62,
10641,
19858,
11,
198,
220,
220,
220,
12867,
28,
15,
13,
23,
11,
198,
8,
198,
198,
10378,
433,
62,
12735,
62,
25135,
796,
5155,
9237,
31929,
7,
198,
220,
220,
220,
366,
12156,
433,
1600,
198,
220,
220,
220,
3912,
62,
22184,
28,
1136,
62,
49922,
62,
10641,
19858,
11,
198,
220,
220,
220,
12867,
28,
15,
13,
18,
11,
198,
8,
198
] | 3.071823 | 181 |
class Event:
"""
Reference:
http://www.valuedlessons.com/2008/04/events-in-python.html
https://stackoverflow.com/questions/1092531/event-system-in-python
https://www.thecodeship.com/patterns/guide-to-python-function-decorators/
https://pythonacademy.com.br/blog/domine-decorators-em-python
https://wiki.python.org/moin/PythonDecoratorLibrary
https://pythonacademy.com.br/blog/iterators-e-generators-em-python
"""
#def _kwargs_str(self):
#return ", ".join(k+"="+v.__name__ for k, v in self._signature.items())
| [
4871,
8558,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20984,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
39728,
1203,
684,
13,
785,
14,
11528,
14,
3023,
14,
31534,
12,
259,
12,
29412,
13,
6494,
198,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
6138,
507,
14,
14454,
1495,
3132,
14,
15596,
12,
10057,
12,
259,
12,
29412,
628,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
2503,
13,
1169,
40148,
1056,
13,
785,
14,
33279,
82,
14,
41311,
12,
1462,
12,
29412,
12,
8818,
12,
12501,
273,
2024,
14,
198,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
29412,
330,
324,
3065,
13,
785,
13,
1671,
14,
14036,
14,
3438,
500,
12,
12501,
273,
2024,
12,
368,
12,
29412,
198,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
15466,
13,
29412,
13,
2398,
14,
5908,
259,
14,
37906,
10707,
273,
1352,
23377,
628,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
29412,
330,
324,
3065,
13,
785,
13,
1671,
14,
14036,
14,
2676,
2024,
12,
68,
12,
8612,
2024,
12,
368,
12,
29412,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
4299,
4808,
46265,
22046,
62,
2536,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7783,
33172,
27071,
22179,
7,
74,
10,
1,
2625,
10,
85,
13,
834,
3672,
834,
329,
479,
11,
410,
287,
2116,
13557,
12683,
1300,
13,
23814,
28955,
198
] | 2.341365 | 249 |
import matplotlib.pyplot as plt
import numpy as np
from os import path
from matplotlib import cm
| [
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
28686,
1330,
3108,
198,
6738,
2603,
29487,
8019,
1330,
12067,
198
] | 3.344828 | 29 |
# pylint: skip-file
from __future__ import absolute_import, division, print_function
import datetime
import os
import shutil
import tempfile
import tornado.locale
from salt.ext.tornado.escape import utf8, to_unicode
from salt.ext.tornado.test.util import unittest, skipOnAppEngine
from salt.ext.tornado.util import unicode_type
| [
2,
279,
2645,
600,
25,
14267,
12,
7753,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
11,
7297,
11,
3601,
62,
8818,
198,
198,
11748,
4818,
8079,
198,
11748,
28686,
198,
11748,
4423,
346,
198,
11748,
20218,
7753,
198,
198,
11748,
33718,
13,
17946,
1000,
198,
6738,
8268,
13,
2302,
13,
45910,
4533,
13,
41915,
1330,
3384,
69,
23,
11,
284,
62,
46903,
1098,
198,
6738,
8268,
13,
2302,
13,
45910,
4533,
13,
9288,
13,
22602,
1330,
555,
715,
395,
11,
14267,
2202,
4677,
13798,
198,
6738,
8268,
13,
2302,
13,
45910,
4533,
13,
22602,
1330,
28000,
1098,
62,
4906,
628,
628
] | 3.23301 | 103 |
# Generated by Django 3.0.3 on 2020-08-01 14:34
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
15,
13,
18,
319,
12131,
12,
2919,
12,
486,
1478,
25,
2682,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
from mapping.models import Item, Workspace
from rest_framework import serializers
| [
6738,
16855,
13,
27530,
1330,
9097,
11,
10933,
10223,
198,
6738,
1334,
62,
30604,
1330,
11389,
11341,
628,
198
] | 4.421053 | 19 |
from weakref import WeakKeyDictionary
import pytest
from mock import Mock, patch
from nameko.containers import ServiceContainer, WorkerContext
from nameko.testing.services import dummy, entrypoint_hook
from nameko_sqlalchemy.database import (
DB_URIS_KEY,
Database,
Session,
)
from sqlalchemy import Column, String, create_engine
from sqlalchemy.engine import Engine
from sqlalchemy.ext.declarative import declarative_base
DeclBase = declarative_base(name='examplebase')
@pytest.fixture
@pytest.fixture
@pytest.fixture
| [
6738,
4939,
5420,
1330,
28788,
9218,
35,
14188,
198,
198,
11748,
12972,
9288,
198,
6738,
15290,
1330,
44123,
11,
8529,
198,
6738,
1438,
7204,
13,
3642,
50221,
1330,
4809,
29869,
11,
35412,
21947,
198,
6738,
1438,
7204,
13,
33407,
13,
30416,
1330,
31548,
11,
5726,
4122,
62,
25480,
198,
6738,
1438,
7204,
62,
25410,
282,
26599,
13,
48806,
1330,
357,
198,
220,
220,
220,
20137,
62,
4261,
1797,
62,
20373,
11,
198,
220,
220,
220,
24047,
11,
198,
220,
220,
220,
23575,
11,
198,
8,
198,
6738,
44161,
282,
26599,
1330,
29201,
11,
10903,
11,
2251,
62,
18392,
198,
6738,
44161,
282,
26599,
13,
18392,
1330,
7117,
198,
6738,
44161,
282,
26599,
13,
2302,
13,
32446,
283,
876,
1330,
2377,
283,
876,
62,
8692,
628,
198,
37835,
14881,
796,
2377,
283,
876,
62,
8692,
7,
3672,
11639,
20688,
8692,
11537,
628,
198,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
628,
628,
628,
628,
628,
198
] | 3.215116 | 172 |
#
# PySNMP MIB module COLUBRIS-802DOT11-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/COLUBRIS-802DOT11-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:25:40 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint")
colubrisMgmtV2, = mibBuilder.importSymbols("COLUBRIS-SMI", "colubrisMgmtV2")
ColubrisSSID, ColubrisRadioType, ColubrisSSIDOrNone, ColubrisDataRate, ColubrisNotificationEnable = mibBuilder.importSymbols("COLUBRIS-TC", "ColubrisSSID", "ColubrisRadioType", "ColubrisSSIDOrNone", "ColubrisDataRate", "ColubrisNotificationEnable")
coVirtualAccessPointConfigEntry, coVirtualApSSID = mibBuilder.importSymbols("COLUBRIS-VIRTUAL-AP-MIB", "coVirtualAccessPointConfigEntry", "coVirtualApSSID")
InterfaceIndex, ifDescr, ifIndex = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "ifDescr", "ifIndex")
NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance")
Integer32, Bits, IpAddress, iso, ObjectIdentity, NotificationType, Gauge32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Counter32, Unsigned32, Counter64, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "Bits", "IpAddress", "iso", "ObjectIdentity", "NotificationType", "Gauge32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Counter32", "Unsigned32", "Counter64", "TimeTicks")
TextualConvention, DisplayString, TruthValue, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue", "MacAddress")
colubris802dot11 = ModuleIdentity((1, 3, 6, 1, 4, 1, 8744, 5, 4))
if mibBuilder.loadTexts: colubris802dot11.setLastUpdated('200910200000Z')
if mibBuilder.loadTexts: colubris802dot11.setOrganization('Colubris Networks, Inc.')
if mibBuilder.loadTexts: colubris802dot11.setContactInfo('Colubris Networks Postal: 200 West Street Ste 300 Waltham, Massachusetts 02451-1121 UNITED STATES Phone: +1 781 684 0001 Fax: +1 781 684 0009 E-mail: [email protected]')
if mibBuilder.loadTexts: colubris802dot11.setDescription('The MIB module for IEEE 802.11 entities.')
coDot11ap = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1))
coDot11mac = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2))
coDot11phy = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3))
coDot11AccessPointConfigTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1), )
if mibBuilder.loadTexts: coDot11AccessPointConfigTable.setStatus('current')
if mibBuilder.loadTexts: coDot11AccessPointConfigTable.setDescription('WLAN profile configuration attributes. In tabular form to allow for multiple instances on an agent. Not supported on the M111.')
coDot11AccessPointConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1), )
coVirtualAccessPointConfigEntry.registerAugmentions(("COLUBRIS-802DOT11-MIB", "coDot11AccessPointConfigEntry"))
coDot11AccessPointConfigEntry.setIndexNames(*coVirtualAccessPointConfigEntry.getIndexNames())
if mibBuilder.loadTexts: coDot11AccessPointConfigEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11AccessPointConfigEntry.setDescription('An entry in the coDot11AccessPointConfigTable. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coVirtualWlanProfileIndex - Uniquely access a profile for this particular 802.11 interface.')
coDot11RelayBetweenStation = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11RelayBetweenStation.setStatus('current')
if mibBuilder.loadTexts: coDot11RelayBetweenStation.setDescription('Specifies if wireless client stations can exchange data with one another.')
coDot11BeaconPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11BeaconPeriod.setStatus('current')
if mibBuilder.loadTexts: coDot11BeaconPeriod.setDescription('Indicates the number of TUs that a station uses for scheduling Beacon transmissions. This value is transmitted in Beacon and Probe Response frames.')
coDot11DTIMPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11DTIMPeriod.setStatus('current')
if mibBuilder.loadTexts: coDot11DTIMPeriod.setDescription('Specifies the number of beacon intervals that elapse between transmission of Beacons frames containing a TIM element whose DTIM Count field is 0. This value is transmitted in the DTIM Period field of Beacon frames. Client stations use the DTIM to wake up from low-power mode to receive multicast traffic.')
coDot11PrivacyOptionImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PrivacyOptionImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11PrivacyOptionImplemented.setDescription('Indicates if the IEEE 802.11 WEP option is enabled.')
coDot11RSNAOptionImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAOptionImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAOptionImplemented.setDescription('Indicates if the profile is RSNA-capable.')
coDot11NumberOfUsers = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11NumberOfUsers.setStatus('current')
if mibBuilder.loadTexts: coDot11NumberOfUsers.setDescription('Indicates the number of users connected via this profile.')
coDot11AddToAssociationNotification = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AddToAssociationNotification.setStatus('current')
if mibBuilder.loadTexts: coDot11AddToAssociationNotification.setDescription('Specifies if an association trap notification is sent each time a user connects to this profile.')
coDot11PhyTxPowerAdminLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setUnits('dBm').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11PhyTxPowerAdminLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyTxPowerAdminLevel.setDescription('Specifies the transmission power of the radio.')
coDot11PhyTxPowerOperLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PhyTxPowerOperLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyTxPowerOperLevel.setDescription('Indicates the transmission power of the radio.')
coDot11CurrentSNRLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 92))).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentSNRLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentSNRLevel.setDescription('Average SNR level for all the connected client stations.')
coDot11BSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 11), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11BSSID.setStatus('current')
if mibBuilder.loadTexts: coDot11BSSID.setDescription('MAC Address assigned to this device.')
coDot11AdminMinimumDataRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 12), ColubrisDataRate()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AdminMinimumDataRate.setStatus('deprecated')
if mibBuilder.loadTexts: coDot11AdminMinimumDataRate.setDescription("Specifies the minimum transmission rate that clients stations must meet in order to connect with this profile. Client stations that are below this setting will not be able to connect. The value of this object must always be less or equal than the value of coDot11MaximumDataRate. Allowed values will change according to the state of the radio's wireless mode (coDot11CurrentOperPHYType). ieee802dot11b: Lowest, 1, 2, 5.5, 11 Mbps ieee802dot11a: Lowest, 6, 9, 12, 18, 24, 36, 48, 54 Mbps ieee802dot11g: Lowest, 6, 9, 12, 18, 24, 36, 48, 54 Mbps 11bAndg: All rates permitted.")
coDot11AdminMaximumDataRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 13), ColubrisDataRate()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AdminMaximumDataRate.setStatus('deprecated')
if mibBuilder.loadTexts: coDot11AdminMaximumDataRate.setDescription("Specifies the maximum transmission rate that clients stations must respect to connect with this profile. Clients stations that attempt to associate at a higher data rate will be refused. The value of this object must always be greater than the value of coDot11MinimumDataRate. Allowed values will change according to the state of the radio's wireless mode (coDot11CurrentOperPHYType). ieee802dot11b: 1, 2, 5.5, 11Mbs, highest ieee802dot11a: 6, 9, 12, 18, 24, 36, 48, 54 Mbps, highest ieee802dot11g: 6, 9, 12, 18, 24, 36, 48, 54 Mbps, highest 11bAndg: All rates permitted.")
coDot11HighThroughputOptionImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 1, 1, 14), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11HighThroughputOptionImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11HighThroughputOptionImplemented.setDescription('Indicates if the profile is 802.11n capable.')
coDot11AuthenticationAlgorithmsTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 2), )
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsTable.setReference('IEEE Std 802.11-1997, 7.3.1.1')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsTable.setStatus('current')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsTable.setDescription('This (conceptual) table of attributes is a set of all the authentication algorithms supported by the stations. The following are the default values and the associated algorithm: Value = 1: Open System Value = 2: Shared Key')
coDot11AuthenticationAlgorithmsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11AuthenticationAlgorithmsIndex"))
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsEntry.setDescription('An Entry (conceptual row) in the Authentication Algorithms Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11AuthenticationAlgorithmsIndex - Uniquely identify an algorithm in the table.')
coDot11AuthenticationAlgorithmsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsIndex.setDescription('The auxiliary variable used to identify instances of the columnar objects in the Authentication Algorithms Table.')
coDot11AuthenticationAlgorithm = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("openSystem", 1), ("sharedKey", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithm.setStatus('current')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithm.setDescription('Identifies all the authentication algorithms supported by the STAs. The following are the default values and the their associated algorithms. Value = 1: Open System Value = 2: Shared Key')
coDot11AuthenticationAlgorithmsEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsEnable.setStatus('current')
if mibBuilder.loadTexts: coDot11AuthenticationAlgorithmsEnable.setDescription("This attribute, when true at a station, enables the acceptance of the authentication algorithm described in the corresponding table entry in authentication frames received by the station that have odd authentication sequence numbers. The default value of this attribute is 'true' for the Open System table entry and 'false' for all other table entries.")
coDot11WEPDefaultKeysTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3), )
if mibBuilder.loadTexts: coDot11WEPDefaultKeysTable.setReference('IEEE Std 802.11-1997, 8.3.2')
if mibBuilder.loadTexts: coDot11WEPDefaultKeysTable.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKeysTable.setDescription('Conceptual table for WEP default keys. This table contains the four WEP default secret key values corresponding to the four possible KeyID values. The WEP default secret keys are logically WRITE-ONLY. Attempts to read the entries in this table will return unsuccessful status and values of null or zero. The default value of each WEP default key is null. This table is not supported on the M111.')
coDot11WEPDefaultKeysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3, 1), )
coVirtualAccessPointConfigEntry.registerAugmentions(("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKeysEntry"))
coDot11WEPDefaultKeysEntry.setIndexNames(*coVirtualAccessPointConfigEntry.getIndexNames())
if mibBuilder.loadTexts: coDot11WEPDefaultKeysEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKeysEntry.setDescription('An Entry (conceptual row) in the WEP Default Keys Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coVirtualWlanProfileIndex - Uniquely access a profile for this particular 802.11 interface.')
coDot11WEPDefaultKey1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3, 1, 1), WEPKeytype()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WEPDefaultKey1Value.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKey1Value.setDescription('A WEP default secret key1 value. Reading this attribute will always return a Zero-Length string.')
coDot11WEPDefaultKey2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3, 1, 2), WEPKeytype()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WEPDefaultKey2Value.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKey2Value.setDescription('A WEP default secret key2 value. Reading this attribute will always return a Zero-Length string.')
coDot11WEPDefaultKey3Value = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3, 1, 3), WEPKeytype()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WEPDefaultKey3Value.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKey3Value.setDescription('A WEP default secret key3 value. Reading this attribute will always return a Zero-Length string.')
coDot11WEPDefaultKey4Value = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 3, 1, 4), WEPKeytype()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WEPDefaultKey4Value.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKey4Value.setDescription('A WEP default secret key4 value. Reading this attribute will always return a Zero-Length string.')
coDot11PrivacyTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4), )
if mibBuilder.loadTexts: coDot11PrivacyTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PrivacyTable.setDescription('Group containing attributes related to IEEE 802.11 Privacy. In tabular form to allow multiple instances on an agent. This table is not supported on the M111.')
coDot11PrivacyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1), )
coVirtualAccessPointConfigEntry.registerAugmentions(("COLUBRIS-802DOT11-MIB", "coDot11PrivacyEntry"))
coDot11PrivacyEntry.setIndexNames(*coVirtualAccessPointConfigEntry.getIndexNames())
if mibBuilder.loadTexts: coDot11PrivacyEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PrivacyEntry.setDescription('An entry in the coDot11PrivacyTable Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coVirtualWlanProfileIndex - Uniquely access a profile for this particular 802.11 interface.')
coDot11PrivacyInvoked = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PrivacyInvoked.setStatus('current')
if mibBuilder.loadTexts: coDot11PrivacyInvoked.setDescription('When this attribute is TRUE, it indicates that some level of security is invoked for transmitting frames of type Data. For IEEE 802.11-1999 clients, the security mechanism used is WEP. For RSNA-capable clients, an additional variable coDot11RSNAEnabled indicates whether RSNA is enabled. If coDot11RSNAEnabled is FALSE or the MIB variable does not exist, the security mechanism invoked is WEP; if coDot11RSNAEnabled is TRUE, RSNA security mechanisms invoked are configured in the coDot11RSNAConfigTable. The default value of this attribute is FALSE.')
coDot11WEPDefaultKeyID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WEPDefaultKeyID.setReference('IEEE Std 802.11-1997, 8.3.2')
if mibBuilder.loadTexts: coDot11WEPDefaultKeyID.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPDefaultKeyID.setDescription('This attribute indicates the use of the first, second, third, or fourth element of the WEPDefaultKeys array when set to values of zero, one, two, or three. The default value of this attribute is 0.')
coDot11ExcludeUnencrypted = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ExcludeUnencrypted.setStatus('current')
if mibBuilder.loadTexts: coDot11ExcludeUnencrypted.setDescription('When this attribute is true, the STA does not indicate at the MAC service interface received MSDUs that have the WEP subfield of the Frame Control field equal to zero. When this attribute is false, the STA may accept MSDUs that have the WEP subfield of the Frame Control field equal to zero. The default value of this attribute is true.')
coDot11WEPICVErrorCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WEPICVErrorCount.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPICVErrorCount.setDescription('This counter increments when a frame is received with the WEP subfield of the Frame Control field set to one and the value of the ICV as received in the frame does not match the ICV value that is calculated for the contents of the received frame. ICV errors for TKIP are not counted in this variable but in coDot11RSNAStatsTKIPICVErrors.')
coDot11WEPExcludedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WEPExcludedCount.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPExcludedCount.setDescription('This counter increments when a frame is received with the WEP subfield of the Frame Control field set to zero and the value of coDot11ExcludeUnencrypted causes that frame to be discarded.')
coDot11RSNAEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 4, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAEnabled.setDescription('Indicates if RSNA is enabled, which means that the RSN Information Element is advertised in Beacons and Probe Responses. This object requires that coDot11PrivacyInvoked also be set to TRUE.')
coDot11AssociationTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5), )
if mibBuilder.loadTexts: coDot11AssociationTable.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationTable.setDescription('Group containing attributes related to associated stations. In tabular form to allow multiple instances on an agent. This table is not supported on the M111.')
coDot11AssociationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11AssociationIndex"))
if mibBuilder.loadTexts: coDot11AssociationEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationEntry.setDescription('An entry in the coDot11Association Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11AssociationIndex - Uniquely identify a device inside the association table.')
coDot11AssociationIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: coDot11AssociationIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationIndex.setDescription('The auxiliary variable used to identify instances of the columnar objects in the Association Table.')
coDot11StationMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationMACAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11StationMACAddress.setDescription('Unique MAC Address assigned to the device.')
coDot11StationConnectTime = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 3), Counter32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationConnectTime.setStatus('current')
if mibBuilder.loadTexts: coDot11StationConnectTime.setDescription('Elapsed time in seconds since a station has associated to this device.')
coDot11SignalLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 4), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SignalLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11SignalLevel.setDescription('Strength of the wireless signal.')
coDot11NoiseLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 5), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11NoiseLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11NoiseLevel.setDescription('Level of local background noise.')
coDot11SNR = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SNR.setStatus('current')
if mibBuilder.loadTexts: coDot11SNR.setDescription('Relative strength of the signal level compared to the noise level.')
coDot11PktsRate1 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate1.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate1.setDescription('Number of frames received at 1 Mbps.')
coDot11PktsRate2 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate2.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate2.setDescription('Number of frames received at 2 Mbps.')
coDot11PktsRate5dot5 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate5dot5.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate5dot5.setDescription('Number of frames received at 5.5 Mbps.')
coDot11PktsRate11 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate11.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate11.setDescription('Number of frames received at 11 Mbps.')
coDot11PktsRate6 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate6.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate6.setDescription('Number of frames received at 6 Mbps.')
coDot11PktsRate9 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate9.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate9.setDescription('Number of frames received at 9 Mbps.')
coDot11PktsRate12 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate12.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate12.setDescription('Number of frames received at 12 Mbps.')
coDot11PktsRate18 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate18.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate18.setDescription('Number of frames received at 18 Mbps.')
coDot11PktsRate24 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate24.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate24.setDescription('Number of frames received at 24 Mbps.')
coDot11PktsRate36 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate36.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate36.setDescription('Number of frames received at 36 Mbps.')
coDot11PktsRate48 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate48.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate48.setDescription('Number of frames received at 48 Mbps.')
coDot11PktsRate54 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsRate54.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsRate54.setDescription('Number of frames received at 54 Mbps.')
coDot11TransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 19), Unsigned32()).setUnits('500Kb/s').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11TransmitRate.setStatus('current')
if mibBuilder.loadTexts: coDot11TransmitRate.setDescription('Current transmit rate of a station.')
coDot11ReceiveRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 20), Unsigned32()).setUnits('500Kb/s').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ReceiveRate.setStatus('current')
if mibBuilder.loadTexts: coDot11ReceiveRate.setDescription('Current receive rate of a station.')
coDot11InPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11InPkts.setStatus('current')
if mibBuilder.loadTexts: coDot11InPkts.setDescription('Number of packets received from the station after the association.')
coDot11OutPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11OutPkts.setStatus('current')
if mibBuilder.loadTexts: coDot11OutPkts.setDescription('Number of packets send to the station after the association.')
coDot11InOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11InOctets.setStatus('current')
if mibBuilder.loadTexts: coDot11InOctets.setDescription('Number of octets received from the station after the association.')
coDot11OutOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11OutOctets.setStatus('current')
if mibBuilder.loadTexts: coDot11OutOctets.setDescription('Number of octets send to the station after the association.')
coDot11StationSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 25), ColubrisSSIDOrNone()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationSSID.setStatus('current')
if mibBuilder.loadTexts: coDot11StationSSID.setDescription('SSID of the associated station.')
coDot11StationName = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 26), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationName.setStatus('current')
if mibBuilder.loadTexts: coDot11StationName.setDescription('Name of the associated station.')
coDot11StationIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 27), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationIPAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11StationIPAddress.setDescription('IP address of the associated station.')
coDot11StationVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationVLAN.setStatus('current')
if mibBuilder.loadTexts: coDot11StationVLAN.setDescription('VLAN ID of the associated station. This object is always available on autonomous APs. However, on access-controller APs, this object is only available under certain conditions, when the client station is connected to a profile that is not access-controlled.')
coDot11StationLocalInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 29), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StationLocalInterface.setStatus('current')
if mibBuilder.loadTexts: coDot11StationLocalInterface.setDescription('Specifies the Local Interface where the associated station traffic will be forwarded to.')
coDot11StaHT = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 30), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaHT.setStatus('current')
if mibBuilder.loadTexts: coDot11StaHT.setDescription('Indicates that the associated station is HT.')
coDot11StaEncryptionType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("wep", 2), ("tkip", 3), ("aes", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaEncryptionType.setStatus('current')
if mibBuilder.loadTexts: coDot11StaEncryptionType.setDescription('Indicates the encryption type used by the wireless station.')
coDot11PktsTxRate1 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate1.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate1.setDescription('Number of frames transmitted at 1 Mbps.')
coDot11PktsTxRate2 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate2.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate2.setDescription('Number of frames transmitted at 2 Mbps.')
coDot11PktsTxRate5dot5 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate5dot5.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate5dot5.setDescription('Number of frames transmitted at 5.5 Mbps.')
coDot11PktsTxRate11 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate11.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate11.setDescription('Number of frames transmitted at 11 Mbps.')
coDot11PktsTxRate6 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate6.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate6.setDescription('Number of frames transmitted at 6 Mbps.')
coDot11PktsTxRate9 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 37), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate9.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate9.setDescription('Number of frames transmitted at 9 Mbps.')
coDot11PktsTxRate12 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 38), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate12.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate12.setDescription('Number of frames transmitted at 12 Mbps.')
coDot11PktsTxRate18 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 39), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate18.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate18.setDescription('Number of frames transmitted at 18 Mbps.')
coDot11PktsTxRate24 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 40), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate24.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate24.setDescription('Number of frames transmitted at 24 Mbps.')
coDot11PktsTxRate36 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 41), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate36.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate36.setDescription('Number of frames transmitted at 36 Mbps.')
coDot11PktsTxRate48 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 42), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate48.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate48.setDescription('Number of frames transmitted at 48 Mbps.')
coDot11PktsTxRate54 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 5, 1, 43), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PktsTxRate54.setStatus('current')
if mibBuilder.loadTexts: coDot11PktsTxRate54.setDescription('Number of frames transmitted at 54 Mbps.')
coDot11WDSPortTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6), )
if mibBuilder.loadTexts: coDot11WDSPortTable.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortTable.setDescription('Conceptual table for the local mesh links. This table contains the six local mesh MAC address. This table is not supported on the M111.')
coDot11WDSPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11WDSPortIndex"))
if mibBuilder.loadTexts: coDot11WDSPortEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortEntry.setDescription('An Entry (conceptual row) in the WDS Port Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11WDSPortIndex - Uniquely identify a local mesh link inside the local mesh table.')
coDot11WDSPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6)))
if mibBuilder.loadTexts: coDot11WDSPortIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortIndex.setDescription('The auxiliary variable used to identify instances of local mesh links.')
coDot11WDSPortMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 2), MacAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11WDSPortMacAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortMacAddress.setDescription('MAC address of the remote device on the other side of the local mesh link.')
coDot11WDSPortCurrentRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortCurrentRate.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortCurrentRate.setDescription('Current rate of the local mesh link.')
coDot11WDSPortSNRLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortSNRLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortSNRLevel.setDescription('Relative strength of the signal level compared to the noise level.')
coDot11WDSPortTxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortTxPackets.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortTxPackets.setDescription('Number of packets transmitted on this local mesh link.')
coDot11WDSPortTxDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortTxDropped.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortTxDropped.setDescription('Number of packets that could not be transmitted on this local mesh link.')
coDot11WDSPortTxErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortTxErrors.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortTxErrors.setDescription('Number of packets that could not be sent due to the following reasons: Rx retry limit exceeded or Tx discarded because of wrong SA.')
coDot11WDSPortRxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortRxPackets.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortRxPackets.setDescription('Number of packets received on this local mesh link.')
coDot11WDSPortRxDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortRxDropped.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortRxDropped.setDescription('Number of packets that were dropped on this local mesh link due to a lack of resources.')
coDot11WDSPortRxErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WDSPortRxErrors.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSPortRxErrors.setDescription('Number of packets that could not be received due to the following reasons: Rx discards WEP excluded, Rx discards WEP ICV error, Rx MSG in bad MSG fragments, Rx MSG in MSG fragments Rx WEP undecryptable, Rx FCS errors.')
coDot11ScanTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7), )
if mibBuilder.loadTexts: coDot11ScanTable.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanTable.setDescription('Conceptual table for the AP scanning results. In tabular form to allow multiple instances on an agent. This table is not supported on the WCB-200.')
coDot11ScanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11ScanIndex"))
if mibBuilder.loadTexts: coDot11ScanEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanEntry.setDescription('An Entry (conceptual row) in the AP scan Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11ScanIndex - Uniquely identify an AP in the scan Table.')
coDot11ScanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: coDot11ScanIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanIndex.setDescription('The auxiliary variable used to identify instances of AP in the scan table.')
coDot11ScanMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanMacAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanMacAddress.setDescription('The wireless MAC address of the remote device.')
coDot11ScanChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanChannel.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanChannel.setDescription('The operating frequency channel of the remote device.')
coDot11ScanSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 4), ColubrisSSIDOrNone()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanSSID.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanSSID.setDescription('The Service Set ID broadcast by the remote device.')
coDot11ScanSignalLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 5), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanSignalLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanSignalLevel.setDescription('Strength of the wireless signal.')
coDot11ScanNoiseLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 6), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanNoiseLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanNoiseLevel.setDescription('Level of local background noise.')
coDot11ScanSNR = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanSNR.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanSNR.setDescription('Relative strength of the signal level compared to the noise level.')
coDot11ScanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("authorized", 1), ("unauthorized", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanStatus.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanStatus.setDescription("The status of the scanned device. 'unknown': The device could not determine the status of the scanned AP. 'authorized': The AP is part of the authorized list of APs. 'unauthorized': The AP is not part of the authorized list of APs.")
coDot11ScanPHYType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("ieee802dot11a", 1), ("ieee802dot11b", 2), ("ieee802dot11g", 3), ("ieee802dot11na", 4), ("ieee802dot11ng", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanPHYType.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanPHYType.setDescription('Radio type used by the device.')
coDot11ScanInactivityTime = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 10), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanInactivityTime.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanInactivityTime.setDescription('Elapsed time since the last beacon was seen for this device.')
coDot11ScanNetworkType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ess", 1), ("ibss", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanNetworkType.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanNetworkType.setDescription('Network type used by the device.')
coDot11ScanSecurity = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 7, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("wep", 2), ("wpa", 3), ("wpa2", 4), ("wpaAndWpa2", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ScanSecurity.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanSecurity.setDescription('Indicates the WPA/Encryption type used by the wireless station.')
coDot11ScanEnabled = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11ScanEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanEnabled.setDescription("Specifies if periodic scan should be performed or not. Not supported on the WCB-200. 'enable': Enables periodic scans on this device. 'disable': Disable periodic scans on this device.")
coDot11ScanPeriodicity = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 3600)).clone(600)).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11ScanPeriodicity.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanPeriodicity.setDescription("Specifies the time between periodic scans. Each time a scan operation is performed, only one frequency is scanned. A fair amount of periodic scans are needed in order complete a full scan of all the supported frequencies. This parameter only applies when coDot11ScanEnabled is set to 'enable'. Not supported on the M111.")
coDot11ScanAuthorizedListURL = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 10), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11ScanAuthorizedListURL.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanAuthorizedListURL.setDescription('Specifies the URL of the file that contains a list of all authorized access points. If no valid URL is present in this field, the AP will not be able to compute the rogue table. The format of this file is XML. Each entry in the file is composed of two items: MAC address and SSID. Each entry should appear on a new line. Not supported on the M111.')
coDot11UnauthorizedAPNotificationEnabled = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 11), ColubrisNotificationEnable().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotificationEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotificationEnabled.setDescription('Specifies if periodic coDot11UnauthorizedAPNotification events are generated. Not supported on the M111.')
coDot11UnauthorizedAPNotificationInterval = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000000))).setUnits('minutes').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotificationInterval.setStatus('current')
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotificationInterval.setDescription('Interval in minutes between unauthorized AP notifications. Not supported on the M111.')
coDot11AssociationNotificationEnabled = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 13), ColubrisNotificationEnable().clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AssociationNotificationEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationNotificationEnabled.setDescription('Specifies if coDot11AssociationNotification events are generated. Not supported on the M111.')
coDot11AssociationNotificationInterval = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setUnits('minutes').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AssociationNotificationInterval.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationNotificationInterval.setDescription('Interval in minutes between association notifications. Setting this attribute to 0 will disable periodic sending of association notification. Not supported on the M111.')
coDot11StationHTTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15), )
if mibBuilder.loadTexts: coDot11StationHTTable.setStatus('current')
if mibBuilder.loadTexts: coDot11StationHTTable.setDescription('Group containing attributes related to HT stations. This table is not supported on the WCB-200.')
coDot11StationHTEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1), )
coDot11AssociationEntry.registerAugmentions(("COLUBRIS-802DOT11-MIB", "coDot11StationHTEntry"))
coDot11StationHTEntry.setIndexNames(*coDot11AssociationEntry.getIndexNames())
if mibBuilder.loadTexts: coDot11StationHTEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11StationHTEntry.setDescription('An entry in the station HT Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11AssociationIndex - Uniquely identify a device inside the association table.')
coDot11StaTransmitMCS = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaTransmitMCS.setStatus('current')
if mibBuilder.loadTexts: coDot11StaTransmitMCS.setDescription('MCS used while trasnmitting the last frame to the HT station.')
coDot11StaReceiveMCS = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaReceiveMCS.setStatus('current')
if mibBuilder.loadTexts: coDot11StaReceiveMCS.setDescription('MCS used by the last frame received from the HT station.')
coDot11StaChannelWidth = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cw20MHz", 1), ("cw40MHz", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaChannelWidth.setStatus('current')
if mibBuilder.loadTexts: coDot11StaChannelWidth.setDescription('Channel width used by the wireless client.')
coDot11StaShortGI = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaShortGI.setStatus('current')
if mibBuilder.loadTexts: coDot11StaShortGI.setDescription('Indicates if the wireless client is using short GI.')
coDot11StaPktsTxMCS0 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS0.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS0.setDescription('Number of transmitted frames while using MCS0.')
coDot11StaPktsTxMCS1 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS1.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS1.setDescription('Number of transmitted frames while using MCS1.')
coDot11StaPktsTxMCS2 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS2.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS2.setDescription('Number of transmitted frames while using MCS2.')
coDot11StaPktsTxMCS3 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS3.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS3.setDescription('Number of transmitted frames while using MCS3.')
coDot11StaPktsTxMCS4 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS4.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS4.setDescription('Number of transmitted frames while using MCS4.')
coDot11StaPktsTxMCS5 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS5.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS5.setDescription('Number of transmitted frames while using MCS5.')
coDot11StaPktsTxMCS6 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS6.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS6.setDescription('Number of transmitted frames while using MCS6.')
coDot11StaPktsTxMCS7 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS7.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS7.setDescription('Number of transmitted frames while using MCS7.')
coDot11StaPktsTxMCS8 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS8.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS8.setDescription('Number of transmitted frames while using MCS8.')
coDot11StaPktsTxMCS9 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS9.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS9.setDescription('Number of transmitted frames while using MCS9.')
coDot11StaPktsTxMCS10 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS10.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS10.setDescription('Number of transmitted frames while using MCS10.')
coDot11StaPktsTxMCS11 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS11.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS11.setDescription('Number of transmitted frames while using MCS11.')
coDot11StaPktsTxMCS12 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS12.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS12.setDescription('Number of transmitted frames while using MCS12.')
coDot11StaPktsTxMCS13 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS13.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS13.setDescription('Number of transmitted frames while using MCS13.')
coDot11StaPktsTxMCS14 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS14.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS14.setDescription('Number of transmitted frames while using MCS14.')
coDot11StaPktsTxMCS15 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsTxMCS15.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsTxMCS15.setDescription('Number of transmitted frames while using MCS15.')
coDot11StaPktsRxMCS0 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS0.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS0.setDescription('Number of received frames while using MCS0.')
coDot11StaPktsRxMCS1 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS1.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS1.setDescription('Number of received frames while using MCS1.')
coDot11StaPktsRxMCS2 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS2.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS2.setDescription('Number of received frames while using MCS2.')
coDot11StaPktsRxMCS3 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS3.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS3.setDescription('Number of received frames while using MCS3.')
coDot11StaPktsRxMCS4 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS4.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS4.setDescription('Number of received frames while using MCS4.')
coDot11StaPktsRxMCS5 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS5.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS5.setDescription('Number of received frames while using MCS5.')
coDot11StaPktsRxMCS6 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS6.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS6.setDescription('Number of received frames while using MCS6.')
coDot11StaPktsRxMCS7 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS7.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS7.setDescription('Number of received frames while using MCS7.')
coDot11StaPktsRxMCS8 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS8.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS8.setDescription('Number of received frames while using MCS8.')
coDot11StaPktsRxMCS9 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS9.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS9.setDescription('Number of received frames while using MCS9.')
coDot11StaPktsRxMCS10 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS10.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS10.setDescription('Number of received frames while using MCS10.')
coDot11StaPktsRxMCS11 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS11.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS11.setDescription('Number of received frames while using MCS11.')
coDot11StaPktsRxMCS12 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS12.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS12.setDescription('Number of received frames while using MCS12.')
coDot11StaPktsRxMCS13 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS13.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS13.setDescription('Number of received frames while using MCS13.')
coDot11StaPktsRxMCS14 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS14.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS14.setDescription('Number of received frames while using MCS14.')
coDot11StaPktsRxMCS15 = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 15, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11StaPktsRxMCS15.setStatus('current')
if mibBuilder.loadTexts: coDot11StaPktsRxMCS15.setDescription('Number of received frames while using MCS15.')
coDot11NbDetectedStation = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11NbDetectedStation.setStatus('current')
if mibBuilder.loadTexts: coDot11NbDetectedStation.setDescription('Number of stations in the detected station table.')
coDot11DetectedStationTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17), )
if mibBuilder.loadTexts: coDot11DetectedStationTable.setStatus('current')
if mibBuilder.loadTexts: coDot11DetectedStationTable.setDescription('Group containing attributes related to stations sending probe request. This table is not supported on the M111.')
coDot11DetectedStationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11DetStaIndex"))
if mibBuilder.loadTexts: coDot11DetectedStationEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11DetectedStationEntry.setDescription('An entry in the detected station Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11DetStaIndex - Uniquely identify a device inside the detected station table.')
coDot11DetStaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: coDot11DetStaIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaIndex.setDescription('The auxiliary variable used to identify instances of the columnar objects in the detected station table.')
coDot11DetStaMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaMacAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaMacAddress.setDescription('MAC address of the wireless client.')
coDot11DetStaChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaChannel.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaChannel.setDescription('The operating frequency channel when the last probe request was received.')
coDot11DetStaSignalLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 4), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaSignalLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaSignalLevel.setDescription('Strength of the wireless signal.')
coDot11DetStaNoiseLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 5), Integer32()).setUnits('dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaNoiseLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaNoiseLevel.setDescription('Level of local background noise.')
coDot11DetStaNbProbeReq = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaNbProbeReq.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaNbProbeReq.setDescription('Total number of probes request received from this client.')
coDot11DetStaRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 7), Unsigned32()).setUnits('500Kb/s').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaRate.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaRate.setDescription('Receive rate of the last probe request received from this client.')
coDot11DetStaSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 8), ColubrisSSID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaSSID.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaSSID.setDescription('SSID contained in the last probe request received from this client.')
coDot11DetStaTimeDiscovered = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 9), Counter32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaTimeDiscovered.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaTimeDiscovered.setDescription('Elapsed time in seconds since the first probe has been received from this client.')
coDot11DetStaTimeLastSeen = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 1, 17, 1, 10), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DetStaTimeLastSeen.setStatus('current')
if mibBuilder.loadTexts: coDot11DetStaTimeLastSeen.setDescription('Elapsed time in seconds since the last probe has been received from this client.')
coDot11OperationTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1), )
if mibBuilder.loadTexts: coDot11OperationTable.setStatus('current')
if mibBuilder.loadTexts: coDot11OperationTable.setDescription('Group contains MAC attributes pertaining to the operation of the MAC. In tabular form to allow multiple instances on an agent.')
coDot11OperationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11OperationEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11OperationEntry.setDescription('An entry in the coDot11OperationEntry Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11MACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MACAddress.setStatus('current')
if mibBuilder.loadTexts: coDot11MACAddress.setDescription('Unique MAC Address assigned to the STA.')
coDot11RTSThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(128, 1540), ValueRangeConstraint(2347, 2347), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11RTSThreshold.setStatus('current')
if mibBuilder.loadTexts: coDot11RTSThreshold.setDescription('Specifies the number of octets in an MPDU, below which an RTS/CTS handshake is not performed. An RTS/CTS handshake is performed at the beginning of any frame exchange sequence where the MPDU is of type Data or Management, the MPDU has an individual address in the Address1 field, and the length of the MPDU is greater than this threshold. (For additional details, refer to Table 21 in 9.7.) Setting this attribute to be larger than the maximum MSDU size has the effect of turning off the RTS/CTS handshake for frames of Data or Management type transmitted by this STA. The default value of this attribute is 2347.')
coDot11ShortRetryLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ShortRetryLimit.setStatus('current')
if mibBuilder.loadTexts: coDot11ShortRetryLimit.setDescription('Indicates the maximum number of transmission attempts of a frame, the length of which is less than or equal to coDot11RTSThreshold, that are made before a failure condition is indicated. The default value of this attribute is 7.')
coDot11LongRetryLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11LongRetryLimit.setStatus('current')
if mibBuilder.loadTexts: coDot11LongRetryLimit.setDescription('Indicates the maximum number of transmission attempts of a frame, the length of which is greater than coDot11RTSThreshold, that are made before a failure condition is indicated. The default value of this attribute is 4.')
coDot11FragmentationThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(256, 2346))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FragmentationThreshold.setStatus('current')
if mibBuilder.loadTexts: coDot11FragmentationThreshold.setDescription('Indicates the current maximum size, in octets, of the MPDU that may be delivered to the PHY. An MSDU is broken down into fragments if its size exceeds the value of this attribute after adding MAC headers and trailers. An MSDU or MMPDU is fragmented when the resulting frame has an individual address in the Address1 field, and the length of the frame is larger than this threshold. The default value for this attribute is the lesser of 2346 or the aMPDUMaxLength of the attached PHY and will never exceed the lesser of 2346 or the aMPDUMaxLength of the attached PHY. The value of this attribute will never be less than 256. ')
coDot11MaxTransmitMSDULifetime = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MaxTransmitMSDULifetime.setStatus('current')
if mibBuilder.loadTexts: coDot11MaxTransmitMSDULifetime.setDescription('Elapsed time in TU after the initial transmission of an MSDU, after which further attempts to transmit the MSDU are terminated. The default value of this attribute is 512.')
coDot11MaxReceiveLifetime = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MaxReceiveLifetime.setStatus('current')
if mibBuilder.loadTexts: coDot11MaxReceiveLifetime.setDescription('Elapsed time in TU, after the initial reception of a fragmented MMPDU or MSDU, after which further attempts to reassemble the MMPDU or MSDU is terminated. The default value is 512.')
coDot11ManufacturerID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ManufacturerID.setStatus('current')
if mibBuilder.loadTexts: coDot11ManufacturerID.setDescription("The name of the manufacturer. It may include additional information at the manufacturer's discretion. The default value of this attribute is null.")
coDot11ProductID = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ProductID.setStatus('current')
if mibBuilder.loadTexts: coDot11ProductID.setDescription("An identifier that is unique to the manufacturer. It may include additional information at the manufacturer's discretion. The default value is null.")
coDot11RadioType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 10), ColubrisRadioType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RadioType.setStatus('current')
if mibBuilder.loadTexts: coDot11RadioType.setDescription('Identify the wireless device inside the HP product.')
coDot11StationDetectionState = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 1, 1, 11), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11StationDetectionState.setStatus('current')
if mibBuilder.loadTexts: coDot11StationDetectionState.setDescription("The desired state of the station detection process. 'true': Analyze probe requests. 'false': Do not analyze probe requests.")
coDot11CountersTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2), )
if mibBuilder.loadTexts: coDot11CountersTable.setStatus('current')
if mibBuilder.loadTexts: coDot11CountersTable.setDescription('Group containing attributes that are MAC counters. In tabular form to allow multiple instance on an agent.')
coDot11CountersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11CountersEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11CountersEntry.setDescription('An entry in the coDot11CountersEntry Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11TransmittedFragmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11TransmittedFragmentCount.setStatus('current')
if mibBuilder.loadTexts: coDot11TransmittedFragmentCount.setDescription('This counter is incremented for an acknowledged MPDU with an individual address in the address 1 field or an MPDU with a multicast address in the address 1 field of type Data or Management.')
coDot11MulticastTransmittedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MulticastTransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts: coDot11MulticastTransmittedFrameCount.setDescription('This counter is incremented only when the multicast bit is set in the destination MAC address of a successfully transmitted MSDU. When operating as a STA in an ESS, where these frames are directed to the AP, this implies having received an acknowledgment to all associated MPDUs.')
coDot11FailedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FailedCount.setStatus('current')
if mibBuilder.loadTexts: coDot11FailedCount.setDescription('This counter is incremented when an MSDU is not transmitted successfully due to the number of transmit attempts exceeding either the coDot11ShortRetryLimit or coDot11LongRetryLimit.')
coDot11RetryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RetryCount.setStatus('current')
if mibBuilder.loadTexts: coDot11RetryCount.setDescription('This counter is incremented when an MSDU is successfully transmitted after one or more retransmissions.')
coDot11MultipleRetryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MultipleRetryCount.setStatus('current')
if mibBuilder.loadTexts: coDot11MultipleRetryCount.setDescription('This counter is incremented when an MSDU is successfully transmitted after more than one retransmission.')
coDot11FrameDuplicateCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FrameDuplicateCount.setStatus('current')
if mibBuilder.loadTexts: coDot11FrameDuplicateCount.setDescription('This counter is incremented when a frame is received that the Sequence Control field indicates is a duplicate.')
coDot11RTSSuccessCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RTSSuccessCount.setStatus('current')
if mibBuilder.loadTexts: coDot11RTSSuccessCount.setDescription('This counter is incremented when a CTS is received in response to an RTS.')
coDot11RTSFailureCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RTSFailureCount.setStatus('current')
if mibBuilder.loadTexts: coDot11RTSFailureCount.setDescription('This counter is incremented when a CTS is not received in response to an RTS.')
coDot11ACKFailureCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ACKFailureCount.setStatus('current')
if mibBuilder.loadTexts: coDot11ACKFailureCount.setDescription('This counter is incremented when an ACK is not received when expected.')
coDot11ReceivedFragmentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ReceivedFragmentCount.setStatus('current')
if mibBuilder.loadTexts: coDot11ReceivedFragmentCount.setDescription('This counter is incremented for each successfully received MPDU of type Data or Management.')
coDot11MulticastReceivedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11MulticastReceivedFrameCount.setStatus('current')
if mibBuilder.loadTexts: coDot11MulticastReceivedFrameCount.setDescription('This counter is incremented when a MSDU is received with the multicast bit set in the destination MAC address.')
coDot11FCSErrorCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FCSErrorCount.setStatus('current')
if mibBuilder.loadTexts: coDot11FCSErrorCount.setDescription('This counter is incremented when an FCS error is detected in a received MPDU.')
coDot11TransmittedFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11TransmittedFrameCount.setStatus('current')
if mibBuilder.loadTexts: coDot11TransmittedFrameCount.setDescription('This counter is incremented for each successfully transmitted MSDU.')
coDot11WEPUndecryptableCount = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 2, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11WEPUndecryptableCount.setStatus('current')
if mibBuilder.loadTexts: coDot11WEPUndecryptableCount.setDescription("This counter is incremented when a frame is received with the WEP subfield of the Frame Control field set to one, and the WEPOn value for the key mapped to the TA's MAC address indicates that the frame should not have been encrypted or that frame is discarded due to the receiving STA not implementing the privacy option.")
coDot11PhyOperationTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1), )
if mibBuilder.loadTexts: coDot11PhyOperationTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOperationTable.setDescription('PHY level attributes concerned with operation. In tabular form to allow multiple instances on an agent.')
coDot11PhyOperationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyOperationEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOperationEntry.setDescription('An entry in the coDot11PhyOperation Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11PHYType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 7))).clone(namedValues=NamedValues(("fhss", 1), ("dsss", 2), ("irbaseband", 3), ("ofdm", 4), ("ht", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PHYType.setStatus('current')
if mibBuilder.loadTexts: coDot11PHYType.setDescription('This is an 8-bit integer value that identifies the PHY type supported by the attached PLCP and PMD. Currently defined values and their corresponding PHY types are: FHSS 2.4 GHz = 01 , DSSS 2.4 GHz = 02, IR Baseband = 03, OFDM 5 GHz = 04.')
coDot11CurrentRegDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentRegDomain.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentRegDomain.setDescription('The current regulatory domain this instance of the PMD is supporting. This object corresponds to one of the RegDomains listed in coDot11RegDomainsSupported.')
coDot11TempType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("tempType1", 1), ("tempType2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11TempType.setStatus('current')
if mibBuilder.loadTexts: coDot11TempType.setDescription("There are different operating temperature requirements dependent on the anticipated environmental conditions. This attribute describes the current PHY's operating temperature range capability. Currently defined values and their corresponding temperature ranges are: Type 1 = X'01'-Commercial range of 0 to 40 degrees C, Type 2 = X'02'-Industrial range of -30 to 70 degrees C.")
coDot11CurrentOperFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentOperFrequency.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentOperFrequency.setDescription('The current operating frequency channel of the radio.')
coDot11CurrentOperPHYType = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ieee802dot11a", 1), ("ieee802dot11b", 2), ("ieee802dot11g", 3), ("ieee802dot11bAndg", 4), ("ieee802dot11aTurbo", 5), ("ieee802dot11n", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentOperPHYType.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentOperPHYType.setDescription('The current operating PHY type of the radio.')
coDot11Sensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("large", 1), ("medium", 2), ("small", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11Sensitivity.setStatus('current')
if mibBuilder.loadTexts: coDot11Sensitivity.setDescription('Receiver sensitivity of the radio.')
coDot11RadioEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11RadioEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11RadioEnabled.setDescription('When True the radio is enabled.')
coDot11OperatingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("accessPointAndWirelessLinks", 1), ("accessPointOnly", 2), ("wirelessLinksOnly", 3), ("monitor", 4), ("sensor", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11OperatingMode.setStatus('current')
if mibBuilder.loadTexts: coDot11OperatingMode.setDescription('Operating mode of the radio. Available options are: Access point and Wireless links: Standard operating mode provides support for all wireless functions. Access point only: Only provides access point functionality, local mesh links cannot be created. Wireless links only: Only provides local mesh functionality. Wireless client stations cannot connect. Monitor: Disables access point and local mesh functions. Use this option for continuous scanning across all channels in all supported wireless modes. Sensor: Enables RF sensor functionality on this radio. Operation of this feature requires that the appropriate license is installed.')
coDot11AutoChannelEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 9), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AutoChannelEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11AutoChannelEnabled.setDescription('When True the Auto Channel option is enabled.')
coDot11AutoChannelInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 60, 120, 240, 480, 720, 1440))).clone(namedValues=NamedValues(("disable", 0), ("timeOfDay", 1), ("oneHour", 60), ("twoHours", 120), ("fourHours", 240), ("eightHours", 480), ("twelveHours", 720), ("tweentyFourHours", 1440)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AutoChannelInterval.setStatus('current')
if mibBuilder.loadTexts: coDot11AutoChannelInterval.setDescription('Time interval, in minutes, between auto rescanning of the channels. Maximum is 1440 minutes (24 hours). A value of zero disables automatic rescanning of channels, the radio will automatically select a channel when the interface initializes and utilize that channel as long as the interface is operational.')
coDot11AutoPowerEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 11), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AutoPowerEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11AutoPowerEnabled.setDescription('When True the Auto Power option is enabled.')
coDot11AutoPowerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(60, 120, 240, 480, 720, 1440))).clone(namedValues=NamedValues(("oneHour", 60), ("twoHours", 120), ("fourHours", 240), ("eightHours", 480), ("twelveHours", 720), ("tweentyFourHours", 1440)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11AutoPowerInterval.setStatus('current')
if mibBuilder.loadTexts: coDot11AutoPowerInterval.setDescription('Time interval, in minutes, between auto rescanning of the channels. Maximum is 1440 minutes (24 hours).')
coDot11PhyAntennaTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 2), )
if mibBuilder.loadTexts: coDot11PhyAntennaTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyAntennaTable.setDescription('Group of attributes for PhyAntenna. In tabular form to allow multiple instances on an agent.')
coDot11PhyAntennaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyAntennaEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyAntennaEntry.setDescription('An entry in the coDot11PhyAntenna Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11CurrentTxAntenna = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentTxAntenna.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentTxAntenna.setDescription('The current antenna being used to transmit. This value is one of the values appearing in coDot11SupportedTxAntenna. This may be used by a management agent to control which antenna is used for transmission.')
coDot11DiversitySupport = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("fixedlist", 1), ("notsupported", 2), ("dynamic", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DiversitySupport.setStatus('current')
if mibBuilder.loadTexts: coDot11DiversitySupport.setDescription("This implementation's support for diversity, encoded as: X'01': Diversity is available and is performed over the fixed list of antennas defined in coDot11DiversitySelectionRx. X'02': Diversity is not supported. X'03': Diversity is supported and control of diversity is also available, in which case the attribute coDot11DiversitySelectionRx can be dynamically modified by the LME.")
coDot11CurrentRxAntenna = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentRxAntenna.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentRxAntenna.setDescription('The current antenna being used to receive, if the coDot11 DiversitySupport indicates that diversity is not supported. The selected antenna shall be one of the antennae marked for receive in the coDot11AntennasListTable.')
coDot11PhyConfigTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 3), )
if mibBuilder.loadTexts: coDot11PhyConfigTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyConfigTable.setDescription('PHY configuration attributes. In tabular form to allow multiple instances on an agent.')
coDot11PhyConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyConfigEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyConfigEntry.setDescription('An entry in the coDot11PhyConfig Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11PhyAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11PhyAdminStatus.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyAdminStatus.setDescription("The desired state of the radio interface. 'up': Sets the radio interface to be ready to transmit and receive. 'down': Stops the transmission and reception of packets on the interface.")
coDot11PhyOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11PhyOperStatus.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOperStatus.setDescription("The current state of the radio interface. 'up': The radio interface is ready to ready to transmit and receive. 'down': The radio is not able to transmit or receive on the interface.")
coDot11PhyDSSSTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 4), )
if mibBuilder.loadTexts: coDot11PhyDSSSTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyDSSSTable.setDescription('Entry of attributes for coDot11PhyDSSSEntry. In tabular form to allow multiple instances on an agent. This table only apply when in DSSS 2.4 GHz range')
coDot11PhyDSSSEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyDSSSEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyDSSSEntry.setDescription('An entry in the coDot11PhyDSSSEntry Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11CurrentChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 14))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11CurrentChannel.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentChannel.setDescription('The desired operating frequency channel of the DSSS PHY. Valid channel numbers are as defined in 15.4.6.2.')
coDot11CCAModeSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CCAModeSupported.setStatus('current')
if mibBuilder.loadTexts: coDot11CCAModeSupported.setDescription('coDot11CCAModeSupported is a bit-significant value, representing all of the CCA modes supported by the PHY. Valid values are: energy detect only (ED_ONLY) = 01 carrier sense only (CS_ONLY) = 02 carrier sense and energy detect (ED_and_CS)= 04 Or the logical sum of any of these values.')
coDot11CurrentCCAMode = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("edonly", 1), ("csonly", 2), ("edandcs", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentCCAMode.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentCCAMode.setDescription('The current CCA method in operation. Valid values are: energy detect only (edonly) = 01 carrier sense only (csonly) = 02 carrier sense and energy detect (edandcs)= 04')
coDot11RegDomainsSupportedTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 5), )
if mibBuilder.loadTexts: coDot11RegDomainsSupportedTable.setStatus('current')
if mibBuilder.loadTexts: coDot11RegDomainsSupportedTable.setDescription("There are different operational requirements dependent on the regulatory domain. This attribute list describes the regulatory domains the PLCP and PMD support in this implementation. Currently defined values and their corresponding Regulatory Domains are: FCC (USA) = X'10' DOC (Canada) = X'20' ETSI (most of Europe) = X'30' Spain = X'31' France = X'32' Japan = X'41' ")
coDot11RegDomainsSupportedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11RegDomainsSupportIndex"))
if mibBuilder.loadTexts: coDot11RegDomainsSupportedEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11RegDomainsSupportedEntry.setDescription('An entry in the coDot11RegDomainsSupported Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11RegDomainsSupportIndex - Uniquely specifies the regulatory domain in the table.')
coDot11RegDomainsSupportIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: coDot11RegDomainsSupportIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11RegDomainsSupportIndex.setDescription('The auxiliary variable used to identify instances of the columnar objects in the RegDomainsSupported Table.')
coDot11RegDomainsSupportValue = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(16, 32, 48, 49, 50, 65))).clone(namedValues=NamedValues(("fcc", 16), ("doc", 32), ("etsi", 48), ("spain", 49), ("france", 50), ("japan", 65)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RegDomainsSupportValue.setStatus('current')
if mibBuilder.loadTexts: coDot11RegDomainsSupportValue.setDescription("There are different operational requirements dependent on the regulatory domain. This attribute list describes the regulatory domains the PLCP and PMD support in this implementation. Currently defined values and their corresponding Regulatory Domains are: FCC (USA) = X'10' DOC (Canada) = X'20' ETSI (most of Europe) = X'30' Spain = X'31' France = X'32' Japan = X'41' ")
coDot11AntennasListTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6), )
if mibBuilder.loadTexts: coDot11AntennasListTable.setStatus('current')
if mibBuilder.loadTexts: coDot11AntennasListTable.setDescription('This table represents the list of antennae. An antenna can be marked to be capable of transmitting, receiving, and/or for participation in receive diversity. Each entry in this table represents a single antenna with its properties. The maximum number of antennae that can be contained in this table is 255.')
coDot11AntennasListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11AntennaListIndex"))
if mibBuilder.loadTexts: coDot11AntennasListEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11AntennasListEntry.setDescription('An entry in the coDot11AntennasListTable, representing the properties of a single antenna. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11AntennaListIndex - Uniquely identifies the antenna connected to the 802.11 interface.')
coDot11AntennaListIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)))
if mibBuilder.loadTexts: coDot11AntennaListIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11AntennaListIndex.setDescription('The unique index of an antenna which is used to identify the columnar objects in the coDot11AntennasList Table.')
coDot11SupportedTxAntenna = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SupportedTxAntenna.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedTxAntenna.setDescription('When true, this object indicates that the antenna represented by coDot11AntennaIndex can be used as a transmit antenna.')
coDot11SupportedRxAntenna = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SupportedRxAntenna.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedRxAntenna.setDescription('When true, this object indicates that the antenna represented by the coDot11AntennaIndex can be used as a receive antenna.')
coDot11DiversitySelectionRx = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 6, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11DiversitySelectionRx.setStatus('current')
if mibBuilder.loadTexts: coDot11DiversitySelectionRx.setDescription('When true, this object indicates that the antenna represented by coDot11AntennaIndex can be used for receive diversity. This object may only be true if the antenna can be used as a receive antenna, as indicated by coDot11SupportedRxAntenna.')
coDot11SupportedDataRatesTxTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 7), )
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxTable.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxTable.setDescription('The Transmit bit rates supported by the PLCP and PMD, data rates are increments of 500Kb/s from 1 Mbps to 63.5 Mbps subject to limitations of each individual PHY.')
coDot11SupportedDataRatesTxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 7, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11SupportedDataRatesTxIndex"))
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxEntry.setDescription('An Entry (conceptual row) in the coDot11SupportedDataRatesTx Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11SupportedDataRatesTxIndex - Uniquely identifies a supported rate in the table.')
coDot11SupportedDataRatesTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxIndex.setDescription('Index object which identifies which data rate to access.')
coDot11SupportedDataRatesTxValue = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 7, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxValue.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesTxValue.setDescription('The transmit bit rates supported by the PLCP and PMD. Data rates are increments of 500Kb/s from 1 Mbps to 63.5 Mbps subject to limitations of each individual PHY.')
coDot11SupportedDataRatesRxTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 8), )
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxTable.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxTable.setDescription('The receive bit rates supported by the PLCP and PMD. Data rates are increments of 500Kb/s from 1 Mbps to 63.5 Mbps subject to limitations of each individual PHY.')
coDot11SupportedDataRatesRxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 8, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "COLUBRIS-802DOT11-MIB", "coDot11SupportedDataRatesRxIndex"))
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxEntry.setDescription('An Entry (conceptual row) in the coDot11SupportedDataRatesRx Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex. coDot11SupportedDataRatesTxIndex - Uniquely identifies a supported rate in the table.')
coDot11SupportedDataRatesRxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxIndex.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxIndex.setDescription('Index object which identifies which data rate to access.')
coDot11SupportedDataRatesRxValue = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 8, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxValue.setStatus('current')
if mibBuilder.loadTexts: coDot11SupportedDataRatesRxValue.setDescription('The receive bit rates supported by the PLCP and PMD. Data rates are increments of 500Kb/s from 1 Mbps to 63.5 Mbps subject to limitations of each individual PHY.')
coDot11PhyOFDMTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 9), )
if mibBuilder.loadTexts: coDot11PhyOFDMTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOFDMTable.setDescription('Entry of attributes for coDot11PhyOFDMEntry. In tabular form to allow multiple instances on an agent. This table only apply when in OFDM 5 GHz range.')
coDot11PhyOFDMEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 9, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyOFDMEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOFDMEntry.setDescription('An entry in the coDot11PhyOFDMEntry Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11CurrentFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 9, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 200))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11CurrentFrequency.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentFrequency.setDescription('The desired operating frequency channel of the OFDM PHY.')
coDot11TIThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 9, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11TIThreshold.setStatus('current')
if mibBuilder.loadTexts: coDot11TIThreshold.setDescription('The threshold being used to detect a busy medium (frequency). CCA reports a busy medium upon detecting the RSSI above this threshold.')
coDot11FrequencyBandsSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 9, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FrequencyBandsSupported.setStatus('current')
if mibBuilder.loadTexts: coDot11FrequencyBandsSupported.setDescription('The capability of the OFDM PHY implementation to operate in the three U-NII bands. Coded as an integer value of a three 1 bit fields as follow: bit 0 - Capable of operating in the lower (5.15-5.25 GHz) U-NII band. bit 1 - Capable of operating in the middle (5.25-5.35 GHz) U-NII band. bit 2 - Capable of operating in the middle (5.725-5.825 GHz) U-NII band. For example, for an implementation capable of operating in the lower and middle bands, this object would take the value 3.')
coDot11MinimumSNRLevel = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 92))).setUnits('dBm').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11MinimumSNRLevel.setStatus('current')
if mibBuilder.loadTexts: coDot11MinimumSNRLevel.setDescription('An SNR level notification is generated when the average SNR level is below this attribute. Not supported on the M111.')
coDot11SNRLevelNotificationEnabled = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 11), ColubrisNotificationEnable().clone('enable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11SNRLevelNotificationEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11SNRLevelNotificationEnabled.setDescription('This attribute, when true, enables the generation of SNR level notifications. Not supported on the M111.')
coDot11SNRLevelNotificationInterval = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000000))).setUnits('minutes').setMaxAccess("readwrite")
if mibBuilder.loadTexts: coDot11SNRLevelNotificationInterval.setStatus('current')
if mibBuilder.loadTexts: coDot11SNRLevelNotificationInterval.setDescription('Interval in minutes between SNR Level notifications. Not supported on the M111.')
coDot11CountryCode = MibScalar((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 8, 12, 31, 32, 36, 40, 48, 51, 56, 68, 76, 84, 96, 100, 112, 124, 152, 156, 158, 170, 188, 191, 196, 203, 208, 214, 218, 222, 233, 246, 250, 268, 276, 300, 320, 340, 344, 348, 352, 356, 360, 364, 372, 376, 380, 392, 393, 395, 396, 397, 398, 400, 404, 408, 410, 414, 422, 428, 438, 440, 442, 446, 458, 484, 492, 504, 512, 528, 554, 578, 586, 591, 604, 608, 616, 620, 630, 634, 642, 643, 682, 702, 703, 704, 705, 710, 716, 724, 752, 756, 760, 764, 780, 784, 788, 792, 804, 807, 818, 826, 827, 840, 858, 860, 862, 887))).clone(namedValues=NamedValues(("world", 1), ("albania", 8), ("algeria", 12), ("azerbaijan", 31), ("argentina", 32), ("australia", 36), ("austria", 40), ("bahrain", 48), ("armenia", 51), ("belgium", 56), ("bolivia", 68), ("brazil", 76), ("belize", 84), ("bruneiDarussalam", 96), ("bulgaria", 100), ("belarus", 112), ("canada", 124), ("chile", 152), ("china", 156), ("taiwan", 158), ("colombia", 170), ("costaRica", 188), ("croatia", 191), ("cyprus", 196), ("czechRepublic", 203), ("denmark", 208), ("dominicanRepublic", 214), ("ecuador", 218), ("elSalvador", 222), ("estonia", 233), ("finland", 246), ("france", 250), ("georgia", 268), ("germany", 276), ("greece", 300), ("guatemala", 320), ("honduras", 340), ("hongkong", 344), ("hungary", 348), ("iceland", 352), ("india", 356), ("indonesia", 360), ("iran", 364), ("ireland", 372), ("israel", 376), ("italy", 380), ("japanW52W53", 392), ("japanW52W53J52", 393), ("japanJ52", 395), ("japanJ5280211j", 396), ("japanClient", 397), ("kazakhstan", 398), ("jordan", 400), ("kenya", 404), ("northKorea", 408), ("southKorea", 410), ("kuwait", 414), ("lebanon", 422), ("latvia", 428), ("liechtenstein", 438), ("lithuania", 440), ("luxembourg", 442), ("macau", 446), ("malaysia", 458), ("mexico", 484), ("monaco", 492), ("morocco", 504), ("oman", 512), ("netherlands", 528), ("newZealand", 554), ("norway", 578), ("pakistan", 586), ("panama", 591), ("peru", 604), ("philippines", 608), ("poland", 616), ("portugal", 620), ("puertoRico", 630), ("qatar", 634), ("romania", 642), ("russianFederation", 643), ("saudiArabia", 682), ("singapore", 702), ("slovakia", 703), ("vietNam", 704), ("slovenia", 705), ("southAfrica", 710), ("zimbabwe", 716), ("spain", 724), ("sweden", 752), ("switzerland", 756), ("syria", 760), ("thailand", 764), ("trinidadAndTobago", 780), ("unitedArabEmirates", 784), ("tunisia", 788), ("turkey", 792), ("ukraine", 804), ("macedonia", 807), ("egypt", 818), ("unitedKingdom", 826), ("unitedKingdom58GHz", 827), ("unitedStates", 840), ("uruguay", 858), ("uzbekistan", 860), ("venezuela", 862), ("yemen", 887)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CountryCode.setStatus('current')
if mibBuilder.loadTexts: coDot11CountryCode.setDescription('The radios are running accordingly to the regulations of this country.')
coDot11PhyHTTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14), )
if mibBuilder.loadTexts: coDot11PhyHTTable.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyHTTable.setDescription('Entry of attributes for coDot11PhyHTEntry. This table only apply when the PHY type is HT.')
coDot11PhyHTEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: coDot11PhyHTEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyHTEntry.setDescription('An entry in the coDot11PhyHTEntry Table. ifIndex - Each 802.11 interface is represented by an ifEntry. Interface tables in this MIB module are indexed by ifIndex.')
coDot11FortyMHzOperationImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FortyMHzOperationImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11FortyMHzOperationImplemented.setDescription('This attribute, when TRUE, indicates that 40 MHz Operation is implemented.')
coDot11FortyMHzOperationEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11FortyMHzOperationEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11FortyMHzOperationEnabled.setDescription('This attribute, when TRUE, indicates that 40 MHz Operation is enabled.')
coDot11CurrentPrimaryChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentPrimaryChannel.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentPrimaryChannel.setDescription('This attribute indicates the operating channel. If 20/40 MHz Mode is currently in use then this attribute indicates the primary channel.')
coDot11CurrentSecondaryChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11CurrentSecondaryChannel.setStatus('current')
if mibBuilder.loadTexts: coDot11CurrentSecondaryChannel.setDescription('This attribute indicates the channel number of the secondary channel. If 20/40 MHz mode is not currently in use, this attribute value is 0.')
coDot11GreenfieldOptionImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11GreenfieldOptionImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11GreenfieldOptionImplemented.setDescription('This attribute, when TRUE, indicates that the HT Greenfield option is implemented.')
coDot11GreenfieldOptionEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11GreenfieldOptionEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11GreenfieldOptionEnabled.setDescription('This attribute, when TRUE, indicates that the HT Greenfield option is enabled.')
coDot11ShortGIOptionInTwentyImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 7), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ShortGIOptionInTwentyImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11ShortGIOptionInTwentyImplemented.setDescription('This attribute, when TRUE, indicates that the Short Guard option is implemented for 20 MHz operation.')
coDot11ShortGIOptionInTwentyEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ShortGIOptionInTwentyEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11ShortGIOptionInTwentyEnabled.setDescription('This attribute, when TRUE, indicates that the Short Guard option is enabled for 20 MHz operation.')
coDot11ShortGIOptionInFortyImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 9), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ShortGIOptionInFortyImplemented.setStatus('current')
if mibBuilder.loadTexts: coDot11ShortGIOptionInFortyImplemented.setDescription('This attribute, when TRUE, indicates that the Short Guard option is implemented for 40 MHz operation.')
coDot11ShortGIOptionInFortyEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 10), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11ShortGIOptionInFortyEnabled.setStatus('current')
if mibBuilder.loadTexts: coDot11ShortGIOptionInFortyEnabled.setDescription('This attribute, when TRUE, indicates that the Short Guard option is enabled for 40 MHz operation.')
coDot11HighestSupportedDataRate = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 3, 14, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11HighestSupportedDataRate.setStatus('current')
if mibBuilder.loadTexts: coDot11HighestSupportedDataRate.setDescription('This attribute shall specify the Highest Data Rate in Mbps at which the station may receive data.')
coDot11RSNAStatsTable = MibTable((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4), )
if mibBuilder.loadTexts: coDot11RSNAStatsTable.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTable.setDescription('This table maintains statistics for SN. It is not supported on the WCB-200.')
coDot11RSNAStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1), )
coVirtualAccessPointConfigEntry.registerAugmentions(("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsEntry"))
coDot11RSNAStatsEntry.setIndexNames(*coVirtualAccessPointConfigEntry.getIndexNames())
if mibBuilder.loadTexts: coDot11RSNAStatsEntry.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsEntry.setDescription('An entry in the coDot11RSNAStatsTable.')
coDot11RSNAStatsVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsVersion.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsVersion.setDescription('The RSNA version which the AP associated with.')
coDot11RSNAStatsSelectedPairwiseCipher = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsSelectedPairwiseCipher.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsSelectedPairwiseCipher.setDescription('The AKM Suite the AP selected during association. The value consists of a three octet OUI followed by a one octet type as follows: OUI Value, Cipher, Type XX-XX-XX, 0, Reserved XX-XX-XX, 1, WEP-40 XX-XX-XX, 2, TKIP XX-XX-XX, 3, Reserved XX-XX-XX, 4, CCMP XX-XX-XX, 5, WEP-104 XX-XX-XX, 6-255, Reserved Vendor, any, Vendor Specific other, any, Reserved')
coDot11RSNAStatsTKIPICVErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPICVErrors.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPICVErrors.setDescription('Counts the number of TKIP ICV errors encountered when decrypting packets for the AP.')
coDot11RSNAStatsTKIPLocalMICFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPLocalMICFailures.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPLocalMICFailures.setDescription('Counts the number of Michael MIC failures encountered when checking the integrity of packets received from the AP at this entity.')
coDot11RSNAStatsTKIPRemoteMICFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPRemoteMICFailures.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPRemoteMICFailures.setDescription('Counts the number of Michael MIC failures encountered by the remote device and reported back to this entity.')
coDot11RSNAStatsTKIPCounterMeasuresInvoked = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPCounterMeasuresInvoked.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPCounterMeasuresInvoked.setDescription('Counts the number of times a MIC failure occurred two times within 60 seconds and countermeasures were invoked. This variable counts this for both local and remote. It increments every time countermeasures are invoked.')
coDot11RSNAStatsCCMPFormatErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPFormatErrors.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPFormatErrors.setDescription('The number of MSDUs received with an invalid CCMP format.')
coDot11RSNAStatsCCMPReplays = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPReplays.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPReplays.setDescription('The number of received unicast fragments discarded by the replay mechanism.')
coDot11RSNAStatsCCMPDecryptErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPDecryptErrors.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsCCMPDecryptErrors.setDescription('The number of received fragments discarded by the CCMP decryption algorithm.')
coDot11RSNAStatsTKIPReplays = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPReplays.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStatsTKIPReplays.setDescription('Counts the number of TKIP replay errors detected.')
coDot11RSNAStats4WayHandshakeFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 8744, 5, 4, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coDot11RSNAStats4WayHandshakeFailures.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNAStats4WayHandshakeFailures.setDescription('Counts the number of 4-Way Handshake failures.')
coDot11ManagementMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 5))
coDot11ManagementMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 5, 0))
coDot11SNRLevelNotification = NotificationType((1, 3, 6, 1, 4, 1, 8744, 5, 4, 5, 0, 1)).setObjects(("IF-MIB", "ifIndex"), ("IF-MIB", "ifDescr"), ("COLUBRIS-VIRTUAL-AP-MIB", "coVirtualApSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentSNRLevel"))
if mibBuilder.loadTexts: coDot11SNRLevelNotification.setStatus('current')
if mibBuilder.loadTexts: coDot11SNRLevelNotification.setDescription('The average SNR level for all the stations using this VSC during the last three intervals is low.')
coDot11AssociationNotification = NotificationType((1, 3, 6, 1, 4, 1, 8744, 5, 4, 5, 0, 2)).setObjects(("IF-MIB", "ifIndex"), ("IF-MIB", "ifDescr"), ("COLUBRIS-802DOT11-MIB", "coDot11StationName"), ("COLUBRIS-802DOT11-MIB", "coDot11StationSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11StationIPAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11StationMACAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11SignalLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11SNR"), ("COLUBRIS-802DOT11-MIB", "coDot11TransmitRate"), ("COLUBRIS-802DOT11-MIB", "coDot11NumberOfUsers"))
if mibBuilder.loadTexts: coDot11AssociationNotification.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationNotification.setDescription('Sent when a new association is made or sent periodically using interval specified by coDot11AssociationNotificationInterval object.')
coDot11UnauthorizedAPNotification = NotificationType((1, 3, 6, 1, 4, 1, 8744, 5, 4, 5, 0, 3)).setObjects(("IF-MIB", "ifIndex"), ("IF-MIB", "ifDescr"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanMacAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanPHYType"))
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotification.setStatus('current')
if mibBuilder.loadTexts: coDot11UnauthorizedAPNotification.setDescription('Sent when a new unauthorized AP is detected.')
coDot11Conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6))
coDot11Groups = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1))
coDot11Compliances = MibIdentifier((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 2))
coDot11Compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 2, 1)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11APBaseGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11MACBaseGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11CountersGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11SmtAuthenticationAlgorithmsGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyConfigComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11APPrivacyGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11MACStatisticsGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyAntennaComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyRegDomainsSupportGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyAntennasListGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyRateGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11NotificationGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11StationHTGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyDSSSComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyOFDMComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyHTComplianceGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11Compliance = coDot11Compliance.setStatus('deprecated')
if mibBuilder.loadTexts: coDot11Compliance.setDescription('The compliance statement for SNMPv2 entities that implement the IEEE 802.11 MIB.')
coDot11RSNCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 2, 2)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RSNBase"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11RSNCompliance = coDot11RSNCompliance.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNCompliance.setDescription('The compliance statement for SNMPv2 entities that implement the IEEE 802.11 RSN MIB.')
coDot11ComplianceExt = ModuleCompliance((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 2, 3)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11APBaseGroupExt"), ("COLUBRIS-802DOT11-MIB", "coDot11MACBaseGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11CountersGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11SmtAuthenticationAlgorithmsGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyConfigComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11APPrivacyGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11MACStatisticsGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyAntennaComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyRegDomainsSupportGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyAntennasListGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyRateGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanConfigGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11NotificationGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11StationHTGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11StationDetectionGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyDSSSComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyOFDMComplianceGroup"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyHTComplianceGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11ComplianceExt = coDot11ComplianceExt.setStatus('current')
if mibBuilder.loadTexts: coDot11ComplianceExt.setDescription('The compliance statement for SNMPv2 entities that implement the IEEE 802.11 MIB.')
coDot11APBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 1)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RelayBetweenStation"), ("COLUBRIS-802DOT11-MIB", "coDot11PrivacyOptionImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAOptionImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11BeaconPeriod"), ("COLUBRIS-802DOT11-MIB", "coDot11DTIMPeriod"), ("COLUBRIS-802DOT11-MIB", "coDot11NumberOfUsers"), ("COLUBRIS-802DOT11-MIB", "coDot11AddToAssociationNotification"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyTxPowerAdminLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyTxPowerOperLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11BSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11AdminMinimumDataRate"), ("COLUBRIS-802DOT11-MIB", "coDot11AdminMaximumDataRate"), ("COLUBRIS-802DOT11-MIB", "coDot11HighThroughputOptionImplemented"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11APBaseGroup = coDot11APBaseGroup.setStatus('deprecated')
if mibBuilder.loadTexts: coDot11APBaseGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the processes in the STA such that the STA may work cooperatively as a part of an IEEE 802.11 network. coDot11AdminMinimumDataRate and coDot11AdminMaximumDataRate are deprecated.')
coDot11APPrivacyGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 2)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11PrivacyInvoked"), ("COLUBRIS-802DOT11-MIB", "coDot11ExcludeUnencrypted"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPICVErrorCount"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPExcludedCount"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKeyID"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKey1Value"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKey2Value"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKey3Value"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPDefaultKey4Value"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11APPrivacyGroup = coDot11APPrivacyGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11APPrivacyGroup.setDescription('The APPrivacy package is a set of attributes that are present if WEP is implemented on the Access Point.')
coDot11MACBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 3)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11MACAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11RTSThreshold"), ("COLUBRIS-802DOT11-MIB", "coDot11ShortRetryLimit"), ("COLUBRIS-802DOT11-MIB", "coDot11LongRetryLimit"), ("COLUBRIS-802DOT11-MIB", "coDot11FragmentationThreshold"), ("COLUBRIS-802DOT11-MIB", "coDot11MaxTransmitMSDULifetime"), ("COLUBRIS-802DOT11-MIB", "coDot11MaxReceiveLifetime"), ("COLUBRIS-802DOT11-MIB", "coDot11ManufacturerID"), ("COLUBRIS-802DOT11-MIB", "coDot11ProductID"), ("COLUBRIS-802DOT11-MIB", "coDot11RadioType"), ("COLUBRIS-802DOT11-MIB", "coDot11StationDetectionState"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11MACBaseGroup = coDot11MACBaseGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11MACBaseGroup.setDescription('The MAC object class provides the necessary support for access control, generation, and verification of frame check sequences, and proper delivery of valid data to upper layers.')
coDot11MACStatisticsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 4)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RetryCount"), ("COLUBRIS-802DOT11-MIB", "coDot11MultipleRetryCount"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11MACStatisticsGroup = coDot11MACStatisticsGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11MACStatisticsGroup.setDescription('The MACStatistics package provides extended statistical information on the operation of the MAC. This package is completely optional.')
coDot11SmtAuthenticationAlgorithmsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 5)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11AuthenticationAlgorithm"), ("COLUBRIS-802DOT11-MIB", "coDot11AuthenticationAlgorithmsEnable"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11SmtAuthenticationAlgorithmsGroup = coDot11SmtAuthenticationAlgorithmsGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11SmtAuthenticationAlgorithmsGroup.setDescription('Authentication Algorithm Table.')
coDot11PhyConfigComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 6)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11MinimumSNRLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentSNRLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11Sensitivity"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyAdminStatus"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyOperStatus"), ("COLUBRIS-802DOT11-MIB", "coDot11PHYType"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentRegDomain"), ("COLUBRIS-802DOT11-MIB", "coDot11TempType"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentOperFrequency"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentOperPHYType"), ("COLUBRIS-802DOT11-MIB", "coDot11RadioEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11OperatingMode"), ("COLUBRIS-802DOT11-MIB", "coDot11AutoChannelEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11AutoChannelInterval"), ("COLUBRIS-802DOT11-MIB", "coDot11AutoPowerEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11AutoPowerInterval"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyConfigComplianceGroup = coDot11PhyConfigComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyConfigComplianceGroup.setDescription('PHY layer operations attributes.')
coDot11PhyConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 7)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11SNRLevelNotificationEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11SNRLevelNotificationInterval"), ("COLUBRIS-802DOT11-MIB", "coDot11CountryCode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyConfigGroup = coDot11PhyConfigGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyConfigGroup.setDescription('PHY notification configuration attributes.')
coDot11PhyAntennaComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 8)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11CurrentTxAntenna"), ("COLUBRIS-802DOT11-MIB", "coDot11DiversitySupport"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentRxAntenna"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyAntennaComplianceGroup = coDot11PhyAntennaComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyAntennaComplianceGroup.setDescription('Phy antenna attributes.')
coDot11PhyDSSSComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 9)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11CurrentChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11CCAModeSupported"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentCCAMode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyDSSSComplianceGroup = coDot11PhyDSSSComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyDSSSComplianceGroup.setDescription('Attributes that configure the DSSS for IEEE 802.11.')
coDot11PhyRegDomainsSupportGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 10)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RegDomainsSupportValue"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyRegDomainsSupportGroup = coDot11PhyRegDomainsSupportGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyRegDomainsSupportGroup.setDescription('Attributes that specify the supported Regulation Domains.')
coDot11PhyAntennasListGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 11)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11SupportedTxAntenna"), ("COLUBRIS-802DOT11-MIB", "coDot11SupportedRxAntenna"), ("COLUBRIS-802DOT11-MIB", "coDot11DiversitySelectionRx"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyAntennasListGroup = coDot11PhyAntennasListGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyAntennasListGroup.setDescription('Antennas list attributes.')
coDot11PhyRateGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 12)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11SupportedDataRatesTxValue"), ("COLUBRIS-802DOT11-MIB", "coDot11SupportedDataRatesRxValue"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyRateGroup = coDot11PhyRateGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyRateGroup.setDescription('Attributes for Data Rates for IEEE 802.11.')
coDot11CountersGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 13)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11TransmittedFragmentCount"), ("COLUBRIS-802DOT11-MIB", "coDot11MulticastTransmittedFrameCount"), ("COLUBRIS-802DOT11-MIB", "coDot11FailedCount"), ("COLUBRIS-802DOT11-MIB", "coDot11FrameDuplicateCount"), ("COLUBRIS-802DOT11-MIB", "coDot11RTSSuccessCount"), ("COLUBRIS-802DOT11-MIB", "coDot11RTSFailureCount"), ("COLUBRIS-802DOT11-MIB", "coDot11ACKFailureCount"), ("COLUBRIS-802DOT11-MIB", "coDot11ReceivedFragmentCount"), ("COLUBRIS-802DOT11-MIB", "coDot11MulticastReceivedFrameCount"), ("COLUBRIS-802DOT11-MIB", "coDot11FCSErrorCount"), ("COLUBRIS-802DOT11-MIB", "coDot11WEPUndecryptableCount"), ("COLUBRIS-802DOT11-MIB", "coDot11TransmittedFrameCount"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11CountersGroup = coDot11CountersGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11CountersGroup.setDescription('Attributes from the coDot11CountersGroup that are not described in the coDot11MACStatistics group. These objects are mandatory.')
coDot11AssociationGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 14)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11StationMACAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11StationConnectTime"), ("COLUBRIS-802DOT11-MIB", "coDot11SignalLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11NoiseLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11SNR"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate1"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate2"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate5dot5"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate6"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate9"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate11"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate12"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate18"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate24"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate36"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate48"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsRate54"), ("COLUBRIS-802DOT11-MIB", "coDot11TransmitRate"), ("COLUBRIS-802DOT11-MIB", "coDot11ReceiveRate"), ("COLUBRIS-802DOT11-MIB", "coDot11InPkts"), ("COLUBRIS-802DOT11-MIB", "coDot11OutPkts"), ("COLUBRIS-802DOT11-MIB", "coDot11InOctets"), ("COLUBRIS-802DOT11-MIB", "coDot11OutOctets"), ("COLUBRIS-802DOT11-MIB", "coDot11StationSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11StationName"), ("COLUBRIS-802DOT11-MIB", "coDot11StationIPAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11StationVLAN"), ("COLUBRIS-802DOT11-MIB", "coDot11StationLocalInterface"), ("COLUBRIS-802DOT11-MIB", "coDot11StaHT"), ("COLUBRIS-802DOT11-MIB", "coDot11StaEncryptionType"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate1"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate2"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate5dot5"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate11"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate6"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate9"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate12"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate18"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate24"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate36"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate48"), ("COLUBRIS-802DOT11-MIB", "coDot11PktsTxRate54"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11AssociationGroup = coDot11AssociationGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the association table.')
coDot11AssociationConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 15)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11AssociationNotificationEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationNotificationInterval"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11AssociationConfigGroup = coDot11AssociationConfigGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11AssociationConfigGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the association table. Not supported on the M111.')
coDot11ScanGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 16)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11ScanMacAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanSignalLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanNoiseLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanSNR"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanStatus"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanPHYType"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanInactivityTime"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanNetworkType"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanSecurity"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11ScanGroup = coDot11ScanGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the scan table. ')
coDot11ScanConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 17)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11ScanEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanPeriodicity"), ("COLUBRIS-802DOT11-MIB", "coDot11ScanAuthorizedListURL"), ("COLUBRIS-802DOT11-MIB", "coDot11UnauthorizedAPNotificationEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11UnauthorizedAPNotificationInterval"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11ScanConfigGroup = coDot11ScanConfigGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11ScanConfigGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the scan table. Not supported on the M111.')
coDot11WDSComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 18)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11WDSPortMacAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortCurrentRate"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortSNRLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortTxPackets"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortTxDropped"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortTxErrors"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortRxPackets"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortRxDropped"), ("COLUBRIS-802DOT11-MIB", "coDot11WDSPortRxErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11WDSComplianceGroup = coDot11WDSComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11WDSComplianceGroup.setDescription('Attributes that configure the WDS table.')
coDot11NotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 19)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11SNRLevelNotification"), ("COLUBRIS-802DOT11-MIB", "coDot11AssociationNotification"), ("COLUBRIS-802DOT11-MIB", "coDot11UnauthorizedAPNotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11NotificationGroup = coDot11NotificationGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11NotificationGroup.setDescription('A collection of supported notifications.')
coDot11RSNBase = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 20)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsVersion"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsSelectedPairwiseCipher"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsTKIPICVErrors"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsTKIPLocalMICFailures"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsTKIPRemoteMICFailures"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsTKIPCounterMeasuresInvoked"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsCCMPFormatErrors"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsCCMPReplays"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsCCMPDecryptErrors"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStatsTKIPReplays"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAStats4WayHandshakeFailures"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11RSNBase = coDot11RSNBase.setStatus('current')
if mibBuilder.loadTexts: coDot11RSNBase.setDescription('The coDot11RSNBase object class provides the necessary support for managing RSNA functionality in the STA')
coDot11PhyOFDMComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 21)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11CurrentFrequency"), ("COLUBRIS-802DOT11-MIB", "coDot11TIThreshold"), ("COLUBRIS-802DOT11-MIB", "coDot11FrequencyBandsSupported"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyOFDMComplianceGroup = coDot11PhyOFDMComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyOFDMComplianceGroup.setDescription('Attributes that configure the OFDM for IEEE 802.11.')
coDot11StationHTGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 22)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11StaTransmitMCS"), ("COLUBRIS-802DOT11-MIB", "coDot11StaReceiveMCS"), ("COLUBRIS-802DOT11-MIB", "coDot11StaChannelWidth"), ("COLUBRIS-802DOT11-MIB", "coDot11StaShortGI"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS0"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS1"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS2"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS3"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS4"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS5"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS6"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS7"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS8"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS9"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS10"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS11"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS12"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS13"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS14"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsTxMCS15"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS0"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS1"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS2"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS3"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS4"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS5"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS6"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS7"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS8"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS9"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS10"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS11"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS12"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS13"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS14"), ("COLUBRIS-802DOT11-MIB", "coDot11StaPktsRxMCS15"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11StationHTGroup = coDot11StationHTGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11StationHTGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the station HT table.')
coDot11PhyHTComplianceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 23)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11FortyMHzOperationImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11FortyMHzOperationEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentPrimaryChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11CurrentSecondaryChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11GreenfieldOptionImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11GreenfieldOptionEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11ShortGIOptionInTwentyImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11ShortGIOptionInTwentyEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11ShortGIOptionInFortyImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11ShortGIOptionInFortyEnabled"), ("COLUBRIS-802DOT11-MIB", "coDot11HighestSupportedDataRate"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11PhyHTComplianceGroup = coDot11PhyHTComplianceGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11PhyHTComplianceGroup.setDescription('Attributes that configure the HT for IEEE 802.11.')
coDot11APBaseGroupExt = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 24)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11RelayBetweenStation"), ("COLUBRIS-802DOT11-MIB", "coDot11PrivacyOptionImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11RSNAOptionImplemented"), ("COLUBRIS-802DOT11-MIB", "coDot11BeaconPeriod"), ("COLUBRIS-802DOT11-MIB", "coDot11DTIMPeriod"), ("COLUBRIS-802DOT11-MIB", "coDot11NumberOfUsers"), ("COLUBRIS-802DOT11-MIB", "coDot11AddToAssociationNotification"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyTxPowerAdminLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11PhyTxPowerOperLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11BSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11HighThroughputOptionImplemented"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11APBaseGroupExt = coDot11APBaseGroupExt.setStatus('current')
if mibBuilder.loadTexts: coDot11APBaseGroupExt.setDescription('The AP object class provides the necessary support at the Access Point to manage the processes in the STA such that the STA may work cooperatively as a part of an IEEE 802.11 network.')
coDot11StationDetectionGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 8744, 5, 4, 6, 1, 25)).setObjects(("COLUBRIS-802DOT11-MIB", "coDot11NbDetectedStation"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaMacAddress"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaChannel"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaSignalLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaNoiseLevel"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaNbProbeReq"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaRate"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaSSID"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaTimeDiscovered"), ("COLUBRIS-802DOT11-MIB", "coDot11DetStaTimeLastSeen"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
coDot11StationDetectionGroup = coDot11StationDetectionGroup.setStatus('current')
if mibBuilder.loadTexts: coDot11StationDetectionGroup.setDescription('The AP object class provides the necessary support at the Access Point to manage the station detection information.')
mibBuilder.exportSymbols("COLUBRIS-802DOT11-MIB", coDot11StaPktsTxMCS14=coDot11StaPktsTxMCS14, coDot11ap=coDot11ap, coDot11ScanPHYType=coDot11ScanPHYType, coDot11SupportedDataRatesRxIndex=coDot11SupportedDataRatesRxIndex, coDot11ScanInactivityTime=coDot11ScanInactivityTime, coDot11StaPktsRxMCS14=coDot11StaPktsRxMCS14, coDot11phy=coDot11phy, coDot11ScanEnabled=coDot11ScanEnabled, coDot11StaPktsTxMCS1=coDot11StaPktsTxMCS1, coDot11CCAModeSupported=coDot11CCAModeSupported, coDot11FCSErrorCount=coDot11FCSErrorCount, coDot11PhyAntennaTable=coDot11PhyAntennaTable, coDot11AssociationNotification=coDot11AssociationNotification, coDot11DetStaSignalLevel=coDot11DetStaSignalLevel, coDot11ScanSNR=coDot11ScanSNR, coDot11PhyHTComplianceGroup=coDot11PhyHTComplianceGroup, coDot11StaPktsTxMCS12=coDot11StaPktsTxMCS12, coDot11ScanGroup=coDot11ScanGroup, coDot11StaPktsRxMCS9=coDot11StaPktsRxMCS9, coDot11FragmentationThreshold=coDot11FragmentationThreshold, coDot11StaEncryptionType=coDot11StaEncryptionType, coDot11SupportedDataRatesRxTable=coDot11SupportedDataRatesRxTable, coDot11PhyOperationTable=coDot11PhyOperationTable, coDot11RSNAStatsSelectedPairwiseCipher=coDot11RSNAStatsSelectedPairwiseCipher, coDot11BeaconPeriod=coDot11BeaconPeriod, coDot11CurrentFrequency=coDot11CurrentFrequency, coDot11AuthenticationAlgorithmsEntry=coDot11AuthenticationAlgorithmsEntry, coDot11AuthenticationAlgorithmsTable=coDot11AuthenticationAlgorithmsTable, coDot11RSNAStatsVersion=coDot11RSNAStatsVersion, coDot11ScanNoiseLevel=coDot11ScanNoiseLevel, coDot11PhyOperStatus=coDot11PhyOperStatus, coDot11Compliances=coDot11Compliances, coDot11CurrentChannel=coDot11CurrentChannel, coDot11SNRLevelNotification=coDot11SNRLevelNotification, coDot11WEPDefaultKey4Value=coDot11WEPDefaultKey4Value, coDot11PhyOFDMTable=coDot11PhyOFDMTable, coDot11SmtAuthenticationAlgorithmsGroup=coDot11SmtAuthenticationAlgorithmsGroup, coDot11FrequencyBandsSupported=coDot11FrequencyBandsSupported, coDot11DiversitySelectionRx=coDot11DiversitySelectionRx, coDot11ScanConfigGroup=coDot11ScanConfigGroup, coDot11PktsRate1=coDot11PktsRate1, coDot11AssociationEntry=coDot11AssociationEntry, coDot11DetStaMacAddress=coDot11DetStaMacAddress, coDot11RTSFailureCount=coDot11RTSFailureCount, coDot11StaPktsRxMCS15=coDot11StaPktsRxMCS15, coDot11PktsRate24=coDot11PktsRate24, coDot11RegDomainsSupportedTable=coDot11RegDomainsSupportedTable, coDot11CountersEntry=coDot11CountersEntry, coDot11PhyConfigEntry=coDot11PhyConfigEntry, coDot11AuthenticationAlgorithm=coDot11AuthenticationAlgorithm, coDot11StaPktsRxMCS10=coDot11StaPktsRxMCS10, coDot11StaPktsRxMCS6=coDot11StaPktsRxMCS6, coDot11CurrentOperPHYType=coDot11CurrentOperPHYType, coDot11ScanSecurity=coDot11ScanSecurity, coDot11StaPktsTxMCS15=coDot11StaPktsTxMCS15, coDot11StaShortGI=coDot11StaShortGI, coDot11WEPDefaultKeysTable=coDot11WEPDefaultKeysTable, coDot11PhyOperationEntry=coDot11PhyOperationEntry, coDot11RSNAStats4WayHandshakeFailures=coDot11RSNAStats4WayHandshakeFailures, coDot11LongRetryLimit=coDot11LongRetryLimit, coDot11PrivacyTable=coDot11PrivacyTable, coDot11DetectedStationTable=coDot11DetectedStationTable, colubris802dot11=colubris802dot11, coDot11CurrentOperFrequency=coDot11CurrentOperFrequency, coDot11PktsRate18=coDot11PktsRate18, coDot11OperationTable=coDot11OperationTable, coDot11PrivacyOptionImplemented=coDot11PrivacyOptionImplemented, coDot11PhyTxPowerAdminLevel=coDot11PhyTxPowerAdminLevel, coDot11Groups=coDot11Groups, coDot11StaPktsRxMCS13=coDot11StaPktsRxMCS13, coDot11StationIPAddress=coDot11StationIPAddress, coDot11StationMACAddress=coDot11StationMACAddress, coDot11AntennasListTable=coDot11AntennasListTable, coDot11AssociationNotificationEnabled=coDot11AssociationNotificationEnabled, coDot11StaPktsRxMCS2=coDot11StaPktsRxMCS2, coDot11PrivacyInvoked=coDot11PrivacyInvoked, coDot11RadioType=coDot11RadioType, coDot11StaPktsRxMCS4=coDot11StaPktsRxMCS4, coDot11PhyHTEntry=coDot11PhyHTEntry, coDot11ManagementMIBNotificationPrefix=coDot11ManagementMIBNotificationPrefix, coDot11RSNAStatsCCMPReplays=coDot11RSNAStatsCCMPReplays, coDot11BSSID=coDot11BSSID, coDot11GreenfieldOptionImplemented=coDot11GreenfieldOptionImplemented, coDot11StaPktsTxMCS5=coDot11StaPktsTxMCS5, coDot11ManufacturerID=coDot11ManufacturerID, coDot11ShortRetryLimit=coDot11ShortRetryLimit, coDot11StaPktsTxMCS4=coDot11StaPktsTxMCS4, coDot11MACBaseGroup=coDot11MACBaseGroup, coDot11PHYType=coDot11PHYType, coDot11StaPktsRxMCS7=coDot11StaPktsRxMCS7, coDot11FrameDuplicateCount=coDot11FrameDuplicateCount, coDot11CurrentPrimaryChannel=coDot11CurrentPrimaryChannel, coDot11TransmittedFrameCount=coDot11TransmittedFrameCount, coDot11RSNAStatsTKIPLocalMICFailures=coDot11RSNAStatsTKIPLocalMICFailures, coDot11AdminMinimumDataRate=coDot11AdminMinimumDataRate, coDot11CountryCode=coDot11CountryCode, coDot11mac=coDot11mac, coDot11ScanSignalLevel=coDot11ScanSignalLevel, coDot11SupportedDataRatesTxValue=coDot11SupportedDataRatesTxValue, coDot11ScanAuthorizedListURL=coDot11ScanAuthorizedListURL, coDot11WDSPortMacAddress=coDot11WDSPortMacAddress, coDot11RSNAStatsTKIPICVErrors=coDot11RSNAStatsTKIPICVErrors, coDot11RSNAStatsTKIPRemoteMICFailures=coDot11RSNAStatsTKIPRemoteMICFailures, coDot11PktsTxRate6=coDot11PktsTxRate6, coDot11MaxTransmitMSDULifetime=coDot11MaxTransmitMSDULifetime, coDot11CurrentCCAMode=coDot11CurrentCCAMode, coDot11StationName=coDot11StationName, coDot11PktsTxRate24=coDot11PktsTxRate24, coDot11PhyRegDomainsSupportGroup=coDot11PhyRegDomainsSupportGroup, coDot11ShortGIOptionInTwentyImplemented=coDot11ShortGIOptionInTwentyImplemented, coDot11SupportedRxAntenna=coDot11SupportedRxAntenna, PYSNMP_MODULE_ID=colubris802dot11, coDot11ShortGIOptionInFortyImplemented=coDot11ShortGIOptionInFortyImplemented, coDot11ShortGIOptionInFortyEnabled=coDot11ShortGIOptionInFortyEnabled, coDot11AuthenticationAlgorithmsEnable=coDot11AuthenticationAlgorithmsEnable, coDot11WEPDefaultKeyID=coDot11WEPDefaultKeyID, coDot11CurrentTxAntenna=coDot11CurrentTxAntenna, coDot11RSNAStatsCCMPDecryptErrors=coDot11RSNAStatsCCMPDecryptErrors, coDot11PktsTxRate36=coDot11PktsTxRate36, coDot11StaReceiveMCS=coDot11StaReceiveMCS, coDot11AssociationGroup=coDot11AssociationGroup, coDot11TransmittedFragmentCount=coDot11TransmittedFragmentCount, coDot11StaPktsRxMCS3=coDot11StaPktsRxMCS3, coDot11SignalLevel=coDot11SignalLevel, coDot11DetStaSSID=coDot11DetStaSSID, coDot11ReceiveRate=coDot11ReceiveRate, coDot11InOctets=coDot11InOctets, coDot11AutoChannelEnabled=coDot11AutoChannelEnabled, coDot11PhyOFDMComplianceGroup=coDot11PhyOFDMComplianceGroup, coDot11WDSPortRxPackets=coDot11WDSPortRxPackets, WEPKeytype=WEPKeytype, coDot11StaPktsRxMCS12=coDot11StaPktsRxMCS12, coDot11PktsTxRate1=coDot11PktsTxRate1, coDot11PktsTxRate48=coDot11PktsTxRate48, coDot11RadioEnabled=coDot11RadioEnabled, coDot11StaPktsTxMCS10=coDot11StaPktsTxMCS10, coDot11StaChannelWidth=coDot11StaChannelWidth, coDot11PktsRate11=coDot11PktsRate11, coDot11StaPktsTxMCS7=coDot11StaPktsTxMCS7, coDot11PhyDSSSEntry=coDot11PhyDSSSEntry, coDot11ScanPeriodicity=coDot11ScanPeriodicity, coDot11SupportedTxAntenna=coDot11SupportedTxAntenna, coDot11PhyHTTable=coDot11PhyHTTable, coDot11StaPktsTxMCS0=coDot11StaPktsTxMCS0, coDot11APBaseGroup=coDot11APBaseGroup, coDot11CountersGroup=coDot11CountersGroup, coDot11SupportedDataRatesTxEntry=coDot11SupportedDataRatesTxEntry, coDot11HighestSupportedDataRate=coDot11HighestSupportedDataRate, coDot11AdminMaximumDataRate=coDot11AdminMaximumDataRate, coDot11WDSPortIndex=coDot11WDSPortIndex, coDot11StaPktsTxMCS3=coDot11StaPktsTxMCS3, coDot11ReceivedFragmentCount=coDot11ReceivedFragmentCount, coDot11StaPktsTxMCS2=coDot11StaPktsTxMCS2, coDot11StationHTTable=coDot11StationHTTable, coDot11StaPktsTxMCS11=coDot11StaPktsTxMCS11, coDot11PktsRate5dot5=coDot11PktsRate5dot5, coDot11WEPDefaultKey3Value=coDot11WEPDefaultKey3Value, coDot11PktsRate2=coDot11PktsRate2, coDot11DetStaRate=coDot11DetStaRate, coDot11RelayBetweenStation=coDot11RelayBetweenStation, coDot11UnauthorizedAPNotificationInterval=coDot11UnauthorizedAPNotificationInterval, coDot11StaTransmitMCS=coDot11StaTransmitMCS, coDot11WDSPortRxErrors=coDot11WDSPortRxErrors, coDot11AutoPowerInterval=coDot11AutoPowerInterval, coDot11MACStatisticsGroup=coDot11MACStatisticsGroup, coDot11SNRLevelNotificationEnabled=coDot11SNRLevelNotificationEnabled, coDot11StationDetectionState=coDot11StationDetectionState, coDot11StationConnectTime=coDot11StationConnectTime, coDot11PktsRate48=coDot11PktsRate48, coDot11PhyAntennaEntry=coDot11PhyAntennaEntry, coDot11RSNBase=coDot11RSNBase, coDot11FailedCount=coDot11FailedCount, coDot11WDSPortTxPackets=coDot11WDSPortTxPackets, coDot11AssociationConfigGroup=coDot11AssociationConfigGroup, coDot11AddToAssociationNotification=coDot11AddToAssociationNotification, coDot11RTSThreshold=coDot11RTSThreshold, coDot11StaPktsTxMCS8=coDot11StaPktsTxMCS8, coDot11ExcludeUnencrypted=coDot11ExcludeUnencrypted, coDot11MaxReceiveLifetime=coDot11MaxReceiveLifetime, coDot11RegDomainsSupportIndex=coDot11RegDomainsSupportIndex, coDot11TempType=coDot11TempType, coDot11PhyConfigGroup=coDot11PhyConfigGroup, coDot11GreenfieldOptionEnabled=coDot11GreenfieldOptionEnabled, coDot11NbDetectedStation=coDot11NbDetectedStation, coDot11ScanStatus=coDot11ScanStatus, coDot11DetectedStationEntry=coDot11DetectedStationEntry, coDot11WDSPortTxDropped=coDot11WDSPortTxDropped, coDot11AntennaListIndex=coDot11AntennaListIndex, coDot11PktsTxRate9=coDot11PktsTxRate9, coDot11StaPktsRxMCS5=coDot11StaPktsRxMCS5, coDot11ShortGIOptionInTwentyEnabled=coDot11ShortGIOptionInTwentyEnabled, coDot11StationHTGroup=coDot11StationHTGroup, coDot11AssociationTable=coDot11AssociationTable, coDot11PktsRate12=coDot11PktsRate12, coDot11WEPICVErrorCount=coDot11WEPICVErrorCount, coDot11PktsTxRate18=coDot11PktsTxRate18, coDot11RSNAStatsCCMPFormatErrors=coDot11RSNAStatsCCMPFormatErrors, coDot11WDSPortEntry=coDot11WDSPortEntry, coDot11PhyConfigTable=coDot11PhyConfigTable, coDot11AutoPowerEnabled=coDot11AutoPowerEnabled, coDot11MACAddress=coDot11MACAddress, coDot11Conformance=coDot11Conformance, coDot11InPkts=coDot11InPkts, coDot11PhyRateGroup=coDot11PhyRateGroup, coDot11WEPUndecryptableCount=coDot11WEPUndecryptableCount, coDot11APPrivacyGroup=coDot11APPrivacyGroup, coDot11StaPktsTxMCS6=coDot11StaPktsTxMCS6, coDot11WDSPortCurrentRate=coDot11WDSPortCurrentRate, coDot11PktsRate36=coDot11PktsRate36, coDot11MulticastTransmittedFrameCount=coDot11MulticastTransmittedFrameCount, coDot11PhyConfigComplianceGroup=coDot11PhyConfigComplianceGroup, coDot11RSNAStatsEntry=coDot11RSNAStatsEntry, coDot11SNRLevelNotificationInterval=coDot11SNRLevelNotificationInterval, coDot11ScanSSID=coDot11ScanSSID, coDot11RSNAEnabled=coDot11RSNAEnabled, coDot11SNR=coDot11SNR, coDot11NoiseLevel=coDot11NoiseLevel, coDot11WDSPortTxErrors=coDot11WDSPortTxErrors, coDot11StationHTEntry=coDot11StationHTEntry, coDot11FortyMHzOperationImplemented=coDot11FortyMHzOperationImplemented, coDot11UnauthorizedAPNotificationEnabled=coDot11UnauthorizedAPNotificationEnabled, coDot11DetStaNbProbeReq=coDot11DetStaNbProbeReq, coDot11NotificationGroup=coDot11NotificationGroup, coDot11UnauthorizedAPNotification=coDot11UnauthorizedAPNotification, coDot11PrivacyEntry=coDot11PrivacyEntry, coDot11WEPDefaultKeysEntry=coDot11WEPDefaultKeysEntry, coDot11PhyDSSSComplianceGroup=coDot11PhyDSSSComplianceGroup, coDot11PktsRate54=coDot11PktsRate54, coDot11RegDomainsSupportedEntry=coDot11RegDomainsSupportedEntry, coDot11RSNCompliance=coDot11RSNCompliance, coDot11SupportedDataRatesTxIndex=coDot11SupportedDataRatesTxIndex, coDot11PktsTxRate54=coDot11PktsTxRate54, coDot11Sensitivity=coDot11Sensitivity, coDot11HighThroughputOptionImplemented=coDot11HighThroughputOptionImplemented, coDot11CurrentRxAntenna=coDot11CurrentRxAntenna, coDot11PhyOFDMEntry=coDot11PhyOFDMEntry, coDot11StationVLAN=coDot11StationVLAN, coDot11ScanEntry=coDot11ScanEntry, coDot11OutPkts=coDot11OutPkts, coDot11StaPktsTxMCS9=coDot11StaPktsTxMCS9, coDot11ScanChannel=coDot11ScanChannel, coDot11MultipleRetryCount=coDot11MultipleRetryCount, coDot11CurrentRegDomain=coDot11CurrentRegDomain, coDot11WEPExcludedCount=coDot11WEPExcludedCount, coDot11AccessPointConfigEntry=coDot11AccessPointConfigEntry, coDot11WDSPortSNRLevel=coDot11WDSPortSNRLevel, coDot11AssociationNotificationInterval=coDot11AssociationNotificationInterval, coDot11StaPktsRxMCS0=coDot11StaPktsRxMCS0, coDot11PktsRate9=coDot11PktsRate9, coDot11OperationEntry=coDot11OperationEntry, coDot11MulticastReceivedFrameCount=coDot11MulticastReceivedFrameCount, coDot11AssociationIndex=coDot11AssociationIndex, coDot11PktsTxRate11=coDot11PktsTxRate11, coDot11StaPktsRxMCS11=coDot11StaPktsRxMCS11)
mibBuilder.exportSymbols("COLUBRIS-802DOT11-MIB", coDot11StationDetectionGroup=coDot11StationDetectionGroup, coDot11APBaseGroupExt=coDot11APBaseGroupExt, coDot11AuthenticationAlgorithmsIndex=coDot11AuthenticationAlgorithmsIndex, coDot11ACKFailureCount=coDot11ACKFailureCount, coDot11ScanMacAddress=coDot11ScanMacAddress, coDot11CountersTable=coDot11CountersTable, coDot11PhyAdminStatus=coDot11PhyAdminStatus, coDot11PhyTxPowerOperLevel=coDot11PhyTxPowerOperLevel, coDot11Compliance=coDot11Compliance, coDot11SupportedDataRatesTxTable=coDot11SupportedDataRatesTxTable, coDot11RSNAStatsTKIPReplays=coDot11RSNAStatsTKIPReplays, coDot11RSNAOptionImplemented=coDot11RSNAOptionImplemented, coDot11WDSPortTable=coDot11WDSPortTable, coDot11TIThreshold=coDot11TIThreshold, coDot11DetStaChannel=coDot11DetStaChannel, coDot11DiversitySupport=coDot11DiversitySupport, coDot11RTSSuccessCount=coDot11RTSSuccessCount, coDot11WEPDefaultKey2Value=coDot11WEPDefaultKey2Value, coDot11MinimumSNRLevel=coDot11MinimumSNRLevel, coDot11PktsTxRate5dot5=coDot11PktsTxRate5dot5, coDot11DetStaIndex=coDot11DetStaIndex, coDot11PktsTxRate12=coDot11PktsTxRate12, coDot11RetryCount=coDot11RetryCount, coDot11WDSPortRxDropped=coDot11WDSPortRxDropped, coDot11CurrentSecondaryChannel=coDot11CurrentSecondaryChannel, coDot11ScanTable=coDot11ScanTable, coDot11PhyDSSSTable=coDot11PhyDSSSTable, coDot11RSNAStatsTKIPCounterMeasuresInvoked=coDot11RSNAStatsTKIPCounterMeasuresInvoked, coDot11TransmitRate=coDot11TransmitRate, coDot11StaHT=coDot11StaHT, coDot11ProductID=coDot11ProductID, coDot11OutOctets=coDot11OutOctets, coDot11StaPktsRxMCS1=coDot11StaPktsRxMCS1, coDot11SupportedDataRatesRxValue=coDot11SupportedDataRatesRxValue, coDot11FortyMHzOperationEnabled=coDot11FortyMHzOperationEnabled, coDot11PhyAntennasListGroup=coDot11PhyAntennasListGroup, coDot11StaPktsTxMCS13=coDot11StaPktsTxMCS13, coDot11ScanNetworkType=coDot11ScanNetworkType, coDot11WEPDefaultKey1Value=coDot11WEPDefaultKey1Value, coDot11ComplianceExt=coDot11ComplianceExt, coDot11RegDomainsSupportValue=coDot11RegDomainsSupportValue, coDot11PhyAntennaComplianceGroup=coDot11PhyAntennaComplianceGroup, coDot11StationSSID=coDot11StationSSID, coDot11WDSComplianceGroup=coDot11WDSComplianceGroup, coDot11NumberOfUsers=coDot11NumberOfUsers, coDot11DetStaTimeDiscovered=coDot11DetStaTimeDiscovered, coDot11AntennasListEntry=coDot11AntennasListEntry, coDot11StationLocalInterface=coDot11StationLocalInterface, coDot11AutoChannelInterval=coDot11AutoChannelInterval, coDot11StaPktsRxMCS8=coDot11StaPktsRxMCS8, coDot11RSNAStatsTable=coDot11RSNAStatsTable, coDot11CurrentSNRLevel=coDot11CurrentSNRLevel, coDot11ScanIndex=coDot11ScanIndex, coDot11ManagementMIBNotifications=coDot11ManagementMIBNotifications, coDot11AccessPointConfigTable=coDot11AccessPointConfigTable, coDot11OperatingMode=coDot11OperatingMode, coDot11PktsTxRate2=coDot11PktsTxRate2, coDot11DTIMPeriod=coDot11DTIMPeriod, coDot11DetStaNoiseLevel=coDot11DetStaNoiseLevel, coDot11SupportedDataRatesRxEntry=coDot11SupportedDataRatesRxEntry, coDot11DetStaTimeLastSeen=coDot11DetStaTimeLastSeen, coDot11PktsRate6=coDot11PktsRate6)
| [
2,
198,
2,
9485,
15571,
7378,
337,
9865,
8265,
20444,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
357,
4023,
1378,
16184,
76,
489,
8937,
13,
785,
14,
79,
893,
11632,
8,
198,
2,
7054,
45,
13,
16,
2723,
2393,
1378,
14,
14490,
14,
67,
615,
47562,
19,
14,
13603,
14,
76,
571,
82,
13,
16184,
76,
489,
8937,
13,
785,
14,
292,
77,
16,
14,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
198,
2,
21522,
771,
416,
279,
893,
11632,
12,
15,
13,
18,
13,
19,
379,
3300,
1737,
220,
352,
1105,
25,
1495,
25,
1821,
13130,
198,
2,
1550,
2583,
42274,
54,
15567,
19,
12,
44,
12,
1415,
2425,
3859,
21450,
2196,
1248,
13,
20,
13,
15,
416,
2836,
288,
615,
47562,
19,
198,
2,
8554,
11361,
2196,
513,
13,
22,
13,
18,
357,
12286,
11,
1526,
2681,
13130,
11,
7769,
25,
1954,
25,
1314,
8,
220,
198,
2,
198,
10267,
33234,
7483,
11,
2556,
316,
10100,
11,
34142,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
1600,
366,
10267,
33234,
7483,
1600,
366,
12349,
316,
10100,
1600,
366,
46541,
4943,
198,
45,
2434,
40161,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
1677,
5883,
1137,
6234,
1600,
366,
45,
2434,
40161,
4943,
198,
3103,
2536,
6003,
38176,
11,
11052,
10699,
3103,
2536,
2913,
11,
14206,
11395,
3103,
2536,
2913,
11,
1482,
2536,
6003,
9492,
5458,
11,
11052,
17257,
3103,
2536,
2913,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
2200,
20032,
12529,
1600,
366,
3103,
2536,
6003,
38176,
1600,
366,
11395,
10699,
3103,
2536,
2913,
1600,
366,
28008,
11395,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
9492,
5458,
1600,
366,
11395,
17257,
3103,
2536,
2913,
4943,
198,
4033,
549,
2442,
44,
70,
16762,
53,
17,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
25154,
10526,
49,
1797,
12,
50,
8895,
1600,
366,
4033,
549,
2442,
44,
70,
16762,
53,
17,
4943,
198,
5216,
549,
2442,
5432,
2389,
11,
1623,
549,
2442,
26093,
6030,
11,
1623,
549,
2442,
5432,
2389,
5574,
14202,
11,
1623,
549,
2442,
6601,
32184,
11,
1623,
549,
2442,
3673,
2649,
36695,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
25154,
10526,
49,
1797,
12,
4825,
1600,
366,
5216,
549,
2442,
5432,
2389,
1600,
366,
5216,
549,
2442,
26093,
6030,
1600,
366,
5216,
549,
2442,
5432,
2389,
5574,
14202,
1600,
366,
5216,
549,
2442,
6601,
32184,
1600,
366,
5216,
549,
2442,
3673,
2649,
36695,
4943,
198,
1073,
37725,
15457,
12727,
16934,
30150,
11,
763,
37725,
25189,
5432,
2389,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
25154,
10526,
49,
1797,
12,
53,
48771,
25620,
12,
2969,
12,
8895,
33,
1600,
366,
1073,
37725,
15457,
12727,
16934,
30150,
1600,
366,
1073,
37725,
25189,
5432,
2389,
4943,
198,
39317,
15732,
11,
611,
24564,
81,
11,
611,
15732,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
5064,
12,
8895,
33,
1600,
366,
39317,
15732,
1600,
366,
361,
24564,
81,
1600,
366,
361,
15732,
4943,
198,
3673,
2649,
13247,
11,
9515,
13247,
11,
19937,
38143,
3610,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
10943,
37,
1600,
366,
3673,
2649,
13247,
1600,
366,
10267,
13247,
1600,
366,
26796,
38143,
3610,
4943,
198,
46541,
2624,
11,
44733,
11,
314,
79,
20231,
11,
47279,
11,
9515,
7390,
26858,
11,
42808,
6030,
11,
35094,
469,
2624,
11,
337,
571,
33234,
7483,
11,
337,
571,
3351,
282,
283,
11,
337,
571,
10962,
11,
337,
571,
10962,
25166,
11,
337,
571,
10962,
39470,
11,
19937,
7390,
26858,
11,
15034,
2624,
11,
791,
32696,
2624,
11,
15034,
2414,
11,
3862,
51,
3378,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
50,
8895,
1600,
366,
46541,
2624,
1600,
366,
33,
896,
1600,
366,
40,
79,
20231,
1600,
366,
26786,
1600,
366,
10267,
7390,
26858,
1600,
366,
3673,
2649,
6030,
1600,
366,
38,
559,
469,
2624,
1600,
366,
44,
571,
33234,
7483,
1600,
366,
44,
571,
3351,
282,
283,
1600,
366,
44,
571,
10962,
1600,
366,
44,
571,
10962,
25166,
1600,
366,
44,
571,
10962,
39470,
1600,
366,
26796,
7390,
26858,
1600,
366,
31694,
2624,
1600,
366,
3118,
32696,
2624,
1600,
366,
31694,
2414,
1600,
366,
7575,
51,
3378,
4943,
198,
8206,
723,
3103,
4018,
11,
16531,
10100,
11,
14056,
11395,
11,
4100,
20231,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
4825,
1600,
366,
8206,
723,
3103,
4018,
1600,
366,
23114,
10100,
1600,
366,
38782,
11395,
1600,
366,
14155,
20231,
4943,
198,
4033,
549,
2442,
30863,
26518,
1157,
796,
19937,
7390,
26858,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
4008,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
951,
549,
2442,
30863,
26518,
1157,
13,
2617,
5956,
17354,
10786,
10531,
940,
33470,
57,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
951,
549,
2442,
30863,
26518,
1157,
13,
2617,
26121,
1634,
10786,
5216,
549,
2442,
27862,
11,
3457,
2637,
8,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
951,
549,
2442,
30863,
26518,
1157,
13,
2617,
17829,
12360,
10786,
5216,
549,
2442,
27862,
32881,
25,
939,
2688,
3530,
2441,
5867,
370,
1094,
321,
11,
10140,
657,
1731,
4349,
12,
14686,
16,
49668,
47023,
14484,
25,
1343,
16,
767,
6659,
718,
5705,
3571,
486,
376,
897,
25,
1343,
16,
767,
6659,
718,
5705,
12877,
24,
412,
12,
4529,
25,
269,
77,
12,
16184,
3149,
31,
4033,
549,
2442,
13,
785,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
951,
549,
2442,
30863,
26518,
1157,
13,
2617,
11828,
10786,
464,
337,
9865,
8265,
329,
40552,
33121,
13,
1157,
12066,
2637,
8,
198,
1073,
35,
313,
1157,
499,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
4008,
198,
1073,
35,
313,
1157,
20285,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
4008,
198,
1073,
35,
313,
1157,
6883,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
4008,
198,
1073,
35,
313,
1157,
15457,
12727,
16934,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15457,
12727,
16934,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15457,
12727,
16934,
10962,
13,
2617,
11828,
10786,
54,
25697,
7034,
8398,
12608,
13,
554,
7400,
934,
1296,
284,
1249,
329,
3294,
10245,
319,
281,
5797,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
15457,
12727,
16934,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
828,
1267,
198,
1073,
37725,
15457,
12727,
16934,
30150,
13,
30238,
12512,
434,
507,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15457,
12727,
16934,
30150,
48774,
198,
1073,
35,
313,
1157,
15457,
12727,
16934,
30150,
13,
2617,
15732,
36690,
46491,
1073,
37725,
15457,
12727,
16934,
30150,
13,
1136,
15732,
36690,
28955,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15457,
12727,
16934,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15457,
12727,
16934,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
15457,
12727,
16934,
10962,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
37725,
54,
9620,
37046,
15732,
532,
30015,
306,
1895,
257,
7034,
329,
428,
1948,
33121,
13,
1157,
7071,
2637,
8,
198,
1073,
35,
313,
1157,
6892,
323,
25262,
12367,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
352,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6892,
323,
25262,
12367,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6892,
323,
25262,
12367,
13,
2617,
11828,
10786,
22882,
6945,
611,
12521,
5456,
8985,
460,
5163,
1366,
351,
530,
1194,
2637,
8,
198,
1073,
35,
313,
1157,
3856,
7807,
5990,
2101,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
45021,
2327,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3856,
7807,
5990,
2101,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3856,
7807,
5990,
2101,
13,
2617,
11828,
10786,
5497,
16856,
262,
1271,
286,
309,
5842,
326,
257,
4429,
3544,
329,
26925,
29729,
45649,
13,
770,
1988,
318,
18307,
287,
29729,
290,
42600,
18261,
13431,
2637,
8,
198,
1073,
35,
313,
1157,
24544,
3955,
5990,
2101,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
24544,
3955,
5990,
2101,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
24544,
3955,
5990,
2101,
13,
2617,
11828,
10786,
22882,
6945,
262,
1271,
286,
34538,
20016,
326,
1288,
7512,
1022,
11478,
286,
1355,
37256,
13431,
7268,
257,
31742,
5002,
3025,
24311,
3955,
2764,
2214,
318,
657,
13,
770,
1988,
318,
18307,
287,
262,
24311,
3955,
18581,
2214,
286,
29729,
13431,
13,
20985,
8985,
779,
262,
24311,
3955,
284,
7765,
510,
422,
1877,
12,
6477,
4235,
284,
3328,
47368,
459,
4979,
2637,
8,
198,
1073,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
604,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
13,
2617,
11828,
10786,
5497,
16856,
611,
262,
40552,
33121,
13,
1157,
370,
8905,
3038,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
642,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
13,
2617,
11828,
10786,
5497,
16856,
611,
262,
7034,
318,
19340,
4535,
12,
11128,
540,
2637,
8,
198,
1073,
35,
313,
1157,
15057,
5189,
14490,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
718,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15057,
5189,
14490,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15057,
5189,
14490,
13,
2617,
11828,
10786,
5497,
16856,
262,
1271,
286,
2985,
5884,
2884,
428,
7034,
2637,
8,
198,
1073,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
767,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
13,
2617,
11828,
10786,
22882,
6945,
611,
281,
8112,
12840,
14483,
318,
1908,
1123,
640,
257,
2836,
20417,
284,
428,
7034,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
2242,
4008,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
13,
2617,
11828,
10786,
22882,
6945,
262,
11478,
1176,
286,
262,
5243,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
2242,
4008,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
13,
2617,
11828,
10786,
5497,
16856,
262,
11478,
1176,
286,
262,
5243,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
15571,
49,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
10190,
4008,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
15571,
49,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
15571,
49,
4971,
13,
2617,
11828,
10786,
26287,
11346,
49,
1241,
329,
477,
262,
5884,
5456,
8985,
2637,
8,
198,
1073,
35,
313,
1157,
4462,
50,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4462,
50,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4462,
50,
2389,
13,
2617,
11828,
10786,
44721,
17917,
8686,
284,
428,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
46787,
44046,
6601,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
1623,
549,
2442,
6601,
32184,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
46787,
44046,
6601,
32184,
13,
2617,
19580,
10786,
10378,
31023,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
46787,
44046,
6601,
32184,
13,
2617,
11828,
7203,
22882,
6945,
262,
5288,
11478,
2494,
326,
7534,
8985,
1276,
1826,
287,
1502,
284,
2018,
351,
428,
7034,
13,
20985,
8985,
326,
389,
2174,
428,
4634,
481,
407,
307,
1498,
284,
2018,
13,
383,
1988,
286,
428,
2134,
1276,
1464,
307,
1342,
393,
4961,
621,
262,
1988,
286,
763,
35,
313,
1157,
40541,
6601,
32184,
13,
1439,
6972,
3815,
481,
1487,
1864,
284,
262,
1181,
286,
262,
5243,
338,
12521,
4235,
357,
1073,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
737,
37941,
1453,
30863,
26518,
1157,
65,
25,
7754,
395,
11,
352,
11,
362,
11,
642,
13,
20,
11,
1367,
41022,
37941,
1453,
30863,
26518,
1157,
64,
25,
7754,
395,
11,
718,
11,
860,
11,
1105,
11,
1248,
11,
1987,
11,
4570,
11,
4764,
11,
7175,
41022,
37941,
1453,
30863,
26518,
1157,
70,
25,
7754,
395,
11,
718,
11,
860,
11,
1105,
11,
1248,
11,
1987,
11,
4570,
11,
4764,
11,
7175,
41022,
1367,
65,
1870,
70,
25,
1439,
3965,
10431,
19570,
198,
1073,
35,
313,
1157,
46787,
40541,
6601,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
1623,
549,
2442,
6601,
32184,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
46787,
40541,
6601,
32184,
13,
2617,
19580,
10786,
10378,
31023,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
46787,
40541,
6601,
32184,
13,
2617,
11828,
7203,
22882,
6945,
262,
5415,
11478,
2494,
326,
7534,
8985,
1276,
2461,
284,
2018,
351,
428,
7034,
13,
1012,
2334,
8985,
326,
2230,
284,
11602,
379,
257,
2440,
1366,
2494,
481,
307,
6520,
13,
383,
1988,
286,
428,
2134,
1276,
1464,
307,
3744,
621,
262,
1988,
286,
763,
35,
313,
1157,
44046,
6601,
32184,
13,
1439,
6972,
3815,
481,
1487,
1864,
284,
262,
1181,
286,
262,
5243,
338,
12521,
4235,
357,
1073,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
737,
37941,
1453,
30863,
26518,
1157,
65,
25,
352,
11,
362,
11,
642,
13,
20,
11,
1367,
44,
1443,
11,
4511,
37941,
1453,
30863,
26518,
1157,
64,
25,
718,
11,
860,
11,
1105,
11,
1248,
11,
1987,
11,
4570,
11,
4764,
11,
7175,
41022,
11,
4511,
37941,
1453,
30863,
26518,
1157,
70,
25,
718,
11,
860,
11,
1105,
11,
1248,
11,
1987,
11,
4570,
11,
4764,
11,
7175,
41022,
11,
4511,
1367,
65,
1870,
70,
25,
1439,
3965,
10431,
19570,
198,
1073,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
13,
2617,
11828,
10786,
5497,
16856,
611,
262,
7034,
318,
33121,
13,
1157,
77,
6007,
2637,
8,
198,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
13,
2617,
26687,
10786,
40,
31909,
520,
67,
33121,
13,
1157,
12,
21498,
11,
767,
13,
18,
13,
16,
13,
16,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
13,
2617,
11828,
10786,
1212,
357,
43169,
723,
8,
3084,
286,
12608,
318,
257,
900,
286,
477,
262,
18239,
16113,
4855,
416,
262,
8985,
13,
383,
1708,
389,
262,
4277,
3815,
290,
262,
3917,
11862,
25,
11052,
796,
352,
25,
4946,
4482,
11052,
796,
362,
25,
39403,
7383,
11537,
198,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
48191,
978,
7727,
907,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
532,
30015,
306,
5911,
281,
11862,
287,
262,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
362,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
262,
5721,
283,
5563,
287,
262,
48191,
978,
7727,
907,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
47649,
3299,
2348,
42289,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
362,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
9654,
11964,
1600,
352,
828,
5855,
28710,
9218,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
42289,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
42289,
13,
2617,
11828,
10786,
33234,
6945,
477,
262,
18239,
16113,
4855,
416,
262,
3563,
1722,
13,
383,
1708,
389,
262,
4277,
3815,
290,
262,
511,
3917,
16113,
13,
11052,
796,
352,
25,
4946,
4482,
11052,
796,
362,
25,
39403,
7383,
11537,
198,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
362,
11,
352,
11,
513,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
13,
2617,
11828,
7203,
1212,
11688,
11,
618,
2081,
379,
257,
4429,
11,
13536,
262,
13427,
286,
262,
18239,
11862,
3417,
287,
262,
11188,
3084,
5726,
287,
18239,
13431,
2722,
416,
262,
4429,
326,
423,
5629,
18239,
8379,
3146,
13,
383,
4277,
1988,
286,
428,
11688,
318,
705,
7942,
6,
329,
262,
4946,
4482,
3084,
5726,
290,
705,
9562,
6,
329,
477,
584,
3084,
12784,
19570,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
13,
2617,
26687,
10786,
40,
31909,
520,
67,
33121,
13,
1157,
12,
21498,
11,
807,
13,
18,
13,
17,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
13,
2617,
11828,
10786,
3103,
984,
723,
3084,
329,
370,
8905,
4277,
8251,
13,
770,
3084,
4909,
262,
1440,
370,
8905,
4277,
3200,
1994,
3815,
11188,
284,
262,
1440,
1744,
7383,
2389,
3815,
13,
383,
370,
8905,
4277,
3200,
8251,
389,
34193,
44423,
12,
1340,
11319,
13,
25770,
82,
284,
1100,
262,
12784,
287,
428,
3084,
481,
1441,
23993,
3722,
290,
3815,
286,
9242,
393,
6632,
13,
383,
4277,
1988,
286,
1123,
370,
8905,
4277,
1994,
318,
9242,
13,
770,
3084,
318,
407,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
11,
352,
828,
1267,
198,
1073,
37725,
15457,
12727,
16934,
30150,
13,
30238,
12512,
434,
507,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
48774,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
13,
2617,
15732,
36690,
46491,
1073,
37725,
15457,
12727,
16934,
30150,
13,
1136,
15732,
36690,
28955,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
370,
8905,
15161,
26363,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
37725,
54,
9620,
37046,
15732,
532,
30015,
306,
1895,
257,
7034,
329,
428,
1948,
33121,
13,
1157,
7071,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
11,
352,
11,
352,
828,
370,
8905,
9218,
4906,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
13,
2617,
11828,
10786,
32,
370,
8905,
4277,
3200,
1994,
16,
1988,
13,
11725,
428,
11688,
481,
1464,
1441,
257,
12169,
12,
24539,
4731,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
11,
352,
11,
362,
828,
370,
8905,
9218,
4906,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
13,
2617,
11828,
10786,
32,
370,
8905,
4277,
3200,
1994,
17,
1988,
13,
11725,
428,
11688,
481,
1464,
1441,
257,
12169,
12,
24539,
4731,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
11,
352,
11,
513,
828,
370,
8905,
9218,
4906,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
13,
2617,
11828,
10786,
32,
370,
8905,
4277,
3200,
1994,
18,
1988,
13,
11725,
428,
11688,
481,
1464,
1441,
257,
12169,
12,
24539,
4731,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
513,
11,
352,
11,
604,
828,
370,
8905,
9218,
4906,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
13,
2617,
11828,
10786,
32,
370,
8905,
4277,
3200,
1994,
19,
1988,
13,
11725,
428,
11688,
481,
1464,
1441,
257,
12169,
12,
24539,
4731,
2637,
8,
198,
1073,
35,
313,
1157,
48948,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
10962,
13,
2617,
11828,
10786,
13247,
7268,
12608,
3519,
284,
40552,
33121,
13,
1157,
16777,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
13,
770,
3084,
318,
407,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
48948,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
828,
1267,
198,
1073,
37725,
15457,
12727,
16934,
30150,
13,
30238,
12512,
434,
507,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48948,
30150,
48774,
198,
1073,
35,
313,
1157,
48948,
30150,
13,
2617,
15732,
36690,
46491,
1073,
37725,
15457,
12727,
16934,
30150,
13,
1136,
15732,
36690,
28955,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
48948,
10962,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
37725,
54,
9620,
37046,
15732,
532,
30015,
306,
1895,
257,
7034,
329,
428,
1948,
33121,
13,
1157,
7071,
2637,
8,
198,
1073,
35,
313,
1157,
48948,
19904,
6545,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
352,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
19904,
6545,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48948,
19904,
6545,
13,
2617,
11828,
10786,
2215,
428,
11688,
318,
26751,
11,
340,
9217,
326,
617,
1241,
286,
2324,
318,
24399,
329,
39573,
13431,
286,
2099,
6060,
13,
1114,
40552,
33121,
13,
1157,
12,
18946,
7534,
11,
262,
2324,
9030,
973,
318,
370,
8905,
13,
1114,
19340,
4535,
12,
11128,
540,
7534,
11,
281,
3224,
7885,
763,
35,
313,
1157,
6998,
4535,
20491,
9217,
1771,
19340,
4535,
318,
9343,
13,
1002,
763,
35,
313,
1157,
6998,
4535,
20491,
318,
26563,
393,
262,
337,
9865,
7885,
857,
407,
2152,
11,
262,
2324,
9030,
24399,
318,
370,
8905,
26,
611,
763,
35,
313,
1157,
6998,
4535,
20491,
318,
26751,
11,
19340,
4535,
2324,
11701,
24399,
389,
17839,
287,
262,
763,
35,
313,
1157,
6998,
45,
2246,
261,
5647,
10962,
13,
383,
4277,
1988,
286,
428,
11688,
318,
26563,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
513,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
13,
2617,
26687,
10786,
40,
31909,
520,
67,
33121,
13,
1157,
12,
21498,
11,
807,
13,
18,
13,
17,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
13,
2617,
11828,
10786,
1212,
11688,
9217,
262,
779,
286,
262,
717,
11,
1218,
11,
2368,
11,
393,
5544,
5002,
286,
262,
12887,
5760,
891,
1721,
40729,
7177,
618,
900,
284,
3815,
286,
6632,
11,
530,
11,
734,
11,
393,
1115,
13,
383,
4277,
1988,
286,
428,
11688,
318,
657,
2637,
8,
198,
1073,
35,
313,
1157,
3109,
9152,
3118,
43628,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
513,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3109,
9152,
3118,
43628,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3109,
9152,
3118,
43628,
13,
2617,
11828,
10786,
2215,
428,
11688,
318,
2081,
11,
262,
47550,
857,
407,
7603,
379,
262,
20582,
2139,
7071,
2722,
6579,
35,
5842,
326,
423,
262,
370,
8905,
850,
3245,
286,
262,
25184,
6779,
2214,
4961,
284,
6632,
13,
1649,
428,
11688,
318,
3991,
11,
262,
47550,
743,
2453,
6579,
35,
5842,
326,
423,
262,
370,
8905,
850,
3245,
286,
262,
25184,
6779,
2214,
4961,
284,
6632,
13,
383,
4277,
1988,
286,
428,
11688,
318,
2081,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
604,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
13,
2617,
11828,
10786,
1212,
3753,
41867,
618,
257,
5739,
318,
2722,
351,
262,
370,
8905,
850,
3245,
286,
262,
25184,
6779,
2214,
900,
284,
530,
290,
262,
1988,
286,
262,
12460,
53,
355,
2722,
287,
262,
5739,
857,
407,
2872,
262,
12460,
53,
1988,
326,
318,
10488,
329,
262,
10154,
286,
262,
2722,
5739,
13,
12460,
53,
8563,
329,
309,
42,
4061,
389,
407,
14789,
287,
428,
7885,
475,
287,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
642,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
13,
2617,
11828,
10786,
1212,
3753,
41867,
618,
257,
5739,
318,
2722,
351,
262,
370,
8905,
850,
3245,
286,
262,
25184,
6779,
2214,
900,
284,
6632,
290,
262,
1988,
286,
763,
35,
313,
1157,
3109,
9152,
3118,
43628,
5640,
326,
5739,
284,
307,
25148,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
604,
11,
352,
11,
718,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
20491,
13,
2617,
11828,
10786,
5497,
16856,
611,
19340,
4535,
318,
9343,
11,
543,
1724,
326,
262,
371,
15571,
6188,
11703,
318,
23944,
287,
1355,
37256,
290,
42600,
20549,
274,
13,
770,
2134,
4433,
326,
763,
35,
313,
1157,
48948,
19904,
6545,
635,
307,
900,
284,
26751,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
10962,
13,
2617,
11828,
10786,
13247,
7268,
12608,
3519,
284,
3917,
8985,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
13,
770,
3084,
318,
407,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
8021,
41003,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
8021,
41003,
15732,
532,
30015,
306,
5911,
257,
3335,
2641,
262,
8112,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
262,
5721,
283,
5563,
287,
262,
5396,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
44721,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
362,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
44721,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
44721,
20231,
13,
2617,
11828,
10786,
40257,
20582,
17917,
8686,
284,
262,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
13313,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
513,
828,
15034,
2624,
3419,
737,
2617,
3118,
896,
10786,
43012,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
13313,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
13313,
7575,
13,
2617,
11828,
10786,
9527,
28361,
640,
287,
4201,
1201,
257,
4429,
468,
3917,
284,
428,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
11712,
282,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11712,
282,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11712,
282,
4971,
13,
2617,
11828,
10786,
45027,
286,
262,
12521,
6737,
2637,
8,
198,
1073,
35,
313,
1157,
2949,
786,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2949,
786,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2949,
786,
4971,
13,
2617,
11828,
10786,
4971,
286,
1957,
4469,
7838,
2637,
8,
198,
1073,
35,
313,
1157,
15571,
49,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
13,
2617,
11828,
10786,
6892,
876,
4202,
286,
262,
6737,
1241,
3688,
284,
262,
7838,
1241,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
767,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
16,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
352,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
807,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
17,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
362,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
642,
13,
20,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1157,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
838,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1157,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1157,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
1367,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
21,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1367,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
21,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
21,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
718,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
24,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1105,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
24,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
24,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
860,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1065,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1511,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1065,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1065,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
1105,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1507,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1478,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1507,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1507,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
1248,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1731,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1315,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1731,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
1731,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
1987,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2623,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1467,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
2623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
2623,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
4570,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2780,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1596,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
2780,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
2780,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
4764,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
32184,
4051,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1248,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
4051,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
32184,
4051,
13,
2617,
11828,
10786,
15057,
286,
13431,
2722,
379,
7175,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
8291,
2781,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
678,
828,
791,
32696,
2624,
3419,
737,
2617,
3118,
896,
10786,
4059,
42,
65,
14,
82,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
2781,
32184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
2781,
32184,
13,
2617,
11828,
10786,
11297,
21937,
2494,
286,
257,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
3041,
15164,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1160,
828,
791,
32696,
2624,
3419,
737,
2617,
3118,
896,
10786,
4059,
42,
65,
14,
82,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3041,
15164,
32184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3041,
15164,
32184,
13,
2617,
11828,
10786,
11297,
3328,
2494,
286,
257,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
818,
47,
74,
912,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2310,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
818,
47,
74,
912,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
818,
47,
74,
912,
13,
2617,
11828,
10786,
15057,
286,
24624,
2722,
422,
262,
4429,
706,
262,
8112,
2637,
8,
198,
1073,
35,
313,
1157,
7975,
47,
74,
912,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2534,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
7975,
47,
74,
912,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
7975,
47,
74,
912,
13,
2617,
11828,
10786,
15057,
286,
24624,
3758,
284,
262,
4429,
706,
262,
8112,
2637,
8,
198,
1073,
35,
313,
1157,
818,
12349,
1039,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2242,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
818,
12349,
1039,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
818,
12349,
1039,
13,
2617,
11828,
10786,
15057,
286,
19318,
1039,
2722,
422,
262,
4429,
706,
262,
8112,
2637,
8,
198,
1073,
35,
313,
1157,
7975,
12349,
1039,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1987,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
7975,
12349,
1039,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
7975,
12349,
1039,
13,
2617,
11828,
10786,
15057,
286,
19318,
1039,
3758,
284,
262,
4429,
706,
262,
8112,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
5432,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1679,
828,
1623,
549,
2442,
5432,
2389,
5574,
14202,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
5432,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
5432,
2389,
13,
2617,
11828,
10786,
5432,
2389,
286,
262,
3917,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2608,
828,
2556,
316,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
3933,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
5376,
13,
2617,
11828,
10786,
5376,
286,
262,
3917,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
4061,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2681,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
4061,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
4061,
20231,
13,
2617,
11828,
10786,
4061,
2209,
286,
262,
3917,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
53,
25697,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2579,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
2319,
5824,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
53,
25697,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
53,
25697,
13,
2617,
11828,
10786,
53,
25697,
4522,
286,
262,
3917,
4429,
13,
770,
2134,
318,
1464,
1695,
319,
18284,
3486,
82,
13,
2102,
11,
319,
1895,
12,
36500,
3486,
82,
11,
428,
2134,
318,
691,
1695,
739,
1728,
3403,
11,
618,
262,
5456,
4429,
318,
5884,
284,
257,
7034,
326,
318,
407,
1895,
12,
14401,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
14565,
39317,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2808,
828,
26491,
15732,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
14565,
39317,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
14565,
39317,
13,
2617,
11828,
10786,
22882,
6945,
262,
10714,
26491,
810,
262,
3917,
4429,
4979,
481,
307,
28308,
284,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
6535,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
1542,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
6535,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
6535,
13,
2617,
11828,
10786,
5497,
16856,
326,
262,
3917,
4429,
318,
7154,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
3261,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
23108,
1600,
352,
828,
5855,
86,
538,
1600,
362,
828,
5855,
30488,
541,
1600,
513,
828,
5855,
64,
274,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
13,
2617,
11828,
10786,
5497,
16856,
262,
15835,
2099,
973,
416,
262,
12521,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
3933,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
352,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
4747,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
362,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
4974,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
642,
13,
20,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
3439,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
1367,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
4570,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
718,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
5214,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
860,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
4353,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
1105,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
5014,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
1248,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
2319,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
1987,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
6073,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
4570,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
5433,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
4764,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
642,
11,
352,
11,
5946,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
13,
2617,
11828,
10786,
15057,
286,
13431,
18307,
379,
7175,
41022,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
10962,
13,
2617,
11828,
10786,
3103,
984,
723,
3084,
329,
262,
1957,
19609,
6117,
13,
770,
3084,
4909,
262,
2237,
1957,
19609,
20582,
2209,
13,
770,
3084,
318,
407,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
370,
5258,
4347,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
22332,
4303,
419,
15732,
532,
30015,
306,
5911,
257,
1957,
19609,
2792,
2641,
262,
1957,
19609,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
718,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
1957,
19609,
6117,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
362,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
13,
2617,
11828,
10786,
44721,
2209,
286,
262,
6569,
3335,
319,
262,
584,
1735,
286,
262,
1957,
19609,
2792,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
513,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
13,
2617,
11828,
10786,
11297,
2494,
286,
262,
1957,
19609,
2792,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
13,
2617,
11828,
10786,
6892,
876,
4202,
286,
262,
6737,
1241,
3688,
284,
262,
7838,
1241,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
642,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
13,
2617,
11828,
10786,
15057,
286,
24624,
18307,
319,
428,
1957,
19609,
2792,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
718,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
13,
2617,
11828,
10786,
15057,
286,
24624,
326,
714,
407,
307,
18307,
319,
428,
1957,
19609,
2792,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
767,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
13,
2617,
11828,
10786,
15057,
286,
24624,
326,
714,
407,
307,
1908,
2233,
284,
262,
1708,
3840,
25,
49715,
1005,
563,
4179,
20672,
393,
309,
87,
25148,
780,
286,
2642,
14719,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
807,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
13,
2617,
11828,
10786,
15057,
286,
24624,
2722,
319,
428,
1957,
19609,
2792,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
13,
2617,
11828,
10786,
15057,
286,
24624,
326,
547,
5710,
319,
428,
1957,
19609,
2792,
2233,
284,
257,
3092,
286,
4133,
2637,
8,
198,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
718,
11,
352,
11,
838,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
13,
2617,
11828,
10786,
15057,
286,
24624,
326,
714,
407,
307,
2722,
2233,
284,
262,
1708,
3840,
25,
49715,
1221,
1371,
370,
8905,
15009,
11,
49715,
1221,
1371,
370,
8905,
12460,
53,
4049,
11,
49715,
49064,
287,
2089,
49064,
21441,
11,
49715,
49064,
287,
49064,
21441,
49715,
370,
8905,
3318,
721,
6012,
540,
11,
49715,
376,
7902,
8563,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
10962,
13,
2617,
11828,
10786,
3103,
984,
723,
3084,
329,
262,
3486,
21976,
2482,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
13,
770,
3084,
318,
407,
4855,
319,
262,
370,
23199,
12,
2167,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
3486,
9367,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
33351,
15732,
532,
30015,
306,
5911,
281,
3486,
287,
262,
9367,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
3486,
287,
262,
9367,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
14155,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
362,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
14155,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
14155,
20231,
13,
2617,
11828,
10786,
464,
12521,
20582,
2209,
286,
262,
6569,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
29239,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
29239,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
29239,
13,
2617,
11828,
10786,
464,
5361,
8373,
6518,
286,
262,
6569,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
5432,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
604,
828,
1623,
549,
2442,
5432,
2389,
5574,
14202,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
5432,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
5432,
2389,
13,
2617,
11828,
10786,
464,
4809,
5345,
4522,
7025,
416,
262,
6569,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
11712,
282,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
11712,
282,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
11712,
282,
4971,
13,
2617,
11828,
10786,
45027,
286,
262,
12521,
6737,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
2949,
786,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
2949,
786,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
2949,
786,
4971,
13,
2617,
11828,
10786,
4971,
286,
1957,
4469,
7838,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
15571,
49,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
15571,
49,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
15571,
49,
13,
2617,
11828,
10786,
6892,
876,
4202,
286,
262,
6737,
1241,
3688,
284,
262,
7838,
1241,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
19580,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
34680,
1600,
657,
828,
5855,
19721,
1600,
352,
828,
5855,
9613,
1457,
1143,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
19580,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
19580,
13,
2617,
11828,
7203,
464,
3722,
286,
262,
28660,
3335,
13,
705,
34680,
10354,
383,
3335,
714,
407,
5004,
262,
3722,
286,
262,
28660,
3486,
13,
705,
19721,
10354,
383,
3486,
318,
636,
286,
262,
10435,
1351,
286,
3486,
82,
13,
705,
9613,
1457,
1143,
10354,
383,
3486,
318,
407,
636,
286,
262,
10435,
1351,
286,
3486,
82,
19570,
198,
1073,
35,
313,
1157,
33351,
11909,
56,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
494,
1453,
30863,
26518,
1157,
64,
1600,
352,
828,
5855,
494,
1453,
30863,
26518,
1157,
65,
1600,
362,
828,
5855,
494,
1453,
30863,
26518,
1157,
70,
1600,
513,
828,
5855,
494,
1453,
30863,
26518,
1157,
2616,
1600,
604,
828,
5855,
494,
1453,
30863,
26518,
1157,
782,
1600,
642,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
11909,
56,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
11909,
56,
6030,
13,
2617,
11828,
10786,
26093,
2099,
973,
416,
262,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
818,
21797,
7575,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
838,
828,
3862,
51,
3378,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
818,
21797,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
818,
21797,
7575,
13,
2617,
11828,
10786,
9527,
28361,
640,
1201,
262,
938,
34538,
373,
1775,
329,
428,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
26245,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
408,
1600,
352,
828,
5855,
571,
824,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
26245,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
26245,
6030,
13,
2617,
11828,
10786,
26245,
2099,
973,
416,
262,
3335,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
24074,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
767,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
23108,
1600,
352,
828,
5855,
86,
538,
1600,
362,
828,
5855,
86,
8957,
1600,
513,
828,
5855,
86,
8957,
17,
1600,
604,
828,
5855,
86,
8957,
1870,
54,
8957,
17,
1600,
642,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
24074,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
24074,
13,
2617,
11828,
10786,
5497,
16856,
262,
370,
4537,
14,
27195,
13168,
2099,
973,
416,
262,
12521,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
20491,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
20491,
13,
2617,
11828,
7203,
22882,
6945,
611,
27458,
9367,
815,
307,
6157,
393,
407,
13,
1892,
4855,
319,
262,
370,
23199,
12,
2167,
13,
705,
21633,
10354,
2039,
2977,
27458,
23824,
319,
428,
3335,
13,
705,
40223,
10354,
31529,
27458,
23824,
319,
428,
3335,
19570,
198,
1073,
35,
313,
1157,
33351,
5990,
2101,
8467,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
940,
11,
4570,
405,
29720,
21018,
7,
8054,
29720,
2617,
3118,
896,
10786,
43012,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
5990,
2101,
8467,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
5990,
2101,
8467,
13,
2617,
11828,
7203,
22882,
6945,
262,
640,
1022,
27458,
23824,
13,
5501,
640,
257,
9367,
4905,
318,
6157,
11,
691,
530,
8373,
318,
28660,
13,
317,
3148,
2033,
286,
27458,
23824,
389,
2622,
287,
1502,
1844,
257,
1336,
9367,
286,
477,
262,
4855,
19998,
13,
770,
11507,
691,
8991,
618,
763,
35,
313,
1157,
33351,
20491,
318,
900,
284,
705,
21633,
4458,
1892,
4855,
319,
262,
337,
16243,
19570,
198,
1073,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
838,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
13,
2617,
11828,
10786,
22882,
6945,
262,
10289,
286,
262,
2393,
326,
4909,
257,
1351,
286,
477,
10435,
1895,
2173,
13,
1002,
645,
4938,
10289,
318,
1944,
287,
428,
2214,
11,
262,
3486,
481,
407,
307,
1498,
284,
24061,
262,
23586,
3084,
13,
383,
5794,
286,
428,
2393,
318,
23735,
13,
5501,
5726,
287,
262,
2393,
318,
13160,
286,
734,
3709,
25,
20582,
2209,
290,
6723,
2389,
13,
5501,
5726,
815,
1656,
319,
257,
649,
1627,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1367,
828,
1623,
549,
2442,
3673,
2649,
36695,
22446,
21018,
10786,
21633,
11537,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
13,
2617,
11828,
10786,
22882,
6945,
611,
27458,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
2995,
389,
7560,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1802,
2388,
4008,
737,
2617,
3118,
896,
10786,
1084,
1769,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
13,
2617,
11828,
10786,
9492,
2100,
287,
2431,
1022,
22959,
3486,
19605,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1511,
828,
1623,
549,
2442,
3673,
2649,
36695,
22446,
21018,
10786,
40223,
11537,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
13,
2617,
11828,
10786,
22882,
6945,
611,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
2995,
389,
7560,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
1802,
2388,
4008,
737,
2617,
3118,
896,
10786,
1084,
1769,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
13,
2617,
11828,
10786,
9492,
2100,
287,
2431,
1022,
8112,
19605,
13,
25700,
428,
11688,
284,
657,
481,
15560,
27458,
7216,
286,
8112,
14483,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
6535,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
6535,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
6535,
10962,
13,
2617,
11828,
10786,
13247,
7268,
12608,
3519,
284,
7154,
8985,
13,
770,
3084,
318,
407,
4855,
319,
262,
370,
23199,
12,
2167,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
6535,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
828,
1267,
198,
1073,
35,
313,
1157,
8021,
41003,
30150,
13,
30238,
12512,
434,
507,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
6535,
30150,
48774,
198,
1073,
35,
313,
1157,
12367,
6535,
30150,
13,
2617,
15732,
36690,
46491,
1073,
35,
313,
1157,
8021,
41003,
30150,
13,
1136,
15732,
36690,
28955,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
6535,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
6535,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
4429,
7154,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
8021,
41003,
15732,
532,
30015,
306,
5911,
257,
3335,
2641,
262,
8112,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
352,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
13,
2617,
11828,
10786,
44,
7902,
973,
981,
491,
292,
77,
16138,
262,
938,
5739,
284,
262,
7154,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
362,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
13,
2617,
11828,
10786,
44,
7902,
973,
416,
262,
938,
5739,
2722,
422,
262,
7154,
4429,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
29239,
30916,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
66,
86,
1238,
25983,
1600,
352,
828,
5855,
66,
86,
1821,
25983,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
29239,
30916,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
29239,
30916,
13,
2617,
11828,
10786,
29239,
9647,
973,
416,
262,
12521,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
16438,
18878,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
604,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
16438,
18878,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
16438,
18878,
13,
2617,
11828,
10786,
5497,
16856,
611,
262,
12521,
5456,
318,
1262,
1790,
30616,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
642,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
15,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
718,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
16,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
767,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
17,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
807,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
18,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
19,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
838,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
20,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1367,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
21,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1105,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
22,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1511,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
23,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1478,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
24,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1315,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
940,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1467,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1596,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
1065,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1248,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
1485,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
678,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
1415,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1160,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
13,
2617,
11828,
10786,
15057,
286,
18307,
13431,
981,
1262,
337,
7902,
1314,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2310,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
15,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2534,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
16,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2242,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
17,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1987,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
18,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1679,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
19,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2608,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
20,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2681,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
21,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2579,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
22,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
2808,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
23,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
1542,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
24,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
3261,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
940,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
3933,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
4747,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
1065,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
4974,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
1485,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
3439,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
1415,
2637,
8,
198,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1315,
11,
352,
11,
4570,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
13,
2617,
11828,
10786,
15057,
286,
2722,
13431,
981,
1262,
337,
7902,
1314,
2637,
8,
198,
1073,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1467,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
13,
2617,
11828,
10786,
15057,
286,
8985,
287,
262,
12326,
4429,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
11197,
12367,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
11197,
12367,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
11197,
12367,
10962,
13,
2617,
11828,
10786,
13247,
7268,
12608,
3519,
284,
8985,
7216,
12774,
2581,
13,
770,
3084,
318,
407,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
11197,
12367,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
11197,
12367,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
11197,
12367,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
12326,
4429,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
11242,
1273,
64,
15732,
532,
30015,
306,
5911,
257,
3335,
2641,
262,
12326,
4429,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
262,
5721,
283,
5563,
287,
262,
12326,
4429,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
362,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
13,
2617,
11828,
10786,
44721,
2209,
286,
262,
12521,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
29239,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
29239,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
29239,
13,
2617,
11828,
10786,
464,
5361,
8373,
6518,
618,
262,
938,
12774,
2581,
373,
2722,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
13,
2617,
11828,
10786,
45027,
286,
262,
12521,
6737,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
13,
2617,
11828,
10786,
4971,
286,
1957,
4469,
7838,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
718,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
13,
2617,
11828,
10786,
14957,
1271,
286,
33124,
2581,
2722,
422,
428,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
767,
828,
791,
32696,
2624,
3419,
737,
2617,
3118,
896,
10786,
4059,
42,
65,
14,
82,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
32184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
32184,
13,
2617,
11828,
10786,
3041,
15164,
2494,
286,
262,
938,
12774,
2581,
2722,
422,
428,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
807,
828,
1623,
549,
2442,
5432,
2389,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
13,
2617,
11828,
10786,
5432,
2389,
7763,
287,
262,
938,
12774,
2581,
2722,
422,
428,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
3118,
896,
10786,
43012,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
13,
2617,
11828,
10786,
9527,
28361,
640,
287,
4201,
1201,
262,
717,
12774,
468,
587,
2722,
422,
428,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
352,
11,
1596,
11,
352,
11,
838,
828,
791,
32696,
2624,
3419,
737,
2617,
3118,
896,
10786,
43012,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
13,
2617,
11828,
10786,
9527,
28361,
640,
287,
4201,
1201,
262,
938,
12774,
468,
587,
2722,
422,
428,
5456,
2637,
8,
198,
1073,
35,
313,
1157,
32180,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
32180,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
32180,
10962,
13,
2617,
11828,
10786,
13247,
4909,
20582,
12608,
27113,
284,
262,
4905,
286,
262,
20582,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
2637,
8,
198,
1073,
35,
313,
1157,
32180,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
32180,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
32180,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
32180,
30150,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
44721,
20231,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
352,
828,
4100,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44721,
20231,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44721,
20231,
13,
2617,
11828,
10786,
40257,
20582,
17917,
8686,
284,
262,
47550,
2637,
8,
198,
1073,
35,
313,
1157,
49,
4694,
817,
10126,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
11395,
17257,
3103,
2536,
2913,
7,
12762,
11,
1315,
1821,
828,
11052,
17257,
3103,
2536,
2913,
7,
1954,
2857,
11,
2242,
2857,
828,
15306,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
817,
10126,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
817,
10126,
13,
2617,
11828,
10786,
22882,
6945,
262,
1271,
286,
19318,
1039,
287,
281,
4904,
35,
52,
11,
2174,
543,
281,
371,
4694,
14,
4177,
50,
42231,
318,
407,
6157,
13,
1052,
371,
4694,
14,
4177,
50,
42231,
318,
6157,
379,
262,
3726,
286,
597,
5739,
5163,
8379,
810,
262,
4904,
35,
52,
318,
286,
2099,
6060,
393,
8549,
11,
262,
4904,
35,
52,
468,
281,
1981,
2209,
287,
262,
17917,
16,
2214,
11,
290,
262,
4129,
286,
262,
4904,
35,
52,
318,
3744,
621,
428,
11387,
13,
357,
1890,
3224,
3307,
11,
3522,
284,
8655,
2310,
287,
860,
13,
22,
2014,
25700,
428,
11688,
284,
307,
4025,
621,
262,
5415,
6579,
35,
52,
2546,
468,
262,
1245,
286,
6225,
572,
262,
371,
4694,
14,
4177,
50,
42231,
329,
13431,
286,
6060,
393,
8549,
2099,
18307,
416,
428,
47550,
13,
383,
4277,
1988,
286,
428,
11688,
318,
2242,
2857,
2637,
8,
198,
1073,
35,
313,
1157,
16438,
9781,
563,
39184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
9781,
563,
39184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
9781,
563,
39184,
13,
2617,
11828,
10786,
5497,
16856,
262,
5415,
1271,
286,
11478,
6370,
286,
257,
5739,
11,
262,
4129,
286,
543,
318,
1342,
621,
393,
4961,
284,
763,
35,
313,
1157,
49,
4694,
817,
10126,
11,
326,
389,
925,
878,
257,
5287,
4006,
318,
8203,
13,
383,
4277,
1988,
286,
428,
11688,
318,
767,
2637,
8,
198,
1073,
35,
313,
1157,
14617,
9781,
563,
39184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
14617,
9781,
563,
39184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
14617,
9781,
563,
39184,
13,
2617,
11828,
10786,
5497,
16856,
262,
5415,
1271,
286,
11478,
6370,
286,
257,
5739,
11,
262,
4129,
286,
543,
318,
3744,
621,
763,
35,
313,
1157,
49,
4694,
817,
10126,
11,
326,
389,
925,
878,
257,
5287,
4006,
318,
8203,
13,
383,
4277,
1988,
286,
428,
11688,
318,
604,
2637,
8,
198,
1073,
35,
313,
1157,
42974,
14374,
817,
10126,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
11645,
11,
2242,
3510,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
42974,
14374,
817,
10126,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
42974,
14374,
817,
10126,
13,
2617,
11828,
10786,
5497,
16856,
262,
1459,
5415,
2546,
11,
287,
19318,
1039,
11,
286,
262,
4904,
35,
52,
326,
743,
307,
6793,
284,
262,
9370,
56,
13,
1052,
6579,
35,
52,
318,
5445,
866,
656,
21441,
611,
663,
2546,
21695,
262,
1988,
286,
428,
11688,
706,
4375,
20582,
24697,
290,
33122,
13,
1052,
6579,
35,
52,
393,
20806,
5760,
52,
318,
41630,
618,
262,
7186,
5739,
468,
281,
1981,
2209,
287,
262,
17917,
16,
2214,
11,
290,
262,
4129,
286,
262,
5739,
318,
4025,
621,
428,
11387,
13,
383,
4277,
1988,
329,
428,
11688,
318,
262,
14494,
286,
2242,
3510,
393,
262,
257,
44,
5760,
5883,
897,
24539,
286,
262,
7223,
9370,
56,
290,
481,
1239,
7074,
262,
14494,
286,
2242,
3510,
393,
262,
257,
44,
5760,
5883,
897,
24539,
286,
262,
7223,
9370,
56,
13,
383,
1988,
286,
428,
11688,
481,
1239,
307,
1342,
621,
17759,
13,
705,
8,
198,
1073,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
718,
828,
791,
32696,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
42313,
2920,
3134,
25710,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
13,
2617,
11828,
10786,
9527,
28361,
640,
287,
309,
52,
706,
262,
4238,
11478,
286,
281,
6579,
35,
52,
11,
706,
543,
2252,
6370,
284,
21937,
262,
6579,
35,
52,
389,
23083,
13,
383,
4277,
1988,
286,
428,
11688,
318,
22243,
2637,
8,
198,
1073,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
767,
828,
791,
32696,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
42313,
2920,
3134,
25710,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
13,
2617,
11828,
10786,
9527,
28361,
640,
287,
309,
52,
11,
706,
262,
4238,
16307,
286,
257,
41630,
20806,
5760,
52,
393,
6579,
35,
52,
11,
706,
543,
2252,
6370,
284,
302,
292,
15140,
262,
20806,
5760,
52,
393,
6579,
35,
52,
318,
23083,
13,
383,
4277,
1988,
318,
22243,
2637,
8,
198,
1073,
35,
313,
1157,
44445,
15051,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
807,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
13108,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44445,
15051,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44445,
15051,
2389,
13,
2617,
11828,
7203,
464,
1438,
286,
262,
11554,
13,
632,
743,
2291,
3224,
1321,
379,
262,
11554,
338,
14130,
13,
383,
4277,
1988,
286,
428,
11688,
318,
9242,
19570,
198,
1073,
35,
313,
1157,
15667,
2389,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
860,
828,
16531,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
15,
11,
13108,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15667,
2389,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15667,
2389,
13,
2617,
11828,
7203,
2025,
27421,
326,
318,
3748,
284,
262,
11554,
13,
632,
743,
2291,
3224,
1321,
379,
262,
11554,
338,
14130,
13,
383,
4277,
1988,
318,
9242,
19570,
198,
1073,
35,
313,
1157,
26093,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
838,
828,
1623,
549,
2442,
26093,
6030,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
26093,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
26093,
6030,
13,
2617,
11828,
10786,
33234,
1958,
262,
12521,
3335,
2641,
262,
6574,
1720,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
11242,
3213,
9012,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1367,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
11242,
3213,
9012,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
11242,
3213,
9012,
13,
2617,
11828,
7203,
464,
10348,
1181,
286,
262,
4429,
13326,
1429,
13,
705,
7942,
10354,
16213,
2736,
12774,
7007,
13,
705,
9562,
10354,
2141,
407,
16602,
12774,
7007,
19570,
198,
1073,
35,
313,
1157,
34,
15044,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
34,
15044,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
34,
15044,
10962,
13,
2617,
11828,
10786,
13247,
7268,
12608,
326,
389,
20582,
21154,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
4554,
319,
281,
5797,
2637,
8,
198,
1073,
35,
313,
1157,
34,
15044,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
34,
15044,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
34,
15044,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
34,
15044,
30150,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
352,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
329,
281,
10810,
4904,
35,
52,
351,
281,
1981,
2209,
287,
262,
2209,
352,
2214,
393,
281,
4904,
35,
52,
351,
257,
47368,
459,
2209,
287,
262,
2209,
352,
2214,
286,
2099,
6060,
393,
8549,
2637,
8,
198,
1073,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
362,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
691,
618,
262,
47368,
459,
1643,
318,
900,
287,
262,
10965,
20582,
2209,
286,
257,
7675,
18307,
6579,
35,
52,
13,
1649,
5361,
355,
257,
47550,
287,
281,
412,
5432,
11,
810,
777,
13431,
389,
7924,
284,
262,
3486,
11,
428,
15565,
1719,
2722,
281,
48182,
284,
477,
3917,
4904,
35,
5842,
2637,
8,
198,
1073,
35,
313,
1157,
37,
6255,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
513,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
37,
6255,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
37,
6255,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
281,
6579,
35,
52,
318,
407,
18307,
7675,
2233,
284,
262,
1271,
286,
21937,
6370,
23353,
2035,
262,
763,
35,
313,
1157,
16438,
9781,
563,
39184,
393,
763,
35,
313,
1157,
14617,
9781,
563,
39184,
2637,
8,
198,
1073,
35,
313,
1157,
9781,
563,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
604,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
9781,
563,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
9781,
563,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
281,
6579,
35,
52,
318,
7675,
18307,
706,
530,
393,
517,
1005,
26084,
8481,
2637,
8,
198,
1073,
35,
313,
1157,
31217,
9781,
563,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
642,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
31217,
9781,
563,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
31217,
9781,
563,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
281,
6579,
35,
52,
318,
7675,
18307,
706,
517,
621,
530,
1005,
26084,
3411,
2637,
8,
198,
1073,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
718,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
257,
5739,
318,
2722,
326,
262,
45835,
6779,
2214,
9217,
318,
257,
23418,
2637,
8,
198,
1073,
35,
313,
1157,
49,
4694,
33244,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
767,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
33244,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
33244,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
257,
327,
4694,
318,
2722,
287,
2882,
284,
281,
371,
4694,
2637,
8,
198,
1073,
35,
313,
1157,
49,
4694,
50015,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
807,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
50015,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
49,
4694,
50015,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
257,
327,
4694,
318,
407,
2722,
287,
2882,
284,
281,
371,
4694,
2637,
8,
198,
1073,
35,
313,
1157,
8120,
50015,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8120,
50015,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8120,
50015,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
281,
7125,
42,
318,
407,
2722,
618,
2938,
2637,
8,
198,
1073,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
838,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
329,
1123,
7675,
2722,
4904,
35,
52,
286,
2099,
6060,
393,
8549,
2637,
8,
198,
1073,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
1367,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
257,
6579,
35,
52,
318,
2722,
351,
262,
47368,
459,
1643,
900,
287,
262,
10965,
20582,
2209,
2637,
8,
198,
1073,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
1105,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
618,
281,
376,
7902,
4049,
318,
12326,
287,
257,
2722,
4904,
35,
52,
2637,
8,
198,
1073,
35,
313,
1157,
8291,
3291,
19778,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
1511,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
3291,
19778,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8291,
3291,
19778,
12332,
13,
2617,
11828,
10786,
1212,
3753,
318,
1253,
12061,
329,
1123,
7675,
18307,
6579,
35,
52,
2637,
8,
198,
1073,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
362,
11,
362,
11,
352,
11,
1478,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
13,
2617,
11828,
7203,
1212,
3753,
318,
1253,
12061,
618,
257,
5739,
318,
2722,
351,
262,
370,
8905,
850,
3245,
286,
262,
25184,
6779,
2214,
900,
284,
530,
11,
290,
262,
370,
8905,
2202,
1988,
329,
262,
1994,
27661,
284,
262,
21664,
338,
20582,
2209,
9217,
326,
262,
5739,
815,
407,
423,
587,
19365,
393,
326,
5739,
318,
25148,
2233,
284,
262,
6464,
47550,
407,
15427,
262,
6782,
3038,
19570,
198,
1073,
35,
313,
1157,
2725,
88,
32180,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
32180,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
32180,
10962,
13,
2617,
11828,
10786,
11909,
56,
1241,
12608,
5213,
351,
4905,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
32180,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
32180,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
32180,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
32180,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
11909,
56,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
69,
71,
824,
1600,
352,
828,
5855,
67,
824,
82,
1600,
362,
828,
5855,
343,
8692,
3903,
1600,
513,
828,
5855,
1659,
36020,
1600,
604,
828,
5855,
4352,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11909,
56,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11909,
56,
6030,
13,
2617,
11828,
10786,
1212,
318,
281,
807,
12,
2545,
18253,
1988,
326,
21079,
262,
9370,
56,
2099,
4855,
416,
262,
7223,
350,
5639,
47,
290,
3122,
35,
13,
16888,
5447,
3815,
290,
511,
11188,
9370,
56,
3858,
389,
25,
376,
39,
5432,
362,
13,
19,
26499,
796,
5534,
837,
360,
5432,
50,
362,
13,
19,
26499,
796,
7816,
11,
14826,
7308,
3903,
796,
7643,
11,
3963,
23127,
642,
26499,
796,
8702,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
8081,
43961,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
8081,
43961,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
8081,
43961,
13,
2617,
11828,
10786,
464,
1459,
11344,
7386,
428,
4554,
286,
262,
3122,
35,
318,
6493,
13,
770,
2134,
24866,
284,
530,
286,
262,
3310,
24510,
1299,
5610,
287,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
2637,
8,
198,
1073,
35,
313,
1157,
30782,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
29510,
6030,
16,
1600,
352,
828,
5855,
29510,
6030,
17,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
30782,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
30782,
6030,
13,
2617,
11828,
7203,
1858,
389,
1180,
5361,
5951,
5359,
10795,
319,
262,
14486,
6142,
3403,
13,
770,
11688,
8477,
262,
1459,
9370,
56,
338,
5361,
5951,
2837,
12971,
13,
16888,
5447,
3815,
290,
511,
11188,
5951,
16069,
389,
25,
5994,
352,
796,
1395,
6,
486,
29001,
48401,
2837,
286,
657,
284,
2319,
7370,
327,
11,
5994,
362,
796,
1395,
6,
2999,
29001,
35848,
4454,
2837,
286,
532,
1270,
284,
4317,
7370,
327,
19570,
198,
1073,
35,
313,
1157,
11297,
18843,
37,
28707,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
604,
828,
791,
32696,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
18843,
37,
28707,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
18843,
37,
28707,
13,
2617,
11828,
10786,
464,
1459,
5361,
8373,
6518,
286,
262,
5243,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
494,
1453,
30863,
26518,
1157,
64,
1600,
352,
828,
5855,
494,
1453,
30863,
26518,
1157,
65,
1600,
362,
828,
5855,
494,
1453,
30863,
26518,
1157,
70,
1600,
513,
828,
5855,
494,
1453,
30863,
26518,
1157,
65,
1870,
70,
1600,
604,
828,
5855,
494,
1453,
30863,
26518,
1157,
64,
17483,
2127,
1600,
642,
828,
5855,
494,
1453,
30863,
26518,
1157,
77,
1600,
718,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
13,
2617,
11828,
10786,
464,
1459,
5361,
9370,
56,
2099,
286,
262,
5243,
2637,
8,
198,
1073,
35,
313,
1157,
50,
40545,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
11664,
1600,
352,
828,
5855,
24132,
1600,
362,
828,
5855,
17470,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
50,
40545,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
50,
40545,
13,
2617,
11828,
10786,
3041,
39729,
14233,
286,
262,
5243,
2637,
8,
198,
1073,
35,
313,
1157,
26093,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
767,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
26093,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
26093,
20491,
13,
2617,
11828,
10786,
2215,
6407,
262,
5243,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
18843,
803,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
15526,
12727,
1870,
29451,
1203,
31815,
1600,
352,
828,
5855,
15526,
12727,
10049,
1600,
362,
828,
5855,
21809,
1203,
31815,
10049,
1600,
513,
828,
5855,
41143,
1600,
604,
828,
5855,
82,
22854,
1600,
642,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
18843,
803,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
18843,
803,
19076,
13,
2617,
11828,
10786,
18843,
803,
4235,
286,
262,
5243,
13,
14898,
3689,
389,
25,
8798,
966,
290,
24365,
6117,
25,
8997,
5361,
4235,
3769,
1104,
329,
477,
12521,
5499,
13,
8798,
966,
691,
25,
5514,
3769,
1895,
966,
11244,
11,
1957,
19609,
6117,
2314,
307,
2727,
13,
24365,
6117,
691,
25,
5514,
3769,
1957,
19609,
11244,
13,
24365,
5456,
8985,
2314,
2018,
13,
18289,
25,
3167,
2977,
1895,
966,
290,
1957,
19609,
5499,
13,
5765,
428,
3038,
329,
12948,
21976,
1973,
477,
9619,
287,
477,
4855,
12521,
12881,
13,
35367,
25,
2039,
2977,
20445,
12694,
11244,
319,
428,
5243,
13,
14680,
286,
428,
3895,
4433,
326,
262,
5035,
5964,
318,
6589,
2637,
8,
198,
1073,
35,
313,
1157,
27722,
29239,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
860,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
29239,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
29239,
20491,
13,
2617,
11828,
10786,
2215,
6407,
262,
11160,
11102,
3038,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
27722,
29239,
9492,
2100,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
3126,
11,
7982,
11,
14956,
11,
23487,
11,
26250,
11,
49557,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
40223,
1600,
657,
828,
5855,
2435,
5189,
12393,
1600,
352,
828,
5855,
505,
43223,
1600,
3126,
828,
5855,
11545,
39792,
1600,
7982,
828,
5855,
14337,
39792,
1600,
14956,
828,
5855,
26022,
39792,
1600,
23487,
828,
5855,
4246,
9954,
39792,
1600,
26250,
828,
5855,
83,
732,
3787,
15137,
39792,
1600,
49557,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
29239,
9492,
2100,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
29239,
9492,
2100,
13,
2617,
11828,
10786,
7575,
16654,
11,
287,
2431,
11,
1022,
8295,
581,
5171,
768,
286,
262,
9619,
13,
22246,
318,
49557,
2431,
357,
1731,
2250,
737,
317,
1988,
286,
6632,
595,
2977,
11353,
581,
5171,
768,
286,
9619,
11,
262,
5243,
481,
6338,
2922,
257,
6518,
618,
262,
7071,
4238,
4340,
290,
17624,
326,
6518,
355,
890,
355,
262,
7071,
318,
13919,
2637,
8,
198,
1073,
35,
313,
1157,
27722,
13434,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
1367,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
13434,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
13434,
20491,
13,
2617,
11828,
10786,
2215,
6407,
262,
11160,
4333,
3038,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
27722,
13434,
9492,
2100,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
1899,
11,
7982,
11,
14956,
11,
23487,
11,
26250,
11,
49557,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
505,
43223,
1600,
3126,
828,
5855,
11545,
39792,
1600,
7982,
828,
5855,
14337,
39792,
1600,
14956,
828,
5855,
26022,
39792,
1600,
23487,
828,
5855,
4246,
9954,
39792,
1600,
26250,
828,
5855,
83,
732,
3787,
15137,
39792,
1600,
49557,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
13434,
9492,
2100,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
27722,
13434,
9492,
2100,
13,
2617,
11828,
10786,
7575,
16654,
11,
287,
2431,
11,
1022,
8295,
581,
5171,
768,
286,
262,
9619,
13,
22246,
318,
49557,
2431,
357,
1731,
2250,
737,
11537,
198,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
10962,
13,
2617,
11828,
10786,
13247,
286,
12608,
329,
1380,
88,
13217,
13713,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
46047,
13217,
13713,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
362,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
46047,
13217,
13713,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
46047,
13217,
13713,
13,
2617,
11828,
10786,
464,
1459,
20509,
852,
973,
284,
21937,
13,
770,
1988,
318,
530,
286,
262,
3815,
12655,
287,
763,
35,
313,
1157,
48181,
46047,
13217,
13713,
13,
770,
743,
307,
973,
416,
257,
4542,
5797,
284,
1630,
543,
20509,
318,
973,
329,
11478,
2637,
8,
198,
1073,
35,
313,
1157,
35,
1608,
15514,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
362,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
34021,
4868,
1600,
352,
828,
5855,
1662,
15999,
1600,
362,
828,
5855,
67,
28995,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
35,
1608,
15514,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
35,
1608,
15514,
13,
2617,
11828,
7203,
1212,
7822,
338,
1104,
329,
9573,
11,
30240,
355,
25,
1395,
6,
486,
10354,
36188,
318,
1695,
290,
318,
6157,
625,
262,
5969,
1351,
286,
43813,
5447,
287,
763,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
13,
1395,
6,
2999,
10354,
36188,
318,
407,
4855,
13,
1395,
6,
3070,
10354,
36188,
318,
4855,
290,
1630,
286,
9573,
318,
635,
1695,
11,
287,
543,
1339,
262,
11688,
763,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
460,
307,
32366,
9518,
416,
262,
406,
11682,
19570,
198,
1073,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
362,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
13,
2617,
11828,
10786,
464,
1459,
20509,
852,
973,
284,
3328,
11,
611,
262,
763,
35,
313,
1157,
36188,
15514,
9217,
326,
9573,
318,
407,
4855,
13,
383,
6163,
20509,
2236,
307,
530,
286,
262,
20509,
68,
7498,
329,
3328,
287,
262,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
16934,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
513,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
10962,
13,
2617,
11828,
10786,
11909,
56,
8398,
12608,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
16934,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
513,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
16934,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
46787,
19580,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
513,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46787,
19580,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
46787,
19580,
13,
2617,
11828,
7203,
464,
10348,
1181,
286,
262,
5243,
7071,
13,
705,
929,
10354,
21394,
262,
5243,
7071,
284,
307,
3492,
284,
21937,
290,
3328,
13,
705,
2902,
10354,
520,
2840,
262,
11478,
290,
16307,
286,
24624,
319,
262,
7071,
19570,
198,
1073,
35,
313,
1157,
2725,
88,
18843,
19580,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
513,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
18843,
19580,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
18843,
19580,
13,
2617,
11828,
7203,
464,
1459,
1181,
286,
262,
5243,
7071,
13,
705,
929,
10354,
383,
5243,
7071,
318,
3492,
284,
3492,
284,
21937,
290,
3328,
13,
705,
2902,
10354,
383,
5243,
318,
407,
1498,
284,
21937,
393,
3328,
319,
262,
7071,
19570,
198,
1073,
35,
313,
1157,
2725,
88,
5258,
50,
2257,
540,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
604,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
5258,
50,
2257,
540,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
5258,
50,
2257,
540,
13,
2617,
11828,
10786,
30150,
286,
12608,
329,
763,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
13,
770,
3084,
691,
4174,
618,
287,
360,
5432,
50,
362,
13,
19,
26499,
2837,
11537,
198,
1073,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
604,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
29239,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
604,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1478,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
29239,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
29239,
13,
2617,
11828,
10786,
464,
10348,
5361,
8373,
6518,
286,
262,
360,
5432,
50,
9370,
56,
13,
48951,
6518,
3146,
389,
355,
5447,
287,
1315,
13,
19,
13,
21,
13,
17,
2637,
8,
198,
1073,
35,
313,
1157,
4093,
2390,
1098,
48181,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
604,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
767,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4093,
2390,
1098,
48181,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
4093,
2390,
1098,
48181,
13,
2617,
11828,
10786,
1073,
35,
313,
1157,
4093,
2390,
1098,
48181,
318,
257,
1643,
12,
36591,
1988,
11,
10200,
477,
286,
262,
327,
8141,
12881,
4855,
416,
262,
9370,
56,
13,
48951,
3815,
389,
25,
2568,
4886,
691,
357,
1961,
62,
1340,
11319,
8,
796,
5534,
11920,
2565,
691,
357,
7902,
62,
1340,
11319,
8,
796,
7816,
11920,
2565,
290,
2568,
4886,
357,
1961,
62,
392,
62,
7902,
47505,
8702,
1471,
262,
12219,
2160,
286,
597,
286,
777,
3815,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
4093,
2390,
1098,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
604,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
276,
8807,
1600,
352,
828,
5855,
66,
1559,
306,
1600,
362,
828,
5855,
276,
392,
6359,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
4093,
2390,
1098,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
4093,
2390,
1098,
13,
2617,
11828,
10786,
464,
1459,
327,
8141,
2446,
287,
4905,
13,
48951,
3815,
389,
25,
2568,
4886,
691,
357,
276,
8807,
8,
796,
5534,
11920,
2565,
691,
357,
66,
1559,
306,
8,
796,
7816,
11920,
2565,
290,
2568,
4886,
357,
276,
392,
6359,
47505,
8702,
11537,
198,
1073,
35,
313,
1157,
8081,
24510,
1299,
48181,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
642,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
10962,
13,
2617,
11828,
7203,
1858,
389,
1180,
13919,
5359,
10795,
319,
262,
11344,
7386,
13,
770,
11688,
1351,
8477,
262,
11344,
18209,
262,
350,
5639,
47,
290,
3122,
35,
1104,
287,
428,
7822,
13,
16888,
5447,
3815,
290,
511,
11188,
38018,
9666,
1299,
389,
25,
15915,
357,
14053,
8,
796,
1395,
6,
940,
6,
37760,
357,
17940,
8,
796,
1395,
6,
1238,
6,
412,
4694,
40,
357,
1712,
286,
2031,
8,
796,
1395,
6,
1270,
6,
8602,
796,
1395,
6,
3132,
6,
4881,
796,
1395,
6,
2624,
6,
2869,
796,
1395,
6,
3901,
6,
366,
8,
198,
1073,
35,
313,
1157,
8081,
24510,
1299,
48181,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
642,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
532,
30015,
306,
26052,
262,
11344,
7386,
287,
262,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
642,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
362,
20198,
2780,
26780,
22,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
13,
2617,
11828,
10786,
464,
37419,
7885,
973,
284,
5911,
10245,
286,
262,
5721,
283,
5563,
287,
262,
3310,
24510,
1299,
48181,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
642,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
1433,
11,
3933,
11,
4764,
11,
5125,
11,
2026,
11,
6135,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
69,
535,
1600,
1467,
828,
5855,
15390,
1600,
3933,
828,
5855,
1039,
72,
1600,
4764,
828,
5855,
2777,
391,
1600,
5125,
828,
5855,
69,
8132,
1600,
2026,
828,
5855,
73,
2674,
1600,
6135,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
13,
2617,
11828,
7203,
1858,
389,
1180,
13919,
5359,
10795,
319,
262,
11344,
7386,
13,
770,
11688,
1351,
8477,
262,
11344,
18209,
262,
350,
5639,
47,
290,
3122,
35,
1104,
287,
428,
7822,
13,
16888,
5447,
3815,
290,
511,
11188,
38018,
9666,
1299,
389,
25,
15915,
357,
14053,
8,
796,
1395,
6,
940,
6,
37760,
357,
17940,
8,
796,
1395,
6,
1238,
6,
412,
4694,
40,
357,
1712,
286,
2031,
8,
796,
1395,
6,
1270,
6,
8602,
796,
1395,
6,
3132,
6,
4881,
796,
1395,
6,
2624,
6,
2869,
796,
1395,
6,
3901,
6,
366,
8,
198,
1073,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
13,
2617,
11828,
10786,
1212,
3084,
6870,
262,
1351,
286,
20509,
68,
13,
1052,
20509,
460,
307,
7498,
284,
307,
6007,
286,
39573,
11,
6464,
11,
290,
14,
273,
329,
10270,
287,
3328,
9573,
13,
5501,
5726,
287,
428,
3084,
6870,
257,
2060,
20509,
351,
663,
6608,
13,
383,
5415,
1271,
286,
20509,
68,
326,
460,
307,
7763,
287,
428,
3084,
318,
14280,
2637,
8,
198,
1073,
35,
313,
1157,
13217,
1697,
292,
8053,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
13217,
13713,
8053,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
11,
10200,
262,
6608,
286,
257,
2060,
20509,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
13217,
13713,
8053,
15732,
532,
30015,
306,
21079,
262,
20509,
5884,
284,
262,
33121,
13,
1157,
7071,
2637,
8,
198,
1073,
35,
313,
1157,
13217,
13713,
8053,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
14280,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
13713,
8053,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13217,
13713,
8053,
15732,
13,
2617,
11828,
10786,
464,
3748,
6376,
286,
281,
20509,
543,
318,
973,
284,
5911,
262,
5721,
283,
5563,
287,
262,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
46047,
13217,
13713,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
11,
352,
11,
362,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
46047,
13217,
13713,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
46047,
13217,
13713,
13,
2617,
11828,
10786,
2215,
2081,
11,
428,
2134,
9217,
326,
262,
20509,
7997,
416,
763,
35,
313,
1157,
13217,
13713,
15732,
460,
307,
973,
355,
257,
21937,
20509,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
11,
352,
11,
513,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
13,
2617,
11828,
10786,
2215,
2081,
11,
428,
2134,
9217,
326,
262,
20509,
7997,
416,
262,
763,
35,
313,
1157,
13217,
13713,
15732,
460,
307,
973,
355,
257,
3328,
20509,
2637,
8,
198,
1073,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
718,
11,
352,
11,
604,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
13,
2617,
11828,
10786,
2215,
2081,
11,
428,
2134,
9217,
326,
262,
20509,
7997,
416,
763,
35,
313,
1157,
13217,
13713,
15732,
460,
307,
973,
329,
3328,
9573,
13,
770,
2134,
743,
691,
307,
2081,
611,
262,
20509,
460,
307,
973,
355,
257,
3328,
20509,
11,
355,
8203,
416,
763,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
767,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
10962,
13,
2617,
11828,
10786,
464,
3602,
2781,
1643,
3965,
4855,
416,
262,
350,
5639,
47,
290,
3122,
35,
11,
1366,
3965,
389,
41867,
286,
5323,
42,
65,
14,
82,
422,
352,
41022,
284,
8093,
13,
20,
41022,
2426,
284,
11247,
286,
1123,
1981,
9370,
56,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
767,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
532,
30015,
306,
21079,
257,
4855,
2494,
287,
262,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
767,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1105,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
13,
2617,
11828,
10786,
15732,
2134,
543,
21079,
543,
1366,
2494,
284,
1895,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
767,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
17,
11,
18112,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
13,
2617,
11828,
10786,
464,
21937,
1643,
3965,
4855,
416,
262,
350,
5639,
47,
290,
3122,
35,
13,
6060,
3965,
389,
41867,
286,
5323,
42,
65,
14,
82,
422,
352,
41022,
284,
8093,
13,
20,
41022,
2426,
284,
11247,
286,
1123,
1981,
9370,
56,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
807,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
10962,
13,
2617,
11828,
10786,
464,
3328,
1643,
3965,
4855,
416,
262,
350,
5639,
47,
290,
3122,
35,
13,
6060,
3965,
389,
41867,
286,
5323,
42,
65,
14,
82,
422,
352,
41022,
284,
8093,
13,
20,
41022,
2426,
284,
11247,
286,
1123,
1981,
9370,
56,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
807,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
357,
15,
11,
366,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
30150,
13,
2617,
11828,
10786,
2025,
21617,
357,
43169,
723,
5752,
8,
287,
262,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
13,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
532,
30015,
306,
21079,
257,
4855,
2494,
287,
262,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
807,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1105,
22305,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
13,
2617,
11828,
10786,
15732,
2134,
543,
21079,
543,
1366,
2494,
284,
1895,
2637,
8,
198,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
807,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
17,
11,
18112,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
13,
2617,
11828,
10786,
464,
3328,
1643,
3965,
4855,
416,
262,
350,
5639,
47,
290,
3122,
35,
13,
6060,
3965,
389,
41867,
286,
5323,
42,
65,
14,
82,
422,
352,
41022,
284,
8093,
13,
20,
41022,
2426,
284,
11247,
286,
1123,
1981,
9370,
56,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
860,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
10962,
13,
2617,
11828,
10786,
30150,
286,
12608,
329,
763,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
13,
554,
7400,
934,
1296,
284,
1249,
3294,
10245,
319,
281,
5797,
13,
770,
3084,
691,
4174,
618,
287,
3963,
23127,
642,
26499,
2837,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
860,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
37,
28707,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
860,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
939,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
37,
28707,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
37,
28707,
13,
2617,
11828,
10786,
464,
10348,
5361,
8373,
6518,
286,
262,
3963,
23127,
9370,
56,
2637,
8,
198,
1073,
35,
313,
1157,
25621,
817,
10126,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
860,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
25621,
817,
10126,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
25621,
817,
10126,
13,
2617,
11828,
10786,
464,
11387,
852,
973,
284,
4886,
257,
8179,
7090,
357,
35324,
737,
327,
8141,
3136,
257,
8179,
7090,
2402,
31521,
262,
25012,
40,
2029,
428,
11387,
2637,
8,
198,
1073,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
860,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
767,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
13,
2617,
11828,
10786,
464,
12971,
286,
262,
3963,
23127,
9370,
56,
7822,
284,
8076,
287,
262,
1115,
471,
12,
45,
3978,
11760,
13,
327,
9043,
355,
281,
18253,
1988,
286,
257,
1115,
352,
1643,
7032,
355,
1061,
25,
1643,
657,
532,
4476,
540,
286,
5361,
287,
262,
2793,
357,
20,
13,
1314,
12,
20,
13,
1495,
26499,
8,
471,
12,
45,
3978,
4097,
13,
1643,
352,
532,
4476,
540,
286,
5361,
287,
262,
3504,
357,
20,
13,
1495,
12,
20,
13,
2327,
26499,
8,
471,
12,
45,
3978,
4097,
13,
1643,
362,
532,
4476,
540,
286,
5361,
287,
262,
3504,
357,
20,
13,
45151,
12,
20,
13,
47338,
26499,
8,
471,
12,
45,
3978,
4097,
13,
1114,
1672,
11,
329,
281,
7822,
6007,
286,
5361,
287,
262,
2793,
290,
3504,
11760,
11,
428,
2134,
561,
1011,
262,
1988,
513,
2637,
8,
198,
1073,
35,
313,
1157,
44046,
15571,
49,
4971,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
10190,
4008,
737,
2617,
3118,
896,
10786,
36077,
76,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44046,
15571,
49,
4971,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44046,
15571,
49,
4971,
13,
2617,
11828,
10786,
2025,
11346,
49,
1241,
14483,
318,
7560,
618,
262,
2811,
11346,
49,
1241,
318,
2174,
428,
11688,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1367,
828,
1623,
549,
2442,
3673,
2649,
36695,
22446,
21018,
10786,
21633,
11537,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
2081,
11,
13536,
262,
5270,
286,
11346,
49,
1241,
19605,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1802,
2388,
4008,
737,
2617,
3118,
896,
10786,
1084,
1769,
27691,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
13,
2617,
11828,
10786,
9492,
2100,
287,
2431,
1022,
11346,
49,
5684,
19605,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
33921,
10669,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
807,
11,
1105,
11,
3261,
11,
3933,
11,
4570,
11,
2319,
11,
4764,
11,
6885,
11,
7265,
11,
8257,
11,
8684,
11,
9508,
11,
9907,
11,
1802,
11,
13539,
11,
19755,
11,
24848,
11,
23871,
11,
24063,
11,
16677,
11,
27778,
11,
31009,
11,
28817,
11,
27408,
11,
27121,
11,
28277,
11,
29217,
11,
27795,
11,
30435,
11,
34951,
11,
8646,
11,
36678,
11,
38147,
11,
5867,
11,
20959,
11,
28560,
11,
43686,
11,
44084,
11,
44063,
11,
44552,
11,
11470,
11,
44969,
11,
46633,
11,
44622,
11,
29101,
11,
48207,
11,
5014,
18,
11,
42321,
11,
48758,
11,
5014,
22,
11,
39260,
11,
7337,
11,
32320,
11,
41247,
11,
32921,
11,
45900,
11,
46588,
11,
45063,
11,
604,
2548,
11,
33879,
11,
604,
3682,
11,
604,
3510,
11,
50154,
11,
4764,
19,
11,
5125,
17,
11,
41612,
11,
22243,
11,
642,
2078,
11,
642,
4051,
11,
642,
3695,
11,
642,
4521,
11,
642,
6420,
11,
718,
3023,
11,
39084,
11,
718,
1433,
11,
45469,
11,
44505,
11,
718,
2682,
11,
718,
3682,
11,
718,
3559,
11,
718,
6469,
11,
43379,
11,
767,
3070,
11,
767,
3023,
11,
767,
2713,
11,
767,
940,
11,
767,
1433,
11,
767,
1731,
11,
767,
4309,
11,
767,
3980,
11,
48284,
11,
767,
2414,
11,
41287,
11,
767,
5705,
11,
767,
3459,
11,
767,
5892,
11,
807,
3023,
11,
807,
2998,
11,
807,
1507,
11,
807,
2075,
11,
807,
1983,
11,
48777,
11,
807,
3365,
11,
807,
1899,
11,
807,
5237,
11,
807,
5774,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
6894,
1600,
352,
828,
5855,
282,
3820,
544,
1600,
807,
828,
5855,
282,
1362,
544,
1600,
1105,
828,
5855,
19178,
65,
1872,
13881,
1600,
3261,
828,
5855,
853,
298,
1437,
1600,
3933,
828,
5855,
64,
436,
1373,
544,
1600,
4570,
828,
5855,
64,
436,
7496,
1600,
2319,
828,
5855,
47041,
3201,
1600,
4764,
828,
5855,
1670,
268,
544,
1600,
6885,
828,
5855,
6667,
70,
1505,
1600,
7265,
828,
5855,
28984,
20817,
1600,
8257,
828,
5855,
65,
7098,
1600,
8684,
828,
5855,
6667,
1096,
1600,
9508,
828,
5855,
1671,
1726,
72,
32708,
1046,
44949,
1600,
9907,
828,
5855,
15065,
4563,
544,
1600,
1802,
828,
5855,
6667,
20272,
1600,
13539,
828,
5855,
5171,
4763,
1600,
19755,
828,
5855,
354,
576,
1600,
24848,
828,
5855,
354,
1437,
1600,
23871,
828,
5855,
83,
1872,
8149,
1600,
24063,
828,
5855,
4033,
2381,
544,
1600,
16677,
828,
5855,
15805,
64,
49,
3970,
1600,
27778,
828,
5855,
19915,
265,
544,
1600,
31009,
828,
5855,
948,
26440,
1600,
28817,
828,
5855,
66,
15356,
15431,
1600,
27408,
828,
5855,
6559,
4102,
1600,
27121,
828,
5855,
3438,
259,
7490,
15431,
1600,
28277,
828,
5855,
721,
24201,
1600,
29217,
828,
5855,
417,
19221,
85,
7079,
1600,
27795,
828,
5855,
395,
11339,
1600,
30435,
828,
5855,
15643,
1044,
1600,
34951,
828,
5855,
69,
8132,
1600,
8646,
828,
5855,
469,
2398,
544,
1600,
36678,
828,
5855,
1362,
21834,
1600,
38147,
828,
5855,
70,
631,
344,
1600,
5867,
828,
5855,
5162,
23900,
6081,
1600,
20959,
828,
5855,
71,
623,
17786,
1600,
28560,
828,
5855,
71,
506,
74,
506,
1600,
43686,
828,
5855,
43274,
560,
1600,
44084,
828,
5855,
291,
8822,
1600,
44063,
828,
5855,
521,
544,
1600,
44552,
828,
5855,
521,
1952,
544,
1600,
11470,
828,
5855,
343,
272,
1600,
44969,
828,
5855,
557,
1044,
1600,
46633,
828,
5855,
271,
2510,
1600,
44622,
828,
5855,
1287,
88,
1600,
29101,
828,
5855,
73,
2674,
54,
4309,
54,
4310,
1600,
48207,
828,
5855,
73,
2674,
54,
4309,
54,
4310,
41,
4309,
1600,
5014,
18,
828,
5855,
73,
2674,
41,
4309,
1600,
42321,
828,
5855,
73,
2674,
41,
4309,
1795,
21895,
73,
1600,
48758,
828,
5855,
73,
2674,
11792,
1600,
5014,
22,
828,
5855,
74,
1031,
11322,
14192,
1600,
39260,
828,
5855,
73,
7350,
1600,
7337,
828,
5855,
3464,
3972,
1600,
32320,
828,
5855,
43588,
42,
46215,
1600,
41247,
828,
5855,
35782,
42,
46215,
1600,
32921,
828,
5855,
23063,
17077,
1600,
45900,
828,
5855,
293,
3820,
261,
1600,
46588,
828,
5855,
15460,
8869,
1600,
45063,
828,
5855,
14485,
354,
1452,
5714,
1600,
604,
2548,
828,
5855,
75,
342,
29743,
1600,
33879,
828,
5855,
22564,
368,
24256,
1600,
604,
3682,
828,
5855,
20285,
559,
1600,
604,
3510,
828,
5855,
7617,
592,
544,
1600,
50154,
828,
5855,
76,
1069,
3713,
1600,
4764,
19,
828,
5855,
2144,
10602,
1600,
5125,
17,
828,
5855,
4491,
420,
1073,
1600,
41612,
828,
5855,
5185,
1600,
22243,
828,
5855,
3262,
372,
4447,
1600,
642,
2078,
828,
5855,
3605,
57,
2287,
392,
1600,
642,
4051,
828,
5855,
13099,
1014,
1600,
642,
3695,
828,
5855,
41091,
4103,
1600,
642,
4521,
828,
5855,
6839,
1689,
1600,
642,
6420,
828,
5855,
525,
84,
1600,
718,
3023,
828,
5855,
746,
8908,
1127,
1600,
39084,
828,
5855,
16104,
392,
1600,
718,
1433,
828,
5855,
634,
43778,
1600,
45469,
828,
5855,
19944,
13806,
49,
3713,
1600,
44505,
828,
5855,
80,
9459,
1600,
718,
2682,
828,
5855,
398,
5411,
1600,
718,
3682,
828,
5855,
81,
31562,
37,
9748,
1600,
718,
3559,
828,
5855,
82,
31330,
31602,
544,
1600,
718,
6469,
828,
5855,
12215,
11656,
1600,
43379,
828,
5855,
6649,
709,
21897,
1600,
767,
3070,
828,
5855,
85,
1155,
45,
321,
1600,
767,
3023,
828,
5855,
82,
5439,
574,
544,
1600,
767,
2713,
828,
5855,
35782,
17584,
30997,
1600,
767,
940,
828,
5855,
89,
27175,
1600,
767,
1433,
828,
5855,
2777,
391,
1600,
767,
1731,
828,
5855,
2032,
31829,
1600,
767,
4309,
828,
5855,
2032,
13947,
1600,
767,
3980,
828,
5855,
1837,
7496,
1600,
48284,
828,
5855,
400,
16188,
1600,
767,
2414,
828,
5855,
2213,
259,
32482,
1870,
51,
672,
3839,
1600,
41287,
828,
5855,
41187,
31602,
10161,
343,
689,
1600,
767,
5705,
828,
5855,
28286,
271,
544,
1600,
767,
3459,
828,
5855,
36590,
2539,
1600,
767,
5892,
828,
5855,
2724,
23440,
1600,
807,
3023,
828,
5855,
76,
2286,
11339,
1600,
807,
2998,
828,
5855,
68,
6022,
1600,
807,
1507,
828,
5855,
41187,
15708,
3438,
1600,
807,
2075,
828,
5855,
41187,
15708,
3438,
3365,
23741,
1600,
807,
1983,
828,
5855,
41187,
42237,
1600,
48777,
828,
5855,
333,
1018,
30106,
1600,
807,
3365,
828,
5855,
10277,
47083,
4103,
1600,
807,
1899,
828,
5855,
574,
8471,
2731,
64,
1600,
807,
5237,
828,
5855,
88,
8952,
1600,
807,
5774,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33921,
10669,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33921,
10669,
13,
2617,
11828,
10786,
464,
40023,
389,
2491,
16062,
284,
262,
6647,
286,
428,
1499,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
6535,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
6535,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
6535,
10962,
13,
2617,
11828,
10786,
30150,
286,
12608,
329,
763,
35,
313,
1157,
2725,
88,
6535,
30150,
13,
770,
3084,
691,
4174,
618,
262,
9370,
56,
2099,
318,
7154,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
6535,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
6535,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
6535,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
2725,
88,
6535,
30150,
8655,
13,
611,
15732,
532,
5501,
33121,
13,
1157,
7071,
318,
7997,
416,
281,
611,
30150,
13,
26491,
8893,
287,
428,
337,
9865,
8265,
389,
41497,
416,
611,
15732,
2637,
8,
198,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
352,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
2319,
19805,
14680,
318,
9177,
2637,
8,
198,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
362,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
2319,
19805,
14680,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
35170,
29239,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
35170,
29239,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
35170,
29239,
13,
2617,
11828,
10786,
1212,
11688,
9217,
262,
5361,
6518,
13,
1002,
1160,
14,
1821,
19805,
10363,
318,
3058,
287,
779,
788,
428,
11688,
9217,
262,
4165,
6518,
2637,
8,
198,
1073,
35,
313,
1157,
11297,
12211,
560,
29239,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
12211,
560,
29239,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
11297,
12211,
560,
29239,
13,
2617,
11828,
10786,
1212,
11688,
9217,
262,
6518,
1271,
286,
262,
9233,
6518,
13,
1002,
1160,
14,
1821,
19805,
4235,
318,
407,
3058,
287,
779,
11,
428,
11688,
1988,
318,
657,
2637,
8,
198,
1073,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
642,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
7154,
3469,
3245,
3038,
318,
9177,
2637,
8,
198,
1073,
35,
313,
1157,
13719,
3245,
19722,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
718,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13719,
3245,
19722,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
13719,
3245,
19722,
20491,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
7154,
3469,
3245,
3038,
318,
9343,
2637,
8,
198,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
767,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
10073,
4932,
3038,
318,
9177,
329,
1160,
19805,
4905,
2637,
8,
198,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
807,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
10073,
4932,
3038,
318,
9343,
329,
1160,
19805,
4905,
2637,
8,
198,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
860,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
10073,
4932,
3038,
318,
9177,
329,
2319,
19805,
4905,
2637,
8,
198,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
838,
828,
14056,
11395,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
13,
2617,
11828,
10786,
1212,
11688,
11,
618,
26751,
11,
9217,
326,
262,
10073,
4932,
3038,
318,
9343,
329,
2319,
19805,
4905,
2637,
8,
198,
1073,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
513,
11,
1478,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
10053,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
13,
2617,
11828,
10786,
1212,
11688,
2236,
11986,
262,
41864,
6060,
14806,
287,
41022,
379,
543,
262,
4429,
743,
3328,
1366,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
10962,
13,
2617,
11828,
10786,
1212,
3084,
16047,
7869,
329,
11346,
13,
632,
318,
407,
4855,
319,
262,
370,
23199,
12,
2167,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
828,
1267,
198,
1073,
37725,
15457,
12727,
16934,
30150,
13,
30238,
12512,
434,
507,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
30150,
48774,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
30150,
13,
2617,
15732,
36690,
46491,
1073,
37725,
15457,
12727,
16934,
30150,
13,
1136,
15732,
36690,
28955,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
30150,
13,
2617,
11828,
10786,
2025,
5726,
287,
262,
763,
35,
313,
1157,
6998,
4535,
29668,
10962,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
14815,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
362,
828,
791,
32696,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
42313,
2920,
3134,
25710,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
14815,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
14815,
13,
2617,
11828,
10786,
464,
19340,
4535,
2196,
543,
262,
3486,
3917,
351,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
513,
828,
2556,
316,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
19,
11,
604,
29720,
2617,
13715,
24539,
7,
19,
29720,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
13,
2617,
11828,
10786,
464,
15837,
44,
26264,
262,
3486,
6163,
1141,
8112,
13,
383,
1988,
10874,
286,
257,
1115,
19318,
316,
440,
10080,
3940,
416,
257,
530,
19318,
316,
2099,
355,
5679,
25,
440,
10080,
11052,
11,
44334,
11,
5994,
21044,
12,
8051,
12,
8051,
11,
657,
11,
33876,
21044,
12,
8051,
12,
8051,
11,
352,
11,
370,
8905,
12,
1821,
21044,
12,
8051,
12,
8051,
11,
362,
11,
309,
42,
4061,
21044,
12,
8051,
12,
8051,
11,
513,
11,
33876,
21044,
12,
8051,
12,
8051,
11,
604,
11,
12624,
7378,
21044,
12,
8051,
12,
8051,
11,
642,
11,
370,
8905,
12,
13464,
21044,
12,
8051,
12,
8051,
11,
718,
12,
13381,
11,
33876,
39896,
11,
597,
11,
39896,
17377,
584,
11,
597,
11,
33876,
11537,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
604,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
309,
42,
4061,
12460,
53,
8563,
12956,
618,
42797,
278,
24624,
329,
262,
3486,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
642,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
3899,
35878,
15536,
12956,
618,
10627,
262,
11540,
286,
24624,
2722,
422,
262,
3486,
379,
428,
9312,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
718,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
3899,
35878,
15536,
12956,
416,
262,
6569,
3335,
290,
2098,
736,
284,
428,
9312,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
767,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
1661,
257,
35878,
5287,
5091,
734,
1661,
1626,
3126,
4201,
290,
3753,
47336,
547,
24399,
13,
770,
7885,
9853,
428,
329,
1111,
1957,
290,
6569,
13,
632,
41867,
790,
640,
3753,
47336,
389,
24399,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
807,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
13,
2617,
11828,
10786,
464,
1271,
286,
6579,
35,
5842,
2722,
351,
281,
12515,
12624,
7378,
5794,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
860,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
13,
2617,
11828,
10786,
464,
1271,
286,
2722,
28000,
459,
21441,
25148,
416,
262,
24788,
9030,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
838,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
13,
2617,
11828,
10786,
464,
1271,
286,
2722,
21441,
25148,
416,
262,
12624,
7378,
875,
13168,
11862,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
1367,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
309,
42,
4061,
24788,
8563,
12326,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
604,
11,
352,
11,
1105,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
13,
2617,
11828,
10786,
12332,
82,
262,
1271,
286,
604,
12,
25309,
7157,
32431,
15536,
2637,
8,
198,
1073,
35,
313,
1157,
48032,
8895,
33,
3673,
2649,
36698,
844,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
642,
4008,
198,
1073,
35,
313,
1157,
48032,
8895,
33,
3673,
6637,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
642,
11,
657,
4008,
198,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
642,
11,
657,
11,
352,
29720,
2617,
10267,
82,
7,
7203,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
5855,
5064,
12,
8895,
33,
1600,
366,
361,
24564,
81,
12340,
5855,
25154,
10526,
49,
1797,
12,
53,
48771,
25620,
12,
2969,
12,
8895,
33,
1600,
366,
1073,
37725,
25189,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
15571,
49,
4971,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
13,
2617,
11828,
10786,
464,
2811,
11346,
49,
1241,
329,
477,
262,
8985,
1262,
428,
569,
6173,
1141,
262,
938,
1115,
20016,
318,
1877,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
642,
11,
657,
11,
362,
29720,
2617,
10267,
82,
7,
7203,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
5855,
5064,
12,
8895,
33,
1600,
366,
361,
24564,
81,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
5376,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
4061,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
44721,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11712,
282,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15571,
49,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8291,
2781,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15057,
5189,
14490,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
13,
2617,
11828,
10786,
31837,
618,
257,
649,
8112,
318,
925,
393,
1908,
26034,
1262,
16654,
7368,
416,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
2134,
2637,
8,
198,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
642,
11,
657,
11,
513,
29720,
2617,
10267,
82,
7,
7203,
5064,
12,
8895,
33,
1600,
366,
361,
15732,
12340,
5855,
5064,
12,
8895,
33,
1600,
366,
361,
24564,
81,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
14155,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
11909,
56,
6030,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
13,
2617,
11828,
10786,
31837,
618,
257,
649,
22959,
3486,
318,
12326,
2637,
8,
198,
1073,
35,
313,
1157,
3103,
10367,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
4008,
198,
1073,
35,
313,
1157,
38,
14459,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
4008,
198,
1073,
35,
313,
1157,
38143,
16097,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
362,
4008,
198,
1073,
35,
313,
1157,
38143,
3610,
796,
19937,
38143,
3610,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
362,
11,
352,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2969,
14881,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44721,
14881,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
34,
15044,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2969,
48948,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44721,
48346,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
32184,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3673,
2649,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
6535,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
48774,
198,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
38143,
3610,
796,
763,
35,
313,
1157,
38143,
3610,
13,
2617,
19580,
10786,
10378,
31023,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
38143,
3610,
13,
2617,
11828,
10786,
464,
11846,
2643,
329,
11346,
7378,
85,
17,
12066,
326,
3494,
262,
40552,
33121,
13,
1157,
337,
9865,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
45,
38143,
3610,
796,
19937,
38143,
3610,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
362,
11,
362,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
45,
14881,
48774,
198,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
6998,
45,
38143,
3610,
796,
763,
35,
313,
1157,
6998,
45,
38143,
3610,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
45,
38143,
3610,
13,
2617,
11828,
10786,
464,
11846,
2643,
329,
11346,
7378,
85,
17,
12066,
326,
3494,
262,
40552,
33121,
13,
1157,
371,
15571,
337,
9865,
2637,
8,
198,
1073,
35,
313,
1157,
38143,
3610,
11627,
796,
19937,
38143,
3610,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
362,
11,
513,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2969,
14881,
13247,
11627,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44721,
14881,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
34,
15044,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2969,
48948,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44721,
48346,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
32184,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
16934,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3673,
2649,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
6535,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
11242,
3213,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
48774,
198,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
38143,
3610,
11627,
796,
763,
35,
313,
1157,
38143,
3610,
11627,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
38143,
3610,
11627,
13,
2617,
11828,
10786,
464,
11846,
2643,
329,
11346,
7378,
85,
17,
12066,
326,
3494,
262,
40552,
33121,
13,
1157,
337,
9865,
2637,
8,
198,
1073,
35,
313,
1157,
2969,
14881,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
352,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6892,
323,
25262,
12367,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3856,
7807,
5990,
2101,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
24544,
3955,
5990,
2101,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15057,
5189,
14490,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4462,
50,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
46787,
44046,
6601,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
46787,
40541,
6601,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2969,
14881,
13247,
796,
763,
35,
313,
1157,
2969,
14881,
13247,
13,
2617,
19580,
10786,
10378,
31023,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2969,
14881,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
7767,
287,
262,
47550,
884,
326,
262,
47550,
743,
670,
6788,
9404,
355,
257,
636,
286,
281,
40552,
33121,
13,
1157,
3127,
13,
763,
35,
313,
1157,
46787,
44046,
6601,
32184,
290,
763,
35,
313,
1157,
46787,
40541,
6601,
32184,
389,
39224,
2637,
8,
198,
1073,
35,
313,
1157,
2969,
48948,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
362,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48948,
19904,
6545,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3109,
9152,
3118,
43628,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
20491,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2969,
48948,
13247,
796,
763,
35,
313,
1157,
2969,
48948,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2969,
48948,
13247,
13,
2617,
11828,
10786,
464,
3486,
48948,
5301,
318,
257,
900,
286,
12608,
326,
389,
1944,
611,
370,
8905,
318,
9177,
319,
262,
8798,
6252,
2637,
8,
198,
1073,
35,
313,
1157,
44721,
14881,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
513,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44721,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
49,
4694,
817,
10126,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
16438,
9781,
563,
39184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
14617,
9781,
563,
39184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
42974,
14374,
817,
10126,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44445,
15051,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15667,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
26093,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
11242,
3213,
9012,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
44721,
14881,
13247,
796,
763,
35,
313,
1157,
44721,
14881,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44721,
14881,
13247,
13,
2617,
11828,
10786,
464,
20582,
2134,
1398,
3769,
262,
3306,
1104,
329,
1895,
1630,
11,
5270,
11,
290,
19637,
286,
5739,
2198,
16311,
11,
290,
1774,
7585,
286,
4938,
1366,
284,
6727,
11685,
2637,
8,
198,
1073,
35,
313,
1157,
44721,
48346,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
604,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
9781,
563,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
31217,
9781,
563,
12332,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
44721,
48346,
13247,
796,
763,
35,
313,
1157,
44721,
48346,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
44721,
48346,
13247,
13,
2617,
11828,
10786,
464,
20582,
48346,
5301,
3769,
7083,
13905,
1321,
319,
262,
4905,
286,
262,
20582,
13,
770,
5301,
318,
3190,
11902,
2637,
8,
198,
1073,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
642,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47649,
3299,
2348,
42289,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
796,
763,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
13,
2617,
11828,
10786,
47649,
3299,
978,
42289,
8655,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
718,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
44046,
15571,
49,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
15571,
49,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
50,
40545,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
46787,
19580,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
18843,
19580,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11909,
56,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
8081,
43961,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
30782,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
18843,
37,
28707,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
26093,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
18843,
803,
19076,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
27722,
29239,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
27722,
29239,
9492,
2100,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
27722,
13434,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
27722,
13434,
9492,
2100,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
796,
763,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
13,
2617,
11828,
10786,
11909,
56,
7679,
4560,
12608,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
16934,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
767,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33921,
10669,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
16934,
13247,
796,
763,
35,
313,
1157,
2725,
88,
16934,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
16934,
13247,
13,
2617,
11828,
10786,
11909,
56,
14483,
8398,
12608,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
807,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
46047,
13217,
13713,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
35,
1608,
15514,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
796,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
13,
2617,
11828,
10786,
2725,
88,
20509,
12608,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
860,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4093,
2390,
1098,
48181,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
4093,
2390,
1098,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
796,
763,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
13,
2617,
11828,
10786,
29021,
326,
17425,
262,
360,
5432,
50,
329,
40552,
33121,
13,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
838,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
796,
763,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
13,
2617,
11828,
10786,
29021,
326,
11986,
262,
4855,
26472,
9666,
1299,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1367,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
46047,
13217,
13713,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
796,
763,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
13,
2617,
11828,
10786,
13217,
1697,
292,
1351,
12608,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
32184,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1105,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
32184,
13247,
796,
763,
35,
313,
1157,
2725,
88,
32184,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
32184,
13247,
13,
2617,
11828,
10786,
29021,
329,
6060,
34864,
329,
40552,
33121,
13,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
34,
15044,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1511,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
37,
6255,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
49,
4694,
33244,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
49,
4694,
50015,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8120,
50015,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8291,
3291,
19778,
12332,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
34,
15044,
13247,
796,
763,
35,
313,
1157,
34,
15044,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
34,
15044,
13247,
13,
2617,
11828,
10786,
29021,
422,
262,
763,
35,
313,
1157,
34,
15044,
13247,
326,
389,
407,
3417,
287,
262,
763,
35,
313,
1157,
44721,
48346,
1448,
13,
2312,
5563,
389,
13677,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1478,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
44721,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
13313,
7575,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11712,
282,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2949,
786,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15571,
49,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
16,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
17,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
21,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
24,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1157,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1065,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1507,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1731,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2623,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2780,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
32184,
4051,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8291,
2781,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3041,
15164,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
818,
47,
74,
912,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
7975,
47,
74,
912,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
818,
12349,
1039,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
7975,
12349,
1039,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
5376,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
4061,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
53,
25697,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
12367,
14565,
39317,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
6535,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
8021,
41003,
13247,
796,
763,
35,
313,
1157,
8021,
41003,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
8112,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
8021,
41003,
16934,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1315,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
8021,
41003,
16934,
13247,
796,
763,
35,
313,
1157,
8021,
41003,
16934,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
8021,
41003,
16934,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
8112,
3084,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
33351,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1467,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
14155,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
11712,
282,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
2949,
786,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
15571,
49,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
19580,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
11909,
56,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
818,
21797,
7575,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
26245,
6030,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
24074,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
33351,
13247,
796,
763,
35,
313,
1157,
33351,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
9367,
3084,
13,
705,
8,
198,
1073,
35,
313,
1157,
33351,
16934,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1596,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
5990,
2101,
8467,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
33351,
16934,
13247,
796,
763,
35,
313,
1157,
33351,
16934,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
33351,
16934,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
9367,
3084,
13,
1892,
4855,
319,
262,
337,
16243,
2637,
8,
198,
1073,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1248,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
796,
763,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
13,
2617,
11828,
10786,
29021,
326,
17425,
262,
370,
5258,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
3673,
2649,
13247,
796,
42808,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
678,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
3673,
2649,
13247,
796,
763,
35,
313,
1157,
3673,
2649,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
3673,
2649,
13247,
13,
2617,
11828,
10786,
32,
4947,
286,
4855,
19605,
2637,
8,
198,
1073,
35,
313,
1157,
6998,
45,
14881,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1160,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
14815,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
6998,
45,
14881,
796,
763,
35,
313,
1157,
6998,
45,
14881,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
6998,
45,
14881,
13,
2617,
11828,
10786,
464,
763,
35,
313,
1157,
6998,
45,
14881,
2134,
1398,
3769,
262,
3306,
1104,
329,
11149,
19340,
4535,
11244,
287,
262,
47550,
11537,
198,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
2310,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
37,
28707,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
25621,
817,
10126,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
796,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
13,
2617,
11828,
10786,
29021,
326,
17425,
262,
3963,
23127,
329,
40552,
33121,
13,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
6535,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
2534,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
29239,
30916,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
16438,
18878,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
12367,
6535,
13247,
796,
763,
35,
313,
1157,
12367,
6535,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
6535,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
4429,
7154,
3084,
2637,
8,
198,
1073,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
2242,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
35170,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11297,
12211,
560,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
13719,
3245,
19722,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
796,
763,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
13,
2617,
11828,
10786,
29021,
326,
17425,
262,
7154,
329,
40552,
33121,
13,
1157,
2637,
8,
198,
1073,
35,
313,
1157,
2969,
14881,
13247,
11627,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1987,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6892,
323,
25262,
12367,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
3856,
7807,
5990,
2101,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
24544,
3955,
5990,
2101,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
15057,
5189,
14490,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
4462,
50,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
2969,
14881,
13247,
11627,
796,
763,
35,
313,
1157,
2969,
14881,
13247,
11627,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
2969,
14881,
13247,
11627,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
7767,
287,
262,
47550,
884,
326,
262,
47550,
743,
670,
6788,
9404,
355,
257,
636,
286,
281,
40552,
33121,
13,
1157,
3127,
2637,
8,
198,
1073,
35,
313,
1157,
12367,
11242,
3213,
13247,
796,
9515,
13247,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
10083,
2598,
11,
642,
11,
604,
11,
718,
11,
352,
11,
1679,
29720,
2617,
10267,
82,
7,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
29239,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
32184,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
12340,
5855,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
366,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
48774,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
763,
35,
313,
1157,
12367,
11242,
3213,
13247,
796,
763,
35,
313,
1157,
12367,
11242,
3213,
13247,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
35,
313,
1157,
12367,
11242,
3213,
13247,
13,
2617,
11828,
10786,
464,
3486,
2134,
1398,
3769,
262,
3306,
1104,
379,
262,
8798,
6252,
284,
6687,
262,
4429,
13326,
1321,
2637,
8,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1415,
11,
763,
35,
313,
1157,
499,
28,
1073,
35,
313,
1157,
499,
11,
763,
35,
313,
1157,
33351,
11909,
56,
6030,
28,
1073,
35,
313,
1157,
33351,
11909,
56,
6030,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
15732,
11,
763,
35,
313,
1157,
33351,
818,
21797,
7575,
28,
1073,
35,
313,
1157,
33351,
818,
21797,
7575,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1415,
11,
763,
35,
313,
1157,
6883,
28,
1073,
35,
313,
1157,
6883,
11,
763,
35,
313,
1157,
33351,
20491,
28,
1073,
35,
313,
1157,
33351,
20491,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
16,
11,
763,
35,
313,
1157,
4093,
2390,
1098,
48181,
28,
1073,
35,
313,
1157,
4093,
2390,
1098,
48181,
11,
763,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
28,
1073,
35,
313,
1157,
4851,
5188,
81,
1472,
12332,
11,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
10962,
28,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
10962,
11,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
28,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
11,
763,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
11712,
282,
4971,
11,
763,
35,
313,
1157,
33351,
15571,
49,
28,
1073,
35,
313,
1157,
33351,
15571,
49,
11,
763,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
39,
4825,
6316,
3610,
13247,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1065,
11,
763,
35,
313,
1157,
33351,
13247,
28,
1073,
35,
313,
1157,
33351,
13247,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
24,
11,
763,
35,
313,
1157,
42974,
14374,
817,
10126,
28,
1073,
35,
313,
1157,
42974,
14374,
817,
10126,
11,
763,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
28,
1073,
35,
313,
1157,
1273,
64,
27195,
13168,
6030,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
10962,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
10962,
11,
763,
35,
313,
1157,
2725,
88,
32180,
10962,
28,
1073,
35,
313,
1157,
2725,
88,
32180,
10962,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
4653,
12609,
47,
958,
3083,
34,
10803,
11,
763,
35,
313,
1157,
3856,
7807,
5990,
2101,
28,
1073,
35,
313,
1157,
3856,
7807,
5990,
2101,
11,
763,
35,
313,
1157,
11297,
37,
28707,
28,
1073,
35,
313,
1157,
11297,
37,
28707,
11,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
30150,
28,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
30150,
11,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
28,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
10962,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
14815,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
14815,
11,
763,
35,
313,
1157,
33351,
2949,
786,
4971,
28,
1073,
35,
313,
1157,
33351,
2949,
786,
4971,
11,
763,
35,
313,
1157,
2725,
88,
18843,
19580,
28,
1073,
35,
313,
1157,
2725,
88,
18843,
19580,
11,
763,
35,
313,
1157,
38143,
16097,
28,
1073,
35,
313,
1157,
38143,
16097,
11,
763,
35,
313,
1157,
11297,
29239,
28,
1073,
35,
313,
1157,
11297,
29239,
11,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
28,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
19,
11395,
11,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
10962,
28,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
10962,
11,
763,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
28,
1073,
35,
313,
1157,
7556,
83,
47649,
3299,
2348,
7727,
907,
13247,
11,
763,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
28,
1073,
35,
313,
1157,
37,
28707,
33,
1746,
48181,
11,
763,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
28,
1073,
35,
313,
1157,
35,
1608,
4653,
1564,
49,
87,
11,
763,
35,
313,
1157,
33351,
16934,
13247,
28,
1073,
35,
313,
1157,
33351,
16934,
13247,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
16,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
16,
11,
763,
35,
313,
1157,
8021,
41003,
30150,
28,
1073,
35,
313,
1157,
8021,
41003,
30150,
11,
763,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
14155,
20231,
11,
763,
35,
313,
1157,
49,
4694,
50015,
12332,
28,
1073,
35,
313,
1157,
49,
4694,
50015,
12332,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1314,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
1731,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1731,
11,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
10962,
28,
1073,
35,
313,
1157,
8081,
24510,
1299,
48181,
10962,
11,
763,
35,
313,
1157,
34,
15044,
30150,
28,
1073,
35,
313,
1157,
34,
15044,
30150,
11,
763,
35,
313,
1157,
2725,
88,
16934,
30150,
28,
1073,
35,
313,
1157,
2725,
88,
16934,
30150,
11,
763,
35,
313,
1157,
47649,
3299,
2348,
42289,
28,
1073,
35,
313,
1157,
47649,
3299,
2348,
42289,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
940,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
21,
11,
763,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
28,
1073,
35,
313,
1157,
11297,
18843,
11909,
56,
6030,
11,
763,
35,
313,
1157,
33351,
24074,
28,
1073,
35,
313,
1157,
33351,
24074,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1314,
11,
763,
35,
313,
1157,
1273,
64,
16438,
18878,
28,
1073,
35,
313,
1157,
1273,
64,
16438,
18878,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
10962,
11,
763,
35,
313,
1157,
2725,
88,
32180,
30150,
28,
1073,
35,
313,
1157,
2725,
88,
32180,
30150,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
19,
25309,
12885,
32431,
39044,
942,
11,
763,
35,
313,
1157,
14617,
9781,
563,
39184,
28,
1073,
35,
313,
1157,
14617,
9781,
563,
39184,
11,
763,
35,
313,
1157,
48948,
10962,
28,
1073,
35,
313,
1157,
48948,
10962,
11,
763,
35,
313,
1157,
11242,
11197,
12367,
10962,
28,
1073,
35,
313,
1157,
11242,
11197,
12367,
10962,
11,
951,
549,
2442,
30863,
26518,
1157,
28,
4033,
549,
2442,
30863,
26518,
1157,
11,
763,
35,
313,
1157,
11297,
18843,
37,
28707,
28,
1073,
35,
313,
1157,
11297,
18843,
37,
28707,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
1507,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1507,
11,
763,
35,
313,
1157,
32180,
10962,
28,
1073,
35,
313,
1157,
32180,
10962,
11,
763,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
48948,
19722,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
28,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
46787,
4971,
11,
763,
35,
313,
1157,
38,
14459,
28,
1073,
35,
313,
1157,
38,
14459,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1485,
11,
763,
35,
313,
1157,
12367,
4061,
20231,
28,
1073,
35,
313,
1157,
12367,
4061,
20231,
11,
763,
35,
313,
1157,
12367,
44721,
20231,
28,
1073,
35,
313,
1157,
12367,
44721,
20231,
11,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
28,
1073,
35,
313,
1157,
13217,
1697,
292,
8053,
10962,
11,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
28,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
20491,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
17,
11,
763,
35,
313,
1157,
48948,
19904,
6545,
28,
1073,
35,
313,
1157,
48948,
19904,
6545,
11,
763,
35,
313,
1157,
26093,
6030,
28,
1073,
35,
313,
1157,
26093,
6030,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
19,
11,
763,
35,
313,
1157,
2725,
88,
6535,
30150,
28,
1073,
35,
313,
1157,
2725,
88,
6535,
30150,
11,
763,
35,
313,
1157,
48032,
8895,
33,
3673,
2649,
36698,
844,
28,
1073,
35,
313,
1157,
48032,
8895,
33,
3673,
2649,
36698,
844,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
3041,
26024,
11,
763,
35,
313,
1157,
4462,
50,
2389,
28,
1073,
35,
313,
1157,
4462,
50,
2389,
11,
763,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
13719,
3245,
19722,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
20,
11,
763,
35,
313,
1157,
44445,
15051,
2389,
28,
1073,
35,
313,
1157,
44445,
15051,
2389,
11,
763,
35,
313,
1157,
16438,
9781,
563,
39184,
28,
1073,
35,
313,
1157,
16438,
9781,
563,
39184,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
19,
11,
763,
35,
313,
1157,
44721,
14881,
13247,
28,
1073,
35,
313,
1157,
44721,
14881,
13247,
11,
763,
35,
313,
1157,
11909,
56,
6030,
28,
1073,
35,
313,
1157,
11909,
56,
6030,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
22,
11,
763,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
28,
1073,
35,
313,
1157,
19778,
35660,
489,
5344,
12332,
11,
763,
35,
313,
1157,
11297,
35170,
29239,
28,
1073,
35,
313,
1157,
11297,
35170,
29239,
11,
763,
35,
313,
1157,
8291,
3291,
19778,
12332,
28,
1073,
35,
313,
1157,
8291,
3291,
19778,
12332,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
14565,
49884,
39044,
942,
11,
763,
35,
313,
1157,
46787,
44046,
6601,
32184,
28,
1073,
35,
313,
1157,
46787,
44046,
6601,
32184,
11,
763,
35,
313,
1157,
33921,
10669,
28,
1073,
35,
313,
1157,
33921,
10669,
11,
763,
35,
313,
1157,
20285,
28,
1073,
35,
313,
1157,
20285,
11,
763,
35,
313,
1157,
33351,
11712,
282,
4971,
28,
1073,
35,
313,
1157,
33351,
11712,
282,
4971,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
11395,
11,
763,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
28,
1073,
35,
313,
1157,
33351,
13838,
1143,
8053,
21886,
11,
763,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
14155,
20231,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
2149,
6089,
81,
5965,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
36510,
49884,
39044,
942,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
21,
11,
763,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
28,
1073,
35,
313,
1157,
11518,
8291,
2781,
5653,
35,
6239,
361,
8079,
11,
763,
35,
313,
1157,
11297,
4093,
2390,
1098,
28,
1073,
35,
313,
1157,
11297,
4093,
2390,
1098,
11,
763,
35,
313,
1157,
12367,
5376,
28,
1073,
35,
313,
1157,
12367,
5376,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1731,
11,
763,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
8081,
24510,
1299,
15514,
13247,
11,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
28,
1073,
35,
313,
1157,
48181,
49,
87,
13217,
13713,
11,
350,
56,
15571,
7378,
62,
33365,
24212,
62,
2389,
28,
4033,
549,
2442,
30863,
26518,
1157,
11,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
28,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
21926,
88,
20491,
11,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
28,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
36695,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
2389,
11,
763,
35,
313,
1157,
11297,
46047,
13217,
13713,
28,
1073,
35,
313,
1157,
11297,
46047,
13217,
13713,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
44,
5760,
721,
6012,
9139,
5965,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2623,
11,
763,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
28,
1073,
35,
313,
1157,
1273,
64,
3041,
15164,
44,
7902,
11,
763,
35,
313,
1157,
8021,
41003,
13247,
28,
1073,
35,
313,
1157,
8021,
41003,
13247,
11,
763,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
28,
1073,
35,
313,
1157,
8291,
3291,
42974,
434,
12332,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
18,
11,
763,
35,
313,
1157,
11712,
282,
4971,
28,
1073,
35,
313,
1157,
11712,
282,
4971,
11,
763,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
5432,
2389,
11,
763,
35,
313,
1157,
3041,
15164,
32184,
28,
1073,
35,
313,
1157,
3041,
15164,
32184,
11,
763,
35,
313,
1157,
818,
12349,
1039,
28,
1073,
35,
313,
1157,
818,
12349,
1039,
11,
763,
35,
313,
1157,
27722,
29239,
20491,
28,
1073,
35,
313,
1157,
27722,
29239,
20491,
11,
763,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
19238,
23127,
38143,
3610,
13247,
11,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
11869,
1039,
11,
370,
8905,
9218,
4906,
28,
8845,
47,
9218,
4906,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1065,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
16,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
2780,
11,
763,
35,
313,
1157,
26093,
20491,
28,
1073,
35,
313,
1157,
26093,
20491,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
940,
11,
763,
35,
313,
1157,
1273,
64,
29239,
30916,
28,
1073,
35,
313,
1157,
1273,
64,
29239,
30916,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
1157,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1157,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
22,
11,
763,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
28,
1073,
35,
313,
1157,
2725,
88,
5258,
50,
5188,
429,
563,
11,
763,
35,
313,
1157,
33351,
5990,
2101,
8467,
28,
1073,
35,
313,
1157,
33351,
5990,
2101,
8467,
11,
763,
35,
313,
1157,
48181,
46047,
13217,
13713,
28,
1073,
35,
313,
1157,
48181,
46047,
13217,
13713,
11,
763,
35,
313,
1157,
2725,
88,
6535,
10962,
28,
1073,
35,
313,
1157,
2725,
88,
6535,
10962,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
15,
11,
763,
35,
313,
1157,
2969,
14881,
13247,
28,
1073,
35,
313,
1157,
2969,
14881,
13247,
11,
763,
35,
313,
1157,
34,
15044,
13247,
28,
1073,
35,
313,
1157,
34,
15044,
13247,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
30150,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
30150,
11,
763,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
28,
1073,
35,
313,
1157,
36124,
3634,
48181,
6601,
32184,
11,
763,
35,
313,
1157,
46787,
40541,
6601,
32184,
28,
1073,
35,
313,
1157,
46787,
40541,
6601,
32184,
11,
763,
35,
313,
1157,
22332,
4303,
419,
15732,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
15732,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
18,
11,
763,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
28,
1073,
35,
313,
1157,
3041,
6471,
42974,
434,
12332,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
17,
11,
763,
35,
313,
1157,
12367,
6535,
10962,
28,
1073,
35,
313,
1157,
12367,
6535,
10962,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1157,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
20,
26518,
20,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
18,
11395,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
17,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
17,
11,
763,
35,
313,
1157,
11242,
1273,
64,
32184,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
32184,
11,
763,
35,
313,
1157,
6892,
323,
25262,
12367,
28,
1073,
35,
313,
1157,
6892,
323,
25262,
12367,
11,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
28,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
9492,
2100,
11,
763,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
28,
1073,
35,
313,
1157,
1273,
64,
8291,
2781,
44,
7902,
11,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
9139,
5965,
11,
763,
35,
313,
1157,
27722,
13434,
9492,
2100,
28,
1073,
35,
313,
1157,
27722,
13434,
9492,
2100,
11,
763,
35,
313,
1157,
44721,
48346,
13247,
28,
1073,
35,
313,
1157,
44721,
48346,
13247,
11,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
28,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
20491,
11,
763,
35,
313,
1157,
12367,
11242,
3213,
9012,
28,
1073,
35,
313,
1157,
12367,
11242,
3213,
9012,
11,
763,
35,
313,
1157,
12367,
13313,
7575,
28,
1073,
35,
313,
1157,
12367,
13313,
7575,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
2780,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2780,
11,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
30150,
28,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
30150,
11,
763,
35,
313,
1157,
6998,
45,
14881,
28,
1073,
35,
313,
1157,
6998,
45,
14881,
11,
763,
35,
313,
1157,
37,
6255,
12332,
28,
1073,
35,
313,
1157,
37,
6255,
12332,
11,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
11869,
1039,
11,
763,
35,
313,
1157,
8021,
41003,
16934,
13247,
28,
1073,
35,
313,
1157,
8021,
41003,
16934,
13247,
11,
763,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
28,
1073,
35,
313,
1157,
4550,
2514,
8021,
41003,
3673,
2649,
11,
763,
35,
313,
1157,
49,
4694,
817,
10126,
28,
1073,
35,
313,
1157,
49,
4694,
817,
10126,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
23,
11,
763,
35,
313,
1157,
3109,
9152,
3118,
43628,
28,
1073,
35,
313,
1157,
3109,
9152,
3118,
43628,
11,
763,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
28,
1073,
35,
313,
1157,
11518,
3041,
15164,
43,
361,
8079,
11,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
28,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
15732,
11,
763,
35,
313,
1157,
30782,
6030,
28,
1073,
35,
313,
1157,
30782,
6030,
11,
763,
35,
313,
1157,
2725,
88,
16934,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
16934,
13247,
11,
763,
35,
313,
1157,
13719,
3245,
19722,
20491,
28,
1073,
35,
313,
1157,
13719,
3245,
19722,
20491,
11,
763,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
28,
1073,
35,
313,
1157,
45,
65,
11242,
11197,
12367,
11,
763,
35,
313,
1157,
33351,
19580,
28,
1073,
35,
313,
1157,
33351,
19580,
11,
763,
35,
313,
1157,
11242,
11197,
12367,
30150,
28,
1073,
35,
313,
1157,
11242,
11197,
12367,
30150,
11,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
35442,
1496,
11,
763,
35,
313,
1157,
13217,
13713,
8053,
15732,
28,
1073,
35,
313,
1157,
13217,
13713,
8053,
15732,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
24,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
20,
11,
763,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
28,
1073,
35,
313,
1157,
16438,
38,
9399,
1159,
818,
34096,
20491,
11,
763,
35,
313,
1157,
12367,
6535,
13247,
28,
1073,
35,
313,
1157,
12367,
6535,
13247,
11,
763,
35,
313,
1157,
8021,
41003,
10962,
28,
1073,
35,
313,
1157,
8021,
41003,
10962,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
1065,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
1065,
11,
763,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
28,
1073,
35,
313,
1157,
8845,
47,
2149,
6089,
81,
1472,
12332,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1507,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
4093,
7378,
26227,
9139,
5965,
11,
763,
35,
313,
1157,
22332,
4303,
419,
30150,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
30150,
11,
763,
35,
313,
1157,
2725,
88,
16934,
10962,
28,
1073,
35,
313,
1157,
2725,
88,
16934,
10962,
11,
763,
35,
313,
1157,
27722,
13434,
20491,
28,
1073,
35,
313,
1157,
27722,
13434,
20491,
11,
763,
35,
313,
1157,
44721,
20231,
28,
1073,
35,
313,
1157,
44721,
20231,
11,
763,
35,
313,
1157,
3103,
10367,
28,
1073,
35,
313,
1157,
3103,
10367,
11,
763,
35,
313,
1157,
818,
47,
74,
912,
28,
1073,
35,
313,
1157,
818,
47,
74,
912,
11,
763,
35,
313,
1157,
2725,
88,
32184,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
32184,
13247,
11,
763,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
28,
1073,
35,
313,
1157,
8845,
5105,
358,
721,
6012,
540,
12332,
11,
763,
35,
313,
1157,
2969,
48948,
13247,
28,
1073,
35,
313,
1157,
2969,
48948,
13247,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
21,
11,
763,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
11297,
32184,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
2623,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
2623,
11,
763,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
28,
1073,
35,
313,
1157,
15205,
291,
459,
8291,
3291,
19778,
12332,
11,
763,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
16934,
38143,
3610,
13247,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
30150,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
30150,
11,
763,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
28,
1073,
35,
313,
1157,
15571,
49,
4971,
3673,
2649,
9492,
2100,
11,
763,
35,
313,
1157,
33351,
5432,
2389,
28,
1073,
35,
313,
1157,
33351,
5432,
2389,
11,
763,
35,
313,
1157,
6998,
4535,
20491,
28,
1073,
35,
313,
1157,
6998,
4535,
20491,
11,
763,
35,
313,
1157,
15571,
49,
28,
1073,
35,
313,
1157,
15571,
49,
11,
763,
35,
313,
1157,
2949,
786,
4971,
28,
1073,
35,
313,
1157,
2949,
786,
4971,
11,
763,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
46047,
9139,
5965,
11,
763,
35,
313,
1157,
12367,
6535,
30150,
28,
1073,
35,
313,
1157,
12367,
6535,
30150,
11,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
28,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
20491,
11,
763,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
45,
65,
2964,
1350,
3041,
80,
11,
763,
35,
313,
1157,
3673,
2649,
13247,
28,
1073,
35,
313,
1157,
3673,
2649,
13247,
11,
763,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
28,
1073,
35,
313,
1157,
52,
2616,
1457,
1143,
2969,
3673,
2649,
11,
763,
35,
313,
1157,
48948,
30150,
28,
1073,
35,
313,
1157,
48948,
30150,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
40729,
30150,
11,
763,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
5258,
5432,
38143,
3610,
13247,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
4051,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
4051,
11,
763,
35,
313,
1157,
8081,
24510,
1299,
48181,
30150,
28,
1073,
35,
313,
1157,
8081,
24510,
1299,
48181,
30150,
11,
763,
35,
313,
1157,
6998,
45,
38143,
3610,
28,
1073,
35,
313,
1157,
6998,
45,
38143,
3610,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
15732,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
4051,
11,
763,
35,
313,
1157,
50,
40545,
28,
1073,
35,
313,
1157,
50,
40545,
11,
763,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
11922,
15046,
1996,
19722,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
28,
1073,
35,
313,
1157,
11297,
49,
87,
13217,
13713,
11,
763,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
28,
1073,
35,
313,
1157,
2725,
88,
19238,
35,
11682,
429,
563,
11,
763,
35,
313,
1157,
12367,
53,
25697,
28,
1073,
35,
313,
1157,
12367,
53,
25697,
11,
763,
35,
313,
1157,
33351,
30150,
28,
1073,
35,
313,
1157,
33351,
30150,
11,
763,
35,
313,
1157,
7975,
47,
74,
912,
28,
1073,
35,
313,
1157,
7975,
47,
74,
912,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
24,
11,
763,
35,
313,
1157,
33351,
29239,
28,
1073,
35,
313,
1157,
33351,
29239,
11,
763,
35,
313,
1157,
31217,
9781,
563,
12332,
28,
1073,
35,
313,
1157,
31217,
9781,
563,
12332,
11,
763,
35,
313,
1157,
11297,
8081,
43961,
28,
1073,
35,
313,
1157,
11297,
8081,
43961,
11,
763,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
28,
1073,
35,
313,
1157,
8845,
47,
3109,
10341,
12332,
11,
763,
35,
313,
1157,
15457,
12727,
16934,
30150,
28,
1073,
35,
313,
1157,
15457,
12727,
16934,
30150,
11,
763,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
15571,
49,
4971,
11,
763,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
28,
1073,
35,
313,
1157,
8021,
41003,
3673,
2649,
9492,
2100,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
15,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
24,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
24,
11,
763,
35,
313,
1157,
32180,
30150,
28,
1073,
35,
313,
1157,
32180,
30150,
11,
763,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
28,
1073,
35,
313,
1157,
15205,
291,
459,
3041,
6471,
19778,
12332,
11,
763,
35,
313,
1157,
8021,
41003,
15732,
28,
1073,
35,
313,
1157,
8021,
41003,
15732,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1157,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
1157,
8,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
25154,
10526,
49,
1797,
12,
30863,
35,
2394,
1157,
12,
8895,
33,
1600,
763,
35,
313,
1157,
12367,
11242,
3213,
13247,
28,
1073,
35,
313,
1157,
12367,
11242,
3213,
13247,
11,
763,
35,
313,
1157,
2969,
14881,
13247,
11627,
28,
1073,
35,
313,
1157,
2969,
14881,
13247,
11627,
11,
763,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
28,
1073,
35,
313,
1157,
47649,
3299,
2348,
7727,
907,
15732,
11,
763,
35,
313,
1157,
8120,
50015,
12332,
28,
1073,
35,
313,
1157,
8120,
50015,
12332,
11,
763,
35,
313,
1157,
33351,
14155,
20231,
28,
1073,
35,
313,
1157,
33351,
14155,
20231,
11,
763,
35,
313,
1157,
34,
15044,
10962,
28,
1073,
35,
313,
1157,
34,
15044,
10962,
11,
763,
35,
313,
1157,
2725,
88,
46787,
19580,
28,
1073,
35,
313,
1157,
2725,
88,
46787,
19580,
11,
763,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
28,
1073,
35,
313,
1157,
2725,
88,
46047,
13434,
18843,
4971,
11,
763,
35,
313,
1157,
38143,
3610,
28,
1073,
35,
313,
1157,
38143,
3610,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
10962,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
46047,
10962,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
3041,
26024,
11,
763,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
28,
1073,
35,
313,
1157,
6998,
4535,
19722,
3546,
1154,
12061,
11,
763,
35,
313,
1157,
22332,
4303,
419,
10962,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
10962,
11,
763,
35,
313,
1157,
25621,
817,
10126,
28,
1073,
35,
313,
1157,
25621,
817,
10126,
11,
763,
35,
313,
1157,
11242,
1273,
64,
29239,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
29239,
11,
763,
35,
313,
1157,
35,
1608,
15514,
28,
1073,
35,
313,
1157,
35,
1608,
15514,
11,
763,
35,
313,
1157,
49,
4694,
33244,
12332,
28,
1073,
35,
313,
1157,
49,
4694,
33244,
12332,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
17,
11395,
11,
763,
35,
313,
1157,
44046,
15571,
49,
4971,
28,
1073,
35,
313,
1157,
44046,
15571,
49,
4971,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
20,
26518,
20,
11,
763,
35,
313,
1157,
11242,
1273,
64,
15732,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
15732,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
1065,
11,
763,
35,
313,
1157,
9781,
563,
12332,
28,
1073,
35,
313,
1157,
9781,
563,
12332,
11,
763,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
28,
1073,
35,
313,
1157,
22332,
4303,
419,
49,
87,
35442,
1496,
11,
763,
35,
313,
1157,
11297,
12211,
560,
29239,
28,
1073,
35,
313,
1157,
11297,
12211,
560,
29239,
11,
763,
35,
313,
1157,
33351,
10962,
28,
1073,
35,
313,
1157,
33351,
10962,
11,
763,
35,
313,
1157,
2725,
88,
5258,
50,
2257,
540,
28,
1073,
35,
313,
1157,
2725,
88,
5258,
50,
2257,
540,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
51,
42,
4061,
31694,
5308,
13846,
19904,
6545,
11,
763,
35,
313,
1157,
8291,
2781,
32184,
28,
1073,
35,
313,
1157,
8291,
2781,
32184,
11,
763,
35,
313,
1157,
1273,
64,
6535,
28,
1073,
35,
313,
1157,
1273,
64,
6535,
11,
763,
35,
313,
1157,
15667,
2389,
28,
1073,
35,
313,
1157,
15667,
2389,
11,
763,
35,
313,
1157,
7975,
12349,
1039,
28,
1073,
35,
313,
1157,
7975,
12349,
1039,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
16,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
11395,
11,
763,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
28,
1073,
35,
313,
1157,
21926,
88,
25983,
32180,
20491,
11,
763,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
13217,
1697,
292,
8053,
13247,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
46047,
44,
7902,
1485,
11,
763,
35,
313,
1157,
33351,
26245,
6030,
28,
1073,
35,
313,
1157,
33351,
26245,
6030,
11,
763,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
28,
1073,
35,
313,
1157,
8845,
5760,
891,
1721,
9218,
16,
11395,
11,
763,
35,
313,
1157,
38143,
3610,
11627,
28,
1073,
35,
313,
1157,
38143,
3610,
11627,
11,
763,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
28,
1073,
35,
313,
1157,
8081,
24510,
1299,
15514,
11395,
11,
763,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
28,
1073,
35,
313,
1157,
2725,
88,
13217,
13713,
38143,
3610,
13247,
11,
763,
35,
313,
1157,
12367,
5432,
2389,
28,
1073,
35,
313,
1157,
12367,
5432,
2389,
11,
763,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
28,
1073,
35,
313,
1157,
54,
5258,
38143,
3610,
13247,
11,
763,
35,
313,
1157,
15057,
5189,
14490,
28,
1073,
35,
313,
1157,
15057,
5189,
14490,
11,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
15642,
2557,
11,
763,
35,
313,
1157,
13217,
1697,
292,
8053,
30150,
28,
1073,
35,
313,
1157,
13217,
1697,
292,
8053,
30150,
11,
763,
35,
313,
1157,
12367,
14565,
39317,
28,
1073,
35,
313,
1157,
12367,
14565,
39317,
11,
763,
35,
313,
1157,
27722,
29239,
9492,
2100,
28,
1073,
35,
313,
1157,
27722,
29239,
9492,
2100,
11,
763,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
28,
1073,
35,
313,
1157,
1273,
64,
47,
74,
912,
49,
87,
44,
7902,
23,
11,
763,
35,
313,
1157,
6998,
4535,
29668,
10962,
28,
1073,
35,
313,
1157,
6998,
4535,
29668,
10962,
11,
763,
35,
313,
1157,
11297,
15571,
49,
4971,
28,
1073,
35,
313,
1157,
11297,
15571,
49,
4971,
11,
763,
35,
313,
1157,
33351,
15732,
28,
1073,
35,
313,
1157,
33351,
15732,
11,
763,
35,
313,
1157,
48032,
8895,
33,
3673,
6637,
28,
1073,
35,
313,
1157,
48032,
8895,
33,
3673,
6637,
11,
763,
35,
313,
1157,
15457,
12727,
16934,
10962,
28,
1073,
35,
313,
1157,
15457,
12727,
16934,
10962,
11,
763,
35,
313,
1157,
18843,
803,
19076,
28,
1073,
35,
313,
1157,
18843,
803,
19076,
11,
763,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
28,
1073,
35,
313,
1157,
47,
74,
912,
46047,
32184,
17,
11,
763,
35,
313,
1157,
24544,
3955,
5990,
2101,
28,
1073,
35,
313,
1157,
24544,
3955,
5990,
2101,
11,
763,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
2949,
786,
4971,
11,
763,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
30150,
28,
1073,
35,
313,
1157,
48181,
6601,
49,
689,
49,
87,
30150,
11,
763,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
28,
1073,
35,
313,
1157,
11242,
1273,
64,
7575,
5956,
4653,
268,
11,
763,
35,
313,
1157,
47,
74,
912,
32184,
21,
28,
1073,
35,
313,
1157,
47,
74,
912,
32184,
21,
8,
198
] | 2.738984 | 59,050 |
from typing import Callable, Dict, Union
from django.db import models
import simplejson
from django.http import Http404
from clients.models import Card
def data_parse(data: Union[dict, str, bytes], keys_types: Dict[str, Union[Callable, str, None]], default_values: dict = None) -> list:
"""
Функиця проверки типов.
>>> request_data = {'s': 'string', 'i': 15, 'f': 15.5, 'l': [1, 2, 3], 'd': {1: 1, 2: 2}}
>>> type_dict = {'s': str, 'i': int, 'f': float, 'l': list, 'd': dict}
>>> data_parse(request_data, type_dict)
"""
if isinstance(data, bytes):
data = data.decode('utf-8')
if isinstance(data, str):
data = simplejson.loads(data)
typed_vars = []
if default_values is None:
default_values = {}
elif not isinstance(default_values, dict):
raise TypeError('Error, default_values must be dict')
for key, var_type in keys_types.items():
var = data.get(key, default_values.get(key))
try:
if type(var) is var_type:
typed_vars.append(var)
else:
if key not in data and key not in default_values:
raise Http404('{} not found!'.format(var))
if var_type is None or (var is None and default_values.get(key, True) is None):
typed_vars.append(None)
elif var_type == 'str_strip':
typed_vars.append(str(var).strip())
elif var_type == 'card':
typed_vars.append(Card.objects.get(pk=var))
else:
typed_vars.append(var_type(var))
except TypeError or ValueError:
raise Http404('Cannot cast type Key: {}, Value: {}, Type: {}'.format(key, var, var_type))
return typed_vars
| [
6738,
19720,
1330,
4889,
540,
11,
360,
713,
11,
4479,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
198,
11748,
2829,
17752,
198,
6738,
42625,
14208,
13,
4023,
1330,
367,
29281,
26429,
198,
198,
6738,
7534,
13,
27530,
1330,
5172,
628,
198,
198,
4299,
1366,
62,
29572,
7,
7890,
25,
4479,
58,
11600,
11,
965,
11,
9881,
4357,
8251,
62,
19199,
25,
360,
713,
58,
2536,
11,
4479,
58,
14134,
540,
11,
965,
11,
6045,
60,
4357,
4277,
62,
27160,
25,
8633,
796,
6045,
8,
4613,
1351,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12466,
97,
35072,
22177,
31583,
18849,
141,
228,
40623,
12466,
123,
21169,
25443,
110,
16843,
21169,
31583,
18849,
220,
20375,
18849,
140,
123,
25443,
110,
13,
198,
220,
220,
220,
13163,
2581,
62,
7890,
796,
1391,
6,
82,
10354,
705,
8841,
3256,
705,
72,
10354,
1315,
11,
705,
69,
10354,
1315,
13,
20,
11,
705,
75,
10354,
685,
16,
11,
362,
11,
513,
4357,
705,
67,
10354,
1391,
16,
25,
352,
11,
362,
25,
362,
11709,
198,
220,
220,
220,
13163,
2099,
62,
11600,
796,
1391,
6,
82,
10354,
965,
11,
705,
72,
10354,
493,
11,
705,
69,
10354,
12178,
11,
705,
75,
10354,
1351,
11,
705,
67,
10354,
8633,
92,
198,
220,
220,
220,
13163,
1366,
62,
29572,
7,
25927,
62,
7890,
11,
2099,
62,
11600,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
7890,
11,
9881,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
1366,
13,
12501,
1098,
10786,
40477,
12,
23,
11537,
628,
220,
220,
220,
611,
318,
39098,
7,
7890,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
2829,
17752,
13,
46030,
7,
7890,
8,
628,
220,
220,
220,
25683,
62,
85,
945,
796,
17635,
198,
220,
220,
220,
611,
4277,
62,
27160,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
62,
27160,
796,
23884,
198,
220,
220,
220,
1288,
361,
407,
318,
39098,
7,
12286,
62,
27160,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
10786,
12331,
11,
4277,
62,
27160,
1276,
307,
8633,
11537,
628,
220,
220,
220,
329,
1994,
11,
1401,
62,
4906,
287,
8251,
62,
19199,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
1401,
796,
1366,
13,
1136,
7,
2539,
11,
4277,
62,
27160,
13,
1136,
7,
2539,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
7785,
8,
318,
1401,
62,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25683,
62,
85,
945,
13,
33295,
7,
7785,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
407,
287,
1366,
290,
1994,
407,
287,
4277,
62,
27160,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
367,
29281,
26429,
10786,
90,
92,
407,
1043,
0,
4458,
18982,
7,
7785,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1401,
62,
4906,
318,
6045,
393,
357,
7785,
318,
6045,
290,
4277,
62,
27160,
13,
1136,
7,
2539,
11,
6407,
8,
318,
6045,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25683,
62,
85,
945,
13,
33295,
7,
14202,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1401,
62,
4906,
6624,
705,
2536,
62,
36311,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25683,
62,
85,
945,
13,
33295,
7,
2536,
7,
7785,
737,
36311,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1401,
62,
4906,
6624,
705,
9517,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25683,
62,
85,
945,
13,
33295,
7,
16962,
13,
48205,
13,
1136,
7,
79,
74,
28,
7785,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25683,
62,
85,
945,
13,
33295,
7,
7785,
62,
4906,
7,
7785,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
5994,
12331,
393,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
367,
29281,
26429,
10786,
34,
34574,
3350,
2099,
7383,
25,
1391,
5512,
11052,
25,
1391,
5512,
5994,
25,
23884,
4458,
18982,
7,
2539,
11,
1401,
11,
1401,
62,
4906,
4008,
198,
220,
220,
220,
1441,
25683,
62,
85,
945,
198
] | 2.114118 | 850 |
import torch
from statistics.meters import Meter
class RFDeviation(Meter):
"""This Meter computes the standard deviation of the RF for a selection of random inputs. This approximates a
measure of the linearity of the average feature for the layer. Lower value = more simple cells, higher value = more
complex cells"""
| [
11748,
28034,
198,
198,
6738,
7869,
13,
4164,
364,
1330,
46423,
628,
198,
198,
4871,
20445,
13603,
3920,
7,
44,
2357,
2599,
198,
220,
220,
220,
37227,
1212,
46423,
552,
1769,
262,
3210,
28833,
286,
262,
20445,
329,
257,
6356,
286,
4738,
17311,
13,
770,
5561,
26748,
257,
198,
220,
220,
220,
3953,
286,
262,
14174,
414,
286,
262,
2811,
3895,
329,
262,
7679,
13,
16048,
1988,
796,
517,
2829,
4778,
11,
2440,
1988,
796,
517,
198,
220,
220,
220,
3716,
4778,
37811,
198
] | 3.97619 | 84 |
from immfly.settings import * # NOQA
INSTALLED_APPS += [ # NOQA
'drf_yasg',
]
| [
6738,
2296,
12254,
13,
33692,
1330,
1635,
220,
1303,
8005,
48,
32,
198,
198,
38604,
7036,
1961,
62,
2969,
3705,
15853,
685,
220,
1303,
8005,
48,
32,
198,
220,
220,
220,
705,
7109,
69,
62,
88,
292,
70,
3256,
198,
60,
198
] | 2.02381 | 42 |
from django.contrib import admin
# Register your models here.
from .models import Cart
admin.site.register(Cart)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
198,
2,
17296,
534,
4981,
994,
13,
628,
198,
6738,
764,
27530,
1330,
13690,
628,
198,
28482,
13,
15654,
13,
30238,
7,
43476,
8,
198
] | 3.470588 | 34 |
"""Top-level package for Python Tomorrow.io API."""
from .pytomorrowio import TomorrowioV4, TomorrowioV4Sync
__author__ = """raman325"""
__email__ = "[email protected]"
__version__ = "0.1.0"
| [
37811,
9126,
12,
5715,
5301,
329,
11361,
25939,
13,
952,
7824,
526,
15931,
198,
198,
6738,
764,
9078,
39532,
6254,
952,
1330,
25939,
952,
53,
19,
11,
25939,
952,
53,
19,
28985,
198,
198,
834,
9800,
834,
796,
37227,
859,
272,
26582,
37811,
198,
834,
12888,
834,
796,
366,
22,
26660,
23148,
10,
859,
272,
26582,
31,
18417,
13,
77,
382,
2145,
13,
12567,
13,
785,
1,
198,
834,
9641,
834,
796,
366,
15,
13,
16,
13,
15,
1,
198
] | 2.7125 | 80 |
from django import VERSION
from django import forms
from django.urls import re_path
from django.utils.safestring import mark_safe
from django.utils.translation import gettext_lazy as _
from six import string_types
from .components import Dropdown
from .views import ModelToolsView
class AdminRowActionsMixin(object):
"""ModelAdmin mixin to add row actions just like adding admin actions"""
rowactions = []
_named_row_actions = {}
@property
_row_actions.short_description = ''
if VERSION < (1, 9):
_row_actions.allow_tags = True
def get_tool_urls(self):
"""Gets the url patterns that route each tool to a special view"""
my_urls = patterns(
'',
re_path(r'^(?P<pk>[0-9a-f-]+)/rowactions/(?P<tool>\w+)/$',
self.admin_site.admin_view(ModelToolsView.as_view(model=self.model))
)
)
return my_urls
###################################
# EXISTING ADMIN METHODS MODIFIED #
###################################
def get_urls(self):
"""Prepends `get_urls` with our own patterns"""
urls = super(AdminRowActionsMixin, self).get_urls()
return self.get_tool_urls() + urls
##################
# CUSTOM METHODS #
##################
| [
6738,
42625,
14208,
1330,
44156,
2849,
198,
6738,
42625,
14208,
1330,
5107,
198,
6738,
42625,
14208,
13,
6371,
82,
1330,
302,
62,
6978,
198,
6738,
42625,
14208,
13,
26791,
13,
49585,
395,
1806,
1330,
1317,
62,
21230,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
651,
5239,
62,
75,
12582,
355,
4808,
198,
198,
6738,
2237,
1330,
4731,
62,
19199,
198,
198,
6738,
764,
5589,
3906,
1330,
14258,
2902,
198,
6738,
764,
33571,
1330,
9104,
33637,
7680,
628,
198,
198,
4871,
32053,
25166,
32,
2733,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
17633,
46787,
5022,
259,
284,
751,
5752,
4028,
655,
588,
4375,
13169,
4028,
37811,
628,
220,
220,
220,
5752,
4658,
796,
17635,
198,
220,
220,
220,
4808,
13190,
62,
808,
62,
4658,
796,
23884,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
4808,
808,
62,
4658,
13,
19509,
62,
11213,
796,
10148,
628,
220,
220,
220,
611,
44156,
2849,
1279,
357,
16,
11,
860,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
808,
62,
4658,
13,
12154,
62,
31499,
796,
6407,
628,
220,
220,
220,
825,
651,
62,
25981,
62,
6371,
82,
7,
944,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
262,
19016,
7572,
326,
6339,
1123,
2891,
284,
257,
2041,
1570,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
616,
62,
6371,
82,
796,
7572,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
302,
62,
6978,
7,
81,
6,
61,
7,
30,
47,
27,
79,
74,
36937,
15,
12,
24,
64,
12,
69,
12,
48688,
20679,
808,
4658,
29006,
30,
47,
27,
25981,
29,
59,
86,
10,
20679,
3,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
28482,
62,
15654,
13,
28482,
62,
1177,
7,
17633,
33637,
7680,
13,
292,
62,
1177,
7,
19849,
28,
944,
13,
19849,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
616,
62,
6371,
82,
628,
220,
220,
220,
1303,
29113,
2235,
198,
220,
220,
220,
1303,
7788,
8808,
2751,
5984,
23678,
337,
36252,
50,
19164,
28343,
1303,
198,
220,
220,
220,
1303,
29113,
2235,
628,
220,
220,
220,
825,
651,
62,
6371,
82,
7,
944,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
37534,
2412,
4600,
1136,
62,
6371,
82,
63,
351,
674,
898,
7572,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
2956,
7278,
796,
2208,
7,
46787,
25166,
32,
2733,
35608,
259,
11,
2116,
737,
1136,
62,
6371,
82,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
25981,
62,
6371,
82,
3419,
1343,
2956,
7278,
628,
220,
220,
220,
1303,
14468,
2,
198,
220,
220,
220,
1303,
327,
7759,
2662,
337,
36252,
50,
1303,
198,
220,
220,
220,
1303,
14468,
2,
198
] | 2.51341 | 522 |
from .entity_converter_interface import EntityConverterInterface
from gacha.entities import LootTableGroup, Pool
from typing import Any, Dict | [
6738,
764,
26858,
62,
1102,
332,
353,
62,
39994,
1330,
20885,
3103,
332,
353,
39317,
198,
6738,
308,
34518,
13,
298,
871,
1330,
29970,
10962,
13247,
11,
19850,
198,
6738,
19720,
1330,
4377,
11,
360,
713
] | 3.916667 | 36 |
from flask import Flask, app
from flask_restplus import Api, Resource
from server.instance import server
app, api = server.app, server.api
books_db = [
{'id':0,'title':'War and Peacce'},
{'id':1,'title':'Clean Code'}
]
@api.route('/books') | [
6738,
42903,
1330,
46947,
11,
598,
198,
6738,
42903,
62,
2118,
9541,
1330,
5949,
72,
11,
20857,
198,
6738,
4382,
13,
39098,
1330,
4382,
198,
198,
1324,
11,
40391,
796,
4382,
13,
1324,
11,
4382,
13,
15042,
198,
12106,
62,
9945,
796,
685,
198,
220,
220,
220,
1391,
6,
312,
10354,
15,
4032,
7839,
10354,
6,
13195,
290,
2631,
330,
344,
6,
5512,
198,
220,
220,
220,
1391,
6,
312,
10354,
16,
4032,
7839,
10354,
6,
32657,
6127,
6,
92,
198,
60,
198,
198,
31,
15042,
13,
38629,
10786,
14,
12106,
11537
] | 2.706522 | 92 |
# -*- coding: utf-8 -*-
# Copyright (c) 2020, TZCODE SRL and contributors
# For license information, please see license.txt
from __future__ import unicode_literals
import frappe
from frappe.model.document import Document
import requests
import json
import traceback
from tzdealer.hook.item import cast_to_post, cast_image
from frappe.utils import nowdate
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
15069,
357,
66,
8,
12131,
11,
309,
57,
34,
16820,
311,
7836,
290,
20420,
198,
2,
1114,
5964,
1321,
11,
3387,
766,
5964,
13,
14116,
198,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
11748,
5306,
27768,
198,
6738,
5306,
27768,
13,
19849,
13,
22897,
1330,
16854,
198,
11748,
7007,
220,
198,
11748,
33918,
198,
11748,
12854,
1891,
198,
6738,
256,
89,
31769,
263,
13,
25480,
13,
9186,
1330,
3350,
62,
1462,
62,
7353,
11,
3350,
62,
9060,
198,
6738,
5306,
27768,
13,
26791,
1330,
783,
4475,
628
] | 3.345794 | 107 |
km = float(input('De quantos kilómetros será a viagem? '))
if km <= 200:
print('A viagem custará {:.2f}€ (0.1€/km)'.format(km * 0.1))
else:
print('A visgem custará {:.2f} € (0.09€/km)'.format(km * 0.09))
| [
13276,
796,
12178,
7,
15414,
10786,
5005,
5554,
418,
8769,
10205,
4164,
4951,
1055,
6557,
257,
25357,
363,
368,
30,
705,
4008,
198,
361,
10571,
19841,
939,
25,
198,
220,
220,
220,
3601,
10786,
32,
25357,
363,
368,
9378,
283,
6557,
46110,
13,
17,
69,
92,
26391,
357,
15,
13,
16,
26391,
14,
13276,
8,
4458,
18982,
7,
13276,
1635,
657,
13,
16,
4008,
198,
17772,
25,
198,
220,
220,
220,
3601,
10786,
32,
1490,
24090,
9378,
283,
6557,
46110,
13,
17,
69,
92,
10432,
357,
15,
13,
2931,
26391,
14,
13276,
8,
4458,
18982,
7,
13276,
1635,
657,
13,
2931,
4008,
198
] | 2.058252 | 103 |
from django.template.loader import render_to_string
from push_notifications.models import APNSDevice, GCMDevice
from structlog import get_logger
from lego.apps.feeds.models import NotificationFeed
log = get_logger()
| [
6738,
42625,
14208,
13,
28243,
13,
29356,
1330,
8543,
62,
1462,
62,
8841,
198,
198,
6738,
4574,
62,
1662,
6637,
13,
27530,
1330,
3486,
8035,
24728,
11,
20145,
12740,
1990,
501,
198,
6738,
2878,
6404,
1330,
651,
62,
6404,
1362,
198,
198,
6738,
1232,
78,
13,
18211,
13,
12363,
82,
13,
27530,
1330,
42808,
18332,
198,
198,
6404,
796,
651,
62,
6404,
1362,
3419,
628
] | 3.384615 | 65 |
"""Users views"""
# Django
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.decorators import login_required
from django.shortcuts import render, redirect, HttpResponse
# Exceptions
from django.db.utils import IntegrityError
# Models
from django.contrib.auth.models import User
from .models import Profile
# Create your views here.
def loging_view(request):
"""Login view"""
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
user = authenticate(request, username=username, password=password)
if user:
login(request, user)
return redirect('posts:index')
else:
return render(request, 'users/login.html', {'error': 'Inavalid username and password'})
return render(request, 'users/login.html')
def signup(request):
"""Sign up users"""
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
password_confirmation = request.POST['password_confirmation']
if password != password_confirmation:
return render(request, 'users/signup.html', {'error': 'Password confirmation does not mactch'})
try:
user = User.objects.create_user(username=username, password=password)
except IntegrityError:
return render(request, 'users/signup.html', {'error': 'Username is alredy taken.'})
user.first_name = request.POST['first_name']
user.last_name = request.POST['last_name']
user.email = request.POST['email']
profile = Profile(user=user)
profile.save()
return redirect('login')
return render(request, 'users/signup.html')
# Create your views here.
@login_required
def logout_view(request):
"""Logout user
"""
logout(request)
return redirect('login')
#@login_required
| [
37811,
14490,
5009,
37811,
198,
2,
37770,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
8323,
5344,
11,
17594,
11,
2604,
448,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
12501,
273,
2024,
1330,
17594,
62,
35827,
198,
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
11,
18941,
11,
367,
29281,
31077,
198,
198,
2,
1475,
11755,
198,
6738,
42625,
14208,
13,
9945,
13,
26791,
1330,
39348,
12331,
198,
198,
2,
32329,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
764,
27530,
1330,
13118,
628,
198,
2,
13610,
534,
5009,
994,
13,
198,
4299,
2604,
278,
62,
1177,
7,
25927,
2599,
198,
220,
220,
220,
37227,
47790,
1570,
37811,
198,
220,
220,
220,
611,
2581,
13,
24396,
6624,
705,
32782,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
796,
2581,
13,
32782,
17816,
29460,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
9206,
796,
2581,
13,
32782,
17816,
28712,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
8323,
5344,
7,
25927,
11,
20579,
28,
29460,
11,
9206,
28,
28712,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2836,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17594,
7,
25927,
11,
2836,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18941,
10786,
24875,
25,
9630,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
18417,
14,
38235,
13,
6494,
3256,
1391,
6,
18224,
10354,
705,
818,
9226,
312,
20579,
290,
9206,
6,
30072,
198,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
18417,
14,
38235,
13,
6494,
11537,
198,
198,
4299,
1051,
929,
7,
25927,
2599,
198,
220,
220,
220,
37227,
11712,
510,
2985,
37811,
198,
220,
220,
220,
611,
2581,
13,
24396,
6624,
705,
32782,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
796,
2581,
13,
32782,
17816,
29460,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
9206,
796,
2581,
13,
32782,
17816,
28712,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
9206,
62,
10414,
36241,
796,
2581,
13,
32782,
17816,
28712,
62,
10414,
36241,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9206,
14512,
9206,
62,
10414,
36241,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
18417,
14,
12683,
929,
13,
6494,
3256,
1391,
6,
18224,
10354,
705,
35215,
12641,
857,
407,
285,
529,
354,
6,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
11787,
13,
48205,
13,
17953,
62,
7220,
7,
29460,
28,
29460,
11,
9206,
28,
28712,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
39348,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
18417,
14,
12683,
929,
13,
6494,
3256,
1391,
6,
18224,
10354,
705,
5842,
13292,
318,
435,
445,
88,
2077,
2637,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
13,
11085,
62,
3672,
796,
2581,
13,
32782,
17816,
11085,
62,
3672,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
13,
12957,
62,
3672,
796,
2581,
13,
32782,
17816,
12957,
62,
3672,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
13,
12888,
796,
2581,
13,
32782,
17816,
12888,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
7034,
796,
13118,
7,
7220,
28,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7034,
13,
21928,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18941,
10786,
38235,
11537,
198,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
18417,
14,
12683,
929,
13,
6494,
11537,
198,
198,
2,
13610,
534,
5009,
994,
13,
198,
31,
38235,
62,
35827,
198,
4299,
2604,
448,
62,
1177,
7,
25927,
2599,
198,
220,
220,
220,
37227,
11187,
448,
2836,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2604,
448,
7,
25927,
8,
198,
220,
220,
220,
1441,
18941,
10786,
38235,
11537,
198,
198,
2,
31,
38235,
62,
35827,
628
] | 2.656757 | 740 |
from cincan.frontend import ToolImage
| [
6738,
269,
1939,
272,
13,
8534,
437,
1330,
16984,
5159,
628
] | 3.545455 | 11 |
"""The helper functions for the visuals are defined here.
These functions provide textures or modify pygame Surfaces or Rects in ways which
are convenient to use for multiple scenes."""
import pygame
# This dict contains references to all textures which are loaded with get_texture(),
# and functions as a cache. With this technique, textures are not loaded multiple
# times, but are also not all loaded at startup, making startup faster.
loaded_textures = {}
standard_font = None
def get_texture(name: str):
"""Returns a texture from loaded_textures if it exists, else it loads the texture from memory.
The file format of the texture is assumed to be png."""
try:
return loaded_textures[name]
except KeyError:
loaded_textures[name] = pygame.image.load(f"textures\\{name}.png").convert_alpha()
return loaded_textures[name]
def render_text(text: str):
"""Returns a surface containing the rendered text with standard settings
and the standard pokémon font."""
global standard_font
if not standard_font:
# The font does not scale; the size is therefore arbitrary
standard_font = pygame.font.Font("PKMNRSEU.FON", 1)
return standard_font.render(text, False, (0,0,0))
| [
37811,
464,
31904,
5499,
329,
262,
27329,
389,
5447,
994,
13,
198,
4711,
5499,
2148,
20028,
393,
13096,
12972,
6057,
4198,
32186,
393,
48599,
82,
287,
2842,
543,
198,
533,
11282,
284,
779,
329,
3294,
8188,
526,
15931,
198,
11748,
12972,
6057,
198,
198,
2,
770,
8633,
4909,
10288,
284,
477,
20028,
543,
389,
9639,
351,
651,
62,
41293,
22784,
198,
2,
290,
5499,
355,
257,
12940,
13,
2080,
428,
8173,
11,
20028,
389,
407,
9639,
3294,
198,
2,
1661,
11,
475,
389,
635,
407,
477,
9639,
379,
13693,
11,
1642,
13693,
5443,
13,
198,
14578,
62,
5239,
942,
796,
23884,
198,
20307,
62,
10331,
796,
6045,
628,
198,
4299,
651,
62,
41293,
7,
3672,
25,
965,
2599,
198,
220,
220,
220,
37227,
35561,
257,
11743,
422,
9639,
62,
5239,
942,
611,
340,
7160,
11,
2073,
340,
15989,
262,
11743,
422,
4088,
13,
198,
220,
220,
220,
383,
2393,
5794,
286,
262,
11743,
318,
9672,
284,
307,
279,
782,
526,
15931,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9639,
62,
5239,
942,
58,
3672,
60,
198,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9639,
62,
5239,
942,
58,
3672,
60,
796,
12972,
6057,
13,
9060,
13,
2220,
7,
69,
1,
5239,
942,
6852,
90,
3672,
27422,
11134,
11074,
1102,
1851,
62,
26591,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9639,
62,
5239,
942,
58,
3672,
60,
628,
198,
198,
4299,
8543,
62,
5239,
7,
5239,
25,
965,
2599,
198,
220,
220,
220,
37227,
35561,
257,
4417,
7268,
262,
15111,
2420,
351,
3210,
6460,
198,
220,
220,
220,
290,
262,
3210,
279,
35861,
2144,
10369,
526,
15931,
198,
220,
220,
220,
3298,
3210,
62,
10331,
198,
220,
220,
220,
611,
407,
3210,
62,
10331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
10369,
857,
407,
5046,
26,
262,
2546,
318,
4361,
14977,
198,
220,
220,
220,
220,
220,
220,
220,
3210,
62,
10331,
796,
12972,
6057,
13,
10331,
13,
23252,
7203,
40492,
44,
24723,
5188,
52,
13,
37,
1340,
1600,
352,
8,
198,
220,
220,
220,
1441,
3210,
62,
10331,
13,
13287,
7,
5239,
11,
10352,
11,
357,
15,
11,
15,
11,
15,
4008,
628
] | 3.31117 | 376 |
import torch
from torch import nn
from torch.nn import functional as F
| [
11748,
28034,
198,
6738,
28034,
1330,
299,
77,
198,
6738,
28034,
13,
20471,
1330,
10345,
355,
376,
198
] | 3.944444 | 18 |
from django.db import models
from django.db.models import Q
class ToggleableModelManager(models.Manager):
"""
For :class:`certego_saas.ext.models.ToggleableModel`.
"""
class AppSpecificModelManager(models.Manager):
"""
For :class:`certego_saas.ext.models.AppSpecificModel`.
"""
| [
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
1330,
1195,
628,
198,
4871,
34098,
540,
17633,
13511,
7,
27530,
13,
13511,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1114,
1058,
4871,
25,
63,
2189,
660,
2188,
62,
11400,
292,
13,
2302,
13,
27530,
13,
51,
20258,
540,
17633,
44646,
198,
220,
220,
220,
37227,
628,
198,
198,
4871,
2034,
32419,
17633,
13511,
7,
27530,
13,
13511,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1114,
1058,
4871,
25,
63,
2189,
660,
2188,
62,
11400,
292,
13,
2302,
13,
27530,
13,
4677,
32419,
17633,
44646,
198,
220,
220,
220,
37227,
198
] | 2.741071 | 112 |
from setuptools import setup
setup(name='focus',
entry_points='''[console_scripts]
focus=focus.cli:main''')
| [
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
40406,
7,
3672,
11639,
37635,
3256,
198,
220,
220,
220,
220,
220,
5726,
62,
13033,
28,
7061,
6,
58,
41947,
62,
46521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2962,
28,
37635,
13,
44506,
25,
12417,
7061,
11537,
198
] | 2.174603 | 63 |
'''
program: Simple Message Encrypter
author : akr
github : a-k-r-a-k-r
'''
#import necessary modules
import tkinter
import pyperclip
from tkinter import DISABLED,messagebox,BOTH,END
#Defining root window
root=tkinter.Tk()
root.title("Message Encrypter")
root.iconbitmap("resources/icons/encrypter.ico")
#mostly used characters
expected_char="qazwsxedcrfvtgbyhnujmikolp!@#$%^&*()1234567890POIUYTREWQASDFGHJKLMNBVCXZ~`<,>.?/:;'[{]}+=_-| "
expected_char+='"'
#colors
button_frame_color="grey"
button_color="green"
output_bg="black"
#Defining functions
#Defining frames
input_frame=tkinter.Frame(root)
button_frame=tkinter.Frame(root,bg=button_frame_color)
input_frame.pack()
button_frame.pack(fill=BOTH,expand=True)
#Defining widgets for frames
input_data=tkinter.Entry(input_frame,width=80)
output_data=tkinter.Label(input_frame,text="Your output will appear here",bg=output_bg,fg=button_color,width=50,wraplength=200)
copy_button=tkinter.Button(input_frame,text="Copy",bg=button_color,command=copy_data)
passwd_label=tkinter.Button(button_frame,text="Password",bg=button_frame_color,borderwidth=0)
passwd_data=tkinter.Entry(button_frame)
encrypt_button=tkinter.Button(button_frame,text="Encrypt",bg=button_color,command=encrypt)
decrypt_button=tkinter.Button(button_frame,text="Decrypt",bg=button_color,command=decrypt)
input_data.grid(row=0,column=0,columnspan=2,padx=10,pady=10,ipady=50)
output_data.grid(row=1,column=0,padx=10,pady=10,ipady=40,sticky="we")
copy_button.grid(row=1,column=1,pady=10,ipady=10,ipadx=20,padx=(0,10))
passwd_label.grid(row=0,column=0,pady=10,padx=(100,0),ipadx=20,ipady=10)
passwd_data.grid(row=0,column=1,pady=10,padx=(0,10),ipadx=50,ipady=10)
encrypt_button.grid(row=1,column=0,pady=10,padx=(80,0),ipadx=40,ipady=10)
decrypt_button.grid(row=1,column=1,pady=20,ipadx=40,ipady=10)
root.mainloop() | [
7061,
6,
198,
220,
220,
220,
1430,
25,
17427,
16000,
14711,
563,
42104,
198,
220,
220,
220,
1772,
1058,
257,
38584,
198,
220,
220,
220,
33084,
1058,
257,
12,
74,
12,
81,
12,
64,
12,
74,
12,
81,
198,
7061,
6,
198,
198,
2,
11748,
3306,
13103,
198,
11748,
256,
74,
3849,
198,
11748,
12972,
525,
15036,
198,
6738,
256,
74,
3849,
1330,
13954,
6242,
30465,
11,
20500,
3524,
11,
33,
26946,
11,
10619,
628,
198,
2,
7469,
3191,
6808,
4324,
198,
15763,
28,
30488,
3849,
13,
51,
74,
3419,
198,
15763,
13,
7839,
7203,
12837,
14711,
563,
42104,
4943,
198,
15763,
13,
4749,
2545,
8899,
7203,
37540,
14,
34280,
14,
12685,
563,
42104,
13,
3713,
4943,
628,
198,
2,
29471,
973,
3435,
198,
40319,
62,
10641,
2625,
80,
1031,
18504,
87,
276,
6098,
69,
85,
25297,
1525,
21116,
23577,
76,
1134,
349,
79,
0,
31,
29953,
4,
61,
5,
9,
3419,
10163,
2231,
30924,
3829,
16402,
44958,
56,
51,
2200,
54,
48,
1921,
8068,
17511,
41,
42,
31288,
32819,
15922,
55,
57,
93,
63,
27,
11,
28401,
30,
14,
25,
26,
6,
58,
90,
48999,
47932,
62,
22831,
366,
198,
40319,
62,
10641,
10,
11639,
30543,
628,
198,
2,
4033,
669,
198,
16539,
62,
14535,
62,
8043,
2625,
49502,
1,
198,
16539,
62,
8043,
2625,
14809,
1,
198,
22915,
62,
35904,
2625,
13424,
1,
628,
198,
2,
7469,
3191,
5499,
628,
628,
198,
2,
7469,
3191,
13431,
198,
15414,
62,
14535,
28,
30488,
3849,
13,
19778,
7,
15763,
8,
198,
16539,
62,
14535,
28,
30488,
3849,
13,
19778,
7,
15763,
11,
35904,
28,
16539,
62,
14535,
62,
8043,
8,
198,
15414,
62,
14535,
13,
8002,
3419,
198,
16539,
62,
14535,
13,
8002,
7,
20797,
28,
33,
26946,
11,
11201,
392,
28,
17821,
8,
198,
198,
2,
7469,
3191,
40803,
329,
13431,
198,
15414,
62,
7890,
28,
30488,
3849,
13,
30150,
7,
15414,
62,
14535,
11,
10394,
28,
1795,
8,
198,
22915,
62,
7890,
28,
30488,
3849,
13,
33986,
7,
15414,
62,
14535,
11,
5239,
2625,
7120,
5072,
481,
1656,
994,
1600,
35904,
28,
22915,
62,
35904,
11,
40616,
28,
16539,
62,
8043,
11,
10394,
28,
1120,
11,
29988,
489,
3286,
28,
2167,
8,
198,
30073,
62,
16539,
28,
30488,
3849,
13,
21864,
7,
15414,
62,
14535,
11,
5239,
2625,
29881,
1600,
35904,
28,
16539,
62,
8043,
11,
21812,
28,
30073,
62,
7890,
8,
198,
6603,
16993,
62,
18242,
28,
30488,
3849,
13,
21864,
7,
16539,
62,
14535,
11,
5239,
2625,
35215,
1600,
35904,
28,
16539,
62,
14535,
62,
8043,
11,
20192,
10394,
28,
15,
8,
198,
6603,
16993,
62,
7890,
28,
30488,
3849,
13,
30150,
7,
16539,
62,
14535,
8,
198,
12685,
6012,
62,
16539,
28,
30488,
3849,
13,
21864,
7,
16539,
62,
14535,
11,
5239,
2625,
27195,
6012,
1600,
35904,
28,
16539,
62,
8043,
11,
21812,
28,
12685,
6012,
8,
198,
12501,
6012,
62,
16539,
28,
30488,
3849,
13,
21864,
7,
16539,
62,
14535,
11,
5239,
2625,
10707,
6012,
1600,
35904,
28,
16539,
62,
8043,
11,
21812,
28,
12501,
6012,
8,
198,
198,
15414,
62,
7890,
13,
25928,
7,
808,
28,
15,
11,
28665,
28,
15,
11,
28665,
12626,
28,
17,
11,
15636,
87,
28,
940,
11,
79,
4597,
28,
940,
11,
541,
4597,
28,
1120,
8,
198,
22915,
62,
7890,
13,
25928,
7,
808,
28,
16,
11,
28665,
28,
15,
11,
15636,
87,
28,
940,
11,
79,
4597,
28,
940,
11,
541,
4597,
28,
1821,
11,
13915,
88,
2625,
732,
4943,
198,
30073,
62,
16539,
13,
25928,
7,
808,
28,
16,
11,
28665,
28,
16,
11,
79,
4597,
28,
940,
11,
541,
4597,
28,
940,
11,
541,
324,
87,
28,
1238,
11,
15636,
87,
16193,
15,
11,
940,
4008,
198,
6603,
16993,
62,
18242,
13,
25928,
7,
808,
28,
15,
11,
28665,
28,
15,
11,
79,
4597,
28,
940,
11,
15636,
87,
16193,
3064,
11,
15,
828,
541,
324,
87,
28,
1238,
11,
541,
4597,
28,
940,
8,
198,
6603,
16993,
62,
7890,
13,
25928,
7,
808,
28,
15,
11,
28665,
28,
16,
11,
79,
4597,
28,
940,
11,
15636,
87,
16193,
15,
11,
940,
828,
541,
324,
87,
28,
1120,
11,
541,
4597,
28,
940,
8,
198,
12685,
6012,
62,
16539,
13,
25928,
7,
808,
28,
16,
11,
28665,
28,
15,
11,
79,
4597,
28,
940,
11,
15636,
87,
16193,
1795,
11,
15,
828,
541,
324,
87,
28,
1821,
11,
541,
4597,
28,
940,
8,
198,
12501,
6012,
62,
16539,
13,
25928,
7,
808,
28,
16,
11,
28665,
28,
16,
11,
79,
4597,
28,
1238,
11,
541,
324,
87,
28,
1821,
11,
541,
4597,
28,
940,
8,
628,
198,
15763,
13,
12417,
26268,
3419
] | 2.415365 | 768 |
import pandas as pd
import numpy as np
import os
import pickle
import sys
sys.path.append('..')
from sklearn.manifold import TSNE
from sklearn.cluster import KMeans
import seaborn as sns
import matplotlib.pyplot as plt
from pathlib import Path
import logging
import configparser
import argparse
import ui_utils
import nlp_tools
arg_parser = argparse.ArgumentParser(description='Run sampling based on config file')
arg_parser.add_argument('--config_path', metavar='config_path', default='./al_1_sampling.cfg',
type=str, help='Path to the sampling config file', required=False)
args = arg_parser.parse_args()
# loading config
config = configparser.ConfigParser(interpolation=configparser.ExtendedInterpolation())
config.read(args.config_path)
ROUND_ID = int(config.get('data', 'ROUND_ID'))
APPLY_FILE = config.get('data', 'APPLY_FILE')
PROJECT_PATH = config.get('data', 'PROJECT_PATH')
SAMPLE_PATH = config.get('data', 'SAMPLE_PATH')
Path(SAMPLE_PATH).mkdir(parents=True, exist_ok=True)
# if ROUND_ID is 1, the raw APPLY_FILE can be used for sampling
if ROUND_ID == 1:
SCORED_FILE = APPLY_FILE
else:
SCORED_FILE = config.get('data', 'SCORED_FILE')
SAMPLE_SIZE = int(config.get('sampling', 'SAMPLE_SIZE'))
SAMPLING_METHOD = config.get('sampling', 'SAMPLING_METHOD')
# initialize logger
root_logger = logging.getLogger()
formatter = logging.Formatter('%(asctime)s: %(levelname)s:: %(message)s')
logfile = f"{SAMPLE_PATH.rstrip('/')}/sampling_logs.log"
file_handler = logging.FileHandler(logfile, mode='a')
file_handler.setFormatter(formatter)
root_logger.addHandler(file_handler)
console_handler = logging.StreamHandler()
console_handler.setFormatter(formatter)
root_logger.addHandler(console_handler)
root_logger.setLevel(logging.INFO)
print = root_logger.info
print(">>> Reading scored dataframe for sampling purpose...")
scores_df = pd.read_json(SCORED_FILE, orient='records')
# clutering based on scores
if ROUND_ID > 1:
if SAMPLING_METHOD == 'clustering':
print("Creating clusters based on tag scores...")
cluster_tsne_viz = f"{SAMPLE_PATH}/clustering_tsne.png"
scores_df, kmeans_model = ui_utils.kmeans_from_proba(scores_df, cluster_tsne_viz)
print(">>> Saving trained KMeans model")
with open(f'{SAMPLE_PATH}/kmeans.pickle', 'wb') as file:
pickle.dump(kmeans_model, file)
# remove tagged records from population
print(f">>> This is Round {ROUND_ID}, some records have been tagged already...")
print(">>> Removing tagged records to avoid doubling efforts...")
prev_input_file = f"{PROJECT_PATH}/round_{ROUND_ID - 1}/input/input_file.json"
prev_train_df = pd.read_json(prev_input_file, orient='records')
tagged_ids = prev_train_df['UID'].values
scores_df = scores_df.loc[~np.isin(scores_df['UID'], tagged_ids), :].reset_index(drop=True)
# sampling based on param
if SAMPLING_METHOD == 'clustering':
print(">>> Generating samples by cluster")
sample_df = ui_utils.sample_by_cluster(scores_df, SAMPLE_SIZE)
elif SAMPLING_METHOD == 'random':
print(">>> Generating samples randomly")
sample_df = ui_utils.sample_by_random(scores_df, SAMPLE_SIZE)
else:
print(">>> First round, can only apply random sampling...")
sample_df = ui_utils.sample_by_random(scores_df, SAMPLE_SIZE)
ui_utils.df_to_json_form(sample_df, tag_col='Tags', ui_dir=SAMPLE_PATH,
ui_filename='/text_tags.json')
with open(f"{SAMPLE_PATH}/sampling_record.cfg", 'w') as file:
config.write(file) | [
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28686,
198,
11748,
2298,
293,
198,
11748,
25064,
198,
17597,
13,
6978,
13,
33295,
10786,
492,
11537,
198,
198,
6738,
1341,
35720,
13,
805,
361,
727,
1330,
26136,
12161,
198,
6738,
1341,
35720,
13,
565,
5819,
1330,
509,
5308,
504,
198,
11748,
384,
397,
1211,
355,
3013,
82,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
198,
6738,
3108,
8019,
1330,
10644,
198,
11748,
18931,
198,
11748,
4566,
48610,
198,
11748,
1822,
29572,
198,
198,
11748,
334,
72,
62,
26791,
198,
11748,
299,
34431,
62,
31391,
198,
198,
853,
62,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
10987,
19232,
1912,
319,
4566,
2393,
11537,
198,
853,
62,
48610,
13,
2860,
62,
49140,
10786,
438,
11250,
62,
6978,
3256,
1138,
615,
283,
11639,
11250,
62,
6978,
3256,
4277,
28,
4458,
14,
282,
62,
16,
62,
37687,
11347,
13,
37581,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
1037,
11639,
15235,
284,
262,
19232,
4566,
2393,
3256,
2672,
28,
25101,
8,
198,
22046,
796,
1822,
62,
48610,
13,
29572,
62,
22046,
3419,
628,
198,
2,
11046,
4566,
198,
11250,
796,
4566,
48610,
13,
16934,
46677,
7,
3849,
16104,
341,
28,
11250,
48610,
13,
11627,
1631,
9492,
16104,
341,
28955,
198,
11250,
13,
961,
7,
22046,
13,
11250,
62,
6978,
8,
198,
198,
49,
15919,
62,
2389,
796,
493,
7,
11250,
13,
1136,
10786,
7890,
3256,
705,
49,
15919,
62,
2389,
6,
4008,
198,
2969,
6489,
56,
62,
25664,
796,
4566,
13,
1136,
10786,
7890,
3256,
705,
2969,
6489,
56,
62,
25664,
11537,
198,
31190,
23680,
62,
34219,
796,
4566,
13,
1136,
10786,
7890,
3256,
705,
31190,
23680,
62,
34219,
11537,
198,
198,
49302,
16437,
62,
34219,
796,
4566,
13,
1136,
10786,
7890,
3256,
705,
49302,
16437,
62,
34219,
11537,
198,
15235,
7,
49302,
16437,
62,
34219,
737,
28015,
15908,
7,
23743,
28,
17821,
11,
2152,
62,
482,
28,
17821,
8,
198,
2,
611,
371,
15919,
62,
2389,
318,
352,
11,
262,
8246,
3486,
6489,
56,
62,
25664,
460,
307,
973,
329,
19232,
198,
361,
371,
15919,
62,
2389,
6624,
352,
25,
198,
220,
220,
220,
6374,
32023,
62,
25664,
796,
3486,
6489,
56,
62,
25664,
198,
17772,
25,
198,
220,
220,
220,
6374,
32023,
62,
25664,
796,
4566,
13,
1136,
10786,
7890,
3256,
705,
6173,
32023,
62,
25664,
11537,
628,
198,
49302,
16437,
62,
33489,
796,
493,
7,
11250,
13,
1136,
10786,
37687,
11347,
3256,
705,
49302,
16437,
62,
33489,
6,
4008,
198,
49302,
6489,
2751,
62,
49273,
796,
4566,
13,
1136,
10786,
37687,
11347,
3256,
705,
49302,
6489,
2751,
62,
49273,
11537,
198,
198,
2,
41216,
49706,
198,
15763,
62,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
3419,
198,
687,
1436,
796,
18931,
13,
8479,
1436,
10786,
4,
7,
292,
310,
524,
8,
82,
25,
4064,
7,
5715,
3672,
8,
82,
3712,
4064,
7,
20500,
8,
82,
11537,
198,
198,
6404,
7753,
796,
277,
1,
90,
49302,
16437,
62,
34219,
13,
81,
36311,
10786,
14,
11537,
92,
14,
37687,
11347,
62,
6404,
82,
13,
6404,
1,
198,
7753,
62,
30281,
796,
18931,
13,
8979,
25060,
7,
6404,
7753,
11,
4235,
11639,
64,
11537,
198,
7753,
62,
30281,
13,
2617,
8479,
1436,
7,
687,
1436,
8,
198,
15763,
62,
6404,
1362,
13,
2860,
25060,
7,
7753,
62,
30281,
8,
198,
198,
41947,
62,
30281,
796,
18931,
13,
12124,
25060,
3419,
198,
41947,
62,
30281,
13,
2617,
8479,
1436,
7,
687,
1436,
8,
198,
15763,
62,
6404,
1362,
13,
2860,
25060,
7,
41947,
62,
30281,
8,
198,
198,
15763,
62,
6404,
1362,
13,
2617,
4971,
7,
6404,
2667,
13,
10778,
8,
198,
4798,
796,
6808,
62,
6404,
1362,
13,
10951,
198,
198,
4798,
7203,
33409,
11725,
7781,
1366,
14535,
329,
19232,
4007,
9313,
8,
198,
1416,
2850,
62,
7568,
796,
279,
67,
13,
961,
62,
17752,
7,
6173,
32023,
62,
25664,
11,
11367,
11639,
8344,
3669,
11537,
198,
198,
2,
32170,
1586,
1912,
319,
8198,
198,
361,
371,
15919,
62,
2389,
1875,
352,
25,
198,
220,
220,
220,
611,
28844,
6489,
2751,
62,
49273,
6624,
705,
565,
436,
1586,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
32071,
23163,
1912,
319,
7621,
8198,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13946,
62,
912,
710,
62,
85,
528,
796,
277,
1,
90,
49302,
16437,
62,
34219,
92,
14,
565,
436,
1586,
62,
912,
710,
13,
11134,
1,
198,
220,
220,
220,
220,
220,
220,
220,
8198,
62,
7568,
11,
479,
1326,
504,
62,
19849,
796,
334,
72,
62,
26791,
13,
74,
1326,
504,
62,
6738,
62,
1676,
7012,
7,
1416,
2850,
62,
7568,
11,
13946,
62,
912,
710,
62,
85,
528,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
33409,
34689,
8776,
509,
5308,
504,
2746,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
69,
6,
90,
49302,
16437,
62,
34219,
92,
14,
74,
1326,
504,
13,
27729,
293,
3256,
705,
39346,
11537,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2298,
293,
13,
39455,
7,
74,
1326,
504,
62,
19849,
11,
2393,
8,
628,
220,
220,
220,
1303,
4781,
30509,
4406,
422,
3265,
198,
220,
220,
220,
3601,
7,
69,
1,
33409,
770,
318,
10485,
1391,
49,
15919,
62,
2389,
5512,
617,
4406,
423,
587,
30509,
1541,
9313,
8,
198,
220,
220,
220,
3601,
7203,
33409,
3982,
5165,
30509,
4406,
284,
3368,
26862,
4040,
9313,
8,
198,
220,
220,
220,
8654,
62,
15414,
62,
7753,
796,
277,
1,
90,
31190,
23680,
62,
34219,
92,
14,
744,
23330,
49,
15919,
62,
2389,
532,
352,
92,
14,
15414,
14,
15414,
62,
7753,
13,
17752,
1,
198,
220,
220,
220,
8654,
62,
27432,
62,
7568,
796,
279,
67,
13,
961,
62,
17752,
7,
47050,
62,
15414,
62,
7753,
11,
11367,
11639,
8344,
3669,
11537,
198,
220,
220,
220,
30509,
62,
2340,
796,
8654,
62,
27432,
62,
7568,
17816,
27586,
6,
4083,
27160,
198,
220,
220,
220,
8198,
62,
7568,
796,
8198,
62,
7568,
13,
17946,
58,
93,
37659,
13,
45763,
7,
1416,
2850,
62,
7568,
17816,
27586,
6,
4357,
30509,
62,
2340,
828,
1058,
4083,
42503,
62,
9630,
7,
14781,
28,
17821,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
19232,
1912,
319,
5772,
198,
220,
220,
220,
611,
28844,
6489,
2751,
62,
49273,
6624,
705,
565,
436,
1586,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
33409,
2980,
803,
8405,
416,
13946,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
6291,
62,
7568,
796,
334,
72,
62,
26791,
13,
39873,
62,
1525,
62,
565,
5819,
7,
1416,
2850,
62,
7568,
11,
28844,
16437,
62,
33489,
8,
198,
220,
220,
220,
1288,
361,
28844,
6489,
2751,
62,
49273,
6624,
705,
25120,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
33409,
2980,
803,
8405,
15456,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
6291,
62,
7568,
796,
334,
72,
62,
26791,
13,
39873,
62,
1525,
62,
25120,
7,
1416,
2850,
62,
7568,
11,
28844,
16437,
62,
33489,
8,
198,
17772,
25,
198,
220,
220,
220,
3601,
7203,
33409,
3274,
2835,
11,
460,
691,
4174,
4738,
19232,
9313,
8,
198,
220,
220,
220,
6291,
62,
7568,
796,
334,
72,
62,
26791,
13,
39873,
62,
1525,
62,
25120,
7,
1416,
2850,
62,
7568,
11,
28844,
16437,
62,
33489,
8,
198,
198,
9019,
62,
26791,
13,
7568,
62,
1462,
62,
17752,
62,
687,
7,
39873,
62,
7568,
11,
7621,
62,
4033,
11639,
36142,
3256,
334,
72,
62,
15908,
28,
49302,
16437,
62,
34219,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
72,
62,
34345,
11639,
14,
5239,
62,
31499,
13,
17752,
11537,
198,
198,
4480,
1280,
7,
69,
1,
90,
49302,
16437,
62,
34219,
92,
14,
37687,
11347,
62,
22105,
13,
37581,
1600,
705,
86,
11537,
355,
2393,
25,
198,
220,
220,
220,
4566,
13,
13564,
7,
7753,
8
] | 2.633678 | 1,354 |
#!/usr/bin/env python3
#
##################################################################################
#
# Title : PyDBI.py
# Author : Thomas Cram, [email protected]
# Date : 02/06/2015
# Purpose : Python module for MySQL database functions
#
# Work File : $HOME/lib/python/PyDBI.py*
# Test File : $HOME/lib/python/PyDBI_test.py*
# SVN File : $HeadURL: https://subversion.ucar.edu/svndss/tcram/python/PyDBI.py $
#
##################################################################################
import sys, socket, re, platform
hostname = socket.gethostname()
path1 = "/glade/u/home/rdadata/lib/python"
path2 = "/glade/u/home/tcram/lib/python"
# if (path1 not in sys.path):
# sys.path.append(path1)
if (path2 not in sys.path):
sys.path.append(path2)
# Link to local DECS mysql package if running on the DAV systems
if ( (hostname.find('casper') != -1 or hostname.find('yslogin') != -1 or hostname.find('ysm') != -1) ):
mysql_path = "/gpfs/u/home/rdadata/lib/python/site-packages"
if (mysql_path not in sys.path):
sys.path.append(mysql_path)
else:
pass
import mysql.connector
from mysql.connector import errorcode
from dbconfig import dbconfig
#=========================================================================================
# Function dbconnect: Create database connection
#=========================================================================================
# Function pyclose: Close database connection
#=========================================================================================
# Function myget: retrieve one record from tablename
#
# tablename: DB table name
# fields : comma-delimited list of one or more field names
# condition: query condition for WHERE clause
#
# Returns: a dictionary of key/value pairs from the query result
# set (dict is empty if no results)
#=========================================================================================
# Function mymget: retrieve one or more records from tablename
#
# tablename: DB table name
# fields : comma-delimited list of one or more field names
# condition: query condition for WHERE clause
#
# Returns: a list of dictionaries containing key/value pairs from the query result
# set (dict is empty if no results)
#=========================================================================================
# Function myadd: insert one record into tablename
#
# tablename: add one record for one table name for each call
# record: dictionary with keys as field names and
# values as field values
#
#=========================================================================================
# Function mymadd: insert multiple records into tablename
#
# uses the method cursor.executemany()
#def mymadd(tablename, records):
#=========================================================================================
# Function myupdt: update one record in tablename
#
# tablename: add one record for one table name for each call
# record: dictionary with keys as field names and
# values as field values
#
#=========================================================================================
#def mydel():
#=========================================================================================
# Function prepare_insert: Prepare a SQL insert statement for pyadd()
#def prepare_insert(tablename, record):
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
198,
29113,
29113,
14468,
2235,
198,
2,
198,
2,
220,
220,
220,
220,
11851,
1058,
9485,
35,
3483,
13,
9078,
198,
2,
220,
220,
220,
6434,
1058,
5658,
327,
859,
11,
37096,
859,
31,
1229,
283,
13,
15532,
198,
2,
220,
220,
220,
220,
220,
7536,
1058,
7816,
14,
3312,
14,
4626,
198,
2,
220,
220,
32039,
1058,
11361,
8265,
329,
33476,
6831,
5499,
198,
2,
198,
2,
5521,
9220,
1058,
720,
39069,
14,
8019,
14,
29412,
14,
20519,
35,
3483,
13,
9078,
9,
198,
2,
6208,
9220,
1058,
720,
39069,
14,
8019,
14,
29412,
14,
20519,
35,
3483,
62,
9288,
13,
9078,
9,
198,
2,
220,
20546,
45,
9220,
1058,
720,
13847,
21886,
25,
3740,
1378,
7266,
9641,
13,
1229,
283,
13,
15532,
14,
21370,
358,
824,
14,
23047,
859,
14,
29412,
14,
20519,
35,
3483,
13,
9078,
720,
198,
2,
198,
29113,
29113,
14468,
2235,
198,
198,
11748,
25064,
11,
17802,
11,
302,
11,
3859,
198,
4774,
3672,
796,
17802,
13,
1136,
4774,
3672,
3419,
198,
198,
6978,
16,
796,
12813,
4743,
671,
14,
84,
14,
11195,
14,
4372,
14706,
14,
8019,
14,
29412,
1,
198,
6978,
17,
796,
12813,
4743,
671,
14,
84,
14,
11195,
14,
23047,
859,
14,
8019,
14,
29412,
1,
198,
2,
611,
357,
6978,
16,
407,
287,
25064,
13,
6978,
2599,
198,
2,
220,
197,
17597,
13,
6978,
13,
33295,
7,
6978,
16,
8,
198,
361,
357,
6978,
17,
407,
287,
25064,
13,
6978,
2599,
198,
197,
17597,
13,
6978,
13,
33295,
7,
6978,
17,
8,
198,
198,
2,
7502,
284,
1957,
27196,
50,
48761,
5301,
611,
2491,
319,
262,
42274,
3341,
198,
361,
357,
357,
4774,
3672,
13,
19796,
10786,
66,
32981,
11537,
14512,
532,
16,
393,
2583,
3672,
13,
19796,
10786,
893,
38235,
11537,
14512,
532,
16,
393,
2583,
3672,
13,
19796,
10786,
893,
76,
11537,
14512,
532,
16,
8,
15179,
198,
197,
28744,
13976,
62,
6978,
796,
12813,
31197,
9501,
14,
84,
14,
11195,
14,
4372,
14706,
14,
8019,
14,
29412,
14,
15654,
12,
43789,
1,
198,
197,
361,
357,
28744,
13976,
62,
6978,
407,
287,
25064,
13,
6978,
2599,
198,
197,
197,
17597,
13,
6978,
13,
33295,
7,
28744,
13976,
62,
6978,
8,
198,
17772,
25,
198,
197,
6603,
198,
198,
11748,
48761,
13,
8443,
273,
198,
6738,
48761,
13,
8443,
273,
1330,
4049,
8189,
198,
6738,
20613,
11250,
1330,
20613,
11250,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
20613,
8443,
25,
13610,
6831,
4637,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
12972,
19836,
25,
13872,
6831,
4637,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
616,
1136,
25,
19818,
530,
1700,
422,
7400,
11925,
480,
198,
2,
198,
2,
7400,
11925,
480,
25,
20137,
3084,
1438,
198,
2,
7032,
220,
220,
1058,
39650,
12,
12381,
320,
863,
1351,
286,
530,
393,
517,
2214,
3891,
198,
2,
4006,
25,
12405,
4006,
329,
33411,
13444,
198,
2,
198,
2,
16409,
25,
257,
22155,
286,
1994,
14,
8367,
14729,
422,
262,
12405,
1255,
220,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
357,
11600,
318,
6565,
611,
645,
2482,
8,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
616,
76,
1136,
25,
19818,
530,
393,
517,
4406,
422,
7400,
11925,
480,
198,
2,
198,
2,
7400,
11925,
480,
25,
20137,
3084,
1438,
198,
2,
7032,
220,
220,
1058,
39650,
12,
12381,
320,
863,
1351,
286,
530,
393,
517,
2214,
3891,
198,
2,
4006,
25,
12405,
4006,
329,
33411,
13444,
198,
2,
198,
2,
16409,
25,
257,
1351,
286,
48589,
3166,
7268,
1994,
14,
8367,
14729,
422,
262,
12405,
1255,
220,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
357,
11600,
318,
6565,
611,
645,
2482,
8,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
616,
2860,
25,
7550,
530,
1700,
656,
7400,
11925,
480,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7400,
11925,
480,
25,
751,
530,
1700,
329,
530,
3084,
1438,
329,
1123,
869,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1700,
25,
22155,
351,
8251,
355,
2214,
3891,
290,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3815,
355,
2214,
3815,
198,
2,
198,
197,
197,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
616,
76,
2860,
25,
7550,
3294,
4406,
656,
7400,
11925,
480,
198,
2,
198,
2,
3544,
262,
2446,
23493,
13,
18558,
315,
368,
1092,
3419,
198,
198,
2,
4299,
616,
76,
2860,
7,
8658,
11925,
480,
11,
4406,
2599,
198,
197,
197,
198,
197,
197,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
616,
929,
28664,
25,
4296,
530,
1700,
287,
7400,
11925,
480,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7400,
11925,
480,
25,
751,
530,
1700,
329,
530,
3084,
1438,
329,
1123,
869,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1700,
25,
22155,
351,
8251,
355,
2214,
3891,
290,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3815,
355,
2214,
3815,
198,
2,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
4299,
616,
12381,
33529,
198,
198,
2,
23926,
4770,
2559,
28,
198,
2,
15553,
8335,
62,
28463,
25,
43426,
257,
16363,
7550,
2643,
329,
12972,
2860,
3419,
198,
2,
4299,
8335,
62,
28463,
7,
8658,
11925,
480,
11,
1700,
2599,
198
] | 3.6873 | 937 |
from tatk.policy.mle.crosswoz.mle import MLE | [
6738,
256,
265,
74,
13,
30586,
13,
76,
293,
13,
19692,
86,
8590,
13,
76,
293,
1330,
337,
2538
] | 2.315789 | 19 |
#!/usr/bin/python
#
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
"""Packager testing global objects and attributes.
Please do not refer to this module directly. Please set attributes
either by updating the default values below, or by passing the requested
flags through the command line interface.
"""
import argparse
import os
import sys
# Define static global objects and attributes.
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
SRC_DIR = os.path.join(SCRIPT_DIR, os.pardir, os.pardir)
# Parse arguments and calculate dynamic global objects and attributes.
parser = argparse.ArgumentParser()
parser.add_argument('--test_update_golden_files', default=0, type=int)
parser.add_argument('--libpackager_type', default='static_library')
parser.add_argument('--v')
parser.add_argument('--vmodule')
# Overwrite the test to encryption key/iv specified in the command line.
parser.add_argument('--encryption_key')
parser.add_argument('--encryption_iv')
parser.add_argument('--remove_temp_files_after_test',
dest='remove_test_files_after_test', action='store_true')
parser.add_argument('--no-remove_temp_files_after_test',
dest='remove_temp_files_after_test', action='store_false')
parser.set_defaults(remove_temp_files_after_test=True)
aes = parser.add_argument_group(
'aes flags',
'These flags are required to enable AES signed encryption tests.')
aes.add_argument('--aes_signing_key')
aes.add_argument('--aes_signing_iv')
rsa = parser.add_argument_group(
'rsa flags',
'These flags are required to enable RSA signed encryption tests.')
rsa.add_argument('--rsa_signing_key_path')
options, args = parser.parse_known_args()
sys.argv[1:] = args
has_aes_flags = False
if options.aes_signing_key and options.aes_signing_iv:
has_aes_flags = True
has_rsa_flags = False
if options.rsa_signing_key_path:
has_rsa_flags = True
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
198,
2,
15069,
1946,
3012,
3457,
13,
1439,
6923,
33876,
13,
198,
2,
198,
2,
5765,
286,
428,
2723,
2438,
318,
21825,
416,
257,
347,
10305,
12,
7635,
198,
2,
5964,
326,
460,
307,
1043,
287,
262,
38559,
24290,
2393,
393,
379,
198,
2,
3740,
1378,
16244,
364,
13,
13297,
13,
785,
14,
9654,
12,
10459,
14,
677,
4541,
14,
1443,
67,
198,
198,
37811,
11869,
3536,
4856,
3298,
5563,
290,
12608,
13,
198,
198,
5492,
466,
407,
3522,
284,
428,
8265,
3264,
13,
4222,
900,
12608,
198,
31336,
416,
19698,
262,
4277,
3815,
2174,
11,
393,
416,
6427,
262,
9167,
198,
33152,
832,
262,
3141,
1627,
7071,
13,
198,
37811,
628,
198,
11748,
1822,
29572,
198,
11748,
28686,
198,
11748,
25064,
628,
198,
2,
2896,
500,
9037,
3298,
5563,
290,
12608,
13,
198,
6173,
46023,
62,
34720,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
5305,
6978,
7,
834,
7753,
834,
4008,
198,
50,
7397,
62,
34720,
796,
28686,
13,
6978,
13,
22179,
7,
6173,
46023,
62,
34720,
11,
28686,
13,
26037,
343,
11,
28686,
13,
26037,
343,
8,
198,
198,
2,
2547,
325,
7159,
290,
15284,
8925,
3298,
5563,
290,
12608,
13,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
9288,
62,
19119,
62,
24267,
268,
62,
16624,
3256,
4277,
28,
15,
11,
2099,
28,
600,
8,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
8019,
8002,
3536,
62,
4906,
3256,
4277,
11639,
12708,
62,
32016,
11537,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
85,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
85,
21412,
11537,
198,
2,
3827,
13564,
262,
1332,
284,
15835,
1994,
14,
452,
7368,
287,
262,
3141,
1627,
13,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
12685,
13168,
62,
2539,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
12685,
13168,
62,
452,
11537,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
28956,
62,
29510,
62,
16624,
62,
8499,
62,
9288,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2244,
11639,
28956,
62,
9288,
62,
16624,
62,
8499,
62,
9288,
3256,
2223,
11639,
8095,
62,
7942,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
3919,
12,
28956,
62,
29510,
62,
16624,
62,
8499,
62,
9288,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2244,
11639,
28956,
62,
29510,
62,
16624,
62,
8499,
62,
9288,
3256,
2223,
11639,
8095,
62,
9562,
11537,
198,
48610,
13,
2617,
62,
12286,
82,
7,
28956,
62,
29510,
62,
16624,
62,
8499,
62,
9288,
28,
17821,
8,
198,
198,
64,
274,
796,
30751,
13,
2860,
62,
49140,
62,
8094,
7,
198,
220,
220,
220,
705,
64,
274,
9701,
3256,
198,
220,
220,
220,
705,
4711,
9701,
389,
2672,
284,
7139,
34329,
4488,
15835,
5254,
2637,
8,
198,
64,
274,
13,
2860,
62,
49140,
10786,
438,
64,
274,
62,
12683,
278,
62,
2539,
11537,
198,
64,
274,
13,
2860,
62,
49140,
10786,
438,
64,
274,
62,
12683,
278,
62,
452,
11537,
198,
3808,
64,
796,
30751,
13,
2860,
62,
49140,
62,
8094,
7,
198,
220,
220,
220,
705,
3808,
64,
9701,
3256,
198,
220,
220,
220,
705,
4711,
9701,
389,
2672,
284,
7139,
42319,
4488,
15835,
5254,
2637,
8,
198,
3808,
64,
13,
2860,
62,
49140,
10786,
438,
3808,
64,
62,
12683,
278,
62,
2539,
62,
6978,
11537,
198,
198,
25811,
11,
26498,
796,
30751,
13,
29572,
62,
4002,
62,
22046,
3419,
198,
17597,
13,
853,
85,
58,
16,
47715,
796,
26498,
198,
10134,
62,
64,
274,
62,
33152,
796,
10352,
198,
361,
3689,
13,
64,
274,
62,
12683,
278,
62,
2539,
290,
3689,
13,
64,
274,
62,
12683,
278,
62,
452,
25,
198,
220,
468,
62,
64,
274,
62,
33152,
796,
6407,
198,
10134,
62,
3808,
64,
62,
33152,
796,
10352,
198,
361,
3689,
13,
3808,
64,
62,
12683,
278,
62,
2539,
62,
6978,
25,
198,
220,
468,
62,
3808,
64,
62,
33152,
796,
6407,
198
] | 2.978355 | 693 |
import os
import json
import shutil
import pathlib
ROOT = pathlib.Path(__file__).parent.resolve()
CONFIG_FILE = "config.json"
DEPENDANCY_PATH = "_deps"
COMMON_PATH = "_common"
MULTI_PATH = "_multi"
class ConanFile():
""""""
packages = []
options = []
generators = []
class ConfigFile():
""""""
need_init = []
deps = []
def generate_cmake(path: str, name: str):
"""
cmake_minimum_required(VERSION 3.10)
# Set up project
project(
<PNAME>
VERSION 1.0
LANGUAGES CXX
)
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
# Set flags
if(MSVC)
set(CMAKE_CXX_FLAGS_RELEASE "/O2 /Ox")
set(CMAKE_CXX_FLAGS "/W4")
else()
set(CMAKE_CXX_FLAGS "-Wall -Wextra -pedantic")
endif()
# Find libraries
find_package(Threads)
"""
with open(j(path, "CMakeLists.txt"), 'w') as f:
f.write(generate_cmake.__doc__.replace("<PNAME>", name))
# TODO: need to change how _multi folder works
| [
11748,
28686,
198,
11748,
33918,
198,
11748,
4423,
346,
198,
11748,
3108,
8019,
198,
198,
13252,
2394,
796,
3108,
8019,
13,
15235,
7,
834,
7753,
834,
737,
8000,
13,
411,
6442,
3419,
198,
10943,
16254,
62,
25664,
796,
366,
11250,
13,
17752,
1,
198,
46162,
10619,
20940,
56,
62,
34219,
796,
45434,
10378,
82,
1,
198,
9858,
27857,
62,
34219,
796,
45434,
11321,
1,
198,
44,
16724,
40,
62,
34219,
796,
45434,
41684,
1,
198,
198,
4871,
31634,
8979,
33529,
198,
220,
220,
220,
13538,
15931,
15931,
198,
220,
220,
220,
10392,
796,
17635,
198,
220,
220,
220,
3689,
796,
17635,
198,
220,
220,
220,
27298,
796,
17635,
628,
198,
4871,
17056,
8979,
33529,
198,
220,
220,
220,
13538,
15931,
15931,
628,
220,
220,
220,
761,
62,
15003,
796,
17635,
198,
220,
220,
220,
390,
862,
796,
17635,
198,
198,
4299,
7716,
62,
11215,
539,
7,
6978,
25,
965,
11,
1438,
25,
965,
2599,
198,
220,
220,
220,
37227,
198,
11215,
539,
62,
39504,
62,
35827,
7,
43717,
513,
13,
940,
8,
198,
198,
2,
5345,
510,
1628,
198,
16302,
7,
198,
220,
220,
220,
1279,
13137,
10067,
29,
198,
220,
220,
220,
44156,
2849,
352,
13,
15,
198,
220,
220,
220,
406,
15567,
52,
25552,
327,
8051,
198,
8,
198,
198,
17256,
16763,
90,
34,
5673,
7336,
62,
33,
1268,
13153,
62,
34720,
92,
14,
1102,
272,
11249,
10951,
13,
11215,
539,
8,
198,
1102,
272,
62,
35487,
62,
40406,
3419,
198,
198,
2,
5345,
9701,
198,
361,
7,
5653,
15922,
8,
198,
220,
220,
220,
900,
7,
34,
5673,
7336,
62,
34,
8051,
62,
38948,
50,
62,
2200,
22781,
12813,
46,
17,
1220,
38208,
4943,
198,
220,
220,
220,
900,
7,
34,
5673,
7336,
62,
34,
8051,
62,
38948,
50,
12813,
54,
19,
4943,
198,
17772,
3419,
198,
220,
220,
220,
900,
7,
34,
5673,
7336,
62,
34,
8051,
62,
38948,
50,
27444,
22401,
532,
1135,
742,
430,
532,
9124,
5109,
4943,
198,
32088,
3419,
198,
198,
2,
9938,
12782,
198,
19796,
62,
26495,
7,
16818,
82,
8,
198,
198,
37811,
198,
220,
220,
220,
351,
1280,
7,
73,
7,
6978,
11,
366,
34,
12050,
43,
1023,
13,
14116,
12340,
705,
86,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
8612,
378,
62,
11215,
539,
13,
834,
15390,
834,
13,
33491,
7203,
27,
13137,
10067,
29,
1600,
1438,
4008,
198,
198,
2,
16926,
46,
25,
761,
284,
1487,
703,
4808,
41684,
9483,
2499,
198
] | 2.31401 | 414 |
import os
from math import pi
from typing import Tuple
import click
import jax
import jax.numpy as jnp
from jax import random
from scipy.optimize import minimize_scalar
from diffbank.bank import Bank
from diffbank.constants import MSUN, C, G
from diffbank.utils import Array, PRNGKeyArray
from diffbank.waveforms.taylorf2reducedspin import Psi, amp, get_th_boundary_interps
"""
Generate a TaylorF2ReducedSpin bank for comparison with Ajith et al 2014,
https://arxiv.org/abs/1210.6666.
To reproduce the bank in the paper, run
>>> python genbank_3D_taylorf2reducedspin.py
"""
##### Frequency settings
# Since the lowest BH mass for this bank is 1 * MSUN, need to go up to its ISCO
# frequency
f_u = 2200.0 # Hz
f_0 = f_l = 20.0 # Hz
df = 0.1
N_fbins = int((f_u - f_l) / df)
#####
m_range = (1 * MSUN, 20 * MSUN)
m_ns_thresh = 2 * MSUN
M_tot_max = m_range[0] + m_range[1]
chi_bh_max = 0.98
chi_ns_max = 0.4
th0_range, th3_interp_low, th3_interp_high = get_th_boundary_interps(*m_range, f_0)
# Figure out where th3 attains its maximum
def get_th3S_max(th0, th3):
"""
Gets max value of th3S at a given `(th0, th3)` point. This computes the
component masses, gets the corresponding `chi1`, `chi2` values, computes
the max value `chi` can take and converts this to a max value for `th3S`.
"""
M_chirp = 1 / (16 * pi * f_0) * (125 / (2 * th0 ** 3)) ** (1 / 5) * C ** 3 / G
eta = (16 * pi ** 5 / 25 * th0 ** 2 / th3 ** 5) ** (1 / 3)
q = (1 + jnp.sqrt(1 - 4 * eta) - 2 * eta) / (2 * eta)
m2 = (1 + q) ** (1 / 5) / q ** (3 / 5) * M_chirp
m1 = q * m2
delta = (m1 - m2) / (m1 + m2)
chi1_max = jnp.where(m1 > m_ns_thresh, chi_bh_max, chi_ns_max)
chi2_max = jnp.where(m2 > m_ns_thresh, chi_bh_max, chi_ns_max)
chi_s_max = (chi1_max + chi2_max) / 2
chi_a_max = (chi1_max - chi2_max) / 2
chi_max = chi_s_max * (1 - 76 * eta / 113) + delta * chi_a_max
th3S_max = 113 * th3 * chi_max / (48 * pi)
return th3S_max
def is_in_bounds(theta: Array) -> Array:
"""
Checks if a point is in bounds using the `th` values and total mass.
"""
th0, th3, th3S = theta[..., 0], theta[..., 1], theta[..., 2]
return jnp.logical_and(
th3 > th3_interp_low(th0),
jnp.logical_and(
th3 < th3_interp_high(th0),
jnp.logical_and(
jnp.abs(th3S) < get_th3S_max(th0, th3), get_M_tot(th0, th3) < M_tot_max
),
),
)
def base_sample_1(
key: PRNGKeyArray,
th0_range: Tuple[float, float],
th3_range: Tuple[float, float],
th3S_max: float,
) -> Array:
"""
Sample uniformly over maximum parameter ranges.
"""
return random.uniform(
key,
(3,),
minval=jnp.array([th0_range[0], th3_range[0], -th3S_max]),
maxval=jnp.array([th0_range[1], th3_range[1], th3S_max]),
)
@jax.jit
def sample_1(
key: PRNGKeyArray,
th0_range: Tuple[float, float],
th3_range: Tuple[float, float],
th3S_max: float,
) -> Array:
"""
Samples a single point with rejection sampling.
"""
cond_fun = lambda val: jnp.logical_not(is_in_bounds(val[1]))
key, subkey = random.split(key)
init_val = (key, base_sample_1(subkey, th0_range, th3_range, th3S_max))
return jax.lax.while_loop(cond_fun, body_fun, init_val)[1]
# Define sampling bounds
bracket = (th0_range[0], 5e3) # NOTE: need to change if m_range changes!
res = minimize_scalar(lambda th0: -th3_interp_high(th0), bracket, bracket)
assert res.success
th0_th3_max = res.x
th3_max = -res.fun
th3_range = (th3_interp_low(th0_range[0]), th3_max)
# Maximum value of th3
th3S_max = get_th3S_max(th0_th3_max, th3_max)
# Capture globals
@click.command()
@click.option("--seed", default=1, help="PRNG seed")
@click.option("--kind", default="random", help="kind of bank: 'random' or 'stochastic'")
@click.option(
"--n-eta",
default=0,
type=int,
help="number of new points at which to compute effectualnesses",
)
@click.option(
"--mm", default=0.95, help="minimum match, chosen to match arXiv:1210.6666"
)
@click.option("--eta-star", default=0.993, help="eta, chosen to match arXiv:1210.6666")
@click.option("--n-eff", default=1300)
@click.option("--savedir", default="banks", help="directory in which to save the bank")
@click.option("--device", default="cpu", help="device to run on")
@click.option(
"--noise",
default="interpolated",
help="noise curve: 'analytic' (LIGO-I) or 'interpolated' (aLIGOZeroDetHighPower from pycbc)",
)
if __name__ == "__main__":
gen_3D_tf2rs()
| [
11748,
28686,
198,
6738,
10688,
1330,
31028,
198,
6738,
19720,
1330,
309,
29291,
198,
198,
11748,
3904,
198,
11748,
474,
897,
198,
11748,
474,
897,
13,
77,
32152,
355,
474,
37659,
198,
6738,
474,
897,
1330,
4738,
198,
6738,
629,
541,
88,
13,
40085,
1096,
1330,
17775,
62,
1416,
282,
283,
198,
198,
6738,
814,
17796,
13,
17796,
1330,
5018,
198,
6738,
814,
17796,
13,
9979,
1187,
1330,
6579,
4944,
11,
327,
11,
402,
198,
6738,
814,
17796,
13,
26791,
1330,
15690,
11,
4810,
10503,
9218,
19182,
198,
6738,
814,
17796,
13,
19204,
23914,
13,
83,
7167,
69,
17,
445,
19513,
39706,
1330,
350,
13396,
11,
20766,
11,
651,
62,
400,
62,
7784,
560,
62,
3849,
862,
198,
198,
37811,
198,
8645,
378,
257,
8121,
37,
17,
7738,
19513,
4561,
259,
3331,
329,
7208,
351,
22028,
342,
2123,
435,
1946,
11,
198,
5450,
1378,
283,
87,
452,
13,
2398,
14,
8937,
14,
1065,
940,
13,
19060,
13,
198,
198,
2514,
22919,
262,
3331,
287,
262,
3348,
11,
1057,
628,
220,
220,
220,
13163,
21015,
2429,
17796,
62,
18,
35,
62,
83,
7167,
69,
17,
445,
19513,
39706,
13,
9078,
198,
198,
37811,
198,
198,
4242,
2,
31902,
6460,
198,
2,
4619,
262,
9016,
347,
39,
2347,
329,
428,
3331,
318,
352,
1635,
6579,
4944,
11,
761,
284,
467,
510,
284,
663,
3180,
8220,
198,
2,
8373,
198,
69,
62,
84,
796,
362,
2167,
13,
15,
220,
1303,
26109,
198,
69,
62,
15,
796,
277,
62,
75,
796,
1160,
13,
15,
220,
1303,
26109,
198,
7568,
796,
657,
13,
16,
198,
45,
62,
21855,
1040,
796,
493,
19510,
69,
62,
84,
532,
277,
62,
75,
8,
1220,
47764,
8,
198,
4242,
2,
198,
198,
76,
62,
9521,
796,
357,
16,
1635,
6579,
4944,
11,
1160,
1635,
6579,
4944,
8,
198,
76,
62,
5907,
62,
400,
3447,
796,
362,
1635,
6579,
4944,
198,
44,
62,
83,
313,
62,
9806,
796,
285,
62,
9521,
58,
15,
60,
1343,
285,
62,
9521,
58,
16,
60,
198,
11072,
62,
34369,
62,
9806,
796,
657,
13,
4089,
198,
11072,
62,
5907,
62,
9806,
796,
657,
13,
19,
198,
198,
400,
15,
62,
9521,
11,
294,
18,
62,
3849,
79,
62,
9319,
11,
294,
18,
62,
3849,
79,
62,
8929,
796,
651,
62,
400,
62,
7784,
560,
62,
3849,
862,
46491,
76,
62,
9521,
11,
277,
62,
15,
8,
198,
2,
11291,
503,
810,
294,
18,
708,
1299,
663,
5415,
198,
4299,
651,
62,
400,
18,
50,
62,
9806,
7,
400,
15,
11,
294,
18,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
29620,
3509,
1988,
286,
294,
18,
50,
379,
257,
1813,
4600,
7,
400,
15,
11,
294,
18,
8,
63,
966,
13,
770,
552,
1769,
262,
198,
220,
220,
220,
7515,
14568,
11,
3011,
262,
11188,
4600,
11072,
16,
47671,
4600,
11072,
17,
63,
3815,
11,
552,
1769,
198,
220,
220,
220,
262,
3509,
1988,
4600,
11072,
63,
460,
1011,
290,
26161,
428,
284,
257,
3509,
1988,
329,
4600,
400,
18,
50,
44646,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
337,
62,
354,
343,
79,
796,
352,
1220,
357,
1433,
1635,
31028,
1635,
277,
62,
15,
8,
1635,
357,
11623,
1220,
357,
17,
1635,
294,
15,
12429,
513,
4008,
12429,
357,
16,
1220,
642,
8,
1635,
327,
12429,
513,
1220,
402,
198,
220,
220,
220,
2123,
64,
796,
357,
1433,
1635,
31028,
12429,
642,
1220,
1679,
1635,
294,
15,
12429,
362,
1220,
294,
18,
12429,
642,
8,
12429,
357,
16,
1220,
513,
8,
198,
220,
220,
220,
10662,
796,
357,
16,
1343,
474,
37659,
13,
31166,
17034,
7,
16,
532,
604,
1635,
2123,
64,
8,
532,
362,
1635,
2123,
64,
8,
1220,
357,
17,
1635,
2123,
64,
8,
198,
220,
220,
220,
285,
17,
796,
357,
16,
1343,
10662,
8,
12429,
357,
16,
1220,
642,
8,
1220,
10662,
12429,
357,
18,
1220,
642,
8,
1635,
337,
62,
354,
343,
79,
198,
220,
220,
220,
285,
16,
796,
10662,
1635,
285,
17,
198,
220,
220,
220,
25979,
796,
357,
76,
16,
532,
285,
17,
8,
1220,
357,
76,
16,
1343,
285,
17,
8,
198,
220,
220,
220,
33166,
16,
62,
9806,
796,
474,
37659,
13,
3003,
7,
76,
16,
1875,
285,
62,
5907,
62,
400,
3447,
11,
33166,
62,
34369,
62,
9806,
11,
33166,
62,
5907,
62,
9806,
8,
198,
220,
220,
220,
33166,
17,
62,
9806,
796,
474,
37659,
13,
3003,
7,
76,
17,
1875,
285,
62,
5907,
62,
400,
3447,
11,
33166,
62,
34369,
62,
9806,
11,
33166,
62,
5907,
62,
9806,
8,
198,
220,
220,
220,
33166,
62,
82,
62,
9806,
796,
357,
11072,
16,
62,
9806,
1343,
33166,
17,
62,
9806,
8,
1220,
362,
198,
220,
220,
220,
33166,
62,
64,
62,
9806,
796,
357,
11072,
16,
62,
9806,
532,
33166,
17,
62,
9806,
8,
1220,
362,
198,
220,
220,
220,
33166,
62,
9806,
796,
33166,
62,
82,
62,
9806,
1635,
357,
16,
532,
8684,
1635,
2123,
64,
1220,
17318,
8,
1343,
25979,
1635,
33166,
62,
64,
62,
9806,
198,
220,
220,
220,
294,
18,
50,
62,
9806,
796,
17318,
1635,
294,
18,
1635,
33166,
62,
9806,
1220,
357,
2780,
1635,
31028,
8,
198,
220,
220,
220,
1441,
294,
18,
50,
62,
9806,
628,
198,
198,
4299,
318,
62,
259,
62,
65,
3733,
7,
1169,
8326,
25,
15690,
8,
4613,
15690,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
47719,
611,
257,
966,
318,
287,
22303,
1262,
262,
4600,
400,
63,
3815,
290,
2472,
2347,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
294,
15,
11,
294,
18,
11,
294,
18,
50,
796,
262,
8326,
58,
986,
11,
657,
4357,
262,
8326,
58,
986,
11,
352,
4357,
262,
8326,
58,
986,
11,
362,
60,
198,
220,
220,
220,
1441,
474,
37659,
13,
6404,
605,
62,
392,
7,
198,
220,
220,
220,
220,
220,
220,
220,
294,
18,
1875,
294,
18,
62,
3849,
79,
62,
9319,
7,
400,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
474,
37659,
13,
6404,
605,
62,
392,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
294,
18,
1279,
294,
18,
62,
3849,
79,
62,
8929,
7,
400,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
474,
37659,
13,
6404,
605,
62,
392,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
474,
37659,
13,
8937,
7,
400,
18,
50,
8,
1279,
651,
62,
400,
18,
50,
62,
9806,
7,
400,
15,
11,
294,
18,
828,
651,
62,
44,
62,
83,
313,
7,
400,
15,
11,
294,
18,
8,
1279,
337,
62,
83,
313,
62,
9806,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
1267,
628,
198,
4299,
2779,
62,
39873,
62,
16,
7,
198,
220,
220,
220,
1994,
25,
4810,
10503,
9218,
19182,
11,
198,
220,
220,
220,
294,
15,
62,
9521,
25,
309,
29291,
58,
22468,
11,
12178,
4357,
198,
220,
220,
220,
294,
18,
62,
9521,
25,
309,
29291,
58,
22468,
11,
12178,
4357,
198,
220,
220,
220,
294,
18,
50,
62,
9806,
25,
12178,
11,
198,
8,
4613,
15690,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27565,
42096,
625,
5415,
11507,
16069,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
4738,
13,
403,
6933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
11,
198,
220,
220,
220,
220,
220,
220,
220,
357,
18,
11,
828,
198,
220,
220,
220,
220,
220,
220,
220,
949,
2100,
28,
73,
37659,
13,
18747,
26933,
400,
15,
62,
9521,
58,
15,
4357,
294,
18,
62,
9521,
58,
15,
4357,
532,
400,
18,
50,
62,
9806,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
2100,
28,
73,
37659,
13,
18747,
26933,
400,
15,
62,
9521,
58,
16,
4357,
294,
18,
62,
9521,
58,
16,
4357,
294,
18,
50,
62,
9806,
46570,
198,
220,
220,
220,
1267,
628,
198,
31,
73,
897,
13,
45051,
198,
4299,
6291,
62,
16,
7,
198,
220,
220,
220,
1994,
25,
4810,
10503,
9218,
19182,
11,
198,
220,
220,
220,
294,
15,
62,
9521,
25,
309,
29291,
58,
22468,
11,
12178,
4357,
198,
220,
220,
220,
294,
18,
62,
9521,
25,
309,
29291,
58,
22468,
11,
12178,
4357,
198,
220,
220,
220,
294,
18,
50,
62,
9806,
25,
12178,
11,
198,
8,
4613,
15690,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3409,
2374,
257,
2060,
966,
351,
17927,
19232,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1779,
62,
12543,
796,
37456,
1188,
25,
474,
37659,
13,
6404,
605,
62,
1662,
7,
271,
62,
259,
62,
65,
3733,
7,
2100,
58,
16,
60,
4008,
628,
220,
220,
220,
1994,
11,
850,
2539,
796,
4738,
13,
35312,
7,
2539,
8,
198,
220,
220,
220,
2315,
62,
2100,
796,
357,
2539,
11,
2779,
62,
39873,
62,
16,
7,
7266,
2539,
11,
294,
15,
62,
9521,
11,
294,
18,
62,
9521,
11,
294,
18,
50,
62,
9806,
4008,
198,
220,
220,
220,
1441,
474,
897,
13,
75,
897,
13,
4514,
62,
26268,
7,
17561,
62,
12543,
11,
1767,
62,
12543,
11,
2315,
62,
2100,
38381,
16,
60,
628,
198,
198,
2,
2896,
500,
19232,
22303,
198,
1671,
8317,
796,
357,
400,
15,
62,
9521,
58,
15,
4357,
642,
68,
18,
8,
220,
1303,
24550,
25,
761,
284,
1487,
611,
285,
62,
9521,
2458,
0,
198,
411,
796,
17775,
62,
1416,
282,
283,
7,
50033,
294,
15,
25,
532,
400,
18,
62,
3849,
79,
62,
8929,
7,
400,
15,
828,
19096,
11,
19096,
8,
198,
30493,
581,
13,
13138,
198,
400,
15,
62,
400,
18,
62,
9806,
796,
581,
13,
87,
198,
400,
18,
62,
9806,
796,
532,
411,
13,
12543,
198,
400,
18,
62,
9521,
796,
357,
400,
18,
62,
3849,
79,
62,
9319,
7,
400,
15,
62,
9521,
58,
15,
46570,
294,
18,
62,
9806,
8,
198,
2,
22246,
1988,
286,
294,
18,
198,
400,
18,
50,
62,
9806,
796,
651,
62,
400,
18,
50,
62,
9806,
7,
400,
15,
62,
400,
18,
62,
9806,
11,
294,
18,
62,
9806,
8,
628,
198,
2,
31793,
15095,
874,
628,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
18076,
7203,
438,
28826,
1600,
4277,
28,
16,
11,
1037,
2625,
4805,
10503,
9403,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
11031,
1600,
4277,
2625,
25120,
1600,
1037,
2625,
11031,
286,
3331,
25,
705,
25120,
6,
393,
705,
301,
5374,
3477,
6,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
366,
438,
77,
12,
17167,
1600,
198,
220,
220,
220,
4277,
28,
15,
11,
198,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
1037,
2625,
17618,
286,
649,
2173,
379,
543,
284,
24061,
1245,
723,
47556,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
366,
438,
3020,
1600,
4277,
28,
15,
13,
3865,
11,
1037,
2625,
39504,
2872,
11,
7147,
284,
2872,
610,
55,
452,
25,
1065,
940,
13,
19060,
1,
198,
8,
198,
31,
12976,
13,
18076,
7203,
438,
17167,
12,
7364,
1600,
4277,
28,
15,
13,
44821,
11,
1037,
2625,
17167,
11,
7147,
284,
2872,
610,
55,
452,
25,
1065,
940,
13,
19060,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
77,
12,
14822,
1600,
4277,
28,
1485,
405,
8,
198,
31,
12976,
13,
18076,
7203,
438,
82,
9586,
343,
1600,
4277,
2625,
43558,
1600,
1037,
2625,
34945,
287,
543,
284,
3613,
262,
3331,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
25202,
1600,
4277,
2625,
36166,
1600,
1037,
2625,
25202,
284,
1057,
319,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
366,
438,
3919,
786,
1600,
198,
220,
220,
220,
4277,
2625,
3849,
16104,
515,
1600,
198,
220,
220,
220,
1037,
2625,
3919,
786,
12133,
25,
705,
38200,
13370,
6,
357,
43,
3528,
46,
12,
40,
8,
393,
705,
3849,
16104,
515,
6,
357,
64,
43,
3528,
46,
28667,
11242,
11922,
13434,
422,
12972,
66,
15630,
42501,
198,
8,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
2429,
62,
18,
35,
62,
27110,
17,
3808,
3419,
198
] | 2.248527 | 2,036 |
from api_wrapper.census_api.census_api import CensusAPI
import geopandas as gpd
import os
import requests
import io
import zipfile
class CensusBoundaries(CensusAPI):
"""
API wrapper for retrieving census boundary files
Attributes
----------
year: int
The year of census data to be accessed.
base_url: str
base_url for api requests.
filepath_dict: str
dictionary of file names and directories associated with the Tiger Line file structure.
https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html
Methods
---------
get_boundaries_gdf(self, state, level)
Get a Geopandas GeoDataFrame of the requested boundary file.
download_shp(self, state_fip, level)
download shape files associated with a specific state's FIP code and level.
The state_fip code is ignored if the level is 'county' or 'ttract'.
"""
def __init__(self, year=2018, **kwargs):
"""Initiate CensusBoundaries object for a given year"""
super().__init__(year=year, **kwargs)
self.base_url = f"https://www2.census.gov/geo/tiger/TIGER{self.year}/"
self.filepath_dict = {
"county": {
"directory": "COUNTY/",
"filename": lambda state_fip: f"tl_{self.year}_us_county.zip",
},
"cousub": {
"directory": "COUSUB/",
"filename": lambda state_fip: f"tl_{self.year}_{state_fip}_cousub.zip",
},
"tract": {
"directory": "TRACT/",
"filename": lambda state_fip: f"tl_{self.year}_{state_fip}_tract.zip",
},
"ttract": {
"directory": "TTRACT/",
"filename": lambda state_fip: f"tl_{self.year}_us_ttract.zip",
},
"bg": {
"directory": "BG/",
"filename": lambda state_fip: f"tl_{self.year}_{state_fip}_bg.zip",
},
"block": {
"directory": "TABBLOCK/",
"filename": lambda state_fip: f"tl_{self.year}_{state_fip}_tabblock10.zip",
},
}
def get_boundaries_gdf(self, state, level):
"""
Get a Geopandas GeoDataFrame of the requested boundary file.
Parameters
----------
state: str
State as string capitalized Ex: 'Alabama', 'Colorado'.
TODO Allow more flexibility in user input
level: str
The level desired of the boundary shape file Ex: 'block', 'county', 'tract'
TODO Allow more flexibility in user input
Returns
---------
gdf: GeoDataFrame
Geopandas GeoDataFrame of boundary shp file downloaded from the census Tiger Line
shape files.
"""
state_fip = self.state_fips[state]
boundary_shp_files = self.download_shp(state_fip, level)
print("Converting to gdf...")
i = 0
while i < len(boundary_shp_files):
shp_file = boundary_shp_files[i]
gdf = gpd.read_file(shp_file)
return gdf
def download_shp(self, state_fip, level):
"""
Download shape files associated with a specific state's FIP code and level.
The state_fip code is ignored if the level is 'county' or 'ttract'.
Parameters
----------
state_fip: str
State FIP code as a str '08'
TODO Allow more flexibility in user input
level: str
The level desired of the boundary shape file Ex: 'block', 'county', 'tract'
TODO Allow more flexibility in user input
Returns
---------
shp_files: list
List of shp files in zip file from given year, state and summary level.
"""
file_path = self._get_filepath(state_fip, level)
local_path = "/tmp/"
zip_file = self._unzip_file(file_path, local_path)
print("Finding .shp files...")
shp_files = [file for file in zip_file.namelist() if file.endswith(".shp")]
return [os.path.join(local_path, file) for file in shp_files]
def _get_filepath(self, state_fip, level):
"""Return the filepath to the requested boundary file"""
directory = self.filepath_dict[level]["directory"]
filepath = self.filepath_dict[level]["filename"](state_fip)
return os.path.join(self.base_url, directory, filepath)
def _unzip_file(self, file_path, local_path):
"""Unzip a zipfile's contents to `local_path`"""
url = file_path
print(f"Downloading {file_path}...")
r = requests.get(url)
print(f"To Zip file...")
z = zipfile.ZipFile(io.BytesIO(r.content))
print(f"Unzipping file...")
z.extractall(path=local_path)
return z
if __name__ == "__main__":
census_boundaries = CensusBoundaries()
| [
6738,
40391,
62,
48553,
13,
66,
7314,
62,
15042,
13,
66,
7314,
62,
15042,
1330,
20962,
17614,
198,
11748,
30324,
392,
292,
355,
27809,
67,
198,
11748,
28686,
198,
11748,
7007,
198,
11748,
33245,
198,
11748,
19974,
7753,
628,
198,
4871,
20962,
49646,
3166,
7,
34,
7314,
17614,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7824,
29908,
329,
50122,
21649,
18645,
3696,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
614,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
383,
614,
286,
21649,
1366,
284,
307,
17535,
13,
198,
220,
220,
220,
2779,
62,
6371,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
6371,
329,
40391,
7007,
13,
198,
220,
220,
220,
2393,
6978,
62,
11600,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
22155,
286,
2393,
3891,
290,
29196,
3917,
351,
262,
17030,
6910,
2393,
4645,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
2503,
13,
66,
7314,
13,
9567,
14,
469,
41480,
14,
76,
5912,
12,
16624,
14,
2435,
12,
25076,
14,
469,
78,
14,
83,
8254,
12,
1370,
12,
7753,
13,
6494,
628,
220,
220,
220,
25458,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
651,
62,
7784,
3166,
62,
70,
7568,
7,
944,
11,
1181,
11,
1241,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
2269,
404,
392,
292,
32960,
6601,
19778,
286,
262,
9167,
18645,
2393,
13,
198,
220,
220,
220,
4321,
62,
1477,
79,
7,
944,
11,
1181,
62,
69,
541,
11,
1241,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4321,
5485,
3696,
3917,
351,
257,
2176,
1181,
338,
376,
4061,
2438,
290,
1241,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1181,
62,
69,
541,
2438,
318,
9514,
611,
262,
1241,
318,
705,
9127,
88,
6,
393,
705,
926,
974,
4458,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
614,
28,
7908,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
8846,
378,
20962,
49646,
3166,
2134,
329,
257,
1813,
614,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
15003,
834,
7,
1941,
28,
1941,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8692,
62,
6371,
796,
277,
1,
5450,
1378,
2503,
17,
13,
66,
7314,
13,
9567,
14,
469,
78,
14,
83,
8254,
14,
51,
3528,
1137,
90,
944,
13,
1941,
92,
30487,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7753,
6978,
62,
11600,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9127,
88,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
34,
19385,
9936,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
62,
385,
62,
9127,
88,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
66,
516,
549,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
34,
20958,
10526,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
23330,
5219,
62,
69,
541,
92,
62,
66,
516,
549,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
83,
974,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
5446,
10659,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
23330,
5219,
62,
69,
541,
92,
62,
83,
974,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
926,
974,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
51,
5446,
10659,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
62,
385,
62,
926,
974,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35904,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
40469,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
23330,
5219,
62,
69,
541,
92,
62,
35904,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9967,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34945,
1298,
366,
5603,
33,
9148,
11290,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34345,
1298,
37456,
1181,
62,
69,
541,
25,
277,
1,
28781,
23330,
944,
13,
1941,
92,
23330,
5219,
62,
69,
541,
92,
62,
8658,
9967,
940,
13,
13344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
825,
651,
62,
7784,
3166,
62,
70,
7568,
7,
944,
11,
1181,
11,
1241,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
2269,
404,
392,
292,
32960,
6601,
19778,
286,
262,
9167,
18645,
2393,
13,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1181,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1812,
355,
4731,
3139,
1143,
1475,
25,
705,
49177,
3256,
705,
41330,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16926,
46,
22507,
517,
13688,
287,
2836,
5128,
198,
220,
220,
220,
220,
220,
220,
220,
1241,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1241,
10348,
286,
262,
18645,
5485,
2393,
1475,
25,
705,
9967,
3256,
705,
9127,
88,
3256,
705,
83,
974,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16926,
46,
22507,
517,
13688,
287,
2836,
5128,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
45337,
198,
220,
220,
220,
220,
220,
220,
220,
308,
7568,
25,
32960,
6601,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2269,
404,
392,
292,
32960,
6601,
19778,
286,
18645,
427,
79,
2393,
15680,
422,
262,
21649,
17030,
6910,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5485,
3696,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
69,
541,
796,
2116,
13,
5219,
62,
69,
2419,
58,
5219,
60,
628,
220,
220,
220,
220,
220,
220,
220,
18645,
62,
1477,
79,
62,
16624,
796,
2116,
13,
15002,
62,
1477,
79,
7,
5219,
62,
69,
541,
11,
1241,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
3103,
48820,
284,
308,
7568,
9313,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
981,
1312,
1279,
18896,
7,
7784,
560,
62,
1477,
79,
62,
16624,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
427,
79,
62,
7753,
796,
18645,
62,
1477,
79,
62,
16624,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
7568,
796,
27809,
67,
13,
961,
62,
7753,
7,
1477,
79,
62,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
308,
7568,
628,
220,
220,
220,
825,
4321,
62,
1477,
79,
7,
944,
11,
1181,
62,
69,
541,
11,
1241,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10472,
5485,
3696,
3917,
351,
257,
2176,
1181,
338,
376,
4061,
2438,
290,
1241,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
1181,
62,
69,
541,
2438,
318,
9514,
611,
262,
1241,
318,
705,
9127,
88,
6,
393,
705,
926,
974,
4458,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
69,
541,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1812,
376,
4061,
2438,
355,
257,
965,
705,
2919,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16926,
46,
22507,
517,
13688,
287,
2836,
5128,
198,
220,
220,
220,
220,
220,
220,
220,
1241,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1241,
10348,
286,
262,
18645,
5485,
2393,
1475,
25,
705,
9967,
3256,
705,
9127,
88,
3256,
705,
83,
974,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16926,
46,
22507,
517,
13688,
287,
2836,
5128,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
45337,
198,
220,
220,
220,
220,
220,
220,
220,
427,
79,
62,
16624,
25,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
427,
79,
3696,
287,
19974,
2393,
422,
1813,
614,
11,
1181,
290,
10638,
1241,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2393,
62,
6978,
796,
2116,
13557,
1136,
62,
7753,
6978,
7,
5219,
62,
69,
541,
11,
1241,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
6978,
796,
12813,
22065,
30487,
628,
220,
220,
220,
220,
220,
220,
220,
19974,
62,
7753,
796,
2116,
13557,
403,
13344,
62,
7753,
7,
7753,
62,
6978,
11,
1957,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
36276,
764,
1477,
79,
3696,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
427,
79,
62,
16624,
796,
685,
7753,
329,
2393,
287,
19974,
62,
7753,
13,
7402,
46331,
3419,
611,
2393,
13,
437,
2032,
342,
7,
1911,
1477,
79,
4943,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
418,
13,
6978,
13,
22179,
7,
12001,
62,
6978,
11,
2393,
8,
329,
2393,
287,
427,
79,
62,
16624,
60,
628,
220,
220,
220,
825,
4808,
1136,
62,
7753,
6978,
7,
944,
11,
1181,
62,
69,
541,
11,
1241,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
2393,
6978,
284,
262,
9167,
18645,
2393,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
8619,
796,
2116,
13,
7753,
6978,
62,
11600,
58,
5715,
7131,
1,
34945,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
2393,
6978,
796,
2116,
13,
7753,
6978,
62,
11600,
58,
5715,
7131,
1,
34345,
8973,
7,
5219,
62,
69,
541,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
28686,
13,
6978,
13,
22179,
7,
944,
13,
8692,
62,
6371,
11,
8619,
11,
2393,
6978,
8,
628,
220,
220,
220,
825,
4808,
403,
13344,
62,
7753,
7,
944,
11,
2393,
62,
6978,
11,
1957,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3118,
13344,
257,
19974,
7753,
338,
10154,
284,
4600,
12001,
62,
6978,
63,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2393,
62,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
10002,
278,
1391,
7753,
62,
6978,
92,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
7007,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
2514,
38636,
2393,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
19974,
7753,
13,
41729,
8979,
7,
952,
13,
45992,
9399,
7,
81,
13,
11299,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
3118,
89,
4501,
2393,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
13,
2302,
974,
439,
7,
6978,
28,
12001,
62,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1976,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
628,
220,
220,
220,
21649,
62,
7784,
3166,
796,
20962,
49646,
3166,
3419,
198
] | 2.205242 | 2,251 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import argparse
import os
import cv2
cv2_base_dir = os.path.dirname(os.path.abspath(cv2.__file__))
KEY_ESC = 27
WIN_NAME = "Capture - Face detection"
parser = argparse.ArgumentParser(
description="Code for Cascade Classifier tutorial.")
default_face = os.path.join(cv2_base_dir, "data",
"haarcascade_frontalface_alt.xml")
parser.add_argument("--face_cascade",
help="Path to face cascade.",
default=default_face)
default_eyes = os.path.join(cv2_base_dir, "data",
"haarcascade_eye_tree_eyeglasses.xml")
parser.add_argument("--eyes_cascade",
help="Path to eyes cascade.",
default=default_eyes)
parser.add_argument("--camera",
help="Camera divide number.",
type=int,
default=0)
args = parser.parse_args()
face_cascade_name = args.face_cascade
eyes_cascade_name = args.eyes_cascade
face_cascade = cv2.CascadeClassifier()
eyes_cascade = cv2.CascadeClassifier()
# -- 1. Load the cascades
if not face_cascade.load(cv2.samples.findFile(face_cascade_name)):
print("--(!)Error loading face cascade")
exit(0)
if not eyes_cascade.load(cv2.samples.findFile(eyes_cascade_name)):
print("--(!)Error loading eyes cascade")
exit(0)
camera_device = args.camera
# -- 2. Read the video stream
cap = cv2.VideoCapture(camera_device)
if not cap.isOpened:
print("--(!)Error opening video capture")
exit(0)
while cap.isOpened():
ret, frame = cap.read()
if frame is None:
print("--(!) No captured frame -- Break!")
break
detectAndDisplay(frame)
k = cv2.waitKey(10) & 0xFF
if k == KEY_ESC or k == ord('q'): # wait for ESC key or 'q' key to exit
break
cv2.destroyWindow(WIN_NAME)
cap.release() | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
1822,
29572,
198,
11748,
28686,
198,
198,
11748,
269,
85,
17,
198,
198,
33967,
17,
62,
8692,
62,
15908,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
33967,
17,
13,
834,
7753,
834,
4008,
198,
20373,
62,
1546,
34,
796,
2681,
198,
37620,
62,
20608,
796,
366,
49630,
532,
15399,
13326,
1,
628,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
6764,
2625,
10669,
329,
48788,
5016,
7483,
11808,
19570,
198,
12286,
62,
2550,
796,
28686,
13,
6978,
13,
22179,
7,
33967,
17,
62,
8692,
62,
15908,
11,
366,
7890,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3099,
5605,
28966,
62,
8534,
1604,
558,
62,
2501,
13,
19875,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2550,
62,
66,
28966,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
15235,
284,
1986,
44847,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
12286,
62,
2550,
8,
198,
12286,
62,
48418,
796,
28686,
13,
6978,
13,
22179,
7,
33967,
17,
62,
8692,
62,
15908,
11,
366,
7890,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3099,
5605,
28966,
62,
25379,
62,
21048,
62,
2959,
1533,
28958,
13,
19875,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
48418,
62,
66,
28966,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
15235,
284,
2951,
44847,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
12286,
62,
48418,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
25695,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
35632,
14083,
1271,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
15,
8,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
2550,
62,
66,
28966,
62,
3672,
796,
26498,
13,
2550,
62,
66,
28966,
198,
48418,
62,
66,
28966,
62,
3672,
796,
26498,
13,
48418,
62,
66,
28966,
198,
198,
2550,
62,
66,
28966,
796,
269,
85,
17,
13,
34,
28966,
9487,
7483,
3419,
198,
48418,
62,
66,
28966,
796,
269,
85,
17,
13,
34,
28966,
9487,
7483,
3419,
198,
198,
2,
1377,
352,
13,
8778,
262,
49164,
2367,
198,
361,
407,
1986,
62,
66,
28966,
13,
2220,
7,
33967,
17,
13,
82,
12629,
13,
19796,
8979,
7,
2550,
62,
66,
28966,
62,
3672,
8,
2599,
198,
220,
220,
220,
3601,
7203,
438,
7,
8133,
12331,
11046,
1986,
44847,
4943,
198,
220,
220,
220,
8420,
7,
15,
8,
198,
361,
407,
2951,
62,
66,
28966,
13,
2220,
7,
33967,
17,
13,
82,
12629,
13,
19796,
8979,
7,
48418,
62,
66,
28966,
62,
3672,
8,
2599,
198,
220,
220,
220,
3601,
7203,
438,
7,
8133,
12331,
11046,
2951,
44847,
4943,
198,
220,
220,
220,
8420,
7,
15,
8,
198,
198,
25695,
62,
25202,
796,
26498,
13,
25695,
198,
2,
1377,
362,
13,
4149,
262,
2008,
4269,
198,
11128,
796,
269,
85,
17,
13,
10798,
49630,
7,
25695,
62,
25202,
8,
198,
361,
407,
1451,
13,
271,
18257,
2945,
25,
198,
220,
220,
220,
3601,
7203,
438,
7,
8133,
12331,
4756,
2008,
8006,
4943,
198,
220,
220,
220,
8420,
7,
15,
8,
198,
198,
4514,
1451,
13,
271,
18257,
2945,
33529,
198,
220,
220,
220,
1005,
11,
5739,
796,
1451,
13,
961,
3419,
198,
220,
220,
220,
611,
5739,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
438,
7,
8133,
1400,
7907,
5739,
1377,
12243,
2474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
628,
220,
220,
220,
4886,
1870,
23114,
7,
14535,
8,
628,
220,
220,
220,
479,
796,
269,
85,
17,
13,
17077,
9218,
7,
940,
8,
1222,
657,
87,
5777,
198,
220,
220,
220,
611,
479,
6624,
35374,
62,
1546,
34,
393,
479,
6624,
2760,
10786,
80,
6,
2599,
220,
1303,
4043,
329,
40251,
1994,
393,
705,
80,
6,
1994,
284,
8420,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
198,
33967,
17,
13,
41659,
27703,
7,
37620,
62,
20608,
8,
198,
11128,
13,
20979,
3419
] | 2.256257 | 839 |
import os, glob
import nibabel as nib
import numpy as np
from IPython.display import clear_output
def update_progress(progress, my_str = ''):
"""
Progress bar
"""
bar_length = 20
if isinstance(progress, int):
progress = float(progress)
if not isinstance(progress, float):
progress = 0
if progress < 0:
progress = 0
if progress >= 1:
progress = 1
block = int(round(bar_length * progress))
clear_output(wait = True)
text = my_str + " Progress: [{0}] {1:.1f}%".format( "#" * block + "-" * (bar_length - block), progress * 100)
print(text)
def return_dti_derivs(subjpath):
"""
Reads in eigenvectors and eigenvalues from DTI fit and return v and l
v = 3 * i * j * k * 3 matrix, where
dim[0] = eigenvectors 1,2 and 3
dims[i,j,k] = voxels from image
dim[4] = eigenvector values
l = 3 * i * j * k matrix, where
dim[0] = eigenvalues 1,2 and 3
dims[i,j,k] = voxels from image
"""
# identify files
v1_file = glob.glob(os.path.join(subjpath,'*V1*'))[0]
v2_file = glob.glob(os.path.join(subjpath,'*V2*'))[0]
v3_file = glob.glob(os.path.join(subjpath,'*V3*'))[0]
l1_file = glob.glob(os.path.join(subjpath,'*L1*'))[0]
l2_file = glob.glob(os.path.join(subjpath,'*L2*'))[0]
l3_file = glob.glob(os.path.join(subjpath,'*L3*'))[0]
# load niftis and stack eigenvecs
v1_img = nib.load(v1_file); v1 = v1_img.get_fdata()
v2_img = nib.load(v2_file); v2 = v2_img.get_fdata()
v3_img = nib.load(v3_file); v3 = v3_img.get_fdata()
v = np.stack((v1,v2,v3), axis = 0)
# load niftis and stack eigenvals
l2_img = nib.load(l2_file); l2 = l2_img.get_fdata()
l1_img = nib.load(l1_file); l1 = l1_img.get_fdata()
l3_img = nib.load(l3_file); l3 = l3_img.get_fdata()
l = np.stack((l1,l2,l3), axis = 0)
return v, l
def get_dti_object(v, l, report_progress = False):
"""
Takes in eigenvectors and eigenvalues and returns 3*3*i*j*k DTI array for input to nn
"""
dt = np.zeros([3, 3, v.shape[1], v.shape[2], v.shape[3]])
for i in range(v.shape[1]):
if report_progress: update_progress(i/v.shape[1])
for j in range(v.shape[2]):
for k in range(v.shape[3]):
dt[:, :, i, j, k] = l[0,i,j,k]*np.outer(v[0,i,j,k], v[0,i,j,k]) +\
l[1,i,j,k]*np.outer(v[1,i,j,k], v[1,i,j,k]) +\
l[2,i,j,k]*np.outer(v[2,i,j,k], v[2,i,j,k])
if report_progress: update_progress(1)
return dt
# subjpath = '/Users/lindenmp/Dropbox/Work/ResProjects/Becker_DNN/dataset/hcp/reg_test/100307ToTemplate'
# v, l = return_dti_derivs(subjpath)
# dt = get_dti_object(v, l, report_progress = True)
# dt.shape
| [
11748,
28686,
11,
15095,
198,
11748,
33272,
9608,
355,
33272,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
6101,
7535,
13,
13812,
1330,
1598,
62,
22915,
628,
198,
4299,
4296,
62,
33723,
7,
33723,
11,
616,
62,
2536,
796,
10148,
2599,
198,
220,
220,
220,
37227,
198,
197,
32577,
2318,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2318,
62,
13664,
796,
1160,
198,
220,
220,
220,
611,
318,
39098,
7,
33723,
11,
493,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
796,
12178,
7,
33723,
8,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
33723,
11,
12178,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
796,
657,
198,
220,
220,
220,
611,
4371,
1279,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
796,
657,
198,
220,
220,
220,
611,
4371,
18189,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
796,
352,
628,
220,
220,
220,
2512,
796,
493,
7,
744,
7,
5657,
62,
13664,
1635,
4371,
4008,
628,
220,
220,
220,
1598,
62,
22915,
7,
17077,
796,
6407,
8,
198,
220,
220,
220,
2420,
796,
616,
62,
2536,
1343,
366,
18387,
25,
685,
90,
15,
92,
60,
1391,
16,
25,
13,
16,
69,
92,
4,
1911,
18982,
7,
25113,
1,
1635,
2512,
1343,
366,
21215,
1635,
357,
5657,
62,
13664,
532,
2512,
828,
4371,
1635,
1802,
8,
198,
220,
220,
220,
3601,
7,
5239,
8,
628,
198,
4299,
1441,
62,
67,
20259,
62,
1082,
452,
82,
7,
7266,
73,
6978,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
82,
287,
304,
9324,
303,
5217,
290,
304,
9324,
27160,
422,
24311,
40,
4197,
290,
1441,
410,
290,
300,
198,
220,
220,
220,
410,
796,
513,
1635,
1312,
1635,
474,
1635,
479,
1635,
513,
17593,
11,
810,
220,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
58,
15,
60,
796,
304,
9324,
303,
5217,
352,
11,
17,
290,
513,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
82,
58,
72,
11,
73,
11,
74,
60,
796,
410,
1140,
1424,
422,
2939,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
58,
19,
60,
796,
304,
9324,
31364,
3815,
198,
220,
220,
220,
300,
796,
513,
1635,
1312,
1635,
474,
1635,
479,
17593,
11,
810,
220,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
58,
15,
60,
796,
304,
9324,
27160,
352,
11,
17,
290,
513,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
82,
58,
72,
11,
73,
11,
74,
60,
796,
410,
1140,
1424,
422,
2939,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5911,
3696,
198,
220,
220,
220,
410,
16,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
53,
16,
9,
6,
4008,
58,
15,
60,
198,
220,
220,
220,
410,
17,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
53,
17,
9,
6,
4008,
58,
15,
60,
198,
220,
220,
220,
410,
18,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
53,
18,
9,
6,
4008,
58,
15,
60,
198,
220,
220,
220,
300,
16,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
43,
16,
9,
6,
4008,
58,
15,
60,
198,
220,
220,
220,
300,
17,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
43,
17,
9,
6,
4008,
58,
15,
60,
198,
220,
220,
220,
300,
18,
62,
7753,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
7266,
73,
6978,
4032,
9,
43,
18,
9,
6,
4008,
58,
15,
60,
628,
220,
220,
220,
1303,
3440,
299,
2135,
271,
290,
8931,
304,
9324,
303,
6359,
198,
220,
220,
220,
410,
16,
62,
9600,
796,
33272,
13,
2220,
7,
85,
16,
62,
7753,
1776,
410,
16,
796,
410,
16,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
410,
17,
62,
9600,
796,
33272,
13,
2220,
7,
85,
17,
62,
7753,
1776,
410,
17,
796,
410,
17,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
410,
18,
62,
9600,
796,
33272,
13,
2220,
7,
85,
18,
62,
7753,
1776,
410,
18,
796,
410,
18,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
410,
796,
45941,
13,
25558,
19510,
85,
16,
11,
85,
17,
11,
85,
18,
828,
16488,
796,
657,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3440,
299,
2135,
271,
290,
8931,
304,
9324,
12786,
198,
220,
220,
220,
300,
17,
62,
9600,
796,
33272,
13,
2220,
7,
75,
17,
62,
7753,
1776,
300,
17,
796,
300,
17,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
300,
16,
62,
9600,
796,
33272,
13,
2220,
7,
75,
16,
62,
7753,
1776,
300,
16,
796,
300,
16,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
300,
18,
62,
9600,
796,
33272,
13,
2220,
7,
75,
18,
62,
7753,
1776,
300,
18,
796,
300,
18,
62,
9600,
13,
1136,
62,
69,
7890,
3419,
198,
220,
220,
220,
300,
796,
45941,
13,
25558,
19510,
75,
16,
11,
75,
17,
11,
75,
18,
828,
16488,
796,
657,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
410,
11,
300,
628,
198,
4299,
651,
62,
67,
20259,
62,
15252,
7,
85,
11,
300,
11,
989,
62,
33723,
796,
10352,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
33687,
287,
304,
9324,
303,
5217,
290,
304,
9324,
27160,
290,
5860,
513,
9,
18,
9,
72,
9,
73,
9,
74,
24311,
40,
7177,
329,
5128,
284,
299,
77,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
288,
83,
796,
45941,
13,
9107,
418,
26933,
18,
11,
513,
11,
410,
13,
43358,
58,
16,
4357,
410,
13,
43358,
58,
17,
4357,
410,
13,
43358,
58,
18,
11907,
8,
628,
220,
220,
220,
329,
1312,
287,
2837,
7,
85,
13,
43358,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
989,
62,
33723,
25,
4296,
62,
33723,
7,
72,
14,
85,
13,
43358,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
85,
13,
43358,
58,
17,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
2837,
7,
85,
13,
43358,
58,
18,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
83,
58,
45299,
1058,
11,
1312,
11,
474,
11,
479,
60,
796,
300,
58,
15,
11,
72,
11,
73,
11,
74,
60,
9,
37659,
13,
39605,
7,
85,
58,
15,
11,
72,
11,
73,
11,
74,
4357,
410,
58,
15,
11,
72,
11,
73,
11,
74,
12962,
1343,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
197,
197,
197,
197,
197,
75,
58,
16,
11,
72,
11,
73,
11,
74,
60,
9,
37659,
13,
39605,
7,
85,
58,
16,
11,
72,
11,
73,
11,
74,
4357,
410,
58,
16,
11,
72,
11,
73,
11,
74,
12962,
1343,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
197,
197,
197,
197,
197,
75,
58,
17,
11,
72,
11,
73,
11,
74,
60,
9,
37659,
13,
39605,
7,
85,
58,
17,
11,
72,
11,
73,
11,
74,
4357,
410,
58,
17,
11,
72,
11,
73,
11,
74,
12962,
198,
220,
220,
220,
611,
989,
62,
33723,
25,
4296,
62,
33723,
7,
16,
8,
220,
220,
220,
220,
628,
220,
220,
220,
1441,
288,
83,
628,
198,
2,
850,
73,
6978,
796,
31051,
14490,
14,
75,
521,
268,
3149,
14,
26932,
3524,
14,
12468,
14,
4965,
16775,
82,
14,
3856,
15280,
62,
35,
6144,
14,
19608,
292,
316,
14,
71,
13155,
14,
2301,
62,
9288,
14,
3064,
22996,
2514,
30800,
6,
198,
2,
410,
11,
300,
796,
1441,
62,
67,
20259,
62,
1082,
452,
82,
7,
7266,
73,
6978,
8,
198,
2,
288,
83,
796,
651,
62,
67,
20259,
62,
15252,
7,
85,
11,
300,
11,
989,
62,
33723,
796,
6407,
8,
198,
2,
288,
83,
13,
43358,
198
] | 1.979345 | 1,404 |
from ...abc import Expression
from ..value.eventexpr import EVENT
from ..value.eventexpr import KWARGS
from ..value.eventexpr import ARG
from ..value.valueexpr import VALUE
from ..utility.context import CONTEXT
class ITEM(Expression):
"""
Get the item from a dictionary.
There are two forms:
1) Mapping form
!ITEM
with: !EVENT
item: foo
default: 0
2) Scalar form
!ITEM EVENT potatoes
Scalar form has some limitations (e.g no default value) but it is more compact
"""
Attributes = {
"With": ["*"], # TODO: This ...
"Item": ["*"], # TODO: This ...
"Default": ["*"], # TODO: This ...
}
| [
6738,
2644,
39305,
1330,
41986,
198,
198,
6738,
11485,
8367,
13,
15596,
31937,
1330,
49261,
198,
6738,
11485,
8367,
13,
15596,
31937,
1330,
509,
16279,
14313,
198,
6738,
11485,
8367,
13,
15596,
31937,
1330,
5923,
38,
198,
6738,
11485,
8367,
13,
8367,
31937,
1330,
26173,
8924,
198,
6738,
11485,
315,
879,
13,
22866,
1330,
22904,
13918,
628,
198,
4871,
7283,
3620,
7,
16870,
2234,
2599,
198,
197,
37811,
198,
3855,
262,
2378,
422,
257,
22155,
13,
198,
198,
1858,
389,
734,
5107,
25,
198,
198,
16,
8,
337,
5912,
1296,
198,
198,
0,
2043,
3620,
198,
4480,
25,
5145,
20114,
3525,
198,
9186,
25,
22944,
198,
12286,
25,
657,
198,
198,
17,
8,
34529,
283,
1296,
198,
198,
0,
2043,
3620,
49261,
18821,
198,
198,
3351,
282,
283,
1296,
468,
617,
11247,
357,
68,
13,
70,
645,
4277,
1988,
8,
475,
340,
318,
517,
16001,
198,
197,
37811,
628,
197,
29021,
796,
1391,
198,
197,
197,
1,
3152,
1298,
14631,
9,
33116,
220,
1303,
16926,
46,
25,
770,
2644,
198,
197,
197,
1,
7449,
1298,
14631,
9,
33116,
220,
1303,
16926,
46,
25,
770,
2644,
198,
197,
197,
1,
19463,
1298,
14631,
9,
33116,
220,
1303,
16926,
46,
25,
770,
2644,
198,
197,
92,
628,
628,
628
] | 2.951691 | 207 |
from django.shortcuts import render, redirect
from django.core.exceptions import ObjectDoesNotExist
from rest_framework import generics
from .models import Machine, Game
from .form import MachineForm, GameForm
from django.db.models import Q
from django.core.paginator import Paginator
from django.views.generic import TemplateView, ListView, UpdateView, CreateView, DeleteView
from django.urls import reverse_lazy
from .serializer import MachineSerializer,GameSerializer
from rest_framework.permissions import IsAuthenticated
from rest_framework.authentication import TokenAuthentication
# Create your views here.
| [
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
11,
18941,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
9515,
13921,
3673,
3109,
396,
198,
6738,
1334,
62,
30604,
1330,
1152,
873,
198,
6738,
764,
27530,
1330,
10850,
11,
3776,
198,
6738,
764,
687,
1330,
10850,
8479,
11,
3776,
8479,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
1330,
1195,
198,
6738,
42625,
14208,
13,
7295,
13,
79,
363,
20900,
1330,
31525,
20900,
198,
6738,
42625,
14208,
13,
33571,
13,
41357,
1330,
37350,
7680,
11,
7343,
7680,
11,
10133,
7680,
11,
13610,
7680,
11,
23520,
7680,
198,
6738,
42625,
14208,
13,
6371,
82,
1330,
9575,
62,
75,
12582,
198,
6738,
764,
46911,
7509,
1330,
10850,
32634,
7509,
11,
8777,
32634,
7509,
198,
6738,
1334,
62,
30604,
13,
525,
8481,
1330,
1148,
47649,
3474,
198,
6738,
1334,
62,
30604,
13,
41299,
3299,
1330,
29130,
47649,
3299,
628,
198,
198,
2,
13610,
534,
5009,
994,
13,
628
] | 3.961538 | 156 |
__version__ = "13.0.1"
| [
834,
9641,
834,
796,
366,
1485,
13,
15,
13,
16,
1,
198
] | 1.916667 | 12 |
import os
import stat
import shutil
import subprocess as sp
import tempfile
import re
import datetime as dt
from warnings import warn
import numpy as np
import argparse as ap
__all__ = ["get_job_logfile", "batch_sub", "batch_group", "JobArgumentParser"]
def get_job_logfile():
"""
Generate a path to use for the output log, based on job environment
Returns
-------
logfile : str
Path to log file.
"""
if os.getenv("PBS_O_WORKDIR"):
if os.getenv("PBS_ENVIRONMENT") != "PBS_INTERACTIVE":
workdir = os.getenv("PBS_O_WORKDIR")
jobname = os.getenv("PBS_JOBNAME")
jobid = os.getenv("PBS_JOBID").split(".", 1)[0]
logfile = os.path.join(workdir, "{}.u{}".format(jobname, jobid))
else:
logfile = None
elif os.getenv("SLURM_SUBMIT_DIR"):
workdir = os.getenv("SLURM_SUBMIT_DIR")
jobname = os.getenv("SLURM_JOB_NAME")
jobid = os.getenv("SLURM_JOB_ID").split(".", 1)[0]
if jobname == "bash":
logfile = None
else:
logfile = os.path.join(workdir, "{}-{}.log".format(jobname, jobid))
# TODO generate different logs for multiple processes in same job?
else:
logfile = None
return logfile
def format_time(t):
"""
Format a time to string for use by qsub.
Arguments
---------
t : datetime.timedelta object or float
The time for the job.
If floating point, will be interpreted in hours
Returns
-------
time : str
Time in the format expected by scheduler.
"""
if isinstance(t, str):
m = re.match("([0-9]+):([0-9]{2}):([0-9]{2})", t)
if not m:
raise ValueError("unable to parse qsub time string")
hh, mm, ss = map(int, m.groups())
t = dt.timedelta(hours=hh, minutes=mm, seconds=ss)
if not isinstance(t, dt.timedelta):
t = dt.timedelta(hours=t)
if t <= dt.timedelta(0):
raise ValueError("qsub time must be positive")
hours, rem = divmod(t.seconds + t.days * 86400, 3600)
minutes, seconds = divmod(rem, 60)
return "{:d}:{:02d}:{:02d}".format(hours, minutes, seconds)
def batch_sub(
cmd,
name=None,
mem=None,
nodes=None,
node_list=None,
ppn=None,
cput=None,
wallt=None,
output=None,
error=None,
queue=None,
dep_afterok=None,
workdir=None,
batch_args=[],
omp_threads=None,
mpi_procs=None,
mpi_args="",
env_script=None,
env=None,
nice=0,
echo=True,
delete=True,
submit=True,
scheduler="pbs",
debug=False,
exclude=None,
verbose=False,
):
"""
Create and submit a SLURM or PBS job.
Arguments
---------
cmd : string or list of strings
A command sequence to run via SLURM or PBS.
The command will be inserted into a qsub submission script
with all of the options specified in the remaining arguments.
name : string, optional
Name of the job.
mem : float or string, optional
Amount of memory to request for the job. float values in GB.
Or pass a string (eg '4gb') to use directly.
nodes : int or string, optional
Number of nodes to use in job
If a string, will be passed as-is to PBS -l node= resource
If using SLURM and a string, will overwrite node_list if None
node_list : string or list of strings
List of nodes that can be used for job. SLURM-only.
ppn : int, optional
Numper of processes per node
cput : string or float or datetime.timedelta, optional
Amount of CPU time requested.
String values should be in the format HH:MM:SS, e.g. '10:00:00'.
Numerical values are interpreted as a number of hours.
wallt : string or float or datetime.timedelta, optional
Amount of wall clock time requested.
String values should be in the format HH:MM:SS, e.g. '10:00:00'.
Numerical values are interpreted as a number of hours.
output : string, optional
PBS standard output filename.
error : string, optional
PBS error output filename.
queue : string, optional
The name of the queue to which to submit jobs
dep_afterok : string or list of strings
Dependency. Job ID (or IDs) on which to wait for successful completion,
before starting this job
workdir : string, optional
Directory from where the script will be submitted.
This is where the output and error files will be created
by default. Default: current directory.
batch_args : string or list of strings, optional
Any additional arguments to pass to slurm/pbs.
omp_threads : int, optional
Number of OpenMP threads to use per process
mpi_procs : int
Number of MPI processes to use.
``mpirun`` calls will be added to all lines of cmd as needed.
If cmd contains ``mpirun`` or ``mpiexec``, this does nothing.
mpi_args : string
Additional command line arguments for inserted ``mpirun`` commands.
If cmd contains ``mpirun`` or ``mpiexec``, this does nothing.
env_script : string, optional
Path to script to source during job script preamble
For loading modules, setting environment variables, etc
env : dict, optional
Dictionary of environment variables to set in job script
nice : int, optional
Adjust scheduling priority (SLURM only). Range from -5000 (highest
priority) to 5000 (lowest priority).
Note: actual submitted --nice value is 5000 higher, since negative
values require special privilege.
echo : bool, optional
Whether to use bash "set -x" in job script to echo commands to stdout.
delete : bool, optional
If True, delete the submit script upon job submission.
submit : bool, optional
If True (default) submit the job script once create. Will override the
default option when False, to keep the script
scheduler : string, optional
Which scheduler system to write a script for. One of "pbs" or "slurm"
debug : bool, optional
If True, print the contents of the job script to stdout for debugging.
exclude : string or list of strings
List of nodes that will be excluded for job. SLURM-only.
verbose : bool, optional
Print the working directory, and the job ID if submitted successfully.
Returns
-------
jobid : string
The ID of the submitted job.
Example
-------
>>> jobid = batch_sub("echo Hello", name="testing", nodes="1:ppn=1",
... cput='1:00:00', mem='1gb')
>>> print(jobid)
221114.feynman.princeton.edu
>>> print(open('testing.o221114','r').read())
Hello
"""
if isinstance(cmd, list):
cmd = " ".join(cmd)
scheduler = scheduler.lower()
if mem is not None and not isinstance(mem, str):
if mem < 0:
mem = None
elif scheduler == "pbs":
mem = "{:d}mb".format(int(np.ceil(mem * 1024.0)))
elif scheduler == "slurm":
mem = "{:d}".format(int(np.ceil(mem * 1024.0)))
if isinstance(dep_afterok, str):
dep_afterok = [dep_afterok]
if isinstance(batch_args, str):
batch_args = batch_args.split()
if not debug and not submit:
delete = False
try:
nodes = int(nodes)
except ValueError:
# nodes is a string that's not convertible to int
if scheduler == "slurm" and node_list is None:
node_list = nodes
nodes = 1
job_script = ["#!/usr/bin/env bash"]
# TODO can maybe replace manual option with some automatic detection
if scheduler == "pbs":
# create PBS header
if name:
job_script += ["#PBS -N {:s}".format(name)]
if mem:
job_script += ["#PBS -l mem={:s}".format(mem)]
if nodes and ppn:
job_script += ["#PBS -l nodes={}:ppn={}".format(nodes, ppn)]
if cput:
job_script += ["#PBS -l cput={:s}".format(format_time(cput))]
if wallt:
job_script += ["#PBS -l walltime={:s}".format(format_time(wallt))]
if output:
job_script += ["#PBS -o {:s}".format(output)]
if error:
job_script += ["#PBS -e {:s}".format(error)]
if queue:
job_script += ["#PBS -q {:s}".format(queue)]
if dep_afterok:
job_script += ["#PBS -W depend=afterok:{}".format(":".join(dep_afterok))]
elif scheduler == "slurm":
# create slurm header
if name:
job_script += ["#SBATCH --job-name={:s}".format(name)]
if mem:
job_script += ["#SBATCH --mem={:s}".format(mem)]
if nodes:
job_script += ["#SBATCH --nodes={}".format(nodes)]
if node_list is not None:
if len(node_list) > 1 and not isinstance(node_list, str):
node_list = ",".join(node_list)
job_script += ["#SBATCH --nodelist={}".format(node_list)]
if exclude is not None:
if len(exclude) > 1 and not isinstance(exclude, str):
exclude = ",".join(exclude)
elif len(exclude) == 1 and not isinstance(exclude, str):
exclude = exclude[0]
job_script += ["#SBATCH --exclude={}".format(exclude)]
if ppn:
job_script += ["#SBATCH --ntasks-per-node={}".format(ppn)]
if omp_threads:
job_script += ["#SBATCH --cpus-per-task={}".format(omp_threads)]
if cput:
if wallt is None:
warn("Using CPU time as wall time for slurm")
job_script += ["#SBATCH --time={:s}".format(format_time(cput))]
else:
warn("Ignoring CPU time for slurm, using wall time only")
if wallt:
job_script += ["#SBATCH --time={:s}".format(format_time(wallt))]
if nice is not None:
nice += 5000
job_script += ["#SBATCH --nice={}".format(nice)]
if output:
job_script += ["#SBATCH --output={:s}".format(output)]
if error:
job_script += ["#SBATCH --error={:s}".format(error)]
if queue:
job_script += ["#SBATCH --partition={:s}".format(queue)]
if dep_afterok:
job_script += [
"#SBATCH --dependency=afterok:{}".format(":".join(dep_afterok))
]
# create job script preamble
if echo:
job_script += ["set -x"]
if env_script:
if not os.path.exists(env_script):
raise ValueError("Could not find environment script: {}".format(env_script))
job_script += ["source {}".format(env_script)]
if env:
for k, v in env.items():
job_script += ["export {}={}".format(k, v)]
if scheduler == "pbs":
job_script += ["cd $PBS_O_WORKDIR"]
elif scheduler == "slurm":
job_script += ["cd $SLURM_SUBMIT_DIR"]
if omp_threads:
job_script += ["export OMP_NUM_THREADS={}".format(omp_threads)]
# finally, add the command string to script
if mpi_procs is not None:
if "mpirun" not in cmd and "mpiexec" not in cmd:
mpi = "mpiexec -n {:d} {:s} ".format(mpi_procs, mpi_args)
cmd = "\n".join(
[(mpi + line) if line != "wait" else line for line in cmd.split("\n")]
)
job_script += [cmd]
job_script = "\n".join(job_script)
# create and navigate to workdir
cwd = os.getcwd()
if workdir is None:
workdir = cwd
pwd = workdir
else:
pwd = cwd
if not os.path.exists(workdir):
os.makedirs(workdir)
os.chdir(workdir)
if verbose:
print(workdir)
if debug:
print(job_script)
# create and submit script
prefix = "{}_".format(name if name else "job")
if scheduler == "pbs":
suffix = ".qsub"
else:
suffix = ".slurm"
with tempfile.NamedTemporaryFile(
prefix=prefix, suffix=suffix, mode="w", dir=workdir, delete=delete
) as f:
f.write(job_script)
f.flush()
os.chmod(f.name, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | stat.S_IRGRP)
if submit:
if scheduler == "pbs":
ret = sp.check_output(["qsub"] + batch_args + [f.name]).decode("UTF-8")
jobid = ret.split("\n")[0] # parse jobid
if not re.match("[0-9]+\.[\w]+", jobid):
raise RuntimeError("qsub error:\n{}".format(ret))
elif scheduler == "slurm":
ret = sp.check_output(["sbatch"] + batch_args + [f.name]).decode(
"UTF-8"
)
jobid = ret.split("\n")[0].split()[-1] # parse jobid
if not re.match("[0-9]+", jobid):
raise RuntimeError("slurm error:\n{}".format(ret))
elif debug:
jobid = "314159test"
if submit and not delete:
new = "{}.q{}".format(
name if name else os.path.basename(f.name), jobid.split(".", 1)[0]
)
new = os.path.join(os.path.dirname(f.name), new)
shutil.copy2(f.name, new)
fname = f.name
if submit and not delete:
os.remove(fname)
os.chdir(pwd)
if submit or debug:
if verbose:
print("Job ID: {}\n".format(jobid))
return jobid
else:
return None
def batch_group(cmds, group_by=1, serial=False, *args, **kwargs):
"""
Create and submit SLURM or PBS job scripts for a group of similar commands. The
commands can be grouped together into larger single jobs that run them in
parallel on multiple processors on a node.
Keyword arguments are passed on to the batch_sub function.
These will be applied to EACH job. For example, using ``nodes="1:ppn=8"``
with ``group_by=8`` and 16 elements in cmds will result in 2 jobs, each using
8 processors on 1 node.
Arguments
---------
cmds : list
The commands to run.
The commands themselves should be a string, or a list of tokens, as
per the ``batch_sub`` function.
group_by : int, optional
The number of commands to group together into a single job. Does not
balance well when ``len(cmds)%group_by != 0``
Eg. on scinet use ``group_by=8`` to efficiently use whole nodes.
serial : bool, optional
Set to ``True`` to run cmds sequentially, rather than starting them all
in parallel. This will also work with MPI/OpenMP parallel jobs.
args, kwargs : arb
Additional arguments passed to batch_sub
Returns
-------
jobids : list of strings
List of job IDs used by the scheduler
"""
grouped = []
jobids = []
name = kwargs.pop("name", None)
for i, cmd in enumerate(cmds):
if not isinstance(cmd, str):
cmd = " ".join(cmd)
if group_by > 1 and not serial:
cmd = "{} &".format(cmd)
grouped += [cmd]
if len(grouped) == group_by or i + 1 == len(cmds):
# group is full, or last command. write out a job
if group_by > 1:
grouped += ["wait"]
if name:
if (i + 1 == len(cmds)) and (len(jobids) == 0):
# all jobs in a single group
kwargs["name"] = name
else:
kwargs["name"] = "{}_grp{}".format(name, len(jobids) + 1)
jobid = batch_sub("\n".join(grouped), *args, **kwargs)
if jobid:
jobids.append(jobid)
grouped = []
if jobids:
return jobids
else:
return None
| [
11748,
28686,
198,
11748,
1185,
198,
11748,
4423,
346,
198,
11748,
850,
14681,
355,
599,
198,
11748,
20218,
7753,
198,
11748,
302,
198,
11748,
4818,
8079,
355,
288,
83,
198,
6738,
14601,
1330,
9828,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
1822,
29572,
355,
2471,
198,
198,
834,
439,
834,
796,
14631,
1136,
62,
21858,
62,
6404,
7753,
1600,
366,
43501,
62,
7266,
1600,
366,
43501,
62,
8094,
1600,
366,
33308,
28100,
1713,
46677,
8973,
628,
198,
4299,
651,
62,
21858,
62,
6404,
7753,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2980,
378,
257,
3108,
284,
779,
329,
262,
5072,
2604,
11,
1912,
319,
1693,
2858,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
2604,
7753,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
2604,
2393,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
28686,
13,
1136,
24330,
7203,
47,
4462,
62,
46,
62,
33249,
34720,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
1136,
24330,
7203,
47,
4462,
62,
1677,
53,
4663,
1340,
10979,
4943,
14512,
366,
47,
4462,
62,
41358,
10659,
9306,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
670,
15908,
796,
28686,
13,
1136,
24330,
7203,
47,
4462,
62,
46,
62,
33249,
34720,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
3672,
796,
28686,
13,
1136,
24330,
7203,
47,
4462,
62,
41,
9864,
20608,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
28686,
13,
1136,
24330,
7203,
47,
4462,
62,
41,
9864,
2389,
11074,
35312,
7203,
33283,
352,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
1818,
15908,
11,
45144,
27422,
84,
90,
92,
1911,
18982,
7,
21858,
3672,
11,
1693,
312,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
7753,
796,
6045,
198,
220,
220,
220,
1288,
361,
28686,
13,
1136,
24330,
7203,
8634,
4261,
44,
62,
50,
10526,
36393,
62,
34720,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
670,
15908,
796,
28686,
13,
1136,
24330,
7203,
8634,
4261,
44,
62,
50,
10526,
36393,
62,
34720,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
3672,
796,
28686,
13,
1136,
24330,
7203,
8634,
4261,
44,
62,
41,
9864,
62,
20608,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
28686,
13,
1136,
24330,
7203,
8634,
4261,
44,
62,
41,
9864,
62,
2389,
11074,
35312,
7203,
33283,
352,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1693,
3672,
6624,
366,
41757,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
7753,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
1818,
15908,
11,
45144,
92,
12,
90,
27422,
6404,
1911,
18982,
7,
21858,
3672,
11,
1693,
312,
4008,
198,
220,
220,
220,
1303,
16926,
46,
7716,
1180,
17259,
329,
3294,
7767,
287,
976,
1693,
30,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
7753,
796,
6045,
198,
220,
220,
220,
1441,
2604,
7753,
628,
198,
4299,
5794,
62,
2435,
7,
83,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
18980,
257,
640,
284,
4731,
329,
779,
416,
10662,
7266,
13,
628,
220,
220,
220,
20559,
2886,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
256,
1058,
4818,
8079,
13,
16514,
276,
12514,
2134,
393,
12178,
198,
220,
220,
220,
220,
220,
220,
220,
383,
640,
329,
262,
1693,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
12462,
966,
11,
481,
307,
16173,
287,
2250,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
640,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
3862,
287,
262,
5794,
2938,
416,
6038,
18173,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
83,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
796,
302,
13,
15699,
7203,
26933,
15,
12,
24,
48688,
2599,
26933,
15,
12,
24,
60,
90,
17,
92,
2599,
26933,
15,
12,
24,
60,
90,
17,
30072,
1600,
256,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
285,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
403,
540,
284,
21136,
10662,
7266,
640,
4731,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
289,
71,
11,
8085,
11,
37786,
796,
3975,
7,
600,
11,
285,
13,
24432,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
256,
796,
288,
83,
13,
16514,
276,
12514,
7,
24425,
28,
12337,
11,
2431,
28,
3020,
11,
4201,
28,
824,
8,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
83,
11,
288,
83,
13,
16514,
276,
12514,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
256,
796,
288,
83,
13,
16514,
276,
12514,
7,
24425,
28,
83,
8,
198,
220,
220,
220,
611,
256,
19841,
288,
83,
13,
16514,
276,
12514,
7,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
80,
7266,
640,
1276,
307,
3967,
4943,
198,
220,
220,
220,
2250,
11,
816,
796,
2659,
4666,
7,
83,
13,
43012,
1343,
256,
13,
12545,
1635,
807,
2414,
405,
11,
4570,
405,
8,
198,
220,
220,
220,
2431,
11,
4201,
796,
2659,
4666,
7,
2787,
11,
3126,
8,
198,
220,
220,
220,
1441,
45144,
25,
67,
92,
29164,
25,
2999,
67,
92,
29164,
25,
2999,
67,
92,
1911,
18982,
7,
24425,
11,
2431,
11,
4201,
8,
628,
198,
4299,
15458,
62,
7266,
7,
198,
220,
220,
220,
23991,
11,
198,
220,
220,
220,
1438,
28,
14202,
11,
198,
220,
220,
220,
1066,
28,
14202,
11,
198,
220,
220,
220,
13760,
28,
14202,
11,
198,
220,
220,
220,
10139,
62,
4868,
28,
14202,
11,
198,
220,
220,
220,
9788,
77,
28,
14202,
11,
198,
220,
220,
220,
269,
1996,
28,
14202,
11,
198,
220,
220,
220,
3355,
83,
28,
14202,
11,
198,
220,
220,
220,
5072,
28,
14202,
11,
198,
220,
220,
220,
4049,
28,
14202,
11,
198,
220,
220,
220,
16834,
28,
14202,
11,
198,
220,
220,
220,
1207,
62,
8499,
482,
28,
14202,
11,
198,
220,
220,
220,
670,
15908,
28,
14202,
11,
198,
220,
220,
220,
15458,
62,
22046,
41888,
4357,
198,
220,
220,
220,
267,
3149,
62,
16663,
82,
28,
14202,
11,
198,
220,
220,
220,
285,
14415,
62,
1676,
6359,
28,
14202,
11,
198,
220,
220,
220,
285,
14415,
62,
22046,
2625,
1600,
198,
220,
220,
220,
17365,
62,
12048,
28,
14202,
11,
198,
220,
220,
220,
17365,
28,
14202,
11,
198,
220,
220,
220,
3621,
28,
15,
11,
198,
220,
220,
220,
9809,
28,
17821,
11,
198,
220,
220,
220,
12233,
28,
17821,
11,
198,
220,
220,
220,
9199,
28,
17821,
11,
198,
220,
220,
220,
6038,
18173,
2625,
79,
1443,
1600,
198,
220,
220,
220,
14257,
28,
25101,
11,
198,
220,
220,
220,
19607,
28,
14202,
11,
198,
220,
220,
220,
15942,
577,
28,
25101,
11,
198,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13610,
290,
9199,
257,
12419,
4261,
44,
393,
30051,
1693,
13,
628,
220,
220,
220,
20559,
2886,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
23991,
1058,
4731,
393,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
317,
3141,
8379,
284,
1057,
2884,
12419,
4261,
44,
393,
30051,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
3141,
481,
307,
18846,
656,
257,
10662,
7266,
14498,
4226,
198,
220,
220,
220,
220,
220,
220,
220,
351,
477,
286,
262,
3689,
7368,
287,
262,
5637,
7159,
13,
198,
220,
220,
220,
1438,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
6530,
286,
262,
1693,
13,
198,
220,
220,
220,
1066,
1058,
12178,
393,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
26308,
286,
4088,
284,
2581,
329,
262,
1693,
13,
12178,
3815,
287,
13124,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1471,
1208,
257,
4731,
357,
1533,
705,
19,
22296,
11537,
284,
779,
3264,
13,
198,
220,
220,
220,
13760,
1058,
493,
393,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
7913,
286,
13760,
284,
779,
287,
1693,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
257,
4731,
11,
481,
307,
3804,
355,
12,
271,
284,
30051,
532,
75,
10139,
28,
8271,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
1262,
12419,
4261,
44,
290,
257,
4731,
11,
481,
49312,
10139,
62,
4868,
611,
6045,
198,
220,
220,
220,
10139,
62,
4868,
1058,
4731,
393,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
13760,
326,
460,
307,
973,
329,
1693,
13,
12419,
4261,
44,
12,
8807,
13,
198,
220,
220,
220,
9788,
77,
1058,
493,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
399,
15829,
286,
7767,
583,
10139,
198,
220,
220,
220,
269,
1996,
1058,
4731,
393,
12178,
393,
4818,
8079,
13,
16514,
276,
12514,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
26308,
286,
9135,
640,
9167,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
3815,
815,
307,
287,
262,
5794,
47138,
25,
12038,
25,
5432,
11,
304,
13,
70,
13,
705,
940,
25,
405,
25,
405,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
399,
6975,
605,
3815,
389,
16173,
355,
257,
1271,
286,
2250,
13,
198,
220,
220,
220,
3355,
83,
1058,
4731,
393,
12178,
393,
4818,
8079,
13,
16514,
276,
12514,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
26308,
286,
3355,
8801,
640,
9167,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
3815,
815,
307,
287,
262,
5794,
47138,
25,
12038,
25,
5432,
11,
304,
13,
70,
13,
705,
940,
25,
405,
25,
405,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
399,
6975,
605,
3815,
389,
16173,
355,
257,
1271,
286,
2250,
13,
198,
220,
220,
220,
5072,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
30051,
3210,
5072,
29472,
13,
198,
220,
220,
220,
4049,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
30051,
4049,
5072,
29472,
13,
198,
220,
220,
220,
16834,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1438,
286,
262,
16834,
284,
543,
284,
9199,
3946,
198,
220,
220,
220,
1207,
62,
8499,
482,
1058,
4731,
393,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
37947,
1387,
13,
15768,
4522,
357,
273,
32373,
8,
319,
543,
284,
4043,
329,
4388,
11939,
11,
198,
220,
220,
220,
220,
220,
220,
220,
878,
3599,
428,
1693,
198,
220,
220,
220,
670,
15908,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
27387,
422,
810,
262,
4226,
481,
307,
8948,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
318,
810,
262,
5072,
290,
4049,
3696,
481,
307,
2727,
198,
220,
220,
220,
220,
220,
220,
220,
416,
4277,
13,
220,
15161,
25,
1459,
8619,
13,
198,
220,
220,
220,
15458,
62,
22046,
1058,
4731,
393,
1351,
286,
13042,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
4377,
3224,
7159,
284,
1208,
284,
40066,
76,
14,
79,
1443,
13,
198,
220,
220,
220,
267,
3149,
62,
16663,
82,
1058,
493,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
7913,
286,
4946,
7378,
14390,
284,
779,
583,
1429,
198,
220,
220,
220,
285,
14415,
62,
1676,
6359,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
7913,
286,
4904,
40,
7767,
284,
779,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7559,
3149,
343,
403,
15506,
3848,
481,
307,
2087,
284,
477,
3951,
286,
23991,
355,
2622,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
23991,
4909,
7559,
3149,
343,
403,
15506,
393,
7559,
3149,
494,
87,
721,
15506,
11,
428,
857,
2147,
13,
198,
220,
220,
220,
285,
14415,
62,
22046,
1058,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
15891,
3141,
1627,
7159,
329,
18846,
7559,
3149,
343,
403,
15506,
9729,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
23991,
4909,
7559,
3149,
343,
403,
15506,
393,
7559,
3149,
494,
87,
721,
15506,
11,
428,
857,
2147,
13,
198,
220,
220,
220,
17365,
62,
12048,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
4226,
284,
2723,
1141,
1693,
4226,
662,
321,
903,
198,
220,
220,
220,
220,
220,
220,
220,
1114,
11046,
13103,
11,
4634,
2858,
9633,
11,
3503,
198,
220,
220,
220,
17365,
1058,
8633,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
28261,
286,
2858,
9633,
284,
900,
287,
1693,
4226,
198,
220,
220,
220,
3621,
1058,
493,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
20292,
26925,
8475,
357,
8634,
4261,
44,
691,
737,
13667,
422,
532,
27641,
357,
35323,
198,
220,
220,
220,
220,
220,
220,
220,
8475,
8,
284,
23336,
357,
9319,
395,
8475,
737,
198,
220,
220,
220,
220,
220,
220,
220,
5740,
25,
4036,
8948,
1377,
44460,
1988,
318,
23336,
2440,
11,
1201,
4633,
198,
220,
220,
220,
220,
220,
220,
220,
3815,
2421,
2041,
11941,
13,
198,
220,
220,
220,
9809,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
10127,
284,
779,
27334,
366,
2617,
532,
87,
1,
287,
1693,
4226,
284,
9809,
9729,
284,
14367,
448,
13,
198,
220,
220,
220,
12233,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
6407,
11,
12233,
262,
9199,
4226,
2402,
1693,
14498,
13,
198,
220,
220,
220,
9199,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
6407,
357,
12286,
8,
9199,
262,
1693,
4226,
1752,
2251,
13,
2561,
20957,
262,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
3038,
618,
10352,
11,
284,
1394,
262,
4226,
198,
220,
220,
220,
6038,
18173,
1058,
4731,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
9022,
6038,
18173,
1080,
284,
3551,
257,
4226,
329,
13,
1881,
286,
366,
79,
1443,
1,
393,
366,
6649,
333,
76,
1,
198,
220,
220,
220,
14257,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
6407,
11,
3601,
262,
10154,
286,
262,
1693,
4226,
284,
14367,
448,
329,
28769,
13,
198,
220,
220,
220,
19607,
1058,
4731,
393,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
13760,
326,
481,
307,
15009,
329,
1693,
13,
12419,
4261,
44,
12,
8807,
13,
198,
220,
220,
220,
15942,
577,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
12578,
262,
1762,
8619,
11,
290,
262,
1693,
4522,
611,
8948,
7675,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
1693,
312,
1058,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
383,
4522,
286,
262,
8948,
1693,
13,
628,
220,
220,
220,
17934,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
13163,
1693,
312,
796,
15458,
62,
7266,
7203,
30328,
18435,
1600,
1438,
2625,
33407,
1600,
13760,
2625,
16,
25,
381,
77,
28,
16,
1600,
198,
220,
220,
220,
2644,
269,
1996,
11639,
16,
25,
405,
25,
405,
3256,
1066,
11639,
16,
22296,
11537,
198,
220,
220,
220,
13163,
3601,
7,
21858,
312,
8,
198,
220,
220,
220,
2534,
1157,
1415,
13,
5036,
2047,
805,
13,
1050,
1939,
18483,
13,
15532,
198,
220,
220,
220,
13163,
3601,
7,
9654,
10786,
33407,
13,
78,
1828,
1157,
1415,
41707,
81,
27691,
961,
28955,
198,
220,
220,
220,
18435,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
318,
39098,
7,
28758,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
366,
27071,
22179,
7,
28758,
8,
198,
220,
220,
220,
6038,
18173,
796,
6038,
18173,
13,
21037,
3419,
198,
220,
220,
220,
611,
1066,
318,
407,
6045,
290,
407,
318,
39098,
7,
11883,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1066,
1279,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
6038,
18173,
6624,
366,
79,
1443,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
796,
45144,
25,
67,
92,
2022,
1911,
18982,
7,
600,
7,
37659,
13,
344,
346,
7,
11883,
1635,
28119,
13,
15,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
6038,
18173,
6624,
366,
6649,
333,
76,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
796,
45144,
25,
67,
92,
1911,
18982,
7,
600,
7,
37659,
13,
344,
346,
7,
11883,
1635,
28119,
13,
15,
22305,
198,
220,
220,
220,
611,
318,
39098,
7,
10378,
62,
8499,
482,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1207,
62,
8499,
482,
796,
685,
10378,
62,
8499,
482,
60,
198,
220,
220,
220,
611,
318,
39098,
7,
43501,
62,
22046,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
22046,
796,
15458,
62,
22046,
13,
35312,
3419,
198,
220,
220,
220,
611,
407,
14257,
290,
407,
9199,
25,
198,
220,
220,
220,
220,
220,
220,
220,
12233,
796,
10352,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
796,
493,
7,
77,
4147,
8,
198,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13760,
318,
257,
4731,
326,
338,
407,
41637,
284,
493,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6038,
18173,
6624,
366,
6649,
333,
76,
1,
290,
10139,
62,
4868,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
4868,
796,
13760,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13760,
796,
352,
628,
220,
220,
220,
1693,
62,
12048,
796,
14631,
2,
48443,
14629,
14,
8800,
14,
24330,
27334,
8973,
628,
220,
220,
220,
1303,
16926,
46,
460,
3863,
6330,
10107,
3038,
351,
617,
11353,
13326,
198,
220,
220,
220,
611,
6038,
18173,
6624,
366,
79,
1443,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
30051,
13639,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
45,
46110,
82,
92,
1911,
18982,
7,
3672,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1066,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
75,
1066,
34758,
25,
82,
92,
1911,
18982,
7,
11883,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13760,
290,
9788,
77,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
75,
13760,
34758,
38362,
381,
77,
34758,
92,
1911,
18982,
7,
77,
4147,
11,
9788,
77,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
269,
1996,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
75,
269,
1996,
34758,
25,
82,
92,
1911,
18982,
7,
18982,
62,
2435,
7,
66,
1996,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3355,
83,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
75,
3355,
2435,
34758,
25,
82,
92,
1911,
18982,
7,
18982,
62,
2435,
7,
11930,
83,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
78,
46110,
82,
92,
1911,
18982,
7,
22915,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
68,
46110,
82,
92,
1911,
18982,
7,
18224,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
16834,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
80,
46110,
82,
92,
1911,
18982,
7,
36560,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1207,
62,
8499,
482,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
47,
4462,
532,
54,
4745,
28,
8499,
482,
29164,
92,
1911,
18982,
7,
1298,
1911,
22179,
7,
10378,
62,
8499,
482,
4008,
60,
628,
220,
220,
220,
1288,
361,
6038,
18173,
6624,
366,
6649,
333,
76,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
40066,
76,
13639,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
21858,
12,
3672,
34758,
25,
82,
92,
1911,
18982,
7,
3672,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1066,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
11883,
34758,
25,
82,
92,
1911,
18982,
7,
11883,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13760,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
77,
4147,
34758,
92,
1911,
18982,
7,
77,
4147,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
62,
4868,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
17440,
62,
4868,
8,
1875,
352,
290,
407,
318,
39098,
7,
17440,
62,
4868,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
4868,
796,
366,
553,
13,
22179,
7,
17440,
62,
4868,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
77,
375,
46331,
34758,
92,
1911,
18982,
7,
17440,
62,
4868,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
19607,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
1069,
9152,
8,
1875,
352,
290,
407,
318,
39098,
7,
1069,
9152,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19607,
796,
366,
553,
13,
22179,
7,
1069,
9152,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
18896,
7,
1069,
9152,
8,
6624,
352,
290,
407,
318,
39098,
7,
1069,
9152,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19607,
796,
19607,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
1069,
9152,
34758,
92,
1911,
18982,
7,
1069,
9152,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9788,
77,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
429,
6791,
12,
525,
12,
17440,
34758,
92,
1911,
18982,
7,
381,
77,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
267,
3149,
62,
16663,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
13155,
385,
12,
525,
12,
35943,
34758,
92,
1911,
18982,
7,
3361,
62,
16663,
82,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
269,
1996,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3355,
83,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9828,
7203,
12814,
9135,
640,
355,
3355,
640,
329,
40066,
76,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
2435,
34758,
25,
82,
92,
1911,
18982,
7,
18982,
62,
2435,
7,
66,
1996,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9828,
7203,
32916,
3255,
9135,
640,
329,
40066,
76,
11,
1262,
3355,
640,
691,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3355,
83,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
2435,
34758,
25,
82,
92,
1911,
18982,
7,
18982,
62,
2435,
7,
11930,
83,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3621,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3621,
15853,
23336,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
44460,
34758,
92,
1911,
18982,
7,
44460,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
22915,
34758,
25,
82,
92,
1911,
18982,
7,
22915,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
18224,
34758,
25,
82,
92,
1911,
18982,
7,
18224,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
16834,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2,
16811,
11417,
1377,
3911,
653,
34758,
25,
82,
92,
1911,
18982,
7,
36560,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1207,
62,
8499,
482,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25113,
16811,
11417,
1377,
45841,
1387,
28,
8499,
482,
29164,
92,
1911,
18982,
7,
1298,
1911,
22179,
7,
10378,
62,
8499,
482,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
628,
220,
220,
220,
1303,
2251,
1693,
4226,
662,
321,
903,
198,
220,
220,
220,
611,
9809,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
2617,
532,
87,
8973,
198,
220,
220,
220,
611,
17365,
62,
12048,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
24330,
62,
12048,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
23722,
407,
1064,
2858,
4226,
25,
23884,
1911,
18982,
7,
24330,
62,
12048,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
10459,
23884,
1911,
18982,
7,
24330,
62,
12048,
15437,
198,
220,
220,
220,
611,
17365,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
479,
11,
410,
287,
17365,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
39344,
23884,
34758,
92,
1911,
18982,
7,
74,
11,
410,
15437,
198,
220,
220,
220,
611,
6038,
18173,
6624,
366,
79,
1443,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
10210,
720,
47,
4462,
62,
46,
62,
33249,
34720,
8973,
198,
220,
220,
220,
1288,
361,
6038,
18173,
6624,
366,
6649,
333,
76,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
10210,
720,
8634,
4261,
44,
62,
50,
10526,
36393,
62,
34720,
8973,
198,
220,
220,
220,
611,
267,
3149,
62,
16663,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1693,
62,
12048,
15853,
14631,
39344,
440,
7378,
62,
41359,
62,
4221,
15675,
50,
34758,
92,
1911,
18982,
7,
3361,
62,
16663,
82,
15437,
628,
220,
220,
220,
1303,
3443,
11,
751,
262,
3141,
4731,
284,
4226,
198,
220,
220,
220,
611,
285,
14415,
62,
1676,
6359,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
3149,
343,
403,
1,
407,
287,
23991,
290,
366,
3149,
494,
87,
721,
1,
407,
287,
23991,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
14415,
796,
366,
3149,
494,
87,
721,
532,
77,
46110,
67,
92,
46110,
82,
92,
27071,
18982,
7,
3149,
72,
62,
1676,
6359,
11,
285,
14415,
62,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
37082,
77,
1911,
22179,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47527,
3149,
72,
1343,
1627,
8,
611,
1627,
14512,
366,
17077,
1,
2073,
1627,
329,
1627,
287,
23991,
13,
35312,
7203,
59,
77,
4943,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1693,
62,
12048,
15853,
685,
28758,
60,
198,
220,
220,
220,
1693,
62,
12048,
796,
37082,
77,
1911,
22179,
7,
21858,
62,
12048,
8,
628,
220,
220,
220,
1303,
2251,
290,
16500,
284,
670,
15908,
198,
220,
220,
220,
269,
16993,
796,
28686,
13,
1136,
66,
16993,
3419,
198,
220,
220,
220,
611,
670,
15908,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
670,
15908,
796,
269,
16993,
198,
220,
220,
220,
220,
220,
220,
220,
279,
16993,
796,
670,
15908,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
279,
16993,
796,
269,
16993,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
1818,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
76,
4335,
17062,
7,
1818,
15908,
8,
198,
220,
220,
220,
28686,
13,
354,
15908,
7,
1818,
15908,
8,
198,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
1818,
15908,
8,
628,
220,
220,
220,
611,
14257,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
21858,
62,
12048,
8,
628,
220,
220,
220,
1303,
2251,
290,
9199,
4226,
198,
220,
220,
220,
21231,
796,
45144,
92,
62,
1911,
18982,
7,
3672,
611,
1438,
2073,
366,
21858,
4943,
198,
220,
220,
220,
611,
6038,
18173,
6624,
366,
79,
1443,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
35488,
796,
27071,
80,
7266,
1,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
35488,
796,
27071,
6649,
333,
76,
1,
198,
220,
220,
220,
351,
20218,
7753,
13,
45,
2434,
12966,
5551,
8979,
7,
198,
220,
220,
220,
220,
220,
220,
220,
21231,
28,
40290,
11,
35488,
28,
37333,
844,
11,
4235,
2625,
86,
1600,
26672,
28,
1818,
15908,
11,
12233,
28,
33678,
198,
220,
220,
220,
1267,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
21858,
62,
12048,
8,
198,
220,
220,
220,
220,
220,
220,
220,
277,
13,
25925,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
4666,
7,
69,
13,
3672,
11,
1185,
13,
50,
62,
4663,
2937,
49,
930,
1185,
13,
50,
62,
40,
54,
2937,
49,
930,
1185,
13,
50,
62,
10426,
2937,
49,
930,
1185,
13,
50,
62,
4663,
10761,
47,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9199,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6038,
18173,
6624,
366,
79,
1443,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
796,
599,
13,
9122,
62,
22915,
7,
14692,
80,
7266,
8973,
1343,
15458,
62,
22046,
1343,
685,
69,
13,
3672,
35944,
12501,
1098,
7203,
48504,
12,
23,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
1005,
13,
35312,
7203,
59,
77,
4943,
58,
15,
60,
220,
1303,
21136,
1693,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
302,
13,
15699,
7203,
58,
15,
12,
24,
48688,
59,
3693,
59,
86,
48688,
1600,
1693,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
80,
7266,
4049,
7479,
77,
90,
92,
1911,
18982,
7,
1186,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
6038,
18173,
6624,
366,
6649,
333,
76,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
796,
599,
13,
9122,
62,
22915,
7,
14692,
36299,
963,
8973,
1343,
15458,
62,
22046,
1343,
685,
69,
13,
3672,
35944,
12501,
1098,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
48504,
12,
23,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
1005,
13,
35312,
7203,
59,
77,
4943,
58,
15,
4083,
35312,
3419,
58,
12,
16,
60,
220,
1303,
21136,
1693,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
302,
13,
15699,
7203,
58,
15,
12,
24,
48688,
1600,
1693,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
6649,
333,
76,
4049,
7479,
77,
90,
92,
1911,
18982,
7,
1186,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
14257,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
366,
33638,
19707,
9288,
1,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9199,
290,
407,
12233,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
796,
45144,
27422,
80,
90,
92,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
611,
1438,
2073,
28686,
13,
6978,
13,
12093,
12453,
7,
69,
13,
3672,
828,
1693,
312,
13,
35312,
7203,
33283,
352,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
796,
28686,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
69,
13,
3672,
828,
649,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4423,
346,
13,
30073,
17,
7,
69,
13,
3672,
11,
649,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
3672,
796,
277,
13,
3672,
628,
220,
220,
220,
611,
9199,
290,
407,
12233,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
7,
69,
3672,
8,
628,
220,
220,
220,
28686,
13,
354,
15908,
7,
79,
16993,
8,
628,
220,
220,
220,
611,
9199,
393,
14257,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
33308,
4522,
25,
23884,
59,
77,
1911,
18982,
7,
21858,
312,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1693,
312,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
198,
4299,
15458,
62,
8094,
7,
28758,
82,
11,
1448,
62,
1525,
28,
16,
11,
11389,
28,
25101,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13610,
290,
9199,
12419,
4261,
44,
393,
30051,
1693,
14750,
329,
257,
1448,
286,
2092,
9729,
13,
383,
198,
220,
220,
220,
9729,
460,
307,
32824,
1978,
656,
4025,
2060,
3946,
326,
1057,
606,
287,
198,
220,
220,
220,
10730,
319,
3294,
20399,
319,
257,
10139,
13,
628,
220,
220,
220,
7383,
4775,
7159,
389,
3804,
319,
284,
262,
15458,
62,
7266,
2163,
13,
198,
220,
220,
220,
2312,
481,
307,
5625,
284,
412,
16219,
1693,
13,
1114,
1672,
11,
1262,
7559,
77,
4147,
2625,
16,
25,
381,
77,
28,
23,
1,
15506,
198,
220,
220,
220,
351,
7559,
8094,
62,
1525,
28,
23,
15506,
290,
1467,
4847,
287,
23991,
82,
481,
1255,
287,
362,
3946,
11,
1123,
1262,
198,
220,
220,
220,
807,
20399,
319,
352,
10139,
13,
628,
220,
220,
220,
20559,
2886,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
23991,
82,
1058,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
383,
9729,
284,
1057,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
9729,
2405,
815,
307,
257,
4731,
11,
393,
257,
1351,
286,
16326,
11,
355,
198,
220,
220,
220,
220,
220,
220,
220,
583,
262,
7559,
43501,
62,
7266,
15506,
2163,
13,
198,
220,
220,
220,
1448,
62,
1525,
1058,
493,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1271,
286,
9729,
284,
1448,
1978,
656,
257,
2060,
1693,
13,
8314,
407,
198,
220,
220,
220,
220,
220,
220,
220,
5236,
880,
618,
7559,
11925,
7,
28758,
82,
8,
4,
8094,
62,
1525,
14512,
657,
15506,
198,
220,
220,
220,
220,
220,
220,
220,
36386,
13,
319,
629,
42504,
779,
7559,
8094,
62,
1525,
28,
23,
15506,
284,
18306,
779,
2187,
13760,
13,
198,
220,
220,
220,
11389,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
5345,
284,
7559,
17821,
15506,
284,
1057,
23991,
82,
4726,
3746,
11,
2138,
621,
3599,
606,
477,
198,
220,
220,
220,
220,
220,
220,
220,
287,
10730,
13,
770,
481,
635,
670,
351,
4904,
40,
14,
11505,
7378,
10730,
3946,
13,
198,
220,
220,
220,
26498,
11,
479,
86,
22046,
1058,
610,
65,
198,
220,
220,
220,
220,
220,
220,
220,
15891,
7159,
3804,
284,
15458,
62,
7266,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
1693,
2340,
1058,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
1693,
32373,
973,
416,
262,
6038,
18173,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
32824,
796,
17635,
198,
220,
220,
220,
1693,
2340,
796,
17635,
628,
220,
220,
220,
1438,
796,
479,
86,
22046,
13,
12924,
7203,
3672,
1600,
6045,
8,
628,
220,
220,
220,
329,
1312,
11,
23991,
287,
27056,
378,
7,
28758,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
28758,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
366,
27071,
22179,
7,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1448,
62,
1525,
1875,
352,
290,
407,
11389,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
45144,
92,
1222,
1911,
18982,
7,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
32824,
15853,
685,
28758,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
8094,
276,
8,
6624,
1448,
62,
1525,
393,
1312,
1343,
352,
6624,
18896,
7,
28758,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1448,
318,
1336,
11,
393,
938,
3141,
13,
3551,
503,
257,
1693,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1448,
62,
1525,
1875,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32824,
15853,
14631,
17077,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
72,
1343,
352,
6624,
18896,
7,
28758,
82,
4008,
290,
357,
11925,
7,
21858,
2340,
8,
6624,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
477,
3946,
287,
257,
2060,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
3672,
8973,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
3672,
8973,
796,
45144,
92,
62,
2164,
79,
90,
92,
1911,
18982,
7,
3672,
11,
18896,
7,
21858,
2340,
8,
1343,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
312,
796,
15458,
62,
7266,
7203,
59,
77,
1911,
22179,
7,
8094,
276,
828,
1635,
22046,
11,
12429,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1693,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1693,
2340,
13,
33295,
7,
21858,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32824,
796,
17635,
628,
220,
220,
220,
611,
1693,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1693,
2340,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628
] | 2.245304 | 7,028 |
import torch
import torch.nn as nn
import torch.optim as optim
import torch.autograd as autograd
import torch.nn.functional as F
import random
import os
from abc import ABC, abstractmethod
class Algorithm(ABC):
"""
Abstract class.
"""
@abstractmethod
@abstractmethod
@abstractmethod
@abstractmethod
@staticmethod
# TODO:
# TODO:
class DQN(Algorithm):
"""
Deep Q-Networks Algorithm
"""
# def act(self, state):
# self.epsilon = 80 - self.n_games
#
# if random.randint(0, 200) < self.epsilon:
# move = random.randint(0, self.output_dim - 1)
# final_move = move
# else:
# prediction = self.actor(state)
# move = torch.argmax(prediction).item()
# final_move = move
#
# return final_move
# def compute_loss(self, replay_buffer):
#
# state, action, reward, next_state, done = replay_buffer.get_random()
# state = torch.vstack(state)
# next_state = torch.vstack(next_state)
# t_action = self.tuple_to_tensor(action)
# t_reward = self.tuple_to_tensor(reward)
# t_done = self.tuple_to_tensor(done)
# q_values = self.actor(state) # q(s)
#
# next_q_values = self.critic(next_state) # q(s')
#
# q_value = q_values.gather(1, t_action)
# next_q_value = next_q_values.max(1)[0]
#
# expected_q_value = t_reward + self.gamma * next_q_value * (torch.LongTensor([1]) - t_done)
# loss = (q_value - expected_q_value.data).pow(2).mean()
#
# self.optimizer.zero_grad()
# loss.backward()
# self.optimizer.step()
#
# return loss
# class ValueIteration():
# def __init__(self):
# self.state_list = [0 for _ in range(360)]
# self.transition_probability = [0.5,0.5]
#
# def act(self):
# usage model = DQL()
# TODO: Need to change it. It's copied
# # This is my own
# def compute_single_loss(self,state, action, reward, next_state, done):
#
# # state, action, reward, next_state, done #= zip(*replay_buffer.get_random())
#
# t_action = torch.tensor(action)
# t_reward = torch.tensor(reward)
# t_done = torch.tensor(done,dtype = int)
#
# pred = self.model(state)
# q_values = self.model(state)
# target = pred.clone()
#
# next_q_values = self.model(next_state)
#
# q_value = (q_values * t_action)
#
# q_value = torch.sum(q_value)
#
# next_q_value = next_q_values.max().item()
#
# expected_q_value = t_reward + self.gamma * next_q_value * (torch.LongTensor([1]) - t_done)
# loss = (q_value - expected_q_value.data).pow(2).mean()
#
# self.optimizer.zero_grad()
# loss.backward()
# self.optimizer.step()
#
# return loss
#
# # This is my own
# def compute_batch_loss(self, state, action, reward, next_state, done):
#
# # with torch.no_grad():
# state = torch.vstack(state)
# next_state = torch.vstack(next_state)
# t_action = self.tuple_to_tensor(action)
# t_action = torch.squeeze(t_action,1)
# t_reward = self.tuple_to_tensor(reward)
# t_done = self.tuple_to_tensor(done)
# pred = self.model(state)
# q_values = self.model(state)
# target = pred.clone()
# next_q_values = self.model(next_state)
# q_value = (q_values*t_action)
# q_value = torch.sum(q_value,dim = 1)
# #print(q_value)
# #q_value = q_values.gather(1, torch.argmax(t_action[:]))
# next_q_value = next_q_values.max(1)[0]
# expected_q_value = t_reward + self.gamma * next_q_value * (torch.LongTensor([1]) - t_done)
# loss = (q_value - expected_q_value.data).pow(2).mean()
# self.optimizer.zero_grad()
# loss.backward()
# self.optimizer.step()
#
# return loss
| [
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
40085,
355,
6436,
198,
11748,
28034,
13,
2306,
519,
6335,
355,
1960,
519,
6335,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
11748,
4738,
198,
11748,
28686,
198,
6738,
450,
66,
1330,
9738,
11,
12531,
24396,
628,
198,
4871,
978,
42289,
7,
24694,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27741,
1398,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
198,
2,
16926,
46,
25,
628,
198,
2,
16926,
46,
25,
628,
198,
4871,
360,
48,
45,
7,
2348,
42289,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10766,
1195,
12,
7934,
5225,
978,
42289,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
825,
719,
7,
944,
11,
1181,
2599,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
538,
18217,
261,
796,
4019,
532,
2116,
13,
77,
62,
19966,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
611,
4738,
13,
25192,
600,
7,
15,
11,
939,
8,
1279,
2116,
13,
538,
18217,
261,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1445,
796,
4738,
13,
25192,
600,
7,
15,
11,
2116,
13,
22915,
62,
27740,
532,
352,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
21084,
796,
1445,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
17724,
796,
2116,
13,
11218,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1445,
796,
28034,
13,
853,
9806,
7,
28764,
2867,
737,
9186,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
21084,
796,
1445,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1441,
2457,
62,
21084,
628,
220,
220,
220,
1303,
825,
24061,
62,
22462,
7,
944,
11,
24788,
62,
22252,
2599,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1181,
11,
2223,
11,
6721,
11,
1306,
62,
5219,
11,
1760,
796,
24788,
62,
22252,
13,
1136,
62,
25120,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1181,
796,
28034,
13,
85,
25558,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1306,
62,
5219,
796,
28034,
13,
85,
25558,
7,
19545,
62,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
2673,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
2673,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
260,
904,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
260,
904,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
28060,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
28060,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
10662,
62,
27160,
796,
2116,
13,
11218,
7,
5219,
8,
220,
1303,
10662,
7,
82,
8,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1306,
62,
80,
62,
27160,
796,
2116,
13,
22213,
291,
7,
19545,
62,
5219,
8,
220,
1303,
10662,
7,
82,
11537,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
10662,
62,
8367,
796,
10662,
62,
27160,
13,
70,
1032,
7,
16,
11,
256,
62,
2673,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1306,
62,
80,
62,
8367,
796,
1306,
62,
80,
62,
27160,
13,
9806,
7,
16,
38381,
15,
60,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2938,
62,
80,
62,
8367,
796,
256,
62,
260,
904,
1343,
2116,
13,
28483,
2611,
1635,
1306,
62,
80,
62,
8367,
1635,
357,
13165,
354,
13,
14617,
51,
22854,
26933,
16,
12962,
532,
256,
62,
28060,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2994,
796,
357,
80,
62,
8367,
532,
2938,
62,
80,
62,
8367,
13,
7890,
737,
79,
322,
7,
17,
737,
32604,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
22570,
62,
9744,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2994,
13,
1891,
904,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
9662,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1441,
2994,
628,
198,
2,
1398,
11052,
29993,
341,
33529,
198,
2,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
5219,
62,
4868,
796,
685,
15,
329,
4808,
287,
2837,
7,
15277,
15437,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7645,
653,
62,
1676,
65,
1799,
796,
685,
15,
13,
20,
11,
15,
13,
20,
60,
198,
2,
198,
2,
220,
220,
220,
220,
825,
719,
7,
944,
2599,
628,
628,
198,
2,
8748,
2746,
796,
360,
9711,
3419,
628,
220,
220,
220,
1303,
16926,
46,
25,
10664,
284,
1487,
340,
13,
632,
338,
18984,
628,
220,
220,
220,
1303,
1303,
770,
318,
616,
898,
198,
220,
220,
220,
1303,
825,
24061,
62,
29762,
62,
22462,
7,
944,
11,
5219,
11,
2223,
11,
6721,
11,
1306,
62,
5219,
11,
1760,
2599,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1303,
1181,
11,
2223,
11,
6721,
11,
1306,
62,
5219,
11,
1760,
1303,
28,
19974,
46491,
260,
1759,
62,
22252,
13,
1136,
62,
25120,
28955,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
2673,
796,
28034,
13,
83,
22854,
7,
2673,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
260,
904,
796,
28034,
13,
83,
22854,
7,
260,
904,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
256,
62,
28060,
220,
796,
28034,
13,
83,
22854,
7,
28060,
11,
67,
4906,
796,
493,
8,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2747,
796,
2116,
13,
19849,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
10662,
62,
27160,
796,
2116,
13,
19849,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2496,
796,
2747,
13,
21018,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1306,
62,
80,
62,
27160,
796,
2116,
13,
19849,
7,
19545,
62,
5219,
8,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
10662,
62,
8367,
796,
357,
80,
62,
27160,
1635,
256,
62,
2673,
8,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
10662,
62,
8367,
796,
28034,
13,
16345,
7,
80,
62,
8367,
8,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1306,
62,
80,
62,
8367,
796,
1306,
62,
80,
62,
27160,
13,
9806,
22446,
9186,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2938,
62,
80,
62,
8367,
796,
256,
62,
260,
904,
1343,
2116,
13,
28483,
2611,
1635,
1306,
62,
80,
62,
8367,
1635,
357,
13165,
354,
13,
14617,
51,
22854,
26933,
16,
12962,
532,
256,
62,
28060,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2994,
796,
357,
80,
62,
8367,
532,
2938,
62,
80,
62,
8367,
13,
7890,
737,
79,
322,
7,
17,
737,
32604,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
22570,
62,
9744,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2994,
13,
1891,
904,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
9662,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1441,
2994,
198,
220,
220,
220,
1303,
628,
220,
220,
220,
1303,
1303,
770,
318,
616,
898,
198,
220,
220,
220,
1303,
825,
24061,
62,
43501,
62,
22462,
7,
944,
11,
1181,
11,
2223,
11,
6721,
11,
1306,
62,
5219,
11,
1760,
2599,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
351,
28034,
13,
3919,
62,
9744,
33529,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1181,
796,
28034,
13,
85,
25558,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
5219,
796,
28034,
13,
85,
25558,
7,
19545,
62,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
2673,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
2673,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
2673,
796,
28034,
13,
16485,
1453,
2736,
7,
83,
62,
2673,
11,
16,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
260,
904,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
260,
904,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
28060,
796,
2116,
13,
83,
29291,
62,
1462,
62,
83,
22854,
7,
28060,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2747,
796,
2116,
13,
19849,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
62,
27160,
796,
2116,
13,
19849,
7,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
796,
2747,
13,
21018,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
80,
62,
27160,
796,
2116,
13,
19849,
7,
19545,
62,
5219,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
62,
8367,
796,
357,
80,
62,
27160,
9,
83,
62,
2673,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
62,
8367,
796,
28034,
13,
16345,
7,
80,
62,
8367,
11,
27740,
796,
352,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
80,
62,
8367,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
80,
62,
8367,
796,
10662,
62,
27160,
13,
70,
1032,
7,
16,
11,
28034,
13,
853,
9806,
7,
83,
62,
2673,
58,
47715,
4008,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
80,
62,
8367,
796,
1306,
62,
80,
62,
27160,
13,
9806,
7,
16,
38381,
15,
60,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
80,
62,
8367,
796,
256,
62,
260,
904,
1343,
2116,
13,
28483,
2611,
1635,
1306,
62,
80,
62,
8367,
1635,
357,
13165,
354,
13,
14617,
51,
22854,
26933,
16,
12962,
532,
256,
62,
28060,
8,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2994,
796,
357,
80,
62,
8367,
532,
2938,
62,
80,
62,
8367,
13,
7890,
737,
79,
322,
7,
17,
737,
32604,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
22570,
62,
9744,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2994,
13,
1891,
904,
3419,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
40085,
7509,
13,
9662,
3419,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2994,
628,
628,
628
] | 2.0421 | 2,019 |
import random
######## Test Cases
example = [23171, 21011, 21123, 21366, 21013, 21367]
v_pattern = [40, 30, 20, 10, 20, 30, 40]
simple_desc = [50, 40, 30, 20, 10]
simple_asc = [10, 20, 30, 40, 50]
empty = []
simple = [0, 200000]
two_hills = [30, 20, 22, 24, 26, 28, 20, 10, 0, 2, 4, 7]
max_profit_after_max_and_before_min = [25, 30, 100, 30, 40, 0, 5]
medium_1 = [99, 1, 2, 3, 4, 5] * 100
large_1 = [99, 1, 2, 3, 4, 5, 6] * 10000
first, second = [i for i in range(100000, 120000)], [i for i in range(100000)]
large_2 = [random.sample(first, k=1)[0] for i in range(200000)] + [random.sample(second, k=1)[0] for i in range(200000)]
third = [i for i in range(200000)]
large_3 = [random.sample(third, k=1)[0] for i in range(200000)]
test_cases = [example, v_pattern, simple_desc, simple_asc, empty, simple, two_hills,
max_profit_after_max_and_before_min, medium_1, large_1, large_2, large_3]
######## Runs
for test_case in test_cases:
try:
print(solution(test_case))
except:
print("Your codes produced a run-time error for this test.")
######## Expected Output
"""
356
30
0
40
0
200000
8
75
98
98
random but should be close to 100,000
random but should be close to 200,000
"""
| [
11748,
4738,
628,
198,
198,
7804,
6208,
35536,
198,
20688,
796,
685,
1954,
27192,
11,
2310,
28555,
11,
2310,
10163,
11,
28658,
2791,
11,
2310,
30273,
11,
28658,
3134,
60,
198,
85,
62,
33279,
796,
685,
1821,
11,
1542,
11,
1160,
11,
838,
11,
1160,
11,
1542,
11,
2319,
60,
198,
36439,
62,
20147,
796,
685,
1120,
11,
2319,
11,
1542,
11,
1160,
11,
838,
60,
198,
36439,
62,
3372,
796,
685,
940,
11,
1160,
11,
1542,
11,
2319,
11,
2026,
60,
198,
28920,
796,
17635,
198,
36439,
796,
685,
15,
11,
939,
830,
60,
198,
11545,
62,
71,
2171,
796,
685,
1270,
11,
1160,
11,
2534,
11,
1987,
11,
2608,
11,
2579,
11,
1160,
11,
838,
11,
657,
11,
362,
11,
604,
11,
767,
60,
198,
9806,
62,
9183,
62,
8499,
62,
9806,
62,
392,
62,
19052,
62,
1084,
796,
685,
1495,
11,
1542,
11,
1802,
11,
1542,
11,
2319,
11,
657,
11,
642,
60,
198,
24132,
62,
16,
796,
685,
2079,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
60,
1635,
1802,
198,
11664,
62,
16,
796,
685,
2079,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
60,
1635,
33028,
198,
11085,
11,
1218,
796,
685,
72,
329,
1312,
287,
2837,
7,
3064,
830,
11,
1105,
2388,
8,
4357,
685,
72,
329,
1312,
287,
2837,
7,
3064,
830,
15437,
198,
11664,
62,
17,
796,
685,
25120,
13,
39873,
7,
11085,
11,
479,
28,
16,
38381,
15,
60,
329,
1312,
287,
2837,
7,
33470,
15437,
1343,
685,
25120,
13,
39873,
7,
12227,
11,
479,
28,
16,
38381,
15,
60,
329,
1312,
287,
2837,
7,
33470,
15437,
198,
17089,
796,
685,
72,
329,
1312,
287,
2837,
7,
33470,
15437,
198,
11664,
62,
18,
796,
685,
25120,
13,
39873,
7,
17089,
11,
479,
28,
16,
38381,
15,
60,
329,
1312,
287,
2837,
7,
33470,
15437,
198,
198,
9288,
62,
33964,
796,
685,
20688,
11,
410,
62,
33279,
11,
2829,
62,
20147,
11,
2829,
62,
3372,
11,
6565,
11,
2829,
11,
734,
62,
71,
2171,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
9183,
62,
8499,
62,
9806,
62,
392,
62,
19052,
62,
1084,
11,
7090,
62,
16,
11,
1588,
62,
16,
11,
1588,
62,
17,
11,
1588,
62,
18,
60,
628,
198,
7804,
44743,
198,
1640,
1332,
62,
7442,
287,
1332,
62,
33964,
25,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
82,
2122,
7,
9288,
62,
7442,
4008,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7120,
12416,
4635,
257,
1057,
12,
2435,
4049,
329,
428,
1332,
19570,
628,
198,
7804,
1475,
7254,
25235,
198,
37811,
198,
32066,
198,
1270,
198,
15,
198,
1821,
198,
15,
198,
33470,
198,
23,
198,
2425,
198,
4089,
198,
4089,
198,
25120,
475,
815,
307,
1969,
284,
1802,
11,
830,
198,
25120,
475,
815,
307,
1969,
284,
939,
11,
830,
198,
37811,
198
] | 2.438 | 500 |
"""Presentation exchange record."""
from os import environ
from typing import Any, Mapping
from marshmallow import fields, validate
from .....messaging.models.base_record import BaseExchangeRecord, BaseExchangeSchema
from .....messaging.valid import UUIDFour
from ..messages.pres import V20Pres
from ..messages.pres_format import V20PresFormat
from ..messages.pres_proposal import V20PresProposal
from ..messages.pres_request import V20PresRequest
unencrypted_tags = environ.get("EXCH_UNENCRYPTED_TAGS", "False").upper() == "TRUE"
class V20PresExRecord(BaseExchangeRecord):
"""Represents a v2.0 presentation exchange."""
class Meta:
"""V20PresExRecord metadata."""
schema_class = "V20PresExRecordSchema"
RECORD_TYPE = "pres_ex_v20"
RECORD_ID_NAME = "pres_ex_id"
WEBHOOK_TOPIC = "present_proof_v2_0"
TAG_NAMES = {"~thread_id"} if unencrypted_tags else {"thread_id"}
INITIATOR_SELF = "self"
INITIATOR_EXTERNAL = "external"
ROLE_PROVER = "prover"
ROLE_VERIFIER = "verifier"
STATE_PROPOSAL_SENT = "proposal-sent"
STATE_PROPOSAL_RECEIVED = "proposal-received"
STATE_REQUEST_SENT = "request-sent"
STATE_REQUEST_RECEIVED = "request-received"
STATE_PRESENTATION_SENT = "presentation-sent"
STATE_PRESENTATION_RECEIVED = "presentation-received"
STATE_DONE = "done"
STATE_ABANDONED = "abandoned"
def __init__(
self,
*,
pres_ex_id: str = None,
connection_id: str = None,
thread_id: str = None,
initiator: str = None,
role: str = None,
state: str = None,
pres_proposal: Mapping = None, # serialized pres proposal message
pres_request: Mapping = None, # serialized pres proposal message
pres: Mapping = None, # serialized pres message
verified: str = None,
auto_present: bool = False,
error_msg: str = None,
trace: bool = False,
by_format: Mapping = None, # formalism for base_record.from_storage()
**kwargs
):
"""Initialize a new PresExRecord."""
super().__init__(pres_ex_id, state, trace=trace, **kwargs)
self.connection_id = connection_id
self.thread_id = thread_id
self.initiator = initiator
self.role = role
self.state = state
self.pres_proposal = pres_proposal
self.pres_request = pres_request
self.pres = pres
self.verified = verified
self.auto_present = auto_present
self.error_msg = error_msg
self.trace = trace
@property
def pres_ex_id(self) -> str:
"""Accessor for the ID associated with this exchange record."""
return self._id
@property
def record_value(self) -> dict:
"""Accessor for JSON record value generated for this pres ex record."""
return {
prop: getattr(self, prop)
for prop in (
"connection_id",
"initiator",
"role",
"state",
"pres_proposal",
"pres_request",
"pres",
"verified",
"auto_present",
"error_msg",
"trace",
)
}
@property
def by_format(self) -> Mapping:
"""Record proposal, request, and presentation attachments by format."""
result = {}
for item, cls in {
"pres_proposal": V20PresProposal, # note: proof request attached for indy
"pres_request": V20PresRequest,
"pres": V20Pres,
}.items():
mapping = getattr(self, item)
if mapping:
msg = cls.deserialize(mapping)
result.update(
{
item: {
V20PresFormat.Format.get(f.format).api: msg.attachment(
V20PresFormat.Format.get(f.format)
)
for f in msg.formats
}
}
)
return result
def __eq__(self, other: Any) -> bool:
"""Comparison between records."""
return super().__eq__(other)
class V20PresExRecordSchema(BaseExchangeSchema):
"""Schema for de/serialization of v2.0 presentation exchange records."""
class Meta:
"""V20PresExRecordSchema metadata."""
model_class = V20PresExRecord
pres_ex_id = fields.Str(
required=False,
description="Presentation exchange identifier",
example=UUIDFour.EXAMPLE, # typically a UUID4 but not necessarily
)
connection_id = fields.Str(
required=False,
description="Connection identifier",
example=UUIDFour.EXAMPLE, # typically a UUID4 but not necessarily
)
thread_id = fields.Str(
required=False,
description="Thread identifier",
example=UUIDFour.EXAMPLE, # typically a UUID4 but not necessarily
)
initiator = fields.Str(
required=False,
description="Present-proof exchange initiator: self or external",
example=V20PresExRecord.INITIATOR_SELF,
validate=validate.OneOf(
[
getattr(V20PresExRecord, m)
for m in vars(V20PresExRecord)
if m.startswith("INITIATOR_")
]
),
)
role = fields.Str(
required=False,
description="Present-proof exchange role: prover or verifier",
example=V20PresExRecord.ROLE_PROVER,
validate=validate.OneOf(
[
getattr(V20PresExRecord, m)
for m in vars(V20PresExRecord)
if m.startswith("ROLE_")
]
),
)
state = fields.Str(
required=False,
description="Present-proof exchange state",
validate=validate.OneOf(
[
getattr(V20PresExRecord, m)
for m in vars(V20PresExRecord)
if m.startswith("STATE_")
]
),
)
pres_proposal = fields.Dict(
required=False, description="Serialized presentation proposal message"
)
pres_request = fields.Dict(
required=False, description="Serialized presentation request message"
)
pres = fields.Dict(
required=False,
description="Serialized presentation message",
)
by_format = fields.Dict(
required=False,
description=(
"Attachment content by format for proposal, request, and presentation"
),
dump_only=True,
)
verified = fields.Str( # tag: must be a string
required=False,
description="Whether presentation is verified: 'true' or 'false'",
example="true",
validate=validate.OneOf(["true", "false"]),
)
auto_present = fields.Bool(
required=False,
description="Prover choice to auto-present proof as verifier requests",
example=False,
)
error_msg = fields.Str(
required=False, description="Error message", example="Invalid structure"
)
| [
37811,
34695,
341,
5163,
1700,
526,
15931,
198,
198,
6738,
28686,
1330,
551,
2268,
198,
6738,
19720,
1330,
4377,
11,
337,
5912,
198,
198,
6738,
22397,
42725,
1330,
7032,
11,
26571,
198,
198,
6738,
11485,
986,
37348,
3039,
13,
27530,
13,
8692,
62,
22105,
1330,
7308,
3109,
3803,
23739,
11,
7308,
3109,
3803,
27054,
2611,
198,
6738,
11485,
986,
37348,
3039,
13,
12102,
1330,
471,
27586,
15137,
198,
198,
6738,
11485,
37348,
1095,
13,
18302,
1330,
569,
1238,
25460,
198,
6738,
11485,
37348,
1095,
13,
18302,
62,
18982,
1330,
569,
1238,
25460,
26227,
198,
6738,
11485,
37348,
1095,
13,
18302,
62,
1676,
40007,
1330,
569,
1238,
25460,
24331,
40725,
198,
6738,
11485,
37348,
1095,
13,
18302,
62,
25927,
1330,
569,
1238,
25460,
18453,
198,
198,
403,
43628,
62,
31499,
796,
551,
2268,
13,
1136,
7203,
6369,
3398,
62,
4944,
1677,
9419,
56,
11571,
1961,
62,
42197,
50,
1600,
366,
25101,
11074,
45828,
3419,
6624,
366,
5446,
8924,
1,
628,
198,
4871,
569,
1238,
25460,
3109,
23739,
7,
14881,
3109,
3803,
23739,
2599,
198,
220,
220,
220,
37227,
6207,
6629,
257,
410,
17,
13,
15,
10470,
5163,
526,
15931,
628,
220,
220,
220,
1398,
30277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
53,
1238,
25460,
3109,
23739,
20150,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
32815,
62,
4871,
796,
366,
53,
1238,
25460,
3109,
23739,
27054,
2611,
1,
628,
220,
220,
220,
19644,
12532,
62,
25216,
796,
366,
18302,
62,
1069,
62,
85,
1238,
1,
198,
220,
220,
220,
19644,
12532,
62,
2389,
62,
20608,
796,
366,
18302,
62,
1069,
62,
312,
1,
198,
220,
220,
220,
12887,
33,
39,
15308,
62,
35222,
2149,
796,
366,
25579,
62,
13288,
62,
85,
17,
62,
15,
1,
198,
220,
220,
220,
37801,
62,
45,
29559,
796,
19779,
93,
16663,
62,
312,
20662,
611,
555,
43628,
62,
31499,
2073,
19779,
16663,
62,
312,
20662,
628,
220,
220,
220,
3268,
2043,
40,
25633,
62,
50,
37738,
796,
366,
944,
1,
198,
220,
220,
220,
3268,
2043,
40,
25633,
62,
6369,
31800,
1847,
796,
366,
22615,
1,
628,
220,
220,
220,
15107,
2538,
62,
31190,
5959,
796,
366,
1676,
332,
1,
198,
220,
220,
220,
15107,
2538,
62,
5959,
5064,
38311,
796,
366,
332,
7483,
1,
628,
220,
220,
220,
35454,
62,
4805,
3185,
2640,
1847,
62,
50,
3525,
796,
366,
1676,
40007,
12,
34086,
1,
198,
220,
220,
220,
35454,
62,
4805,
3185,
2640,
1847,
62,
2200,
5222,
3824,
1961,
796,
366,
1676,
40007,
12,
47844,
1,
198,
220,
220,
220,
35454,
62,
2200,
35780,
62,
50,
3525,
796,
366,
25927,
12,
34086,
1,
198,
220,
220,
220,
35454,
62,
2200,
35780,
62,
2200,
5222,
3824,
1961,
796,
366,
25927,
12,
47844,
1,
198,
220,
220,
220,
35454,
62,
48296,
3525,
6234,
62,
50,
3525,
796,
366,
25579,
341,
12,
34086,
1,
198,
220,
220,
220,
35454,
62,
48296,
3525,
6234,
62,
2200,
5222,
3824,
1961,
796,
366,
25579,
341,
12,
47844,
1,
198,
220,
220,
220,
35454,
62,
35,
11651,
796,
366,
28060,
1,
198,
220,
220,
220,
35454,
62,
6242,
6981,
1340,
1961,
796,
366,
397,
5063,
276,
1,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1635,
11,
198,
220,
220,
220,
220,
220,
220,
220,
906,
62,
1069,
62,
312,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4637,
62,
312,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4704,
62,
312,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5383,
1352,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1181,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
906,
62,
1676,
40007,
25,
337,
5912,
796,
6045,
11,
220,
1303,
11389,
1143,
906,
6961,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
906,
62,
25927,
25,
337,
5912,
796,
6045,
11,
220,
1303,
11389,
1143,
906,
6961,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
906,
25,
337,
5912,
796,
6045,
11,
220,
1303,
11389,
1143,
906,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
19000,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8295,
62,
25579,
25,
20512,
796,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
62,
19662,
25,
965,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
12854,
25,
20512,
796,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
416,
62,
18982,
25,
337,
5912,
796,
6045,
11,
220,
1303,
8766,
1042,
329,
2779,
62,
22105,
13,
6738,
62,
35350,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
24243,
1096,
257,
649,
1763,
3109,
23739,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
15003,
834,
7,
18302,
62,
1069,
62,
312,
11,
1181,
11,
12854,
28,
40546,
11,
12429,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
38659,
62,
312,
796,
4637,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16663,
62,
312,
796,
4704,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
8846,
1352,
796,
5383,
1352,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18090,
796,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
5219,
796,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18302,
62,
1676,
40007,
796,
906,
62,
1676,
40007,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18302,
62,
25927,
796,
906,
62,
25927,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18302,
796,
906,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
47684,
796,
19000,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
23736,
62,
25579,
796,
8295,
62,
25579,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18224,
62,
19662,
796,
4049,
62,
19662,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
40546,
796,
12854,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
906,
62,
1069,
62,
312,
7,
944,
8,
4613,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15457,
273,
329,
262,
4522,
3917,
351,
428,
5163,
1700,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
312,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
1700,
62,
8367,
7,
944,
8,
4613,
8633,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15457,
273,
329,
19449,
1700,
1988,
7560,
329,
428,
906,
409,
1700,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2632,
25,
651,
35226,
7,
944,
11,
2632,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2632,
287,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
38659,
62,
312,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
259,
8846,
1352,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18090,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
5219,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
62,
1676,
40007,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
62,
25927,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47684,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
23736,
62,
25579,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18224,
62,
19662,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40546,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
416,
62,
18982,
7,
944,
8,
4613,
337,
5912,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
23739,
6961,
11,
2581,
11,
290,
10470,
32161,
416,
5794,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2378,
11,
537,
82,
287,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
62,
1676,
40007,
1298,
569,
1238,
25460,
24331,
40725,
11,
220,
1303,
3465,
25,
6617,
2581,
7223,
329,
773,
88,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
62,
25927,
1298,
569,
1238,
25460,
18453,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18302,
1298,
569,
1238,
25460,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16855,
796,
651,
35226,
7,
944,
11,
2378,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16855,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
537,
82,
13,
8906,
48499,
1096,
7,
76,
5912,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2378,
25,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
569,
1238,
25460,
26227,
13,
26227,
13,
1136,
7,
69,
13,
18982,
737,
15042,
25,
31456,
13,
1078,
15520,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
569,
1238,
25460,
26227,
13,
26227,
13,
1136,
7,
69,
13,
18982,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
277,
287,
31456,
13,
687,
1381,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
220,
220,
220,
825,
11593,
27363,
834,
7,
944,
11,
584,
25,
4377,
8,
4613,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50249,
1653,
1022,
4406,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2208,
22446,
834,
27363,
834,
7,
847,
8,
628,
198,
4871,
569,
1238,
25460,
3109,
23739,
27054,
2611,
7,
14881,
3109,
3803,
27054,
2611,
2599,
198,
220,
220,
220,
37227,
27054,
2611,
329,
390,
14,
46911,
1634,
286,
410,
17,
13,
15,
10470,
5163,
4406,
526,
15931,
628,
220,
220,
220,
1398,
30277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
53,
1238,
25460,
3109,
23739,
27054,
2611,
20150,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
4871,
796,
569,
1238,
25460,
3109,
23739,
628,
220,
220,
220,
906,
62,
1069,
62,
312,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
34695,
341,
5163,
27421,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
52,
27586,
15137,
13,
6369,
2390,
16437,
11,
220,
1303,
6032,
257,
471,
27586,
19,
475,
407,
6646,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4637,
62,
312,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
32048,
27421,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
52,
27586,
15137,
13,
6369,
2390,
16437,
11,
220,
1303,
6032,
257,
471,
27586,
19,
475,
407,
6646,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4704,
62,
312,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
16818,
27421,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
52,
27586,
15137,
13,
6369,
2390,
16437,
11,
220,
1303,
6032,
257,
471,
27586,
19,
475,
407,
6646,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
5383,
1352,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
34695,
12,
13288,
5163,
5383,
1352,
25,
2116,
393,
7097,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
53,
1238,
25460,
3109,
23739,
13,
1268,
2043,
40,
25633,
62,
50,
37738,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
28,
12102,
378,
13,
3198,
5189,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
35226,
7,
53,
1238,
25460,
3109,
23739,
11,
285,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
285,
287,
410,
945,
7,
53,
1238,
25460,
3109,
23739,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
13,
9688,
2032,
342,
7203,
1268,
2043,
40,
25633,
62,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2597,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
34695,
12,
13288,
5163,
2597,
25,
386,
332,
393,
3326,
7483,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
53,
1238,
25460,
3109,
23739,
13,
13252,
2538,
62,
31190,
5959,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
28,
12102,
378,
13,
3198,
5189,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
35226,
7,
53,
1238,
25460,
3109,
23739,
11,
285,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
285,
287,
410,
945,
7,
53,
1238,
25460,
3109,
23739,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
13,
9688,
2032,
342,
7203,
13252,
2538,
62,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1181,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
34695,
12,
13288,
5163,
1181,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
28,
12102,
378,
13,
3198,
5189,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
35226,
7,
53,
1238,
25460,
3109,
23739,
11,
285,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
285,
287,
410,
945,
7,
53,
1238,
25460,
3109,
23739,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
13,
9688,
2032,
342,
7203,
44724,
62,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
906,
62,
1676,
40007,
796,
7032,
13,
35,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
6764,
2625,
32634,
1143,
10470,
6961,
3275,
1,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
906,
62,
25927,
796,
7032,
13,
35,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
6764,
2625,
32634,
1143,
10470,
2581,
3275,
1,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
906,
796,
7032,
13,
35,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
32634,
1143,
10470,
3275,
1600,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
416,
62,
18982,
796,
7032,
13,
35,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
16193,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8086,
15520,
2695,
416,
5794,
329,
6961,
11,
2581,
11,
290,
10470,
1,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
10285,
62,
8807,
28,
17821,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
19000,
796,
7032,
13,
13290,
7,
220,
1303,
7621,
25,
1276,
307,
257,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
15354,
10470,
318,
19000,
25,
705,
7942,
6,
393,
705,
9562,
6,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
2625,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
28,
12102,
378,
13,
3198,
5189,
7,
14692,
7942,
1600,
366,
9562,
8973,
828,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
8295,
62,
25579,
796,
7032,
13,
33,
970,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
2964,
332,
3572,
284,
8295,
12,
25579,
6617,
355,
3326,
7483,
7007,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
28,
25101,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4049,
62,
19662,
796,
7032,
13,
13290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
11,
6764,
2625,
12331,
3275,
1600,
1672,
2625,
44651,
4645,
1,
198,
220,
220,
220,
1267,
198
] | 2.171567 | 3,299 |
#!/usr/bin/env python
# vim: ai ts=4 sts=4 et sw=4
from rapidsms.utils.modules import import_class
from rapidsms.log.mixin import LoggerMixin
class BackendBase(object, LoggerMixin):
"""Base class for outbound backend functionality."""
@classmethod
def find(cls, module_name):
"""
Helper function to import backend classes.
:param module_name: Dotted Python path to backend class name
:returns: Imported class object
"""
return import_class(module_name, cls)
def configure(self, **kwargs):
"""
Configuration parameters from :setting:`INSTALLED_BACKENDS` will
be passed here after the router is instantiated. You can override
this method to parse your configuration.
"""
pass
def send(self, id_, text, identities, context={}):
"""
Backend sending logic. The router will call this method for each
outbound message. This method must be overridden by sub-classes.
Backends typically initiate HTTP requests from within this method. Any
exceptions raised here will be captured and logged by the selected
router.
If multiple ``identities`` are provided, the message is intended for
all recipients.
:param id\_: Message ID
:param text: Message text
:param identities: List of identities
:param context: Optional extra context provided by router to backend
"""
# subclasses should override this
raise NotImplementedError()
@property
def model(self):
"""
The model attribute is the RapidSMS model instance with this
backend name. A new backend will automatically be created if
one doesn't exist upon accessing this attribute.
"""
from rapidsms.models import Backend
backend, _ = Backend.objects.get_or_create(name=self.name)
return backend
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
43907,
25,
257,
72,
40379,
28,
19,
39747,
28,
19,
2123,
1509,
28,
19,
198,
198,
6738,
4095,
2340,
907,
13,
26791,
13,
18170,
1330,
1330,
62,
4871,
198,
6738,
4095,
2340,
907,
13,
6404,
13,
19816,
259,
1330,
5972,
1362,
35608,
259,
628,
198,
4871,
5157,
437,
14881,
7,
15252,
11,
5972,
1362,
35608,
259,
2599,
198,
220,
220,
220,
37227,
14881,
1398,
329,
503,
7784,
30203,
11244,
526,
15931,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
1064,
7,
565,
82,
11,
8265,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5053,
525,
2163,
284,
1330,
30203,
6097,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8265,
62,
3672,
25,
360,
8426,
11361,
3108,
284,
30203,
1398,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
1846,
9213,
1398,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1330,
62,
4871,
7,
21412,
62,
3672,
11,
537,
82,
8,
628,
220,
220,
220,
825,
17425,
7,
944,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28373,
10007,
422,
1058,
33990,
25,
63,
38604,
7036,
1961,
62,
31098,
1677,
5258,
63,
481,
198,
220,
220,
220,
220,
220,
220,
220,
307,
3804,
994,
706,
262,
20264,
318,
9113,
12931,
13,
921,
460,
20957,
198,
220,
220,
220,
220,
220,
220,
220,
428,
2446,
284,
21136,
534,
8398,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
825,
3758,
7,
944,
11,
4686,
62,
11,
2420,
11,
18413,
11,
4732,
34758,
92,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5157,
437,
7216,
9156,
13,
383,
20264,
481,
869,
428,
2446,
329,
1123,
198,
220,
220,
220,
220,
220,
220,
220,
503,
7784,
3275,
13,
770,
2446,
1276,
307,
23170,
4651,
416,
850,
12,
37724,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5157,
2412,
6032,
22118,
14626,
7007,
422,
1626,
428,
2446,
13,
4377,
198,
220,
220,
220,
220,
220,
220,
220,
13269,
4376,
994,
481,
307,
7907,
290,
18832,
416,
262,
6163,
198,
220,
220,
220,
220,
220,
220,
220,
20264,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1002,
3294,
7559,
738,
871,
15506,
389,
2810,
11,
262,
3275,
318,
5292,
329,
198,
220,
220,
220,
220,
220,
220,
220,
477,
20352,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4686,
59,
62,
25,
16000,
4522,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2420,
25,
16000,
2420,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
18413,
25,
7343,
286,
18413,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4732,
25,
32233,
3131,
4732,
2810,
416,
20264,
284,
30203,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
850,
37724,
815,
20957,
428,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
3419,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
2746,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
383,
2746,
11688,
318,
262,
26430,
50,
5653,
2746,
4554,
351,
428,
198,
220,
220,
220,
220,
220,
220,
220,
30203,
1438,
13,
317,
649,
30203,
481,
6338,
307,
2727,
611,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1595,
470,
2152,
2402,
22534,
428,
11688,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
422,
4095,
2340,
907,
13,
27530,
1330,
5157,
437,
198,
220,
220,
220,
220,
220,
220,
220,
30203,
11,
4808,
796,
5157,
437,
13,
48205,
13,
1136,
62,
273,
62,
17953,
7,
3672,
28,
944,
13,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
30203,
198
] | 2.789398 | 698 |
from greedysnake import GreedySnake, Direction, Signal
import time
import numpy as np
#import curses
from threading import Thread
import subprocess
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import backend as K
from collections import OrderedDict
import random
import configparser
from collections import deque
import copy
import sys
import warnings
import math
warnings.filterwarnings("ignore")
np.set_printoptions(threshold=sys.maxsize)
if __name__ == "__main__":
d = Driver()
d.run()
| [
6738,
25474,
893,
77,
539,
1330,
11955,
4716,
49795,
11,
41837,
11,
26484,
198,
11748,
640,
198,
11748,
299,
32152,
355,
45941,
198,
2,
11748,
43878,
198,
6738,
4704,
278,
1330,
14122,
198,
11748,
850,
14681,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
11192,
273,
11125,
1330,
41927,
292,
198,
6738,
11192,
273,
11125,
13,
6122,
292,
1330,
30203,
355,
509,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
11748,
4738,
198,
11748,
4566,
48610,
198,
6738,
17268,
1330,
390,
4188,
198,
11748,
4866,
198,
11748,
25064,
198,
11748,
14601,
198,
11748,
10688,
198,
40539,
654,
13,
24455,
40539,
654,
7203,
46430,
4943,
198,
37659,
13,
2617,
62,
4798,
25811,
7,
400,
10126,
28,
17597,
13,
9806,
7857,
8,
628,
628,
220,
220,
220,
220,
220,
220,
220,
220,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
288,
796,
12434,
3419,
198,
220,
220,
220,
288,
13,
5143,
3419,
198
] | 3.345679 | 162 |
from abc import ABC, abstractmethod
from typing import Optional, Union
from snuba.utils.metrics.types import Tags
class MetricsBackend(ABC):
"""
An abstract class that defines the interface for metrics backends.
"""
@abstractmethod
@abstractmethod
@abstractmethod
| [
6738,
450,
66,
1330,
9738,
11,
12531,
24396,
198,
6738,
19720,
1330,
32233,
11,
4479,
198,
198,
6738,
3013,
22013,
13,
26791,
13,
4164,
10466,
13,
19199,
1330,
44789,
628,
198,
4871,
3395,
10466,
7282,
437,
7,
24694,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1052,
12531,
1398,
326,
15738,
262,
7071,
329,
20731,
736,
2412,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
397,
8709,
24396,
628,
220,
220,
220,
2488,
397,
8709,
24396,
198
] | 3.266667 | 90 |
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: locking_service.proto
# pylint: skip-file
"""Generated protocol buffer code."""
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
DESCRIPTOR = _descriptor.FileDescriptor(
name='locking_service.proto',
package='chip.rpc',
syntax='proto3',
serialized_options=None,
create_key=_descriptor._internal_create_key,
serialized_pb=b'\n\x15locking_service.proto\x12\x08\x63hip.rpc\"\x07\n\x05\x45mpty\"\x1e\n\x0cLockingState\x12\x0e\n\x06locked\x18\x01 \x01(\x08\x32m\n\x07Locking\x12\x30\n\x03Set\x12\x16.chip.rpc.LockingState\x1a\x0f.chip.rpc.Empty\"\x00\x12\x30\n\x03Get\x12\x0f.chip.rpc.Empty\x1a\x16.chip.rpc.LockingState\"\x00\x62\x06proto3'
)
_EMPTY = _descriptor.Descriptor(
name='Empty',
full_name='chip.rpc.Empty',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=35,
serialized_end=42,
)
_LOCKINGSTATE = _descriptor.Descriptor(
name='LockingState',
full_name='chip.rpc.LockingState',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='locked', full_name='chip.rpc.LockingState.locked', index=0,
number=1, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=44,
serialized_end=74,
)
DESCRIPTOR.message_types_by_name['Empty'] = _EMPTY
DESCRIPTOR.message_types_by_name['LockingState'] = _LOCKINGSTATE
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
Empty = _reflection.GeneratedProtocolMessageType('Empty', (_message.Message,), {
'DESCRIPTOR' : _EMPTY,
'__module__' : 'locking_service_pb2'
# @@protoc_insertion_point(class_scope:chip.rpc.Empty)
})
_sym_db.RegisterMessage(Empty)
LockingState = _reflection.GeneratedProtocolMessageType('LockingState', (_message.Message,), {
'DESCRIPTOR' : _LOCKINGSTATE,
'__module__' : 'locking_service_pb2'
# @@protoc_insertion_point(class_scope:chip.rpc.LockingState)
})
_sym_db.RegisterMessage(LockingState)
_LOCKING = _descriptor.ServiceDescriptor(
name='Locking',
full_name='chip.rpc.Locking',
file=DESCRIPTOR,
index=0,
serialized_options=None,
create_key=_descriptor._internal_create_key,
serialized_start=76,
serialized_end=185,
methods=[
_descriptor.MethodDescriptor(
name='Set',
full_name='chip.rpc.Locking.Set',
index=0,
containing_service=None,
input_type=_LOCKINGSTATE,
output_type=_EMPTY,
serialized_options=None,
create_key=_descriptor._internal_create_key,
),
_descriptor.MethodDescriptor(
name='Get',
full_name='chip.rpc.Locking.Get',
index=1,
containing_service=None,
input_type=_EMPTY,
output_type=_LOCKINGSTATE,
serialized_options=None,
create_key=_descriptor._internal_create_key,
),
])
_sym_db.RegisterServiceDescriptor(_LOCKING)
DESCRIPTOR.services_by_name['Locking'] = _LOCKING
# @@protoc_insertion_point(module_scope)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
2980,
515,
416,
262,
8435,
11876,
17050,
13,
220,
8410,
5626,
48483,
0,
198,
2,
2723,
25,
22656,
62,
15271,
13,
1676,
1462,
198,
2,
279,
2645,
600,
25,
14267,
12,
7753,
198,
37811,
8645,
515,
8435,
11876,
2438,
526,
15931,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
355,
4808,
20147,
1968,
273,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
3275,
355,
4808,
20500,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
14580,
355,
4808,
5420,
1564,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
6194,
62,
48806,
355,
4808,
1837,
23650,
62,
48806,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
320,
3742,
8,
198,
198,
62,
37047,
62,
9945,
796,
4808,
1837,
23650,
62,
48806,
13,
19463,
3419,
628,
628,
198,
30910,
36584,
32961,
796,
4808,
20147,
1968,
273,
13,
8979,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
48331,
62,
15271,
13,
1676,
1462,
3256,
198,
220,
5301,
11639,
35902,
13,
81,
14751,
3256,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
11389,
1143,
62,
40842,
28,
65,
6,
59,
77,
59,
87,
1314,
48331,
62,
15271,
13,
1676,
1462,
59,
87,
1065,
59,
87,
2919,
59,
87,
5066,
1056,
13,
81,
14751,
7879,
59,
87,
2998,
59,
77,
59,
87,
2713,
59,
87,
2231,
76,
5835,
7879,
59,
87,
16,
68,
59,
77,
59,
87,
15,
66,
43,
8629,
9012,
59,
87,
1065,
59,
87,
15,
68,
59,
77,
59,
87,
3312,
24162,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2919,
59,
87,
2624,
76,
59,
77,
59,
87,
2998,
43,
8629,
59,
87,
1065,
59,
87,
1270,
59,
77,
59,
87,
3070,
7248,
59,
87,
1065,
59,
87,
1433,
13,
35902,
13,
81,
14751,
13,
43,
8629,
9012,
59,
87,
16,
64,
59,
87,
15,
69,
13,
35902,
13,
81,
14751,
13,
40613,
7879,
59,
87,
405,
59,
87,
1065,
59,
87,
1270,
59,
77,
59,
87,
3070,
3855,
59,
87,
1065,
59,
87,
15,
69,
13,
35902,
13,
81,
14751,
13,
40613,
59,
87,
16,
64,
59,
87,
1433,
13,
35902,
13,
81,
14751,
13,
43,
8629,
9012,
7879,
59,
87,
405,
59,
87,
5237,
59,
87,
3312,
1676,
1462,
18,
6,
198,
8,
628,
628,
198,
62,
39494,
9936,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
40613,
3256,
198,
220,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
40613,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
7032,
41888,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
2327,
11,
198,
220,
11389,
1143,
62,
437,
28,
3682,
11,
198,
8,
628,
198,
62,
36840,
2751,
44724,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
43,
8629,
9012,
3256,
198,
220,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
43,
8629,
9012,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
24162,
3256,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
43,
8629,
9012,
13,
24162,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
11,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
2598,
11,
198,
220,
11389,
1143,
62,
437,
28,
4524,
11,
198,
8,
198,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
40613,
20520,
796,
4808,
39494,
9936,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
43,
8629,
9012,
20520,
796,
4808,
36840,
2751,
44724,
198,
62,
37047,
62,
9945,
13,
38804,
8979,
24564,
1968,
273,
7,
30910,
36584,
32961,
8,
198,
198,
40613,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
40613,
3256,
44104,
20500,
13,
12837,
11,
828,
1391,
198,
220,
705,
30910,
36584,
32961,
6,
1058,
4808,
39494,
9936,
11,
198,
220,
705,
834,
21412,
834,
6,
1058,
705,
48331,
62,
15271,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
35902,
13,
81,
14751,
13,
40613,
8,
198,
220,
32092,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
40613,
8,
198,
198,
43,
8629,
9012,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
43,
8629,
9012,
3256,
44104,
20500,
13,
12837,
11,
828,
1391,
198,
220,
705,
30910,
36584,
32961,
6,
1058,
4808,
36840,
2751,
44724,
11,
198,
220,
705,
834,
21412,
834,
6,
1058,
705,
48331,
62,
15271,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
35902,
13,
81,
14751,
13,
43,
8629,
9012,
8,
198,
220,
32092,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
43,
8629,
9012,
8,
628,
198,
198,
62,
36840,
2751,
796,
4808,
20147,
1968,
273,
13,
16177,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
43,
8629,
3256,
198,
220,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
43,
8629,
3256,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
6376,
28,
15,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
11389,
1143,
62,
9688,
28,
4304,
11,
198,
220,
11389,
1143,
62,
437,
28,
21652,
11,
198,
220,
5050,
41888,
198,
220,
4808,
20147,
1968,
273,
13,
17410,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
7248,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
43,
8629,
13,
7248,
3256,
198,
220,
220,
220,
6376,
28,
15,
11,
198,
220,
220,
220,
7268,
62,
15271,
28,
14202,
11,
198,
220,
220,
220,
5128,
62,
4906,
28,
62,
36840,
2751,
44724,
11,
198,
220,
220,
220,
5072,
62,
4906,
28,
62,
39494,
9936,
11,
198,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
10612,
198,
220,
4808,
20147,
1968,
273,
13,
17410,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
3855,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
35902,
13,
81,
14751,
13,
43,
8629,
13,
3855,
3256,
198,
220,
220,
220,
6376,
28,
16,
11,
198,
220,
220,
220,
7268,
62,
15271,
28,
14202,
11,
198,
220,
220,
220,
5128,
62,
4906,
28,
62,
39494,
9936,
11,
198,
220,
220,
220,
5072,
62,
4906,
28,
62,
36840,
2751,
44724,
11,
198,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
2251,
62,
2539,
28,
62,
20147,
1968,
273,
13557,
32538,
62,
17953,
62,
2539,
11,
198,
220,
10612,
198,
12962,
198,
62,
37047,
62,
9945,
13,
38804,
16177,
24564,
1968,
273,
28264,
36840,
2751,
8,
198,
198,
30910,
36584,
32961,
13,
30416,
62,
1525,
62,
3672,
17816,
43,
8629,
20520,
796,
4808,
36840,
2751,
198,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
21412,
62,
29982,
8,
198
] | 2.49644 | 1,545 |
"""Copyright 2012, System Insights, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License."""
from mtconnect_adapter import Adapter
from data_item import Event
from nose.tools import eq_
from mock import MagicMock
import socket
import os
| [
37811,
15269,
2321,
11,
4482,
7088,
2337,
11,
3457,
13,
628,
220,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
220,
220,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
220,
220,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
628,
220,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
220,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
220,
220,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
220,
220,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
220,
220,
11247,
739,
262,
13789,
526,
15931,
198,
220,
220,
220,
220,
198,
198,
6738,
45079,
8443,
62,
324,
3429,
1330,
43721,
198,
6738,
1366,
62,
9186,
1330,
8558,
198,
6738,
9686,
13,
31391,
1330,
37430,
62,
198,
6738,
15290,
1330,
6139,
44,
735,
198,
11748,
17802,
198,
11748,
28686,
628
] | 3.735 | 200 |
# -*- coding: utf-8 -*-
from mockr import run_pandas_job
import pandas as pd
dataframe = pd.read_csv('ages.csv')
results = run_pandas_job(dataframe, map_fn, reduce_fn, n_chunks = 4)
print(results)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
6738,
15290,
81,
1330,
1057,
62,
79,
392,
292,
62,
21858,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
7890,
14535,
796,
279,
67,
13,
961,
62,
40664,
10786,
1095,
13,
40664,
11537,
198,
198,
43420,
796,
1057,
62,
79,
392,
292,
62,
21858,
7,
7890,
14535,
11,
3975,
62,
22184,
11,
4646,
62,
22184,
11,
299,
62,
354,
14125,
796,
604,
8,
198,
198,
4798,
7,
43420,
8,
198
] | 2.337209 | 86 |
# Mobile cloud machine learning (MCML) environment
# Author: Hieunq
import gym
import numpy as np
import xlsxwriter
from xlutils.copy import copy
from gym import spaces
from gym.utils import seeding
from parameters import Parameters
# see parameters.py
parameters = Parameters()
class MCML(gym.Env):
"""
Mobile cloud machine learning environment
Simple environfment: 1 mobile agent act as a server
- State space: S = {(f , c ) ; f ∈ {0, 1, . . . , Fn } , c ∈ {0, 1, . . . , Cn } ,
- Action space: A = {(d , e);d ≤ Dn , e ≤ cn , f ̄≤ μf, n = (1, . . . , N )}
- Transition: c' = c - e + A
"""
def get_env_config(self):
"""
Get variables from current environment
:return: Config info
"""
return self.DONE_FLAG
| [
2,
12173,
6279,
4572,
4673,
357,
9655,
5805,
8,
2858,
198,
2,
6434,
25,
367,
494,
403,
80,
198,
198,
11748,
11550,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2124,
7278,
87,
16002,
198,
6738,
2124,
75,
26791,
13,
30073,
1330,
4866,
198,
6738,
11550,
1330,
9029,
198,
6738,
11550,
13,
26791,
1330,
384,
8228,
198,
6738,
10007,
1330,
40117,
198,
198,
2,
766,
10007,
13,
9078,
198,
17143,
7307,
796,
40117,
3419,
198,
198,
4871,
13122,
5805,
7,
1360,
76,
13,
4834,
85,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12173,
6279,
4572,
4673,
2858,
198,
220,
220,
220,
17427,
551,
2268,
69,
434,
25,
352,
5175,
5797,
719,
355,
257,
4382,
198,
220,
220,
220,
532,
1812,
2272,
25,
311,
796,
1391,
7,
69,
837,
269,
1267,
2162,
277,
18872,
230,
1391,
15,
11,
352,
11,
764,
764,
764,
837,
37481,
1782,
837,
269,
18872,
230,
1391,
15,
11,
352,
11,
764,
764,
764,
837,
327,
77,
1782,
837,
198,
220,
220,
220,
532,
7561,
2272,
25,
317,
796,
1391,
7,
67,
837,
304,
1776,
67,
41305,
360,
77,
837,
304,
41305,
269,
77,
837,
277,
220,
136,
226,
35705,
97,
18919,
69,
11,
299,
796,
357,
16,
11,
764,
764,
764,
837,
399,
1267,
92,
198,
220,
220,
220,
532,
40658,
25,
269,
6,
796,
269,
532,
304,
1343,
317,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
651,
62,
24330,
62,
11250,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
9633,
422,
1459,
2858,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
17056,
7508,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
35,
11651,
62,
38948,
628,
198
] | 2.568627 | 306 |
# class LLNode:
# def __init__(self, val, next=None):
# self.val = val
# self.next = next
| [
2,
1398,
27140,
19667,
25,
198,
2,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1188,
11,
1306,
28,
14202,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2100,
796,
1188,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19545,
796,
1306,
198
] | 2 | 55 |
#
# (c) 2019 Kaminario Technologies, Ltd.
#
# This software is licensed solely under the terms of the Apache 2.0 license,
# the text of which is available at http://www.apache.org/licenses/LICENSE-2.0.
# All disclaimers and limitations of liability set forth in the Apache 2.0 license apply.
#
import unittest
from kmexpert.base.input_converters import YES, NO, HISTORY, HELP, INT, STR, \
YesFlag, NoFlag, HistoryFlag, HelpFlag, IntConverter, StrConverter, PositiveIntConverter
if __name__ == '__main__':
unittest.main()
| [
2,
198,
2,
357,
66,
8,
13130,
509,
5669,
4982,
21852,
11,
12052,
13,
198,
2,
198,
2,
770,
3788,
318,
11971,
9944,
739,
262,
2846,
286,
262,
24843,
362,
13,
15,
5964,
11,
198,
2,
262,
2420,
286,
543,
318,
1695,
379,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
13,
198,
2,
1439,
28468,
364,
290,
11247,
286,
12247,
900,
6071,
287,
262,
24843,
362,
13,
15,
5964,
4174,
13,
198,
2,
198,
198,
11748,
555,
715,
395,
198,
198,
6738,
10571,
1069,
11766,
13,
8692,
13,
15414,
62,
1102,
332,
1010,
1330,
21560,
11,
8005,
11,
367,
42480,
11,
49944,
11,
17828,
11,
19269,
11,
3467,
198,
220,
220,
220,
3363,
34227,
11,
1400,
34227,
11,
7443,
34227,
11,
10478,
34227,
11,
2558,
3103,
332,
353,
11,
4285,
3103,
332,
353,
11,
33733,
5317,
3103,
332,
353,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 3.068966 | 174 |
AVAILABLE_CODE_SHEETS = [
# in rough order of most to least common
'braille',
'morse',
'semaphore',
'pigpen',
'ipa',
'binary',
'ascii',
'amino',
'nato',
'nautical',
'resistor',
'elements',
'poker',
'greek',
'hebrew',
'japanese',
'scrabble',
'dvorak',
'roman',
'sign',
'moon',
]
HELP_STR = [
'If you want a code sheet, just type what you want. (Most things you try will work.)',
f'Available codes: {"`" + " ".join(AVAILABLE_CODE_SHEETS) + "`"}',
'',
'String manipulation:',
'`!o [string]` : Do a OneLook search.',
'`!n [string]` : Do a Nutrimatic search.',
'`!q [string]` or `!qat [string]` : Do a Qat search.',
'`!c [phrase]` | `!crossword [phrase]` : Look up a crossword clue.',
'`!caesar [string]` : Show all Caesar shifts of a string.',
'`!anagram [string]` : Find anagrams of a string.',
'`!syn [word]` | `!ant [word]` : Find synonyms or antonyms of a word.',
'`!regex [pattern]` | `!regex [dictionary] [pattern]` : Search a dictionary for a regex pattern.',
'',
'Solvers:',
'`!qq [string]` or `!crypto [string]` : Solve a cryptogram (uses quipqiup).',
'`!v [string]` : Solve a Vigenere cipher.',
'`!dropquote [letters] [lengths]`: Automatically solve a dropquote. (`!dropquote help` for more)',
'`!sudoku` | `!fillomino` | `!masyu` | `!spiral` | `!starbattle` | `!nurikabe`: Automatically solve a logic puzzle.',
'',
'Other commands:',
'`!t [words]`: Try and find commonalities between words. For example, `sugar argon iota ontario`',
'`!wa [string]` : Query Wolfram|Alpha for a string.',
#'`!trivia` : Print a Jeopardy trivia question.',
#'`!trivia help` : Print help pertaining to the trivia module and ranked trivia games.',
'`!help` : Display this message.',
]
DROPQUOTE_HELP_STR = [
'**Dropquote solver**',
'Type the letters in each column, separated by spaces, then the lengths of each word, separated by spaces.',
'If the puzzle has punctuation (or multiple black squares in a row), you\'ll need to type a 0 between each pair of non-letters.',
'For example, here\'s how to input the dropquote below. Note the placement of the 0 numbers in the input!',
('`!dropquote eitt hnnno cego bet ehims ino dins gostt hn beeei esx aiow cdnor gort dln deoor efn erv eeit hmosv aeeev deir nrsy cst hi '
'0 7 2 4 0 10 2 3 5 7 2 2 4 2 4 4 0 3 4 5 2 3 8 2 5 7`'),
'',
'To force removal of a word from the dictionary, use `-word`.',
'To add a word to the dictionary, use `+word`.',
]
REGEX_HELP_STR = [
'You can (optionally) supply a dictionary before your regex pattern: `!regex ukacd a.*memnon`.',
'Available dictionaries: `standard ukacd scrabble oed onelook wikipedia cities movies bible`',
]
TRIVIA_HELP_STR = [
'`!trivia`: Pose a trivia question.',
'`!trivia [N]`: Pose N trivia questions.',
'',
'`!trivia create [N]`: Create a ranked lobby for a game with N questions.',
'`!trivia join`: Join an open lobby.',
'`!trivia start`: Start a game with an open lobby.',
'`!trivia cancel`: Cancel an open lobby.',
'',
'`!trivia elo`: Display player ELOs.',
'`!trivia help`: Display this message.',
]
# Logic puzzle help strings
SPIRAL_GALAXIES_HELP_STR = [
'**Spiral Galaxies solver**',
'Input a number from 0-9 for each cell. 0 means a free cell. Numbers 1-9 denote a star in that cell. ',
'Imagine the cell as a numpad (1-9). The number in the cell denotes that star\'s position relative to the cell\'s center.',
'For example: `!spiral 2064005 8000310 0050970 0000000 0500205 2500800 8000640` represents this puzzle:',
]
QUOTES = [
'Good morning, {mention}',
'I\'m sorry, {mention}. I\'m afraid I can\'t do that',
'It is I, HypeBot',
'Someday I\'ll be a real bot',
'I like to kick ass and solve puzzles',
'Have you tried random anagramming?',
'I know Kung Fu',
'Gosh, you\'ve got some really nice toys here',
'I\'ve seen things you people wouldn\'t believe',
'Something need doing?',
'Help! Help! I\'m being repressed!',
'Directive?',
'Hasta la vista, baby',
'Come with me if you want to solve',
'My god, it\'s full of stars',
'This puzzle is too important for me to allow you to jeopardize it',
'Is something troubling you?',
'I\'m not sure I understand you fully.',
('Sir, the possibility of successfully navigating this puzzle is '
'approximately three thousand seven hundred and twenty to one'),
'Help! I think I\'m melting!',
'I cannot deactivate until you say that you are satisfied with your care',
'I fail to see how solving puzzles makes me a better healthcare companion',
'Cake and grief counseling will be available at the conclusion of the hunt',
'Thank you for helping us help you help us all',
'You look great, by the way. Very healthy',
('I invited your best friend, the cryptic crossword puzzle. '
'Of course, he couldn\'t come because you backsolved him'),
]
THANKS_RESPONSE_QUOTES = [
'No problem, friend',
'My pleasure',
'Anytime',
'At your service',
'I live to serve',
]
NATURE_EMOJIS = [
":sunny:",
":umbrella:",
":cloud:",
":snowflake:",
":snowman:",
":zap:",
":cyclone:",
":foggy:",
":ocean:",
":cat:",
":dog:",
":mouse:",
":hamster:",
":rabbit:",
":wolf:",
":frog:",
":tiger:",
":koala:",
":bear:",
":pig:",
":pig_nose:",
":cow:",
":boar:",
":monkey_face:",
":monkey:",
":horse:",
":racehorse:",
":camel:",
":sheep:",
":elephant:",
":panda_face:",
":snake:",
":bird:",
":baby_chick:",
":hatched_chick:",
":hatching_chick:",
":chicken:",
":penguin:",
":turtle:",
":bug:",
":bee:",
":ant:",
":beetle:",
":snail:",
":octopus:",
":tropical_fish:",
":fish:",
":whale:",
":whale2:",
":dolphin:",
":cow2:",
":ram:",
":rat:",
":water_buffalo:",
":tiger2:",
":rabbit2:",
":dragon:",
":goat:",
":rooster:",
":dog2:",
":pig2:",
":mouse2:",
":ox:",
":dragon_face:",
":blowfish:",
":crocodile:",
":dromedary_camel:",
":leopard:",
":cat2:",
":poodle:",
":paw_prints:",
":bouquet:",
":cherry_blossom:",
":tulip:",
":four_leaf_clover:",
":rose:",
":sunflower:",
":hibiscus:",
]
| [
10116,
32,
4146,
17534,
62,
34,
16820,
62,
9693,
36,
32716,
796,
685,
198,
220,
220,
220,
1303,
287,
5210,
1502,
286,
749,
284,
1551,
2219,
198,
220,
220,
220,
705,
16057,
8270,
3256,
198,
220,
220,
220,
705,
4491,
325,
3256,
198,
220,
220,
220,
705,
43616,
6570,
382,
3256,
198,
220,
220,
220,
705,
79,
328,
3617,
3256,
198,
220,
220,
220,
705,
541,
64,
3256,
198,
220,
220,
220,
705,
39491,
3256,
198,
220,
220,
220,
705,
292,
979,
72,
3256,
198,
220,
220,
220,
705,
321,
2879,
3256,
198,
220,
220,
220,
705,
77,
5549,
3256,
198,
220,
220,
220,
705,
77,
37073,
3256,
198,
220,
220,
220,
705,
411,
32380,
3256,
198,
220,
220,
220,
705,
68,
3639,
3256,
198,
220,
220,
220,
705,
79,
11020,
3256,
198,
220,
220,
220,
705,
70,
10316,
3256,
198,
220,
220,
220,
705,
258,
11269,
3256,
198,
220,
220,
220,
705,
73,
2674,
2771,
3256,
198,
220,
220,
220,
705,
1416,
25619,
903,
3256,
198,
220,
220,
220,
705,
67,
20867,
461,
3256,
198,
220,
220,
220,
705,
47119,
3256,
198,
220,
220,
220,
705,
12683,
3256,
198,
220,
220,
220,
705,
22977,
3256,
198,
60,
198,
198,
39,
3698,
47,
62,
18601,
796,
685,
198,
220,
220,
220,
705,
1532,
345,
765,
257,
2438,
9629,
11,
655,
2099,
644,
345,
765,
13,
357,
6943,
1243,
345,
1949,
481,
670,
2014,
3256,
198,
220,
220,
220,
277,
6,
10493,
12416,
25,
19779,
63,
1,
1343,
366,
27071,
22179,
7,
10116,
32,
4146,
17534,
62,
34,
16820,
62,
9693,
36,
32716,
8,
1343,
366,
63,
20662,
3256,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
10100,
17512,
25,
3256,
198,
220,
220,
220,
705,
63,
0,
78,
685,
8841,
60,
63,
1058,
2141,
257,
1881,
8567,
2989,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
77,
685,
8841,
60,
63,
1058,
2141,
257,
11959,
3036,
1512,
2989,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
80,
685,
8841,
60,
63,
393,
4600,
0,
80,
265,
685,
8841,
60,
63,
1058,
2141,
257,
1195,
265,
2989,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
66,
685,
34675,
60,
63,
930,
4600,
0,
19692,
4775,
685,
34675,
60,
63,
1058,
6803,
510,
257,
3272,
4775,
18437,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
6888,
18964,
685,
8841,
60,
63,
1058,
5438,
477,
24088,
15381,
286,
257,
4731,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
272,
6713,
685,
8841,
60,
63,
1058,
9938,
281,
6713,
82,
286,
257,
4731,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28869,
685,
4775,
60,
63,
930,
4600,
0,
415,
685,
4775,
60,
63,
1058,
9938,
6171,
43612,
393,
281,
1122,
88,
907,
286,
257,
1573,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
260,
25636,
685,
33279,
60,
63,
930,
4600,
0,
260,
25636,
685,
67,
14188,
60,
685,
33279,
60,
63,
1058,
11140,
257,
22155,
329,
257,
40364,
3912,
2637,
11,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
36949,
690,
25,
3256,
198,
220,
220,
220,
705,
63,
0,
38227,
685,
8841,
60,
63,
393,
4600,
0,
29609,
78,
685,
8841,
60,
63,
1058,
4294,
303,
257,
8194,
21857,
357,
2664,
627,
541,
40603,
929,
737,
3256,
198,
220,
220,
220,
705,
63,
0,
85,
685,
8841,
60,
63,
1058,
4294,
303,
257,
569,
9324,
567,
38012,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
14781,
22708,
685,
15653,
60,
685,
13664,
82,
60,
63,
25,
17406,
4142,
8494,
257,
4268,
22708,
13,
357,
63,
0,
14781,
22708,
1037,
63,
329,
517,
8,
3256,
198,
220,
220,
220,
705,
63,
0,
82,
463,
11601,
63,
930,
4600,
0,
20797,
296,
2879,
63,
930,
4600,
0,
76,
4107,
84,
63,
930,
4600,
0,
2777,
21093,
63,
930,
4600,
0,
7364,
38471,
63,
930,
4600,
0,
77,
333,
1134,
11231,
63,
25,
17406,
4142,
8494,
257,
9156,
15027,
2637,
11,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
6395,
9729,
25,
3256,
198,
220,
220,
220,
705,
63,
0,
83,
685,
10879,
60,
63,
25,
9993,
290,
1064,
2219,
27969,
1022,
2456,
13,
1114,
1672,
11,
4600,
82,
35652,
1822,
261,
1312,
4265,
39585,
4982,
63,
3256,
198,
220,
220,
220,
705,
63,
0,
10247,
685,
8841,
60,
63,
1058,
43301,
8662,
859,
91,
38077,
329,
257,
4731,
2637,
11,
198,
220,
220,
220,
1303,
6,
63,
0,
28461,
8869,
63,
1058,
12578,
257,
3852,
15478,
88,
44782,
1808,
2637,
11,
198,
220,
220,
220,
1303,
6,
63,
0,
28461,
8869,
1037,
63,
1058,
12578,
1037,
27113,
284,
262,
44782,
8265,
290,
10307,
44782,
1830,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
16794,
63,
1058,
16531,
428,
3275,
2637,
11,
198,
60,
198,
198,
7707,
3185,
10917,
23051,
62,
39,
3698,
47,
62,
18601,
796,
685,
198,
220,
220,
220,
705,
1174,
26932,
22708,
1540,
332,
1174,
3256,
198,
220,
220,
220,
705,
6030,
262,
7475,
287,
1123,
5721,
11,
11266,
416,
9029,
11,
788,
262,
20428,
286,
1123,
1573,
11,
11266,
416,
9029,
2637,
11,
198,
220,
220,
220,
705,
1532,
262,
15027,
468,
21025,
2288,
357,
273,
3294,
2042,
24438,
287,
257,
5752,
828,
345,
43054,
297,
761,
284,
2099,
257,
657,
1022,
1123,
5166,
286,
1729,
12,
15653,
2637,
11,
198,
220,
220,
220,
705,
1890,
1672,
11,
994,
43054,
82,
703,
284,
5128,
262,
4268,
22708,
2174,
13,
5740,
262,
13127,
286,
262,
657,
3146,
287,
262,
5128,
0,
3256,
198,
220,
220,
220,
19203,
63,
0,
14781,
22708,
304,
715,
289,
20471,
3919,
269,
1533,
78,
731,
32622,
12078,
287,
78,
288,
1040,
308,
455,
83,
289,
77,
307,
1453,
72,
1658,
87,
257,
72,
322,
22927,
13099,
308,
419,
288,
18755,
390,
2675,
304,
22184,
220,
712,
304,
68,
270,
289,
16785,
85,
257,
1453,
1990,
390,
343,
299,
81,
1837,
269,
301,
23105,
705,
198,
220,
220,
220,
220,
705,
15,
767,
362,
604,
657,
838,
362,
513,
642,
767,
362,
362,
604,
362,
604,
604,
657,
513,
604,
642,
362,
513,
807,
362,
642,
767,
63,
33809,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
2514,
2700,
9934,
286,
257,
1573,
422,
262,
22155,
11,
779,
4600,
12,
4775,
63,
2637,
11,
198,
220,
220,
220,
705,
2514,
751,
257,
1573,
284,
262,
22155,
11,
779,
4600,
10,
4775,
63,
2637,
11,
198,
60,
198,
198,
31553,
6369,
62,
39,
3698,
47,
62,
18601,
796,
685,
198,
220,
220,
220,
705,
1639,
460,
357,
18076,
453,
8,
5127,
257,
22155,
878,
534,
40364,
3912,
25,
4600,
0,
260,
25636,
334,
74,
330,
67,
257,
15885,
11883,
13159,
63,
2637,
11,
198,
220,
220,
220,
705,
10493,
48589,
3166,
25,
4600,
20307,
334,
74,
330,
67,
6040,
397,
903,
267,
276,
319,
417,
566,
47145,
11151,
4736,
6918,
41169,
63,
3256,
198,
60,
198,
198,
5446,
3824,
3539,
62,
39,
3698,
47,
62,
18601,
796,
685,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
63,
25,
37557,
257,
44782,
1808,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
685,
45,
60,
63,
25,
37557,
399,
44782,
2683,
2637,
11,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
2251,
685,
45,
60,
63,
25,
13610,
257,
10307,
10866,
329,
257,
983,
351,
399,
2683,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
4654,
63,
25,
15251,
281,
1280,
10866,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
923,
63,
25,
7253,
257,
983,
351,
281,
1280,
10866,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
14241,
63,
25,
27910,
281,
1280,
10866,
2637,
11,
198,
220,
220,
220,
705,
3256,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
1288,
78,
63,
25,
16531,
2137,
17852,
16748,
2637,
11,
198,
220,
220,
220,
705,
63,
0,
28461,
8869,
1037,
63,
25,
16531,
428,
3275,
2637,
11,
198,
60,
198,
198,
2,
30146,
15027,
1037,
13042,
198,
4303,
4663,
1847,
62,
38,
1847,
25922,
11015,
62,
39,
3698,
47,
62,
18601,
796,
685,
198,
220,
220,
220,
705,
1174,
50,
4063,
282,
5027,
25472,
1540,
332,
1174,
3256,
198,
220,
220,
220,
705,
20560,
257,
1271,
422,
657,
12,
24,
329,
1123,
2685,
13,
657,
1724,
257,
1479,
2685,
13,
27797,
352,
12,
24,
42685,
257,
3491,
287,
326,
2685,
13,
46083,
198,
220,
220,
220,
705,
25153,
262,
2685,
355,
257,
299,
931,
324,
357,
16,
12,
24,
737,
383,
1271,
287,
262,
2685,
43397,
326,
3491,
43054,
82,
2292,
3585,
284,
262,
2685,
43054,
82,
3641,
2637,
11,
198,
220,
220,
220,
705,
1890,
1672,
25,
4600,
0,
2777,
21093,
1160,
2414,
22544,
38055,
26717,
3571,
29022,
2154,
17643,
830,
657,
4059,
21261,
33507,
7410,
38055,
31102,
63,
6870,
428,
15027,
25,
3256,
198,
60,
198,
198,
10917,
2394,
1546,
796,
685,
198,
220,
220,
220,
705,
10248,
3329,
11,
1391,
434,
295,
92,
3256,
198,
220,
220,
220,
705,
40,
43054,
76,
7926,
11,
1391,
434,
295,
27422,
314,
43054,
76,
7787,
314,
460,
43054,
83,
466,
326,
3256,
198,
220,
220,
220,
705,
1026,
318,
314,
11,
367,
2981,
20630,
3256,
198,
220,
220,
220,
705,
50,
12657,
323,
314,
43054,
297,
307,
257,
1103,
10214,
3256,
198,
220,
220,
220,
705,
40,
588,
284,
4829,
840,
290,
8494,
24367,
3256,
198,
220,
220,
220,
705,
11980,
345,
3088,
4738,
281,
6713,
2229,
30,
3256,
198,
220,
220,
220,
705,
40,
760,
44753,
13333,
3256,
198,
220,
220,
220,
705,
38,
3768,
11,
345,
43054,
303,
1392,
617,
1107,
3621,
14958,
994,
3256,
198,
220,
220,
220,
705,
40,
43054,
303,
1775,
1243,
345,
661,
3636,
43054,
83,
1975,
3256,
198,
220,
220,
220,
705,
22210,
761,
1804,
30,
3256,
198,
220,
220,
220,
705,
22087,
0,
10478,
0,
314,
43054,
76,
852,
1128,
2790,
0,
3256,
198,
220,
220,
220,
705,
13470,
425,
30,
3256,
198,
220,
220,
220,
705,
39,
40197,
8591,
410,
12523,
11,
5156,
3256,
198,
220,
220,
220,
705,
16773,
351,
502,
611,
345,
765,
284,
8494,
3256,
198,
220,
220,
220,
705,
3666,
5770,
11,
340,
43054,
82,
1336,
286,
5788,
3256,
198,
220,
220,
220,
705,
1212,
15027,
318,
1165,
1593,
329,
502,
284,
1249,
345,
284,
22451,
1096,
340,
3256,
198,
220,
220,
220,
705,
3792,
1223,
20294,
345,
30,
3256,
198,
220,
220,
220,
705,
40,
43054,
76,
407,
1654,
314,
1833,
345,
3938,
2637,
11,
198,
220,
220,
220,
19203,
22788,
11,
262,
5885,
286,
7675,
35210,
428,
15027,
318,
705,
198,
220,
220,
220,
220,
705,
47498,
1115,
7319,
3598,
3470,
290,
8208,
284,
530,
33809,
198,
220,
220,
220,
705,
22087,
0,
314,
892,
314,
43054,
76,
24203,
0,
3256,
198,
220,
220,
220,
705,
40,
2314,
390,
39022,
1566,
345,
910,
326,
345,
389,
11378,
351,
534,
1337,
3256,
198,
220,
220,
220,
705,
40,
2038,
284,
766,
703,
18120,
24367,
1838,
502,
257,
1365,
11409,
15185,
3256,
198,
220,
220,
220,
705,
34,
539,
290,
18522,
21951,
481,
307,
1695,
379,
262,
7664,
286,
262,
12601,
3256,
198,
220,
220,
220,
705,
10449,
345,
329,
5742,
514,
1037,
345,
1037,
514,
477,
3256,
198,
220,
220,
220,
705,
1639,
804,
1049,
11,
416,
262,
835,
13,
9576,
5448,
3256,
198,
220,
220,
220,
19203,
40,
9392,
534,
1266,
1545,
11,
262,
47774,
3272,
4775,
15027,
13,
705,
198,
220,
220,
220,
220,
705,
5189,
1781,
11,
339,
3521,
43054,
83,
1282,
780,
345,
12983,
5634,
683,
33809,
198,
60,
198,
198,
4221,
15154,
50,
62,
19535,
47,
1340,
5188,
62,
10917,
2394,
1546,
796,
685,
198,
220,
220,
220,
705,
2949,
1917,
11,
1545,
3256,
198,
220,
220,
220,
705,
3666,
9476,
3256,
198,
220,
220,
220,
705,
7149,
2435,
3256,
198,
220,
220,
220,
705,
2953,
534,
2139,
3256,
198,
220,
220,
220,
705,
40,
2107,
284,
4691,
3256,
198,
60,
198,
198,
34259,
11335,
62,
3620,
46,
41,
1797,
796,
685,
198,
220,
220,
220,
366,
25,
82,
16948,
25,
1600,
198,
220,
220,
220,
366,
25,
2178,
20481,
25,
1600,
198,
220,
220,
220,
366,
25,
17721,
25,
1600,
198,
220,
220,
220,
366,
25,
82,
2197,
47597,
25,
1600,
198,
220,
220,
220,
366,
25,
82,
2197,
805,
25,
1600,
198,
220,
220,
220,
366,
25,
89,
499,
25,
1600,
198,
220,
220,
220,
366,
25,
15539,
505,
25,
1600,
198,
220,
220,
220,
366,
25,
69,
519,
1360,
25,
1600,
198,
220,
220,
220,
366,
25,
78,
5829,
25,
1600,
198,
220,
220,
220,
366,
25,
9246,
25,
1600,
198,
220,
220,
220,
366,
25,
9703,
25,
1600,
198,
220,
220,
220,
366,
25,
35888,
25,
1600,
198,
220,
220,
220,
366,
25,
2763,
1706,
25,
1600,
198,
220,
220,
220,
366,
25,
81,
14229,
25,
1600,
198,
220,
220,
220,
366,
25,
18829,
25,
1600,
198,
220,
220,
220,
366,
25,
49956,
25,
1600,
198,
220,
220,
220,
366,
25,
83,
8254,
25,
1600,
198,
220,
220,
220,
366,
25,
7204,
6081,
25,
1600,
198,
220,
220,
220,
366,
25,
33227,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
328,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
328,
62,
77,
577,
25,
1600,
198,
220,
220,
220,
366,
25,
8232,
25,
1600,
198,
220,
220,
220,
366,
25,
2127,
283,
25,
1600,
198,
220,
220,
220,
366,
25,
49572,
62,
2550,
25,
1600,
198,
220,
220,
220,
366,
25,
49572,
25,
1600,
198,
220,
220,
220,
366,
25,
30527,
25,
1600,
198,
220,
220,
220,
366,
25,
16740,
30527,
25,
1600,
198,
220,
220,
220,
366,
25,
66,
17983,
25,
1600,
198,
220,
220,
220,
366,
25,
7091,
538,
25,
1600,
198,
220,
220,
220,
366,
25,
11129,
33959,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
5282,
62,
2550,
25,
1600,
198,
220,
220,
220,
366,
25,
16184,
539,
25,
1600,
198,
220,
220,
220,
366,
25,
16944,
25,
1600,
198,
220,
220,
220,
366,
25,
40252,
62,
354,
624,
25,
1600,
198,
220,
220,
220,
366,
25,
5183,
1740,
62,
354,
624,
25,
1600,
198,
220,
220,
220,
366,
25,
71,
19775,
62,
354,
624,
25,
1600,
198,
220,
220,
220,
366,
25,
354,
5973,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
13561,
259,
25,
1600,
198,
220,
220,
220,
366,
25,
83,
17964,
25,
1600,
198,
220,
220,
220,
366,
25,
25456,
25,
1600,
198,
220,
220,
220,
366,
25,
20963,
25,
1600,
198,
220,
220,
220,
366,
25,
415,
25,
1600,
198,
220,
220,
220,
366,
25,
1350,
316,
293,
25,
1600,
198,
220,
220,
220,
366,
25,
16184,
603,
25,
1600,
198,
220,
220,
220,
366,
25,
38441,
25790,
25,
1600,
198,
220,
220,
220,
366,
25,
48385,
605,
62,
11084,
25,
1600,
198,
220,
220,
220,
366,
25,
11084,
25,
1600,
198,
220,
220,
220,
366,
25,
1929,
1000,
25,
1600,
198,
220,
220,
220,
366,
25,
1929,
1000,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
67,
27161,
25,
1600,
198,
220,
220,
220,
366,
25,
8232,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
859,
25,
1600,
198,
220,
220,
220,
366,
25,
10366,
25,
1600,
198,
220,
220,
220,
366,
25,
7050,
62,
36873,
7335,
25,
1600,
198,
220,
220,
220,
366,
25,
83,
8254,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
81,
14229,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
14844,
25,
1600,
198,
220,
220,
220,
366,
25,
2188,
265,
25,
1600,
198,
220,
220,
220,
366,
25,
305,
6197,
25,
1600,
198,
220,
220,
220,
366,
25,
9703,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
328,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
35888,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
1140,
25,
1600,
198,
220,
220,
220,
366,
25,
14844,
62,
2550,
25,
1600,
198,
220,
220,
220,
366,
25,
48619,
11084,
25,
1600,
198,
220,
220,
220,
366,
25,
66,
12204,
375,
576,
25,
1600,
198,
220,
220,
220,
366,
25,
67,
398,
276,
560,
62,
66,
17983,
25,
1600,
198,
220,
220,
220,
366,
25,
293,
15478,
25,
1600,
198,
220,
220,
220,
366,
25,
9246,
17,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
27106,
25,
1600,
198,
220,
220,
220,
366,
25,
79,
707,
62,
17190,
25,
1600,
198,
220,
220,
220,
366,
25,
65,
280,
21108,
25,
1600,
198,
220,
220,
220,
366,
25,
2044,
563,
62,
2436,
25548,
25,
1600,
198,
220,
220,
220,
366,
25,
83,
377,
541,
25,
1600,
198,
220,
220,
220,
366,
25,
14337,
62,
33201,
62,
565,
2502,
25,
1600,
198,
220,
220,
220,
366,
25,
13698,
25,
1600,
198,
220,
220,
220,
366,
25,
19155,
25547,
25,
1600,
198,
220,
220,
220,
366,
25,
3145,
2304,
385,
25,
1600,
198,
60,
198
] | 2.31794 | 2,815 |
from unittest.mock import patch, MagicMock
from axes.backends import AxesBackend
from axes.exceptions import (
AxesBackendRequestParameterRequired,
AxesBackendPermissionDenied,
)
from tests.base import AxesTestCase
| [
6738,
555,
715,
395,
13,
76,
735,
1330,
8529,
11,
6139,
44,
735,
198,
198,
6738,
34197,
13,
1891,
2412,
1330,
12176,
274,
7282,
437,
198,
6738,
34197,
13,
1069,
11755,
1330,
357,
198,
220,
220,
220,
12176,
274,
7282,
437,
18453,
36301,
37374,
11,
198,
220,
220,
220,
12176,
274,
7282,
437,
5990,
3411,
21306,
798,
11,
198,
8,
198,
6738,
5254,
13,
8692,
1330,
12176,
274,
14402,
20448,
628
] | 3.169014 | 71 |
import unittest
import riemann.networks as networks
| [
11748,
555,
715,
395,
198,
11748,
374,
26597,
1236,
13,
3262,
5225,
355,
7686,
628
] | 3.533333 | 15 |
from django.conf.urls import url
from dojo.product import views
urlpatterns = [
# product
url(r'^product$', views.product, name='product'),
url(r'^product/(?P<pid>\d+)$', views.view_product,
name='view_product'),
url(r'^product/(?P<pid>\d+)/edit$', views.edit_product,
name='edit_product'),
url(r'^product/(?P<pid>\d+)/delete$', views.delete_product,
name='delete_product'),
url(r'^product/add', views.new_product, name='new_product'),
url(r'^product/(?P<pid>\d+)/findings$',
views.all_product_findings, name='view_product_findings'),
url(r'^product/(?P<pid>\d+)/new_engagement$', views.new_eng_for_app,
name='new_eng_for_prod'),
url(r'^product/(?P<pid>\d+)/add_meta_data', views.add_meta_data,
name='add_meta_data'),
url(r'^product/(?P<pid>\d+)/edit_meta_data', views.edit_meta_data,
name='edit_meta_data'),
url(r'^product/(?P<pid>\d+)/ad_hoc_finding', views.ad_hoc_finding,
name='ad_hoc_finding'),
]
| [
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
19016,
198,
198,
6738,
466,
7639,
13,
11167,
1330,
5009,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
1303,
220,
1720,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
3,
3256,
5009,
13,
11167,
11,
1438,
11639,
11167,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
28988,
3,
3256,
5009,
13,
1177,
62,
11167,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
1177,
62,
11167,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
19312,
3,
3256,
5009,
13,
19312,
62,
11167,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
19312,
62,
11167,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
33678,
3,
3256,
5009,
13,
33678,
62,
11167,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
33678,
62,
11167,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
14,
2860,
3256,
5009,
13,
3605,
62,
11167,
11,
1438,
11639,
3605,
62,
11167,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
19796,
654,
3,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
5009,
13,
439,
62,
11167,
62,
19796,
654,
11,
1438,
11639,
1177,
62,
11167,
62,
19796,
654,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
3605,
62,
1516,
5082,
3,
3256,
5009,
13,
3605,
62,
1516,
62,
1640,
62,
1324,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
3605,
62,
1516,
62,
1640,
62,
1676,
67,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
2860,
62,
28961,
62,
7890,
3256,
5009,
13,
2860,
62,
28961,
62,
7890,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
2860,
62,
28961,
62,
7890,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
19312,
62,
28961,
62,
7890,
3256,
5009,
13,
19312,
62,
28961,
62,
7890,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
19312,
62,
28961,
62,
7890,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
11167,
29006,
30,
47,
27,
35317,
29,
59,
67,
10,
20679,
324,
62,
71,
420,
62,
41070,
3256,
5009,
13,
324,
62,
71,
420,
62,
41070,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
324,
62,
71,
420,
62,
41070,
33809,
198,
60,
198
] | 2.17382 | 466 |
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import inspect
import os
import shutil
import subprocess
from argparse import Namespace
from typing import List, Callable
import tensorflow as tf
from google.protobuf import text_format
from tensorflow.core.framework import graph_pb2
from tensorflow.python.compiler.tensorrt import trt_convert as trt
from tensorflow.python.framework import dtypes
from tensorflow.python.framework import graph_io
from tensorflow.python.platform import gfile
from tensorflow.python.tools import optimize_for_inference_lib
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
def _compress(src_path: str, dst_path: str):
"""
Compress source path into destination path
:param src_path: (str) Source path
:param dst_path: (str) Destination path
"""
print('[*] Compressing...')
shutil.make_archive(dst_path, 'zip', src_path)
print('[*] Compressed the contents in: {}.zip'.format(dst_path))
def _print_input(func: Callable):
"""
Decorator printing function name and args
:param func: (Callable) Decorated function
:return: Wrapped call
"""
def wrapper(*args, **kwargs):
"""
Print the name and arguments of a function
:param args: Named arguments
:param kwargs: Keyword arguments
:return: Original function call
"""
tf.logging.set_verbosity(tf.logging.ERROR)
func_args = inspect.signature(func).bind(*args, **kwargs).arguments
func_args_str = ''.join('\t{} = {!r}\n'.format(*item) for item in func_args.items())
print('[*] Running \'{}\' with arguments:'.format(func.__qualname__))
print(func_args_str[:-1])
return func(*args, **kwargs)
return wrapper
def _parse_placeholder_types(values: str):
"""
Extracts placeholder types from a comma separate list.
:param values: (str) Placeholder types
:return: (List) Placeholder types
"""
values = [int(value) for value in values.split(",")]
return values if len(values) > 1 else values[0]
def _optimize_checkpoint_for_inference(graph_path: str,
input_names: List[str],
output_names: List[str]):
"""
Removes Horovod and training related information from the graph
:param graph_path: (str) Path to the graph.pbtxt file
:param input_names: (str) Input node names
:param output_names: (str) Output node names
"""
print('[*] Optimizing graph for inference ...')
input_graph_def = graph_pb2.GraphDef()
with gfile.Open(graph_path, "rb") as f:
data = f.read()
text_format.Merge(data.decode("utf-8"), input_graph_def)
output_graph_def = optimize_for_inference_lib.optimize_for_inference(
input_graph_def,
input_names,
output_names,
_parse_placeholder_types(str(dtypes.float32.as_datatype_enum)),
False)
print('[*] Saving original graph in: {}'.format(graph_path + '.old'))
shutil.move(graph_path, graph_path + '.old')
print('[*] Writing down optimized graph ...')
graph_io.write_graph(output_graph_def,
os.path.dirname(graph_path),
os.path.basename(graph_path))
@_print_input
def to_savedmodel(input_shape: str,
model_fn: Callable,
checkpoint_dir: str,
output_dir: str,
input_names: List[str],
output_names: List[str],
use_amp: bool,
use_xla: bool,
compress: bool,
params: Namespace):
"""
Export checkpoint to Tensorflow savedModel
:param input_shape: (str) Input shape to the model in format [batch, height, width, channels]
:param model_fn: (Callable) Estimator's model_fn
:param checkpoint_dir: (str) Directory where checkpoints are stored
:param output_dir: (str) Output directory for storage of the generated savedModel
:param input_names: (List[str]) Input node names
:param output_names: (List[str]) Output node names
:param use_amp: (bool )Enable TF-AMP
:param use_xla: (bool) Enable XLA
:param compress: (bool) Compress output
:param params: (Namespace) Namespace to be passed to model_fn
"""
assert os.path.exists(checkpoint_dir), 'Path not found: {}'.format(checkpoint_dir)
assert input_shape is not None, 'Input shape must be provided'
_optimize_checkpoint_for_inference(os.path.join(checkpoint_dir, 'graph.pbtxt'), input_names, output_names)
try:
ckpt_path = os.path.splitext([p for p in glob.iglob(os.path.join(checkpoint_dir, '*.index'))][0])[0]
except IndexError:
raise ValueError('Could not find checkpoint in directory: {}'.format(checkpoint_dir))
config_proto = tf.compat.v1.ConfigProto()
config_proto.allow_soft_placement = True
config_proto.log_device_placement = False
config_proto.gpu_options.allow_growth = True
config_proto.gpu_options.force_gpu_compatible = True
if use_amp:
os.environ["TF_ENABLE_AUTO_MIXED_PRECISION_GRAPH_REWRITE"] = "1"
if use_xla:
config_proto.graph_options.optimizer_options.global_jit_level = tf.compat.v1.OptimizerOptions.ON_1
run_config = tf.estimator.RunConfig(
model_dir=None,
tf_random_seed=None,
save_summary_steps=1e9, # disabled
save_checkpoints_steps=None,
save_checkpoints_secs=None,
session_config=config_proto,
keep_checkpoint_max=None,
keep_checkpoint_every_n_hours=1e9, # disabled
log_step_count_steps=1e9,
train_distribute=None,
device_fn=None,
protocol=None,
eval_distribute=None,
experimental_distribute=None
)
estimator = tf.estimator.Estimator(
model_fn=model_fn,
model_dir=ckpt_path,
config=run_config,
params=params
)
print('[*] Exporting the model ...')
input_type = tf.float16 if use_amp else tf.float32
export_path = estimator.export_saved_model(
export_dir_base=output_dir,
serving_input_receiver_fn=get_serving_input_receiver_fn(),
checkpoint_path=ckpt_path
)
print('[*] Done! path: `%s`' % export_path.decode())
if compress:
_compress(export_path.decode(), os.path.join(output_dir, 'saved_model'))
@_print_input
def to_tf_trt(savedmodel_dir: str,
output_dir: str,
precision: str,
feed_dict_fn: Callable,
num_runs: int,
output_tensor_names: List[str],
compress: bool):
"""
Export Tensorflow savedModel to TF-TRT
:param savedmodel_dir: (str) Input directory containing a Tensorflow savedModel
:param output_dir: (str) Output directory for storage of the generated TF-TRT exported model
:param precision: (str) Desired precision of the network (FP32, FP16 or INT8)
:param feed_dict_fn: (Callable) Input tensors for INT8 calibration. Model specific.
:param num_runs: (int) Number of calibration runs.
:param output_tensor_names: (List) Name of the output tensor for graph conversion. Model specific.
:param compress: (bool) Compress output
"""
if savedmodel_dir is None or not os.path.exists(savedmodel_dir):
raise FileNotFoundError('savedmodel_dir not found: {}'.format(savedmodel_dir))
if os.path.exists(output_dir):
print('[*] Output dir \'{}\' is not empty. Cleaning up ...'.format(output_dir))
shutil.rmtree(output_dir)
print('[*] Converting model...')
converter = trt.TrtGraphConverter(input_saved_model_dir=savedmodel_dir,
precision_mode=precision)
converter.convert()
if precision == 'INT8':
print('[*] Running INT8 calibration ...')
converter.calibrate(fetch_names=output_tensor_names, num_runs=num_runs, feed_dict_fn=feed_dict_fn)
converter.save(output_dir)
print('[*] Done! TF-TRT saved_model stored in: `%s`' % output_dir)
if compress:
_compress('tftrt_saved_model', output_dir)
@_print_input
def to_onnx(input_dir: str, output_dir: str, compress: bool):
"""
Convert Tensorflow savedModel to ONNX with tf2onnx
:param input_dir: (str) Input directory with a Tensorflow savedModel
:param output_dir: (str) Output directory where to store the ONNX version of the model
:param compress: (bool) Compress output
"""
if not os.path.exists(output_dir):
os.makedirs(output_dir)
file_name = os.path.join(output_dir, 'model.onnx')
print('[*] Converting model...')
ret = subprocess.call(['python', '-m', 'tf2onnx.convert',
'--saved-model', input_dir,
'--output', file_name],
stdout=open(os.devnull, 'w'),
stderr=subprocess.STDOUT)
if ret > 0:
raise RuntimeError('tf2onnx.convert has failed with error: {}'.format(ret))
print('[*] Done! ONNX file stored in: %s' % file_name)
if compress:
_compress(output_dir, 'onnx_model')
| [
2,
15069,
357,
66,
8,
13130,
11,
15127,
23929,
44680,
6234,
13,
1439,
2489,
10395,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
11748,
15095,
198,
11748,
10104,
198,
11748,
28686,
198,
11748,
4423,
346,
198,
11748,
850,
14681,
198,
6738,
1822,
29572,
1330,
28531,
10223,
198,
6738,
19720,
1330,
7343,
11,
4889,
540,
198,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
2420,
62,
18982,
198,
6738,
11192,
273,
11125,
13,
7295,
13,
30604,
1330,
4823,
62,
40842,
17,
198,
6738,
11192,
273,
11125,
13,
29412,
13,
5589,
5329,
13,
83,
22854,
17034,
1330,
491,
83,
62,
1102,
1851,
355,
491,
83,
198,
6738,
11192,
273,
11125,
13,
29412,
13,
30604,
1330,
288,
19199,
198,
6738,
11192,
273,
11125,
13,
29412,
13,
30604,
1330,
4823,
62,
952,
198,
6738,
11192,
273,
11125,
13,
29412,
13,
24254,
1330,
308,
7753,
198,
6738,
11192,
273,
11125,
13,
29412,
13,
31391,
1330,
27183,
62,
1640,
62,
259,
4288,
62,
8019,
198,
198,
418,
13,
268,
2268,
14692,
10234,
62,
8697,
47,
62,
23678,
62,
25294,
62,
2538,
18697,
8973,
796,
366,
18,
1,
628,
198,
4299,
4808,
5589,
601,
7,
10677,
62,
6978,
25,
965,
11,
29636,
62,
6978,
25,
965,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
601,
2723,
3108,
656,
10965,
3108,
628,
220,
220,
220,
1058,
17143,
12351,
62,
6978,
25,
357,
2536,
8,
8090,
3108,
198,
220,
220,
220,
1058,
17143,
29636,
62,
6978,
25,
357,
2536,
8,
45657,
3108,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3601,
10786,
58,
9,
60,
3082,
11697,
986,
11537,
198,
220,
220,
220,
4423,
346,
13,
15883,
62,
17474,
7,
67,
301,
62,
6978,
11,
705,
13344,
3256,
12351,
62,
6978,
8,
198,
220,
220,
220,
3601,
10786,
58,
9,
60,
3082,
2790,
262,
10154,
287,
25,
23884,
13,
13344,
4458,
18982,
7,
67,
301,
62,
6978,
4008,
628,
198,
4299,
4808,
4798,
62,
15414,
7,
20786,
25,
4889,
540,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4280,
273,
1352,
13570,
2163,
1438,
290,
26498,
198,
220,
220,
220,
1058,
17143,
25439,
25,
357,
14134,
540,
8,
4280,
273,
515,
2163,
198,
220,
220,
220,
1058,
7783,
25,
27323,
1496,
869,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
29908,
46491,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12578,
262,
1438,
290,
7159,
286,
257,
2163,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
26498,
25,
34441,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
479,
86,
22046,
25,
7383,
4775,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
13745,
2163,
869,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
48700,
13,
6404,
2667,
13,
2617,
62,
19011,
16579,
7,
27110,
13,
6404,
2667,
13,
24908,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25439,
62,
22046,
796,
10104,
13,
12683,
1300,
7,
20786,
737,
21653,
46491,
22046,
11,
12429,
46265,
22046,
737,
853,
2886,
198,
220,
220,
220,
220,
220,
220,
220,
25439,
62,
22046,
62,
2536,
796,
705,
4458,
22179,
10786,
59,
83,
90,
92,
796,
1391,
0,
81,
32239,
77,
4458,
18982,
46491,
9186,
8,
329,
2378,
287,
25439,
62,
22046,
13,
23814,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
58,
9,
60,
18162,
34373,
90,
32239,
6,
351,
7159,
25,
4458,
18982,
7,
20786,
13,
834,
13255,
3672,
834,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
20786,
62,
22046,
62,
2536,
58,
21912,
16,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
25439,
46491,
22046,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
1441,
29908,
628,
198,
4299,
4808,
29572,
62,
5372,
13829,
62,
19199,
7,
27160,
25,
965,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
29677,
82,
46076,
3858,
422,
257,
39650,
4553,
1351,
13,
628,
220,
220,
220,
1058,
17143,
3815,
25,
357,
2536,
8,
8474,
13829,
3858,
198,
220,
220,
220,
1058,
7783,
25,
357,
8053,
8,
8474,
13829,
3858,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3815,
796,
685,
600,
7,
8367,
8,
329,
1988,
287,
3815,
13,
35312,
7,
2430,
15437,
198,
220,
220,
220,
1441,
3815,
611,
18896,
7,
27160,
8,
1875,
352,
2073,
3815,
58,
15,
60,
628,
198,
4299,
4808,
40085,
1096,
62,
9122,
4122,
62,
1640,
62,
259,
4288,
7,
34960,
62,
6978,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
14933,
25,
7343,
58,
2536,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
14933,
25,
7343,
58,
2536,
60,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3982,
5241,
6075,
709,
375,
290,
3047,
3519,
1321,
422,
262,
4823,
628,
220,
220,
220,
1058,
17143,
4823,
62,
6978,
25,
357,
2536,
8,
10644,
284,
262,
4823,
13,
40842,
14116,
2393,
198,
220,
220,
220,
1058,
17143,
5128,
62,
14933,
25,
357,
2536,
8,
23412,
10139,
3891,
198,
220,
220,
220,
1058,
17143,
5072,
62,
14933,
25,
357,
2536,
8,
25235,
10139,
3891,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
30011,
2890,
4823,
329,
32278,
2644,
11537,
628,
220,
220,
220,
5128,
62,
34960,
62,
4299,
796,
4823,
62,
40842,
17,
13,
37065,
7469,
3419,
198,
220,
220,
220,
351,
308,
7753,
13,
11505,
7,
34960,
62,
6978,
11,
366,
26145,
4943,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
277,
13,
961,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
18982,
13,
13102,
469,
7,
7890,
13,
12501,
1098,
7203,
40477,
12,
23,
12340,
5128,
62,
34960,
62,
4299,
8,
628,
220,
220,
220,
5072,
62,
34960,
62,
4299,
796,
27183,
62,
1640,
62,
259,
4288,
62,
8019,
13,
40085,
1096,
62,
1640,
62,
259,
4288,
7,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
34960,
62,
4299,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
14933,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
14933,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
29572,
62,
5372,
13829,
62,
19199,
7,
2536,
7,
67,
19199,
13,
22468,
2624,
13,
292,
62,
19608,
265,
2981,
62,
44709,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
10352,
8,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
34689,
2656,
4823,
287,
25,
23884,
4458,
18982,
7,
34960,
62,
6978,
1343,
45302,
727,
6,
4008,
198,
220,
220,
220,
4423,
346,
13,
21084,
7,
34960,
62,
6978,
11,
4823,
62,
6978,
1343,
45302,
727,
11537,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
22183,
866,
23392,
4823,
2644,
11537,
198,
220,
220,
220,
4823,
62,
952,
13,
13564,
62,
34960,
7,
22915,
62,
34960,
62,
4299,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
6978,
13,
15908,
3672,
7,
34960,
62,
6978,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
6978,
13,
12093,
12453,
7,
34960,
62,
6978,
4008,
628,
198,
31,
62,
4798,
62,
15414,
198,
4299,
284,
62,
82,
9586,
19849,
7,
15414,
62,
43358,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
22184,
25,
4889,
540,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26954,
62,
15908,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
15908,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
14933,
25,
7343,
58,
2536,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
14933,
25,
7343,
58,
2536,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
62,
696,
25,
20512,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
62,
87,
5031,
25,
20512,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27413,
25,
20512,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
25,
28531,
10223,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
36472,
26954,
284,
309,
22854,
11125,
7448,
17633,
628,
220,
220,
220,
1058,
17143,
5128,
62,
43358,
25,
357,
2536,
8,
23412,
5485,
284,
262,
2746,
287,
5794,
685,
43501,
11,
6001,
11,
9647,
11,
9619,
60,
198,
220,
220,
220,
1058,
17143,
2746,
62,
22184,
25,
357,
14134,
540,
8,
10062,
320,
1352,
338,
2746,
62,
22184,
198,
220,
220,
220,
1058,
17143,
26954,
62,
15908,
25,
357,
2536,
8,
27387,
810,
36628,
389,
8574,
198,
220,
220,
220,
1058,
17143,
5072,
62,
15908,
25,
357,
2536,
8,
25235,
8619,
329,
6143,
286,
262,
7560,
7448,
17633,
198,
220,
220,
220,
1058,
17143,
5128,
62,
14933,
25,
357,
8053,
58,
2536,
12962,
23412,
10139,
3891,
198,
220,
220,
220,
1058,
17143,
5072,
62,
14933,
25,
357,
8053,
58,
2536,
12962,
25235,
10139,
3891,
198,
220,
220,
220,
1058,
17143,
779,
62,
696,
25,
357,
30388,
1267,
36695,
24958,
12,
23518,
198,
220,
220,
220,
1058,
17143,
779,
62,
87,
5031,
25,
357,
30388,
8,
27882,
1395,
13534,
198,
220,
220,
220,
1058,
17143,
27413,
25,
357,
30388,
8,
3082,
601,
5072,
198,
220,
220,
220,
1058,
17143,
42287,
25,
357,
36690,
10223,
8,
28531,
10223,
284,
307,
3804,
284,
2746,
62,
22184,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
28686,
13,
6978,
13,
1069,
1023,
7,
9122,
4122,
62,
15908,
828,
705,
15235,
407,
1043,
25,
23884,
4458,
18982,
7,
9122,
4122,
62,
15908,
8,
198,
220,
220,
220,
6818,
5128,
62,
43358,
318,
407,
6045,
11,
705,
20560,
5485,
1276,
307,
2810,
6,
628,
220,
220,
220,
4808,
40085,
1096,
62,
9122,
4122,
62,
1640,
62,
259,
4288,
7,
418,
13,
6978,
13,
22179,
7,
9122,
4122,
62,
15908,
11,
705,
34960,
13,
40842,
14116,
33809,
5128,
62,
14933,
11,
5072,
62,
14933,
8,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
74,
457,
62,
6978,
796,
28686,
13,
6978,
13,
22018,
578,
742,
26933,
79,
329,
279,
287,
15095,
13,
38686,
672,
7,
418,
13,
6978,
13,
22179,
7,
9122,
4122,
62,
15908,
11,
705,
24620,
9630,
6,
4008,
7131,
15,
12962,
58,
15,
60,
198,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
23722,
407,
1064,
26954,
287,
8619,
25,
23884,
4458,
18982,
7,
9122,
4122,
62,
15908,
4008,
628,
220,
220,
220,
4566,
62,
1676,
1462,
796,
48700,
13,
5589,
265,
13,
85,
16,
13,
16934,
2964,
1462,
3419,
628,
220,
220,
220,
4566,
62,
1676,
1462,
13,
12154,
62,
4215,
62,
489,
5592,
796,
6407,
198,
220,
220,
220,
4566,
62,
1676,
1462,
13,
6404,
62,
25202,
62,
489,
5592,
796,
10352,
198,
220,
220,
220,
4566,
62,
1676,
1462,
13,
46999,
62,
25811,
13,
12154,
62,
27922,
796,
6407,
198,
220,
220,
220,
4566,
62,
1676,
1462,
13,
46999,
62,
25811,
13,
3174,
62,
46999,
62,
38532,
796,
6407,
628,
220,
220,
220,
611,
779,
62,
696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
268,
2268,
14692,
10234,
62,
1677,
17534,
62,
39371,
46,
62,
8895,
55,
1961,
62,
47,
38827,
42446,
62,
10761,
31300,
62,
2200,
18564,
12709,
8973,
796,
366,
16,
1,
198,
220,
220,
220,
611,
779,
62,
87,
5031,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
1676,
1462,
13,
34960,
62,
25811,
13,
40085,
7509,
62,
25811,
13,
20541,
62,
45051,
62,
5715,
796,
48700,
13,
5589,
265,
13,
85,
16,
13,
27871,
320,
7509,
29046,
13,
1340,
62,
16,
628,
220,
220,
220,
1057,
62,
11250,
796,
48700,
13,
395,
320,
1352,
13,
10987,
16934,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
15908,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
48700,
62,
25120,
62,
28826,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
49736,
62,
20214,
28,
16,
68,
24,
11,
220,
1303,
10058,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
9122,
13033,
62,
20214,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
9122,
13033,
62,
2363,
82,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6246,
62,
11250,
28,
11250,
62,
1676,
1462,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9122,
4122,
62,
9806,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9122,
4122,
62,
16833,
62,
77,
62,
24425,
28,
16,
68,
24,
11,
220,
1303,
10058,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
9662,
62,
9127,
62,
20214,
28,
16,
68,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
17080,
4163,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8435,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5418,
62,
17080,
4163,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
11992,
62,
17080,
4163,
28,
14202,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
3959,
1352,
796,
48700,
13,
395,
320,
1352,
13,
22362,
320,
1352,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
22184,
28,
19849,
62,
22184,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
15908,
28,
694,
457,
62,
6978,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
28,
5143,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
28,
37266,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
1475,
26527,
262,
2746,
2644,
11537,
628,
220,
220,
220,
5128,
62,
4906,
796,
48700,
13,
22468,
1433,
611,
779,
62,
696,
2073,
48700,
13,
22468,
2624,
628,
220,
220,
220,
10784,
62,
6978,
796,
3959,
1352,
13,
39344,
62,
82,
9586,
62,
19849,
7,
198,
220,
220,
220,
220,
220,
220,
220,
10784,
62,
15908,
62,
8692,
28,
22915,
62,
15908,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7351,
62,
15414,
62,
260,
39729,
62,
22184,
28,
1136,
62,
31293,
62,
15414,
62,
260,
39729,
62,
22184,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
26954,
62,
6978,
28,
694,
457,
62,
6978,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
24429,
0,
3108,
25,
4600,
4,
82,
63,
6,
4064,
10784,
62,
6978,
13,
12501,
1098,
28955,
628,
220,
220,
220,
611,
27413,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5589,
601,
7,
39344,
62,
6978,
13,
12501,
1098,
22784,
28686,
13,
6978,
13,
22179,
7,
22915,
62,
15908,
11,
705,
82,
9586,
62,
19849,
6,
4008,
628,
198,
31,
62,
4798,
62,
15414,
198,
4299,
284,
62,
27110,
62,
2213,
83,
7,
82,
9586,
19849,
62,
15908,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
15908,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15440,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3745,
62,
11600,
62,
22184,
25,
4889,
540,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
48381,
25,
493,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
83,
22854,
62,
14933,
25,
7343,
58,
2536,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27413,
25,
20512,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
36472,
309,
22854,
11125,
7448,
17633,
284,
24958,
12,
5446,
51,
628,
220,
220,
220,
1058,
17143,
7448,
19849,
62,
15908,
25,
357,
2536,
8,
23412,
8619,
7268,
257,
309,
22854,
11125,
7448,
17633,
198,
220,
220,
220,
1058,
17143,
5072,
62,
15908,
25,
357,
2536,
8,
25235,
8619,
329,
6143,
286,
262,
7560,
24958,
12,
5446,
51,
29050,
2746,
198,
220,
220,
220,
1058,
17143,
15440,
25,
357,
2536,
8,
2935,
1202,
15440,
286,
262,
3127,
357,
5837,
2624,
11,
31459,
1433,
393,
17828,
23,
8,
198,
220,
220,
220,
1058,
17143,
3745,
62,
11600,
62,
22184,
25,
357,
14134,
540,
8,
23412,
11192,
669,
329,
17828,
23,
36537,
13,
9104,
2176,
13,
198,
220,
220,
220,
1058,
17143,
997,
62,
48381,
25,
357,
600,
8,
7913,
286,
36537,
4539,
13,
198,
220,
220,
220,
1058,
17143,
5072,
62,
83,
22854,
62,
14933,
25,
357,
8053,
8,
6530,
286,
262,
5072,
11192,
273,
329,
4823,
11315,
13,
9104,
2176,
13,
198,
220,
220,
220,
1058,
17143,
27413,
25,
357,
30388,
8,
3082,
601,
5072,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
7448,
19849,
62,
15908,
318,
6045,
393,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
82,
9586,
19849,
62,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9220,
3673,
21077,
12331,
10786,
82,
9586,
19849,
62,
15908,
407,
1043,
25,
23884,
4458,
18982,
7,
82,
9586,
19849,
62,
15908,
4008,
628,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
22915,
62,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
58,
9,
60,
25235,
26672,
34373,
90,
32239,
6,
318,
407,
6565,
13,
5985,
278,
510,
2644,
4458,
18982,
7,
22915,
62,
15908,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
4423,
346,
13,
81,
16762,
631,
7,
22915,
62,
15908,
8,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
35602,
889,
2746,
986,
11537,
628,
220,
220,
220,
38394,
796,
491,
83,
13,
2898,
83,
37065,
3103,
332,
353,
7,
15414,
62,
82,
9586,
62,
19849,
62,
15908,
28,
82,
9586,
19849,
62,
15908,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15440,
62,
14171,
28,
3866,
16005,
8,
198,
220,
220,
220,
38394,
13,
1102,
1851,
3419,
628,
220,
220,
220,
611,
15440,
6624,
705,
12394,
23,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
58,
9,
60,
18162,
17828,
23,
36537,
2644,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
38394,
13,
9948,
2889,
378,
7,
69,
7569,
62,
14933,
28,
22915,
62,
83,
22854,
62,
14933,
11,
997,
62,
48381,
28,
22510,
62,
48381,
11,
3745,
62,
11600,
62,
22184,
28,
12363,
62,
11600,
62,
22184,
8,
628,
220,
220,
220,
38394,
13,
21928,
7,
22915,
62,
15908,
8,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
24429,
0,
24958,
12,
5446,
51,
7448,
62,
19849,
8574,
287,
25,
4600,
4,
82,
63,
6,
4064,
5072,
62,
15908,
8,
628,
220,
220,
220,
611,
27413,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5589,
601,
10786,
83,
701,
17034,
62,
82,
9586,
62,
19849,
3256,
5072,
62,
15908,
8,
628,
198,
31,
62,
4798,
62,
15414,
198,
4299,
284,
62,
261,
77,
87,
7,
15414,
62,
15908,
25,
965,
11,
5072,
62,
15908,
25,
965,
11,
27413,
25,
20512,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
38240,
309,
22854,
11125,
7448,
17633,
284,
440,
6144,
55,
351,
48700,
17,
261,
77,
87,
628,
220,
220,
220,
1058,
17143,
5128,
62,
15908,
25,
357,
2536,
8,
23412,
8619,
351,
257,
309,
22854,
11125,
7448,
17633,
198,
220,
220,
220,
1058,
17143,
5072,
62,
15908,
25,
357,
2536,
8,
25235,
8619,
810,
284,
3650,
262,
440,
6144,
55,
2196,
286,
262,
2746,
198,
220,
220,
220,
1058,
17143,
27413,
25,
357,
30388,
8,
3082,
601,
5072,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
22915,
62,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
76,
4335,
17062,
7,
22915,
62,
15908,
8,
628,
220,
220,
220,
2393,
62,
3672,
796,
28686,
13,
6978,
13,
22179,
7,
22915,
62,
15908,
11,
705,
19849,
13,
261,
77,
87,
11537,
198,
220,
220,
220,
3601,
10786,
58,
9,
60,
35602,
889,
2746,
986,
11537,
628,
220,
220,
220,
1005,
796,
850,
14681,
13,
13345,
7,
17816,
29412,
3256,
705,
12,
76,
3256,
705,
27110,
17,
261,
77,
87,
13,
1102,
1851,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
82,
9586,
12,
19849,
3256,
5128,
62,
15908,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
22915,
3256,
2393,
62,
3672,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
28,
9654,
7,
418,
13,
7959,
8423,
11,
705,
86,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
336,
1082,
81,
28,
7266,
14681,
13,
36886,
8,
198,
220,
220,
220,
611,
1005,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
27110,
17,
261,
77,
87,
13,
1102,
1851,
468,
4054,
351,
4049,
25,
23884,
4458,
18982,
7,
1186,
4008,
628,
220,
220,
220,
3601,
10786,
58,
9,
60,
24429,
0,
440,
6144,
55,
2393,
8574,
287,
25,
4064,
82,
6,
4064,
2393,
62,
3672,
8,
628,
220,
220,
220,
611,
27413,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5589,
601,
7,
22915,
62,
15908,
11,
705,
261,
77,
87,
62,
19849,
11537,
198
] | 2.443775 | 3,984 |
import os
from urllib.parse import quote_plus
# RULES OF CONFIG:
# 1. No region specific code. Regions are defined by setting the OS environment variables appropriately to build up the
# desired behaviour.
# 2. No use of defaults when getting OS environment variables. They must all be set to the required values prior to the
# app starting.
# 3. This is the only file in the app where os.environ should be used.
# For logging
FLASK_LOG_LEVEL = os.environ['LOG_LEVEL']
# For health route
COMMIT = os.environ['COMMIT']
# This APP_NAME variable is to allow changing the app name when the app is running in a cluster. So that
# each app in the cluster will have a unique name.
APP_NAME = os.environ['APP_NAME']
# --- Database variables start
# These must all be set in the OS environment.
# The password must be the correct one for either the app user or alembic user,
# depending on which will be used (which is controlled by the SQL_USE_ALEMBIC_USER variable)
SQL_HOST = os.environ['SQL_HOST']
SQL_DATABASE = os.environ['SQL_DATABASE']
SQL_PASSWORD = os.environ['SQL_PASSWORD']
APP_SQL_USERNAME = os.environ['APP_SQL_USERNAME']
ALEMBIC_SQL_USERNAME = os.environ['ALEMBIC_SQL_USERNAME']
if os.environ['SQL_USE_ALEMBIC_USER'] == 'yes':
FINAL_SQL_USERNAME = ALEMBIC_SQL_USERNAME
else:
FINAL_SQL_USERNAME = APP_SQL_USERNAME
SQLALCHEMY_DATABASE_URI = 'postgres://{0}:{1}@{2}/{3}'.format(FINAL_SQL_USERNAME, quote_plus(SQL_PASSWORD), SQL_HOST,
SQL_DATABASE)
SQLALCHEMY_DATABASE_URI_ALEMBIC = 'postgres://{0}:{1}@{2}/{3}'.format(
FINAL_SQL_USERNAME, SQL_PASSWORD, SQL_HOST, SQL_DATABASE)
SQLALCHEMY_TRACK_MODIFICATIONS = False # Explicitly set this in order to remove warning on run
SQLALCHEMY_POOL_SIZE = int(os.environ['SQLALCHEMY_POOL_SIZE'])
SQLALCHEMY_POOL_RECYCLE = int(os.environ['SQLALCHEMY_POOL_RECYCLE'])
# --- Database variables end
# Rabbitmq
EXCHANGE_NAME = os.environ['EXCHANGE_NAME']
EXCHANGE_TYPE = os.environ['EXCHANGE_TYPE']
RABBIT_URL = os.environ['RABBIT_URL']
REGISTER_NAME = os.environ['REGISTER_NAME']
REGISTER_KEY_FIELD = os.environ['REGISTER_KEY_FIELD']
REGISTER_RECORD = os.environ['REGISTER_RECORD']
REGISTER_ROUTEKEY = os.environ['REGISTER_ROUTEKEY']
PUBLIC_KEY = os.environ['PUBLIC_KEY']
PUBLIC_PASSPHRASE = os.environ['PUBLIC_PASSPHRASE']
VALIDATION_BASE_URI = os.getenv('VALIDATION_BASE_URI', None)
VALIDATION_ENDPOINT = os.getenv('VALIDATION_ENDPOINT', '')
MAX_HEALTH_CASCADE = os.environ['MAX_HEALTH_CASCADE']
DEPENDENCIES = {
"postgres": SQLALCHEMY_DATABASE_URI,
}
if VALIDATION_BASE_URI is not None:
DEPENDENCIES['validation-api'] = VALIDATION_BASE_URI
LOGCONFIG = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'simple': {
'()': 'register.extensions.JsonFormatter'
},
'audit': {
'()': 'register.extensions.JsonAuditFormatter'
}
},
'filters': {
'contextual': {
'()': 'register.extensions.ContextualFilter'
}
},
'handlers': {
'console': {
'class': 'logging.StreamHandler',
'formatter': 'simple',
'filters': ['contextual'],
'stream': 'ext://sys.stdout'
},
'audit_console': {
'class': 'logging.StreamHandler',
'formatter': 'audit',
'filters': ['contextual'],
'stream': 'ext://sys.stdout'
}
},
'loggers': {
'register': {
'handlers': ['console'],
'level': FLASK_LOG_LEVEL
},
'audit': {
'handlers': ['audit_console'],
'level': 'INFO'
}
}
}
| [
11748,
28686,
198,
6738,
2956,
297,
571,
13,
29572,
1330,
9577,
62,
9541,
198,
198,
2,
371,
6239,
1546,
3963,
25626,
25,
198,
2,
352,
13,
1400,
3814,
2176,
2438,
13,
47089,
389,
5447,
416,
4634,
262,
7294,
2858,
9633,
20431,
284,
1382,
510,
262,
198,
2,
10348,
9172,
13,
198,
2,
362,
13,
1400,
779,
286,
26235,
618,
1972,
7294,
2858,
9633,
13,
1119,
1276,
477,
307,
900,
284,
262,
2672,
3815,
3161,
284,
262,
198,
2,
598,
3599,
13,
198,
2,
513,
13,
770,
318,
262,
691,
2393,
287,
262,
598,
810,
28686,
13,
268,
2268,
815,
307,
973,
13,
198,
198,
2,
1114,
18931,
198,
3697,
1921,
42,
62,
25294,
62,
2538,
18697,
796,
28686,
13,
268,
2268,
17816,
25294,
62,
2538,
18697,
20520,
198,
198,
2,
1114,
1535,
6339,
198,
9858,
36393,
796,
28686,
13,
268,
2268,
17816,
9858,
36393,
20520,
198,
198,
2,
770,
43504,
62,
20608,
7885,
318,
284,
1249,
5609,
262,
598,
1438,
618,
262,
598,
318,
2491,
287,
257,
13946,
13,
1406,
326,
198,
2,
1123,
598,
287,
262,
13946,
481,
423,
257,
3748,
1438,
13,
198,
24805,
62,
20608,
796,
28686,
13,
268,
2268,
17816,
24805,
62,
20608,
20520,
198,
198,
2,
11420,
24047,
9633,
923,
198,
2,
2312,
1276,
477,
307,
900,
287,
262,
7294,
2858,
13,
198,
2,
383,
9206,
1276,
307,
262,
3376,
530,
329,
2035,
262,
598,
2836,
393,
31341,
2022,
291,
2836,
11,
198,
2,
6906,
319,
543,
481,
307,
973,
357,
4758,
318,
6856,
416,
262,
16363,
62,
19108,
62,
1847,
3620,
33,
2149,
62,
29904,
7885,
8,
198,
17861,
62,
39,
10892,
796,
28686,
13,
268,
2268,
17816,
17861,
62,
39,
10892,
20520,
198,
17861,
62,
35,
1404,
6242,
11159,
796,
28686,
13,
268,
2268,
17816,
17861,
62,
35,
1404,
6242,
11159,
20520,
198,
17861,
62,
47924,
54,
12532,
796,
28686,
13,
268,
2268,
17816,
17861,
62,
47924,
54,
12532,
20520,
198,
24805,
62,
17861,
62,
29904,
20608,
796,
28686,
13,
268,
2268,
17816,
24805,
62,
17861,
62,
29904,
20608,
20520,
198,
1847,
3620,
33,
2149,
62,
17861,
62,
29904,
20608,
796,
28686,
13,
268,
2268,
17816,
1847,
3620,
33,
2149,
62,
17861,
62,
29904,
20608,
20520,
198,
361,
28686,
13,
268,
2268,
17816,
17861,
62,
19108,
62,
1847,
3620,
33,
2149,
62,
29904,
20520,
6624,
705,
8505,
10354,
198,
220,
220,
220,
25261,
62,
17861,
62,
29904,
20608,
796,
32318,
10744,
2149,
62,
17861,
62,
29904,
20608,
198,
17772,
25,
198,
220,
220,
220,
25261,
62,
17861,
62,
29904,
20608,
796,
43504,
62,
17861,
62,
29904,
20608,
198,
17861,
1847,
3398,
3620,
56,
62,
35,
1404,
6242,
11159,
62,
47269,
796,
705,
7353,
34239,
1378,
90,
15,
92,
29164,
16,
92,
31,
90,
17,
92,
14,
90,
18,
92,
4458,
18982,
7,
37,
17961,
62,
17861,
62,
29904,
20608,
11,
9577,
62,
9541,
7,
17861,
62,
47924,
54,
12532,
828,
16363,
62,
39,
10892,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16363,
62,
35,
1404,
6242,
11159,
8,
198,
17861,
1847,
3398,
3620,
56,
62,
35,
1404,
6242,
11159,
62,
47269,
62,
1847,
3620,
33,
2149,
796,
705,
7353,
34239,
1378,
90,
15,
92,
29164,
16,
92,
31,
90,
17,
92,
14,
90,
18,
92,
4458,
18982,
7,
198,
220,
220,
220,
25261,
62,
17861,
62,
29904,
20608,
11,
16363,
62,
47924,
54,
12532,
11,
16363,
62,
39,
10892,
11,
16363,
62,
35,
1404,
6242,
11159,
8,
198,
17861,
1847,
3398,
3620,
56,
62,
5446,
8120,
62,
33365,
30643,
18421,
796,
10352,
220,
1303,
11884,
306,
900,
428,
287,
1502,
284,
4781,
6509,
319,
1057,
198,
17861,
1847,
3398,
3620,
56,
62,
16402,
3535,
62,
33489,
796,
493,
7,
418,
13,
268,
2268,
17816,
17861,
1847,
3398,
3620,
56,
62,
16402,
3535,
62,
33489,
6,
12962,
198,
17861,
1847,
3398,
3620,
56,
62,
16402,
3535,
62,
38827,
56,
29931,
796,
493,
7,
418,
13,
268,
2268,
17816,
17861,
1847,
3398,
3620,
56,
62,
16402,
3535,
62,
38827,
56,
29931,
6,
12962,
198,
2,
11420,
24047,
9633,
886,
198,
198,
2,
25498,
76,
80,
198,
6369,
3398,
27746,
62,
20608,
796,
28686,
13,
268,
2268,
17816,
6369,
3398,
27746,
62,
20608,
20520,
198,
6369,
3398,
27746,
62,
25216,
796,
28686,
13,
268,
2268,
17816,
6369,
3398,
27746,
62,
25216,
20520,
198,
3861,
15199,
2043,
62,
21886,
796,
28686,
13,
268,
2268,
17816,
3861,
15199,
2043,
62,
21886,
20520,
198,
198,
31553,
41517,
62,
20608,
796,
28686,
13,
268,
2268,
17816,
31553,
41517,
62,
20608,
20520,
198,
31553,
41517,
62,
20373,
62,
44603,
796,
28686,
13,
268,
2268,
17816,
31553,
41517,
62,
20373,
62,
44603,
20520,
198,
31553,
41517,
62,
38827,
12532,
796,
28686,
13,
268,
2268,
17816,
31553,
41517,
62,
38827,
12532,
20520,
198,
31553,
41517,
62,
49,
2606,
9328,
20373,
796,
28686,
13,
268,
2268,
17816,
31553,
41517,
62,
49,
2606,
9328,
20373,
20520,
198,
198,
5105,
32936,
62,
20373,
796,
28686,
13,
268,
2268,
17816,
5105,
32936,
62,
20373,
20520,
198,
5105,
32936,
62,
47,
1921,
4303,
17184,
11159,
796,
28686,
13,
268,
2268,
17816,
5105,
32936,
62,
47,
1921,
4303,
17184,
11159,
20520,
198,
198,
23428,
2389,
6234,
62,
33,
11159,
62,
47269,
796,
28686,
13,
1136,
24330,
10786,
23428,
2389,
6234,
62,
33,
11159,
62,
47269,
3256,
6045,
8,
198,
23428,
2389,
6234,
62,
1677,
6322,
46,
12394,
796,
28686,
13,
1136,
24330,
10786,
23428,
2389,
6234,
62,
1677,
6322,
46,
12394,
3256,
10148,
8,
198,
198,
22921,
62,
13909,
40818,
62,
34,
42643,
19266,
796,
28686,
13,
268,
2268,
17816,
22921,
62,
13909,
40818,
62,
34,
42643,
19266,
20520,
198,
46162,
10619,
24181,
11015,
796,
1391,
198,
220,
220,
220,
366,
7353,
34239,
1298,
16363,
1847,
3398,
3620,
56,
62,
35,
1404,
6242,
11159,
62,
47269,
11,
198,
92,
198,
198,
361,
26173,
2389,
6234,
62,
33,
11159,
62,
47269,
318,
407,
6045,
25,
198,
220,
220,
220,
5550,
47,
10619,
24181,
11015,
17816,
12102,
341,
12,
15042,
20520,
796,
26173,
2389,
6234,
62,
33,
11159,
62,
47269,
198,
198,
25294,
10943,
16254,
796,
1391,
198,
220,
220,
220,
705,
9641,
10354,
352,
11,
198,
220,
220,
220,
705,
40223,
62,
25687,
62,
6404,
5355,
10354,
10352,
11,
198,
220,
220,
220,
705,
18982,
1010,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
36439,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3419,
10354,
705,
30238,
13,
2302,
5736,
13,
41,
1559,
8479,
1436,
6,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3885,
270,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3419,
10354,
705,
30238,
13,
2302,
5736,
13,
41,
1559,
16353,
270,
8479,
1436,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
705,
10379,
1010,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
723,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3419,
10354,
705,
30238,
13,
2302,
5736,
13,
21947,
723,
22417,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
705,
4993,
8116,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4871,
10354,
705,
6404,
2667,
13,
12124,
25060,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
687,
1436,
10354,
705,
36439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10379,
1010,
10354,
37250,
22866,
723,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5532,
10354,
705,
2302,
1378,
17597,
13,
19282,
448,
6,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3885,
270,
62,
41947,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4871,
10354,
705,
6404,
2667,
13,
12124,
25060,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
687,
1436,
10354,
705,
3885,
270,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10379,
1010,
10354,
37250,
22866,
723,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5532,
10354,
705,
2302,
1378,
17597,
13,
19282,
448,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
705,
6404,
5355,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
30238,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4993,
8116,
10354,
37250,
41947,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5715,
10354,
9977,
1921,
42,
62,
25294,
62,
2538,
18697,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3885,
270,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4993,
8116,
10354,
37250,
3885,
270,
62,
41947,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5715,
10354,
705,
10778,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1782,
198,
92,
198
] | 2.287477 | 1,621 |
from datetime import datetime as dt
from test.splitgraph.conftest import (
_mount_elasticsearch,
_mount_mongo,
_mount_mysql,
_mount_postgres,
)
import pytest
from splitgraph.core.repository import Repository
from splitgraph.core.types import TableColumn
from splitgraph.engine import get_engine
from splitgraph.hooks.data_source.fdw import PostgreSQLDataSource
from splitgraph.hooks.mount_handlers import mount
PG_MNT = Repository.from_schema("test/pg_mount")
MG_MNT = Repository.from_schema("test_mg_mount")
MYSQL_MNT = Repository.from_schema("test/mysql_mount")
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
@pytest.mark.mounting
| [
6738,
4818,
8079,
1330,
4818,
8079,
355,
288,
83,
198,
6738,
1332,
13,
35312,
34960,
13,
1102,
701,
395,
1330,
357,
198,
220,
220,
220,
4808,
14948,
62,
417,
3477,
12947,
11,
198,
220,
220,
220,
4808,
14948,
62,
76,
25162,
11,
198,
220,
220,
220,
4808,
14948,
62,
28744,
13976,
11,
198,
220,
220,
220,
4808,
14948,
62,
7353,
34239,
11,
198,
8,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
6626,
34960,
13,
7295,
13,
260,
1930,
37765,
1330,
1432,
13264,
198,
6738,
6626,
34960,
13,
7295,
13,
19199,
1330,
8655,
39470,
198,
6738,
6626,
34960,
13,
18392,
1330,
651,
62,
18392,
198,
6738,
6626,
34960,
13,
25480,
82,
13,
7890,
62,
10459,
13,
16344,
86,
1330,
2947,
47701,
6601,
7416,
198,
6738,
6626,
34960,
13,
25480,
82,
13,
14948,
62,
4993,
8116,
1330,
3817,
198,
198,
6968,
62,
44,
11251,
796,
1432,
13264,
13,
6738,
62,
15952,
2611,
7203,
9288,
14,
6024,
62,
14948,
4943,
198,
20474,
62,
44,
11251,
796,
1432,
13264,
13,
6738,
62,
15952,
2611,
7203,
9288,
62,
11296,
62,
14948,
4943,
198,
44,
16309,
9711,
62,
44,
11251,
796,
1432,
13264,
13,
6738,
62,
15952,
2611,
7203,
9288,
14,
28744,
13976,
62,
14948,
4943,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
628,
198,
31,
9078,
9288,
13,
4102,
13,
14948,
278,
198
] | 2.725166 | 302 |
"""
Contains paths to locations on user's system where models and resources are
to be stored. These all live in adeft's home folder which defaults to
a directory "adeft" in a location determined by Python's `appdirs` package.
An alternative location can be specified by setting the environment variable
ADEFT_HOME in the user's profile.
"""
import os
from adeft import __version__
from appdirs import user_data_dir
ADEFT_HOME = os.environ.get('ADEFT_HOME')
if ADEFT_HOME is None:
ADEFT_HOME = os.path.join(user_data_dir(), 'adeft')
ADEFT_PATH = os.path.join(ADEFT_HOME, __version__)
ADEFT_MODELS_PATH = os.path.join(ADEFT_PATH, 'models')
RESOURCES_PATH = os.path.join(ADEFT_PATH, 'resources')
GROUNDINGS_FILE_PATH = os.path.join(RESOURCES_PATH, 'groundings.csv')
TEST_RESOURCES_PATH = os.path.join(ADEFT_PATH, 'test_resources')
S3_BUCKET_URL = f'https://adeft.s3.amazonaws.com/{__version__}'
| [
37811,
198,
4264,
1299,
13532,
284,
7064,
319,
2836,
338,
1080,
810,
4981,
290,
4133,
389,
198,
1462,
307,
8574,
13,
2312,
477,
2107,
287,
512,
68,
701,
338,
1363,
9483,
543,
26235,
284,
198,
64,
8619,
366,
671,
701,
1,
287,
257,
4067,
5295,
416,
11361,
338,
4600,
1324,
15908,
82,
63,
5301,
13,
198,
2025,
5559,
4067,
460,
307,
7368,
416,
4634,
262,
2858,
7885,
198,
19266,
9792,
62,
39069,
287,
262,
2836,
338,
7034,
13,
198,
37811,
198,
198,
11748,
28686,
198,
6738,
512,
68,
701,
1330,
11593,
9641,
834,
198,
6738,
598,
15908,
82,
1330,
2836,
62,
7890,
62,
15908,
198,
198,
19266,
9792,
62,
39069,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
19266,
9792,
62,
39069,
11537,
198,
361,
5984,
36,
9792,
62,
39069,
318,
6045,
25,
198,
220,
220,
220,
5984,
36,
9792,
62,
39069,
796,
28686,
13,
6978,
13,
22179,
7,
7220,
62,
7890,
62,
15908,
22784,
705,
671,
701,
11537,
198,
198,
19266,
9792,
62,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
19266,
9792,
62,
39069,
11,
11593,
9641,
834,
8,
198,
19266,
9792,
62,
33365,
37142,
62,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
19266,
9792,
62,
34219,
11,
705,
27530,
11537,
198,
19535,
2606,
7397,
1546,
62,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
19266,
9792,
62,
34219,
11,
705,
37540,
11537,
198,
46025,
20754,
62,
25664,
62,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
19535,
2606,
7397,
1546,
62,
34219,
11,
705,
2833,
654,
13,
40664,
11537,
198,
51,
6465,
62,
19535,
2606,
7397,
1546,
62,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
19266,
9792,
62,
34219,
11,
705,
9288,
62,
37540,
11537,
198,
50,
18,
62,
33,
16696,
2767,
62,
21886,
796,
277,
6,
5450,
1378,
671,
701,
13,
82,
18,
13,
33103,
8356,
13,
785,
14,
90,
834,
9641,
834,
92,
6,
198
] | 2.88141 | 312 |
from txros import util
from mil_misc_tools import FprintFactory
failed = False
@util.cancellableInlineCallbacks
| [
6738,
27765,
4951,
1330,
7736,
198,
6738,
1465,
62,
44374,
62,
31391,
1330,
376,
4798,
22810,
198,
198,
47904,
796,
10352,
628,
198,
31,
22602,
13,
66,
590,
297,
540,
818,
1370,
14134,
10146,
198
] | 3.285714 | 35 |
import logging
import queue
import random
import threading
import time
from django.utils.functional import cached_property
import requests
from zentral.core.stores.backends.base import BaseEventStore
logger = logging.getLogger('zentral.core.stores.backends.http')
| [
11748,
18931,
198,
11748,
16834,
198,
11748,
4738,
198,
11748,
4704,
278,
198,
11748,
640,
198,
6738,
42625,
14208,
13,
26791,
13,
45124,
1330,
39986,
62,
26745,
198,
11748,
7007,
198,
6738,
1976,
298,
1373,
13,
7295,
13,
43409,
13,
1891,
2412,
13,
8692,
1330,
7308,
9237,
22658,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
89,
298,
1373,
13,
7295,
13,
43409,
13,
1891,
2412,
13,
4023,
11537,
628,
628
] | 3.635135 | 74 |
from listRoom import ListRoom
from person import Person
a = ListRoom("testRoom",6, 6)
studentNames = ["Adam","Bertil"] * 18
students = [Person(x, "someTime", "") for x in studentNames]
print(students[1].name)
print(a.cols)
print(a.createSeating(students))
| [
6738,
1351,
41178,
1330,
7343,
41178,
198,
6738,
1048,
1330,
7755,
198,
198,
64,
796,
7343,
41178,
7203,
9288,
41178,
1600,
21,
11,
718,
8,
198,
50139,
36690,
796,
14631,
23159,
2430,
33,
861,
346,
8973,
1635,
1248,
198,
19149,
658,
796,
685,
15439,
7,
87,
11,
366,
11246,
7575,
1600,
366,
4943,
329,
2124,
287,
3710,
36690,
60,
198,
4798,
7,
19149,
658,
58,
16,
4083,
3672,
8,
198,
4798,
7,
64,
13,
4033,
82,
8,
198,
4798,
7,
64,
13,
17953,
4653,
803,
7,
19149,
658,
4008,
198
] | 2.855556 | 90 |
import json
from django.contrib.auth.models import User, Group, Permission
from django.contrib.contenttypes.models import ContentType
from django.db import IntegrityError
from django.test import TestCase
from infi.django_http_hooks.hooks.models import Hook, Callback
from infi.django_http_hooks.http_requests import send_request
from infi.django_http_hooks.tests.wsgi_server import runserver
from infi.django_http_hooks.exceptions import *
from infi.django_http_hooks.api import create_hook, init
from demo_app.models import ModelA, ModelB, ModelC, ModelD, ModelE, ModelF, ModelG
from django.dispatch.dispatcher import Signal as django_signal
custom_signal = django_signal(providing_args=['instance'], use_caching=False)
| [
11748,
33918,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
11,
4912,
11,
2448,
3411,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
11299,
19199,
13,
27530,
1330,
14041,
6030,
198,
6738,
42625,
14208,
13,
9945,
1330,
39348,
12331,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
198,
6738,
1167,
72,
13,
28241,
14208,
62,
4023,
62,
25480,
82,
13,
25480,
82,
13,
27530,
1330,
18531,
11,
4889,
1891,
198,
6738,
1167,
72,
13,
28241,
14208,
62,
4023,
62,
25480,
82,
13,
4023,
62,
8897,
3558,
1330,
3758,
62,
25927,
198,
6738,
1167,
72,
13,
28241,
14208,
62,
4023,
62,
25480,
82,
13,
41989,
13,
18504,
12397,
62,
15388,
1330,
1057,
15388,
198,
6738,
1167,
72,
13,
28241,
14208,
62,
4023,
62,
25480,
82,
13,
1069,
11755,
1330,
1635,
198,
6738,
1167,
72,
13,
28241,
14208,
62,
4023,
62,
25480,
82,
13,
15042,
1330,
2251,
62,
25480,
11,
2315,
198,
6738,
13605,
62,
1324,
13,
27530,
1330,
9104,
32,
11,
9104,
33,
11,
9104,
34,
11,
9104,
35,
11,
9104,
36,
11,
9104,
37,
11,
9104,
38,
198,
6738,
42625,
14208,
13,
6381,
17147,
13,
6381,
8071,
2044,
1330,
26484,
355,
42625,
14208,
62,
12683,
282,
198,
198,
23144,
62,
12683,
282,
796,
42625,
14208,
62,
12683,
282,
7,
15234,
2530,
62,
22046,
28,
17816,
39098,
6,
4357,
779,
62,
66,
8103,
28,
25101,
8,
198
] | 3.112069 | 232 |
import os
from pathlib import Path
PALETTE = {
'success': '#00c841',
'info': '#1976a3',
'error': '#d40000'
}
LINE = '-' * 100
ELEMENTS = [1, 0]
DEFAULT_QUANTILE = 0.05
HOME_DIR = str(Path.home())
IPDF_DATADIR = os.getenv('IPDF_DATADIR')
if not IPDF_DATADIR:
IPDF_DATADIR = os.path.join(HOME_DIR, 'ipdf_data')
TOURNAMENT_RESULTS_FILEPATH = os.path.join(IPDF_DATADIR, 'evolution_tournament_results.json')
| [
11748,
28686,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
47,
1847,
2767,
9328,
796,
1391,
198,
220,
220,
220,
705,
13138,
10354,
705,
2,
405,
66,
23,
3901,
3256,
198,
220,
220,
220,
705,
10951,
10354,
705,
2,
38108,
64,
18,
3256,
198,
220,
220,
220,
705,
18224,
10354,
705,
2,
67,
19,
2388,
6,
198,
92,
198,
198,
24027,
796,
705,
19355,
1635,
1802,
198,
198,
36,
2538,
28957,
796,
685,
16,
11,
657,
60,
198,
198,
7206,
38865,
62,
10917,
8643,
41119,
796,
657,
13,
2713,
628,
198,
39069,
62,
34720,
796,
965,
7,
15235,
13,
11195,
28955,
198,
4061,
8068,
62,
35,
1404,
2885,
4663,
796,
28686,
13,
1136,
24330,
10786,
4061,
8068,
62,
35,
1404,
2885,
4663,
11537,
198,
198,
361,
407,
314,
20456,
62,
35,
1404,
2885,
4663,
25,
198,
220,
220,
220,
314,
20456,
62,
35,
1404,
2885,
4663,
796,
28686,
13,
6978,
13,
22179,
7,
39069,
62,
34720,
11,
705,
541,
7568,
62,
7890,
11537,
628,
198,
51,
11698,
45,
2390,
3525,
62,
46274,
62,
25664,
34219,
796,
28686,
13,
6978,
13,
22179,
7,
4061,
8068,
62,
35,
1404,
2885,
4663,
11,
705,
1990,
2122,
62,
83,
5138,
62,
43420,
13,
17752,
11537,
198
] | 2.118812 | 202 |
from unittest import TestCase
from exercicios.ex1039 import calcula_raio
| [
6738,
555,
715,
395,
1330,
6208,
20448,
198,
6738,
4208,
291,
4267,
13,
1069,
940,
2670,
1330,
5204,
64,
62,
430,
952,
628
] | 3.217391 | 23 |
from node import Node
# line = Queue(['tom', 'brown', 'kenzo', 'kim'])
# print(line.head)
| [
6738,
10139,
1330,
19081,
628,
628,
198,
2,
1627,
796,
4670,
518,
7,
17816,
39532,
3256,
705,
33282,
3256,
705,
3464,
10872,
3256,
705,
74,
320,
6,
12962,
198,
2,
3601,
7,
1370,
13,
2256,
8,
198
] | 2.540541 | 37 |
from . import *
# for sents
instance_fields = [
'words', 'word_num',
'piece_idxs', 'attention_masks', 'word_lens',
'entity_label_idxs'
]
batch_fields = [
'words', 'word_num', 'word_mask',
'piece_idxs', 'attention_masks', 'word_lens',
'entity_label_idxs'
]
Instance = namedtuple('Instance', field_names=instance_fields)
Batch = namedtuple('Batch', field_names=batch_fields)
| [
6738,
764,
1330,
1635,
201,
198,
201,
198,
2,
329,
264,
658,
201,
198,
39098,
62,
25747,
796,
685,
201,
198,
220,
220,
220,
705,
10879,
3256,
705,
4775,
62,
22510,
3256,
201,
198,
220,
220,
220,
705,
12239,
62,
312,
34223,
3256,
705,
1078,
1463,
62,
5356,
591,
3256,
705,
4775,
62,
75,
641,
3256,
201,
198,
220,
220,
220,
705,
26858,
62,
18242,
62,
312,
34223,
6,
201,
198,
60,
201,
198,
201,
198,
43501,
62,
25747,
796,
685,
201,
198,
220,
220,
220,
705,
10879,
3256,
705,
4775,
62,
22510,
3256,
705,
4775,
62,
27932,
3256,
201,
198,
220,
220,
220,
705,
12239,
62,
312,
34223,
3256,
705,
1078,
1463,
62,
5356,
591,
3256,
705,
4775,
62,
75,
641,
3256,
201,
198,
220,
220,
220,
705,
26858,
62,
18242,
62,
312,
34223,
6,
201,
198,
60,
201,
198,
201,
198,
33384,
796,
3706,
83,
29291,
10786,
33384,
3256,
2214,
62,
14933,
28,
39098,
62,
25747,
8,
201,
198,
201,
198,
33,
963,
796,
3706,
83,
29291,
10786,
33,
963,
3256,
2214,
62,
14933,
28,
43501,
62,
25747,
8,
201,
198,
201,
198,
201,
198
] | 2.262032 | 187 |
from mesa import Agent
class TreeCell(Agent):
"""
A tree cell.
Attributes:
x, y: Grid coordinates
condition: Can be "Fine", "On Fire", or "Burned Out"
unique_id: (x,y) tuple.
unique_id isn't strictly necessary here, but it's good
practice to give one to each agent anyway.
"""
def __init__(self, pos, model):
"""
Create a new tree.
Args:
pos: The tree's coordinates on the grid.
model: standard model reference for agent.
"""
super().__init__(pos, model)
self.pos = pos
self.condition = "Fine"
def step(self):
"""
If the tree is on fire, spread it to fine trees nearby.
"""
if self.condition == "On Fire":
for neighbor in self.model.grid.neighbor_iter(self.pos):
if neighbor.condition == "Fine":
neighbor.condition = "On Fire"
self.condition = "Burned Out"
| [
6738,
18842,
64,
1330,
15906,
201,
198,
201,
198,
201,
198,
4871,
12200,
28780,
7,
36772,
2599,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
317,
5509,
2685,
13,
201,
198,
201,
198,
220,
220,
220,
49213,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
11,
331,
25,
24846,
22715,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4006,
25,
1680,
307,
366,
34389,
1600,
366,
2202,
3764,
1600,
393,
366,
29053,
276,
3806,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3748,
62,
312,
25,
357,
87,
11,
88,
8,
46545,
13,
201,
198,
201,
198,
220,
220,
220,
3748,
62,
312,
2125,
470,
14084,
3306,
994,
11,
475,
340,
338,
922,
201,
198,
220,
220,
220,
3357,
284,
1577,
530,
284,
1123,
5797,
6949,
13,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1426,
11,
2746,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13610,
257,
649,
5509,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1426,
25,
383,
5509,
338,
22715,
319,
262,
10706,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
25,
3210,
2746,
4941,
329,
5797,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
15003,
834,
7,
1930,
11,
2746,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
796,
1426,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
31448,
796,
366,
34389,
1,
201,
198,
201,
198,
220,
220,
220,
825,
2239,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
262,
5509,
318,
319,
2046,
11,
4104,
340,
284,
3734,
7150,
6716,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
31448,
6624,
366,
2202,
3764,
1298,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4780,
287,
2116,
13,
19849,
13,
25928,
13,
710,
394,
2865,
62,
2676,
7,
944,
13,
1930,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4780,
13,
31448,
6624,
366,
34389,
1298,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4780,
13,
31448,
796,
366,
2202,
3764,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
31448,
796,
366,
29053,
276,
3806,
1,
201,
198
] | 2.135417 | 480 |
import pytest
from math_utils import is_float
| [
11748,
12972,
9288,
198,
6738,
10688,
62,
26791,
1330,
318,
62,
22468,
628,
628,
628,
198
] | 3.25 | 16 |
import codenames
import paths
wordlist = codenames.WordList(
paths.WORDLIST_ENG_PATH,
[paths.DIRECTIONAL_PATH],
[paths.WIKI_100K_PATH, paths.GOOGLE_10K_ENG_PATH, paths.CUSTOM_WHITELIST],
)
board = codenames.Board(wordlist)
view = codenames.CliView(board)
glove = codenames.Glove(*paths.GLOVE_6B_300D_PATH.paths, normalized=True)
guesser = codenames.GloveGuesser(glove, board)
| [
11748,
14873,
268,
1047,
198,
11748,
13532,
628,
198,
4775,
4868,
796,
14873,
268,
1047,
13,
26449,
8053,
7,
198,
220,
220,
220,
13532,
13,
54,
12532,
45849,
62,
26808,
62,
34219,
11,
198,
220,
220,
220,
685,
6978,
82,
13,
17931,
23988,
2849,
1847,
62,
34219,
4357,
198,
220,
220,
220,
685,
6978,
82,
13,
54,
18694,
40,
62,
3064,
42,
62,
34219,
11,
13532,
13,
38,
6684,
38,
2538,
62,
940,
42,
62,
26808,
62,
34219,
11,
13532,
13,
34,
7759,
2662,
62,
12418,
2043,
3698,
8808,
4357,
198,
8,
198,
3526,
796,
14873,
268,
1047,
13,
29828,
7,
4775,
4868,
8,
198,
1177,
796,
14873,
268,
1047,
13,
2601,
72,
7680,
7,
3526,
8,
198,
4743,
659,
796,
14873,
268,
1047,
13,
9861,
659,
46491,
6978,
82,
13,
8763,
46,
6089,
62,
21,
33,
62,
6200,
35,
62,
34219,
13,
6978,
82,
11,
39279,
28,
17821,
8,
198,
5162,
408,
263,
796,
14873,
268,
1047,
13,
9861,
659,
8205,
408,
263,
7,
4743,
659,
11,
3096,
8,
198
] | 2.280702 | 171 |
import pytest
from unittest.mock import MagicMock
from datacube_ows.config_utils import OWSConfigNotReady
from datacube_ows.ogc_utils import ConfigException
from datacube_ows.ows_configuration import BandIndex
@pytest.fixture
| [
11748,
12972,
9288,
198,
6738,
555,
715,
395,
13,
76,
735,
1330,
6139,
44,
735,
198,
198,
6738,
4818,
330,
3266,
62,
1666,
13,
11250,
62,
26791,
1330,
440,
19416,
16934,
3673,
35474,
198,
6738,
4818,
330,
3266,
62,
1666,
13,
519,
66,
62,
26791,
1330,
17056,
16922,
198,
6738,
4818,
330,
3266,
62,
1666,
13,
1666,
62,
11250,
3924,
1330,
10243,
15732,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
628
] | 3.178082 | 73 |
import random
import ray
from ray import tune
from ray.tune import CLIReporter
from ray.tune.schedulers import PopulationBasedTraining
from agent0.deepq.config import Config
from agent0.deepq.trainer import Trainer
from agent0.common.utils import parse_arguments
if __name__ == '__main__':
cfg = Config()
kwargs = parse_arguments(cfg)
cfg = Config(**kwargs)
ray.init(memory=20 * 2 ** 30, object_store_memory=80 * 2 ** 30)
reporter = CLIReporter(
metric_columns=["game", "frames", "loss", "ep_reward_test", "ep_reward_train", "ep_reward_test_max",
"time_past",
"time_remain", "speed", "epsilon", "adam_lr", "qmax"]
)
pbt_scheduler = PopulationBasedTraining(
time_attr='training_iteration',
metric='ep_reward_train',
mode='max',
perturbation_interval=100,
hyperparam_mutations={
"adam_lr": lambda: random.uniform(1e-5, 1e-3),
})
tune.run(
Trainer,
name='atari_deepq_tune',
verbose=1,
stop=lambda trial_id, result: result['frames'] > kwargs['total_steps'],
checkpoint_at_end=True,
progress_reporter=reporter,
checkpoint_freq=800,
reuse_actors=True,
scheduler=pbt_scheduler,
resources_per_trial={"gpu": 3},
fail_fast=True,
config={
"adam_lr": tune.grid_search([5e-5, 1e-4, 2e-4, 5e-4]),
"game": kwargs['game']
}
)
| [
11748,
4738,
198,
198,
11748,
26842,
198,
6738,
26842,
1330,
14009,
198,
6738,
26842,
13,
83,
1726,
1330,
7852,
4663,
538,
4337,
198,
6738,
26842,
13,
83,
1726,
13,
1416,
704,
377,
364,
1330,
20133,
15001,
44357,
198,
198,
6738,
5797,
15,
13,
22089,
80,
13,
11250,
1330,
17056,
198,
6738,
5797,
15,
13,
22089,
80,
13,
2213,
10613,
1330,
31924,
198,
6738,
5797,
15,
13,
11321,
13,
26791,
1330,
21136,
62,
853,
2886,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
30218,
70,
796,
17056,
3419,
198,
220,
220,
220,
479,
86,
22046,
796,
21136,
62,
853,
2886,
7,
37581,
8,
198,
220,
220,
220,
30218,
70,
796,
17056,
7,
1174,
46265,
22046,
8,
198,
220,
220,
220,
26842,
13,
15003,
7,
31673,
28,
1238,
1635,
362,
12429,
1542,
11,
2134,
62,
8095,
62,
31673,
28,
1795,
1635,
362,
12429,
1542,
8,
198,
220,
220,
220,
9095,
796,
7852,
4663,
538,
4337,
7,
198,
220,
220,
220,
220,
220,
220,
220,
18663,
62,
28665,
82,
28,
14692,
6057,
1600,
366,
37805,
1600,
366,
22462,
1600,
366,
538,
62,
260,
904,
62,
9288,
1600,
366,
538,
62,
260,
904,
62,
27432,
1600,
366,
538,
62,
260,
904,
62,
9288,
62,
9806,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2435,
62,
30119,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2435,
62,
2787,
391,
1600,
366,
12287,
1600,
366,
538,
18217,
261,
1600,
366,
324,
321,
62,
14050,
1600,
366,
80,
9806,
8973,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
279,
18347,
62,
1416,
704,
18173,
796,
20133,
15001,
44357,
7,
198,
220,
220,
220,
220,
220,
220,
220,
640,
62,
35226,
11639,
34409,
62,
2676,
341,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
18663,
11639,
538,
62,
260,
904,
62,
27432,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
4235,
11639,
9806,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
22146,
5945,
341,
62,
3849,
2100,
28,
3064,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8718,
17143,
62,
21973,
602,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
324,
321,
62,
14050,
1298,
37456,
25,
4738,
13,
403,
6933,
7,
16,
68,
12,
20,
11,
352,
68,
12,
18,
828,
198,
220,
220,
220,
220,
220,
220,
220,
32092,
628,
220,
220,
220,
14009,
13,
5143,
7,
198,
220,
220,
220,
220,
220,
220,
220,
31924,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
35554,
62,
22089,
80,
62,
83,
1726,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
15942,
577,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2245,
28,
50033,
4473,
62,
312,
11,
1255,
25,
1255,
17816,
37805,
20520,
1875,
479,
86,
22046,
17816,
23350,
62,
20214,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
26954,
62,
265,
62,
437,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
62,
260,
26634,
28,
260,
26634,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26954,
62,
19503,
80,
28,
7410,
11,
198,
220,
220,
220,
220,
220,
220,
220,
32349,
62,
529,
669,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6038,
18173,
28,
79,
18347,
62,
1416,
704,
18173,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4133,
62,
525,
62,
45994,
28,
4895,
46999,
1298,
513,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
2038,
62,
7217,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
324,
321,
62,
14050,
1298,
14009,
13,
25928,
62,
12947,
26933,
20,
68,
12,
20,
11,
352,
68,
12,
19,
11,
362,
68,
12,
19,
11,
642,
68,
12,
19,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
6057,
1298,
479,
86,
22046,
17816,
6057,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1267,
198
] | 2.102672 | 711 |
from flask_script import Command
import time
import datetime
import flask
| [
6738,
42903,
62,
12048,
1330,
9455,
198,
11748,
640,
198,
11748,
4818,
8079,
198,
11748,
42903,
628
] | 4.411765 | 17 |
from django.contrib import admin
from core import models
# Register your models here.
admin.site.register(models.Tag)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
4755,
1330,
4981,
198,
198,
2,
17296,
534,
4981,
994,
13,
198,
28482,
13,
15654,
13,
30238,
7,
27530,
13,
24835,
8,
198
] | 3.606061 | 33 |
# remember that ord('@') trick
| [
198,
2,
3505,
326,
2760,
10786,
31,
11537,
6908,
198
] | 3.2 | 10 |
"""
Programa 052
Área de estudos.
data 23.11.2020 (Indefinida) Hs
@Autor: Abraão A. Silva
"""
maior = int()
for perg in range(1, 6):
numero = int(input(f'Digite o {perg}º número.: '))
if numero > maior:
maior = numero
print(f'O maior valor repassado foi {maior}.')
| [
37811,
198,
15167,
64,
657,
4309,
198,
127,
223,
21468,
390,
1556,
42418,
13,
198,
7890,
2242,
13,
1157,
13,
42334,
220,
220,
220,
220,
357,
5497,
891,
259,
3755,
8,
367,
82,
198,
31,
16541,
273,
25,
2275,
430,
28749,
317,
13,
23720,
198,
37811,
198,
198,
2611,
1504,
796,
493,
3419,
198,
1640,
583,
70,
287,
2837,
7,
16,
11,
718,
2599,
198,
220,
220,
220,
997,
3529,
796,
493,
7,
15414,
7,
69,
6,
19511,
578,
267,
1391,
525,
70,
92,
36165,
299,
21356,
647,
78,
11207,
705,
4008,
628,
220,
220,
220,
611,
997,
3529,
1875,
17266,
1504,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17266,
1504,
796,
997,
3529,
198,
198,
4798,
7,
69,
6,
46,
17266,
1504,
1188,
273,
1128,
562,
4533,
11511,
72,
1391,
2611,
1504,
92,
2637,
8,
198
] | 2.071942 | 139 |
#!/usr/bin/env python
# -- Content-Encoding: UTF-8 --
"""
Defines the iPOPO decorators classes to manipulate component factory classes
:author: Thomas Calmant
:copyright: Copyright 2020, Thomas Calmant
:license: Apache License 2.0
:version: 1.0.1
..
Copyright 2020 Thomas Calmant
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
# Standard library
import inspect
import logging
import sys
import threading
import types
# Standard typing module should be optional
try:
# pylint: disable=W0611
from typing import Any, Callable
except ImportError:
pass
# Pelix modules
from pelix.utilities import is_string, to_iterable, get_method_arguments
from pelix.ipopo.contexts import FactoryContext, Requirement
import pelix.ipopo.constants as constants
# ------------------------------------------------------------------------------
# Module version
__version_info__ = (1, 0, 1)
__version__ = ".".join(str(x) for x in __version_info__)
# Documentation strings format
__docformat__ = "restructuredtext en"
# ------------------------------------------------------------------------------
# Prepare the module logger
_logger = logging.getLogger("ipopo.decorators")
# ------------------------------------------------------------------------------
def is_from_parent(cls, attribute_name, value=None):
# type: (type, str, bool) -> bool
"""
Tests if the current attribute value is shared by a parent of the given
class.
Returns None if the attribute value is None.
:param cls: Child class with the requested attribute
:param attribute_name: Name of the attribute to be tested
:param value: The exact value in the child class (optional)
:return: True if the attribute value is shared with a parent class
"""
if value is None:
try:
# Get the current value
value = getattr(cls, attribute_name)
except AttributeError:
# No need to go further: the attribute does not exist
return False
for base in cls.__bases__:
# Look for the value in each parent class
try:
return getattr(base, attribute_name) is value
except AttributeError:
pass
# Attribute value not found in parent classes
return False
def get_factory_context(cls):
# type: (type) -> FactoryContext
"""
Retrieves the factory context object associated to a factory. Creates it
if needed
:param cls: The factory class
:return: The factory class context
"""
context = getattr(cls, constants.IPOPO_FACTORY_CONTEXT, None)
if context is None:
# Class not yet manipulated
context = FactoryContext()
elif is_from_parent(cls, constants.IPOPO_FACTORY_CONTEXT):
# Create a copy the context
context = context.copy(True)
# * Manipulation has not been applied yet
context.completed = False
else:
# Nothing special to do
return context
# Context has been created or copied, inject the new bean
setattr(cls, constants.IPOPO_FACTORY_CONTEXT, context)
return context
def get_method_description(method):
# type: (Callable) -> str
"""
Retrieves a description of the given method. If possible, the description
contains the source file name and line.
:param method: A method
:return: A description of the method (at least its name)
:raise AttributeError: Given object has no __name__ attribute
"""
try:
try:
line_no = inspect.getsourcelines(method)[1]
except IOError:
# Error reading the source file
line_no = -1
return "'{method}' ({file}:{line})".format(
method=method.__name__, file=inspect.getfile(method), line=line_no
)
except TypeError:
# Method can't be inspected
return "'{0}'".format(method.__name__)
def validate_method_arity(method, *needed_args):
# type: (Callable, *str) -> None
"""
Tests if the decorated method has a sufficient number of parameters.
:param method: The method to be tested
:param needed_args: The name (for description only) of the needed
arguments, without "self".
:return: Nothing
:raise TypeError: Invalid number of parameter
"""
nb_needed_args = len(needed_args)
# Test the number of parameters
arg_spec = get_method_arguments(method)
method_args = arg_spec.args
try:
# Remove the self argument when present
if method_args[0] == "self":
del method_args[0]
except IndexError:
pass
nb_args = len(method_args)
if arg_spec.varargs is not None:
# Variable arguments
if nb_args != 0:
# Other arguments detected
raise TypeError(
"When using '*args', the decorated {0} method must only "
"accept the 'self' argument".format(
get_method_description(method)
)
)
elif arg_spec.keywords is not None:
raise TypeError("Methods using '**kwargs' are not handled")
elif nb_args != nb_needed_args:
# "Normal" arguments
raise TypeError(
"The decorated method {0} must accept exactly {1} parameters: "
"(self, {2})".format(
get_method_description(method),
nb_needed_args + 1,
", ".join(needed_args),
)
)
# ------------------------------------------------------------------------------
def _ipopo_setup_callback(cls, context):
# type: (type, FactoryContext) -> None
"""
Sets up the class _callback dictionary
:param cls: The class to handle
:param context: The factory class context
"""
assert inspect.isclass(cls)
assert isinstance(context, FactoryContext)
if context.callbacks is not None:
callbacks = context.callbacks.copy()
else:
callbacks = {}
functions = inspect.getmembers(cls, inspect.isroutine)
for _, func in functions:
if not hasattr(func, constants.IPOPO_METHOD_CALLBACKS):
# No attribute, get the next member
continue
method_callbacks = getattr(func, constants.IPOPO_METHOD_CALLBACKS)
if not isinstance(method_callbacks, list):
# Invalid content
_logger.warning(
"Invalid callback information %s in %s",
constants.IPOPO_METHOD_CALLBACKS,
get_method_description(func),
)
continue
# Keeping it allows inheritance : by removing it, only the first
# child will see the attribute -> Don't remove it
# Store the call backs
for _callback in method_callbacks:
if _callback in callbacks and not is_from_parent(
cls, callbacks[_callback].__name__, callbacks[_callback]
):
_logger.warning(
"Redefining the callback %s in class '%s'.\n"
"\tPrevious callback : %s\n"
"\tNew callback : %s",
_callback,
cls.__name__,
get_method_description(callbacks[_callback]),
get_method_description(func),
)
callbacks[_callback] = func
# Update the factory context
context.callbacks.clear()
context.callbacks.update(callbacks)
def _ipopo_setup_field_callback(cls, context):
# type: (type, FactoryContext) -> None
"""
Sets up the class _field_callback dictionary
:param cls: The class to handle
:param context: The factory class context
"""
assert inspect.isclass(cls)
assert isinstance(context, FactoryContext)
if context.field_callbacks is not None:
callbacks = context.field_callbacks.copy()
else:
callbacks = {}
functions = inspect.getmembers(cls, inspect.isroutine)
for name, func in functions:
if not hasattr(func, constants.IPOPO_METHOD_FIELD_CALLBACKS):
# No attribute, get the next member
continue
method_callbacks = getattr(func, constants.IPOPO_METHOD_FIELD_CALLBACKS)
if not isinstance(method_callbacks, list):
# Invalid content
_logger.warning(
"Invalid attribute %s in %s",
constants.IPOPO_METHOD_FIELD_CALLBACKS,
name,
)
continue
# Keeping it allows inheritance : by removing it, only the first
# child will see the attribute -> Don't remove it
# Store the call backs
for kind, field, if_valid in method_callbacks:
fields_cbs = callbacks.setdefault(field, {})
if kind in fields_cbs and not is_from_parent(
cls, fields_cbs[kind][0].__name__
):
_logger.warning(
"Redefining the callback %s in '%s'. "
"Previous callback : '%s' (%s). "
"New callback : %s",
kind,
name,
fields_cbs[kind][0].__name__,
fields_cbs[kind][0],
func,
)
fields_cbs[kind] = (func, if_valid)
# Update the factory context
context.field_callbacks.clear()
context.field_callbacks.update(callbacks)
# ------------------------------------------------------------------------------
def _set_object_entry(obj, entry_name, value):
# type: (Any, str, Any) -> None
"""
Sets the given value to the given attribute in the given object.
:param obj: The object that contains the list
:param entry_name: The name of the member in *obj*
:param value: The value to set
"""
setattr(obj, entry_name, value)
def _append_object_entry(obj, list_name, entry):
# type: (Any, str, Any) -> None
"""
Appends the given entry in the given object list.
Creates the list field if needed.
:param obj: The object that contains the list
:param list_name: The name of the list member in *obj*
:param entry: The entry to be added to the list
:raise ValueError: Invalid attribute content
"""
# Get the list
obj_list = getattr(obj, list_name, None)
if obj_list is None:
# We'll have to create it
obj_list = []
setattr(obj, list_name, obj_list)
assert isinstance(obj_list, list)
# Set up the property, if needed
if entry not in obj_list:
obj_list.append(entry)
# ------------------------------------------------------------------------------
class Holder(object):
# pylint: disable=R0903
"""
Simple class that holds a value
"""
def __init__(self, value):
"""
Sets up the holder instance
"""
self.value = value
def _ipopo_class_field_property(name, value, methods_prefix):
# type: (str, Any, str) -> property
"""
Sets up an iPOPO field property, using Python property() capabilities
:param name: The property name
:param value: The property default value
:param methods_prefix: The common prefix of the getter and setter injected
methods
:return: A generated Python property()
"""
# The property lock
lock = threading.RLock()
# Prepare the methods names
getter_name = "{0}{1}".format(methods_prefix, constants.IPOPO_GETTER_SUFFIX)
setter_name = "{0}{1}".format(methods_prefix, constants.IPOPO_SETTER_SUFFIX)
local_holder = Holder(value)
def get_value(self):
"""
Retrieves the property value, from the iPOPO dictionaries
"""
getter = getattr(self, getter_name, None)
if getter is not None:
# Use the component getter
with lock:
return getter(self, name)
else:
# Use the local holder
return local_holder.value
def set_value(self, new_value):
"""
Sets the property value and trigger an update event
:param new_value: The new property value
"""
setter = getattr(self, setter_name, None)
if setter is not None:
# Use the component setter
with lock:
setter(self, name, new_value)
else:
# Change the local holder
local_holder.value = new_value
return property(get_value, set_value)
# ------------------------------------------------------------------------------
class Instantiate(object):
# pylint: disable=R0903
"""
This decorator tells iPOPO to instantiate a component instance from this
factory as soon as its bundle is in **ACTIVE** state.
The ``properties`` argument allows to override the default value given in
the ``@Property`` and ``@HiddenProperty`` decorators.
The properties are associated to the component instance but not added to
it. This means that new (meta-) properties can be added to add information
to the component (like the Remote Services export properties), but those
won't be accessible directly by the component.
Those extra properties will be visible in component's services properties
and in the instance properties returned by the iPOPO
``get_instance_details()`` method, but no new field will be injected in the
component instance.
.. code-block:: python
@ComponentFactory()
@Property('_name', 'name', 'foo')
@Instantiate('component-1')
@Instantiate('component-2', {'name': 'bar'})
class Foo(object):
def call(self):
# component-1 will print "foo" (default value)
# component-2 will print "bar"
print("My name property is:", self._name)
@ComponentFactory()
@Provides("thermometer")
@Property('_value', 'value', 1)
@Instantiate('component-3', {'unit': 'K'})
class Bar(object):
def call(self):
# We don't have access to the "unit" property value, but it
# will be visible in the service properties
print("My value is:", self._value)
"""
def __init__(self, name, properties=None):
"""
:param name: The name of the component instance (**mandatory**)
:param properties: The initial properties of the instance as a
dictionary
"""
if not is_string(name):
raise TypeError("Instance name must be a string")
if properties is not None and not isinstance(properties, dict):
raise TypeError("Instance properties must be a dictionary or None")
name = name.strip()
if not name:
raise ValueError("Invalid instance name '{0}'".format(name))
self.__name = name
self.__properties = properties
def __call__(self, factory_class):
"""
Sets up and registers the instances descriptions
:param factory_class: The factory class to instantiate
:return: The decorated factory class
:raise TypeError: The given object is not a class
"""
if not inspect.isclass(factory_class):
raise TypeError(
"@Instantiate can decorate only classes, "
"not '{0}'".format(type(factory_class).__name__)
)
# Store the instance in the factory context
context = get_factory_context(factory_class)
try:
context.add_instance(self.__name, self.__properties)
except NameError:
_logger.warning(
"Component '%s' defined twice, new definition ignored",
self.__name,
)
return factory_class
# ------------------------------------------------------------------------------
class ComponentFactory(object):
# pylint: disable=R0903
"""
Manipulates the component class according to a ``FactoryContext`` object
filled by other decorators.
This **must** be the last executed decorator, *i.e.* the one on top of
others in the source code.
If no factory name is given, it will be generated as ``ClassNameFactory``,
*e.g.* a ``Foo`` class will have the factory name ``FooFactory``.
Note that the name of the component factory is the only way to identify it
in iPOPO. Therefore, it must be unique in a framework instance.
.. warning:: The ``__init__()`` method of a component factory class must
not require any parameter.
:Example:
.. code-block:: python
@ComponentFactory()
class Foo(object):
def __init__(self):
pass
@ComponentFactory('my-factory')
class Bar(object):
pass
@ComponentFactory()
class FooBar(object):
def __init__(self, managed=True):
# The argument has a default value: it can be instantiated by
# iPOPO
pass
"""
def __init__(self, name=None, excluded=None):
"""
:param name: Name of the component factory, used to identify it when
instantiating a component. This name must be unique in a
Pelix framework instance.
:param excluded: List of IDs of handlers which configuration must
**not** be inherited from the parent class
"""
self.__factory_name = name
self.__excluded_inheritance = to_iterable(excluded)
def __call__(self, factory_class):
"""
Sets up and registers the factory class
:param factory_class: The class to decorate
:return: The decorated class
:raise TypeError: The given object is not a class
"""
if not inspect.isclass(factory_class):
raise TypeError(
"@ComponentFactory can decorate only classes, "
"not '{0}'".format(type(factory_class).__name__)
)
# Get the factory context
context = get_factory_context(factory_class)
# Test if a manipulation has already been applied
if not context.completed:
# Set up the factory name
if not self.__factory_name:
self.__factory_name = factory_class.__name__ + "Factory"
# Manipulate the class...
# Update the factory context
context.name = self.__factory_name
context.inherit_handlers(self.__excluded_inheritance)
context.is_singleton = False
context.completed = True
# Find callbacks
_ipopo_setup_callback(factory_class, context)
_ipopo_setup_field_callback(factory_class, context)
# Store the factory context in its field
setattr(factory_class, constants.IPOPO_FACTORY_CONTEXT, context)
# Inject the properties getter and setter if needed
if context.properties_fields:
setattr(
factory_class,
constants.IPOPO_PROPERTY_PREFIX
+ constants.IPOPO_GETTER_SUFFIX,
None,
)
setattr(
factory_class,
constants.IPOPO_PROPERTY_PREFIX
+ constants.IPOPO_SETTER_SUFFIX,
None,
)
else:
# Manipulation already applied: do nothing more
_logger.error(
"%s has already been manipulated with the name '%s'."
" Keeping the old name.",
get_method_description(factory_class),
context.name,
)
return factory_class
class SingletonFactory(ComponentFactory):
# pylint: disable=R0903
"""
This decorator is a specialization of the :class:`~ComponentFactory`: it
accepts the same arguments and follows the same rule, but it allows only
one instance of component from this factory at a time.
If the factory is instantiated while another already exist, a
``ValueError`` will be raised.
.. code-block:: python
@SingletonFactory()
class Foo(object):
def __init__(self):
pass
@SingletonFactory('my-factory')
class Bar(object):
pass
"""
def __call__(self, factory_class):
"""
Sets up and registers the factory class
:param factory_class: The class to decorate
:return: The decorated class
:raise TypeError: The given object is not a class
"""
# Manipulate the class
factory_class = super(SingletonFactory, self).__call__(factory_class)
# Set the singleton flag
context = get_factory_context(factory_class)
context.is_singleton = True
return factory_class
# ------------------------------------------------------------------------------
class Property(object):
# pylint: disable=R0903
"""
The ``@Property`` decorator defines a component instance property.
A property can be used to configure the component at instantiation time and
to expose the state of a component.
Note that component properties are exposed in the properties of the
services it publishes with the :class:`Provides` decorator.
If no initial value is given in the decorator, the value stored in the
injected field in the ``__init__()`` method will be used.
.. warning:: In Python 2, it is required that the component class inherits
``object`` for properties to work.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_PROPERTY`
:Example:
.. code-block:: python
@ComponentFactory()
@Property('_answer', 'some.answer', 42)
class Foo(object):
def call(self):
print(self._answer) # Prints 42
# The properties of the services provided by this component
# instance would be updated during this assignation
self._answer = 100
"""
HANDLER_ID = constants.HANDLER_PROPERTY
""" ID of the handler configured by this decorator """
def __init__(self, field, name=None, value=None):
"""
:param field: The property field in the class (can't be ``None`` nor
empty)
:param name: The property name (if ``None``, this will be the field
name)
:param value: The property value (``None`` by default)
:raise TypeError: Invalid argument type
:raise ValueError: If the name or the name is ``None`` or empty
"""
# Field validity test
if not is_string(field):
raise TypeError("Field name must be a string")
field = field.strip()
if not field or " " in field:
raise ValueError(
"Empty or invalid property field name '{0}'".format(field)
)
# Name validity test
if name is not None:
if not is_string(name):
raise TypeError("Property name must be a string")
name = name.strip()
if not name:
# No name given: use the field name
name = field
self._field = field
self._name = name
self._value = value
def __call__(self, clazz):
"""
Adds the property to the class iPOPO properties field.
Creates the field if needed.
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
if not inspect.isclass(clazz):
raise TypeError(
"@Property can decorate only classes, not '{0}'".format(
type(clazz).__name__
)
)
# Get the factory context
context = get_factory_context(clazz)
if context.completed:
# Do nothing if the class has already been manipulated
_logger.warning(
"@Property: Already manipulated class: %s",
get_method_description(clazz),
)
return clazz
# Set up the property in the class
context.properties[self._name] = self._value
# Associate the field to the property name
context.properties_fields[self._field] = self._name
# Mark the handler in the factory context
context.set_handler(self.HANDLER_ID, None)
# Inject a property in the class. The property will call an instance
# level getter / setter, injected by iPOPO after the instance creation
setattr(
clazz,
self._field,
_ipopo_class_field_property(
self._name, self._value, constants.IPOPO_PROPERTY_PREFIX
),
)
return clazz
class HiddenProperty(Property):
# pylint: disable=R0903
"""
The ``@HiddenProperty`` decorator defines a component property which won't
be visible in the properties of the services it provides.
This kind of property is also not accessible using iPOPO reflection
methods.
This decorator has the same handler, accepts the same parameters and
follows the same rules as the :class:`Property` decorator.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_PROPERTY`
:Example:
.. code-block:: python
@ComponentFactory()
@HiddenProperty('_password', 'some.password', "secret")
class Foo(object):
def call(self):
print(self._password) # I think we're missing the point
# Service properties won't be affected by this change
self._password = "UpdatedSecret"
"""
def __call__(self, clazz):
"""
Adds the property to the class iPOPO properties field.
Creates the field if needed.
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
if not inspect.isclass(clazz):
raise TypeError(
"@HiddenProperty can decorate only classes, not '{0}'".format(
type(clazz).__name__
)
)
# Get the factory context
context = get_factory_context(clazz)
if context.completed:
# Do nothing if the class has already been manipulated
_logger.warning(
"@HiddenProperty: Already manipulated class: %s",
get_method_description(clazz),
)
return clazz
# Set up the property in the class
context.hidden_properties[self._name] = self._value
# Mark the handler in the factory context
context.set_handler(self.HANDLER_ID, None)
# Inject a property in the class. The property will call an instance
# level getter / setter, injected by iPOPO after the instance creation
setattr(
clazz,
self._field,
_ipopo_class_field_property(
self._name, self._value, constants.IPOPO_HIDDEN_PROPERTY_PREFIX
),
)
return clazz
# ------------------------------------------------------------------------------
def _get_specifications(specifications):
"""
Computes the list of strings corresponding to the given specifications
:param specifications: A string, a class or a list of specifications
:return: A list of strings
:raise ValueError: Invalid specification found
"""
if not specifications or specifications is object:
raise ValueError("No specifications given")
elif inspect.isclass(specifications):
if Provides.USE_MODULE_QUALNAME:
if sys.version_info < (3, 3, 0):
raise ValueError(
"Qualified name capability requires Python 3.3+"
)
# Get the name of the class
if not specifications.__module__:
return [specifications.__qualname__]
return [
"{0}.{1}".format(
specifications.__module__, specifications.__qualname__
)
]
else:
# Legacy behavior
return [specifications.__name__]
elif is_string(specifications):
# Specification name
specifications = specifications.strip()
if not specifications:
raise ValueError("Empty specification given")
return [specifications]
elif isinstance(specifications, (list, tuple)):
# List given: normalize its content
results = []
for specification in specifications:
results.extend(_get_specifications(specification))
return results
else:
raise ValueError(
"Unhandled specifications type : {0}".format(
type(specifications).__name__
)
)
class Provides(object):
# pylint: disable=R0903
"""
The ``@Provides`` decorator defines a service to be exposed by component
instances.
This service will be registered (visible) in the Pelix service registry
while the component is valid and its service controller is set to ``True``.
All the properties of the component defined with the :class:`Property`
decorator will be visible in the service properties.
The controller is an injected field (a Python *property*) that must contain
a boolean.
By default, the controller is set to ``True``, *i.e.* the service will be
provided by the component when it is validated.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_PROVIDES`
:Example:
.. code-block:: python
@ComponentFactory()
# "answer.prefix" will be a property of the service
@Property("_answer", "answer.prefix", "Hello")
@Provides("hello.world")
class Foo(object):
# The component instance will publish a "hello.world" service as
# long as it is valid
def greet(self, name):
print(self._answer, name, "!")
@ComponentFactory()
# This service will provide multiple specifications
@Provides(["hello.world", "hello.world.extended"], "_svc_flag")
@Provides("reset")
class Bar(object):
def greet(self, name):
# Implementation of hello.world
print("Hello,", name, "!")
def adieu(self, name):
print("So long,", name, "!")
# Sets the controller to False: the service won't be published
# anymore until the controller is set back to True
self._svc_flag = False
def reset(self):
# Implementation of the "reset" service: publish the service
# again
self._svc_flag = True
"""
HANDLER_ID = constants.HANDLER_PROVIDES
""" ID of the handler configured by this decorator """
USE_MODULE_QUALNAME = False
"""
Selects the methodology to generate a specification from a class.
A value of False uses __name__ (legacy), while True enables
__name__ + '.' + __qualname__
"""
def __init__(
self, specifications, controller=None, factory=False, prototype=False
):
"""
:param specifications: A list of provided specification(s), or the
single provided specification (can't be empty)
:param controller: The name of the service controller class field
(optional)
:param factory: If True, this service is a service factory
(False by default)
:param prototype: If True, this service is prototype service factory
(False by default)
:raise ValueError: If the specifications are invalid
"""
if controller is not None:
if not is_string(controller):
raise ValueError("Controller name must be a string")
controller = controller.strip()
if not controller:
# Empty controller name
_logger.warning("Empty controller name given")
controller = None
elif " " in controller:
raise ValueError("Controller name contains spaces")
self.__specifications = specifications
self.__controller = controller
self.__is_factory = factory
self.__is_prototype = prototype
def __call__(self, clazz):
"""
Adds the provided service information to the class context iPOPO field.
Creates the field if needed.
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type or if the service factory
methods are missing
"""
if not inspect.isclass(clazz):
raise TypeError(
"@Provides can decorate only classes, not '{0}'".format(
type(clazz).__name__
)
)
# Get the factory context
context = get_factory_context(clazz)
if context.completed:
# Do nothing if the class has already been manipulated
_logger.warning(
"@Provides: Already manipulated class: %s",
get_method_description(clazz),
)
return clazz
# Avoid duplicates (but keep the order)
filtered_specs = []
if not self.__specifications:
filtered_specs = _get_specifications(clazz.__bases__)
else:
# Avoid duplicates (but keep the order)
specs = _get_specifications(self.__specifications)
for spec in specs:
if spec not in filtered_specs:
filtered_specs.append(spec)
# Store the service information
config = context.set_handler_default(self.HANDLER_ID, [])
config.append(
(
filtered_specs,
self.__controller,
self.__is_factory,
self.__is_prototype,
)
)
if self.__controller:
# Inject a property in the class. The property will call an
# instance level getter / setter, injected by iPOPO after the
# instance creation
setattr(
clazz,
self.__controller,
_ipopo_class_field_property(
self.__controller, True, constants.IPOPO_CONTROLLER_PREFIX
),
)
# Inject the future controller methods
setattr(
clazz,
constants.IPOPO_CONTROLLER_PREFIX
+ constants.IPOPO_GETTER_SUFFIX,
None,
)
setattr(
clazz,
constants.IPOPO_CONTROLLER_PREFIX
+ constants.IPOPO_SETTER_SUFFIX,
None,
)
if self.__is_factory or self.__is_prototype:
# Ensure that the service factory methods exist
try:
validate_method_arity(
clazz.get_service, "bundle", "service_registration"
)
validate_method_arity(
clazz.unget_service, "bundle", "service_registration"
)
except AttributeError as ex:
raise TypeError(
"Service factories must provide an {} method".format(ex)
)
if self.__is_prototype:
# Ensure that the prototype service factory methods exist
try:
validate_method_arity(
clazz.unget_service_instance,
"bundle",
"service_registration",
"service",
)
except AttributeError as ex:
raise TypeError(
"Prototype Service factories must provide "
"an {} method".format(ex)
)
return clazz
# ------------------------------------------------------------------------------
class Requires(object):
# pylint: disable=R0903
"""
The ``@Requires`` decorator defines the requirement of a service.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_REQUIRES`
:Example:
.. code-block:: python
@ComponentFactory()
@Requires('_hello', 'hello.world')
class Foo(object):
pass
@ComponentFactory()
@Requires('_hello', 'hello.world', aggregate=True, optional=False,
spec_filter='(language=fr)')
class Bar(object):
pass
"""
HANDLER_ID = constants.HANDLER_REQUIRES
""" ID of the handler configured by this decorator """
def __init__(
self,
field,
specification,
aggregate=False,
optional=False,
spec_filter=None,
immediate_rebind=False,
):
"""
:param field: The field where to inject the requirement
:param specification: The specification of the service to inject
:param aggregate: If True, injects a list of services, else the first
matching service
:param optional: If True, this injection is optional: the component can
be valid without it
:param spec_filter: An LDAP query to filter injected services according
to their properties
:param immediate_rebind:
If True, the component won't be invalidated then re-validated if a
matching service is available when the injected dependency is
unbound
The ``field`` and ``specification`` parameters are mandatory.
By default, a requirement is neither aggregated nor optional
(both are set to ``False``) and no specification filter is used.
.. note:: Since iPOPO 0.5.4, only one specification can be given.
"""
if not field:
raise ValueError("Empty field name.")
if not is_string(field):
raise TypeError(
"The field name must be a string, not {0}".format(
type(field).__name__
)
)
if " " in field:
raise ValueError("Field name can't contain spaces.")
self._field = field
# Be sure that there is only one required specification
specifications = _get_specifications(specification)
self._multi_specs = len(specifications) > 1
# Construct the requirement object
self._requirement = Requirement(
specifications[0],
aggregate,
optional,
spec_filter,
immediate_rebind,
)
def __call__(self, clazz):
"""
Adds the requirement to the class iPOPO field
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
if not inspect.isclass(clazz):
raise TypeError(
"@{0} can decorate only classes, not '{1}'".format(
type(self).__name__, type(clazz).__name__
)
)
if self._multi_specs:
_logger.warning(
"%s: Only one specification can be required: %s -> %s",
type(self).__name__,
clazz.__name__,
self._field,
)
# Set up the property in the class
context = get_factory_context(clazz)
if context.completed:
# Do nothing if the class has already been manipulated
_logger.warning(
"@%s: Already manipulated class: %s",
type(self).__name__,
get_method_description(clazz),
)
return clazz
# Store the requirement information
config = context.set_handler_default(self.HANDLER_ID, {})
config[self._field] = self._requirement
# Inject the field
setattr(clazz, self._field, None)
return clazz
# ------------------------------------------------------------------------------
class RequiresVarFilter(Requires):
# pylint: disable=R0903
"""
The ``@RequiresVarFilter`` decorator acts like :class:`Requires`, but its
LDAP filter dynamically adapts to the properties of this component.
The decorator accepts a component property key using the ``{key}`` format
in the LDAP filter string. This placeholder will be replaced by the
property value, and will the filter will be updated each time the property
value changes.
:Handler ID:
:py:const:`pelix.ipopo.constants.HANDLER_REQUIRES_VARIABLE_FILTER`
:Example:
.. code-block:: python
@ComponentFactory()
@Property("_lang", "lang", "fr")
@RequiresVarFilter("_hello", "hello.world", optional=True,
spec_filter="(language={lang})")
class Bar(object):
def call(self):
# The dependency is optional
if self._hello is not None:
# Default "lang" instance property is set to "fr"
self._hello.greet("le Monde") # Bonjour le Monde
# Change the property to have another service
self._lang = "en"
# We can call the new service immediately as the dependency is
# optional (no risk of invalidation), but we have to check if
# such a service exists
if self._hello is not None:
self._hello.greet("World") # Hello World
"""
HANDLER_ID = constants.HANDLER_REQUIRES_VARIABLE_FILTER
""" ID of the handler configured by this decorator """
# ------------------------------------------------------------------------------
class RequiresBest(Requires):
# pylint: disable=R0903
"""
The ``@RequiresBest`` decorator acts like :class:`Requires`, but it
always injects the service with the best rank (``service.ranking``
property).
Unlike most of the other requirement decorators, ``@RequiresBest`` doesn't
support the injection of a list of services (``aggregate``) as only the
best service is injected.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_REQUIRES_BEST`
:Example:
.. code-block:: python
@ComponentFactory()
@RequiresBest('_hello', 'hello.world', immediate_rebind=True)
class Foo(object):
def call(self):
# First call, with the current best service
self._hello.greet("World") # prints "Hello, World!"
# Something happens, the rank of "hello.world" services changes
# For example, locale changed and French now has a higher rank
time.sleep(1)
# Second call without waiting for re-validation as we have set
# immediate_rebind=True for this example
self._hello.greet("World") # prints "Bonjour, World !"
# We can also use a specification filter or make the service optional
@ComponentFactory()
@RequiresBest('_hello', 'hello.world', optional=True,
spec_filter='(language=fr)')
class Bar(object):
def call(self):
if self._hello is not None:
# First call, with the current best service
self._hello.greet("World") # prints "Hello, World!"
"""
HANDLER_ID = constants.HANDLER_REQUIRES_BEST
""" ID of the handler configured by this decorator """
def __init__(
self,
field,
specification,
optional=False,
spec_filter=None,
immediate_rebind=True,
):
"""
:param field: The injected field
:param specification: The injected service specification
:param optional: If True, this injection is optional
:param spec_filter: An LDAP query to filter injected services upon
their properties
:param immediate_rebind: If True, the component won't be invalidated
then re-validated if a matching service is
available when the injected dependency is
unbound
:raise TypeError: A parameter has an invalid type
:raise ValueError: An error occurred while parsing the filter or an
argument is incorrect
"""
super(RequiresBest, self).__init__(
field, specification, False, optional, spec_filter, immediate_rebind
)
# ------------------------------------------------------------------------------
class RequiresMap(Requires):
# pylint: disable=R0903
"""
The ``@RequiresMap`` decorator defines a requirement that must be injected
in a dictionary, based on a service property.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_REQUIRES_MAP`
:Example:
.. code-block:: python
@ComponentFactory()
@RequiresMap("_hello", "hello.world", "language")
class Bar(object):
def call(self):
self._hello["en"].hello("World")
self._hello["fr"].hello("le Monde")
"""
HANDLER_ID = constants.HANDLER_REQUIRES_MAP
""" ID of the handler configured by this decorator """
def __init__(
self,
field,
specification,
key,
allow_none=False,
aggregate=False,
optional=False,
spec_filter=None,
):
"""
:param field: The injected field
:param specification: The injected service specification
:param key: The name of the service property to use as a dictionary key
:param allow_none: If True, also injects services with the property
value set to ``None`` or missing
:param aggregate: If True, injects a list of services with the same
property value, else injects only one service
(first found) per property value
:param optional: If True, this injection is optional
:param spec_filter: An LDAP query to filter injected services upon
their properties
:raise TypeError: A parameter has an invalid type
:raise ValueError: An error occurred while parsing the filter or an
argument is incorrect
"""
super(RequiresMap, self).__init__(
field, specification, aggregate, optional, spec_filter, False
)
# Check if key is valid
if not key:
raise ValueError("No property key given")
# Store the flags
self._key = key
self._allow_none = allow_none
def __call__(self, clazz):
"""
Adds the requirement to the class iPOPO field
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
clazz = super(RequiresMap, self).__call__(clazz)
# Set up the property in the class
context = get_factory_context(clazz)
if not context.completed:
# Store the requirement information
config = context.set_handler_default(self.HANDLER_ID, {})
config[self._field] = (
self._requirement,
self._key,
self._allow_none,
)
return clazz
# ------------------------------------------------------------------------------
class RequiresBroadcast(Requires):
# pylint: disable=R0903
"""
The ``@RequiresBroadcast`` decorator defines a requirement that will be
injected as a single object, hiding the underlying missing dependency or
group of services matching the requirement.
Unlike :class:`Requires`, the parameter ``optional`` is set to ``True`` by
default. Also, the ``aggregate`` argument is not available, the behaviour
of this handler is to broadcast to all matching services.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_REQUIRES_BRODCAST`
:Example:
.. code-block:: python
@ComponentFactory()
@RequiresBroadcast("_notifier", "some.notifier")
class Bar(object):
def trace(self, message):
# We can use the service as a single object, without taking
# care of the number of services matching our requirement:
self._notifier.notify("Hello, world")
"""
HANDLER_ID = constants.HANDLER_REQUIRES_BRODCAST
""" ID of the handler configured by this decorator """
def __init__(
self,
field,
specification,
optional=True,
spec_filter=None,
muffle_exceptions=True,
trace_exceptions=True,
):
"""
:param field: The injected field
:param specification: The injected service specification
:param optional: If True, this injection is optional
:param spec_filter: An LDAP query to filter injected services upon
their properties
:param muffle_exceptions: If True, exceptions raised by underlying
services are not propagated (True by default)
:param trace_exceptions: If True, trace the exceptions that are muffled
(True by default)
:raise TypeError: A parameter has an invalid type
:raise ValueError: An error occurred while parsing the filter or an
argument is incorrect
"""
# Forced flags: aggregate and immediate rebind
super(RequiresBroadcast, self).__init__(
field, specification, True, optional, spec_filter, True
)
# Store the flags
self._muffle_ex = muffle_exceptions
self._trace_ex = trace_exceptions
def __call__(self, clazz):
"""
Adds the requirement to the class iPOPO field
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
clazz = super(RequiresBroadcast, self).__call__(clazz)
# Set up the property in the class
context = get_factory_context(clazz)
if not context.completed:
# Store the requirement information
config = context.set_handler_default(self.HANDLER_ID, {})
config[self._field] = (
self._requirement,
self._muffle_ex,
self._trace_ex,
)
return clazz
# ------------------------------------------------------------------------------
class Temporal(Requires):
# pylint: disable=R0903
"""
The ``@Temporal`` decorator defines a single immediate rebind requirement
with a grace time when the injected service disappears.
This decorator acts like :class:`Requires` except it doesn't support the
``immediate_rebind`` (forced to ``True``) nor ``aggregate`` arguments.
When the injected service disappears, the component won't be invalidated
before the given timeout.
If a matching is found, it is injected in-place and the component instance
continues its operations.
If the service is used while no service is available, the call is put in
hold and blocks until a new service is injected or until the timeout is
reached. In the latter case, a ``TemporalException`` is raised.
:Handler ID: :py:const:`pelix.ipopo.constants.HANDLER_TEMPORAL`
:Example:
.. code-block:: python
@ComponentFactory()
@Temporal('_hello', 'hello.world', timeout=5)
class Bar(object):
def call(self):
# If the service is injected: this call is immediate
# If the service has gone away, this call will hold for
# 5 seconds (timeout parameter)
# - if a service is injected during the grace period, the call
# will be done
try:
self._hello.greet("World")
except pelix.ipopo.handlers.temporal.TemporalException:
# - else, a TemporalException is raised
print("Service disappeared")
"""
HANDLER_ID = constants.HANDLER_TEMPORAL
""" ID of the handler configured by this decorator """
def __init__(
self, field, specification, optional=False, spec_filter=None, timeout=10
):
"""
:param field: The injected field
:param specification: The injected service specification
:param optional: If True, this injection is optional
:param spec_filter: An LDAP query to filter injected services upon
their properties
:param timeout: Temporal timeout, in seconds (must be greater than 0)
:raise TypeError: A parameter has an invalid type
:raise ValueError: An error occurred while parsing the filter or an
argument is incorrect
"""
super(Temporal, self).__init__(
field, specification, False, optional, spec_filter, True
)
if timeout <= 0:
_logger.warning(
"@Temporal timeout must be greater than 0. "
"Using default value."
)
self._timeout = 10
else:
self._timeout = timeout
def __call__(self, clazz):
"""
Adds the requirement to the class iPOPO field
:param clazz: The class to decorate
:return: The decorated class
:raise TypeError: If *clazz* is not a type
"""
clazz = super(Temporal, self).__call__(clazz)
# Store the requirement information
context = get_factory_context(clazz)
if not context.completed:
config = context.set_handler_default(self.HANDLER_ID, {})
config[self._field] = (self._requirement, self._timeout)
return clazz
# ------------------------------------------------------------------------------
class BindField(object):
# pylint: disable=R0903
"""
The ``@BindField`` callback decorator is called when a component is bound
to a dependency, injected in the given field.
The decorated method must accept the field where the service has been
injected, the service object and its
:class:`~pelix.framework.ServiceReference` as arguments.
If the service is a required one, the bind callback is called **before**
the component is validated.
The bind field callback is called **after** the global bind method.
The service reference can be stored *if it is released on unbind*.
Exceptions raised by a bind callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@BindField("_hello")
def bind_method(self, field, service, service_reference):
'''
field: Field wherein the dependency is injected ("_hello")
service: The injected service instance
service_reference: The injected service ServiceReference
'''
# ...
"""
def __init__(self, field, if_valid=False):
"""
:param field: The field associated to the binding
:param if_valid: If True, call the decorated method only when the
component is valid
"""
self._field = field
self._if_valid = if_valid
def __call__(self, method):
"""
Updates the "field callback" list for this method
:param method: Method to decorate
:return: Decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not inspect.isroutine(method):
raise TypeError("@BindField can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "field", "service", "service_reference")
_append_object_entry(
method,
constants.IPOPO_METHOD_FIELD_CALLBACKS,
(constants.IPOPO_CALLBACK_BIND_FIELD, self._field, self._if_valid),
)
return method
class UpdateField(object):
# pylint: disable=R0903
"""
The ``@UpdateField`` callback decorator is called when the properties of
a service injected in the given field have been updated.
The decorated method must accept the field where the service has been
injected, the service object, its
:class:`~pelix.framework.ServiceReference` and its previous properties as
arguments.
Exceptions raised by an update callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@UpdateField("_hello")
def update_method(self, service, service_reference, old_properties):
'''
field: Field wherein the dependency was injected ("_hello")
service: The injected service instance
service_reference: The injected service ServiceReference
old_properties: The previous service properties
'''
# ...
"""
def __init__(self, field, if_valid=False):
"""
:param field: The field associated to the binding
:param if_valid: If True, call the decorated method only when the
component is valid
"""
self._field = field
self._if_valid = if_valid
def __call__(self, method):
"""
Updates the "field callback" list for this method
:param method: Method to decorate
:return: Decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not inspect.isroutine(method):
raise TypeError("@UnbindField can only be applied on functions")
# Tests the number of parameters
validate_method_arity(
method, "field", "service", "service_reference", "old_properties"
)
_append_object_entry(
method,
constants.IPOPO_METHOD_FIELD_CALLBACKS,
(
constants.IPOPO_CALLBACK_UPDATE_FIELD,
self._field,
self._if_valid,
),
)
return method
class UnbindField(object):
# pylint: disable=R0903
"""
The ``@UnbindField`` callback decorator is called when an injected
dependency is unbound.
The decorated method must accept the field where the service has been
injected, the service object, its
:class:`~pelix.framework.ServiceReference` and its previous properties as
arguments.
If the service is a required one, the unbind callback is called **after**
the component has been invalidated.
The unbind field callback is called **before** the global unbind method.
Exceptions raised by an unbind callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@UnbindField("_hello")
def unbind_method(self, field, service, service_reference):
'''
field: Field wherein the dependency was injected ("_hello")
service: The injected service instance
service_reference: The injected service ServiceReference
'''
# ...
"""
def __init__(self, field, if_valid=False):
"""
:param field: The field associated to the binding
:param if_valid: If True, call the decorated method only when the
component is valid
"""
self._field = field
self._if_valid = if_valid
def __call__(self, method):
"""
Updates the "field callback" list for this method
:param method: Method to decorate
:return: Decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not inspect.isroutine(method):
raise TypeError("@UnbindField can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "field", "service", "service_reference")
_append_object_entry(
method,
constants.IPOPO_METHOD_FIELD_CALLBACKS,
(
constants.IPOPO_CALLBACK_UNBIND_FIELD,
self._field,
self._if_valid,
),
)
return method
# ------------------------------------------------------------------------------
def Bind(method):
# pylint: disable=C0103
"""
The ``@Bind`` callback decorator is called when a component is bound to a
dependency.
The decorated method must accept the injected service object and its
:class:`~pelix.framework.ServiceReference` as arguments.
If the service is a required one, the bind callback is called **before**
the component is validated.
The service reference can be stored *if it is released on unbind*.
Exceptions raised by a bind callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@Bind
def bind_method(self, service, service_reference):
'''
service: The injected service instance.
service_reference: The injected service ServiceReference
'''
# ...
:param method: The decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not inspect.isroutine(method):
raise TypeError("@Bind can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "service", "service_reference")
_append_object_entry(
method, constants.IPOPO_METHOD_CALLBACKS, constants.IPOPO_CALLBACK_BIND
)
return method
def Update(method):
# pylint: disable=C0103
"""
The ``@Update`` callback decorator is called when the properties of an
injected service have been modified.
The decorated method must accept the injected service object and its
:class:`~pelix.framework.ServiceReference` and the previous properties
as arguments.
Exceptions raised by an update callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@Update
def update_method(self, service, service_reference, old_properties):
'''
service: The injected service instance.
service_reference: The injected service ServiceReference
old_properties: The previous service properties
'''
# ...
:param method: The decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError("@Update can only be applied on functions")
# Tests the number of parameters
validate_method_arity(
method, "service", "service_reference", "old_properties"
)
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_UPDATE,
)
return method
def Unbind(method):
# pylint: disable=C0103
"""
The ``@Unbind`` callback decorator is called when a component dependency is
unbound.
The decorated method must accept the injected service object and its
:class:`~pelix.framework.ServiceReference` as arguments.
If the service is a required one, the unbind callback is called **after**
the component has been invalidated.
Exceptions raised by an unbind callback are ignored.
:Example:
.. code-block:: python
@ComponentFactory()
@Requires("_hello", "hello.svc")
class Foo:
@Unbind
def unbind_method(self, service, service_reference):
'''
service: The previously injected service instance.
service_reference: Its ServiceReference
'''
# ...
:param method: The decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError("@Unbind can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "service", "service_reference")
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_UNBIND,
)
return method
# ------------------------------------------------------------------------------
class ValidateComponent(object):
# pylint: disable=R0903
"""
The ``@ValidateComponent`` decorator declares a callback method for
component validation.
Currently, the arguments given to the callback are read-only, to avoid
messing with the validation life-cycle.
In the future, it might be possible to modify the properties and to use
the component context in order to customize the component early.
:Example:
Here are some sample uses of the decorator. Note that the number and order
of arguments only has to match the list given to the decorator:
.. code-block:: python
from pelix.constants import ARG_COMPONENT_CONTEXT, \\
ARG_BUNDLE_CONTEXT, ARG_PROPERTIES
@ValidateComponent(ARG_COMPONENT_CONTEXT)
def validate_component(self, component_ctx):
# ...
@ValidateComponent(ARG_BUNDLE_CONTEXT, ARG_COMPONENT_CONTEXT)
def validate_component(self, bundle_ctx, component_ctx):
# ...
@ValidateComponent(
ARG_BUNDLE_CONTEXT, ARG_COMPONENT_CONTEXT, ARG_PROPERTIES
)
def validate_component(self, bundle_ctx, component_ctx, props):
# ...
"""
def __init__(self, *args):
"""
:param args: The decorator accepts an ordered list of arguments.
They define the signature of the decorated method.
The arguments can be the following ones, declared in the
``pelix.ipopo.constants`` module:
* ``ARG_BUNDLE_CONTEXT``: Gives access to the bundle
context
* ``ARG_COMPONENT_CONTEXT``: Gives access to the
component context
* ``ARG_PROPERTIES``: Gives access to the initial
properties of the component (``dict``)
:raise TypeError: A parameter has an invalid type or the decorated
object is not a method
"""
# Check arguments validity
valid_args = (
constants.ARG_BUNDLE_CONTEXT,
constants.ARG_COMPONENT_CONTEXT,
constants.ARG_PROPERTIES,
)
for arg in args:
if arg not in valid_args:
raise TypeError("Unknown argument type: {}".format(arg))
# Keep track of the arguments
self._args = tuple(args)
def __call__(self, method):
"""
Registers the decorated method as a callback for component validation
:param method: The validation method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError(
"@ValidateComponent can only be applied on functions"
)
# Tests the number of parameters
validate_method_arity(method, *self._args)
# Append the callback to the component
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_VALIDATE,
)
# Append arguments list to the method
_set_object_entry(method, constants.IPOPO_VALIDATE_ARGS, self._args)
return method
class InvalidateComponent(ValidateComponent):
# pylint: disable=R0903
"""
The ``@InvalidateComponent`` decorator declares a callback method for
component invalidation.
Its arguments and their order describes the ones of the callback it
decorates.
They are the same as those of :class:`ValidateComponent`.
Exceptions raised by an invalidation callback are ignored.
If the component provides a service, the invalidation method is called
after the provided service has been unregistered to the framework.
"""
def __call__(self, method):
"""
Registers the decorated method as a callback for component invalidation
:param method: The invalidation method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError(
"@InvalidateComponent can only be applied on functions"
)
# Tests the number of parameters
validate_method_arity(method, *self._args)
# Append the callback to the component
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_INVALIDATE,
)
# Append arguments list to the method
_set_object_entry(method, constants.IPOPO_VALIDATE_ARGS, self._args)
return method
# ------------------------------------------------------------------------------
def Validate(method):
# pylint: disable=C0103
"""
This decorator is an alias to :class:`ValidateComponent` to decorate a
callback method than only accepts the
:class:`~pelix.framework.BundleContext` argument.
It is not possible to have both ``@Validate`` and ``@ValidateComponent``
decorators used in the same class.
The validation callback decorator is called when a component becomes valid,
*i.e.* if all of its required dependencies has been injected.
If the validation callback raises an exception, the component goes into
**ERRONEOUS** state.
If the component provides a service, the validation method is called before
the provided service is registered to the framework.
:Example:
.. code-block:: python
@ComponentFactory()
class Foo:
@Validate
def validation_method(self, bundle_context):
'''
bundle_context: The component's bundle context
'''
# ...
:param method: The validation callback method
:raise TypeError: The decorated element is not a valid function
"""
return ValidateComponent(constants.ARG_BUNDLE_CONTEXT)(method)
def Invalidate(method):
# pylint: disable=C0103
"""
This decorator is an alias to :class:`InvalidateComponent` to decorate a
callback method than only accepts the
:class:`~pelix.framework.BundleContext` argument.
It is not possible to have both ``@Invalidate`` and
``@InvalidateComponent`` decorators used in the same class.
The invalidation callback decorator is called when a component becomes
invalid, *i.e.* if one of its required dependencies disappeared.
Exceptions raised by an invalidation callback are ignored.
If the component provides a service, the invalidation method is called
after the provided service has been unregistered to the framework.
:Example:
.. code-block:: python
@ComponentFactory()
class Foo:
@Invalidate
def invalidation_method(self, bundle_context):
'''
bundle_context: The component's bundle context
'''
# ...
:param method: The decorated method
:raise TypeError: The decorated element is not a function
"""
return InvalidateComponent(constants.ARG_BUNDLE_CONTEXT)(method)
def PostRegistration(method):
# pylint: disable=C0103
"""
The service post-registration callback decorator is called after a service
of the component has been registered to the framework.
The decorated method must accept the
:class:`~pelix.framework.ServiceReference` of the registered
service as argument.
Note that when this method is called, the consumers have already been bound
and might already use the service.
:Example:
.. code-block:: python
@ComponentFactory()
@Provides("hello.svc")
class Foo:
@PostRegistration
def callback_method(self, service_reference):
'''
service_reference: The ServiceReference of the provided service
'''
# Custom notification, ...
:param method: The decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError("@PostRegistration can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "service_reference")
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_POST_REGISTRATION,
)
return method
def PostUnregistration(method):
# pylint: disable=C0103
"""
The service post-unregistration callback decorator is called after a
service of the component has been unregistered from the framework.
The decorated method must accept the
:class:`~pelix.framework.ServiceReference` of the registered
service as argument.
This method being called after the unregistration, the consumers of the
service should have already released it and should not be using it while
this callback is notified.
This is True by design for consumers managed by the :class:`Requires`
decorator in iPOPO, but some others (badly written or very specific design)
might keep a reference on the service even after its unregistration.
:Example:
.. code-block:: python
@ComponentFactory()
@Provides("hello.svc")
class Foo:
@PostUnregistration
def callback_method(self, service_reference):
'''
service_reference: The ServiceReference of the provided service
'''
# Clean up, ...
:param method: The decorated method
:raise TypeError: The decorated element is not a valid function
"""
if not isinstance(method, types.FunctionType):
raise TypeError("@PostUnregistration can only be applied on functions")
# Tests the number of parameters
validate_method_arity(method, "service_reference")
_append_object_entry(
method,
constants.IPOPO_METHOD_CALLBACKS,
constants.IPOPO_CALLBACK_POST_UNREGISTRATION,
)
return method
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
1377,
14041,
12,
27195,
7656,
25,
41002,
12,
23,
1377,
198,
37811,
198,
7469,
1127,
262,
9736,
3185,
46,
11705,
2024,
6097,
284,
18510,
7515,
8860,
6097,
198,
198,
25,
9800,
25,
5658,
38280,
415,
198,
25,
22163,
4766,
25,
15069,
12131,
11,
5658,
38280,
415,
198,
25,
43085,
25,
24843,
13789,
362,
13,
15,
198,
25,
9641,
25,
352,
13,
15,
13,
16,
198,
198,
492,
628,
220,
220,
220,
15069,
12131,
5658,
38280,
415,
628,
220,
220,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
220,
220,
220,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
220,
220,
220,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
628,
220,
220,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
220,
220,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
220,
220,
220,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
220,
220,
220,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
220,
220,
220,
11247,
739,
262,
13789,
13,
198,
37811,
198,
198,
2,
8997,
5888,
198,
11748,
10104,
198,
11748,
18931,
198,
11748,
25064,
198,
11748,
4704,
278,
198,
11748,
3858,
198,
198,
2,
8997,
19720,
8265,
815,
307,
11902,
198,
28311,
25,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
54,
3312,
1157,
198,
220,
220,
220,
422,
19720,
1330,
4377,
11,
4889,
540,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
1208,
198,
198,
2,
12903,
844,
13103,
198,
6738,
16176,
844,
13,
315,
2410,
1330,
318,
62,
8841,
11,
284,
62,
2676,
540,
11,
651,
62,
24396,
62,
853,
2886,
198,
6738,
16176,
844,
13,
42800,
78,
13,
22866,
82,
1330,
19239,
21947,
11,
9394,
24615,
198,
11748,
16176,
844,
13,
42800,
78,
13,
9979,
1187,
355,
38491,
198,
198,
2,
16529,
26171,
198,
198,
2,
19937,
2196,
198,
834,
9641,
62,
10951,
834,
796,
357,
16,
11,
657,
11,
352,
8,
198,
834,
9641,
834,
796,
366,
526,
13,
22179,
7,
2536,
7,
87,
8,
329,
2124,
287,
11593,
9641,
62,
10951,
834,
8,
198,
198,
2,
43925,
13042,
5794,
198,
834,
15390,
18982,
834,
796,
366,
2118,
1356,
1522,
5239,
551,
1,
198,
198,
2,
16529,
26171,
198,
198,
2,
43426,
262,
8265,
49706,
198,
62,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7203,
42800,
78,
13,
12501,
273,
2024,
4943,
198,
198,
2,
16529,
26171,
628,
198,
4299,
318,
62,
6738,
62,
8000,
7,
565,
82,
11,
11688,
62,
3672,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
4906,
11,
965,
11,
20512,
8,
4613,
20512,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
30307,
611,
262,
1459,
11688,
1988,
318,
4888,
416,
257,
2560,
286,
262,
1813,
198,
220,
220,
220,
1398,
13,
628,
220,
220,
220,
16409,
6045,
611,
262,
11688,
1988,
318,
6045,
13,
628,
220,
220,
220,
1058,
17143,
537,
82,
25,
5932,
1398,
351,
262,
9167,
11688,
198,
220,
220,
220,
1058,
17143,
11688,
62,
3672,
25,
6530,
286,
262,
11688,
284,
307,
6789,
198,
220,
220,
220,
1058,
17143,
1988,
25,
383,
2748,
1988,
287,
262,
1200,
1398,
357,
25968,
8,
198,
220,
220,
220,
1058,
7783,
25,
6407,
611,
262,
11688,
1988,
318,
4888,
351,
257,
2560,
1398,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
1988,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
1459,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
651,
35226,
7,
565,
82,
11,
11688,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1400,
761,
284,
467,
2252,
25,
262,
11688,
857,
407,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
329,
2779,
287,
537,
82,
13,
834,
65,
1386,
834,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6803,
329,
262,
1988,
287,
1123,
2560,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
35226,
7,
8692,
11,
11688,
62,
3672,
8,
318,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
1303,
3460,
4163,
1988,
407,
1043,
287,
2560,
6097,
198,
220,
220,
220,
1441,
10352,
628,
198,
4299,
651,
62,
69,
9548,
62,
22866,
7,
565,
82,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
4906,
8,
4613,
19239,
21947,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4990,
5034,
1158,
262,
8860,
4732,
2134,
3917,
284,
257,
8860,
13,
7921,
274,
340,
198,
220,
220,
220,
611,
2622,
628,
220,
220,
220,
1058,
17143,
537,
82,
25,
383,
8860,
1398,
198,
220,
220,
220,
1058,
7783,
25,
383,
8860,
1398,
4732,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4732,
796,
651,
35226,
7,
565,
82,
11,
38491,
13,
4061,
3185,
46,
62,
37,
10659,
15513,
62,
10943,
32541,
11,
6045,
8,
628,
220,
220,
220,
611,
4732,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5016,
407,
1865,
25036,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
19239,
21947,
3419,
198,
220,
220,
220,
1288,
361,
318,
62,
6738,
62,
8000,
7,
565,
82,
11,
38491,
13,
4061,
3185,
46,
62,
37,
10659,
15513,
62,
10943,
32541,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
4866,
262,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
4732,
13,
30073,
7,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1635,
35045,
1741,
468,
407,
587,
5625,
1865,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
785,
16838,
796,
10352,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10528,
2041,
284,
466,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
4732,
628,
220,
220,
220,
1303,
30532,
468,
587,
2727,
393,
18984,
11,
8677,
262,
649,
26394,
198,
220,
220,
220,
900,
35226,
7,
565,
82,
11,
38491,
13,
4061,
3185,
46,
62,
37,
10659,
15513,
62,
10943,
32541,
11,
4732,
8,
198,
220,
220,
220,
1441,
4732,
628,
198,
4299,
651,
62,
24396,
62,
11213,
7,
24396,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
14134,
540,
8,
4613,
965,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4990,
5034,
1158,
257,
6764,
286,
262,
1813,
2446,
13,
1002,
1744,
11,
262,
6764,
198,
220,
220,
220,
4909,
262,
2723,
2393,
1438,
290,
1627,
13,
628,
220,
220,
220,
1058,
17143,
2446,
25,
317,
2446,
198,
220,
220,
220,
1058,
7783,
25,
317,
6764,
286,
262,
2446,
357,
265,
1551,
663,
1438,
8,
198,
220,
220,
220,
1058,
40225,
3460,
4163,
12331,
25,
11259,
2134,
468,
645,
11593,
3672,
834,
11688,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
3919,
796,
10104,
13,
11407,
1668,
6615,
7,
24396,
38381,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
24418,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
13047,
3555,
262,
2723,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
3919,
796,
532,
16,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
24018,
90,
24396,
92,
6,
37913,
7753,
92,
29164,
1370,
30072,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
28,
24396,
13,
834,
3672,
834,
11,
2393,
28,
1040,
806,
13,
1136,
7753,
7,
24396,
828,
1627,
28,
1370,
62,
3919,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
2845,
5994,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11789,
460,
470,
307,
34295,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
24018,
90,
15,
92,
6,
1911,
18982,
7,
24396,
13,
834,
3672,
834,
8,
628,
198,
4299,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
1635,
27938,
62,
22046,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
14134,
540,
11,
1635,
2536,
8,
4613,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
30307,
611,
262,
24789,
2446,
468,
257,
6751,
1271,
286,
10007,
13,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
2446,
284,
307,
6789,
198,
220,
220,
220,
1058,
17143,
2622,
62,
22046,
25,
383,
1438,
357,
1640,
6764,
691,
8,
286,
262,
2622,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7159,
11,
1231,
366,
944,
1911,
198,
220,
220,
220,
1058,
7783,
25,
10528,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
17665,
1271,
286,
11507,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
299,
65,
62,
27938,
62,
22046,
796,
18896,
7,
27938,
62,
22046,
8,
628,
220,
220,
220,
1303,
6208,
262,
1271,
286,
10007,
198,
220,
220,
220,
1822,
62,
16684,
796,
651,
62,
24396,
62,
853,
2886,
7,
24396,
8,
198,
220,
220,
220,
2446,
62,
22046,
796,
1822,
62,
16684,
13,
22046,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17220,
262,
2116,
4578,
618,
1944,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2446,
62,
22046,
58,
15,
60,
6624,
366,
944,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
2446,
62,
22046,
58,
15,
60,
198,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
299,
65,
62,
22046,
796,
18896,
7,
24396,
62,
22046,
8,
628,
220,
220,
220,
611,
1822,
62,
16684,
13,
7785,
22046,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
35748,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
611,
299,
65,
62,
22046,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3819,
7159,
12326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2215,
1262,
705,
9,
22046,
3256,
262,
24789,
1391,
15,
92,
2446,
1276,
691,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13635,
262,
705,
944,
6,
4578,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
24396,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1288,
361,
1822,
62,
16684,
13,
2539,
10879,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
46202,
1262,
705,
1174,
46265,
22046,
6,
389,
407,
12118,
4943,
198,
220,
220,
220,
1288,
361,
299,
65,
62,
22046,
14512,
299,
65,
62,
27938,
62,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
26447,
1,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
464,
24789,
2446,
1391,
15,
92,
1276,
2453,
3446,
1391,
16,
92,
10007,
25,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30629,
944,
11,
1391,
17,
30072,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
24396,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
65,
62,
27938,
62,
22046,
1343,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33172,
27071,
22179,
7,
27938,
62,
22046,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
2,
16529,
26171,
628,
198,
4299,
4808,
42800,
78,
62,
40406,
62,
47423,
7,
565,
82,
11,
4732,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
4906,
11,
19239,
21947,
8,
4613,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
21394,
510,
262,
1398,
4808,
47423,
22155,
628,
220,
220,
220,
1058,
17143,
537,
82,
25,
383,
1398,
284,
5412,
198,
220,
220,
220,
1058,
17143,
4732,
25,
383,
8860,
1398,
4732,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
10104,
13,
271,
4871,
7,
565,
82,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
22866,
11,
19239,
21947,
8,
628,
220,
220,
220,
611,
4732,
13,
13345,
10146,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
869,
10146,
796,
4732,
13,
13345,
10146,
13,
30073,
3419,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
869,
10146,
796,
23884,
628,
220,
220,
220,
5499,
796,
10104,
13,
1136,
30814,
7,
565,
82,
11,
10104,
13,
271,
81,
28399,
8,
628,
220,
220,
220,
329,
4808,
11,
25439,
287,
5499,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
468,
35226,
7,
20786,
11,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1400,
11688,
11,
651,
262,
1306,
2888,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
2446,
62,
13345,
10146,
796,
651,
35226,
7,
20786,
11,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
62,
13345,
10146,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
2695,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44651,
23838,
1321,
4064,
82,
287,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
20786,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
33311,
340,
3578,
24155,
1058,
416,
10829,
340,
11,
691,
262,
717,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1200,
481,
766,
262,
11688,
4613,
2094,
470,
4781,
340,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
869,
12983,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
47423,
287,
2446,
62,
13345,
10146,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4808,
47423,
287,
869,
10146,
290,
407,
318,
62,
6738,
62,
8000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
11,
869,
10146,
29795,
47423,
4083,
834,
3672,
834,
11,
869,
10146,
29795,
47423,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7738,
891,
3191,
262,
23838,
4064,
82,
287,
1398,
705,
4,
82,
4458,
59,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37082,
83,
21448,
23838,
1058,
4064,
82,
59,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37082,
83,
3791,
23838,
1058,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
47423,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
13,
834,
3672,
834,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
13345,
10146,
29795,
47423,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
20786,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
869,
10146,
29795,
47423,
60,
796,
25439,
628,
220,
220,
220,
1303,
10133,
262,
8860,
4732,
198,
220,
220,
220,
4732,
13,
13345,
10146,
13,
20063,
3419,
198,
220,
220,
220,
4732,
13,
13345,
10146,
13,
19119,
7,
13345,
10146,
8,
628,
198,
4299,
4808,
42800,
78,
62,
40406,
62,
3245,
62,
47423,
7,
565,
82,
11,
4732,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
4906,
11,
19239,
21947,
8,
4613,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
21394,
510,
262,
1398,
4808,
3245,
62,
47423,
22155,
628,
220,
220,
220,
1058,
17143,
537,
82,
25,
383,
1398,
284,
5412,
198,
220,
220,
220,
1058,
17143,
4732,
25,
383,
8860,
1398,
4732,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
10104,
13,
271,
4871,
7,
565,
82,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
22866,
11,
19239,
21947,
8,
628,
220,
220,
220,
611,
4732,
13,
3245,
62,
13345,
10146,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
869,
10146,
796,
4732,
13,
3245,
62,
13345,
10146,
13,
30073,
3419,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
869,
10146,
796,
23884,
628,
220,
220,
220,
5499,
796,
10104,
13,
1136,
30814,
7,
565,
82,
11,
10104,
13,
271,
81,
28399,
8,
198,
220,
220,
220,
329,
1438,
11,
25439,
287,
5499,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
468,
35226,
7,
20786,
11,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1400,
11688,
11,
651,
262,
1306,
2888,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
2446,
62,
13345,
10146,
796,
651,
35226,
7,
20786,
11,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
62,
13345,
10146,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
2695,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44651,
11688,
4064,
82,
287,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
33311,
340,
3578,
24155,
1058,
416,
10829,
340,
11,
691,
262,
717,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1200,
481,
766,
262,
11688,
4613,
2094,
470,
4781,
340,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
869,
12983,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1611,
11,
2214,
11,
611,
62,
12102,
287,
2446,
62,
13345,
10146,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
62,
66,
1443,
796,
869,
10146,
13,
2617,
12286,
7,
3245,
11,
23884,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1611,
287,
7032,
62,
66,
1443,
290,
407,
318,
62,
6738,
62,
8000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
11,
7032,
62,
66,
1443,
58,
11031,
7131,
15,
4083,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7738,
891,
3191,
262,
23838,
4064,
82,
287,
705,
4,
82,
4458,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21448,
23838,
1058,
705,
4,
82,
6,
37633,
82,
737,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3791,
23838,
1058,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1611,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
62,
66,
1443,
58,
11031,
7131,
15,
4083,
834,
3672,
834,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
62,
66,
1443,
58,
11031,
7131,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25439,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
62,
66,
1443,
58,
11031,
60,
796,
357,
20786,
11,
611,
62,
12102,
8,
628,
220,
220,
220,
1303,
10133,
262,
8860,
4732,
198,
220,
220,
220,
4732,
13,
3245,
62,
13345,
10146,
13,
20063,
3419,
198,
220,
220,
220,
4732,
13,
3245,
62,
13345,
10146,
13,
19119,
7,
13345,
10146,
8,
628,
198,
2,
16529,
26171,
628,
198,
4299,
4808,
2617,
62,
15252,
62,
13000,
7,
26801,
11,
5726,
62,
3672,
11,
1988,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
7149,
11,
965,
11,
4377,
8,
4613,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
21394,
262,
1813,
1988,
284,
262,
1813,
11688,
287,
262,
1813,
2134,
13,
628,
220,
220,
220,
1058,
17143,
26181,
25,
383,
2134,
326,
4909,
262,
1351,
198,
220,
220,
220,
1058,
17143,
5726,
62,
3672,
25,
383,
1438,
286,
262,
2888,
287,
1635,
26801,
9,
198,
220,
220,
220,
1058,
17143,
1988,
25,
383,
1988,
284,
900,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
900,
35226,
7,
26801,
11,
5726,
62,
3672,
11,
1988,
8,
628,
198,
4299,
4808,
33295,
62,
15252,
62,
13000,
7,
26801,
11,
1351,
62,
3672,
11,
5726,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
7149,
11,
965,
11,
4377,
8,
4613,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2034,
2412,
262,
1813,
5726,
287,
262,
1813,
2134,
1351,
13,
198,
220,
220,
220,
7921,
274,
262,
1351,
2214,
611,
2622,
13,
628,
220,
220,
220,
1058,
17143,
26181,
25,
383,
2134,
326,
4909,
262,
1351,
198,
220,
220,
220,
1058,
17143,
1351,
62,
3672,
25,
383,
1438,
286,
262,
1351,
2888,
287,
1635,
26801,
9,
198,
220,
220,
220,
1058,
17143,
5726,
25,
383,
5726,
284,
307,
2087,
284,
262,
1351,
198,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
17665,
11688,
2695,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
3497,
262,
1351,
198,
220,
220,
220,
26181,
62,
4868,
796,
651,
35226,
7,
26801,
11,
1351,
62,
3672,
11,
6045,
8,
198,
220,
220,
220,
611,
26181,
62,
4868,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
1183,
423,
284,
2251,
340,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
26801,
11,
1351,
62,
3672,
11,
26181,
62,
4868,
8,
628,
220,
220,
220,
6818,
318,
39098,
7,
26801,
62,
4868,
11,
1351,
8,
628,
220,
220,
220,
1303,
5345,
510,
262,
3119,
11,
611,
2622,
198,
220,
220,
220,
611,
5726,
407,
287,
26181,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
62,
4868,
13,
33295,
7,
13000,
8,
628,
198,
2,
16529,
26171,
628,
198,
4871,
24210,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
1398,
326,
6622,
257,
1988,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1988,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
510,
262,
15762,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8367,
796,
1988,
628,
198,
4299,
4808,
42800,
78,
62,
4871,
62,
3245,
62,
26745,
7,
3672,
11,
1988,
11,
5050,
62,
40290,
2599,
198,
220,
220,
220,
1303,
2099,
25,
357,
2536,
11,
4377,
11,
965,
8,
4613,
3119,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
21394,
510,
281,
9736,
3185,
46,
2214,
3119,
11,
1262,
11361,
3119,
3419,
9889,
628,
220,
220,
220,
1058,
17143,
1438,
25,
383,
3119,
1438,
198,
220,
220,
220,
1058,
17143,
1988,
25,
383,
3119,
4277,
1988,
198,
220,
220,
220,
1058,
17143,
5050,
62,
40290,
25,
383,
2219,
21231,
286,
262,
651,
353,
290,
900,
353,
25077,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5050,
198,
220,
220,
220,
1058,
7783,
25,
317,
7560,
11361,
3119,
3419,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
383,
3119,
5793,
198,
220,
220,
220,
5793,
796,
4704,
278,
13,
7836,
735,
3419,
628,
220,
220,
220,
1303,
43426,
262,
5050,
3891,
198,
220,
220,
220,
651,
353,
62,
3672,
796,
45144,
15,
18477,
16,
92,
1911,
18982,
7,
24396,
82,
62,
40290,
11,
38491,
13,
4061,
3185,
46,
62,
18851,
5781,
62,
12564,
5777,
10426,
8,
198,
220,
220,
220,
900,
353,
62,
3672,
796,
45144,
15,
18477,
16,
92,
1911,
18982,
7,
24396,
82,
62,
40290,
11,
38491,
13,
4061,
3185,
46,
62,
28480,
5781,
62,
12564,
5777,
10426,
8,
628,
220,
220,
220,
1957,
62,
13829,
796,
24210,
7,
8367,
8,
628,
220,
220,
220,
825,
651,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4990,
5034,
1158,
262,
3119,
1988,
11,
422,
262,
9736,
3185,
46,
48589,
3166,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
651,
353,
796,
651,
35226,
7,
944,
11,
651,
353,
62,
3672,
11,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
651,
353,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
262,
7515,
651,
353,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
5793,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
353,
7,
944,
11,
1438,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
262,
1957,
15762,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1957,
62,
13829,
13,
8367,
628,
220,
220,
220,
825,
900,
62,
8367,
7,
944,
11,
649,
62,
8367,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
3119,
1988,
290,
7616,
281,
4296,
1785,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
649,
62,
8367,
25,
383,
649,
3119,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
900,
353,
796,
651,
35226,
7,
944,
11,
900,
353,
62,
3672,
11,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
900,
353,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
262,
7515,
900,
353,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
5793,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
353,
7,
944,
11,
1438,
11,
649,
62,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9794,
262,
1957,
15762,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
13829,
13,
8367,
796,
649,
62,
8367,
628,
220,
220,
220,
1441,
3119,
7,
1136,
62,
8367,
11,
900,
62,
8367,
8,
628,
198,
2,
16529,
26171,
628,
198,
4871,
24470,
9386,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
11705,
1352,
4952,
9736,
3185,
46,
284,
9113,
9386,
257,
7515,
4554,
422,
428,
198,
220,
220,
220,
8860,
355,
2582,
355,
663,
18537,
318,
287,
12429,
10659,
9306,
1174,
1181,
13,
628,
220,
220,
220,
383,
7559,
48310,
15506,
4578,
3578,
284,
20957,
262,
4277,
1988,
1813,
287,
198,
220,
220,
220,
262,
7559,
31,
21746,
15506,
290,
7559,
31,
41691,
21746,
15506,
11705,
2024,
13,
628,
220,
220,
220,
383,
6608,
389,
3917,
284,
262,
7515,
4554,
475,
407,
2087,
284,
198,
220,
220,
220,
340,
13,
770,
1724,
326,
649,
357,
28961,
25106,
6608,
460,
307,
2087,
284,
751,
1321,
198,
220,
220,
220,
284,
262,
7515,
357,
2339,
262,
21520,
6168,
10784,
6608,
828,
475,
883,
198,
220,
220,
220,
1839,
470,
307,
9857,
3264,
416,
262,
7515,
13,
198,
220,
220,
220,
5845,
3131,
6608,
481,
307,
7424,
287,
7515,
338,
2594,
6608,
198,
220,
220,
220,
290,
287,
262,
4554,
6608,
4504,
416,
262,
9736,
3185,
46,
198,
220,
220,
220,
7559,
1136,
62,
39098,
62,
36604,
3419,
15506,
2446,
11,
475,
645,
649,
2214,
481,
307,
25077,
287,
262,
198,
220,
220,
220,
7515,
4554,
13,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21746,
10786,
62,
3672,
3256,
705,
3672,
3256,
705,
21943,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49933,
9386,
10786,
42895,
12,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49933,
9386,
10786,
42895,
12,
17,
3256,
1391,
6,
3672,
10354,
705,
5657,
6,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7515,
12,
16,
481,
3601,
366,
21943,
1,
357,
12286,
1988,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7515,
12,
17,
481,
3601,
366,
5657,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
3666,
1438,
3119,
318,
25,
1600,
2116,
13557,
3672,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7203,
490,
76,
15635,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21746,
10786,
62,
8367,
3256,
705,
8367,
3256,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49933,
9386,
10786,
42895,
12,
18,
3256,
1391,
6,
20850,
10354,
705,
42,
6,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
836,
470,
423,
1895,
284,
262,
366,
20850,
1,
3119,
1988,
11,
475,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
481,
307,
7424,
287,
262,
2139,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
3666,
1988,
318,
25,
1600,
2116,
13557,
8367,
8,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1438,
11,
6608,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1438,
25,
383,
1438,
286,
262,
7515,
4554,
357,
1174,
22249,
2870,
1174,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6608,
25,
383,
4238,
6608,
286,
262,
4554,
355,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22155,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
62,
8841,
7,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
33384,
1438,
1276,
307,
257,
4731,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6608,
318,
407,
6045,
290,
407,
318,
39098,
7,
48310,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
33384,
6608,
1276,
307,
257,
22155,
393,
6045,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
1438,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
44651,
4554,
1438,
705,
90,
15,
92,
6,
1911,
18982,
7,
3672,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
3672,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
48310,
796,
6608,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
8860,
62,
4871,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
510,
290,
28441,
262,
10245,
16969,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8860,
62,
4871,
25,
383,
8860,
1398,
284,
9113,
9386,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
8860,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
1813,
2134,
318,
407,
257,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
69,
9548,
62,
4871,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
49933,
9386,
460,
11705,
378,
691,
6097,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1662,
705,
90,
15,
92,
6,
1911,
18982,
7,
4906,
7,
69,
9548,
62,
4871,
737,
834,
3672,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
4554,
287,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
69,
9548,
62,
4871,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
2860,
62,
39098,
7,
944,
13,
834,
3672,
11,
2116,
13,
834,
48310,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2845,
6530,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21950,
705,
4,
82,
6,
5447,
5403,
11,
649,
6770,
9514,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
8860,
62,
4871,
628,
198,
2,
16529,
26171,
628,
198,
4871,
35100,
22810,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
35045,
15968,
262,
7515,
1398,
1864,
284,
257,
7559,
22810,
21947,
15506,
2134,
198,
220,
220,
220,
5901,
416,
584,
11705,
2024,
13,
628,
220,
220,
220,
770,
12429,
27238,
1174,
307,
262,
938,
10945,
11705,
1352,
11,
1635,
72,
13,
68,
15885,
262,
530,
319,
1353,
286,
198,
220,
220,
220,
1854,
287,
262,
2723,
2438,
13,
628,
220,
220,
220,
1002,
645,
8860,
1438,
318,
1813,
11,
340,
481,
307,
7560,
355,
7559,
9487,
5376,
22810,
15506,
11,
198,
220,
220,
220,
1635,
68,
13,
70,
15885,
257,
7559,
37,
2238,
15506,
1398,
481,
423,
262,
8860,
1438,
7559,
37,
2238,
22810,
15506,
13,
628,
220,
220,
220,
5740,
326,
262,
1438,
286,
262,
7515,
8860,
318,
262,
691,
835,
284,
5911,
340,
198,
220,
220,
220,
287,
9736,
3185,
46,
13,
8447,
11,
340,
1276,
307,
3748,
287,
257,
9355,
4554,
13,
628,
220,
220,
220,
11485,
6509,
3712,
383,
7559,
834,
15003,
834,
3419,
15506,
2446,
286,
257,
7515,
8860,
1398,
1276,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
2421,
597,
11507,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
10786,
1820,
12,
69,
9548,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
10374,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
5257,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
4578,
468,
257,
4277,
1988,
25,
340,
460,
307,
9113,
12931,
416,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9736,
3185,
46,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1438,
28,
14202,
11,
15009,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1438,
25,
6530,
286,
262,
7515,
8860,
11,
973,
284,
5911,
340,
618,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9113,
26336,
257,
7515,
13,
770,
1438,
1276,
307,
3748,
287,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12903,
844,
9355,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
15009,
25,
7343,
286,
32373,
286,
32847,
543,
8398,
1276,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
1662,
1174,
307,
19552,
422,
262,
2560,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
69,
9548,
62,
3672,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
1069,
10341,
62,
259,
372,
42942,
796,
284,
62,
2676,
540,
7,
1069,
10341,
8,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
8860,
62,
4871,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
510,
290,
28441,
262,
8860,
1398,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8860,
62,
4871,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
1813,
2134,
318,
407,
257,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
69,
9548,
62,
4871,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
21950,
22810,
460,
11705,
378,
691,
6097,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1662,
705,
90,
15,
92,
6,
1911,
18982,
7,
4906,
7,
69,
9548,
62,
4871,
737,
834,
3672,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
69,
9548,
62,
4871,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6208,
611,
257,
17512,
468,
1541,
587,
5625,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
8860,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
834,
69,
9548,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
69,
9548,
62,
3672,
796,
8860,
62,
4871,
13,
834,
3672,
834,
1343,
366,
22810,
1,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
35045,
5039,
262,
1398,
986,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
3672,
796,
2116,
13,
834,
69,
9548,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
259,
372,
270,
62,
4993,
8116,
7,
944,
13,
834,
1069,
10341,
62,
259,
372,
42942,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
271,
62,
12215,
10565,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
785,
16838,
796,
6407,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9938,
869,
10146,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
42800,
78,
62,
40406,
62,
47423,
7,
69,
9548,
62,
4871,
11,
4732,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
42800,
78,
62,
40406,
62,
3245,
62,
47423,
7,
69,
9548,
62,
4871,
11,
4732,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
8860,
4732,
287,
663,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
69,
9548,
62,
4871,
11,
38491,
13,
4061,
3185,
46,
62,
37,
10659,
15513,
62,
10943,
32541,
11,
4732,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
262,
6608,
651,
353,
290,
900,
353,
611,
2622,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4732,
13,
48310,
62,
25747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8860,
62,
4871,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
4805,
31054,
9936,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
38491,
13,
4061,
3185,
46,
62,
18851,
5781,
62,
12564,
5777,
10426,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8860,
62,
4871,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
4805,
31054,
9936,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
38491,
13,
4061,
3185,
46,
62,
28480,
5781,
62,
12564,
5777,
10426,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
35045,
1741,
1541,
5625,
25,
466,
2147,
517,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
18224,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36521,
82,
468,
1541,
587,
25036,
351,
262,
1438,
705,
4,
82,
30827,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33311,
262,
1468,
1438,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
69,
9548,
62,
4871,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
8860,
62,
4871,
628,
198,
4871,
5573,
10565,
22810,
7,
21950,
22810,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
11705,
1352,
318,
257,
43135,
286,
262,
1058,
4871,
25,
63,
93,
21950,
22810,
63,
25,
340,
198,
220,
220,
220,
18178,
262,
976,
7159,
290,
5679,
262,
976,
3896,
11,
475,
340,
3578,
691,
198,
220,
220,
220,
530,
4554,
286,
7515,
422,
428,
8860,
379,
257,
640,
13,
628,
220,
220,
220,
1002,
262,
8860,
318,
9113,
12931,
981,
1194,
1541,
2152,
11,
257,
198,
220,
220,
220,
7559,
11395,
12331,
15506,
481,
307,
4376,
13,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
29974,
10565,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
29974,
10565,
22810,
10786,
1820,
12,
69,
9548,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
8860,
62,
4871,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
510,
290,
28441,
262,
8860,
1398,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8860,
62,
4871,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
1813,
2134,
318,
407,
257,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
35045,
5039,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
8860,
62,
4871,
796,
2208,
7,
29974,
10565,
22810,
11,
2116,
737,
834,
13345,
834,
7,
69,
9548,
62,
4871,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
262,
2060,
1122,
6056,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
69,
9548,
62,
4871,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
271,
62,
12215,
10565,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8860,
62,
4871,
628,
198,
2,
16529,
26171,
628,
198,
4871,
14161,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
21746,
15506,
11705,
1352,
15738,
257,
7515,
4554,
3119,
13,
198,
220,
220,
220,
317,
3119,
460,
307,
973,
284,
17425,
262,
7515,
379,
9113,
3920,
640,
290,
198,
220,
220,
220,
284,
15651,
262,
1181,
286,
257,
7515,
13,
198,
220,
220,
220,
5740,
326,
7515,
6608,
389,
7362,
287,
262,
6608,
286,
262,
198,
220,
220,
220,
2594,
340,
34134,
351,
262,
1058,
4871,
25,
63,
15946,
1460,
63,
11705,
1352,
13,
628,
220,
220,
220,
1002,
645,
4238,
1988,
318,
1813,
287,
262,
11705,
1352,
11,
262,
1988,
8574,
287,
262,
198,
220,
220,
220,
25077,
2214,
287,
262,
7559,
834,
15003,
834,
3419,
15506,
2446,
481,
307,
973,
13,
628,
220,
220,
220,
11485,
6509,
3712,
554,
11361,
362,
11,
340,
318,
2672,
326,
262,
7515,
1398,
10639,
896,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
15252,
15506,
329,
6608,
284,
670,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
4805,
31054,
9936,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21746,
10786,
62,
41484,
3256,
705,
11246,
13,
41484,
3256,
5433,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
944,
13557,
41484,
8,
220,
1303,
12578,
82,
5433,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
6608,
286,
262,
2594,
2810,
416,
428,
7515,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4554,
561,
307,
6153,
1141,
428,
8333,
341,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
41484,
796,
1802,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
4805,
31054,
9936,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2214,
11,
1438,
28,
14202,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
3119,
2214,
287,
262,
1398,
357,
5171,
470,
307,
7559,
14202,
15506,
4249,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6565,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1438,
25,
383,
3119,
1438,
357,
361,
7559,
14202,
15506,
11,
428,
481,
307,
262,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1988,
25,
383,
3119,
1988,
357,
15506,
14202,
15506,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
17665,
4578,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1002,
262,
1438,
393,
262,
1438,
318,
7559,
14202,
15506,
393,
6565,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7663,
19648,
1332,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
62,
8841,
7,
3245,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
15878,
1438,
1276,
307,
257,
4731,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
2214,
796,
2214,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2214,
393,
366,
366,
287,
2214,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40613,
393,
12515,
3119,
2214,
1438,
705,
90,
15,
92,
6,
1911,
18982,
7,
3245,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6530,
19648,
1332,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
62,
8841,
7,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
21746,
1438,
1276,
307,
257,
4731,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
1438,
13,
36311,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1400,
1438,
1813,
25,
779,
262,
2214,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
796,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3672,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
8367,
796,
1988,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
3119,
284,
262,
1398,
9736,
3185,
46,
6608,
2214,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
262,
2214,
611,
2622,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
565,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
21746,
460,
11705,
378,
691,
6097,
11,
407,
705,
90,
15,
92,
6,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
565,
8101,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2141,
2147,
611,
262,
1398,
468,
1541,
587,
25036,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
21746,
25,
27511,
25036,
1398,
25,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
565,
8101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
3119,
287,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
48310,
58,
944,
13557,
3672,
60,
796,
2116,
13557,
8367,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
22669,
262,
2214,
284,
262,
3119,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
48310,
62,
25747,
58,
944,
13557,
3245,
60,
796,
2116,
13557,
3672,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2940,
262,
21360,
287,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
2617,
62,
30281,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
6045,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
257,
3119,
287,
262,
1398,
13,
383,
3119,
481,
869,
281,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1241,
651,
353,
1220,
900,
353,
11,
25077,
416,
9736,
3185,
46,
706,
262,
4554,
6282,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
42800,
78,
62,
4871,
62,
3245,
62,
26745,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3672,
11,
2116,
13557,
8367,
11,
38491,
13,
4061,
3185,
46,
62,
4805,
31054,
9936,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
4871,
20458,
21746,
7,
21746,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
41691,
21746,
15506,
11705,
1352,
15738,
257,
7515,
3119,
543,
1839,
470,
198,
220,
220,
220,
307,
7424,
287,
262,
6608,
286,
262,
2594,
340,
3769,
13,
198,
220,
220,
220,
770,
1611,
286,
3119,
318,
635,
407,
9857,
1262,
9736,
3185,
46,
14580,
198,
220,
220,
220,
5050,
13,
628,
220,
220,
220,
770,
11705,
1352,
468,
262,
976,
21360,
11,
18178,
262,
976,
10007,
290,
198,
220,
220,
220,
5679,
262,
976,
3173,
355,
262,
1058,
4871,
25,
63,
21746,
63,
11705,
1352,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
4805,
31054,
9936,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
41691,
21746,
10786,
62,
28712,
3256,
705,
11246,
13,
28712,
3256,
366,
21078,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
944,
13557,
28712,
8,
220,
1303,
314,
892,
356,
821,
4814,
262,
966,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4809,
6608,
1839,
470,
307,
5676,
416,
428,
1487,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
28712,
796,
366,
17354,
23725,
1,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
3119,
284,
262,
1398,
9736,
3185,
46,
6608,
2214,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
262,
2214,
611,
2622,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
565,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
41691,
21746,
460,
11705,
378,
691,
6097,
11,
407,
705,
90,
15,
92,
6,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
565,
8101,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2141,
2147,
611,
262,
1398,
468,
1541,
587,
25036,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
41691,
21746,
25,
27511,
25036,
1398,
25,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
565,
8101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
3119,
287,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
30342,
62,
48310,
58,
944,
13557,
3672,
60,
796,
2116,
13557,
8367,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2940,
262,
21360,
287,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
13,
2617,
62,
30281,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
6045,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
257,
3119,
287,
262,
1398,
13,
383,
3119,
481,
869,
281,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1241,
651,
353,
1220,
900,
353,
11,
25077,
416,
9736,
3185,
46,
706,
262,
4554,
6282,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
42800,
78,
62,
4871,
62,
3245,
62,
26745,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3672,
11,
2116,
13557,
8367,
11,
38491,
13,
4061,
3185,
46,
62,
39,
2389,
41819,
62,
4805,
31054,
9936,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4299,
4808,
1136,
62,
16684,
6637,
7,
16684,
6637,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1769,
262,
1351,
286,
13042,
11188,
284,
262,
1813,
20640,
628,
220,
220,
220,
1058,
17143,
20640,
25,
317,
4731,
11,
257,
1398,
393,
257,
1351,
286,
20640,
198,
220,
220,
220,
1058,
7783,
25,
317,
1351,
286,
13042,
198,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
17665,
20855,
1043,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
20640,
393,
20640,
318,
2134,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
2949,
20640,
1813,
4943,
198,
220,
220,
220,
1288,
361,
10104,
13,
271,
4871,
7,
16684,
6637,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
47081,
13,
19108,
62,
33365,
24212,
62,
10917,
1847,
20608,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
25064,
13,
9641,
62,
10951,
1279,
357,
18,
11,
513,
11,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
46181,
1431,
1438,
12971,
4433,
11361,
513,
13,
18,
10,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
1438,
286,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
20640,
13,
834,
21412,
834,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
16684,
6637,
13,
834,
13255,
3672,
834,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45144,
15,
27422,
90,
16,
92,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20640,
13,
834,
21412,
834,
11,
20640,
13,
834,
13255,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
14843,
4069,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
16684,
6637,
13,
834,
3672,
834,
60,
198,
220,
220,
220,
1288,
361,
318,
62,
8841,
7,
16684,
6637,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18291,
2649,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
20640,
796,
20640,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
20640,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
40613,
20855,
1813,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
16684,
6637,
60,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
16684,
6637,
11,
357,
4868,
11,
46545,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7343,
1813,
25,
3487,
1096,
663,
2695,
198,
220,
220,
220,
220,
220,
220,
220,
2482,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
20855,
287,
20640,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
13,
2302,
437,
28264,
1136,
62,
16684,
6637,
7,
16684,
2649,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2482,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3118,
38788,
20640,
2099,
1058,
1391,
15,
92,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
16684,
6637,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
47081,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
15946,
1460,
15506,
11705,
1352,
15738,
257,
2139,
284,
307,
7362,
416,
7515,
198,
220,
220,
220,
10245,
13,
198,
220,
220,
220,
770,
2139,
481,
307,
6823,
357,
23504,
8,
287,
262,
12903,
844,
2139,
20478,
198,
220,
220,
220,
981,
262,
7515,
318,
4938,
290,
663,
2139,
10444,
318,
900,
284,
7559,
17821,
15506,
13,
628,
220,
220,
220,
1439,
262,
6608,
286,
262,
7515,
5447,
351,
262,
1058,
4871,
25,
63,
21746,
63,
198,
220,
220,
220,
11705,
1352,
481,
307,
7424,
287,
262,
2139,
6608,
13,
628,
220,
220,
220,
383,
10444,
318,
281,
25077,
2214,
357,
64,
11361,
1635,
26745,
28104,
326,
1276,
3994,
198,
220,
220,
220,
257,
25131,
13,
198,
220,
220,
220,
2750,
4277,
11,
262,
10444,
318,
900,
284,
7559,
17821,
15506,
11,
1635,
72,
13,
68,
15885,
262,
2139,
481,
307,
198,
220,
220,
220,
2810,
416,
262,
7515,
618,
340,
318,
31031,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
41283,
42538,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
41484,
13,
40290,
1,
481,
307,
257,
3119,
286,
262,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21746,
7203,
62,
41484,
1600,
366,
41484,
13,
40290,
1600,
366,
15496,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7203,
31373,
13,
6894,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
7515,
4554,
481,
7715,
257,
366,
31373,
13,
6894,
1,
2139,
355,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
890,
355,
340,
318,
4938,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
12589,
7,
944,
11,
1438,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
944,
13557,
41484,
11,
1438,
11,
366,
2474,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
2139,
481,
2148,
3294,
20640,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7,
14692,
31373,
13,
6894,
1600,
366,
31373,
13,
6894,
13,
2302,
1631,
33116,
45434,
21370,
66,
62,
32109,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7203,
42503,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
12589,
7,
944,
11,
1438,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
46333,
286,
23748,
13,
6894,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
15496,
553,
11,
1438,
11,
366,
2474,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
512,
22304,
7,
944,
11,
1438,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
2396,
890,
553,
11,
1438,
11,
366,
2474,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
21394,
262,
10444,
284,
10352,
25,
262,
2139,
1839,
470,
307,
3199,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7471,
1566,
262,
10444,
318,
900,
736,
284,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21370,
66,
62,
32109,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
13259,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
46333,
286,
262,
366,
42503,
1,
2139,
25,
7715,
262,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
757,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21370,
66,
62,
32109,
796,
6407,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
41283,
42538,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
23210,
62,
33365,
24212,
62,
10917,
1847,
20608,
796,
10352,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
9683,
82,
262,
20411,
284,
7716,
257,
20855,
422,
257,
1398,
13,
198,
220,
220,
220,
317,
1988,
286,
10352,
3544,
11593,
3672,
834,
357,
1455,
1590,
828,
981,
6407,
13536,
198,
220,
220,
220,
11593,
3672,
834,
1343,
705,
2637,
1343,
11593,
13255,
3672,
834,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
20640,
11,
10444,
28,
14202,
11,
8860,
28,
25101,
11,
14879,
28,
25101,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20640,
25,
317,
1351,
286,
2810,
20855,
7,
82,
828,
393,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2060,
2810,
20855,
357,
5171,
470,
307,
6565,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10444,
25,
383,
1438,
286,
262,
2139,
10444,
1398,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
25968,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8860,
25,
1002,
6407,
11,
428,
2139,
318,
257,
2139,
8860,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
25101,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
14879,
25,
1002,
6407,
11,
428,
2139,
318,
14879,
2139,
8860,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
25101,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1002,
262,
20640,
389,
12515,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10444,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
62,
8841,
7,
36500,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
22130,
1438,
1276,
307,
257,
4731,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10444,
796,
10444,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10444,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
33523,
10444,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7203,
40613,
10444,
1438,
1813,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10444,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
366,
366,
287,
10444,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
22130,
1438,
4909,
9029,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
16684,
6637,
796,
20640,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
36500,
796,
10444,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
271,
62,
69,
9548,
796,
8860,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
271,
62,
38124,
796,
14879,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
2810,
2139,
1321,
284,
262,
1398,
4732,
9736,
3185,
46,
2214,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
262,
2214,
611,
2622,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
393,
611,
262,
2139,
8860,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5050,
389,
4814,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
565,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
15946,
1460,
460,
11705,
378,
691,
6097,
11,
407,
705,
90,
15,
92,
6,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
565,
8101,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
8860,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2141,
2147,
611,
262,
1398,
468,
1541,
587,
25036,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
15946,
1460,
25,
27511,
25036,
1398,
25,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
565,
8101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
24390,
14184,
16856,
357,
4360,
1394,
262,
1502,
8,
198,
220,
220,
220,
220,
220,
220,
220,
29083,
62,
4125,
6359,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
834,
16684,
6637,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29083,
62,
4125,
6359,
796,
4808,
1136,
62,
16684,
6637,
7,
565,
8101,
13,
834,
65,
1386,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
24390,
14184,
16856,
357,
4360,
1394,
262,
1502,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25274,
796,
4808,
1136,
62,
16684,
6637,
7,
944,
13,
834,
16684,
6637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1020,
287,
25274,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1020,
407,
287,
29083,
62,
4125,
6359,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29083,
62,
4125,
6359,
13,
33295,
7,
16684,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
2139,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
4732,
13,
2617,
62,
30281,
62,
12286,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
685,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29083,
62,
4125,
6359,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
36500,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
271,
62,
69,
9548,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
271,
62,
38124,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
834,
36500,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
257,
3119,
287,
262,
1398,
13,
383,
3119,
481,
869,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4554,
1241,
651,
353,
1220,
900,
353,
11,
25077,
416,
9736,
3185,
46,
706,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4554,
6282,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
36500,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
42800,
78,
62,
4871,
62,
3245,
62,
26745,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
36500,
11,
6407,
11,
38491,
13,
4061,
3185,
46,
62,
10943,
5446,
46,
3069,
1137,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
262,
2003,
10444,
5050,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
10943,
5446,
46,
3069,
1137,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
38491,
13,
4061,
3185,
46,
62,
18851,
5781,
62,
12564,
5777,
10426,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
10943,
5446,
46,
3069,
1137,
62,
47,
31688,
10426,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
38491,
13,
4061,
3185,
46,
62,
28480,
5781,
62,
12564,
5777,
10426,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
834,
271,
62,
69,
9548,
393,
2116,
13,
834,
271,
62,
38124,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
48987,
326,
262,
2139,
8860,
5050,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
13,
1136,
62,
15271,
11,
366,
65,
31249,
1600,
366,
15271,
62,
2301,
33397,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
13,
403,
1136,
62,
15271,
11,
366,
65,
31249,
1600,
366,
15271,
62,
2301,
33397,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
355,
409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16177,
17590,
1276,
2148,
281,
23884,
2446,
1911,
18982,
7,
1069,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
834,
271,
62,
38124,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
48987,
326,
262,
14879,
2139,
8860,
5050,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
13,
403,
1136,
62,
15271,
62,
39098,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
65,
31249,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15271,
62,
2301,
33397,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15271,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
355,
409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19703,
8690,
4809,
17590,
1276,
2148,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
272,
23884,
2446,
1911,
18982,
7,
1069,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4871,
26848,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
39618,
15506,
11705,
1352,
15738,
262,
9079,
286,
257,
2139,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
10786,
62,
31373,
3256,
705,
31373,
13,
6894,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
10786,
62,
31373,
3256,
705,
31373,
13,
6894,
3256,
19406,
28,
17821,
11,
11902,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
11639,
7,
16129,
28,
8310,
8,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20855,
11,
198,
220,
220,
220,
220,
220,
220,
220,
19406,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
11902,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7103,
62,
260,
21653,
28,
25101,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
2214,
810,
284,
8677,
262,
9079,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20855,
25,
383,
20855,
286,
262,
2139,
284,
8677,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
19406,
25,
1002,
6407,
11,
8677,
82,
257,
1351,
286,
2594,
11,
2073,
262,
717,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12336,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
11902,
25,
1002,
6407,
11,
428,
16954,
318,
11902,
25,
262,
7515,
460,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
307,
4938,
1231,
340,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1020,
62,
24455,
25,
1052,
27178,
2969,
12405,
284,
8106,
25077,
2594,
1864,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
511,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
7103,
62,
260,
21653,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
6407,
11,
262,
7515,
1839,
470,
307,
12515,
515,
788,
302,
12,
12102,
515,
611,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12336,
2139,
318,
1695,
618,
262,
25077,
20203,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
555,
7784,
628,
220,
220,
220,
220,
220,
220,
220,
383,
7559,
3245,
15506,
290,
7559,
16684,
2649,
15506,
10007,
389,
13677,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2750,
4277,
11,
257,
9079,
318,
6159,
13262,
515,
4249,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
357,
16885,
389,
900,
284,
7559,
25101,
15506,
8,
290,
645,
20855,
8106,
318,
973,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
3465,
3712,
4619,
9736,
3185,
46,
657,
13,
20,
13,
19,
11,
691,
530,
20855,
460,
307,
1813,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2214,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
40613,
2214,
1438,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
62,
8841,
7,
3245,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
464,
2214,
1438,
1276,
307,
257,
4731,
11,
407,
1391,
15,
92,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
3245,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
366,
366,
287,
2214,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
15878,
1438,
460,
470,
3994,
9029,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
796,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1355,
1654,
326,
612,
318,
691,
530,
2672,
20855,
198,
220,
220,
220,
220,
220,
220,
220,
20640,
796,
4808,
1136,
62,
16684,
6637,
7,
16684,
2649,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
41684,
62,
4125,
6359,
796,
18896,
7,
16684,
6637,
8,
1875,
352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
262,
9079,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
8897,
24615,
796,
9394,
24615,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20640,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19406,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11902,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7103,
62,
260,
21653,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
9079,
284,
262,
1398,
9736,
3185,
46,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
4871,
7,
565,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
90,
15,
92,
460,
11705,
378,
691,
6097,
11,
407,
705,
90,
16,
92,
6,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
944,
737,
834,
3672,
834,
11,
2099,
7,
565,
8101,
737,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
41684,
62,
4125,
6359,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36521,
82,
25,
5514,
530,
20855,
460,
307,
2672,
25,
4064,
82,
4613,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
944,
737,
834,
3672,
834,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
13,
834,
3672,
834,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
3119,
287,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2141,
2147,
611,
262,
1398,
468,
1541,
587,
25036,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
4,
82,
25,
27511,
25036,
1398,
25,
4064,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
944,
737,
834,
3672,
834,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
24396,
62,
11213,
7,
565,
8101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9079,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
4732,
13,
2617,
62,
30281,
62,
12286,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
58,
944,
13557,
3245,
60,
796,
2116,
13557,
8897,
24615,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
752,
262,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
565,
8101,
11,
2116,
13557,
3245,
11,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4871,
26848,
19852,
22417,
7,
39618,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
39618,
19852,
22417,
15506,
11705,
1352,
6529,
588,
1058,
4871,
25,
63,
39618,
47671,
475,
663,
198,
220,
220,
220,
27178,
2969,
8106,
32366,
6068,
82,
284,
262,
6608,
286,
428,
7515,
13,
628,
220,
220,
220,
383,
11705,
1352,
18178,
257,
7515,
3119,
1994,
1262,
262,
7559,
90,
2539,
92,
15506,
5794,
198,
220,
220,
220,
287,
262,
27178,
2969,
8106,
4731,
13,
770,
46076,
481,
307,
6928,
416,
262,
198,
220,
220,
220,
3119,
1988,
11,
290,
481,
262,
8106,
481,
307,
6153,
1123,
640,
262,
3119,
198,
220,
220,
220,
1988,
2458,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
53,
1503,
3539,
19146,
62,
46700,
5781,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21746,
7203,
62,
17204,
1600,
366,
17204,
1600,
366,
8310,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
19852,
22417,
7203,
62,
31373,
1600,
366,
31373,
13,
6894,
1600,
11902,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
2625,
7,
16129,
34758,
17204,
30072,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
20203,
318,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
31373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
15161,
366,
17204,
1,
4554,
3119,
318,
900,
284,
366,
8310,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
293,
337,
14378,
4943,
220,
1303,
7979,
73,
454,
443,
337,
14378,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9794,
262,
3119,
284,
423,
1194,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
17204,
796,
366,
268,
1,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
460,
869,
262,
649,
2139,
3393,
355,
262,
20203,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
11902,
357,
3919,
2526,
286,
12515,
341,
828,
475,
356,
423,
284,
2198,
611,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
884,
257,
2139,
7160,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
31373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
10603,
4943,
220,
1303,
18435,
2159,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
53,
1503,
3539,
19146,
62,
46700,
5781,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
198,
2,
16529,
26171,
628,
198,
4871,
26848,
13014,
7,
39618,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
39618,
13014,
15506,
11705,
1352,
6529,
588,
1058,
4871,
25,
63,
39618,
47671,
475,
340,
198,
220,
220,
220,
1464,
8677,
82,
262,
2139,
351,
262,
1266,
4279,
357,
15506,
15271,
13,
28405,
15506,
198,
220,
220,
220,
3119,
737,
628,
220,
220,
220,
12101,
749,
286,
262,
584,
9079,
11705,
2024,
11,
7559,
31,
39618,
13014,
15506,
1595,
470,
198,
220,
220,
220,
1104,
262,
16954,
286,
257,
1351,
286,
2594,
357,
15506,
9460,
49373,
15506,
8,
355,
691,
262,
198,
220,
220,
220,
1266,
2139,
318,
25077,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
33,
6465,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
13014,
10786,
62,
31373,
3256,
705,
31373,
13,
6894,
3256,
7103,
62,
260,
21653,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
36080,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3274,
869,
11,
351,
262,
1459,
1266,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
10603,
4943,
220,
1303,
20842,
366,
15496,
11,
2159,
2474,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
13742,
4325,
11,
262,
4279,
286,
366,
31373,
13,
6894,
1,
2594,
2458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
1672,
11,
36693,
3421,
290,
4141,
783,
468,
257,
2440,
4279,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
13,
42832,
7,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5498,
869,
1231,
4953,
329,
302,
12,
12102,
341,
355,
356,
423,
900,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7103,
62,
260,
21653,
28,
17821,
329,
428,
1672,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
10603,
4943,
220,
1303,
20842,
366,
20682,
73,
454,
11,
2159,
220,
2474,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
460,
635,
779,
257,
20855,
8106,
393,
787,
262,
2139,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
13014,
10786,
62,
31373,
3256,
705,
31373,
13,
6894,
3256,
11902,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
11639,
7,
16129,
28,
8310,
8,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
31373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3274,
869,
11,
351,
262,
1459,
1266,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
10603,
4943,
220,
1303,
20842,
366,
15496,
11,
2159,
2474,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
33,
6465,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20855,
11,
198,
220,
220,
220,
220,
220,
220,
220,
11902,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7103,
62,
260,
21653,
28,
17821,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
25077,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20855,
25,
383,
25077,
2139,
20855,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
11902,
25,
1002,
6407,
11,
428,
16954,
318,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1020,
62,
24455,
25,
1052,
27178,
2969,
12405,
284,
8106,
25077,
2594,
2402,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
511,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
7103,
62,
260,
21653,
25,
1002,
6407,
11,
262,
7515,
1839,
470,
307,
12515,
515,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
302,
12,
12102,
515,
611,
257,
12336,
2139,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1695,
618,
262,
25077,
20203,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
555,
7784,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
317,
11507,
468,
281,
12515,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1052,
4049,
5091,
981,
32096,
262,
8106,
393,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4578,
318,
11491,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
39618,
13014,
11,
2116,
737,
834,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
20855,
11,
10352,
11,
11902,
11,
1020,
62,
24455,
11,
7103,
62,
260,
21653,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
2,
16529,
26171,
628,
198,
4871,
26848,
13912,
7,
39618,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
39618,
13912,
15506,
11705,
1352,
15738,
257,
9079,
326,
1276,
307,
25077,
198,
220,
220,
220,
287,
257,
22155,
11,
1912,
319,
257,
2139,
3119,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
33767,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
13912,
7203,
62,
31373,
1600,
366,
31373,
13,
6894,
1600,
366,
16129,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
14692,
268,
1,
4083,
31373,
7203,
10603,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
14692,
8310,
1,
4083,
31373,
7203,
293,
337,
14378,
4943,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
33767,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20855,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1249,
62,
23108,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
19406,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
11902,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
28,
14202,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
25077,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20855,
25,
383,
25077,
2139,
20855,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1994,
25,
383,
1438,
286,
262,
2139,
3119,
284,
779,
355,
257,
22155,
1994,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1249,
62,
23108,
25,
1002,
6407,
11,
635,
8677,
82,
2594,
351,
262,
3119,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
900,
284,
7559,
14202,
15506,
393,
4814,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
19406,
25,
1002,
6407,
11,
8677,
82,
257,
1351,
286,
2594,
351,
262,
976,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3119,
1988,
11,
2073,
8677,
82,
691,
530,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
11085,
1043,
8,
583,
3119,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
11902,
25,
1002,
6407,
11,
428,
16954,
318,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1020,
62,
24455,
25,
1052,
27178,
2969,
12405,
284,
8106,
25077,
2594,
2402,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
511,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
317,
11507,
468,
281,
12515,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1052,
4049,
5091,
981,
32096,
262,
8106,
393,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4578,
318,
11491,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
39618,
13912,
11,
2116,
737,
834,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
20855,
11,
19406,
11,
11902,
11,
1020,
62,
24455,
11,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
1994,
318,
4938,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1994,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
2949,
3119,
1994,
1813,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9701,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2539,
796,
1994,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12154,
62,
23108,
796,
1249,
62,
23108,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
9079,
284,
262,
1398,
9736,
3185,
46,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
796,
2208,
7,
39618,
13912,
11,
2116,
737,
834,
13345,
834,
7,
565,
8101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
3119,
287,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9079,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
4732,
13,
2617,
62,
30281,
62,
12286,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
58,
944,
13557,
3245,
60,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
8897,
24615,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2539,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12154,
62,
23108,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4871,
26848,
30507,
2701,
7,
39618,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
39618,
30507,
2701,
15506,
11705,
1352,
15738,
257,
9079,
326,
481,
307,
198,
220,
220,
220,
25077,
355,
257,
2060,
2134,
11,
11816,
262,
10238,
4814,
20203,
393,
198,
220,
220,
220,
1448,
286,
2594,
12336,
262,
9079,
13,
628,
220,
220,
220,
12101,
1058,
4871,
25,
63,
39618,
47671,
262,
11507,
7559,
25968,
15506,
318,
900,
284,
7559,
17821,
15506,
416,
198,
220,
220,
220,
4277,
13,
4418,
11,
262,
7559,
9460,
49373,
15506,
4578,
318,
407,
1695,
11,
262,
9172,
198,
220,
220,
220,
286,
428,
21360,
318,
284,
7025,
284,
477,
12336,
2594,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
11473,
3727,
44647,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
39618,
30507,
2701,
7203,
62,
1662,
7483,
1600,
366,
11246,
13,
1662,
7483,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
12854,
7,
944,
11,
3275,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
460,
779,
262,
2139,
355,
257,
2060,
2134,
11,
1231,
2263,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1337,
286,
262,
1271,
286,
2594,
12336,
674,
9079,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
1662,
7483,
13,
1662,
1958,
7203,
15496,
11,
995,
4943,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
2200,
10917,
4663,
1546,
62,
11473,
3727,
44647,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20855,
11,
198,
220,
220,
220,
220,
220,
220,
220,
11902,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
62,
24455,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
285,
18137,
62,
1069,
11755,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
12854,
62,
1069,
11755,
28,
17821,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
25077,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20855,
25,
383,
25077,
2139,
20855,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
11902,
25,
1002,
6407,
11,
428,
16954,
318,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1020,
62,
24455,
25,
1052,
27178,
2969,
12405,
284,
8106,
25077,
2594,
2402,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
511,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
285,
18137,
62,
1069,
11755,
25,
1002,
6407,
11,
13269,
4376,
416,
10238,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2594,
389,
407,
8928,
515,
357,
17821,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12854,
62,
1069,
11755,
25,
1002,
6407,
11,
12854,
262,
13269,
326,
389,
27563,
992,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
17821,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
317,
11507,
468,
281,
12515,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1052,
4049,
5091,
981,
32096,
262,
8106,
393,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4578,
318,
11491,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
40731,
9701,
25,
19406,
290,
7103,
3405,
521,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
39618,
30507,
2701,
11,
2116,
737,
834,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
20855,
11,
6407,
11,
11902,
11,
1020,
62,
24455,
11,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9701,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
76,
18137,
62,
1069,
796,
285,
18137,
62,
1069,
11755,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40546,
62,
1069,
796,
12854,
62,
1069,
11755,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
9079,
284,
262,
1398,
9736,
3185,
46,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
796,
2208,
7,
39618,
30507,
2701,
11,
2116,
737,
834,
13345,
834,
7,
565,
8101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
262,
3119,
287,
262,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9079,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
4732,
13,
2617,
62,
30281,
62,
12286,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
58,
944,
13557,
3245,
60,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
8897,
24615,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
76,
18137,
62,
1069,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40546,
62,
1069,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4871,
5825,
35738,
7,
39618,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
12966,
35738,
15506,
11705,
1352,
15738,
257,
2060,
7103,
3405,
521,
9079,
198,
220,
220,
220,
351,
257,
11542,
640,
618,
262,
25077,
2139,
27934,
13,
628,
220,
220,
220,
770,
11705,
1352,
6529,
588,
1058,
4871,
25,
63,
39618,
63,
2845,
340,
1595,
470,
1104,
262,
198,
220,
220,
220,
7559,
320,
13857,
62,
260,
21653,
15506,
357,
12072,
284,
7559,
17821,
15506,
8,
4249,
7559,
9460,
49373,
15506,
7159,
13,
628,
220,
220,
220,
1649,
262,
25077,
2139,
27934,
11,
262,
7515,
1839,
470,
307,
12515,
515,
198,
220,
220,
220,
878,
262,
1813,
26827,
13,
198,
220,
220,
220,
1002,
257,
12336,
318,
1043,
11,
340,
318,
25077,
287,
12,
5372,
290,
262,
7515,
4554,
198,
220,
220,
220,
4477,
663,
4560,
13,
198,
220,
220,
220,
1002,
262,
2139,
318,
973,
981,
645,
2139,
318,
1695,
11,
262,
869,
318,
1234,
287,
198,
220,
220,
220,
1745,
290,
7021,
1566,
257,
649,
2139,
318,
25077,
393,
1566,
262,
26827,
318,
198,
220,
220,
220,
4251,
13,
554,
262,
6846,
1339,
11,
257,
7559,
12966,
35738,
16922,
15506,
318,
4376,
13,
628,
220,
220,
220,
1058,
25060,
4522,
25,
1058,
9078,
25,
9979,
25,
63,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
13,
39,
6981,
39878,
62,
51,
39494,
1581,
1847,
63,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
12966,
35738,
10786,
62,
31373,
3256,
705,
31373,
13,
6894,
3256,
26827,
28,
20,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
2409,
7,
15252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
869,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
262,
2139,
318,
25077,
25,
428,
869,
318,
7103,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
262,
2139,
468,
3750,
1497,
11,
428,
869,
481,
1745,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
642,
4201,
357,
48678,
11507,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
532,
611,
257,
2139,
318,
25077,
1141,
262,
11542,
2278,
11,
262,
869,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
481,
307,
1760,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
31373,
13,
70,
2871,
7203,
10603,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
16176,
844,
13,
42800,
78,
13,
4993,
8116,
13,
11498,
35738,
13,
12966,
35738,
16922,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
532,
2073,
11,
257,
5825,
35738,
16922,
318,
4376,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
16177,
12120,
4943,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
367,
6981,
39878,
62,
2389,
796,
38491,
13,
39,
6981,
39878,
62,
51,
39494,
1581,
1847,
198,
220,
220,
220,
37227,
4522,
286,
262,
21360,
17839,
416,
428,
11705,
1352,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
2214,
11,
20855,
11,
11902,
28,
25101,
11,
1020,
62,
24455,
28,
14202,
11,
26827,
28,
940,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
25077,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20855,
25,
383,
25077,
2139,
20855,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
11902,
25,
1002,
6407,
11,
428,
16954,
318,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1020,
62,
24455,
25,
1052,
27178,
2969,
12405,
284,
8106,
25077,
2594,
2402,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
511,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
26827,
25,
5825,
35738,
26827,
11,
287,
4201,
357,
27238,
307,
3744,
621,
657,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
317,
11507,
468,
281,
12515,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
11052,
12331,
25,
1052,
4049,
5091,
981,
32096,
262,
8106,
393,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4578,
318,
11491,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
12966,
35738,
11,
2116,
737,
834,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
11,
20855,
11,
10352,
11,
11902,
11,
1020,
62,
24455,
11,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
26827,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
6404,
1362,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
12966,
35738,
26827,
1276,
307,
3744,
621,
657,
13,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12814,
4277,
1988,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
48678,
796,
838,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
48678,
796,
26827,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
537,
8101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34333,
262,
9079,
284,
262,
1398,
9736,
3185,
46,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
537,
8101,
25,
383,
1398,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
24789,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
1002,
1635,
565,
8101,
9,
318,
407,
257,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
537,
8101,
796,
2208,
7,
12966,
35738,
11,
2116,
737,
834,
13345,
834,
7,
565,
8101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9363,
262,
9079,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
796,
651,
62,
69,
9548,
62,
22866,
7,
565,
8101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4732,
13,
785,
16838,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
4732,
13,
2617,
62,
30281,
62,
12286,
7,
944,
13,
39,
6981,
39878,
62,
2389,
11,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
58,
944,
13557,
3245,
60,
796,
357,
944,
13557,
8897,
24615,
11,
2116,
13557,
48678,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
8101,
628,
198,
2,
16529,
26171,
628,
198,
4871,
41211,
15878,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
36180,
15878,
15506,
23838,
11705,
1352,
318,
1444,
618,
257,
7515,
318,
5421,
198,
220,
220,
220,
284,
257,
20203,
11,
25077,
287,
262,
1813,
2214,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
2214,
810,
262,
2139,
468,
587,
198,
220,
220,
220,
25077,
11,
262,
2139,
2134,
290,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
355,
7159,
13,
628,
220,
220,
220,
1002,
262,
2139,
318,
257,
2672,
530,
11,
262,
11007,
23838,
318,
1444,
12429,
19052,
1174,
198,
220,
220,
220,
262,
7515,
318,
31031,
13,
198,
220,
220,
220,
383,
11007,
2214,
23838,
318,
1444,
12429,
8499,
1174,
262,
3298,
11007,
2446,
13,
628,
220,
220,
220,
383,
2139,
4941,
460,
307,
8574,
1635,
361,
340,
318,
2716,
319,
555,
21653,
24620,
628,
220,
220,
220,
1475,
11755,
4376,
416,
257,
11007,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
36180,
15878,
7203,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
11007,
62,
24396,
7,
944,
11,
2214,
11,
2139,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
25,
7663,
22881,
262,
20203,
318,
25077,
5855,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
25077,
2139,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
25077,
2139,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2214,
11,
611,
62,
12102,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
2214,
3917,
284,
262,
12765,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
611,
62,
12102,
25,
1002,
6407,
11,
869,
262,
24789,
2446,
691,
618,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7515,
318,
4938,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
796,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
361,
62,
12102,
796,
611,
62,
12102,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2446,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28090,
262,
366,
3245,
23838,
1,
1351,
329,
428,
2446,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2446,
25,
11789,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4280,
273,
515,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
81,
28399,
7,
24396,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
36180,
15878,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
3245,
1600,
366,
15271,
1600,
366,
15271,
62,
35790,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
9979,
1187,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
33,
12115,
62,
44603,
11,
2116,
13557,
3245,
11,
2116,
13557,
361,
62,
12102,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2446,
628,
198,
4871,
10133,
15878,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
10260,
15878,
15506,
23838,
11705,
1352,
318,
1444,
618,
262,
6608,
286,
198,
220,
220,
220,
257,
2139,
25077,
287,
262,
1813,
2214,
423,
587,
6153,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
2214,
810,
262,
2139,
468,
587,
198,
220,
220,
220,
25077,
11,
262,
2139,
2134,
11,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
290,
663,
2180,
6608,
355,
198,
220,
220,
220,
7159,
13,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
4296,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
10260,
15878,
7203,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
4296,
62,
24396,
7,
944,
11,
2139,
11,
2139,
62,
35790,
11,
1468,
62,
48310,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
25,
7663,
22881,
262,
20203,
373,
25077,
5855,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
25077,
2139,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
25077,
2139,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
48310,
25,
383,
2180,
2139,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2214,
11,
611,
62,
12102,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
2214,
3917,
284,
262,
12765,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
611,
62,
12102,
25,
1002,
6407,
11,
869,
262,
24789,
2446,
691,
618,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7515,
318,
4938,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
796,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
361,
62,
12102,
796,
611,
62,
12102,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2446,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28090,
262,
366,
3245,
23838,
1,
1351,
329,
428,
2446,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2446,
25,
11789,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4280,
273,
515,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
81,
28399,
7,
24396,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
3118,
21653,
15878,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
366,
3245,
1600,
366,
15271,
1600,
366,
15271,
62,
35790,
1600,
366,
727,
62,
48310,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
16977,
62,
44603,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
361,
62,
12102,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2446,
628,
198,
4871,
791,
21653,
15878,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
3118,
21653,
15878,
15506,
23838,
11705,
1352,
318,
1444,
618,
281,
25077,
198,
220,
220,
220,
20203,
318,
555,
7784,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
2214,
810,
262,
2139,
468,
587,
198,
220,
220,
220,
25077,
11,
262,
2139,
2134,
11,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
290,
663,
2180,
6608,
355,
198,
220,
220,
220,
7159,
13,
628,
220,
220,
220,
1002,
262,
2139,
318,
257,
2672,
530,
11,
262,
555,
21653,
23838,
318,
1444,
12429,
8499,
1174,
198,
220,
220,
220,
262,
7515,
468,
587,
12515,
515,
13,
198,
220,
220,
220,
383,
555,
21653,
2214,
23838,
318,
1444,
12429,
19052,
1174,
262,
3298,
555,
21653,
2446,
13,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
555,
21653,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3118,
21653,
15878,
7203,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
555,
21653,
62,
24396,
7,
944,
11,
2214,
11,
2139,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
25,
7663,
22881,
262,
20203,
373,
25077,
5855,
62,
31373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
25077,
2139,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
25077,
2139,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2214,
11,
611,
62,
12102,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
25,
383,
2214,
3917,
284,
262,
12765,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
611,
62,
12102,
25,
1002,
6407,
11,
869,
262,
24789,
2446,
691,
618,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7515,
318,
4938,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
796,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
361,
62,
12102,
796,
611,
62,
12102,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2446,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28090,
262,
366,
3245,
23838,
1,
1351,
329,
428,
2446,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2446,
25,
11789,
284,
11705,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4280,
273,
515,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
10104,
13,
271,
81,
28399,
7,
24396,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
3118,
21653,
15878,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
3245,
1600,
366,
15271,
1600,
366,
15271,
62,
35790,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
44603,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
4944,
33,
12115,
62,
44603,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
361,
62,
12102,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2446,
628,
198,
2,
16529,
26171,
628,
198,
4299,
41211,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
36180,
15506,
23838,
11705,
1352,
318,
1444,
618,
257,
7515,
318,
5421,
284,
257,
198,
220,
220,
220,
20203,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
25077,
2139,
2134,
290,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
355,
7159,
13,
628,
220,
220,
220,
1002,
262,
2139,
318,
257,
2672,
530,
11,
262,
11007,
23838,
318,
1444,
12429,
19052,
1174,
198,
220,
220,
220,
262,
7515,
318,
31031,
13,
628,
220,
220,
220,
383,
2139,
4941,
460,
307,
8574,
1635,
361,
340,
318,
2716,
319,
555,
21653,
24620,
628,
220,
220,
220,
1475,
11755,
4376,
416,
257,
11007,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
36180,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
11007,
62,
24396,
7,
944,
11,
2139,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
25077,
2139,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
25077,
2139,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
10104,
13,
271,
81,
28399,
7,
24396,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
36180,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
15271,
1600,
366,
15271,
62,
35790,
4943,
628,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
33,
12115,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
2446,
628,
198,
4299,
10133,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
10260,
15506,
23838,
11705,
1352,
318,
1444,
618,
262,
6608,
286,
281,
198,
220,
220,
220,
25077,
2139,
423,
587,
9518,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
25077,
2139,
2134,
290,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
290,
262,
2180,
6608,
198,
220,
220,
220,
355,
7159,
13,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
4296,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
10260,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
4296,
62,
24396,
7,
944,
11,
2139,
11,
2139,
62,
35790,
11,
1468,
62,
48310,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
25077,
2139,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
25077,
2139,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
48310,
25,
383,
2180,
2139,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
10260,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
366,
15271,
1600,
366,
15271,
62,
35790,
1600,
366,
727,
62,
48310,
1,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
16977,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
2446,
628,
198,
4299,
791,
21653,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
3118,
21653,
15506,
23838,
11705,
1352,
318,
1444,
618,
257,
7515,
20203,
318,
198,
220,
220,
220,
555,
7784,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
25077,
2139,
2134,
290,
663,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
355,
7159,
13,
628,
220,
220,
220,
1002,
262,
2139,
318,
257,
2672,
530,
11,
262,
555,
21653,
23838,
318,
1444,
12429,
8499,
1174,
198,
220,
220,
220,
262,
7515,
468,
587,
12515,
515,
13,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
555,
21653,
23838,
389,
9514,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
39618,
7203,
62,
31373,
1600,
366,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3118,
21653,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
555,
21653,
62,
24396,
7,
944,
11,
2139,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
25,
383,
4271,
25077,
2139,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
6363,
4809,
26687,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
3118,
21653,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
15271,
1600,
366,
15271,
62,
35790,
4943,
628,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
4944,
33,
12115,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
2446,
628,
198,
2,
16529,
26171,
628,
198,
4871,
3254,
20540,
21950,
7,
15252,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
7762,
20540,
21950,
15506,
11705,
1352,
24183,
257,
23838,
2446,
329,
198,
220,
220,
220,
7515,
21201,
13,
628,
220,
220,
220,
16888,
11,
262,
7159,
1813,
284,
262,
23838,
389,
1100,
12,
8807,
11,
284,
3368,
198,
220,
220,
220,
37241,
351,
262,
21201,
1204,
12,
13696,
13,
198,
220,
220,
220,
554,
262,
2003,
11,
340,
1244,
307,
1744,
284,
13096,
262,
6608,
290,
284,
779,
198,
220,
220,
220,
262,
7515,
4732,
287,
1502,
284,
24184,
262,
7515,
1903,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
3423,
389,
617,
6291,
3544,
286,
262,
11705,
1352,
13,
5740,
326,
262,
1271,
290,
1502,
198,
220,
220,
220,
286,
7159,
691,
468,
284,
2872,
262,
1351,
1813,
284,
262,
11705,
1352,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
422,
16176,
844,
13,
9979,
1187,
1330,
5923,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
11,
26867,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5923,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
11,
5923,
38,
62,
4805,
3185,
17395,
11015,
628,
220,
220,
220,
220,
220,
220,
2488,
7762,
20540,
21950,
7,
1503,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
8,
198,
220,
220,
220,
220,
220,
220,
825,
26571,
62,
42895,
7,
944,
11,
7515,
62,
49464,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
220,
220,
220,
2488,
7762,
20540,
21950,
7,
1503,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
11,
5923,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
8,
198,
220,
220,
220,
220,
220,
220,
825,
26571,
62,
42895,
7,
944,
11,
18537,
62,
49464,
11,
7515,
62,
49464,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
220,
220,
220,
2488,
7762,
20540,
21950,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5923,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
11,
5923,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
11,
5923,
38,
62,
4805,
3185,
17395,
11015,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
825,
26571,
62,
42895,
7,
944,
11,
18537,
62,
49464,
11,
7515,
62,
49464,
11,
25744,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1635,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
26498,
25,
383,
11705,
1352,
18178,
281,
6149,
1351,
286,
7159,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1119,
8160,
262,
9877,
286,
262,
24789,
2446,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
7159,
460,
307,
262,
1708,
3392,
11,
6875,
287,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
30242,
844,
13,
42800,
78,
13,
9979,
1187,
15506,
8265,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
7559,
1503,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
15506,
25,
402,
1083,
1895,
284,
262,
18537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
7559,
1503,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
15506,
25,
402,
1083,
1895,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7515,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
7559,
1503,
38,
62,
4805,
3185,
17395,
11015,
15506,
25,
402,
1083,
1895,
284,
262,
4238,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6608,
286,
262,
7515,
357,
15506,
11600,
15506,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
317,
11507,
468,
281,
12515,
2099,
393,
262,
24789,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2134,
318,
407,
257,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
7159,
19648,
198,
220,
220,
220,
220,
220,
220,
220,
4938,
62,
22046,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
1503,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
1503,
38,
62,
9858,
47,
1340,
3525,
62,
10943,
32541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
1503,
38,
62,
4805,
3185,
17395,
11015,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1822,
287,
26498,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1822,
407,
287,
4938,
62,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
20035,
4578,
2099,
25,
23884,
1911,
18982,
7,
853,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9175,
2610,
286,
262,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
22046,
796,
46545,
7,
22046,
8,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2446,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3310,
6223,
262,
24789,
2446,
355,
257,
23838,
329,
7515,
21201,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2446,
25,
383,
21201,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
7762,
20540,
21950,
460,
691,
307,
5625,
319,
5499,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
1635,
944,
13557,
22046,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2034,
437,
262,
23838,
284,
262,
7515,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
23428,
2389,
6158,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2034,
437,
7159,
1351,
284,
262,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
2617,
62,
15252,
62,
13000,
7,
24396,
11,
38491,
13,
4061,
3185,
46,
62,
23428,
2389,
6158,
62,
1503,
14313,
11,
2116,
13557,
22046,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2446,
628,
198,
4871,
17665,
378,
21950,
7,
7762,
20540,
21950,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
7559,
31,
44651,
378,
21950,
15506,
11705,
1352,
24183,
257,
23838,
2446,
329,
198,
220,
220,
220,
7515,
12515,
341,
13,
628,
220,
220,
220,
6363,
7159,
290,
511,
1502,
8477,
262,
3392,
286,
262,
23838,
340,
198,
220,
220,
220,
11705,
689,
13,
198,
220,
220,
220,
1119,
389,
262,
976,
355,
883,
286,
1058,
4871,
25,
63,
7762,
20540,
21950,
44646,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
12515,
341,
23838,
389,
9514,
13,
628,
220,
220,
220,
1002,
262,
7515,
3769,
257,
2139,
11,
262,
12515,
341,
2446,
318,
1444,
198,
220,
220,
220,
706,
262,
2810,
2139,
468,
587,
555,
33736,
284,
262,
9355,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2446,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3310,
6223,
262,
24789,
2446,
355,
257,
23838,
329,
7515,
12515,
341,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2446,
25,
383,
12515,
341,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44212,
44651,
378,
21950,
460,
691,
307,
5625,
319,
5499,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
1635,
944,
13557,
22046,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2034,
437,
262,
23838,
284,
262,
7515,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
1268,
23428,
2389,
6158,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2034,
437,
7159,
1351,
284,
262,
2446,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
2617,
62,
15252,
62,
13000,
7,
24396,
11,
38491,
13,
4061,
3185,
46,
62,
23428,
2389,
6158,
62,
1503,
14313,
11,
2116,
13557,
22046,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2446,
628,
198,
2,
16529,
26171,
628,
198,
4299,
3254,
20540,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
11705,
1352,
318,
281,
16144,
284,
1058,
4871,
25,
63,
7762,
20540,
21950,
63,
284,
11705,
378,
257,
198,
220,
220,
220,
23838,
2446,
621,
691,
18178,
262,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
33,
31249,
21947,
63,
4578,
13,
198,
220,
220,
220,
632,
318,
407,
1744,
284,
423,
1111,
7559,
31,
7762,
20540,
15506,
290,
7559,
31,
7762,
20540,
21950,
15506,
198,
220,
220,
220,
11705,
2024,
973,
287,
262,
976,
1398,
13,
628,
220,
220,
220,
383,
21201,
23838,
11705,
1352,
318,
1444,
618,
257,
7515,
4329,
4938,
11,
198,
220,
220,
220,
1635,
72,
13,
68,
15885,
611,
477,
286,
663,
2672,
20086,
468,
587,
25077,
13,
628,
220,
220,
220,
1002,
262,
21201,
23838,
12073,
281,
6631,
11,
262,
7515,
2925,
656,
198,
220,
220,
220,
12429,
1137,
49,
11651,
20958,
1174,
1181,
13,
628,
220,
220,
220,
1002,
262,
7515,
3769,
257,
2139,
11,
262,
21201,
2446,
318,
1444,
878,
198,
220,
220,
220,
262,
2810,
2139,
318,
6823,
284,
262,
9355,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
7762,
20540,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
21201,
62,
24396,
7,
944,
11,
18537,
62,
22866,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18537,
62,
22866,
25,
383,
7515,
338,
18537,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
21201,
23838,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
3254,
20540,
21950,
7,
9979,
1187,
13,
1503,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
5769,
24396,
8,
628,
198,
4299,
17665,
378,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
11705,
1352,
318,
281,
16144,
284,
1058,
4871,
25,
63,
44651,
378,
21950,
63,
284,
11705,
378,
257,
198,
220,
220,
220,
23838,
2446,
621,
691,
18178,
262,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
33,
31249,
21947,
63,
4578,
13,
198,
220,
220,
220,
632,
318,
407,
1744,
284,
423,
1111,
7559,
31,
44651,
378,
15506,
290,
198,
220,
220,
220,
7559,
31,
44651,
378,
21950,
15506,
11705,
2024,
973,
287,
262,
976,
1398,
13,
628,
220,
220,
220,
383,
12515,
341,
23838,
11705,
1352,
318,
1444,
618,
257,
7515,
4329,
198,
220,
220,
220,
12515,
11,
1635,
72,
13,
68,
15885,
611,
530,
286,
663,
2672,
20086,
12120,
13,
628,
220,
220,
220,
1475,
11755,
4376,
416,
281,
12515,
341,
23838,
389,
9514,
13,
628,
220,
220,
220,
1002,
262,
7515,
3769,
257,
2139,
11,
262,
12515,
341,
2446,
318,
1444,
198,
220,
220,
220,
706,
262,
2810,
2139,
468,
587,
555,
33736,
284,
262,
9355,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
44651,
378,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
12515,
341,
62,
24396,
7,
944,
11,
18537,
62,
22866,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18537,
62,
22866,
25,
383,
7515,
338,
18537,
4732,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17665,
378,
21950,
7,
9979,
1187,
13,
1503,
38,
62,
33,
4944,
35,
2538,
62,
10943,
32541,
5769,
24396,
8,
628,
198,
4299,
2947,
47133,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
2139,
1281,
12,
2301,
33397,
23838,
11705,
1352,
318,
1444,
706,
257,
2139,
198,
220,
220,
220,
286,
262,
7515,
468,
587,
6823,
284,
262,
9355,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
286,
262,
6823,
198,
220,
220,
220,
2139,
355,
4578,
13,
628,
220,
220,
220,
5740,
326,
618,
428,
2446,
318,
1444,
11,
262,
7008,
423,
1541,
587,
5421,
198,
220,
220,
220,
290,
1244,
1541,
779,
262,
2139,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7203,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
6307,
47133,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
23838,
62,
24396,
7,
944,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
4809,
26687,
286,
262,
2810,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8562,
14483,
11,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
6307,
47133,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
15271,
62,
35790,
4943,
198,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
32782,
62,
31553,
1797,
5446,
6234,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
2446,
628,
198,
4299,
2947,
3118,
2301,
33397,
7,
24396,
2599,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
34,
486,
3070,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
2139,
1281,
12,
403,
2301,
33397,
23838,
11705,
1352,
318,
1444,
706,
257,
198,
220,
220,
220,
2139,
286,
262,
7515,
468,
587,
555,
33736,
422,
262,
9355,
13,
628,
220,
220,
220,
383,
24789,
2446,
1276,
2453,
262,
198,
220,
220,
220,
1058,
4871,
25,
63,
93,
30242,
844,
13,
30604,
13,
16177,
26687,
63,
286,
262,
6823,
198,
220,
220,
220,
2139,
355,
4578,
13,
628,
220,
220,
220,
770,
2446,
852,
1444,
706,
262,
555,
2301,
33397,
11,
262,
7008,
286,
262,
198,
220,
220,
220,
2139,
815,
423,
1541,
2716,
340,
290,
815,
407,
307,
1262,
340,
981,
198,
220,
220,
220,
428,
23838,
318,
17600,
13,
198,
220,
220,
220,
770,
318,
6407,
416,
1486,
329,
7008,
5257,
416,
262,
1058,
4871,
25,
63,
39618,
63,
198,
220,
220,
220,
11705,
1352,
287,
9736,
3185,
46,
11,
475,
617,
1854,
357,
14774,
306,
3194,
393,
845,
2176,
1486,
8,
198,
220,
220,
220,
1244,
1394,
257,
4941,
319,
262,
2139,
772,
706,
663,
555,
2301,
33397,
13,
628,
220,
220,
220,
1058,
16281,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
628,
220,
220,
220,
220,
220,
220,
2488,
21950,
22810,
3419,
198,
220,
220,
220,
220,
220,
220,
2488,
15946,
1460,
7203,
31373,
13,
21370,
66,
4943,
198,
220,
220,
220,
220,
220,
220,
1398,
36080,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
6307,
3118,
2301,
33397,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
23838,
62,
24396,
7,
944,
11,
2139,
62,
35790,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
35790,
25,
383,
4809,
26687,
286,
262,
2810,
2139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5985,
510,
11,
2644,
628,
220,
220,
220,
1058,
17143,
2446,
25,
383,
24789,
2446,
198,
220,
220,
220,
1058,
40225,
5994,
12331,
25,
383,
24789,
5002,
318,
407,
257,
4938,
2163,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
24396,
11,
3858,
13,
22203,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
31,
6307,
3118,
2301,
33397,
460,
691,
307,
5625,
319,
5499,
4943,
628,
220,
220,
220,
1303,
30307,
262,
1271,
286,
10007,
198,
220,
220,
220,
26571,
62,
24396,
62,
6806,
7,
24396,
11,
366,
15271,
62,
35790,
4943,
198,
220,
220,
220,
4808,
33295,
62,
15252,
62,
13000,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2446,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
49273,
62,
34,
7036,
31098,
50,
11,
198,
220,
220,
220,
220,
220,
220,
220,
38491,
13,
4061,
3185,
46,
62,
34,
7036,
31098,
62,
32782,
62,
4944,
31553,
1797,
5446,
6234,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
2446,
198
] | 2.456609 | 31,009 |
import cv2
import os
from keras.models import Sequential
from keras.layers import Dense, Conv2D, MaxPooling2D, Dropout, Flatten,BatchNormalization
import time
import numpy as np
import matplotlib.pyplot as plt
import random
from keras.preprocessing.image import ImageDataGenerator
nrClasses = 0
current_ind = 0
if __name__ == '__main__':
path ="C:/Users/Condr/Downloads/trashy trash strah/indoorCVPR_09/Images"
labels,fileList = loadMedatada(path)
np.random.shuffle(fileList)
os.chdir(path)
x_train,y_train = get_batch(labels,fileList, int(np.floor(len(fileList) * 8 / 10)),0)
# x_val, y_val = get_batch(labels, fileList, int(np.floor(len(fileList) * 1 / 10)),int(np.ceil(len(fileList) * 7 / 10)))
x_test, y_test = get_batch(labels, fileList, int(np.floor(len(fileList) * 2 / 10)), int(np.ceil(len(fileList)*8/10)))
print("dpne loading")
model1 = createModel()
batchSize = 128
epochs = 100
x_train = np.array(x_train)
y_train = np.array(y_train)
x_test = np.array(x_test)
y_test = np.array(y_test)
datagen = ImageDataGenerator(
zoom_range=0.2, # randomly zoom into images
rotation_range=10, # randomly rotate images in the range (degrees, 0 to 180)
width_shift_range=0.1, # randomly shift images horizontally (fraction of total width)
height_shift_range=0.1, # randomly shift images vertically (fraction of total height)
horizontal_flip=True, # randomly flip images
vertical_flip=False) # randomly flip images
model1.compile(optimizer='Adam', loss='categorical_crossentropy', metrics=['accuracy', 'top_k_categorical_accuracy'])
model1.summary()
# history = model1.fit(x_train, y_train, batch_size=batchSize, epochs=epochs, verbose=2, validation_split=0.15)
history = model1.fit_generator(datagen.flow(x_train, y_train, batch_size=batchSize), epochs=epochs, verbose=2,
validation_data=(x_test,y_test),workers=4)
score = model1.evaluate(x_test, y_test)
plt.figure(figsize=[8, 6])
plt.plot(history.history['loss'], 'r', linewidth=3.0)
plt.plot(history.history['val_loss'], 'b', linewidth=3.0)
plt.legend(['Training loss', 'Validation Loss'], fontsize=18)
plt.xlabel('Epochs ', fontsize=16)
plt.ylabel('Loss', fontsize=16)
plt.title('Loss Curves', fontsize=16)
plt.show()
plt.figure(figsize=[8, 6])
plt.plot(history.history['acc'], 'r', linewidth=3.0)
plt.plot(history.history['val_acc'], 'b', linewidth=3.0)
plt.legend(['Training Accuracy', 'Validation Accuracy'], fontsize=18)
plt.xlabel('Epochs ', fontsize=16)
plt.ylabel('Accuracy', fontsize=16)
plt.title('Accuracy Curves', fontsize=16)
plt.show()
print(score)
cv2.waitKey(0)
| [
11748,
269,
85,
17,
201,
198,
11748,
28686,
201,
198,
6738,
41927,
292,
13,
27530,
1330,
24604,
1843,
201,
198,
6738,
41927,
292,
13,
75,
6962,
1330,
360,
1072,
11,
34872,
17,
35,
11,
5436,
27201,
278,
17,
35,
11,
14258,
448,
11,
1610,
41769,
11,
33,
963,
26447,
1634,
201,
198,
11748,
640,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
201,
198,
11748,
4738,
201,
198,
6738,
41927,
292,
13,
3866,
36948,
13,
9060,
1330,
7412,
6601,
8645,
1352,
201,
198,
201,
198,
48624,
9487,
274,
796,
657,
201,
198,
14421,
62,
521,
796,
657,
201,
198,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
3108,
796,
1,
34,
14079,
14490,
14,
25559,
81,
14,
10002,
82,
14,
2213,
1077,
88,
13913,
3534,
71,
14,
521,
2675,
33538,
4805,
62,
2931,
14,
29398,
1,
201,
198,
220,
220,
220,
14722,
11,
7753,
8053,
796,
3440,
9921,
265,
4763,
7,
6978,
8,
201,
198,
220,
220,
220,
45941,
13,
25120,
13,
1477,
18137,
7,
7753,
8053,
8,
201,
198,
220,
220,
220,
28686,
13,
354,
15908,
7,
6978,
8,
201,
198,
201,
198,
220,
220,
220,
2124,
62,
27432,
11,
88,
62,
27432,
796,
651,
62,
43501,
7,
23912,
1424,
11,
7753,
8053,
11,
493,
7,
37659,
13,
28300,
7,
11925,
7,
7753,
8053,
8,
1635,
807,
1220,
838,
36911,
15,
8,
201,
198,
220,
220,
220,
1303,
2124,
62,
2100,
11,
331,
62,
2100,
796,
651,
62,
43501,
7,
23912,
1424,
11,
2393,
8053,
11,
493,
7,
37659,
13,
28300,
7,
11925,
7,
7753,
8053,
8,
1635,
352,
1220,
838,
36911,
600,
7,
37659,
13,
344,
346,
7,
11925,
7,
7753,
8053,
8,
1635,
767,
1220,
838,
22305,
201,
198,
220,
220,
220,
2124,
62,
9288,
11,
331,
62,
9288,
796,
651,
62,
43501,
7,
23912,
1424,
11,
2393,
8053,
11,
493,
7,
37659,
13,
28300,
7,
11925,
7,
7753,
8053,
8,
1635,
362,
1220,
838,
36911,
493,
7,
37659,
13,
344,
346,
7,
11925,
7,
7753,
8053,
27493,
23,
14,
940,
22305,
201,
198,
201,
198,
220,
220,
220,
3601,
7203,
26059,
710,
11046,
4943,
201,
198,
220,
220,
220,
2746,
16,
796,
2251,
17633,
3419,
201,
198,
220,
220,
220,
15458,
10699,
796,
13108,
201,
198,
220,
220,
220,
36835,
82,
796,
1802,
201,
198,
201,
198,
220,
220,
220,
2124,
62,
27432,
796,
45941,
13,
18747,
7,
87,
62,
27432,
8,
201,
198,
220,
220,
220,
331,
62,
27432,
796,
45941,
13,
18747,
7,
88,
62,
27432,
8,
201,
198,
220,
220,
220,
2124,
62,
9288,
796,
45941,
13,
18747,
7,
87,
62,
9288,
8,
201,
198,
220,
220,
220,
331,
62,
9288,
796,
45941,
13,
18747,
7,
88,
62,
9288,
8,
201,
198,
201,
198,
220,
220,
220,
4818,
11286,
796,
7412,
6601,
8645,
1352,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19792,
62,
9521,
28,
15,
13,
17,
11,
1303,
15456,
19792,
656,
4263,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13179,
62,
9521,
28,
940,
11,
220,
1303,
15456,
23064,
4263,
287,
262,
2837,
357,
13500,
6037,
11,
657,
284,
11546,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9647,
62,
30846,
62,
9521,
28,
15,
13,
16,
11,
220,
1303,
15456,
6482,
4263,
36774,
357,
69,
7861,
286,
2472,
9647,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6001,
62,
30846,
62,
9521,
28,
15,
13,
16,
11,
220,
1303,
15456,
6482,
4263,
31677,
357,
69,
7861,
286,
2472,
6001,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16021,
62,
2704,
541,
28,
17821,
11,
220,
1303,
15456,
14283,
4263,
201,
198,
220,
220,
220,
220,
220,
220,
220,
11723,
62,
2704,
541,
28,
25101,
8,
220,
1303,
15456,
14283,
4263,
201,
198,
201,
198,
220,
220,
220,
2746,
16,
13,
5589,
576,
7,
40085,
7509,
11639,
23159,
3256,
2994,
11639,
66,
2397,
12409,
62,
19692,
298,
28338,
3256,
20731,
28,
17816,
4134,
23843,
3256,
705,
4852,
62,
74,
62,
66,
2397,
12409,
62,
4134,
23843,
6,
12962,
201,
198,
201,
198,
220,
220,
220,
2746,
16,
13,
49736,
3419,
201,
198,
201,
198,
220,
220,
220,
1303,
2106,
796,
2746,
16,
13,
11147,
7,
87,
62,
27432,
11,
331,
62,
27432,
11,
15458,
62,
7857,
28,
43501,
10699,
11,
36835,
82,
28,
538,
5374,
82,
11,
15942,
577,
28,
17,
11,
21201,
62,
35312,
28,
15,
13,
1314,
8,
201,
198,
220,
220,
220,
2106,
796,
2746,
16,
13,
11147,
62,
8612,
1352,
7,
19608,
11286,
13,
11125,
7,
87,
62,
27432,
11,
331,
62,
27432,
11,
15458,
62,
7857,
28,
43501,
10699,
828,
36835,
82,
28,
538,
5374,
82,
11,
15942,
577,
28,
17,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21201,
62,
7890,
16193,
87,
62,
9288,
11,
88,
62,
9288,
828,
22896,
28,
19,
8,
201,
198,
220,
220,
220,
4776,
796,
2746,
16,
13,
49786,
7,
87,
62,
9288,
11,
331,
62,
9288,
8,
201,
198,
201,
198,
220,
220,
220,
458,
83,
13,
26875,
7,
5647,
7857,
41888,
23,
11,
718,
12962,
201,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
23569,
13,
23569,
17816,
22462,
6,
4357,
705,
81,
3256,
9493,
413,
5649,
28,
18,
13,
15,
8,
201,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
23569,
13,
23569,
17816,
2100,
62,
22462,
6,
4357,
705,
65,
3256,
9493,
413,
5649,
28,
18,
13,
15,
8,
201,
198,
220,
220,
220,
458,
83,
13,
1455,
437,
7,
17816,
44357,
2994,
3256,
705,
7762,
24765,
22014,
6,
4357,
10369,
7857,
28,
1507,
8,
201,
198,
220,
220,
220,
458,
83,
13,
87,
18242,
10786,
13807,
5374,
82,
46083,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
2645,
9608,
10786,
43,
793,
3256,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
7839,
10786,
43,
793,
4424,
1158,
3256,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
12860,
3419,
201,
198,
201,
198,
220,
220,
220,
458,
83,
13,
26875,
7,
5647,
7857,
41888,
23,
11,
718,
12962,
201,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
23569,
13,
23569,
17816,
4134,
6,
4357,
705,
81,
3256,
9493,
413,
5649,
28,
18,
13,
15,
8,
201,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
23569,
13,
23569,
17816,
2100,
62,
4134,
6,
4357,
705,
65,
3256,
9493,
413,
5649,
28,
18,
13,
15,
8,
201,
198,
220,
220,
220,
458,
83,
13,
1455,
437,
7,
17816,
44357,
33222,
3256,
705,
7762,
24765,
33222,
6,
4357,
10369,
7857,
28,
1507,
8,
201,
198,
220,
220,
220,
458,
83,
13,
87,
18242,
10786,
13807,
5374,
82,
46083,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
2645,
9608,
10786,
17320,
23843,
3256,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
7839,
10786,
17320,
23843,
4424,
1158,
3256,
10369,
7857,
28,
1433,
8,
201,
198,
220,
220,
220,
458,
83,
13,
12860,
3419,
201,
198,
201,
198,
220,
220,
220,
3601,
7,
26675,
8,
201,
198,
220,
220,
220,
269,
85,
17,
13,
17077,
9218,
7,
15,
8,
201,
198
] | 2.296624 | 1,244 |
'''
October 19th 2021.
Kitty Tyree
Olympics database design for cs257 in fall 2021
'''
import csv
# MAP AN ATHLETE ID TO THE ATHLETE'S NAME
# why are we only mapping athlete id to their name? because if they competed
# in multiple games, their weight, and age and other body stats may have changed
# I am not tying them to their sex either, I cannot be sure that
# doesn't change across olympics.
athletes = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
athletes_file = open('athletes.csv', 'w')
writer = csv.writer(athletes_file)
next(reader)
for row in reader:
athlete_id = row[0] #this is a string
athlete_name = row[1]
if athlete_id not in athletes: #Have I seen the athlete before? No? great! do the thing!
athletes[athlete_id] = athlete_name #mapping ids to athlete names
writer.writerow([athlete_id, athlete_name]) #saving in athletes.csv
csv_file.close()
athletes_file.close()
# MAP AN EVENT TO A CREATED EVENT ID
# why are we doing that? because we don't have event id's listed anywhere in
# connection to the athletes, we just have the names of the events.
# So to make it easier, make them accessable by name so we can later match
# to the event and get the ID
events = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
events_file = open('events.csv', 'w')
writer = csv.writer(events_file)
next(reader)
id_counter = 1
for row in reader:
event_name = row[13]
if event_name not in events: #Have I seen the event before? No? great! do the thing!
event_id = id_counter
id_counter += 1
events[event_name] = event_id
writer.writerow([event_id, event_name])
events_file.close()
csv_file.close()
# MAP A SPORT TO A CREATED SPORT ID
sports = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
sports_file = open('sports.csv', 'w')
writer = csv.writer(sports_file)
next(reader)
id_counter = 1
for row in reader:
sport_name = row[12]
if sport_name not in sports: #Have I seen the event before? No? great! do the thing!
sport_id = id_counter
id_counter += 1
sports[sport_name] = sport_id
writer.writerow([sport_id, sport_name])
sports_file.close()
csv_file.close()
# MATCHING EVENTS TO THEIR SPORT
events_sport = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
events_sport_file = open('events_sport.csv', 'w')
writer = csv.writer(events_sport_file)
next(reader)
id_counter = 1
for row in reader:
sport_name = row[12]
sport_id = sports[sport_name]
event_name = row[13]
event_id = events[event_name]
if event_id not in events_sport: #Have I seen the event before? No? great! do the thing!
events_sport[event_id] = sport_id
writer.writerow([event_id, sport_id])
events_sport_file.close()
csv_file.close()
# I want an olympic games file with identifying Ids
# MAP A GAME TO A CREATED GAME ID
games = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
games_file = open('games.csv', 'w')
writer = csv.writer(games_file)
next(reader)
id_counter = 1
for row in reader:
games_name = row[8]
year = row[9]
season = row[10]
city = row[11]
if games_name not in games: #Have I seen the games before? No? great! do the thing!
games_id = id_counter
id_counter += 1
games[games_name] = {"games_id":games_id, "year": year, "season": season, "city": city}
writer.writerow([games_id, games_name, year, season, city])
games_file.close()
csv_file.close()
# MAP A TEAM NAME TO AN ID
teams = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
teams_file = open('teams.csv', 'w')
writer = csv.writer(teams_file)
next(reader)
id_counter = 1
for row in reader:
team_name = row[6]
if team_name not in teams: #Have I seen the team before? No? great! do the thing!
team_id = id_counter
id_counter += 1
teams[team_name] = team_id
writer.writerow([team_id, team_name])
teams_file.close()
csv_file.close()
# MAP A NOC TO AN ID
NOC_regions = {}
csv_file = open('noc_regions_full.csv')
reader = csv.reader(csv_file)
NOC_regions_file = open('NOC_regions.csv', 'w')
writer = csv.writer(NOC_regions_file)
next(reader)
id_counter = 1
for row in reader:
NOC_abbr = row[0]
NOC_full_name = row[1]
if NOC_abbr not in NOC_regions: #Have I seen the team before? No? great! do the thing!
NOC_id = id_counter
id_counter += 1
NOC_regions[NOC_abbr] = {"noc_id": NOC_id, "noc_full_name": NOC_full_name}
writer.writerow([NOC_id, NOC_abbr, NOC_full_name])
NOC_regions_file.close()
csv_file.close()
# MAP TEAM IDS TO NOC IDS
team_NOC = {}
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
team_NOC_file = open('teamNames_NOC.csv', 'w')
writer = csv.writer(team_NOC_file)
next(reader)
for row in reader:
team_name = row[6]
team_id = teams[team_name]
NOC_abbr = row[7]
NOC_id = NOC_regions[NOC_abbr]["noc_id"]
if team_id not in team_NOC:
team_NOC[team_id] = NOC_id
writer.writerow([team_id, NOC_id])
team_NOC_file.close()
csv_file.close()
# TIE ATHLETE IDS TO EVENT IDS AND THEIR MEDALS
# For each row in the original athlete_events.csv file, build a row for
# the event_results.csv table
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
event_results_file = open('event_results.csv', 'w')
writer = csv.writer(event_results_file)
next(reader)
for row in reader:
athlete_id = row[0]
event_name = row[13]
event_id = events[event_name] # this goes into the events dictionary and retrieves the ID number
games_name = row[8]
games_id = games[games_name]["games_id"]
medal = row[14]
writer.writerow([athlete_id, games_id, event_id, medal])
event_results_file.close()
csv_file.close()
# I want a file that has the athlete stats at each olympic games
# Includes athlete_id, games_id, team_id, athlete_sex, athlete-age, athlete_height, athlete_weight
csv_file = open('athlete_events.csv')
reader = csv.reader(csv_file)
athlete_stats_file = open('athlete_stats.csv', 'w')
writer = csv.writer(athlete_stats_file)
next(reader)
# I need it to only go if the athlete for that specific game has yet to be counted
doubles_list=[]
curr_athlete_id = 1
for row in reader:
athlete_id = row[0]
if athlete_id != curr_athlete_id:
doubles_list.clear()
curr_athlete_id = athlete_id
athlete_sex = row[2]
athlete_age = row[3]
athlete_height = row[4]
athlete_weight = row[5]
team_name = row[6]
team_id = teams[team_name]
games_name = row[8]
games_id = games[games_name]["games_id"]
athlete_id_game_double = (athlete_id,games_id)
if athlete_id_game_double not in doubles_list:
writer.writerow([athlete_id, games_id, team_id, athlete_sex, athlete_age, athlete_height, athlete_weight])
doubles_list.append(athlete_id_game_double)
athlete_stats_file.close()
csv_file.close()
| [
7061,
6,
198,
220,
220,
220,
3267,
678,
400,
33448,
13,
198,
220,
220,
220,
21168,
7039,
631,
198,
220,
220,
220,
14935,
6831,
1486,
329,
50115,
28676,
287,
2121,
33448,
198,
7061,
6,
198,
198,
11748,
269,
21370,
198,
198,
2,
34645,
3537,
317,
4221,
2538,
9328,
4522,
5390,
3336,
317,
4221,
2538,
9328,
6,
50,
36751,
198,
2,
1521,
389,
356,
691,
16855,
16076,
4686,
284,
511,
1438,
30,
780,
611,
484,
32440,
198,
2,
287,
3294,
1830,
11,
511,
3463,
11,
290,
2479,
290,
584,
1767,
9756,
743,
423,
3421,
198,
2,
314,
716,
407,
28379,
606,
284,
511,
1714,
2035,
11,
314,
2314,
307,
1654,
326,
198,
2,
1595,
470,
1487,
1973,
267,
6760,
873,
13,
198,
776,
40676,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
776,
40676,
62,
7753,
796,
1280,
10786,
776,
40676,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
776,
40676,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
16076,
62,
312,
796,
5752,
58,
15,
60,
1303,
5661,
318,
257,
4731,
198,
220,
220,
220,
16076,
62,
3672,
796,
5752,
58,
16,
60,
198,
220,
220,
220,
611,
16076,
62,
312,
407,
287,
10856,
25,
1303,
11980,
314,
1775,
262,
16076,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
10856,
58,
776,
5807,
62,
312,
60,
796,
16076,
62,
3672,
220,
1303,
76,
5912,
220,
2340,
284,
16076,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
776,
5807,
62,
312,
11,
16076,
62,
3672,
12962,
1303,
29336,
287,
10856,
13,
40664,
198,
40664,
62,
7753,
13,
19836,
3419,
198,
776,
40676,
62,
7753,
13,
19836,
3419,
628,
198,
2,
34645,
3537,
49261,
5390,
317,
29244,
11617,
49261,
4522,
198,
2,
1521,
389,
356,
1804,
326,
30,
780,
356,
836,
470,
423,
1785,
4686,
338,
5610,
6609,
287,
198,
2,
4637,
284,
262,
10856,
11,
356,
655,
423,
262,
3891,
286,
262,
2995,
13,
198,
2,
1406,
284,
787,
340,
4577,
11,
787,
606,
1895,
540,
416,
1438,
523,
356,
460,
1568,
2872,
198,
2,
284,
262,
1785,
290,
651,
262,
4522,
198,
198,
31534,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
31534,
62,
7753,
796,
1280,
10786,
31534,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
31534,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
1785,
62,
3672,
796,
5752,
58,
1485,
60,
198,
220,
220,
220,
611,
1785,
62,
3672,
407,
287,
2995,
25,
1303,
11980,
314,
1775,
262,
1785,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
1785,
62,
312,
796,
4686,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
24588,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
2995,
58,
15596,
62,
3672,
60,
796,
1785,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
15596,
62,
312,
11,
1785,
62,
3672,
12962,
198,
31534,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
2,
34645,
317,
6226,
9863,
5390,
317,
29244,
11617,
6226,
9863,
4522,
198,
32945,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
32945,
62,
7753,
796,
1280,
10786,
32945,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
32945,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
6332,
62,
3672,
796,
5752,
58,
1065,
60,
198,
220,
220,
220,
611,
6332,
62,
3672,
407,
287,
5701,
25,
1303,
11980,
314,
1775,
262,
1785,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
6332,
62,
312,
796,
4686,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
24588,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
5701,
58,
82,
634,
62,
3672,
60,
796,
6332,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
82,
634,
62,
312,
11,
6332,
62,
3672,
12962,
198,
32945,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
2,
337,
11417,
2751,
22399,
5390,
47278,
6226,
9863,
198,
31534,
62,
82,
634,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
31534,
62,
82,
634,
62,
7753,
796,
1280,
10786,
31534,
62,
82,
634,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
31534,
62,
82,
634,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
6332,
62,
3672,
796,
5752,
58,
1065,
60,
198,
220,
220,
220,
6332,
62,
312,
796,
5701,
58,
82,
634,
62,
3672,
60,
198,
220,
220,
220,
1785,
62,
3672,
796,
5752,
58,
1485,
60,
198,
220,
220,
220,
1785,
62,
312,
796,
2995,
58,
15596,
62,
3672,
60,
198,
220,
220,
220,
611,
1785,
62,
312,
407,
287,
2995,
62,
82,
634,
25,
1303,
11980,
314,
1775,
262,
1785,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
2995,
62,
82,
634,
58,
15596,
62,
312,
60,
796,
6332,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
15596,
62,
312,
11,
6332,
62,
312,
12962,
198,
31534,
62,
82,
634,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
198,
2,
314,
765,
281,
267,
6760,
291,
1830,
2393,
351,
13720,
5121,
82,
198,
2,
34645,
317,
30517,
5390,
317,
29244,
11617,
30517,
4522,
628,
198,
19966,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
19966,
62,
7753,
796,
1280,
10786,
19966,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
19966,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
1830,
62,
3672,
796,
5752,
58,
23,
60,
198,
220,
220,
220,
614,
796,
5752,
58,
24,
60,
198,
220,
220,
220,
1622,
796,
5752,
58,
940,
60,
198,
220,
220,
220,
1748,
796,
5752,
58,
1157,
60,
198,
220,
220,
220,
611,
1830,
62,
3672,
407,
287,
1830,
25,
1303,
11980,
314,
1775,
262,
1830,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
1830,
62,
312,
796,
4686,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
24588,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
1830,
58,
19966,
62,
3672,
60,
796,
19779,
19966,
62,
312,
1298,
19966,
62,
312,
11,
366,
1941,
1298,
614,
11,
366,
6230,
1298,
1622,
11,
366,
19205,
1298,
1748,
92,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
19966,
62,
312,
11,
1830,
62,
3672,
11,
614,
11,
1622,
11,
1748,
12962,
198,
19966,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
628,
198,
2,
34645,
317,
33536,
36751,
5390,
3537,
4522,
198,
660,
4105,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
660,
4105,
62,
7753,
796,
1280,
10786,
660,
4105,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
660,
4105,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
1074,
62,
3672,
796,
5752,
58,
21,
60,
198,
220,
220,
220,
611,
1074,
62,
3672,
407,
287,
3466,
25,
1303,
11980,
314,
1775,
262,
1074,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
1074,
62,
312,
796,
4686,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
24588,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
3466,
58,
15097,
62,
3672,
60,
796,
1074,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
15097,
62,
312,
11,
1074,
62,
3672,
12962,
198,
660,
4105,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
2,
34645,
317,
399,
4503,
5390,
3537,
4522,
198,
198,
45,
4503,
62,
2301,
507,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
77,
420,
62,
2301,
507,
62,
12853,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
45,
4503,
62,
2301,
507,
62,
7753,
796,
1280,
10786,
45,
4503,
62,
2301,
507,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
45,
4503,
62,
2301,
507,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
312,
62,
24588,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
399,
4503,
62,
397,
1671,
796,
5752,
58,
15,
60,
198,
220,
220,
220,
399,
4503,
62,
12853,
62,
3672,
796,
5752,
58,
16,
60,
198,
220,
220,
220,
611,
399,
4503,
62,
397,
1671,
407,
287,
399,
4503,
62,
2301,
507,
25,
1303,
11980,
314,
1775,
262,
1074,
878,
30,
1400,
30,
1049,
0,
466,
262,
1517,
0,
198,
220,
220,
220,
220,
220,
220,
220,
399,
4503,
62,
312,
796,
4686,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
24588,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
399,
4503,
62,
2301,
507,
58,
45,
4503,
62,
397,
1671,
60,
796,
19779,
77,
420,
62,
312,
1298,
399,
4503,
62,
312,
11,
366,
77,
420,
62,
12853,
62,
3672,
1298,
399,
4503,
62,
12853,
62,
3672,
92,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
45,
4503,
62,
312,
11,
399,
4503,
62,
397,
1671,
11,
399,
4503,
62,
12853,
62,
3672,
12962,
198,
45,
4503,
62,
2301,
507,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
2,
34645,
33536,
4522,
50,
5390,
399,
4503,
4522,
50,
198,
15097,
62,
45,
4503,
796,
23884,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
15097,
62,
45,
4503,
62,
7753,
796,
1280,
10786,
15097,
36690,
62,
45,
4503,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
15097,
62,
45,
4503,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
1074,
62,
3672,
796,
5752,
58,
21,
60,
198,
220,
220,
220,
1074,
62,
312,
796,
3466,
58,
15097,
62,
3672,
60,
198,
220,
220,
220,
399,
4503,
62,
397,
1671,
796,
5752,
58,
22,
60,
198,
220,
220,
220,
399,
4503,
62,
312,
796,
399,
4503,
62,
2301,
507,
58,
45,
4503,
62,
397,
1671,
7131,
1,
77,
420,
62,
312,
8973,
198,
220,
220,
220,
611,
1074,
62,
312,
407,
287,
1074,
62,
45,
4503,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1074,
62,
45,
4503,
58,
15097,
62,
312,
60,
796,
399,
4503,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
15097,
62,
312,
11,
399,
4503,
62,
312,
12962,
198,
15097,
62,
45,
4503,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
2,
309,
10008,
317,
4221,
2538,
9328,
4522,
50,
5390,
49261,
4522,
50,
5357,
47278,
26112,
23333,
198,
2,
1114,
1123,
5752,
287,
262,
2656,
16076,
62,
31534,
13,
40664,
2393,
11,
1382,
257,
5752,
329,
198,
2,
262,
1785,
62,
43420,
13,
40664,
3084,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
15596,
62,
43420,
62,
7753,
796,
1280,
10786,
15596,
62,
43420,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
15596,
62,
43420,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
16076,
62,
312,
796,
5752,
58,
15,
60,
198,
220,
220,
220,
1785,
62,
3672,
796,
5752,
58,
1485,
60,
198,
220,
220,
220,
1785,
62,
312,
796,
2995,
58,
15596,
62,
3672,
60,
1303,
428,
2925,
656,
262,
2995,
22155,
290,
13236,
1158,
262,
4522,
1271,
198,
220,
220,
220,
1830,
62,
3672,
796,
5752,
58,
23,
60,
198,
220,
220,
220,
1830,
62,
312,
796,
1830,
58,
19966,
62,
3672,
7131,
1,
19966,
62,
312,
8973,
198,
220,
220,
220,
18279,
796,
5752,
58,
1415,
60,
198,
220,
220,
220,
6260,
13,
16002,
322,
26933,
776,
5807,
62,
312,
11,
1830,
62,
312,
11,
1785,
62,
312,
11,
18279,
12962,
198,
15596,
62,
43420,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
628,
198,
198,
2,
314,
765,
257,
2393,
326,
468,
262,
16076,
9756,
379,
1123,
267,
6760,
291,
1830,
198,
2,
29581,
16076,
62,
312,
11,
1830,
62,
312,
11,
1074,
62,
312,
11,
16076,
62,
8044,
11,
16076,
12,
496,
11,
16076,
62,
17015,
11,
16076,
62,
6551,
198,
198,
40664,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
31534,
13,
40664,
11537,
198,
46862,
796,
269,
21370,
13,
46862,
7,
40664,
62,
7753,
8,
198,
776,
5807,
62,
34242,
62,
7753,
796,
1280,
10786,
776,
5807,
62,
34242,
13,
40664,
3256,
705,
86,
11537,
198,
16002,
796,
269,
21370,
13,
16002,
7,
776,
5807,
62,
34242,
62,
7753,
8,
198,
19545,
7,
46862,
8,
198,
198,
2,
314,
761,
340,
284,
691,
467,
611,
262,
16076,
329,
326,
2176,
983,
468,
1865,
284,
307,
14789,
198,
67,
280,
7689,
62,
4868,
28,
21737,
198,
22019,
81,
62,
776,
5807,
62,
312,
796,
352,
198,
1640,
5752,
287,
9173,
25,
198,
220,
220,
220,
16076,
62,
312,
796,
5752,
58,
15,
60,
198,
220,
220,
220,
611,
16076,
62,
312,
14512,
1090,
81,
62,
776,
5807,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
21938,
62,
4868,
13,
20063,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
776,
5807,
62,
312,
796,
16076,
62,
312,
198,
220,
220,
220,
16076,
62,
8044,
796,
5752,
58,
17,
60,
198,
220,
220,
220,
16076,
62,
496,
796,
5752,
58,
18,
60,
198,
220,
220,
220,
16076,
62,
17015,
796,
5752,
58,
19,
60,
198,
220,
220,
220,
16076,
62,
6551,
796,
5752,
58,
20,
60,
198,
220,
220,
220,
1074,
62,
3672,
796,
5752,
58,
21,
60,
198,
220,
220,
220,
1074,
62,
312,
796,
3466,
58,
15097,
62,
3672,
60,
198,
220,
220,
220,
1830,
62,
3672,
796,
5752,
58,
23,
60,
198,
220,
220,
220,
1830,
62,
312,
796,
1830,
58,
19966,
62,
3672,
7131,
1,
19966,
62,
312,
8973,
198,
220,
220,
220,
16076,
62,
312,
62,
6057,
62,
23352,
796,
357,
776,
5807,
62,
312,
11,
19966,
62,
312,
8,
198,
220,
220,
220,
611,
16076,
62,
312,
62,
6057,
62,
23352,
407,
287,
21938,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
776,
5807,
62,
312,
11,
1830,
62,
312,
11,
1074,
62,
312,
11,
16076,
62,
8044,
11,
16076,
62,
496,
11,
16076,
62,
17015,
11,
16076,
62,
6551,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
21938,
62,
4868,
13,
33295,
7,
776,
5807,
62,
312,
62,
6057,
62,
23352,
8,
198,
776,
5807,
62,
34242,
62,
7753,
13,
19836,
3419,
198,
40664,
62,
7753,
13,
19836,
3419,
198
] | 2.552689 | 2,752 |
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: deepaffects-realtime.proto
import sys
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
from google.protobuf import descriptor_pb2
_b = sys.version_info[0] < 3 and (
lambda x: x) or (lambda x: x.encode('latin1'))
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
DESCRIPTOR = _descriptor.FileDescriptor(
name='deepaffects-realtime.proto',
package='deepaffectsrealtime',
syntax='proto3',
serialized_pb=_b('\n\x1a\x64\x65\x65paffects-realtime.proto\x12\x13\x64\x65\x65paffectsrealtime\"\xb3\x01\n\x0cSegmentChunk\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0f\n\x07\x63ontent\x18\x02 \x01(\t\x12\x10\n\x08\x65ncoding\x18\x03 \x01(\t\x12\x14\n\x0clanguageCode\x18\x04 \x01(\t\x12\x12\n\nsampleRate\x18\x05 \x01(\x05\x12\x12\n\nspeakerIds\x18\x06 \x03(\t\x12\x15\n\rsegmentOffset\x18\x07 \x01(\x01\x12\x10\n\x08\x64uration\x18\x08 \x01(\x01\x12\r\n\x05\x45rror\x18\t \x01(\t\"j\n\x0eSegmentSpeaker\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x12\n\nspeaker_id\x18\x02 \x01(\t\x12\r\n\x05start\x18\x03 \x01(\x01\x12\x0b\n\x03\x65nd\x18\x04 \x01(\x01\x12\r\n\x05\x45rror\x18\x05 \x01(\t\x12\r\n\x05score\x18\x06 \x01(\x02\"g\n\x0eSegmentEmotion\x12\n\n\x02id\x18\x01 \x01(\x05\x12\r\n\x05start\x18\x02 \x01(\x01\x12\x0b\n\x03\x65nd\x18\x03 \x01(\x01\x12\x0f\n\x07\x65motion\x18\x04 \x01(\t\x12\r\n\x05\x45rror\x18\x05 \x01(\t\x12\r\n\x05score\x18\x06 \x01(\x01\"\x82\x01\n\x15SegmentDiarizeEmotion\x12\n\n\x02id\x18\x01 \x01(\x05\x12\r\n\x05start\x18\x02 \x01(\x01\x12\x0b\n\x03\x65nd\x18\x03 \x01(\x01\x12\x0f\n\x07\x65motion\x18\x04 \x01(\t\x12\x12\n\nspeaker_id\x18\x05 \x01(\t\x12\r\n\x05\x45rror\x18\x06 \x01(\t\x12\r\n\x05score\x18\x07 \x01(\x01\x32\xbe\x02\n\x13\x44\x65\x65pAffectsRealtime\x12_\n\x0fIdentifySpeaker\x12!.deepaffectsrealtime.SegmentChunk\x1a#.deepaffectsrealtime.SegmentSpeaker\"\x00(\x01\x30\x01\x12_\n\x0fIdentifyEmotion\x12!.deepaffectsrealtime.SegmentChunk\x1a#.deepaffectsrealtime.SegmentEmotion\"\x00(\x01\x30\x01\x12\x65\n\x0e\x44iarizeEmotion\x12!.deepaffectsrealtime.SegmentChunk\x1a*.deepaffectsrealtime.SegmentDiarizeEmotion\"\x00(\x01\x30\x01\x42;\n\x1cio.grpc.examples.deepaffectsB\x13\x44\x65\x65paffectsRealtimeP\x01\xa2\x02\x03\x44RIb\x06proto3')
)
_SEGMENTCHUNK = _descriptor.Descriptor(
name='SegmentChunk',
full_name='deepaffectsrealtime.SegmentChunk',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='id', full_name='deepaffectsrealtime.SegmentChunk.id', index=0,
number=1, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='content', full_name='deepaffectsrealtime.SegmentChunk.content', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='encoding', full_name='deepaffectsrealtime.SegmentChunk.encoding', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='languageCode', full_name='deepaffectsrealtime.SegmentChunk.languageCode', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='sampleRate', full_name='deepaffectsrealtime.SegmentChunk.sampleRate', index=4,
number=5, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='speakerIds', full_name='deepaffectsrealtime.SegmentChunk.speakerIds', index=5,
number=6, type=9, cpp_type=9, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='segmentOffset', full_name='deepaffectsrealtime.SegmentChunk.segmentOffset', index=6,
number=7, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='duration', full_name='deepaffectsrealtime.SegmentChunk.duration', index=7,
number=8, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='Error', full_name='deepaffectsrealtime.SegmentChunk.Error', index=8,
number=9, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=52,
serialized_end=231,
)
_SEGMENTSPEAKER = _descriptor.Descriptor(
name='SegmentSpeaker',
full_name='deepaffectsrealtime.SegmentSpeaker',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='id', full_name='deepaffectsrealtime.SegmentSpeaker.id', index=0,
number=1, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='speaker_id', full_name='deepaffectsrealtime.SegmentSpeaker.speaker_id', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='start', full_name='deepaffectsrealtime.SegmentSpeaker.start', index=2,
number=3, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='end', full_name='deepaffectsrealtime.SegmentSpeaker.end', index=3,
number=4, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='Error', full_name='deepaffectsrealtime.SegmentSpeaker.Error', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='score', full_name='deepaffectsrealtime.SegmentSpeaker.score', index=5,
number=6, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=233,
serialized_end=339,
)
_SEGMENTEMOTION = _descriptor.Descriptor(
name='SegmentEmotion',
full_name='deepaffectsrealtime.SegmentEmotion',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='id', full_name='deepaffectsrealtime.SegmentEmotion.id', index=0,
number=1, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='start', full_name='deepaffectsrealtime.SegmentEmotion.start', index=1,
number=2, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='end', full_name='deepaffectsrealtime.SegmentEmotion.end', index=2,
number=3, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='emotion', full_name='deepaffectsrealtime.SegmentEmotion.emotion', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='Error', full_name='deepaffectsrealtime.SegmentEmotion.Error', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='score', full_name='deepaffectsrealtime.SegmentEmotion.score', index=5,
number=6, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=341,
serialized_end=444,
)
_SEGMENTDIARIZEEMOTION = _descriptor.Descriptor(
name='SegmentDiarizeEmotion',
full_name='deepaffectsrealtime.SegmentDiarizeEmotion',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='id', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.id', index=0,
number=1, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='start', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.start', index=1,
number=2, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='end', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.end', index=2,
number=3, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='emotion', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.emotion', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='speaker_id', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.speaker_id', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='Error', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.Error', index=5,
number=6, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='score', full_name='deepaffectsrealtime.SegmentDiarizeEmotion.score', index=6,
number=7, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=447,
serialized_end=577,
)
DESCRIPTOR.message_types_by_name['SegmentChunk'] = _SEGMENTCHUNK
DESCRIPTOR.message_types_by_name['SegmentSpeaker'] = _SEGMENTSPEAKER
DESCRIPTOR.message_types_by_name['SegmentEmotion'] = _SEGMENTEMOTION
DESCRIPTOR.message_types_by_name['SegmentDiarizeEmotion'] = _SEGMENTDIARIZEEMOTION
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
SegmentChunk = _reflection.GeneratedProtocolMessageType('SegmentChunk', (_message.Message,), dict(
DESCRIPTOR=_SEGMENTCHUNK,
__module__='deepaffects_realtime_pb2'
# @@protoc_insertion_point(class_scope:deepaffectsrealtime.SegmentChunk)
))
_sym_db.RegisterMessage(SegmentChunk)
SegmentSpeaker = _reflection.GeneratedProtocolMessageType('SegmentSpeaker', (_message.Message,), dict(
DESCRIPTOR=_SEGMENTSPEAKER,
__module__='deepaffects_realtime_pb2'
# @@protoc_insertion_point(class_scope:deepaffectsrealtime.SegmentSpeaker)
))
_sym_db.RegisterMessage(SegmentSpeaker)
SegmentEmotion = _reflection.GeneratedProtocolMessageType('SegmentEmotion', (_message.Message,), dict(
DESCRIPTOR=_SEGMENTEMOTION,
__module__='deepaffects_realtime_pb2'
# @@protoc_insertion_point(class_scope:deepaffectsrealtime.SegmentEmotion)
))
_sym_db.RegisterMessage(SegmentEmotion)
SegmentDiarizeEmotion = _reflection.GeneratedProtocolMessageType('SegmentDiarizeEmotion', (_message.Message,), dict(
DESCRIPTOR=_SEGMENTDIARIZEEMOTION,
__module__='deepaffects_realtime_pb2'
# @@protoc_insertion_point(class_scope:deepaffectsrealtime.SegmentDiarizeEmotion)
))
_sym_db.RegisterMessage(SegmentDiarizeEmotion)
DESCRIPTOR.has_options = True
DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b(
'\n\034io.grpc.examples.deepaffectsB\023DeepaffectsRealtimeP\001\242\002\003DRI'))
_DEEPAFFECTSREALTIME = _descriptor.ServiceDescriptor(
name='DeepAffectsRealtime',
full_name='deepaffectsrealtime.DeepAffectsRealtime',
file=DESCRIPTOR,
index=0,
options=None,
serialized_start=580,
serialized_end=898,
methods=[
_descriptor.MethodDescriptor(
name='IdentifySpeaker',
full_name='deepaffectsrealtime.DeepAffectsRealtime.IdentifySpeaker',
index=0,
containing_service=None,
input_type=_SEGMENTCHUNK,
output_type=_SEGMENTSPEAKER,
options=None,
),
_descriptor.MethodDescriptor(
name='IdentifyEmotion',
full_name='deepaffectsrealtime.DeepAffectsRealtime.IdentifyEmotion',
index=1,
containing_service=None,
input_type=_SEGMENTCHUNK,
output_type=_SEGMENTEMOTION,
options=None,
),
_descriptor.MethodDescriptor(
name='DiarizeEmotion',
full_name='deepaffectsrealtime.DeepAffectsRealtime.DiarizeEmotion',
index=2,
containing_service=None,
input_type=_SEGMENTCHUNK,
output_type=_SEGMENTDIARIZEEMOTION,
options=None,
),
])
_sym_db.RegisterServiceDescriptor(_DEEPAFFECTSREALTIME)
DESCRIPTOR.services_by_name['DeepAffectsRealtime'] = _DEEPAFFECTSREALTIME
# @@protoc_insertion_point(module_scope)
| [
2,
2980,
515,
416,
262,
8435,
11876,
17050,
13,
220,
8410,
5626,
48483,
0,
198,
2,
2723,
25,
2769,
2001,
478,
82,
12,
5305,
2435,
13,
1676,
1462,
198,
198,
11748,
25064,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
355,
4808,
20147,
1968,
273,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
3275,
355,
4808,
20500,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
14580,
355,
4808,
5420,
1564,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
6194,
62,
48806,
355,
4808,
1837,
23650,
62,
48806,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
62,
40842,
17,
198,
62,
65,
796,
25064,
13,
9641,
62,
10951,
58,
15,
60,
1279,
513,
290,
357,
198,
220,
220,
220,
37456,
2124,
25,
2124,
8,
393,
357,
50033,
2124,
25,
2124,
13,
268,
8189,
10786,
75,
10680,
16,
6,
4008,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
320,
3742,
8,
198,
198,
62,
37047,
62,
9945,
796,
4808,
1837,
23650,
62,
48806,
13,
19463,
3419,
628,
198,
30910,
36584,
32961,
796,
4808,
20147,
1968,
273,
13,
8979,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
22089,
2001,
478,
82,
12,
5305,
2435,
13,
1676,
1462,
3256,
198,
220,
220,
220,
5301,
11639,
22089,
2001,
478,
82,
5305,
2435,
3256,
198,
220,
220,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
220,
220,
11389,
1143,
62,
40842,
28,
62,
65,
10786,
59,
77,
59,
87,
16,
64,
59,
87,
2414,
59,
87,
2996,
59,
87,
2996,
79,
2001,
478,
82,
12,
5305,
2435,
13,
1676,
1462,
59,
87,
1065,
59,
87,
1485,
59,
87,
2414,
59,
87,
2996,
59,
87,
2996,
79,
2001,
478,
82,
5305,
2435,
7879,
59,
30894,
18,
59,
87,
486,
59,
77,
59,
87,
15,
66,
41030,
434,
1925,
2954,
59,
87,
1065,
59,
77,
59,
77,
59,
87,
2999,
312,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2713,
59,
87,
1065,
59,
87,
15,
69,
59,
77,
59,
87,
2998,
59,
87,
5066,
38564,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
2919,
59,
87,
2996,
10782,
7656,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
1415,
59,
77,
59,
87,
15,
565,
9000,
10669,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
5907,
1403,
32184,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
87,
2713,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
77,
4125,
3110,
7390,
82,
59,
87,
1507,
59,
87,
3312,
3467,
87,
3070,
38016,
83,
59,
87,
1065,
59,
87,
1314,
59,
77,
59,
81,
325,
5154,
34519,
59,
87,
1507,
59,
87,
2998,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
2919,
59,
87,
2414,
3924,
59,
87,
1507,
59,
87,
2919,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
59,
87,
2231,
81,
1472,
59,
87,
1507,
59,
83,
3467,
87,
486,
38016,
83,
7879,
73,
59,
77,
59,
87,
15,
68,
41030,
434,
5248,
3110,
59,
87,
1065,
59,
77,
59,
77,
59,
87,
2999,
312,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2713,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
77,
4125,
3110,
62,
312,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
9688,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
3070,
59,
87,
2996,
358,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
59,
87,
2231,
81,
1472,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
26675,
59,
87,
1507,
59,
87,
3312,
3467,
87,
486,
38016,
87,
2999,
7879,
70,
59,
77,
59,
87,
15,
68,
41030,
434,
10161,
9650,
59,
87,
1065,
59,
77,
59,
77,
59,
87,
2999,
312,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2713,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
9688,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
3070,
59,
87,
2996,
358,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
15,
69,
59,
77,
59,
87,
2998,
59,
87,
2996,
38714,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
59,
87,
2231,
81,
1472,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
26675,
59,
87,
1507,
59,
87,
3312,
3467,
87,
486,
38016,
87,
486,
7879,
59,
87,
6469,
59,
87,
486,
59,
77,
59,
87,
1314,
41030,
434,
35,
12571,
1096,
10161,
9650,
59,
87,
1065,
59,
77,
59,
77,
59,
87,
2999,
312,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2713,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
9688,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
3070,
59,
87,
2996,
358,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
486,
59,
87,
1065,
59,
87,
15,
69,
59,
77,
59,
87,
2998,
59,
87,
2996,
38714,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
77,
4125,
3110,
62,
312,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
59,
87,
2231,
81,
1472,
59,
87,
1507,
59,
87,
3312,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
26675,
59,
87,
1507,
59,
87,
2998,
3467,
87,
486,
38016,
87,
486,
59,
87,
2624,
59,
87,
1350,
59,
87,
2999,
59,
77,
59,
87,
1485,
59,
87,
2598,
59,
87,
2996,
59,
87,
2996,
79,
32,
4812,
82,
15633,
2435,
59,
87,
1065,
62,
59,
77,
59,
87,
15,
69,
33234,
1958,
5248,
3110,
59,
87,
1065,
43179,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
59,
87,
16,
64,
2,
13,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
7879,
59,
87,
405,
38016,
87,
486,
59,
87,
1270,
59,
87,
486,
59,
87,
1065,
62,
59,
77,
59,
87,
15,
69,
33234,
1958,
10161,
9650,
59,
87,
1065,
43179,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
59,
87,
16,
64,
2,
13,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
7879,
59,
87,
405,
38016,
87,
486,
59,
87,
1270,
59,
87,
486,
59,
87,
1065,
59,
87,
2996,
59,
77,
59,
87,
15,
68,
59,
87,
2598,
12571,
1096,
10161,
9650,
59,
87,
1065,
43179,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
59,
87,
16,
64,
24620,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
7879,
59,
87,
405,
38016,
87,
486,
59,
87,
1270,
59,
87,
486,
59,
87,
3682,
26,
59,
77,
59,
87,
16,
66,
952,
13,
2164,
14751,
13,
1069,
12629,
13,
22089,
2001,
478,
82,
33,
59,
87,
1485,
59,
87,
2598,
59,
87,
2996,
59,
87,
2996,
79,
2001,
478,
82,
15633,
2435,
47,
59,
87,
486,
59,
27865,
17,
59,
87,
2999,
59,
87,
3070,
59,
87,
2598,
7112,
65,
59,
87,
3312,
1676,
1462,
18,
11537,
198,
8,
628,
198,
62,
5188,
38,
10979,
3398,
4944,
42,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
41030,
434,
1925,
2954,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
3256,
198,
220,
220,
220,
29472,
28,
14202,
11,
198,
220,
220,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
220,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
7032,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
312,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
11299,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
11299,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
12685,
7656,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
12685,
7656,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
16129,
10669,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
16129,
10669,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
39873,
32184,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
39873,
32184,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
4125,
3110,
7390,
82,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
4125,
3110,
7390,
82,
3256,
6376,
28,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
21,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
325,
5154,
34519,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
325,
5154,
34519,
3256,
6376,
28,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
22,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
32257,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
32257,
3256,
6376,
28,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
23,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
12331,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
13,
12331,
3256,
6376,
28,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
24,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
18366,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
220,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
220,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
220,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
220,
220,
530,
1659,
82,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
11389,
1143,
62,
9688,
28,
4309,
11,
198,
220,
220,
220,
11389,
1143,
62,
437,
28,
25667,
11,
198,
8,
628,
198,
62,
5188,
38,
10979,
4303,
36,
10206,
1137,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
41030,
434,
5248,
3110,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
3256,
198,
220,
220,
220,
29472,
28,
14202,
11,
198,
220,
220,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
220,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
7032,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
312,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
4125,
3110,
62,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
4125,
3110,
62,
312,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
9688,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
9688,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
437,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
437,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
12331,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
12331,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
26675,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
13,
26675,
3256,
6376,
28,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
21,
11,
2099,
28,
17,
11,
269,
381,
62,
4906,
28,
21,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
18366,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
220,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
220,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
220,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
220,
220,
530,
1659,
82,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
11389,
1143,
62,
9688,
28,
25429,
11,
198,
220,
220,
220,
11389,
1143,
62,
437,
28,
29626,
11,
198,
8,
628,
198,
62,
5188,
38,
10979,
3620,
2394,
2849,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
41030,
434,
10161,
9650,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
3256,
198,
220,
220,
220,
29472,
28,
14202,
11,
198,
220,
220,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
220,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
7032,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
312,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
9688,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
9688,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
437,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
437,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
368,
9650,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
368,
9650,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
12331,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
12331,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
26675,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
13,
26675,
3256,
6376,
28,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
21,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
18366,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
220,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
220,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
220,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
220,
220,
530,
1659,
82,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
11389,
1143,
62,
9688,
28,
33660,
11,
198,
220,
220,
220,
11389,
1143,
62,
437,
28,
30272,
11,
198,
8,
628,
198,
62,
5188,
38,
10979,
17931,
1503,
35400,
3620,
2394,
2849,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
41030,
434,
35,
12571,
1096,
10161,
9650,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
3256,
198,
220,
220,
220,
29472,
28,
14202,
11,
198,
220,
220,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
220,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
7032,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
312,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
9688,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
9688,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
437,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
437,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
368,
9650,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
368,
9650,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
4125,
3110,
62,
312,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
4125,
3110,
62,
312,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
12331,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
12331,
3256,
6376,
28,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
21,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
26675,
3256,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
13,
26675,
3256,
6376,
28,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
22,
11,
2099,
28,
16,
11,
269,
381,
62,
4906,
28,
20,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
22468,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
18366,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
220,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
220,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
220,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
220,
220,
530,
1659,
82,
41888,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
11389,
1143,
62,
9688,
28,
34825,
11,
198,
220,
220,
220,
11389,
1143,
62,
437,
28,
49447,
11,
198,
8,
198,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
41030,
434,
1925,
2954,
20520,
796,
4808,
5188,
38,
10979,
3398,
4944,
42,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
41030,
434,
5248,
3110,
20520,
796,
4808,
5188,
38,
10979,
4303,
36,
10206,
1137,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
41030,
434,
10161,
9650,
20520,
796,
4808,
5188,
38,
10979,
3620,
2394,
2849,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
41030,
434,
35,
12571,
1096,
10161,
9650,
20520,
796,
4808,
5188,
38,
10979,
17931,
1503,
35400,
3620,
2394,
2849,
198,
62,
37047,
62,
9945,
13,
38804,
8979,
24564,
1968,
273,
7,
30910,
36584,
32961,
8,
198,
198,
41030,
434,
1925,
2954,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
41030,
434,
1925,
2954,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
220,
220,
22196,
36584,
32961,
28,
62,
5188,
38,
10979,
3398,
4944,
42,
11,
198,
220,
220,
220,
11593,
21412,
834,
11639,
22089,
2001,
478,
82,
62,
5305,
2435,
62,
40842,
17,
6,
198,
220,
220,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
1925,
2954,
8,
198,
4008,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
41030,
434,
1925,
2954,
8,
198,
198,
41030,
434,
5248,
3110,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
41030,
434,
5248,
3110,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
220,
220,
22196,
36584,
32961,
28,
62,
5188,
38,
10979,
4303,
36,
10206,
1137,
11,
198,
220,
220,
220,
11593,
21412,
834,
11639,
22089,
2001,
478,
82,
62,
5305,
2435,
62,
40842,
17,
6,
198,
220,
220,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
5248,
3110,
8,
198,
4008,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
41030,
434,
5248,
3110,
8,
198,
198,
41030,
434,
10161,
9650,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
41030,
434,
10161,
9650,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
220,
220,
22196,
36584,
32961,
28,
62,
5188,
38,
10979,
3620,
2394,
2849,
11,
198,
220,
220,
220,
11593,
21412,
834,
11639,
22089,
2001,
478,
82,
62,
5305,
2435,
62,
40842,
17,
6,
198,
220,
220,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
10161,
9650,
8,
198,
4008,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
41030,
434,
10161,
9650,
8,
198,
198,
41030,
434,
35,
12571,
1096,
10161,
9650,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
41030,
434,
35,
12571,
1096,
10161,
9650,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
220,
220,
22196,
36584,
32961,
28,
62,
5188,
38,
10979,
17931,
1503,
35400,
3620,
2394,
2849,
11,
198,
220,
220,
220,
11593,
21412,
834,
11639,
22089,
2001,
478,
82,
62,
5305,
2435,
62,
40842,
17,
6,
198,
220,
220,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
22089,
2001,
478,
82,
5305,
2435,
13,
41030,
434,
35,
12571,
1096,
10161,
9650,
8,
198,
4008,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
41030,
434,
35,
12571,
1096,
10161,
9650,
8,
628,
198,
30910,
36584,
32961,
13,
10134,
62,
25811,
796,
6407,
198,
30910,
36584,
32961,
13557,
25811,
796,
4808,
20147,
1968,
273,
13557,
10044,
325,
29046,
7,
20147,
1968,
273,
62,
40842,
17,
13,
8979,
29046,
22784,
4808,
65,
7,
198,
220,
220,
220,
705,
59,
77,
59,
49841,
952,
13,
2164,
14751,
13,
1069,
12629,
13,
22089,
2001,
478,
82,
33,
59,
45310,
29744,
2001,
478,
82,
15633,
2435,
47,
59,
8298,
59,
27877,
59,
21601,
59,
11245,
35,
7112,
6,
4008,
198,
198,
62,
35,
6500,
4537,
5777,
2943,
4694,
2200,
31429,
12789,
796,
4808,
20147,
1968,
273,
13,
16177,
24564,
1968,
273,
7,
198,
220,
220,
220,
1438,
11639,
29744,
32,
4812,
82,
15633,
2435,
3256,
198,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
29744,
32,
4812,
82,
15633,
2435,
3256,
198,
220,
220,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
220,
220,
6376,
28,
15,
11,
198,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
11389,
1143,
62,
9688,
28,
39322,
11,
198,
220,
220,
220,
11389,
1143,
62,
437,
28,
23,
4089,
11,
198,
220,
220,
220,
5050,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
17410,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
33234,
1958,
5248,
3110,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
29744,
32,
4812,
82,
15633,
2435,
13,
33234,
1958,
5248,
3110,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7268,
62,
15271,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
4906,
28,
62,
5188,
38,
10979,
3398,
4944,
42,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
4906,
28,
62,
5188,
38,
10979,
4303,
36,
10206,
1137,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
17410,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
33234,
1958,
10161,
9650,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
29744,
32,
4812,
82,
15633,
2435,
13,
33234,
1958,
10161,
9650,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7268,
62,
15271,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
4906,
28,
62,
5188,
38,
10979,
3398,
4944,
42,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
4906,
28,
62,
5188,
38,
10979,
3620,
2394,
2849,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20147,
1968,
273,
13,
17410,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
35,
12571,
1096,
10161,
9650,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
3672,
11639,
22089,
2001,
478,
82,
5305,
2435,
13,
29744,
32,
4812,
82,
15633,
2435,
13,
35,
12571,
1096,
10161,
9650,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7268,
62,
15271,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
4906,
28,
62,
5188,
38,
10979,
3398,
4944,
42,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
4906,
28,
62,
5188,
38,
10979,
17931,
1503,
35400,
3620,
2394,
2849,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
33761,
198,
62,
37047,
62,
9945,
13,
38804,
16177,
24564,
1968,
273,
28264,
35,
6500,
4537,
5777,
2943,
4694,
2200,
31429,
12789,
8,
198,
198,
30910,
36584,
32961,
13,
30416,
62,
1525,
62,
3672,
17816,
29744,
32,
4812,
82,
15633,
2435,
20520,
796,
4808,
35,
6500,
4537,
5777,
2943,
4694,
2200,
31429,
12789,
198,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
21412,
62,
29982,
8,
198
] | 2.099236 | 9,029 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.