content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
import sys
input = sys.stdin.readline
T = int(input())
fb = [0 for _ in range(50)]
fb[0], fb[1] = 1,1
for i in range(2,50): fb[i] = fb[i-1]+fb[i-2]
for _ in range(T):
N = int(input())
L = []
while N:
for i in range(50):
if fb[i]>N:
L.append(fb[i-1])
N-=fb[i-1]
break
if fb[i]==N:
L.append(fb[i])
N=0
break
for i in sorted(L): print(i, end=' ')
print()
| [
11748,
25064,
198,
15414,
796,
25064,
13,
19282,
259,
13,
961,
1370,
198,
198,
51,
796,
493,
7,
15414,
28955,
198,
21855,
796,
685,
15,
329,
4808,
287,
2837,
7,
1120,
15437,
198,
21855,
58,
15,
4357,
277,
65,
58,
16,
60,
796,
352,
11,
16,
198,
1640,
1312,
287,
2837,
7,
17,
11,
1120,
2599,
277,
65,
58,
72,
60,
796,
277,
65,
58,
72,
12,
16,
48688,
21855,
58,
72,
12,
17,
60,
198,
198,
1640,
4808,
287,
2837,
7,
51,
2599,
198,
220,
220,
220,
399,
796,
493,
7,
15414,
28955,
198,
220,
220,
220,
406,
796,
17635,
198,
220,
220,
220,
981,
399,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
1120,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
277,
65,
58,
72,
60,
29,
45,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
406,
13,
33295,
7,
21855,
58,
72,
12,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
399,
12,
28,
21855,
58,
72,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
277,
65,
58,
72,
60,
855,
45,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
406,
13,
33295,
7,
21855,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
399,
28,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
329,
1312,
287,
23243,
7,
43,
2599,
3601,
7,
72,
11,
886,
11639,
705,
8,
198,
220,
220,
220,
3601,
3419,
198
] | 1.571875 | 320 |
import glob
import os
import platform
import shutil
import sys
import pyxel
if __name__ == "__main__":
run()
| [
11748,
15095,
198,
11748,
28686,
198,
11748,
3859,
198,
11748,
4423,
346,
198,
11748,
25064,
198,
198,
11748,
12972,
87,
417,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1057,
3419,
198
] | 2.878049 | 41 |
import pickle
import numpy as np
from projeto.settings import WEIGHTS_PATH
from loguru import logger
| [
11748,
2298,
293,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
386,
73,
27206,
13,
33692,
1330,
12887,
34874,
62,
34219,
198,
6738,
2604,
14717,
1330,
49706,
198
] | 3.607143 | 28 |
# Copyright 2019-2020 Not Just A Toy Corp.
#
# 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 typing as ty
from distutils.util import strtobool
from falcon_heavy.utils import force_str, FalconHeavyUnicodeDecodeError
from .base import BaseType, ValidationResult, Messages, Types
from .path import Path
from .exceptions import SchemaError
from .errors import Error
__all__ = (
'StringType',
'Number',
'GenericNumberType',
'NumberType',
'IntegerType',
'BooleanType',
)
class StringType(BaseType[str]):
"""String type
:param min_length: invalidate when value length less than specified
:param max_length: invalidate when value length greater than specified
:param pattern: invalidate when value is not match to specified pattern
"""
MESSAGES: ty.ClassVar[Messages] = {
'type': "Must be a string",
'cast': "Couldn't cast to a string",
'min_length': "Must be no less than {0} characters in length",
'max_length': "Must be no greater than {0} characters in length",
'pattern': "Does not match the pattern"
}
TYPES: ty.ClassVar[Types] = (str, )
__slots__ = (
'min_length',
'max_length',
'pattern'
)
Number = ty.Union[int, float]
T_num = ty.TypeVar('T_num', int, float, Number)
class GenericNumberType(BaseType[T_num]):
"""Generic number type
:param minimum: invalidate when value less than specified minimum
:param maximum: Invalidate when value greater than specified maximum
:param exclusive_minimum: when True, it indicates that the range excludes the minimum value.
When False (or not included), it indicates that the range includes the minimum value
:param exclusive_maximum: when True, it indicates that the range excludes the maximum value.
When false (or not included), it indicates that the range includes the maximum value
:param multiple_of: invalidate when value is not multiple of specified
"""
MESSAGES: ty.ClassVar[Messages] = {
'type': "Must be a number",
'cast': "Couldn't cast to a number",
'minimum': "Is less than the minimum of {0}",
'exclusive_minimum': "Is less than or equal to the minimum of {0}",
'maximum': "Is greater than the maximum of {0}",
'exclusive_maximum': "Is greater than or equal to the maximum of {0}",
'multiple_of': "Is not a multiple of {0}"
}
TYPES: ty.ClassVar[Types] = (int, float)
__slots__ = (
'minimum',
'maximum',
'exclusive_minimum',
'exclusive_maximum',
'multiple_of'
)
class NumberType(GenericNumberType[Number]):
"""Number type"""
class IntegerType(GenericNumberType[int]):
"""Integer type"""
MESSAGES: ty.ClassVar[Messages] = {
'type': "Must be an integer",
'cast': "Couldn't cast to an integer"
}
TYPES: ty.ClassVar[Types] = (int, )
__slots__ = ()
class BooleanType(BaseType[bool]):
"""Boolean type"""
MESSAGES: ty.ClassVar[Messages] = {
'type': "Must be a boolean",
'cast': "Couldn't cast to a boolean"
}
TYPES: ty.ClassVar[Types] = (bool, )
__slots__ = ()
| [
2,
15069,
13130,
12,
42334,
1892,
2329,
317,
10977,
11421,
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,
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,
19720,
355,
1259,
198,
6738,
1233,
26791,
13,
22602,
1330,
965,
83,
672,
970,
198,
198,
6738,
24215,
1102,
62,
23701,
13,
26791,
1330,
2700,
62,
2536,
11,
17621,
33210,
3118,
291,
1098,
10707,
1098,
12331,
198,
198,
6738,
764,
8692,
1330,
31783,
11,
3254,
24765,
23004,
11,
43534,
11,
24897,
198,
6738,
764,
6978,
1330,
10644,
198,
6738,
764,
1069,
11755,
1330,
10011,
2611,
12331,
198,
6738,
764,
48277,
1330,
13047,
198,
198,
834,
439,
834,
796,
357,
198,
220,
220,
220,
705,
10100,
6030,
3256,
198,
220,
220,
220,
705,
15057,
3256,
198,
220,
220,
220,
705,
46189,
15057,
6030,
3256,
198,
220,
220,
220,
705,
15057,
6030,
3256,
198,
220,
220,
220,
705,
46541,
6030,
3256,
198,
220,
220,
220,
705,
46120,
13087,
6030,
3256,
198,
8,
628,
198,
4871,
10903,
6030,
7,
14881,
6030,
58,
2536,
60,
2599,
628,
220,
220,
220,
37227,
10100,
2099,
628,
220,
220,
220,
1058,
17143,
949,
62,
13664,
25,
12515,
378,
618,
1988,
4129,
1342,
621,
7368,
198,
220,
220,
220,
1058,
17143,
3509,
62,
13664,
25,
12515,
378,
618,
1988,
4129,
3744,
621,
7368,
198,
220,
220,
220,
1058,
17143,
3912,
25,
12515,
378,
618,
1988,
318,
407,
2872,
284,
7368,
3912,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
337,
1546,
4090,
48075,
25,
1259,
13,
9487,
19852,
58,
36479,
1095,
60,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
366,
34320,
307,
257,
4731,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2701,
10354,
366,
23722,
77,
470,
3350,
284,
257,
4731,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1084,
62,
13664,
10354,
366,
34320,
307,
645,
1342,
621,
1391,
15,
92,
3435,
287,
4129,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9806,
62,
13664,
10354,
366,
34320,
307,
645,
3744,
621,
1391,
15,
92,
3435,
287,
4129,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33279,
10354,
366,
13921,
407,
2872,
262,
3912,
1,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
24412,
47,
1546,
25,
1259,
13,
9487,
19852,
58,
31431,
60,
796,
357,
2536,
11,
1267,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1084,
62,
13664,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9806,
62,
13664,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33279,
6,
198,
220,
220,
220,
1267,
628,
198,
15057,
796,
1259,
13,
38176,
58,
600,
11,
12178,
60,
198,
198,
51,
62,
22510,
796,
1259,
13,
6030,
19852,
10786,
51,
62,
22510,
3256,
493,
11,
12178,
11,
7913,
8,
628,
198,
4871,
42044,
15057,
6030,
7,
14881,
6030,
58,
51,
62,
22510,
60,
2599,
628,
220,
220,
220,
37227,
46189,
1271,
2099,
628,
220,
220,
220,
1058,
17143,
5288,
25,
12515,
378,
618,
1988,
1342,
621,
7368,
5288,
198,
220,
220,
220,
1058,
17143,
5415,
25,
17665,
378,
618,
1988,
3744,
621,
7368,
5415,
198,
220,
220,
220,
1058,
17143,
8568,
62,
39504,
25,
618,
6407,
11,
340,
9217,
326,
262,
2837,
36833,
262,
5288,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1649,
10352,
357,
273,
407,
3017,
828,
340,
9217,
326,
262,
2837,
3407,
262,
5288,
1988,
198,
220,
220,
220,
1058,
17143,
8568,
62,
47033,
25,
618,
6407,
11,
340,
9217,
326,
262,
2837,
36833,
262,
5415,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1649,
3991,
357,
273,
407,
3017,
828,
340,
9217,
326,
262,
2837,
3407,
262,
5415,
1988,
198,
220,
220,
220,
1058,
17143,
3294,
62,
1659,
25,
12515,
378,
618,
1988,
318,
407,
3294,
286,
7368,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
337,
1546,
4090,
48075,
25,
1259,
13,
9487,
19852,
58,
36479,
1095,
60,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
366,
34320,
307,
257,
1271,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2701,
10354,
366,
23722,
77,
470,
3350,
284,
257,
1271,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
39504,
10354,
366,
3792,
1342,
621,
262,
5288,
286,
1391,
15,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41195,
62,
39504,
10354,
366,
3792,
1342,
621,
393,
4961,
284,
262,
5288,
286,
1391,
15,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
47033,
10354,
366,
3792,
3744,
621,
262,
5415,
286,
1391,
15,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41195,
62,
47033,
10354,
366,
3792,
3744,
621,
393,
4961,
284,
262,
5415,
286,
1391,
15,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
48101,
62,
1659,
10354,
366,
3792,
407,
257,
3294,
286,
1391,
15,
36786,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
24412,
47,
1546,
25,
1259,
13,
9487,
19852,
58,
31431,
60,
796,
357,
600,
11,
12178,
8,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
39504,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
47033,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41195,
62,
39504,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41195,
62,
47033,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
48101,
62,
1659,
6,
198,
220,
220,
220,
1267,
628,
198,
4871,
7913,
6030,
7,
46189,
15057,
6030,
58,
15057,
60,
2599,
628,
220,
220,
220,
37227,
15057,
2099,
37811,
628,
198,
4871,
34142,
6030,
7,
46189,
15057,
6030,
58,
600,
60,
2599,
628,
220,
220,
220,
37227,
46541,
2099,
37811,
628,
220,
220,
220,
337,
1546,
4090,
48075,
25,
1259,
13,
9487,
19852,
58,
36479,
1095,
60,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
366,
34320,
307,
281,
18253,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2701,
10354,
366,
23722,
77,
470,
3350,
284,
281,
18253,
1,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
24412,
47,
1546,
25,
1259,
13,
9487,
19852,
58,
31431,
60,
796,
357,
600,
11,
1267,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
7499,
628,
198,
4871,
41146,
6030,
7,
14881,
6030,
58,
30388,
60,
2599,
628,
220,
220,
220,
37227,
46120,
13087,
2099,
37811,
628,
220,
220,
220,
337,
1546,
4090,
48075,
25,
1259,
13,
9487,
19852,
58,
36479,
1095,
60,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
366,
34320,
307,
257,
25131,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2701,
10354,
366,
23722,
77,
470,
3350,
284,
257,
25131,
1,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
24412,
47,
1546,
25,
1259,
13,
9487,
19852,
58,
31431,
60,
796,
357,
30388,
11,
1267,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
7499,
198
] | 2.86034 | 1,296 |
import logging
import async_timeout
logger = logging.getLogger(__name__)
| [
11748,
18931,
198,
198,
11748,
30351,
62,
48678,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628
] | 3.166667 | 24 |
from alembic import op
import sqlalchemy as sa
"""empty message
Revision ID: 1e09e871fb65
Revises: ('0b4e7a8a7e64', '0701782c564d')
Create Date: 2019-03-28 23:08:21.960495
"""
# revision identifiers, used by Alembic.
revision = '1e09e871fb65'
down_revision = ('0b4e7a8a7e64', '0701782c564d')
| [
6738,
31341,
2022,
291,
1330,
1034,
198,
11748,
44161,
282,
26599,
355,
473,
198,
198,
37811,
28920,
3275,
198,
198,
18009,
1166,
4522,
25,
352,
68,
2931,
68,
23,
4869,
21855,
2996,
198,
18009,
2696,
25,
19203,
15,
65,
19,
68,
22,
64,
23,
64,
22,
68,
2414,
3256,
705,
2998,
486,
46519,
66,
20,
2414,
67,
11537,
198,
16447,
7536,
25,
13130,
12,
3070,
12,
2078,
2242,
25,
2919,
25,
2481,
13,
39277,
33781,
198,
198,
37811,
198,
198,
2,
18440,
42814,
11,
973,
416,
9300,
2022,
291,
13,
198,
260,
10178,
796,
705,
16,
68,
2931,
68,
23,
4869,
21855,
2996,
6,
198,
2902,
62,
260,
10178,
796,
19203,
15,
65,
19,
68,
22,
64,
23,
64,
22,
68,
2414,
3256,
705,
2998,
486,
46519,
66,
20,
2414,
67,
11537,
628,
198
] | 2.223881 | 134 |
import os
import pickle
from asgiref.sync import sync_to_async
@sync_to_async
| [
11748,
28686,
198,
11748,
2298,
293,
198,
6738,
355,
70,
557,
69,
13,
27261,
1330,
17510,
62,
1462,
62,
292,
13361,
198,
198,
31,
27261,
62,
1462,
62,
292,
13361,
198
] | 2.548387 | 31 |
import numpy as np
class ParamLine_py(object):
""" A 3D parametric line.
Parameters
----------
P0: ndarray(3,)
A tail point.
P1: ndarray(3,)
A head point.
Attributes
----------
P0
P1
u: ndarray(3,)
Show the direction of the parametric line
Examples
--------
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> from owcsimpy.geoutils.draw import draw
>>> from owcsimpy.geoobjects.bases.paramline_py import ParamLine_py as Line
>>> # Generate a line l
>>> l = Line(np.array([0.5,0.5,0.5]),np.ones(3))
>>> # Draw
>>> fig,ax = draw(lines=l,figsize=(5,6))
>>> # Get a point at t = 0.25
>>> P = l.getPoint(0.25)
>>> print("Point at t=0.25 is {}".format(P))
Point at t=0.25 is [0.625 0.625 0.625]
>>> # Draw
>>> x,y,z = P
>>> ax.scatter(x,y,z)
>>> plt.show()
.. plot::
:format: doctest
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> from owcsimpy.geoutils.draw import draw
>>> from owcsimpy.geoobjects.bases.paramline_py import ParamLine_py as Line
>>> # Generate a line l
>>> l = Line(np.array([0.5,0.5,0.5]),np.ones(3))
>>> # Draw
>>> fig,ax = draw(lines=l,figsize=(5,6))
>>> # Get a point at t = 0.25
>>> P = l.getPoint(0.25)
>>> print("Point at t=0.25 is {}".format(P))
>>> # Draw
>>> x,y,z = P
>>> ax.scatter(x,y,z)
>>> plt.show()
Notes
-----
A parametric line, :math:`l(t)`, is defined as:
.. math:: l(t) = P_0 + \mathbf{u} t, \mathrm{where}\ \mathbf{u} = P_1-P_0.
"""
def getPoint(self,t0):
""" Get a point at t=t0.
Returns
-------
ndarray(3,)
Return P0+u t0
"""
return self.P0+self.u*t0
def isValid(self,P):
""" Check wheter the point P is in line.
Returns
-------
bool
"""
up = P-self.P0 # u prime
return True if np.allclose(up,np.zeros(3)) else np.allclose(
up/np.linalg.norm(up),self.u/np.linalg.norm(self.u))
def getParam(self,P):
""" Get t of P. Or, find t s.t. P0+u t = P
Returns
-------
float or None
Return None if P is not in the line.
"""
# Check validity of P
if self.isValid(P):
idxnotzero = np.where(self.u!=0)[0]
return (P-self.P0)[idxnotzero]/self.u[idxnotzero]
else:
return None
| [
11748,
299,
32152,
355,
45941,
198,
198,
4871,
25139,
13949,
62,
9078,
7,
15252,
2599,
198,
220,
220,
220,
37227,
317,
513,
35,
5772,
19482,
1627,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
628,
220,
220,
220,
350,
15,
25,
299,
67,
18747,
7,
18,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
317,
7894,
966,
13,
198,
220,
220,
220,
350,
16,
25,
299,
67,
18747,
7,
18,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
317,
1182,
966,
13,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
350,
15,
198,
220,
220,
220,
350,
16,
198,
220,
220,
220,
334,
25,
299,
67,
18747,
7,
18,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
5438,
262,
4571,
286,
262,
5772,
19482,
1627,
628,
220,
220,
220,
21066,
198,
220,
220,
220,
24200,
198,
220,
220,
220,
13163,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
13163,
1330,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
220,
220,
220,
13163,
422,
12334,
6359,
320,
9078,
13,
469,
448,
4487,
13,
19334,
1330,
3197,
198,
220,
220,
220,
13163,
422,
12334,
6359,
320,
9078,
13,
469,
78,
48205,
13,
65,
1386,
13,
17143,
1370,
62,
9078,
1330,
25139,
13949,
62,
9078,
355,
6910,
198,
220,
220,
220,
13163,
1303,
2980,
378,
257,
1627,
300,
198,
220,
220,
220,
13163,
300,
796,
6910,
7,
37659,
13,
18747,
26933,
15,
13,
20,
11,
15,
13,
20,
11,
15,
13,
20,
46570,
37659,
13,
1952,
7,
18,
4008,
198,
220,
220,
220,
13163,
1303,
15315,
198,
220,
220,
220,
13163,
2336,
11,
897,
796,
3197,
7,
6615,
28,
75,
11,
5647,
7857,
16193,
20,
11,
21,
4008,
198,
220,
220,
220,
13163,
1303,
3497,
257,
966,
379,
256,
796,
657,
13,
1495,
198,
220,
220,
220,
13163,
350,
796,
300,
13,
1136,
12727,
7,
15,
13,
1495,
8,
198,
220,
220,
220,
13163,
3601,
7203,
12727,
379,
256,
28,
15,
13,
1495,
318,
23884,
1911,
18982,
7,
47,
4008,
198,
220,
220,
220,
6252,
379,
256,
28,
15,
13,
1495,
318,
685,
15,
13,
26704,
657,
13,
26704,
657,
13,
26704,
60,
198,
220,
220,
220,
13163,
1303,
15315,
198,
220,
220,
220,
13163,
2124,
11,
88,
11,
89,
796,
350,
198,
220,
220,
220,
13163,
7877,
13,
1416,
1436,
7,
87,
11,
88,
11,
89,
8,
198,
220,
220,
220,
13163,
458,
83,
13,
12860,
3419,
220,
220,
628,
220,
220,
220,
11485,
7110,
3712,
198,
220,
220,
220,
220,
220,
220,
1058,
18982,
25,
10412,
395,
628,
220,
220,
220,
220,
220,
220,
13163,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1330,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
422,
12334,
6359,
320,
9078,
13,
469,
448,
4487,
13,
19334,
1330,
3197,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
422,
12334,
6359,
320,
9078,
13,
469,
78,
48205,
13,
65,
1386,
13,
17143,
1370,
62,
9078,
1330,
25139,
13949,
62,
9078,
355,
6910,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1303,
2980,
378,
257,
1627,
300,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
300,
796,
6910,
7,
37659,
13,
18747,
26933,
15,
13,
20,
11,
15,
13,
20,
11,
15,
13,
20,
46570,
37659,
13,
1952,
7,
18,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1303,
15315,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2336,
11,
897,
796,
3197,
7,
6615,
28,
75,
11,
5647,
7857,
16193,
20,
11,
21,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1303,
3497,
257,
966,
379,
256,
796,
657,
13,
1495,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
350,
796,
300,
13,
1136,
12727,
7,
15,
13,
1495,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
3601,
7203,
12727,
379,
256,
28,
15,
13,
1495,
318,
23884,
1911,
18982,
7,
47,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1303,
15315,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2124,
11,
88,
11,
89,
796,
350,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
7877,
13,
1416,
1436,
7,
87,
11,
88,
11,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
458,
83,
13,
12860,
3419,
220,
220,
628,
198,
220,
220,
220,
11822,
198,
220,
220,
220,
37404,
198,
220,
220,
220,
317,
5772,
19482,
1627,
11,
1058,
11018,
25,
63,
75,
7,
83,
8,
47671,
318,
5447,
355,
25,
628,
198,
220,
220,
220,
11485,
10688,
3712,
300,
7,
83,
8,
796,
350,
62,
15,
1343,
3467,
11018,
19881,
90,
84,
92,
256,
11,
3467,
11018,
26224,
90,
3003,
32239,
3467,
11018,
19881,
90,
84,
92,
796,
350,
62,
16,
12,
47,
62,
15,
13,
628,
198,
220,
220,
220,
37227,
628,
198,
220,
220,
220,
825,
651,
12727,
7,
944,
11,
83,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3497,
257,
966,
379,
256,
28,
83,
15,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
299,
67,
18747,
7,
18,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8229,
350,
15,
10,
84,
256,
15,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
47,
15,
10,
944,
13,
84,
9,
83,
15,
628,
220,
220,
220,
825,
318,
47139,
7,
944,
11,
47,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6822,
483,
353,
262,
966,
350,
318,
287,
1627,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
20512,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
220,
628,
220,
220,
220,
220,
220,
220,
220,
510,
796,
350,
12,
944,
13,
47,
15,
1303,
334,
6994,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
611,
45941,
13,
439,
19836,
7,
929,
11,
37659,
13,
9107,
418,
7,
18,
4008,
2073,
45941,
13,
439,
19836,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
510,
14,
37659,
13,
75,
1292,
70,
13,
27237,
7,
929,
828,
944,
13,
84,
14,
37659,
13,
75,
1292,
70,
13,
27237,
7,
944,
13,
84,
4008,
628,
220,
220,
220,
825,
651,
22973,
7,
944,
11,
47,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3497,
256,
286,
350,
13,
1471,
11,
1064,
256,
264,
13,
83,
13,
350,
15,
10,
84,
256,
796,
350,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
12178,
393,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8229,
6045,
611,
350,
318,
407,
287,
262,
1627,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
19648,
286,
350,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
271,
47139,
7,
47,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
1662,
22570,
796,
45941,
13,
3003,
7,
944,
13,
84,
0,
28,
15,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
47,
12,
944,
13,
47,
15,
38381,
312,
87,
1662,
22570,
60,
14,
944,
13,
84,
58,
312,
87,
1662,
22570,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
198
] | 1.963883 | 1,329 |
from __future__ import annotations
from jsonclasses import jsonclass, types
@jsonclass
| [
6738,
11593,
37443,
834,
1330,
37647,
198,
6738,
33918,
37724,
1330,
33918,
4871,
11,
3858,
628,
198,
31,
17752,
4871,
628
] | 4.285714 | 21 |
from django.contrib.auth.models import User
from django.db.models.signals import pre_save, post_save, post_delete
from django.dispatch import receiver
from .models import Post, Subscriber
from .functions import notify_new_content, notify_new_subscriber
@receiver(post_save, sender=Post)
def send_mail_to_subscriber(sender, **kwargs):
"""
Sending message to subscribers when exist a new post.
When a post is created
"""
if kwargs.get('created', False):
post = kwargs.get("instance")
notify_new_content(post.id)
@receiver(post_save, sender=Subscriber)
def new_subscriber(sender, **kwargs):
"""
Sending message staff when exist a new subscriber.
"""
if kwargs.get('created', False):
subscriber = kwargs.get("instance")
notify_new_subscriber(subscriber.id)
| [
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
13,
12683,
874,
1330,
662,
62,
21928,
11,
1281,
62,
21928,
11,
1281,
62,
33678,
198,
6738,
42625,
14208,
13,
6381,
17147,
1330,
9733,
198,
6738,
764,
27530,
1330,
2947,
11,
3834,
1416,
24735,
198,
6738,
764,
12543,
2733,
1330,
19361,
62,
3605,
62,
11299,
11,
19361,
62,
3605,
62,
7266,
1416,
24735,
628,
198,
31,
260,
39729,
7,
7353,
62,
21928,
11,
29788,
28,
6307,
8,
198,
4299,
3758,
62,
4529,
62,
1462,
62,
7266,
1416,
24735,
7,
82,
2194,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
32038,
3275,
284,
18327,
618,
2152,
257,
649,
1281,
13,
198,
220,
220,
220,
1649,
257,
1281,
318,
2727,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
479,
86,
22046,
13,
1136,
10786,
25598,
3256,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1281,
796,
479,
86,
22046,
13,
1136,
7203,
39098,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
19361,
62,
3605,
62,
11299,
7,
7353,
13,
312,
8,
628,
198,
31,
260,
39729,
7,
7353,
62,
21928,
11,
29788,
28,
7004,
1416,
24735,
8,
198,
4299,
649,
62,
7266,
1416,
24735,
7,
82,
2194,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
32038,
3275,
3085,
618,
2152,
257,
649,
32944,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
479,
86,
22046,
13,
1136,
10786,
25598,
3256,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
32944,
796,
479,
86,
22046,
13,
1136,
7203,
39098,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
19361,
62,
3605,
62,
7266,
1416,
24735,
7,
7266,
1416,
24735,
13,
312,
8,
198
] | 2.75 | 300 |
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from .models import User, Agreement
# Register your models here.
admin.site.register(User, UserAdmin)
admin.site.register(Agreement)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
28482,
1330,
11787,
46787,
198,
198,
6738,
764,
27530,
1330,
11787,
11,
12729,
198,
198,
2,
17296,
534,
4981,
994,
13,
198,
198,
28482,
13,
15654,
13,
30238,
7,
12982,
11,
11787,
46787,
8,
198,
28482,
13,
15654,
13,
30238,
7,
10262,
10237,
8,
198
] | 3.444444 | 63 |
import sys
import os
import json
import traceback
import importlib
from flask import request, make_response, Blueprint, abort
from lifoid.config import settings
from lifoid.logging.mixin import ServiceLogger
from lifoid.constants import E_GET, E_POST
from lifoid.events import process_event
from lifoid.exceptions import (LifoidRequestForbiddenError,
LifoidRequestUnknownError)
sys.path.insert(0, os.getcwd())
logger = ServiceLogger()
try:
app_settings_module = importlib.import_module(
settings.lifoid_settings_module
)
logger.debug('Templates path: {}'.format(
app_settings_module.TEMPLATES_PATH))
webhook = Blueprint('webhook', __name__,
template_folder=app_settings_module.TEMPLATES_PATH)
except ImportError:
logger.error('No templates path configured')
webhook = Blueprint('webhook', __name__)
@webhook.route('/webhook', methods=['GET', 'POST'])
def index():
"""
Universal webhook endpoint for all messenger applications.
"""
logger.debug('Webhook blueprint invoked')
try:
if request.method == 'POST':
e_type = E_POST
data = request.get_data()
if data.startswith(b'payload'):
event = json.loads(request.form['payload'])
else:
event = json.loads(request.get_data())
elif request.method == 'GET':
e_type = E_GET
event = request.args
else:
return make_response('Request method not supported', 404)
logger.debug('{} {}'.format(e_type, event))
asynchronous = settings.pasync == 'yes'
resp, perf = process_event(e_type, event, asynchronous)
logger.info('Request processed in {}'.format(perf))
if resp is not None:
logger.debug('Http Response: {}'.format(resp))
return make_response(resp, 200)
return make_response('OK', 200)
except KeyError:
logger.error(traceback.format_exc())
logger.error('Missing key argument')
return make_response('Missing key argument', 404)
except LifoidRequestForbiddenError:
return abort(403)
except LifoidRequestUnknownError:
return make_response('Unknown request', 404)
except:
logger.error(request.get_data())
logger.error(traceback.format_exc())
return make_response('', 200)
| [
11748,
25064,
198,
11748,
28686,
198,
11748,
33918,
198,
11748,
12854,
1891,
198,
11748,
1330,
8019,
198,
6738,
42903,
1330,
2581,
11,
787,
62,
26209,
11,
39932,
11,
15614,
198,
6738,
3868,
1868,
13,
11250,
1330,
6460,
198,
6738,
3868,
1868,
13,
6404,
2667,
13,
19816,
259,
1330,
4809,
11187,
1362,
198,
6738,
3868,
1868,
13,
9979,
1187,
1330,
412,
62,
18851,
11,
412,
62,
32782,
198,
6738,
3868,
1868,
13,
31534,
1330,
1429,
62,
15596,
198,
6738,
3868,
1868,
13,
1069,
11755,
1330,
357,
43,
361,
1868,
18453,
1890,
37978,
12331,
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,
21073,
1868,
18453,
20035,
12331,
8,
198,
17597,
13,
6978,
13,
28463,
7,
15,
11,
28686,
13,
1136,
66,
16993,
28955,
198,
6404,
1362,
796,
4809,
11187,
1362,
3419,
198,
28311,
25,
198,
220,
220,
220,
598,
62,
33692,
62,
21412,
796,
1330,
8019,
13,
11748,
62,
21412,
7,
198,
220,
220,
220,
220,
220,
220,
220,
6460,
13,
36195,
1868,
62,
33692,
62,
21412,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
49706,
13,
24442,
10786,
12966,
17041,
3108,
25,
23884,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
598,
62,
33692,
62,
21412,
13,
51,
3620,
6489,
29462,
62,
34219,
4008,
198,
220,
220,
220,
3992,
25480,
796,
39932,
10786,
12384,
25480,
3256,
11593,
3672,
834,
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,
11055,
62,
43551,
28,
1324,
62,
33692,
62,
21412,
13,
51,
3620,
6489,
29462,
62,
34219,
8,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
49706,
13,
18224,
10786,
2949,
24019,
3108,
17839,
11537,
198,
220,
220,
220,
3992,
25480,
796,
39932,
10786,
12384,
25480,
3256,
11593,
3672,
834,
8,
628,
198,
31,
12384,
25480,
13,
38629,
10786,
14,
12384,
25480,
3256,
5050,
28,
17816,
18851,
3256,
705,
32782,
6,
12962,
198,
4299,
6376,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
14499,
3992,
25480,
36123,
329,
477,
31228,
5479,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
49706,
13,
24442,
10786,
13908,
25480,
30881,
24399,
11537,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2581,
13,
24396,
6624,
705,
32782,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
304,
62,
4906,
796,
412,
62,
32782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
2581,
13,
1136,
62,
7890,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1366,
13,
9688,
2032,
342,
7,
65,
6,
15577,
2220,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1785,
796,
33918,
13,
46030,
7,
25927,
13,
687,
17816,
15577,
2220,
6,
12962,
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,
1785,
796,
33918,
13,
46030,
7,
25927,
13,
1136,
62,
7890,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2581,
13,
24396,
6624,
705,
18851,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
304,
62,
4906,
796,
412,
62,
18851,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1785,
796,
2581,
13,
22046,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
10786,
18453,
2446,
407,
4855,
3256,
32320,
8,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
10786,
90,
92,
23884,
4458,
18982,
7,
68,
62,
4906,
11,
1785,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
39354,
796,
6460,
13,
44429,
13361,
6624,
705,
8505,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1217,
11,
23035,
796,
1429,
62,
15596,
7,
68,
62,
4906,
11,
1785,
11,
39354,
8,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
18453,
13686,
287,
23884,
4458,
18982,
7,
525,
69,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1217,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
10786,
43481,
18261,
25,
23884,
4458,
18982,
7,
4363,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
7,
4363,
11,
939,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
10786,
11380,
3256,
939,
8,
198,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7,
40546,
1891,
13,
18982,
62,
41194,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
10786,
43730,
1994,
4578,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
10786,
43730,
1994,
4578,
3256,
32320,
8,
198,
220,
220,
220,
2845,
21073,
1868,
18453,
1890,
37978,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
15614,
7,
31552,
8,
198,
220,
220,
220,
2845,
21073,
1868,
18453,
20035,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
10786,
20035,
2581,
3256,
32320,
8,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7,
25927,
13,
1136,
62,
7890,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7,
40546,
1891,
13,
18982,
62,
41194,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
787,
62,
26209,
10786,
3256,
939,
8,
198
] | 2.49226 | 969 |
# flake8: noqa
from .version import __version__
from .authorized_service import AuthorizedService, get_email_and_key
| [
2,
781,
539,
23,
25,
645,
20402,
198,
6738,
764,
9641,
1330,
11593,
9641,
834,
198,
198,
6738,
764,
19721,
62,
15271,
1330,
6434,
1143,
16177,
11,
651,
62,
12888,
62,
392,
62,
2539,
198
] | 3.371429 | 35 |
from collections import UserDict
from copy import copy
from . import *
class TagContainer(UserDict):
"""
Manages a coherent group of tags
Instances are callable. That syntax is the preferred way to get a tag, since
it will always return a tag object. Accessing an undeclared tag in this way
will return an UnknownTag object instead of raising an error.
This object can also be accessed like a normal dict.
"""
def __init__(self):
"""
Create a new tag container
All tag containers start with a special DescriptionTag element for
consistency.
"""
super().__init__()
self._add_taglike(DescriptionTag)
self.problems = []
def __call__(self, tag_name: str):
"""
Get a tag by its name
Tags which have already been defined will be returned as-is. Undefined
tag names are assigned an UnknownTag object, which is then returned.
Args:
tag_name (str): Name of the tag to fetch
Returns:
A Tag or UnknownTag object
"""
tag = self.data.get(tag_name)
if tag is None:
tag = UnknownTag(tag_name)
self.append(tag)
return tag
def append(self, tag):
"""
Add a tag to this container
The tag will be indexed by its name
Args:
tag (Tag): A tag object
"""
if tag.name in self.data:
return
self.data[tag.name] = tag
def update(self, values: dict):
"""
Update multiple tags using data from the values dict
Args:
values (dict): Dictionary of lists whose keys are tag names
"""
for key, data in values.items():
self(key).update(data)
def all(self):
"""
Iterate over the stored tag objects
Returns:
Iterator for the stored tag objects
"""
return iter(self.data.values())
def names(self):
"""
Get a view of the tag names
Returns:
Dictionary view of the saved tag names
"""
return self.data.keys()
def present(self):
"""
Create a new container with only the tags marked as present
Returns:
TagContainer object with only present tags
"""
new_container = copy(self)
new_container.data = {k: v for k, v in self.data.items() if v.present}
return new_container
def _add_taglike(self, klass, *args, **kwargs):
"""
Internal method to create and append a new tag
Args:
klass (object): Tag class to create
args, kwargs: Other arguments as appropriate for the tag to create
"""
self.append(klass(*args, **kwargs))
def add_tag(self, *args, **kwargs):
"""
Add a new tag
"""
self._add_taglike(Tag, *args, **kwargs)
def add_flag(self, *args, **kwargs):
"""
Add a new flag
"""
self._add_taglike(Flag, *args, **kwargs)
def add_group(self, *args, **kwargs):
"""
Add a new group tag
"""
self._add_taglike(GroupTag, *args, **kwargs)
@property
def valid(self):
"""
bool: Whether this tag is internally valid
This property is only meaningful after calling validate()
"""
return len(self.problems) == 0
def validate(self, strict: bool=False):
"""
Validate all of the tags in this container
Args:
strict (bool): Whether to report non-critical errors and omissions
Returns:
True if this tag has no validation problems, false if not
"""
self.problems = []
for key, tag in self.data.items():
tag.validate(strict=strict)
self.problems.extend(tag.problems)
if key != tag.name:
self.problems.append("Tag '{}' has wrong key: '{}'".format(tag.name, key))
return self.valid
def sanitize(self):
"""
Ask all tags to remove their hidden values
Calls sanitize on each tag
"""
for tag in self.values():
tag.sanitize()
| [
6738,
17268,
1330,
11787,
35,
713,
198,
6738,
4866,
1330,
4866,
198,
198,
6738,
764,
1330,
1635,
198,
198,
4871,
17467,
29869,
7,
12982,
35,
713,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1869,
1095,
257,
24870,
1448,
286,
15940,
628,
220,
220,
220,
2262,
1817,
389,
869,
540,
13,
1320,
15582,
318,
262,
9871,
835,
284,
651,
257,
7621,
11,
1201,
198,
220,
220,
220,
340,
481,
1464,
1441,
257,
7621,
2134,
13,
8798,
278,
281,
44192,
565,
1144,
7621,
287,
428,
835,
198,
220,
220,
220,
481,
1441,
281,
16185,
24835,
2134,
2427,
286,
8620,
281,
4049,
13,
628,
220,
220,
220,
770,
2134,
460,
635,
307,
17535,
588,
257,
3487,
8633,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
13610,
257,
649,
7621,
9290,
628,
220,
220,
220,
220,
220,
220,
220,
1439,
7621,
16472,
923,
351,
257,
2041,
12489,
24835,
5002,
329,
198,
220,
220,
220,
220,
220,
220,
220,
15794,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
15003,
834,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
12985,
2339,
7,
11828,
24835,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1676,
22143,
796,
17635,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
7621,
62,
3672,
25,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
7621,
416,
663,
1438,
628,
220,
220,
220,
220,
220,
220,
220,
44789,
543,
423,
1541,
587,
5447,
481,
307,
4504,
355,
12,
271,
13,
13794,
18156,
198,
220,
220,
220,
220,
220,
220,
220,
7621,
3891,
389,
8686,
281,
16185,
24835,
2134,
11,
543,
318,
788,
4504,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
62,
3672,
357,
2536,
2599,
6530,
286,
262,
7621,
284,
21207,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
17467,
393,
16185,
24835,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
7621,
796,
2116,
13,
7890,
13,
1136,
7,
12985,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
796,
16185,
24835,
7,
12985,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
33295,
7,
12985,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7621,
628,
220,
220,
220,
825,
24443,
7,
944,
11,
7621,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
257,
7621,
284,
428,
9290,
628,
220,
220,
220,
220,
220,
220,
220,
383,
7621,
481,
307,
41497,
416,
663,
1438,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
357,
24835,
2599,
317,
7621,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
13,
3672,
287,
2116,
13,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7890,
58,
12985,
13,
3672,
60,
796,
7621,
628,
220,
220,
220,
825,
4296,
7,
944,
11,
3815,
25,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10133,
3294,
15940,
1262,
1366,
422,
262,
3815,
8633,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3815,
357,
11600,
2599,
28261,
286,
8341,
3025,
8251,
389,
7621,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
1366,
287,
3815,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
7,
2539,
737,
19119,
7,
7890,
8,
628,
220,
220,
220,
825,
477,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40806,
378,
625,
262,
8574,
7621,
5563,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40806,
1352,
329,
262,
8574,
7621,
5563,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
11629,
7,
944,
13,
7890,
13,
27160,
28955,
628,
220,
220,
220,
825,
3891,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
1570,
286,
262,
7621,
3891,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28261,
1570,
286,
262,
7448,
7621,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
7890,
13,
13083,
3419,
628,
220,
220,
220,
825,
1944,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
13610,
257,
649,
9290,
351,
691,
262,
15940,
7498,
355,
1944,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17467,
29869,
2134,
351,
691,
1944,
15940,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
34924,
796,
4866,
7,
944,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
34924,
13,
7890,
796,
1391,
74,
25,
410,
329,
479,
11,
410,
287,
2116,
13,
7890,
13,
23814,
3419,
611,
410,
13,
25579,
92,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
649,
62,
34924,
628,
220,
220,
220,
825,
4808,
2860,
62,
12985,
2339,
7,
944,
11,
479,
31172,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
18628,
2446,
284,
2251,
290,
24443,
257,
649,
7621,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
31172,
357,
15252,
2599,
17467,
1398,
284,
2251,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
11,
479,
86,
22046,
25,
3819,
7159,
355,
5035,
329,
262,
7621,
284,
2251,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
33295,
7,
74,
31172,
46491,
22046,
11,
12429,
46265,
22046,
4008,
628,
220,
220,
220,
825,
751,
62,
12985,
7,
944,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
257,
649,
7621,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
12985,
2339,
7,
24835,
11,
1635,
22046,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
825,
751,
62,
32109,
7,
944,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
257,
649,
6056,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
12985,
2339,
7,
34227,
11,
1635,
22046,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
825,
751,
62,
8094,
7,
944,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
257,
649,
1448,
7621,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
12985,
2339,
7,
13247,
24835,
11,
1635,
22046,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
4938,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
20512,
25,
10127,
428,
7621,
318,
20947,
4938,
628,
220,
220,
220,
220,
220,
220,
220,
770,
3119,
318,
691,
11570,
706,
4585,
26571,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18896,
7,
944,
13,
1676,
22143,
8,
6624,
657,
628,
220,
220,
220,
825,
26571,
7,
944,
11,
7646,
25,
20512,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3254,
20540,
477,
286,
262,
15940,
287,
428,
9290,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7646,
357,
30388,
2599,
10127,
284,
989,
1729,
12,
34666,
8563,
290,
267,
8481,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6407,
611,
428,
7621,
468,
645,
21201,
2761,
11,
3991,
611,
407,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1676,
22143,
796,
17635,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
7621,
287,
2116,
13,
7890,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
13,
12102,
378,
7,
301,
2012,
28,
301,
2012,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1676,
22143,
13,
2302,
437,
7,
12985,
13,
1676,
22143,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
14512,
7621,
13,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1676,
22143,
13,
33295,
7203,
24835,
705,
90,
92,
6,
468,
2642,
1994,
25,
705,
90,
92,
6,
1911,
18982,
7,
12985,
13,
3672,
11,
1994,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
12102,
628,
220,
220,
220,
825,
5336,
270,
1096,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16981,
477,
15940,
284,
4781,
511,
7104,
3815,
628,
220,
220,
220,
220,
220,
220,
220,
27592,
5336,
270,
1096,
319,
1123,
7621,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
7621,
287,
2116,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
13,
12807,
270,
1096,
3419,
198
] | 2.29801 | 1,859 |
#
# apologies for the camelCase - the previous version was in JS
import dateutil.parser
import datetime
from datetime import date, time
from time import sleep
import http.client
import xml.etree.ElementTree as ET
## ''Aquila 6 April 2009 > 5 mag
# 42.3476°N 13.3800°ECoordinates: 42.3476°N 13.3800°E[1]
# http://webservices.ingv.it/fdsnws/event/1/query?starttime=2009-04-01T00:00:00&endtime=2009-04-10T00:00:00
# curl -i "http://webservices.ingv.it/fdsnws/event/1/query?starttime=2010-01-01T00:00:00&endtime=2010-01-01T06:00:00"
# using low-level version to log connection issues
if __name__ == "__main__":
INGV().main()
| [
2,
198,
2,
32920,
329,
262,
41021,
20448,
532,
262,
2180,
2196,
373,
287,
26755,
198,
198,
11748,
3128,
22602,
13,
48610,
198,
11748,
4818,
8079,
198,
6738,
4818,
8079,
1330,
3128,
11,
640,
198,
6738,
640,
1330,
3993,
198,
198,
11748,
2638,
13,
16366,
198,
198,
11748,
35555,
13,
316,
631,
13,
20180,
27660,
355,
12152,
628,
220,
220,
220,
220,
220,
220,
220,
22492,
10148,
32,
43652,
718,
3035,
3717,
1875,
642,
2153,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5433,
13,
2682,
4304,
7200,
45,
1511,
13,
2548,
405,
7200,
2943,
78,
585,
17540,
25,
5433,
13,
2682,
4304,
7200,
45,
1511,
13,
2548,
405,
7200,
36,
58,
16,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2638,
1378,
732,
1443,
712,
1063,
13,
278,
85,
13,
270,
14,
69,
9310,
77,
18504,
14,
15596,
14,
16,
14,
22766,
30,
9688,
2435,
28,
10531,
12,
3023,
12,
486,
51,
405,
25,
405,
25,
405,
5,
437,
2435,
28,
10531,
12,
3023,
12,
940,
51,
405,
25,
405,
25,
405,
198,
198,
2,
29249,
532,
72,
366,
4023,
1378,
732,
1443,
712,
1063,
13,
278,
85,
13,
270,
14,
69,
9310,
77,
18504,
14,
15596,
14,
16,
14,
22766,
30,
9688,
2435,
28,
10333,
12,
486,
12,
486,
51,
405,
25,
405,
25,
405,
5,
437,
2435,
28,
10333,
12,
486,
12,
486,
51,
3312,
25,
405,
25,
405,
1,
628,
220,
220,
220,
1303,
1262,
1877,
12,
5715,
2196,
284,
2604,
4637,
2428,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
3268,
37094,
22446,
12417,
3419,
198
] | 2.428571 | 273 |
'''
Script that tests a trained models on its training dataset. It does the same
testing routine as the one in the overall utilities_models_tf.py script.
It saves
¤ the information about the test for easy later plotting
¤ ROC (per-class and overall using micro and macro average)
¤ PP curve (per-class and overall using micro and macro average)
¤ summary of performance for easy read of the final scores
Steps
1 - get paths and models to test
2 - load testing dataset
3 - get predictions using the test function in the utilities_models_tf.py
4 - plot and save confusion matrix
5 - plot and save ROC curve
6 - save detailed info of the testing and summary
'''
import os
import sys
import cv2
import glob
import json
import time
import pickle
import random
import pathlib
import argparse
import importlib
import numpy as np
from datetime import datetime
from collections import OrderedDict
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes
from mpl_toolkits.axes_grid1.inset_locator import mark_inset
import tensorflow as tf
from tensorflow.keras.utils import to_categorical
from tensorflow.keras.models import load_model
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' # or any {'0', '1', '2'}
# local imports
import utilities
import utilities_models_tf
## 1 - get models information and additional files
parser = argparse.ArgumentParser(description='Script that prints a summary of the model perfomance.')
parser.add_argument('-m','--model_path' ,required=True, help='Specify the folder where the trained model is located')
parser.add_argument('-d','--dataset_path' ,required=False, help='Specify where the dataset is located', default=False)
parser.add_argument('-mv','--model_version' ,required=False, help='Specify if to run the training on the best model (best) or the last (last)', default="best")
args = parser.parse_args()
model_path = args.model_path
dataset_path = args.dataset_path
model_version = args.model_version
# # # DEBUG
# model_path = '/flush/iulta54/Research/P3_OCT_SPLIT_PROPERLY_YOUR_DATA/trained_models/LightOCT_per_image_split_5_folds_rkf_10_lr0.0001_batch64_AIIMS_rls_True'
# dataset_path = "/flush/iulta54/Research/Data/OCT/AIIMS_Dataset/original"
# model_version = "best"
title="Testing script"
print(f'\n{"-"*len(title)}')
print(f'{title}')
print(f'{"-"*len(title)}\n')
# check forlders
if not os.path.isdir(model_path):
raise ValueError(f'Model not found. Given {model_path}')
else:
# check that the configuration file is in place
if not os.path.isfile(os.path.join(model_path,'config.json')):
raise ValueError(f'Configuration file not found for the given model. Check that the model was configured and trained. Given {os.path.join(model_path,"config.json")}')
else:
print("Model and config file found.")
# check that the model_version setting is a correct one (best, last, ensamble-not jet implemented)
if not any([model_version==s for s in ["best", "last", "ensamble"]]):
raise ValueError(f'The given model version for the testing is unknown. Given {model_version}, expected best, last or ensamble')
print(f'Working on model {os.path.basename(model_path)}')
print(f'Model configuration set for testing: {model_version}')
## 2 - load testing dataset
importlib.reload(utilities)
# load configuration file
with open(os.path.join(model_path,'config.json')) as json_file:
config = json.load(json_file)
config['label_description'] = config['unique_labels']
if dataset_path is False:
dataset_path = config['dataset_folder']
# check if dataset folder
if not os.path.isdir(dataset_path):
raise ValueError(f'Dataset path not found. Given {dataset_path}')
else:
print('Dataset path found.')
# take one testing
# make sure that the files point to this system dataset
# fix names based on the given dataset path
if any([config['dataset_type'] == 'retinal', config['dataset_type'] == 'Kermany']):
if config['dataset_split_strategy'] == 'original':
idx = 4
else:
idx = 3
elif config['dataset_type'] == 'AIIMS':
idx = 4
elif config['dataset_type'] == 'Srinivas':
idx = 5
test_img= []
# build file names to point to this given dataset
for f in config['test']:
aus = [pathlib.Path(f).parts[-i] for i in reversed(range(idx))][0:-1]
aus.insert(0, dataset_path)
test_img.append(os.path.join(*aus))
# create generator based on model specifications and dataset
if any([config['dataset_type'] == 'retinal', config['dataset_type'] == 'Kermany']):
data_gen = utilities.Kermany_data_gen
elif config['dataset_type'] == 'AIIMS':
data_gen = utilities.AIIMS_data_gen
elif config['dataset_type'] == 'Srinivas':
data_gen = utilities.Srinivas_data_gen
test_dataset = data_gen(test_img,
unique_labels=config['unique_labels'],
batch_size=16,
training=False,
channels=config['n_channels'],
input_size=config['input_size'],
random_label_experiment=config['random_label_experiment'],
random_label_experiment_seed=291209)
## perform testing for each fold the model was trained on
importlib.reload(utilities_models_tf)
test_fold_summary = {}
folds = glob.glob(os.path.join(model_path,"fold_*"))
# get the right model based on the model_version_specification
if model_version=="best":
model_name_version = "model.tf"
elif model_version=="last":
model_name_version = "last_model.tf"
for idx, f in enumerate(folds):
print(f'Working on fold {idx+1}/{len(folds)}')
# load model
if os.path.exists(os.path.join(f, model_name_version)):
model = tf.keras.models.load_model(os.path.join(f, model_name_version), compile=False)
else:
raise Exception('Model not found')
test_gt, test_prediction, test_time = utilities_models_tf.test_independent(model, config, test_dataset)
test_fold_summary[idx]={
'ground_truth':np.argmax(test_gt.numpy(), axis=-1),
'prediction':test_prediction.numpy(),
'test_time':float(test_time)
}
## save and plot
from collections import OrderedDict
from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes
from mpl_toolkits.axes_grid1.inset_locator import mark_inset
'''
Saving overall cross validation test results and images:
- Confisuion matrix
- ROC curve
- Precision-Recall curve
- test summary file with the prediction for every test image (test_summary.txt)
Here add also the information needed to re-plot the ROC and PP curves (fpr,
tpr, roc_auc, precision and recall - micro and macro average)
The test_summary.txt file is a dictionary with the following entries:
- model_name: string
- labels: list of the true values fot the tested images
- fold_test_values: list containing the predictions for every fold (list of lists)
- test_time: string
- test date: string
- accuracy: float
- false_positive_rate: list containing the fpr for every class (list of lists)
- false_positive_rate_micro_avg: list containing the micro average fpr (used for the overall roc plot)
- false_positive_rate_macro_avg: list containing the macro average fpr (used for the overall roc plot)
- true_positive_rate: list containing the tpr for every class (list of lists)
- true_positive_rate_micro_avg: list containing the micro average tpr (used for the overall roc plot)
- true_positive_rate_macro_avg: list containing the macro average tpr (used for the overall roc plot)
- precision: list containing the precision values for every class to plot the PP (list of lists)
- precision_micro_avg: list of overall micro average of precision
- average_precision: average precision value computed using micro average
- recall: list containing the recall value for every class to plot the PP (list of lists)
- recall_micro_avg: list of overall micro average of recall
- F1: list of micro and macro average f1-score
Since the full test_summary file is long to open, the scores are also saved in a separate file for easy access
scores_test_summary.txt
'''
print(f'Saving information...')
# ############# save the information that is already available
test_summary = OrderedDict()
# for backwards compatibility
if config['number_crossvalidation_repetitions']:
n_cv = config['N_FOLDS']*config['number_crossvalidation_repetitions']
else:
n_cv = config['N_FOLDS']
test_summary['model_name'] = config['model_save_name']
test_summary['labels'] = [int(i) for i in test_fold_summary[0]['ground_truth']]
test_summary['folds_test_logits_values'] = [test_fold_summary[cv]['prediction'].tolist() for cv in range(n_cv)]
test_summary['test_time'] = utilities.tictoc_from_time(np.sum([test_fold_summary[cv]['test_time'] for cv in range(n_cv)]))
test_summary['test_model_version'] = model_version
test_summary['test_date'] = time.strftime("%Y%m%d-%H%M%S")
# ############ plot and save confucion matrix
ensemble_pred_argmax = []
ensemble_pred_logits = []
# compute ensemble
# compute the logits mean along the folds
ensemble_pred_logits = np.array(test_summary['folds_test_logits_values']).mean(axis=0)
# compute argmax prediction
ensemble_pred_argmax = np.argmax(ensemble_pred_logits, axis=1)
acc = utilities.plotConfusionMatrix(test_summary['labels'], ensemble_pred_argmax,
classes=config['label_description'],
savePath=model_path,
saveName=f'ConfusionMatrix_{model_version}_model',
draw=False)
# ############ plot and save ROC curve
fpr, tpr, roc_auc = utilities.plotROC(test_summary['labels'], ensemble_pred_logits,
classes=config['label_description'],
savePath=model_path,
saveName=f'Multiclass_ROC_{model_version}_model',
draw=False)
# make elements of the dictionary to be lists for saving
for key, value in fpr.items():
fpr[key]=value.tolist()
for key, value in tpr.items():
tpr[key]=value.tolist()
for key, value in roc_auc.items():
roc_auc[key]=value.tolist()
# ############ plot and save PR curve
precision, recall, average_precision, F1 = utilities.plotPR(test_summary['labels'],
ensemble_pred_logits,
classes=config['label_description'],
savePath=model_path,
saveName=f'Multiclass_PR_{model_version}_model',
draw=False)
# make elements of the dictionary to be lists for saving
for key, value in precision.items():
precision[key]=value.tolist()
for key, value in recall.items():
recall[key]=value.tolist()
# save all the information in the test summary
test_summary['accuracy'] = acc
# test_summary['false_positive_rate'] = [fpr[i].tolist() for i in range(len(class_labels))]
test_summary['false_positive_rate'] = fpr
# test_summary['false_positive_rate_micro_avg'] = fpr['micro'].tolist()
# test_summary['false_positive_rate_macro_avg'] = fpr['macro'].tolist()
test_summary['true_positive_rate'] = tpr
# test_summary['true_positive_rate'] = [tpr[i].tolist() for i in range(len(class_labels))]
# test_summary['true_positive_rate_micro_avg'] = tpr['micro'].tolist()
# test_summary['true_positive_rate_macro_avg'] = tpr['macro'].tolist()
test_summary['roc_auc'] = roc_auc
test_summary['precision'] = precision
# test_summary['precision'] = [precision[i].tolist() for i in range(len(class_labels))]
# test_summary['precision_micro_avg'] = precision['micro'].tolist()
test_summary['recall'] = recall
# test_summary['recall'] = [recall[i].tolist() for i in range(len(class_labels))]
# test_summary['recall_micro_avg'] = recall['micro'].tolist()
test_summary['average_precision'] = average_precision
test_summary['F1'] = F1
# save summary file
with open(os.path.join(model_path,f'{model_version}_model_version_test_summary.txt'), 'w') as fp:
json.dump(test_summary, fp)
## save summary (can be improved, but using the routine from print_model_performance)
from sklearn.metrics import average_precision_score, recall_score, roc_auc_score, f1_score, confusion_matrix, accuracy_score, matthews_corrcoef
def get_metrics(true_logits, pred_logits, average='macro'):
'''
Utility that given confusion matrics, returns a dictionary containing:
tptnfpfn : overall TP, TN, FP, FN values for each of the classes
precision (specificity) : for each of the classes
recall (sensitivity) : for each of the classes
f1-score : for each of the classes
auc : for each of the classes
overall_acc : over all classes
overall_specificity : over all classes
overall_precision : over all classes
overall_f1-score : over all classes
overall_auc : over all classes
'''
# compute confusion matrix
cnf_matrix = confusion_matrix(np.argmax(true_logits,-1), np.argmax(pred_logits, -1))
# compute TP, TN, FP, FN
FP = (cnf_matrix.sum(axis=0) - np.diag(cnf_matrix)).astype(float)
FN = (cnf_matrix.sum(axis=1) - np.diag(cnf_matrix)).astype(float)
TP = (np.diag(cnf_matrix)).astype(float)
TN = (cnf_matrix.sum() - (FP + FN + TP)).astype(float)
# compute per class metrics
summary_dict = {
'precision': TN / (FP+TN),
'recall': TP / (TP+FN),
'accuracy': (TP+TN) / (TP+TN+FP+FN),
'f1-score': TP / (TP + 0.5*(FP+FN)),
'auc': roc_auc_score(true_logits, pred_logits, average=None),
}
# compute overall metrics
# note that these metrics, especially those that depend on a threshold,
# will the average metrics over all the tresholds and will be different
# compared to the single threshold computed above (threshold=0.5)
summary_dict['overall_precision']=average_precision_score(true_logits,
pred_logits,
average=average)
summary_dict['overall_recall']=recall_score(np.argmax(true_logits,-1),
np.argmax(pred_logits,-1),
average=average)
summary_dict['overall_accuracy']=accuracy_score(np.argmax(true_logits,-1),
np.argmax(pred_logits,-1))
summary_dict['overall_f1-score']=f1_score(np.argmax(true_logits,-1),
np.argmax(pred_logits,-1),
average=average)
summary_dict['overall_auc']=roc_auc_score(true_logits,
pred_logits,
multi_class='ovr',
average=average)
summary_dict['matthews_correlation_coef']=matthews_corrcoef(np.argmax(true_logits,-1),
np.argmax(pred_logits,-1),)
return summary_dict
n_folds = len(folds)
print()
labels = np.eye(np.unique(test_summary['labels']).shape[0])[test_summary['labels']]
pred_logits = test_summary['folds_test_logits_values']
# Computupe per fold performance
per_fold_performance = []
for f in range(len(folds)):
per_fold_performance.append(get_metrics(labels, pred_logits[f]))
# compute ensamble performance
# compute the logits mean along the folds
ensemble_pred_logits = np.array(pred_logits).mean(axis=0)
# compute argmax prediction
ensemble_pred_argmax = np.argmax(ensemble_pred_logits, axis=1)
performance_ensamble = get_metrics(labels, ensemble_pred_logits)
# ######################### printing on file
summary = open(os.path.join(model_path,f'{model_version}_model_version_short_test_summary.txt'), 'w')
summary.write(f'\nModel Name: {os.path.basename(model_path)}\n\n')
# add test time overall and per image
average_test_time = np.mean([test_fold_summary[cv]['test_time'] for cv in range(n_cv)])
average_test_time_per_image = np.mean([test_fold_summary[cv]['test_time'] for cv in range(n_cv)])/labels.shape[0]
summary.write(f'Overall model test time (average over folds): {utilities.tictoc_from_time(average_test_time)}\n')
summary.write(f'Average test time per image (average over folds): {utilities.tictoc_from_time(average_test_time_per_image)}\n\n')
# print a summary of the testing per fold, class and ensamble
keys = ['precision','recall', 'accuracy', 'f1-score', 'auc']
max_len_k=max([len(k) for k in keys])
classes = config['label_description']
max_len_c=max(max([len(k) for k in classes]),len('Overall'))
max_len_f=max([len(s) for s in ["Fold", "Average","STD","Ensamble"]])
# build dict that holds the avg of all metrics
avg_dict = {k:[] for k in keys}
# build headers strings
fold_str = f'{"Fold":^{max_len_f}}'
class_str = f'{"Class":^{max_len_c}}'
keys_str = ''.join([f'{k.capitalize():^{max_len_k+2}}' for k in keys])
# start printing
summary.write(f'\n{"¤"*(max_len_f+max_len_c+len(keys_str))}'+'\n')
summary.write(f'{"¤ Per-fold metrics ¤":^{(max_len_f+max_len_c+len(keys_str))}}'+'\n')
summary.write(f'{"¤"*(max_len_f+max_len_c+len(keys_str))}\n')
# print header
summary.write(fold_str+class_str+keys_str+'\n')
# print per fold and class metrics
for idx, fp in enumerate(per_fold_performance):
fold_num_str = f'{str(idx+1):^{max_len_f}}'
# print per class performance
for idc, c in enumerate(classes):
class_metrics = ''.join([f'{str(round(fp[k][idc],3)):^{max_len_k+2}}' for k in keys])
if idc == 0:
summary.write(fold_num_str+f'{c:^{max_len_c}}'+class_metrics+'\n')
else:
summary.write(f'{" ":^{max_len_f}}'+f'{c:^{max_len_c}}'+class_metrics+'\n')
# print overall performance
summary.write(f'{"-"*(max_len_f+max_len_c+len(keys_str))}'+'\n')
overall_metric_str = ''.join([f'{str(round(fp["overall_"+k],3)):^{max_len_k+2}}' for k in keys])
summary.write(fold_num_str+f'{"Overall":^{max_len_c}}'+overall_metric_str+'\n')
summary.write(f'{"-"*(max_len_f+max_len_c+len(keys_str))}'+'\n\n')
# save overall metrics for later
[avg_dict[k].append(fp['overall_'+k]) for k in keys]
# print average overall metrics for the folds
avg_overall_metric_str = ''.join([f'{str(round(np.mean(avg_dict[k]),3)):^{max_len_k+2}}' for k in keys])
std_overall_metric_str = ''.join([f'{str(round(np.std(avg_dict[k]),3)):^{max_len_k+2}}' for k in keys])
summary.write(f'{"="*(max_len_f+max_len_c+len(keys_str))}'+'\n')
summary.write(fold_str+class_str+keys_str+'\n')
summary.write(f'{"Average":^{max_len_f}}'+f'{"":^{len(class_str)}}'+avg_overall_metric_str+'\n')
summary.write(f'{"STD":^{max_len_f}}'+f'{"":^{len(class_str)}}'+std_overall_metric_str+'\n')
# plot ensamble metrics
summary.write(f'\n{"¤"*(max_len_f+max_len_c+len(keys_str))}'+'\n')
summary.write(f'{"¤ Ensamble metrics ¤":^{(max_len_f+max_len_c+len(keys_str))}}'+'\n')
summary.write(f'{"¤"*(max_len_f+max_len_c+len(keys_str))}\n')
# print header
summary.write(f'{"Ensamble":^{max_len_f}}'+class_str+keys_str+'\n')
# print per class performance
fp = performance_ensamble
for idc, c in enumerate(classes):
class_metrics = ''.join([f'{str(round(fp[k][idc],3)):^{max_len_k+2}}' for k in keys])
summary.write(f'{" ":^{max_len_f}}'+f'{c:^{max_len_c}}'+class_metrics+'\n')
# print overall performance
summary.write(f'{"-"*(max_len_f+max_len_c+len(keys_str))}'+'\n')
overall_metric_str = ''.join([f'{str(round(fp["overall_"+k],3)):^{max_len_k+2}}' for k in keys])
summary.write(f'{" ":^{max_len_f}}'+f'{"Overall":^{max_len_c}}'+overall_metric_str+'\n')
summary.close()
## print on terminal
print('Ensemble preformance\n')
max_len = max([len(key) for key in performance_ensamble.keys()])
[print(f'{key:{max_len}s}: {value}') for key, value in performance_ensamble.items()]
## save also the information in a .csv file useful for plotting (and hypothesis testing in case)
'''
The file should allow for easy plotting of the models performance based on
classification type, model, model_version (best, last, ensemble_best, ensemble_last),
metrics, training time inference time.
'''
def get_time_from_string(time_string):
'''
Utility that given a time_string formated as 0d:0h:0m:0s:0ms,
returns the number of hours
'''
splits = time_string.split(':')
# get the values for d, h, m, s, ms
time_values = [ [] for _ in range(len(splits))]
[[time_values[idx].append(c) for c in v if c.isnumeric()] for idx, v in enumerate(splits)]
time_values = [int(''.join(v)) for v in time_values]
hours = sum([tv*hv for tv, hv in zip(time_values, [24, 1, 1/60, 1/60**2, 1/60**3])])
return hours
def get_mean_training_time(model_path, model_version='best', debug=False):
'''
Utility that returns the mean trianing time over the folds
'''
fold_paths = glob.glob(os.path.join(model_path, 'fold_*',''))
per_fold_training_time = []
for idx, fp in enumerate(fold_paths):
# open summary training
with open(os.path.join(fp,'model_summary_json.txt')) as json_file:
training_summary = json.load(json_file)
# get number of hours for the best model
training_time = get_time_from_string(training_summary['TRAINING_TIME'])
# adjust if needed the training time for the last model
if model_version == 'last':
epoch_training_time = training_time/(training_summary['EPOCHS']+1e-6)
training_time = epoch_training_time*250
if debug:
print(f'Fold {idx+1} ({model_version}): {training_time:0.2f}')
per_fold_training_time.append(training_time)
return per_fold_training_time
## work on saving
import csv
summary_file = os.path.join(model_path,f'{model_version}_tabular_test_summary.csv')
csv_file = open(summary_file, "w")
writer = csv.writer(csv_file)
csv_header = ['classification_type',
'nbr_classes',
'model_type',
'model_version',
'fold',
'precision',
'recall',
'accuracy',
'f1-score',
'auc',
'training_time',
'matthews_correlation_coef',
]
writer.writerow(csv_header)
per_fold_training_time = get_mean_training_time(model_path, model_version=model_version)
classification_type = 'per-disease' if config['dataset_type']=='retinal' else 'normal-vs-cancer'
nbr_classes = 4 if config['dataset_type']=='retinal' else 2
# loop through all the folds and save information
rows_to_write = []
for idx, fp in enumerate(per_fold_performance):
rows_to_write.append([classification_type,
nbr_classes,
config['model_configuration'],
model_version,
idx+1,
fp['overall_precision'],
fp['overall_recall'],
fp['overall_accuracy'],
fp['overall_f1-score'],
fp['overall_auc'],
per_fold_training_time[idx],
fp['matthews_correlation_coef'],
])
# add ensamble information
rows_to_write.append([classification_type,
nbr_classes,
config['model_configuration'],
'ensemble',
'ensemble',
performance_ensamble['overall_precision'],
performance_ensamble['overall_recall'],
performance_ensamble['overall_accuracy'],
performance_ensamble['overall_f1-score'],
performance_ensamble['overall_auc'],
per_fold_training_time[idx],
performance_ensamble['matthews_correlation_coef'],
])
writer.writerows(rows_to_write)
csv_file.close()
| [
7061,
6,
198,
7391,
326,
5254,
257,
8776,
4981,
319,
663,
3047,
27039,
13,
632,
857,
262,
976,
198,
33407,
8027,
355,
262,
530,
287,
262,
4045,
20081,
62,
27530,
62,
27110,
13,
9078,
4226,
13,
198,
1026,
16031,
198,
126,
97,
262,
1321,
546,
262,
1332,
329,
2562,
1568,
29353,
198,
126,
97,
371,
4503,
357,
525,
12,
4871,
290,
4045,
1262,
4580,
290,
15021,
2811,
8,
198,
126,
97,
21082,
12133,
357,
525,
12,
4871,
290,
4045,
1262,
4580,
290,
15021,
2811,
8,
198,
126,
97,
10638,
286,
2854,
329,
2562,
1100,
286,
262,
2457,
8198,
198,
198,
8600,
82,
198,
16,
532,
651,
13532,
290,
4981,
284,
1332,
198,
17,
532,
3440,
4856,
27039,
198,
18,
532,
651,
16277,
1262,
262,
1332,
2163,
287,
262,
20081,
62,
27530,
62,
27110,
13,
9078,
198,
19,
532,
7110,
290,
3613,
10802,
17593,
198,
20,
532,
7110,
290,
3613,
371,
4503,
12133,
198,
21,
532,
3613,
6496,
7508,
286,
262,
4856,
290,
10638,
198,
7061,
6,
198,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
269,
85,
17,
198,
11748,
15095,
198,
11748,
33918,
198,
11748,
640,
198,
11748,
2298,
293,
198,
11748,
4738,
198,
11748,
3108,
8019,
198,
11748,
1822,
29572,
198,
11748,
1330,
8019,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
285,
489,
62,
25981,
74,
896,
13,
897,
274,
62,
25928,
16,
13,
1040,
316,
62,
17946,
1352,
1330,
19792,
276,
62,
1040,
316,
62,
897,
274,
198,
6738,
285,
489,
62,
25981,
74,
896,
13,
897,
274,
62,
25928,
16,
13,
1040,
316,
62,
17946,
1352,
1330,
1317,
62,
1040,
316,
198,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
11192,
273,
11125,
13,
6122,
292,
13,
26791,
1330,
284,
62,
66,
2397,
12409,
198,
6738,
11192,
273,
11125,
13,
6122,
292,
13,
27530,
1330,
3440,
62,
19849,
198,
198,
418,
13,
268,
2268,
17816,
10234,
62,
8697,
47,
62,
23678,
62,
25294,
62,
2538,
18697,
20520,
796,
705,
18,
6,
220,
1303,
393,
597,
1391,
6,
15,
3256,
705,
16,
3256,
705,
17,
6,
92,
198,
198,
2,
1957,
17944,
198,
11748,
20081,
198,
11748,
20081,
62,
27530,
62,
27110,
198,
198,
2235,
352,
532,
651,
4981,
1321,
290,
3224,
3696,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
7391,
326,
20842,
257,
10638,
286,
262,
2746,
23035,
296,
590,
2637,
8,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
76,
41707,
438,
19849,
62,
6978,
6,
837,
35827,
28,
17821,
11,
1037,
11639,
22882,
1958,
262,
9483,
810,
262,
8776,
2746,
318,
5140,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
67,
41707,
438,
19608,
292,
316,
62,
6978,
6,
837,
35827,
28,
25101,
11,
1037,
11639,
22882,
1958,
810,
262,
27039,
318,
5140,
3256,
4277,
28,
25101,
8,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
76,
85,
41707,
438,
19849,
62,
9641,
6,
837,
35827,
28,
25101,
11,
1037,
11639,
22882,
1958,
611,
284,
1057,
262,
3047,
319,
262,
1266,
2746,
357,
13466,
8,
393,
262,
938,
357,
12957,
8,
3256,
4277,
2625,
13466,
4943,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
19849,
62,
6978,
796,
26498,
13,
19849,
62,
6978,
198,
19608,
292,
316,
62,
6978,
796,
26498,
13,
19608,
292,
316,
62,
6978,
198,
19849,
62,
9641,
796,
26498,
13,
19849,
62,
9641,
198,
198,
2,
1303,
1303,
16959,
198,
2,
2746,
62,
6978,
796,
31051,
25925,
14,
72,
586,
64,
4051,
14,
25104,
14,
47,
18,
62,
46,
4177,
62,
4303,
43,
2043,
62,
4805,
31054,
11319,
62,
56,
11698,
62,
26947,
14,
35311,
62,
27530,
14,
15047,
46,
4177,
62,
525,
62,
9060,
62,
35312,
62,
20,
62,
69,
10119,
62,
81,
74,
69,
62,
940,
62,
14050,
15,
13,
18005,
62,
43501,
2414,
62,
20185,
3955,
50,
62,
81,
7278,
62,
17821,
6,
198,
2,
27039,
62,
6978,
796,
12813,
25925,
14,
72,
586,
64,
4051,
14,
25104,
14,
6601,
14,
46,
4177,
14,
20185,
3955,
50,
62,
27354,
292,
316,
14,
14986,
1,
198,
2,
2746,
62,
9641,
796,
366,
13466,
1,
198,
198,
7839,
2625,
44154,
4226,
1,
198,
4798,
7,
69,
6,
59,
77,
4895,
21215,
9,
11925,
7,
7839,
38165,
11537,
198,
4798,
7,
69,
6,
90,
7839,
92,
11537,
198,
4798,
7,
69,
6,
4895,
21215,
9,
11925,
7,
7839,
8,
32239,
77,
11537,
198,
198,
2,
2198,
329,
335,
364,
198,
361,
407,
28686,
13,
6978,
13,
9409,
343,
7,
19849,
62,
6978,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
7,
69,
6,
17633,
407,
1043,
13,
11259,
1391,
19849,
62,
6978,
92,
11537,
198,
17772,
25,
198,
220,
220,
220,
1303,
2198,
326,
262,
8398,
2393,
318,
287,
1295,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
4468,
576,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
4032,
11250,
13,
17752,
11537,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
69,
6,
38149,
2393,
407,
1043,
329,
262,
1813,
2746,
13,
6822,
326,
262,
2746,
373,
17839,
290,
8776,
13,
11259,
1391,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
553,
11250,
13,
17752,
4943,
92,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
17633,
290,
4566,
2393,
1043,
19570,
198,
198,
2,
2198,
326,
262,
2746,
62,
9641,
4634,
318,
257,
3376,
530,
357,
13466,
11,
938,
11,
3140,
321,
903,
12,
1662,
12644,
9177,
8,
198,
361,
407,
597,
26933,
19849,
62,
9641,
855,
82,
329,
264,
287,
14631,
13466,
1600,
366,
12957,
1600,
366,
641,
321,
903,
8973,
60,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
7,
69,
6,
464,
1813,
2746,
2196,
329,
262,
4856,
318,
6439,
13,
11259,
1391,
19849,
62,
9641,
5512,
2938,
1266,
11,
938,
393,
3140,
321,
903,
11537,
198,
198,
4798,
7,
69,
6,
28516,
319,
2746,
1391,
418,
13,
6978,
13,
12093,
12453,
7,
19849,
62,
6978,
38165,
11537,
198,
4798,
7,
69,
6,
17633,
8398,
900,
329,
4856,
25,
1391,
19849,
62,
9641,
92,
11537,
198,
198,
2235,
362,
532,
3440,
4856,
27039,
198,
11748,
8019,
13,
260,
2220,
7,
315,
2410,
8,
198,
198,
2,
3440,
8398,
2393,
198,
4480,
1280,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
4032,
11250,
13,
17752,
6,
4008,
355,
33918,
62,
7753,
25,
198,
220,
220,
220,
4566,
796,
33918,
13,
2220,
7,
17752,
62,
7753,
8,
198,
220,
220,
220,
4566,
17816,
18242,
62,
11213,
20520,
796,
4566,
17816,
34642,
62,
23912,
1424,
20520,
628,
220,
220,
220,
611,
27039,
62,
6978,
318,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
27039,
62,
6978,
796,
4566,
17816,
19608,
292,
316,
62,
43551,
20520,
628,
220,
220,
220,
1303,
2198,
611,
27039,
9483,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
9409,
343,
7,
19608,
292,
316,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
69,
6,
27354,
292,
316,
3108,
407,
1043,
13,
11259,
1391,
19608,
292,
316,
62,
6978,
92,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
27354,
292,
316,
3108,
1043,
2637,
8,
628,
220,
220,
220,
1303,
1011,
530,
4856,
198,
220,
220,
220,
1303,
787,
1654,
326,
262,
3696,
966,
284,
428,
1080,
27039,
198,
220,
220,
220,
1303,
4259,
3891,
1912,
319,
262,
1813,
27039,
3108,
198,
220,
220,
220,
611,
597,
26933,
11250,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
1186,
1292,
3256,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
42,
2224,
88,
20520,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4566,
17816,
19608,
292,
316,
62,
35312,
62,
2536,
4338,
20520,
6624,
705,
14986,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
796,
604,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
796,
220,
513,
198,
220,
220,
220,
1288,
361,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
20185,
3955,
50,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
796,
220,
604,
198,
220,
220,
220,
1288,
361,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
50,
12769,
38630,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
796,
220,
642,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1332,
62,
9600,
28,
17635,
198,
220,
220,
220,
1303,
1382,
2393,
3891,
284,
966,
284,
428,
1813,
27039,
198,
220,
220,
220,
329,
277,
287,
4566,
17816,
9288,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
257,
385,
796,
685,
6978,
8019,
13,
15235,
7,
69,
737,
42632,
58,
12,
72,
60,
329,
1312,
287,
17687,
7,
9521,
7,
312,
87,
4008,
7131,
15,
21912,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
257,
385,
13,
28463,
7,
15,
11,
27039,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
9600,
13,
33295,
7,
418,
13,
6978,
13,
22179,
46491,
8717,
4008,
198,
198,
2,
2251,
17301,
1912,
319,
2746,
20640,
290,
27039,
198,
361,
597,
26933,
11250,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
1186,
1292,
3256,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
42,
2224,
88,
20520,
2599,
198,
220,
220,
220,
1366,
62,
5235,
796,
20081,
13,
42,
2224,
88,
62,
7890,
62,
5235,
198,
417,
361,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
20185,
3955,
50,
10354,
198,
220,
220,
220,
1366,
62,
5235,
796,
20081,
13,
20185,
3955,
50,
62,
7890,
62,
5235,
198,
417,
361,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
6624,
705,
50,
12769,
38630,
10354,
198,
220,
220,
220,
1366,
62,
5235,
796,
20081,
13,
50,
12769,
38630,
62,
7890,
62,
5235,
628,
198,
9288,
62,
19608,
292,
316,
796,
220,
1366,
62,
5235,
7,
9288,
62,
9600,
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,
3748,
62,
23912,
1424,
28,
11250,
17816,
34642,
62,
23912,
1424,
6,
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,
15458,
62,
7857,
28,
1433,
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,
3047,
28,
25101,
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,
9619,
28,
11250,
17816,
77,
62,
354,
8961,
6,
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,
5128,
62,
7857,
28,
11250,
17816,
15414,
62,
7857,
6,
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,
4738,
62,
18242,
62,
23100,
3681,
28,
11250,
17816,
25120,
62,
18242,
62,
23100,
3681,
6,
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,
4738,
62,
18242,
62,
23100,
3681,
62,
28826,
28,
1959,
1065,
2931,
8,
198,
198,
2235,
1620,
4856,
329,
1123,
5591,
262,
2746,
373,
8776,
319,
198,
11748,
8019,
13,
260,
2220,
7,
315,
2410,
62,
27530,
62,
27110,
8,
198,
198,
9288,
62,
11379,
62,
49736,
796,
23884,
198,
69,
10119,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
553,
11379,
62,
9,
48774,
198,
198,
2,
651,
262,
826,
2746,
1912,
319,
262,
2746,
62,
9641,
62,
16684,
2649,
198,
361,
2746,
62,
9641,
855,
1,
13466,
1298,
198,
220,
220,
220,
2746,
62,
3672,
62,
9641,
796,
366,
19849,
13,
27110,
1,
198,
417,
361,
2746,
62,
9641,
855,
1,
12957,
1298,
198,
220,
220,
220,
2746,
62,
3672,
62,
9641,
796,
366,
12957,
62,
19849,
13,
27110,
1,
198,
198,
1640,
4686,
87,
11,
277,
287,
27056,
378,
7,
69,
10119,
2599,
198,
220,
220,
220,
3601,
7,
69,
6,
28516,
319,
5591,
1391,
312,
87,
10,
16,
92,
14,
90,
11925,
7,
69,
10119,
38165,
11537,
198,
220,
220,
220,
1303,
3440,
2746,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
418,
13,
6978,
13,
22179,
7,
69,
11,
2746,
62,
3672,
62,
9641,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
796,
48700,
13,
6122,
292,
13,
27530,
13,
2220,
62,
19849,
7,
418,
13,
6978,
13,
22179,
7,
69,
11,
2746,
62,
3672,
62,
9641,
828,
17632,
28,
25101,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
10786,
17633,
407,
1043,
11537,
628,
220,
220,
220,
1332,
62,
13655,
11,
1332,
62,
28764,
2867,
11,
1332,
62,
2435,
796,
20081,
62,
27530,
62,
27110,
13,
9288,
62,
34750,
7,
19849,
11,
4566,
11,
1332,
62,
19608,
292,
316,
8,
198,
220,
220,
220,
1332,
62,
11379,
62,
49736,
58,
312,
87,
22241,
90,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2833,
62,
35310,
10354,
37659,
13,
853,
9806,
7,
9288,
62,
13655,
13,
77,
32152,
22784,
16488,
10779,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28764,
2867,
10354,
9288,
62,
28764,
2867,
13,
77,
32152,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9288,
62,
2435,
10354,
22468,
7,
9288,
62,
2435,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
198,
2235,
3613,
290,
7110,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
6738,
285,
489,
62,
25981,
74,
896,
13,
897,
274,
62,
25928,
16,
13,
1040,
316,
62,
17946,
1352,
1330,
19792,
276,
62,
1040,
316,
62,
897,
274,
198,
6738,
285,
489,
62,
25981,
74,
896,
13,
897,
274,
62,
25928,
16,
13,
1040,
316,
62,
17946,
1352,
1330,
1317,
62,
1040,
316,
198,
7061,
6,
198,
50,
2703,
4045,
3272,
21201,
1332,
2482,
290,
4263,
25,
198,
12,
7326,
46313,
295,
17593,
198,
12,
371,
4503,
12133,
198,
12,
39281,
12,
6690,
439,
12133,
198,
198,
12,
1332,
10638,
2393,
351,
262,
17724,
329,
790,
1332,
2939,
357,
9288,
62,
49736,
13,
14116,
8,
198,
220,
220,
220,
3423,
751,
635,
262,
1321,
2622,
284,
302,
12,
29487,
262,
371,
4503,
290,
21082,
23759,
357,
69,
1050,
11,
198,
220,
220,
220,
256,
1050,
11,
686,
66,
62,
14272,
11,
15440,
290,
10014,
532,
4580,
290,
15021,
2811,
8,
198,
220,
220,
220,
383,
1332,
62,
49736,
13,
14116,
2393,
318,
257,
22155,
351,
262,
1708,
12784,
25,
198,
220,
220,
220,
532,
2746,
62,
3672,
25,
4731,
198,
220,
220,
220,
532,
14722,
25,
1351,
286,
262,
2081,
3815,
277,
313,
262,
6789,
4263,
198,
220,
220,
220,
532,
5591,
62,
9288,
62,
27160,
25,
1351,
7268,
262,
16277,
329,
790,
5591,
357,
4868,
286,
8341,
8,
628,
220,
220,
220,
532,
1332,
62,
2435,
25,
4731,
198,
220,
220,
220,
532,
1332,
3128,
25,
4731,
628,
220,
220,
220,
532,
9922,
25,
12178,
628,
220,
220,
220,
532,
3991,
62,
24561,
62,
4873,
25,
1351,
7268,
262,
277,
1050,
329,
790,
1398,
357,
4868,
286,
8341,
8,
198,
220,
220,
220,
532,
3991,
62,
24561,
62,
4873,
62,
24055,
62,
615,
70,
25,
1351,
7268,
262,
4580,
2811,
277,
1050,
357,
1484,
329,
262,
4045,
686,
66,
7110,
8,
198,
220,
220,
220,
532,
3991,
62,
24561,
62,
4873,
62,
20285,
305,
62,
615,
70,
25,
1351,
7268,
262,
15021,
2811,
277,
1050,
357,
1484,
329,
262,
4045,
686,
66,
7110,
8,
628,
220,
220,
220,
532,
2081,
62,
24561,
62,
4873,
25,
1351,
7268,
262,
256,
1050,
329,
790,
1398,
357,
4868,
286,
8341,
8,
198,
220,
220,
220,
532,
2081,
62,
24561,
62,
4873,
62,
24055,
62,
615,
70,
25,
1351,
7268,
262,
4580,
2811,
256,
1050,
357,
1484,
329,
262,
4045,
686,
66,
7110,
8,
198,
220,
220,
220,
532,
2081,
62,
24561,
62,
4873,
62,
20285,
305,
62,
615,
70,
25,
1351,
7268,
262,
15021,
2811,
256,
1050,
357,
1484,
329,
262,
4045,
686,
66,
7110,
8,
628,
220,
220,
220,
532,
15440,
25,
1351,
7268,
262,
15440,
3815,
329,
790,
1398,
284,
7110,
262,
21082,
357,
4868,
286,
8341,
8,
198,
220,
220,
220,
532,
15440,
62,
24055,
62,
615,
70,
25,
1351,
286,
4045,
4580,
2811,
286,
15440,
198,
220,
220,
220,
532,
2811,
62,
3866,
16005,
25,
2811,
15440,
1988,
29231,
1262,
4580,
2811,
628,
220,
220,
220,
532,
10014,
25,
1351,
7268,
262,
10014,
1988,
329,
790,
1398,
284,
7110,
262,
21082,
357,
4868,
286,
8341,
8,
198,
220,
220,
220,
532,
10014,
62,
24055,
62,
615,
70,
25,
1351,
286,
4045,
4580,
2811,
286,
10014,
628,
220,
220,
220,
532,
376,
16,
25,
1351,
286,
4580,
290,
15021,
2811,
277,
16,
12,
26675,
198,
198,
6385,
262,
1336,
1332,
62,
49736,
2393,
318,
890,
284,
1280,
11,
262,
8198,
389,
635,
7448,
287,
257,
4553,
2393,
329,
2562,
1895,
198,
1416,
2850,
62,
9288,
62,
49736,
13,
14116,
198,
7061,
6,
198,
4798,
7,
69,
6,
50,
2703,
1321,
986,
11537,
198,
2,
1303,
7804,
4242,
3613,
262,
1321,
326,
318,
1541,
1695,
198,
9288,
62,
49736,
796,
14230,
1068,
35,
713,
3419,
198,
198,
2,
329,
16196,
17764,
198,
361,
4566,
17816,
17618,
62,
19692,
12102,
341,
62,
260,
6449,
1756,
6,
5974,
198,
220,
220,
220,
299,
62,
33967,
796,
4566,
17816,
45,
62,
37,
3535,
5258,
20520,
9,
11250,
17816,
17618,
62,
19692,
12102,
341,
62,
260,
6449,
1756,
20520,
198,
17772,
25,
198,
220,
220,
220,
299,
62,
33967,
796,
4566,
17816,
45,
62,
37,
3535,
5258,
20520,
198,
9288,
62,
49736,
17816,
19849,
62,
3672,
20520,
796,
4566,
17816,
19849,
62,
21928,
62,
3672,
20520,
198,
9288,
62,
49736,
17816,
23912,
1424,
20520,
796,
685,
600,
7,
72,
8,
329,
1312,
287,
1332,
62,
11379,
62,
49736,
58,
15,
7131,
6,
2833,
62,
35310,
6,
11907,
198,
9288,
62,
49736,
17816,
69,
10119,
62,
9288,
62,
6404,
896,
62,
27160,
20520,
796,
685,
9288,
62,
11379,
62,
49736,
58,
33967,
7131,
6,
28764,
2867,
6,
4083,
83,
349,
396,
3419,
329,
269,
85,
287,
2837,
7,
77,
62,
33967,
15437,
198,
9288,
62,
49736,
17816,
9288,
62,
2435,
20520,
796,
20081,
13,
83,
713,
420,
62,
6738,
62,
2435,
7,
37659,
13,
16345,
26933,
9288,
62,
11379,
62,
49736,
58,
33967,
7131,
6,
9288,
62,
2435,
20520,
329,
269,
85,
287,
2837,
7,
77,
62,
33967,
15437,
4008,
198,
9288,
62,
49736,
17816,
9288,
62,
19849,
62,
9641,
20520,
796,
2746,
62,
9641,
198,
9288,
62,
49736,
17816,
9288,
62,
4475,
20520,
796,
640,
13,
2536,
31387,
7203,
4,
56,
4,
76,
4,
67,
12,
4,
39,
4,
44,
4,
50,
4943,
198,
198,
2,
1303,
7804,
21017,
7110,
290,
3613,
1013,
1229,
295,
17593,
198,
1072,
11306,
62,
28764,
62,
853,
9806,
796,
17635,
198,
1072,
11306,
62,
28764,
62,
6404,
896,
796,
17635,
198,
2,
24061,
34549,
198,
2,
24061,
262,
2604,
896,
1612,
1863,
262,
38744,
198,
1072,
11306,
62,
28764,
62,
6404,
896,
796,
45941,
13,
18747,
7,
9288,
62,
49736,
17816,
69,
10119,
62,
9288,
62,
6404,
896,
62,
27160,
20520,
737,
32604,
7,
22704,
28,
15,
8,
198,
2,
24061,
1822,
9806,
17724,
198,
1072,
11306,
62,
28764,
62,
853,
9806,
796,
45941,
13,
853,
9806,
7,
1072,
11306,
62,
28764,
62,
6404,
896,
11,
16488,
28,
16,
8,
198,
198,
4134,
796,
20081,
13,
29487,
18546,
4241,
46912,
7,
9288,
62,
49736,
17816,
23912,
1424,
6,
4357,
34549,
62,
28764,
62,
853,
9806,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6097,
28,
11250,
17816,
18242,
62,
11213,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
15235,
28,
19849,
62,
6978,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
5376,
28,
69,
6,
18546,
4241,
46912,
23330,
19849,
62,
9641,
92,
62,
19849,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3197,
28,
25101,
8,
198,
198,
2,
1303,
7804,
21017,
7110,
290,
3613,
371,
4503,
12133,
198,
69,
1050,
11,
256,
1050,
11,
686,
66,
62,
14272,
796,
20081,
13,
29487,
49,
4503,
7,
9288,
62,
49736,
17816,
23912,
1424,
6,
4357,
34549,
62,
28764,
62,
6404,
896,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6097,
28,
11250,
17816,
18242,
62,
11213,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
15235,
28,
19849,
62,
6978,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
5376,
28,
69,
6,
15205,
291,
31172,
62,
49,
4503,
23330,
19849,
62,
9641,
92,
62,
19849,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3197,
28,
25101,
8,
198,
198,
2,
787,
4847,
286,
262,
22155,
284,
307,
8341,
329,
8914,
198,
1640,
1994,
11,
1988,
287,
277,
1050,
13,
23814,
33529,
198,
220,
220,
220,
277,
1050,
58,
2539,
22241,
8367,
13,
83,
349,
396,
3419,
198,
1640,
1994,
11,
1988,
287,
256,
1050,
13,
23814,
33529,
198,
220,
220,
220,
256,
1050,
58,
2539,
22241,
8367,
13,
83,
349,
396,
3419,
198,
1640,
1994,
11,
1988,
287,
686,
66,
62,
14272,
13,
23814,
33529,
198,
220,
220,
220,
686,
66,
62,
14272,
58,
2539,
22241,
8367,
13,
83,
349,
396,
3419,
198,
198,
2,
1303,
7804,
21017,
7110,
290,
3613,
4810,
12133,
198,
3866,
16005,
11,
10014,
11,
2811,
62,
3866,
16005,
11,
376,
16,
796,
20081,
13,
29487,
4805,
7,
9288,
62,
49736,
17816,
23912,
1424,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
34549,
62,
28764,
62,
6404,
896,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6097,
28,
11250,
17816,
18242,
62,
11213,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
15235,
28,
19849,
62,
6978,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
5376,
28,
69,
6,
15205,
291,
31172,
62,
4805,
23330,
19849,
62,
9641,
92,
62,
19849,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3197,
28,
25101,
8,
198,
198,
2,
787,
4847,
286,
262,
22155,
284,
307,
8341,
329,
8914,
198,
1640,
1994,
11,
1988,
287,
15440,
13,
23814,
33529,
198,
220,
220,
220,
15440,
58,
2539,
22241,
8367,
13,
83,
349,
396,
3419,
198,
1640,
1994,
11,
1988,
287,
10014,
13,
23814,
33529,
198,
220,
220,
220,
10014,
58,
2539,
22241,
8367,
13,
83,
349,
396,
3419,
198,
198,
2,
3613,
477,
262,
1321,
287,
262,
1332,
10638,
198,
9288,
62,
49736,
17816,
4134,
23843,
20520,
796,
697,
198,
198,
2,
1332,
62,
49736,
17816,
9562,
62,
24561,
62,
4873,
20520,
796,
685,
69,
1050,
58,
72,
4083,
83,
349,
396,
3419,
329,
1312,
287,
2837,
7,
11925,
7,
4871,
62,
23912,
1424,
4008,
60,
198,
9288,
62,
49736,
17816,
9562,
62,
24561,
62,
4873,
20520,
796,
277,
1050,
198,
2,
1332,
62,
49736,
17816,
9562,
62,
24561,
62,
4873,
62,
24055,
62,
615,
70,
20520,
796,
277,
1050,
17816,
24055,
6,
4083,
83,
349,
396,
3419,
198,
2,
1332,
62,
49736,
17816,
9562,
62,
24561,
62,
4873,
62,
20285,
305,
62,
615,
70,
20520,
796,
277,
1050,
17816,
20285,
305,
6,
4083,
83,
349,
396,
3419,
198,
198,
9288,
62,
49736,
17816,
7942,
62,
24561,
62,
4873,
20520,
796,
256,
1050,
198,
2,
1332,
62,
49736,
17816,
7942,
62,
24561,
62,
4873,
20520,
796,
685,
83,
1050,
58,
72,
4083,
83,
349,
396,
3419,
329,
1312,
287,
2837,
7,
11925,
7,
4871,
62,
23912,
1424,
4008,
60,
198,
2,
1332,
62,
49736,
17816,
7942,
62,
24561,
62,
4873,
62,
24055,
62,
615,
70,
20520,
796,
256,
1050,
17816,
24055,
6,
4083,
83,
349,
396,
3419,
198,
2,
1332,
62,
49736,
17816,
7942,
62,
24561,
62,
4873,
62,
20285,
305,
62,
615,
70,
20520,
796,
256,
1050,
17816,
20285,
305,
6,
4083,
83,
349,
396,
3419,
198,
198,
9288,
62,
49736,
17816,
12204,
62,
14272,
20520,
796,
686,
66,
62,
14272,
198,
198,
9288,
62,
49736,
17816,
3866,
16005,
20520,
796,
15440,
198,
2,
1332,
62,
49736,
17816,
3866,
16005,
20520,
796,
685,
3866,
16005,
58,
72,
4083,
83,
349,
396,
3419,
329,
1312,
287,
2837,
7,
11925,
7,
4871,
62,
23912,
1424,
4008,
60,
198,
2,
1332,
62,
49736,
17816,
3866,
16005,
62,
24055,
62,
615,
70,
20520,
796,
15440,
17816,
24055,
6,
4083,
83,
349,
396,
3419,
198,
198,
9288,
62,
49736,
17816,
8344,
439,
20520,
796,
10014,
198,
2,
1332,
62,
49736,
17816,
8344,
439,
20520,
796,
685,
8344,
439,
58,
72,
4083,
83,
349,
396,
3419,
329,
1312,
287,
2837,
7,
11925,
7,
4871,
62,
23912,
1424,
4008,
60,
198,
2,
1332,
62,
49736,
17816,
8344,
439,
62,
24055,
62,
615,
70,
20520,
796,
10014,
17816,
24055,
6,
4083,
83,
349,
396,
3419,
198,
198,
9288,
62,
49736,
17816,
23913,
62,
3866,
16005,
20520,
796,
2811,
62,
3866,
16005,
198,
9288,
62,
49736,
17816,
37,
16,
20520,
796,
376,
16,
198,
198,
2,
3613,
10638,
2393,
198,
4480,
1280,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
11,
69,
6,
90,
19849,
62,
9641,
92,
62,
19849,
62,
9641,
62,
9288,
62,
49736,
13,
14116,
33809,
705,
86,
11537,
355,
277,
79,
25,
198,
220,
220,
220,
33918,
13,
39455,
7,
9288,
62,
49736,
11,
277,
79,
8,
198,
198,
2235,
3613,
10638,
357,
5171,
307,
6596,
11,
475,
1262,
262,
8027,
422,
3601,
62,
19849,
62,
26585,
8,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
2811,
62,
3866,
16005,
62,
26675,
11,
10014,
62,
26675,
11,
686,
66,
62,
14272,
62,
26675,
11,
277,
16,
62,
26675,
11,
10802,
62,
6759,
8609,
11,
9922,
62,
26675,
11,
23963,
40645,
62,
10215,
81,
1073,
891,
198,
198,
4299,
651,
62,
4164,
10466,
7,
7942,
62,
6404,
896,
11,
2747,
62,
6404,
896,
11,
2811,
11639,
20285,
305,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
34030,
326,
1813,
10802,
2603,
10466,
11,
5860,
257,
22155,
7268,
25,
198,
220,
220,
220,
256,
457,
77,
46428,
22184,
1058,
4045,
24525,
11,
29025,
11,
31459,
11,
44260,
3815,
329,
1123,
286,
262,
6097,
198,
220,
220,
220,
15440,
357,
11423,
414,
8,
1058,
329,
1123,
286,
262,
6097,
198,
220,
220,
220,
10014,
357,
82,
40545,
8,
1058,
329,
1123,
286,
262,
6097,
198,
220,
220,
220,
277,
16,
12,
26675,
1058,
329,
1123,
286,
262,
6097,
198,
220,
220,
220,
257,
1229,
1058,
329,
1123,
286,
262,
6097,
198,
220,
220,
220,
4045,
62,
4134,
1058,
625,
477,
6097,
198,
220,
220,
220,
4045,
62,
11423,
414,
1058,
625,
477,
6097,
198,
220,
220,
220,
4045,
62,
3866,
16005,
1058,
625,
477,
6097,
198,
220,
220,
220,
4045,
62,
69,
16,
12,
26675,
1058,
625,
477,
6097,
198,
220,
220,
220,
4045,
62,
14272,
1058,
625,
477,
6097,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
24061,
10802,
17593,
198,
220,
220,
220,
269,
77,
69,
62,
6759,
8609,
796,
10802,
62,
6759,
8609,
7,
37659,
13,
853,
9806,
7,
7942,
62,
6404,
896,
12095,
16,
828,
45941,
13,
853,
9806,
7,
28764,
62,
6404,
896,
11,
532,
16,
4008,
628,
220,
220,
220,
1303,
24061,
24525,
11,
29025,
11,
31459,
11,
44260,
628,
220,
220,
220,
31459,
796,
357,
31522,
69,
62,
6759,
8609,
13,
16345,
7,
22704,
28,
15,
8,
532,
45941,
13,
10989,
363,
7,
31522,
69,
62,
6759,
8609,
29720,
459,
2981,
7,
22468,
8,
198,
220,
220,
220,
44260,
796,
357,
31522,
69,
62,
6759,
8609,
13,
16345,
7,
22704,
28,
16,
8,
532,
45941,
13,
10989,
363,
7,
31522,
69,
62,
6759,
8609,
29720,
459,
2981,
7,
22468,
8,
198,
220,
220,
220,
24525,
796,
357,
37659,
13,
10989,
363,
7,
31522,
69,
62,
6759,
8609,
29720,
459,
2981,
7,
22468,
8,
198,
220,
220,
220,
29025,
796,
357,
31522,
69,
62,
6759,
8609,
13,
16345,
3419,
532,
357,
5837,
1343,
44260,
1343,
24525,
29720,
459,
2981,
7,
22468,
8,
628,
220,
220,
220,
1303,
24061,
583,
1398,
20731,
198,
220,
220,
220,
10638,
62,
11600,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3866,
16005,
10354,
29025,
1220,
357,
5837,
10,
46559,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8344,
439,
10354,
24525,
1220,
357,
7250,
10,
43221,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4134,
23843,
10354,
357,
7250,
10,
46559,
8,
1220,
357,
7250,
10,
46559,
10,
5837,
10,
43221,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
16,
12,
26675,
10354,
24525,
1220,
357,
7250,
1343,
657,
13,
20,
9,
7,
5837,
10,
43221,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14272,
10354,
686,
66,
62,
14272,
62,
26675,
7,
7942,
62,
6404,
896,
11,
2747,
62,
6404,
896,
11,
2811,
28,
14202,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
1303,
24061,
4045,
20731,
198,
220,
220,
220,
1303,
3465,
326,
777,
20731,
11,
2592,
883,
326,
4745,
319,
257,
11387,
11,
198,
220,
220,
220,
1303,
481,
262,
2811,
20731,
625,
477,
262,
256,
10126,
82,
290,
481,
307,
1180,
198,
220,
220,
220,
1303,
3688,
284,
262,
2060,
11387,
29231,
2029,
357,
400,
10126,
28,
15,
13,
20,
8,
198,
220,
220,
220,
10638,
62,
11600,
17816,
2502,
439,
62,
3866,
16005,
20520,
28,
23913,
62,
3866,
16005,
62,
26675,
7,
7942,
62,
6404,
896,
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,
2747,
62,
6404,
896,
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,
2811,
28,
23913,
8,
198,
220,
220,
220,
10638,
62,
11600,
17816,
2502,
439,
62,
8344,
439,
20520,
28,
8344,
439,
62,
26675,
7,
37659,
13,
853,
9806,
7,
7942,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
853,
9806,
7,
28764,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2811,
28,
23913,
8,
198,
220,
220,
220,
10638,
62,
11600,
17816,
2502,
439,
62,
4134,
23843,
20520,
28,
4134,
23843,
62,
26675,
7,
37659,
13,
853,
9806,
7,
7942,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
853,
9806,
7,
28764,
62,
6404,
896,
12095,
16,
4008,
198,
220,
220,
220,
10638,
62,
11600,
17816,
2502,
439,
62,
69,
16,
12,
26675,
20520,
28,
69,
16,
62,
26675,
7,
37659,
13,
853,
9806,
7,
7942,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
853,
9806,
7,
28764,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2811,
28,
23913,
8,
198,
220,
220,
220,
10638,
62,
11600,
17816,
2502,
439,
62,
14272,
20520,
28,
12204,
62,
14272,
62,
26675,
7,
7942,
62,
6404,
896,
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,
2747,
62,
6404,
896,
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,
5021,
62,
4871,
11639,
709,
81,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2811,
28,
23913,
8,
198,
220,
220,
220,
10638,
62,
11600,
17816,
76,
1078,
40645,
62,
10215,
49501,
62,
1073,
891,
20520,
28,
76,
1078,
40645,
62,
10215,
81,
1073,
891,
7,
37659,
13,
853,
9806,
7,
7942,
62,
6404,
896,
12095,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
853,
9806,
7,
28764,
62,
6404,
896,
12095,
16,
828,
8,
628,
220,
220,
220,
1441,
10638,
62,
11600,
198,
198,
77,
62,
69,
10119,
796,
18896,
7,
69,
10119,
8,
198,
4798,
3419,
198,
198,
23912,
1424,
796,
45941,
13,
25379,
7,
37659,
13,
34642,
7,
9288,
62,
49736,
17816,
23912,
1424,
20520,
737,
43358,
58,
15,
12962,
58,
9288,
62,
49736,
17816,
23912,
1424,
6,
11907,
198,
28764,
62,
6404,
896,
796,
1332,
62,
49736,
17816,
69,
10119,
62,
9288,
62,
6404,
896,
62,
27160,
20520,
198,
198,
2,
22476,
48722,
583,
5591,
2854,
198,
198,
525,
62,
11379,
62,
26585,
796,
17635,
198,
198,
1640,
277,
287,
2837,
7,
11925,
7,
69,
10119,
8,
2599,
198,
220,
220,
220,
583,
62,
11379,
62,
26585,
13,
33295,
7,
1136,
62,
4164,
10466,
7,
23912,
1424,
11,
2747,
62,
6404,
896,
58,
69,
60,
4008,
198,
198,
2,
24061,
3140,
321,
903,
2854,
198,
2,
24061,
262,
2604,
896,
1612,
1863,
262,
38744,
198,
1072,
11306,
62,
28764,
62,
6404,
896,
796,
45941,
13,
18747,
7,
28764,
62,
6404,
896,
737,
32604,
7,
22704,
28,
15,
8,
198,
2,
24061,
1822,
9806,
17724,
198,
1072,
11306,
62,
28764,
62,
853,
9806,
796,
45941,
13,
853,
9806,
7,
1072,
11306,
62,
28764,
62,
6404,
896,
11,
16488,
28,
16,
8,
198,
198,
26585,
62,
641,
321,
903,
796,
651,
62,
4164,
10466,
7,
23912,
1424,
11,
34549,
62,
28764,
62,
6404,
896,
8,
198,
198,
2,
1303,
14468,
7804,
13570,
319,
2393,
198,
198,
49736,
796,
1280,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
11,
69,
6,
90,
19849,
62,
9641,
92,
62,
19849,
62,
9641,
62,
19509,
62,
9288,
62,
49736,
13,
14116,
33809,
705,
86,
11537,
198,
198,
49736,
13,
13564,
7,
69,
6,
59,
77,
17633,
6530,
25,
1391,
418,
13,
6978,
13,
12093,
12453,
7,
19849,
62,
6978,
8,
32239,
77,
59,
77,
11537,
198,
198,
2,
751,
1332,
640,
4045,
290,
583,
2939,
198,
23913,
62,
9288,
62,
2435,
796,
45941,
13,
32604,
26933,
9288,
62,
11379,
62,
49736,
58,
33967,
7131,
6,
9288,
62,
2435,
20520,
329,
269,
85,
287,
2837,
7,
77,
62,
33967,
8,
12962,
198,
23913,
62,
9288,
62,
2435,
62,
525,
62,
9060,
796,
45941,
13,
32604,
26933,
9288,
62,
11379,
62,
49736,
58,
33967,
7131,
6,
9288,
62,
2435,
20520,
329,
269,
85,
287,
2837,
7,
77,
62,
33967,
8,
12962,
14,
23912,
1424,
13,
43358,
58,
15,
60,
198,
49736,
13,
13564,
7,
69,
6,
16350,
2746,
1332,
640,
357,
23913,
625,
38744,
2599,
1391,
315,
2410,
13,
83,
713,
420,
62,
6738,
62,
2435,
7,
23913,
62,
9288,
62,
2435,
8,
32239,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
26287,
1332,
640,
583,
2939,
357,
23913,
625,
38744,
2599,
1391,
315,
2410,
13,
83,
713,
420,
62,
6738,
62,
2435,
7,
23913,
62,
9288,
62,
2435,
62,
525,
62,
9060,
8,
32239,
77,
59,
77,
11537,
198,
198,
2,
3601,
257,
10638,
286,
262,
4856,
583,
5591,
11,
1398,
290,
3140,
321,
903,
198,
13083,
796,
37250,
3866,
16005,
41707,
8344,
439,
3256,
705,
4134,
23843,
3256,
705,
69,
16,
12,
26675,
3256,
705,
14272,
20520,
198,
9806,
62,
11925,
62,
74,
28,
9806,
26933,
11925,
7,
74,
8,
329,
479,
287,
8251,
12962,
198,
198,
37724,
796,
4566,
17816,
18242,
62,
11213,
20520,
198,
9806,
62,
11925,
62,
66,
28,
9806,
7,
9806,
26933,
11925,
7,
74,
8,
329,
479,
287,
6097,
46570,
11925,
10786,
16350,
6,
4008,
198,
198,
9806,
62,
11925,
62,
69,
28,
9806,
26933,
11925,
7,
82,
8,
329,
264,
287,
14631,
37,
727,
1600,
366,
26287,
2430,
32147,
2430,
4834,
37687,
903,
8973,
12962,
198,
198,
2,
1382,
8633,
326,
6622,
262,
42781,
286,
477,
20731,
198,
615,
70,
62,
11600,
796,
1391,
74,
25,
21737,
329,
479,
287,
8251,
92,
198,
198,
2,
1382,
24697,
13042,
198,
11379,
62,
2536,
796,
277,
6,
4895,
37,
727,
1298,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
198,
4871,
62,
2536,
796,
277,
6,
4895,
9487,
1298,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
198,
13083,
62,
2536,
796,
705,
4458,
22179,
26933,
69,
6,
90,
74,
13,
27544,
1096,
33529,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
198,
2,
923,
13570,
198,
49736,
13,
13564,
7,
69,
6,
59,
77,
4895,
126,
97,
1,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
126,
97,
2448,
12,
11379,
20731,
1587,
97,
1298,
36796,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
11709,
6,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
126,
97,
1,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
32239,
77,
11537,
198,
198,
2,
3601,
13639,
198,
49736,
13,
13564,
7,
11379,
62,
2536,
10,
4871,
62,
2536,
10,
13083,
62,
2536,
10,
6,
59,
77,
11537,
198,
198,
2,
3601,
583,
5591,
290,
1398,
20731,
198,
1640,
4686,
87,
11,
277,
79,
287,
27056,
378,
7,
525,
62,
11379,
62,
26585,
2599,
198,
220,
220,
220,
5591,
62,
22510,
62,
2536,
796,
277,
6,
90,
2536,
7,
312,
87,
10,
16,
2599,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
198,
220,
220,
220,
1303,
3601,
583,
1398,
2854,
198,
220,
220,
220,
329,
4686,
66,
11,
269,
287,
27056,
378,
7,
37724,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1398,
62,
4164,
10466,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
46428,
58,
74,
7131,
312,
66,
4357,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4686,
66,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
13,
13564,
7,
11379,
62,
22510,
62,
2536,
10,
69,
6,
90,
66,
25,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
10,
4871,
62,
4164,
10466,
10,
6,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
13,
13564,
7,
69,
6,
4895,
366,
25,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
69,
6,
90,
66,
25,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
10,
4871,
62,
4164,
10466,
10,
6,
59,
77,
11537,
628,
220,
220,
220,
1303,
3601,
4045,
2854,
198,
220,
220,
220,
10638,
13,
13564,
7,
69,
6,
4895,
21215,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
11537,
198,
220,
220,
220,
4045,
62,
4164,
1173,
62,
2536,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
46428,
14692,
2502,
439,
62,
1,
10,
74,
4357,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
220,
220,
220,
10638,
13,
13564,
7,
11379,
62,
22510,
62,
2536,
10,
69,
6,
4895,
16350,
1298,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
10,
2502,
439,
62,
4164,
1173,
62,
2536,
10,
6,
59,
77,
11537,
198,
220,
220,
220,
10638,
13,
13564,
7,
69,
6,
4895,
21215,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
59,
77,
11537,
628,
220,
220,
220,
1303,
3613,
4045,
20731,
329,
1568,
198,
220,
220,
220,
685,
615,
70,
62,
11600,
58,
74,
4083,
33295,
7,
46428,
17816,
2502,
439,
62,
6,
10,
74,
12962,
329,
479,
287,
8251,
60,
198,
198,
2,
3601,
2811,
4045,
20731,
329,
262,
38744,
198,
615,
70,
62,
2502,
439,
62,
4164,
1173,
62,
2536,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
37659,
13,
32604,
7,
615,
70,
62,
11600,
58,
74,
46570,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
19282,
62,
2502,
439,
62,
4164,
1173,
62,
2536,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
37659,
13,
19282,
7,
615,
70,
62,
11600,
58,
74,
46570,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
49736,
13,
13564,
7,
69,
6,
4895,
2625,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
11379,
62,
2536,
10,
4871,
62,
2536,
10,
13083,
62,
2536,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
26287,
1298,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
69,
6,
4895,
1298,
36796,
11925,
7,
4871,
62,
2536,
8,
11709,
6,
10,
615,
70,
62,
2502,
439,
62,
4164,
1173,
62,
2536,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
32147,
1298,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
69,
6,
4895,
1298,
36796,
11925,
7,
4871,
62,
2536,
8,
11709,
6,
10,
19282,
62,
2502,
439,
62,
4164,
1173,
62,
2536,
10,
6,
59,
77,
11537,
198,
198,
2,
7110,
3140,
321,
903,
20731,
198,
49736,
13,
13564,
7,
69,
6,
59,
77,
4895,
126,
97,
1,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
126,
97,
2039,
37687,
903,
20731,
1587,
97,
1298,
36796,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
11709,
6,
10,
6,
59,
77,
11537,
198,
49736,
13,
13564,
7,
69,
6,
4895,
126,
97,
1,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
32239,
77,
11537,
198,
198,
2,
3601,
13639,
198,
49736,
13,
13564,
7,
69,
6,
4895,
4834,
37687,
903,
1298,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
4871,
62,
2536,
10,
13083,
62,
2536,
10,
6,
59,
77,
11537,
198,
2,
3601,
583,
1398,
2854,
198,
46428,
796,
2854,
62,
641,
321,
903,
198,
1640,
4686,
66,
11,
269,
287,
27056,
378,
7,
37724,
2599,
198,
220,
220,
220,
1398,
62,
4164,
10466,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
46428,
58,
74,
7131,
312,
66,
4357,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
220,
220,
220,
10638,
13,
13564,
7,
69,
6,
4895,
366,
25,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
69,
6,
90,
66,
25,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
10,
4871,
62,
4164,
10466,
10,
6,
59,
77,
11537,
198,
198,
2,
3601,
4045,
2854,
198,
49736,
13,
13564,
7,
69,
6,
4895,
21215,
9,
7,
9806,
62,
11925,
62,
69,
10,
9806,
62,
11925,
62,
66,
10,
11925,
7,
13083,
62,
2536,
4008,
92,
6,
10,
6,
59,
77,
11537,
198,
2502,
439,
62,
4164,
1173,
62,
2536,
796,
705,
4458,
22179,
26933,
69,
6,
90,
2536,
7,
744,
7,
46428,
14692,
2502,
439,
62,
1,
10,
74,
4357,
18,
8,
2599,
36796,
9806,
62,
11925,
62,
74,
10,
17,
11709,
6,
329,
479,
287,
8251,
12962,
198,
49736,
13,
13564,
7,
69,
6,
4895,
366,
25,
36796,
9806,
62,
11925,
62,
69,
11709,
6,
10,
69,
6,
4895,
16350,
1298,
36796,
9806,
62,
11925,
62,
66,
11709,
6,
10,
2502,
439,
62,
4164,
1173,
62,
2536,
10,
6,
59,
77,
11537,
198,
198,
49736,
13,
19836,
3419,
198,
198,
2235,
3601,
319,
12094,
198,
4798,
10786,
4834,
15140,
662,
10367,
59,
77,
11537,
198,
9806,
62,
11925,
796,
3509,
26933,
11925,
7,
2539,
8,
329,
1994,
287,
2854,
62,
641,
321,
903,
13,
13083,
3419,
12962,
198,
58,
4798,
7,
69,
6,
90,
2539,
29164,
9806,
62,
11925,
92,
82,
38362,
1391,
8367,
92,
11537,
329,
1994,
11,
1988,
287,
2854,
62,
641,
321,
903,
13,
23814,
3419,
60,
198,
198,
2235,
3613,
635,
262,
1321,
287,
257,
764,
40664,
2393,
4465,
329,
29353,
357,
392,
14078,
4856,
287,
1339,
8,
198,
7061,
6,
198,
464,
2393,
815,
1249,
329,
2562,
29353,
286,
262,
4981,
2854,
1912,
319,
198,
4871,
2649,
2099,
11,
2746,
11,
2746,
62,
9641,
357,
13466,
11,
938,
11,
34549,
62,
13466,
11,
34549,
62,
12957,
828,
198,
4164,
10466,
11,
3047,
640,
32278,
640,
13,
198,
7061,
6,
198,
198,
4299,
651,
62,
2435,
62,
6738,
62,
8841,
7,
2435,
62,
8841,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
34030,
326,
1813,
257,
640,
62,
8841,
1296,
515,
355,
657,
67,
25,
15,
71,
25,
15,
76,
25,
15,
82,
25,
15,
907,
11,
198,
220,
220,
220,
5860,
262,
1271,
286,
2250,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
30778,
796,
640,
62,
8841,
13,
35312,
7,
10354,
11537,
198,
220,
220,
220,
1303,
651,
262,
3815,
329,
288,
11,
289,
11,
285,
11,
264,
11,
13845,
198,
220,
220,
220,
640,
62,
27160,
796,
685,
17635,
329,
4808,
287,
2837,
7,
11925,
7,
22018,
896,
4008,
60,
198,
220,
220,
220,
16410,
2435,
62,
27160,
58,
312,
87,
4083,
33295,
7,
66,
8,
329,
269,
287,
410,
611,
269,
13,
271,
77,
39223,
3419,
60,
329,
4686,
87,
11,
410,
287,
27056,
378,
7,
22018,
896,
15437,
628,
220,
220,
220,
640,
62,
27160,
796,
685,
600,
10786,
4458,
22179,
7,
85,
4008,
329,
410,
287,
640,
62,
27160,
60,
628,
220,
220,
220,
2250,
796,
2160,
26933,
14981,
9,
71,
85,
329,
31557,
11,
289,
85,
287,
19974,
7,
2435,
62,
27160,
11,
685,
1731,
11,
352,
11,
352,
14,
1899,
11,
352,
14,
1899,
1174,
17,
11,
352,
14,
1899,
1174,
18,
12962,
12962,
628,
220,
220,
220,
1441,
2250,
198,
198,
4299,
651,
62,
32604,
62,
34409,
62,
2435,
7,
19849,
62,
6978,
11,
2746,
62,
9641,
11639,
13466,
3256,
14257,
28,
25101,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
34030,
326,
5860,
262,
1612,
1333,
7574,
640,
625,
262,
38744,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
5591,
62,
6978,
82,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
11,
705,
11379,
62,
9,
3256,
7061,
4008,
198,
220,
220,
220,
583,
62,
11379,
62,
34409,
62,
2435,
796,
17635,
198,
220,
220,
220,
329,
4686,
87,
11,
277,
79,
287,
27056,
378,
7,
11379,
62,
6978,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1280,
10638,
3047,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
46428,
4032,
19849,
62,
49736,
62,
17752,
13,
14116,
6,
4008,
355,
33918,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3047,
62,
49736,
796,
33918,
13,
2220,
7,
17752,
62,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
1271,
286,
2250,
329,
262,
1266,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
3047,
62,
2435,
796,
651,
62,
2435,
62,
6738,
62,
8841,
7,
34409,
62,
49736,
17816,
51,
3861,
1268,
2751,
62,
34694,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4532,
611,
2622,
262,
3047,
640,
329,
262,
938,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2746,
62,
9641,
6624,
705,
12957,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36835,
62,
34409,
62,
2435,
796,
3047,
62,
2435,
29006,
34409,
62,
49736,
17816,
8905,
46,
3398,
50,
20520,
10,
16,
68,
12,
21,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3047,
62,
2435,
796,
36835,
62,
34409,
62,
2435,
9,
9031,
628,
220,
220,
220,
220,
220,
220,
220,
611,
14257,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
37,
727,
1391,
312,
87,
10,
16,
92,
37913,
19849,
62,
9641,
92,
2599,
1391,
34409,
62,
2435,
25,
15,
13,
17,
69,
92,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
583,
62,
11379,
62,
34409,
62,
2435,
13,
33295,
7,
34409,
62,
2435,
8,
198,
220,
220,
220,
1441,
583,
62,
11379,
62,
34409,
62,
2435,
198,
198,
2235,
670,
319,
8914,
198,
11748,
269,
21370,
198,
198,
49736,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
19849,
62,
6978,
11,
69,
6,
90,
19849,
62,
9641,
92,
62,
8658,
934,
62,
9288,
62,
49736,
13,
40664,
11537,
198,
40664,
62,
7753,
796,
1280,
7,
49736,
62,
7753,
11,
366,
86,
4943,
198,
16002,
796,
269,
21370,
13,
16002,
7,
40664,
62,
7753,
8,
198,
40664,
62,
25677,
796,
37250,
4871,
2649,
62,
4906,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
77,
1671,
62,
37724,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19849,
62,
4906,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19849,
62,
9641,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11379,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3866,
16005,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8344,
439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4134,
23843,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
16,
12,
26675,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14272,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34409,
62,
2435,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
76,
1078,
40645,
62,
10215,
49501,
62,
1073,
891,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
16002,
13,
16002,
322,
7,
40664,
62,
25677,
8,
198,
198,
525,
62,
11379,
62,
34409,
62,
2435,
796,
651,
62,
32604,
62,
34409,
62,
2435,
7,
19849,
62,
6978,
11,
2746,
62,
9641,
28,
19849,
62,
9641,
8,
198,
4871,
2649,
62,
4906,
796,
705,
525,
12,
67,
786,
589,
6,
611,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
855,
6,
1186,
1292,
6,
2073,
705,
11265,
12,
14259,
12,
48870,
6,
198,
77,
1671,
62,
37724,
796,
604,
611,
4566,
17816,
19608,
292,
316,
62,
4906,
20520,
855,
6,
1186,
1292,
6,
2073,
362,
628,
198,
2,
9052,
832,
477,
262,
38744,
290,
3613,
1321,
198,
8516,
62,
1462,
62,
13564,
796,
17635,
198,
1640,
4686,
87,
11,
277,
79,
287,
27056,
378,
7,
525,
62,
11379,
62,
26585,
2599,
198,
220,
220,
220,
15274,
62,
1462,
62,
13564,
13,
33295,
26933,
4871,
2649,
62,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
1671,
62,
37724,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
17816,
19849,
62,
11250,
3924,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
9641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
10,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
2502,
439,
62,
3866,
16005,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
2502,
439,
62,
8344,
439,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
2502,
439,
62,
4134,
23843,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
2502,
439,
62,
69,
16,
12,
26675,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
2502,
439,
62,
14272,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
583,
62,
11379,
62,
34409,
62,
2435,
58,
312,
87,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
79,
17816,
76,
1078,
40645,
62,
10215,
49501,
62,
1073,
891,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
33761,
198,
2,
751,
3140,
321,
903,
1321,
198,
8516,
62,
1462,
62,
13564,
13,
33295,
26933,
4871,
2649,
62,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
299,
1671,
62,
37724,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
17816,
19849,
62,
11250,
3924,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1072,
11306,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1072,
11306,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
2502,
439,
62,
3866,
16005,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
2502,
439,
62,
8344,
439,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
2502,
439,
62,
4134,
23843,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
2502,
439,
62,
69,
16,
12,
26675,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
2502,
439,
62,
14272,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
583,
62,
11379,
62,
34409,
62,
2435,
58,
312,
87,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2854,
62,
641,
321,
903,
17816,
76,
1078,
40645,
62,
10215,
49501,
62,
1073,
891,
6,
4357,
198,
220,
220,
220,
33761,
198,
198,
16002,
13,
16002,
1666,
7,
8516,
62,
1462,
62,
13564,
8,
198,
40664,
62,
7753,
13,
19836,
3419,
628
] | 2.474942 | 9,498 |
from yunionclient.common import base
| [
6738,
331,
24592,
16366,
13,
11321,
1330,
2779,
628,
198
] | 3.9 | 10 |
"""The script retrieves explicit connectives marking temporal, comparison, contingency, and expansion relations
and prints the total number of these connectives per article section."""
import sys
import spacy
from collections import Counter
nlp = spacy.load("en_core_web_sm")
# The script below retrieves the connectives from each article abstract
# and prints their total number.
# To change the section type, simply replace "abstracts.txt" with
# "introductions.txt" -- for introductions,
# "relatedwork.txt" -- for related works,
# "discussions.txt" -- for discussions,
# "conclusions.txt" -- for conclusions.
f = open("abstracts.txt", "r", encoding="utf-8")
for line in f:
if len(line) > 0:
items = line.split(" ")
if len(items) > 1:
file_name = items[0]
file_text = items[1]
low_case = file_text.lower()
doc = nlp(low_case)
temporal = {"after", "afterwards", "before",
"earlier", "later", "meanwhile",
"next", "previously", "simultaneously", "thereafter",
"till", "until", "ultimately"
}
comparison = {"although", "but", "conversely", "however",
"instead", "nevertheless", "nonetheless", "rather",
"though", "whereas", "yet", "regardless", "despite", "though"
}
contingency = {"as", "because", "consequently", "hence", "if",
"thereby", "therefore", "thus", "so", "indeed", "accordingly"}
expansion = {"also", "alternatively", "besides", "else", "except",
"finally", "further", "furthermore", "likewise",
"moreover", "neither", "nor", "or", "otherwise", "overall", "plus",
"separately", "similarly", "specifically",
"especially", "first", "second", "firstly", "secondly"}
temporal_relations = []
comparison_relations = []
contingency_relations = []
expansion_relations = []
for token in doc:
if token.text == token.text in temporal:
temporal_relations.append(token.text)
elif token.text == token.text in comparison:
comparison_relations.append(token.text)
elif token.text == token.text in contingency:
contingency_relations.append(token.text)
elif token.text == token.text in comparison:
expansion_relations.append(token.text)
print(file_name)
print("Temporal connectives found in the section:", temporal_relations)
print("Total number of connectives:", len(temporal_relations))
print("Comparison connectives found in the section:", comparison_relations)
print("Total number of connectives:", len(comparison_relations))
print("Contingency connectives found in the section:", contingency_relations)
print("Total number of connectives:", len(contingency_relations))
print("Expansion connectives found in the section:", expansion_relations)
print("Total number of connectives:", len(expansion_relations)) | [
37811,
464,
4226,
13236,
1158,
7952,
2018,
1083,
18730,
21964,
11,
7208,
11,
38820,
11,
290,
7118,
2316,
201,
198,
392,
20842,
262,
2472,
1271,
286,
777,
2018,
1083,
583,
2708,
2665,
526,
15931,
201,
198,
201,
198,
11748,
25064,
201,
198,
11748,
599,
1590,
201,
198,
6738,
17268,
1330,
15034,
201,
198,
21283,
79,
796,
599,
1590,
13,
2220,
7203,
268,
62,
7295,
62,
12384,
62,
5796,
4943,
201,
198,
201,
198,
2,
383,
4226,
2174,
13236,
1158,
262,
2018,
1083,
422,
1123,
2708,
12531,
201,
198,
2,
290,
20842,
511,
2472,
1271,
13,
201,
198,
2,
1675,
1487,
262,
2665,
2099,
11,
2391,
6330,
366,
397,
8709,
82,
13,
14116,
1,
351,
201,
198,
2,
366,
27427,
2733,
13,
14116,
1,
1377,
329,
3120,
2733,
11,
201,
198,
2,
366,
5363,
1818,
13,
14116,
1,
1377,
329,
3519,
2499,
11,
201,
198,
2,
366,
15410,
21585,
13,
14116,
1,
1377,
329,
9984,
11,
201,
198,
2,
366,
1102,
11539,
13,
14116,
1,
1377,
329,
13242,
13,
201,
198,
69,
796,
1280,
7203,
397,
8709,
82,
13,
14116,
1600,
366,
81,
1600,
21004,
2625,
40477,
12,
23,
4943,
201,
198,
1640,
1627,
287,
277,
25,
201,
198,
220,
220,
220,
611,
18896,
7,
1370,
8,
1875,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3709,
796,
1627,
13,
35312,
7203,
197,
4943,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
23814,
8,
1875,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2393,
62,
3672,
796,
3709,
58,
15,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2393,
62,
5239,
796,
3709,
58,
16,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1877,
62,
7442,
796,
2393,
62,
5239,
13,
21037,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2205,
796,
299,
34431,
7,
9319,
62,
7442,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21964,
796,
19779,
8499,
1600,
366,
8499,
2017,
1600,
366,
19052,
1600,
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,
366,
451,
2505,
1600,
366,
36760,
1600,
366,
1326,
6710,
1600,
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,
366,
19545,
1600,
366,
3866,
8647,
1600,
366,
14323,
9560,
3481,
1600,
366,
8117,
8499,
1600,
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,
366,
83,
359,
1600,
366,
28446,
1600,
366,
586,
3358,
1,
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,
1782,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7208,
796,
19779,
16670,
1600,
366,
4360,
1600,
366,
1102,
21243,
1600,
366,
4919,
964,
1600,
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,
366,
38070,
1600,
366,
12081,
9603,
1600,
366,
13159,
12845,
1600,
366,
34330,
1600,
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,
366,
2016,
1600,
366,
3003,
292,
1600,
366,
25907,
1600,
366,
2301,
14694,
1600,
366,
41081,
1600,
366,
2016,
1,
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,
1782,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38820,
796,
19779,
292,
1600,
366,
13893,
1600,
366,
1102,
20415,
1600,
366,
831,
344,
1600,
366,
361,
1600,
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,
366,
8117,
1525,
1600,
366,
8117,
754,
1600,
366,
26239,
1600,
366,
568,
1600,
366,
521,
2308,
1600,
366,
38169,
306,
20662,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7118,
796,
19779,
14508,
1600,
366,
33645,
9404,
1600,
366,
65,
11788,
1600,
366,
17772,
1600,
366,
16341,
1600,
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,
366,
69,
3289,
1600,
366,
69,
1914,
1600,
366,
69,
1914,
3549,
1600,
366,
2339,
3083,
1600,
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,
366,
3549,
2502,
1600,
366,
710,
1555,
1600,
366,
13099,
1600,
366,
273,
1600,
366,
847,
3083,
1600,
366,
2502,
439,
1600,
366,
9541,
1600,
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,
366,
25512,
1286,
1600,
366,
38610,
306,
1600,
366,
11423,
453,
1600,
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,
366,
16480,
1600,
366,
11085,
1600,
366,
12227,
1600,
366,
11085,
306,
1600,
366,
12227,
306,
20662,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21964,
62,
39468,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7208,
62,
39468,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38820,
62,
39468,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7118,
62,
39468,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
11241,
287,
2205,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
11241,
13,
5239,
6624,
11241,
13,
5239,
287,
21964,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21964,
62,
39468,
13,
33295,
7,
30001,
13,
5239,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
11241,
13,
5239,
6624,
11241,
13,
5239,
287,
7208,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7208,
62,
39468,
13,
33295,
7,
30001,
13,
5239,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
11241,
13,
5239,
6624,
11241,
13,
5239,
287,
38820,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38820,
62,
39468,
13,
33295,
7,
30001,
13,
5239,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
11241,
13,
5239,
6624,
11241,
13,
5239,
287,
7208,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7118,
62,
39468,
13,
33295,
7,
30001,
13,
5239,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
7753,
62,
3672,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12966,
35738,
2018,
1083,
1043,
287,
262,
2665,
25,
1600,
21964,
62,
39468,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
14957,
1271,
286,
2018,
1083,
25,
1600,
18896,
7,
11498,
35738,
62,
39468,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
50249,
1653,
2018,
1083,
1043,
287,
262,
2665,
25,
1600,
7208,
62,
39468,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
14957,
1271,
286,
2018,
1083,
25,
1600,
18896,
7,
785,
1845,
1653,
62,
39468,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
4264,
278,
1387,
2018,
1083,
1043,
287,
262,
2665,
25,
1600,
38820,
62,
39468,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
14957,
1271,
286,
2018,
1083,
25,
1600,
18896,
7,
3642,
278,
1387,
62,
39468,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
16870,
5487,
2018,
1083,
1043,
287,
262,
2665,
25,
1600,
7118,
62,
39468,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
14957,
1271,
286,
2018,
1083,
25,
1600,
18896,
7,
11201,
5487,
62,
39468,
4008
] | 2.24653 | 1,513 |
"""
Basic metadata reports/queries
@author: dan myung ([email protected])
create: 10/19/2009
Notes:
A place where oft reused queries off xformmanager.metadata can be referenced.
This is somewhat redundant with functionality already existent in the apps/reports/util.py file which already does
a basic metadata query.
"""
from hq.models import Domain, Organization, ReporterProfile, BlacklistedUser
from receiver.models import Submission
from reporters.models import Reporter, ReporterGroup
from datetime import datetime, timedelta
from xformmanager.models import Metadata
def build_filtered_metadataquery(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Simple report function to prepare the metadata query for the eventual magic you will do to it.
The required arguments are a timespan, and at least one of the following:
Domain
A single reporter group
A single reporter profile
or an array of formdatadef
Returns the filtered Metadata queryset
"""
if domain is None and reportergroup is None and reporterprofile is None and len(formdefs)== 0:
raise Exception("Insufficient arguments to run query")
filtered = Metadata.objects.filter(timeend__gte=intervalstart).filter(timeend__lte=intervalend)
exclude_usernames = []
if domain != None:
#next, get the blacklisted users from this domain and exclude them
blist = BlacklistedUser.objects.filter(domains=domain, active=True)
exclude_usernames = blist.values_list('username',flat=True)
filtered = filtered.filter(formdefmodel__domain=domain).exclude(username__in=exclude_usernames)
if reportergroup != None:
raise Exception ("Reportergroup filtration not implemented yet")
if reporterprofile != None:
#note, consistency on chw_id vs. chw_username still needs to be worked out. for this usage, we'll stick to chw_username
#chw_id should probably used long term
filtered = filtered.filter(username=reporterprofile.chw_username).exclude(username__in=exclude_usernames)
if len(formdefs) > 0:
filtered = filtered.filter(formdefmodel__in=formdefs).exclude(username__in=exclude_usernames)
return filtered
def timeend_by_hour_of_day(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Simple report function to get a histogram of the timeend by hour.
The required arguments are a timespan, and at least one of the following:
Domain
A single reporter group
A single reporter profile
or an array of formdatadef
This will return an array of counts, 24 in length for each hour with integers in it [1,4,1,2,4,2,...]
"""
filtered = build_filtered_metadataquery(intervalstart, intervalend, domain=domain, reportergroup=reportergroup, reporterprofile=reporterprofile, formdefs=formdefs)
hourcounts = []
for hour in range(0,24):
hourcounts.append(filtered.extra(where=['hour(timeend)=%d' % hour ]).count())
return hourcounts
def timestart_by_hour_of_day(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Simple report function to get a histogram of the timestart by hour.
The required arguments are a timespan, and at least one of the following:
Domain
A single reporter group
A single reporter profile
or an array of formdatadef
This will return an array of counts, 24 in length for each hour with integers in it [1,4,1,2,4,2,...]
"""
filtered = build_filtered_metadataquery(intervalstart, intervalend, domain=domain, reportergroup=reportergroup, reporterprofile=reporterprofile, formdefs=formdefs)
hourcounts = []
for hour in range(0,24):
hourcounts.append(filtered.extra(where=['hour(timestart)=%d' % hour ]).count())
return hourcounts
def timedelta_by_hour_of_day(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Simple report function to get a histogram of the average time delta of the timestart and timeeend, and show the results
by hour of the timeend.
The required arguments are a timespan, and at least one of the following:
Domain
A single reporter group
A single reporter profile
or an array of formdatadef
This will return an array of counts, 24 in length for each hour with integers in it [1,4,1,2,4,2,...]
"""
filtered = build_filtered_metadataquery(intervalstart, intervalend, domain=domain, reportergroup=reportergroup, reporterprofile=reporterprofile, formdefs=formdefs)
hourcounts = []
for hour in range(0,24):
filterhour_timeend = filtered.extra(where=['hour(timeend)=%d' % hour ])
totalseconds = 0
for filt in filterhour_timeend:
totalseconds = totalseconds + (filt.timeend - filt.timestart).seconds
if filterhour_timeend.count() > 0:
avg = (totalseconds/filterhour_timeend.count())/60
else:
avg = -1
hourcounts.append(avg)
return hourcounts
def receivetime_by_hour_of_day(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Simple report function to get a histogram of the time received by the server
The required arguments are a timespan, and at least one of the following:
Domain
A single reporter group
A single reporter profile
or an array of formdatadef
This will return an array of counts, 24 in length for each hour with integers in it [1,4,1,2,4,2,...]
"""
filtered = build_filtered_metadataquery(intervalstart, intervalend, domain=domain, reportergroup=reportergroup, reporterprofile=reporterprofile, formdefs=formdefs)
#ok, so we got the filtered results, now we need to cross link it with the submissions to get the submit_time
submission_ids = filtered.values_list('attachment__submission__id', flat=True)
submissions = Submission.objects.filter(id__in=submission_ids)
hourcounts = []
for hour in range(0,24):
hourshift = (hour + 17)%24
#hourshift = hour
hourcounts.append(submissions.extra(where=['hour(submit_time)=%d' % hourshift ]).count())
return hourcounts
def metadata_submission_stats(intervalstart, intervalend, domain=None, reportergroup=None, reporterprofile=None, formdefs=[]):
"""
Using the same metadata filtration, establish stats on Metadata
"""
filtered = build_filtered_metadataquery(intervalstart, intervalend, domain=domain, reportergroup=reportergroup, reporterprofile=reporterprofile, formdefs=formdefs)
#total by deviceid
#duplicates
#metadata/users
pass
| [
37811,
220,
198,
26416,
20150,
3136,
14,
421,
10640,
198,
31,
9800,
25,
46078,
616,
2150,
357,
67,
1820,
2150,
31,
27740,
18013,
13,
785,
8,
220,
198,
17953,
25,
838,
14,
1129,
14,
10531,
198,
198,
16130,
25,
198,
32,
1295,
810,
28639,
46823,
20743,
572,
2124,
687,
37153,
13,
38993,
460,
307,
20717,
13,
198,
198,
1212,
318,
6454,
30806,
351,
11244,
1541,
2152,
298,
287,
262,
6725,
14,
48922,
14,
22602,
13,
9078,
2393,
543,
1541,
857,
198,
64,
4096,
20150,
12405,
13,
198,
37811,
198,
198,
6738,
289,
80,
13,
27530,
1330,
20021,
11,
12275,
11,
25869,
37046,
11,
2619,
17935,
12982,
198,
6738,
9733,
13,
27530,
1330,
42641,
198,
6738,
7638,
13,
27530,
1330,
25869,
11,
25869,
13247,
198,
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
6738,
2124,
687,
37153,
13,
27530,
1330,
3395,
14706,
628,
198,
4299,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
989,
2163,
284,
8335,
262,
20150,
12405,
329,
262,
19657,
5536,
345,
481,
466,
284,
340,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
383,
2672,
7159,
389,
257,
1661,
6839,
11,
290,
379,
1551,
530,
286,
262,
1708,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20021,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
7034,
198,
220,
220,
220,
220,
220,
220,
220,
393,
281,
7177,
286,
1296,
19608,
671,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
262,
29083,
3395,
14706,
42517,
893,
316,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
220,
220,
220,
220,
198,
220,
220,
220,
611,
7386,
318,
6045,
290,
9095,
8094,
318,
6045,
290,
9095,
13317,
318,
6045,
290,
18896,
7,
687,
4299,
82,
8,
855,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7203,
20376,
15267,
7159,
284,
1057,
12405,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
3395,
14706,
13,
48205,
13,
24455,
7,
2435,
437,
834,
70,
660,
28,
3849,
2100,
9688,
737,
24455,
7,
2435,
437,
834,
75,
660,
28,
3849,
2100,
437,
8,
220,
220,
220,
220,
198,
220,
220,
220,
19607,
62,
385,
1142,
1047,
796,
17635,
628,
220,
220,
220,
611,
7386,
14512,
6045,
25,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
19545,
11,
651,
262,
2042,
17935,
2985,
422,
428,
7386,
290,
19607,
606,
198,
220,
220,
220,
220,
220,
220,
220,
698,
396,
796,
2619,
17935,
12982,
13,
48205,
13,
24455,
7,
3438,
1299,
28,
27830,
11,
4075,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19607,
62,
385,
1142,
1047,
796,
698,
396,
13,
27160,
62,
4868,
10786,
29460,
3256,
38568,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
29083,
796,
29083,
13,
24455,
7,
687,
4299,
19849,
834,
27830,
28,
27830,
737,
1069,
9152,
7,
29460,
834,
259,
28,
1069,
9152,
62,
385,
1142,
1047,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
611,
9095,
8094,
14512,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
5855,
6207,
4337,
8094,
1226,
83,
1358,
407,
9177,
1865,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
9095,
13317,
14512,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11295,
11,
15794,
319,
442,
86,
62,
312,
3691,
13,
442,
86,
62,
29460,
991,
2476,
284,
307,
3111,
503,
13,
329,
428,
8748,
11,
356,
1183,
4859,
284,
442,
86,
62,
29460,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
354,
86,
62,
312,
815,
2192,
973,
890,
3381,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
29083,
796,
29083,
13,
24455,
7,
29460,
28,
260,
26634,
13317,
13,
354,
86,
62,
29460,
737,
1069,
9152,
7,
29460,
834,
259,
28,
1069,
9152,
62,
385,
1142,
1047,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
611,
18896,
7,
687,
4299,
82,
8,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
29083,
796,
29083,
13,
24455,
7,
687,
4299,
19849,
834,
259,
28,
687,
4299,
82,
737,
1069,
9152,
7,
29460,
834,
259,
28,
1069,
9152,
62,
385,
1142,
1047,
8,
198,
220,
220,
220,
1441,
29083,
628,
198,
4299,
640,
437,
62,
1525,
62,
9769,
62,
1659,
62,
820,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
989,
2163,
284,
651,
257,
1554,
21857,
286,
262,
640,
437,
416,
1711,
13,
198,
220,
220,
220,
383,
2672,
7159,
389,
257,
1661,
6839,
11,
290,
379,
1551,
530,
286,
262,
1708,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20021,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
7034,
198,
220,
220,
220,
220,
220,
220,
220,
393,
281,
7177,
286,
1296,
19608,
671,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
770,
481,
1441,
281,
7177,
286,
9853,
11,
1987,
287,
4129,
329,
1123,
1711,
351,
37014,
287,
340,
685,
16,
11,
19,
11,
16,
11,
17,
11,
19,
11,
17,
11,
22345,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
27830,
11,
9095,
8094,
28,
260,
26634,
8094,
11,
9095,
13317,
28,
260,
26634,
13317,
11,
1296,
4299,
82,
28,
687,
4299,
82,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1711,
9127,
82,
796,
17635,
198,
220,
220,
220,
329,
1711,
287,
2837,
7,
15,
11,
1731,
2599,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1711,
9127,
82,
13,
33295,
7,
10379,
4400,
13,
26086,
7,
3003,
28,
17816,
9769,
7,
2435,
437,
47505,
4,
67,
6,
4064,
1711,
2361,
737,
9127,
28955,
198,
220,
220,
220,
1441,
1711,
9127,
82,
198,
198,
4299,
4628,
395,
433,
62,
1525,
62,
9769,
62,
1659,
62,
820,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
989,
2163,
284,
651,
257,
1554,
21857,
286,
262,
4628,
395,
433,
416,
1711,
13,
198,
220,
220,
220,
383,
2672,
7159,
389,
257,
1661,
6839,
11,
290,
379,
1551,
530,
286,
262,
1708,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20021,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
7034,
198,
220,
220,
220,
220,
220,
220,
220,
393,
281,
7177,
286,
1296,
19608,
671,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
770,
481,
1441,
281,
7177,
286,
9853,
11,
1987,
287,
4129,
329,
1123,
1711,
351,
37014,
287,
340,
685,
16,
11,
19,
11,
16,
11,
17,
11,
19,
11,
17,
11,
22345,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
27830,
11,
9095,
8094,
28,
260,
26634,
8094,
11,
9095,
13317,
28,
260,
26634,
13317,
11,
1296,
4299,
82,
28,
687,
4299,
82,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1711,
9127,
82,
796,
17635,
198,
220,
220,
220,
329,
1711,
287,
2837,
7,
15,
11,
1731,
2599,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1711,
9127,
82,
13,
33295,
7,
10379,
4400,
13,
26086,
7,
3003,
28,
17816,
9769,
7,
16514,
395,
433,
47505,
4,
67,
6,
4064,
1711,
2361,
737,
9127,
28955,
198,
220,
220,
220,
1441,
1711,
9127,
82,
628,
198,
198,
4299,
28805,
12514,
62,
1525,
62,
9769,
62,
1659,
62,
820,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
989,
2163,
284,
651,
257,
1554,
21857,
286,
262,
2811,
640,
25979,
286,
262,
4628,
395,
433,
290,
640,
68,
437,
11,
290,
905,
262,
2482,
220,
198,
220,
220,
220,
416,
1711,
286,
262,
640,
437,
13,
198,
220,
220,
220,
383,
2672,
7159,
389,
257,
1661,
6839,
11,
290,
379,
1551,
530,
286,
262,
1708,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20021,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
7034,
198,
220,
220,
220,
220,
220,
220,
220,
393,
281,
7177,
286,
1296,
19608,
671,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
770,
481,
1441,
281,
7177,
286,
9853,
11,
1987,
287,
4129,
329,
1123,
1711,
351,
37014,
287,
340,
685,
16,
11,
19,
11,
16,
11,
17,
11,
19,
11,
17,
11,
22345,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
27830,
11,
9095,
8094,
28,
260,
26634,
8094,
11,
9095,
13317,
28,
260,
26634,
13317,
11,
1296,
4299,
82,
28,
687,
4299,
82,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1711,
9127,
82,
796,
17635,
198,
220,
220,
220,
329,
1711,
287,
2837,
7,
15,
11,
1731,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
8106,
9769,
62,
2435,
437,
796,
29083,
13,
26086,
7,
3003,
28,
17816,
9769,
7,
2435,
437,
47505,
4,
67,
6,
4064,
1711,
33761,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
43012,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1226,
83,
287,
8106,
9769,
62,
2435,
437,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
43012,
796,
2472,
43012,
1343,
357,
69,
2326,
13,
2435,
437,
532,
1226,
83,
13,
16514,
395,
433,
737,
43012,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
8106,
9769,
62,
2435,
437,
13,
9127,
3419,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42781,
796,
357,
23350,
43012,
14,
24455,
9769,
62,
2435,
437,
13,
9127,
3419,
20679,
1899,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42781,
796,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
1711,
9127,
82,
13,
33295,
7,
615,
70,
8,
198,
220,
220,
220,
1441,
1711,
9127,
82,
628,
198,
198,
4299,
3328,
2435,
62,
1525,
62,
9769,
62,
1659,
62,
820,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17427,
989,
2163,
284,
651,
257,
1554,
21857,
286,
262,
640,
2722,
416,
262,
4382,
198,
220,
220,
220,
383,
2672,
7159,
389,
257,
1661,
6839,
11,
290,
379,
1551,
530,
286,
262,
1708,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20021,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2060,
9095,
7034,
198,
220,
220,
220,
220,
220,
220,
220,
393,
281,
7177,
286,
1296,
19608,
671,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
770,
481,
1441,
281,
7177,
286,
9853,
11,
1987,
287,
4129,
329,
1123,
1711,
351,
37014,
287,
340,
685,
16,
11,
19,
11,
16,
11,
17,
11,
19,
11,
17,
11,
22345,
220,
220,
220,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
27830,
11,
9095,
8094,
28,
260,
26634,
8094,
11,
9095,
13317,
28,
260,
26634,
13317,
11,
1296,
4299,
82,
28,
687,
4299,
82,
8,
198,
220,
220,
220,
1303,
482,
11,
523,
356,
1392,
262,
29083,
2482,
11,
783,
356,
761,
284,
3272,
2792,
340,
351,
262,
22129,
284,
651,
262,
9199,
62,
2435,
198,
220,
220,
220,
14498,
62,
2340,
796,
29083,
13,
27160,
62,
4868,
10786,
1078,
15520,
834,
7266,
3411,
834,
312,
3256,
6228,
28,
17821,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
22129,
796,
42641,
13,
48205,
13,
24455,
7,
312,
834,
259,
28,
7266,
3411,
62,
2340,
8,
198,
220,
220,
220,
1711,
9127,
82,
796,
17635,
198,
220,
220,
220,
329,
1711,
287,
2837,
7,
15,
11,
1731,
2599,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1711,
30846,
796,
357,
9769,
1343,
1596,
8,
4,
1731,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9769,
30846,
796,
1711,
198,
220,
220,
220,
220,
220,
220,
220,
1711,
9127,
82,
13,
33295,
7,
7266,
8481,
13,
26086,
7,
3003,
28,
17816,
9769,
7,
46002,
62,
2435,
47505,
4,
67,
6,
4064,
1711,
30846,
2361,
737,
9127,
28955,
198,
220,
220,
220,
1441,
1711,
9127,
82,
628,
198,
4299,
20150,
62,
7266,
3411,
62,
34242,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
14202,
11,
9095,
8094,
28,
14202,
11,
9095,
13317,
28,
14202,
11,
1296,
4299,
82,
28,
21737,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8554,
262,
976,
20150,
1226,
83,
1358,
11,
4474,
9756,
319,
3395,
14706,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
29083,
796,
1382,
62,
10379,
4400,
62,
38993,
22766,
7,
3849,
2100,
9688,
11,
16654,
437,
11,
7386,
28,
27830,
11,
9095,
8094,
28,
260,
26634,
8094,
11,
9095,
13317,
28,
260,
26634,
13317,
11,
1296,
4299,
82,
28,
687,
4299,
82,
8,
198,
220,
220,
220,
1303,
23350,
416,
3335,
312,
198,
220,
220,
220,
1303,
646,
489,
16856,
198,
220,
220,
220,
1303,
38993,
14,
18417,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
628
] | 2.782626 | 2,544 |
################################################################################
# filename: switch_skill.py
# date: 07. Apr. 2021
# username: winkste
# name: Stephan Wink
# description: This module handles the input signal of a switch.
# In the first implementation it will only support polling of an
# input pin. In future implementations also reacting on interrupts
# shall be possible, therefore a mode variable is defined and
# handed over to the object during construction
#
#
#
################################################################################
################################################################################
# Imports
import time
from src.skills.abs_skill import AbstractSkill
from src.mqtt.user_subs import UserSubs
from src.mqtt.user_pubs import UserPubs
import machine
import src.utils.trace as T
################################################################################
# Variables
_NO_VALUE = 0xff
_SWITCH_OFF_TIME = 1000
SWITCH_SKILL_MODE_POLL = 0
SWITCH_SKILL_MODE_ISR = 1
_SWITCH_STATE_LOW = 0
_SWITCH_STATE_HIGH = 1
_SWITCH_STATE_INIT = 0xff
_SWITCH_STATE_DICT_INV = {
_SWITCH_STATE_LOW: _SWITCH_STATE_HIGH,
_SWITCH_STATE_HIGH: _SWITCH_STATE_LOW,
}
################################################################################
# Functions
################################################################################
# Classes
################################################################################
# @brief This is the switch skill, handling a switch input signal
################################################################################
################################################################################
# Scripts
T.configure(__name__, T.INFO)
if __name__ == "__main__":
# execute only if run as a script
T.trace(__name__, T.WARNING, 'no main script defined ')
| [
29113,
29113,
14468,
198,
2,
29472,
25,
5078,
62,
42401,
13,
9078,
198,
2,
3128,
25,
8753,
13,
2758,
13,
33448,
198,
2,
20579,
25,
41955,
4169,
198,
2,
1438,
25,
20800,
48450,
198,
2,
6764,
25,
770,
8265,
17105,
262,
5128,
6737,
286,
257,
5078,
13,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
554,
262,
717,
7822,
340,
481,
691,
1104,
13985,
286,
281,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
6757,
13,
554,
2003,
25504,
635,
33413,
319,
48237,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2236,
307,
1744,
11,
4361,
257,
4235,
7885,
318,
5447,
290,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10158,
625,
284,
262,
2134,
1141,
5103,
198,
2,
198,
2,
198,
2,
198,
29113,
29113,
14468,
198,
198,
29113,
29113,
14468,
198,
2,
1846,
3742,
198,
11748,
640,
198,
6738,
12351,
13,
8135,
2171,
13,
8937,
62,
42401,
1330,
27741,
35040,
198,
6738,
12351,
13,
76,
80,
926,
13,
7220,
62,
7266,
82,
1330,
11787,
7004,
82,
198,
6738,
12351,
13,
76,
80,
926,
13,
7220,
62,
12984,
82,
1330,
11787,
14876,
82,
198,
11748,
4572,
198,
11748,
12351,
13,
26791,
13,
40546,
355,
309,
198,
198,
29113,
29113,
14468,
198,
2,
15965,
2977,
198,
62,
15285,
62,
39488,
796,
657,
47596,
198,
62,
17887,
31949,
62,
27977,
62,
34694,
796,
8576,
628,
198,
17887,
31949,
62,
18831,
8267,
62,
49058,
62,
16402,
3069,
796,
657,
198,
17887,
31949,
62,
18831,
8267,
62,
49058,
62,
1797,
49,
796,
352,
198,
198,
62,
17887,
31949,
62,
44724,
62,
43,
3913,
796,
657,
198,
62,
17887,
31949,
62,
44724,
62,
39,
18060,
796,
352,
198,
62,
17887,
31949,
62,
44724,
62,
1268,
2043,
796,
657,
47596,
198,
198,
62,
17887,
31949,
62,
44724,
62,
35,
18379,
62,
1268,
53,
796,
1391,
198,
220,
220,
220,
4808,
17887,
31949,
62,
44724,
62,
43,
3913,
25,
4808,
17887,
31949,
62,
44724,
62,
39,
18060,
11,
198,
220,
220,
220,
4808,
17887,
31949,
62,
44724,
62,
39,
18060,
25,
4808,
17887,
31949,
62,
44724,
62,
43,
3913,
11,
198,
198,
92,
628,
198,
29113,
29113,
14468,
198,
2,
40480,
198,
198,
29113,
29113,
14468,
198,
2,
38884,
198,
29113,
29113,
14468,
198,
2,
2488,
65,
3796,
220,
220,
220,
770,
318,
262,
5078,
5032,
11,
9041,
257,
5078,
5128,
6737,
198,
29113,
29113,
14468,
198,
198,
29113,
29113,
14468,
198,
2,
12327,
82,
198,
51,
13,
11250,
495,
7,
834,
3672,
834,
11,
309,
13,
10778,
8,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1303,
12260,
691,
611,
1057,
355,
257,
4226,
198,
220,
220,
220,
309,
13,
40546,
7,
834,
3672,
834,
11,
309,
13,
31502,
11,
705,
3919,
1388,
4226,
5447,
705,
8,
198
] | 3.92915 | 494 |
from vyper.utils import GAS_IDENTITY, GAS_IDENTITYWORD
from vyper.exceptions import (
InvalidLiteralException,
TypeMismatchException
)
from vyper.parser.lll_node import (
LLLnode
)
from vyper.types import (
BaseType,
ByteArrayType,
ContractType,
NullType,
StructType,
MappingType,
TupleType,
ListType,
)
from vyper.types import (
is_base_type,
are_units_compatible,
get_size_of_type,
ceil32
)
from vyper.utils import (
SizeLimits,
MemoryPositions,
DECIMAL_DIVISOR
)
# Get a decimal number as a fraction with denominator multiple of 10
# Is a number of decimal form (e.g. 65281) or 0x form (e.g. 0xff01) or 0b binary form (e.g. 0b0001)
# Copies byte array
# Copy bytes
# Accepts 4 arguments:
# (i) an LLL node for the start position of the source
# (ii) an LLL node for the start position of the destination
# (iii) an LLL node for the length
# (iv) a constant for the max length
# Takes a <32 byte array as input, and outputs a number.
# Take a value representing a memory or storage location, and descend down to an element or member variable
# Convert from one base type to another
# Unwrap location
| [
6738,
410,
88,
525,
13,
26791,
1330,
402,
1921,
62,
25256,
9050,
11,
402,
1921,
62,
25256,
9050,
54,
12532,
198,
198,
6738,
410,
88,
525,
13,
1069,
11755,
1330,
357,
198,
220,
220,
220,
17665,
43,
270,
1691,
16922,
11,
198,
220,
220,
220,
5994,
44,
1042,
963,
16922,
198,
8,
198,
6738,
410,
88,
525,
13,
48610,
13,
297,
75,
62,
17440,
1330,
357,
198,
220,
220,
220,
406,
3069,
17440,
198,
8,
198,
6738,
410,
88,
525,
13,
19199,
1330,
357,
198,
220,
220,
220,
31783,
11,
198,
220,
220,
220,
30589,
19182,
6030,
11,
198,
220,
220,
220,
17453,
6030,
11,
198,
220,
220,
220,
35886,
6030,
11,
198,
220,
220,
220,
32112,
6030,
11,
198,
220,
220,
220,
337,
5912,
6030,
11,
198,
220,
220,
220,
309,
29291,
6030,
11,
198,
220,
220,
220,
7343,
6030,
11,
198,
8,
198,
6738,
410,
88,
525,
13,
19199,
1330,
357,
198,
220,
220,
220,
318,
62,
8692,
62,
4906,
11,
198,
220,
220,
220,
389,
62,
41667,
62,
38532,
11,
198,
220,
220,
220,
651,
62,
7857,
62,
1659,
62,
4906,
11,
198,
220,
220,
220,
2906,
346,
2624,
198,
8,
198,
6738,
410,
88,
525,
13,
26791,
1330,
357,
198,
220,
220,
220,
12849,
19352,
896,
11,
198,
220,
220,
220,
14059,
21604,
1756,
11,
198,
220,
220,
220,
27196,
3955,
1847,
62,
33569,
1797,
1581,
198,
8,
628,
198,
2,
3497,
257,
32465,
1271,
355,
257,
13390,
351,
31457,
1352,
3294,
286,
838,
628,
198,
2,
1148,
257,
1271,
286,
32465,
1296,
357,
68,
13,
70,
13,
6135,
30368,
8,
393,
657,
87,
1296,
357,
68,
13,
70,
13,
657,
47596,
486,
8,
393,
657,
65,
13934,
1296,
357,
68,
13,
70,
13,
657,
65,
18005,
8,
628,
198,
2,
6955,
444,
18022,
7177,
628,
198,
2,
17393,
9881,
198,
2,
21699,
82,
604,
7159,
25,
198,
2,
357,
72,
8,
281,
406,
3069,
10139,
329,
262,
923,
2292,
286,
262,
2723,
198,
2,
357,
4178,
8,
281,
406,
3069,
10139,
329,
262,
923,
2292,
286,
262,
10965,
198,
2,
357,
15479,
8,
281,
406,
3069,
10139,
329,
262,
4129,
198,
2,
357,
452,
8,
257,
6937,
329,
262,
3509,
4129,
628,
198,
2,
33687,
257,
1279,
2624,
18022,
7177,
355,
5128,
11,
290,
23862,
257,
1271,
13,
628,
628,
198,
2,
7214,
257,
1988,
10200,
257,
4088,
393,
6143,
4067,
11,
290,
15350,
866,
284,
281,
5002,
393,
2888,
7885,
628,
198,
2,
38240,
422,
530,
2779,
2099,
284,
1194,
628,
198,
2,
791,
37150,
4067,
198
] | 2.820331 | 423 |
from __future__ import absolute_import
import random
from six.moves import range
| [
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
11748,
4738,
198,
6738,
2237,
13,
76,
5241,
1330,
2837,
628
] | 4.1 | 20 |
from xbeecoord import *
from time import sleep
import multiprocessing
reset()
sleep(5)
getRssi()
sleep(2)
wakeup()
startwait()
'''
def main():
reset()
sleep(5)
getRssi()
sleep(2)
wakeup()
startwait()
if __name__=='__main__':
p = multiprocessing.Process(target=main,name="routine")
p.start()
sleep(300)
print "terminating routine"
p.terminate()
''' | [
6738,
2124,
1350,
47704,
585,
1330,
1635,
198,
6738,
640,
1330,
3993,
198,
11748,
18540,
305,
919,
278,
198,
198,
42503,
3419,
198,
42832,
7,
20,
8,
198,
1136,
49,
824,
72,
3419,
198,
42832,
7,
17,
8,
198,
48530,
929,
3419,
198,
9688,
17077,
3419,
628,
628,
198,
7061,
6,
198,
4299,
1388,
33529,
198,
197,
42503,
3419,
198,
197,
42832,
7,
20,
8,
198,
197,
1136,
49,
824,
72,
3419,
198,
197,
42832,
7,
17,
8,
198,
197,
48530,
929,
3419,
198,
197,
9688,
17077,
3419,
198,
198,
361,
11593,
3672,
834,
855,
6,
834,
12417,
834,
10354,
198,
197,
79,
796,
18540,
305,
919,
278,
13,
18709,
7,
16793,
28,
12417,
11,
3672,
2625,
81,
28399,
4943,
198,
197,
79,
13,
9688,
3419,
628,
197,
42832,
7,
6200,
8,
198,
197,
4798,
366,
23705,
803,
8027,
1,
198,
197,
198,
197,
79,
13,
23705,
378,
3419,
198,
7061,
6
] | 2.414474 | 152 |
##
# @file rulesanml.py
# @author Ankit Srivastava <[email protected]>
#
# Copyright 2018 Georgia Institute of Technology
#
# 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 micronap.sdk as ap
import exceptions
import os
import re
import sys
from regexparser import RegexParser
class RulesAnml(object):
"""
Class for storing ANML-NFAs corresponding to the Snort rules.
"""
def add(self, keyword, sid, patterns):
"""
Add the given patterns, identified by the sid, to the bucket corresponding to the keyword.
"""
# try to add the pattern to a dummy anml object first
# this will throw an error, if there are any issues with patterns
anml = ap.Anml()
network = anml.CreateAutomataNetwork()
self._add_patterns(network, sid, patterns)
# check if the rule satisfies the maximum STEs limit
automaton, emap = anml.CompileAnml()
info = automaton.GetInfo()
if info.ste_count > 49152 / 2:
raise AnmlException, '\nAdding patterns for rule with SID %d failed.\nRequired resources exceeded those in one half-core.\n'%sid
bucket = keyword
if self._maxStes > 0:
if info.ste_count > self._maxStes:
bucket = '%s_%d'%(keyword, sid)
if info.clock_divisor > 1:
bucket = '%s_%d'%(keyword, info.clock_divisor)
#print keyword, sid, info.clock_divisor
# create a new network if it doesn't exist
if bucket not in self._anmlNetworks:
anml = ap.Anml()
network = anml.CreateAutomataNetwork(anmlId = bucket)
self._anmlNetworks[bucket] = (anml, network)
else:
network = self._anmlNetworks[bucket][1]
# now add pattern to the network
self._add_patterns(network, sid, patterns)
def export(self, directory):
"""
Write out all the ANML-NFAs to the given directory.
"""
for bucket, anmlNetwork in self._anmlNetworks.iteritems():
anmlNetwork[1].ExportAnml(os.path.join(directory, bucket + '.anml'))
def compile(self, directory):
"""
Compile all the ANML-NFAs and write the AP-FSMs to the given directory.
"""
for bucket, anmlNetwork in self._anmlNetworks.iteritems():
#if 'general' not in keyword:
#continue
print '\nCompiling %s\n'%bucket
try:
automata, emap = anmlNetwork[0].CompileAnml()
info = automata.GetInfo()
print 'Clock divisor', info.clock_divisor
automata.Save(os.path.join(directory, bucket + '.fsm'))
except ap.ApError, e:
sys.stderr.write('\nCompilation failed with the following error message.\n%s\n'%(str(e)))
sys.stderr.flush()
print '\nDone.\n'
| [
2235,
198,
2,
2488,
7753,
3173,
272,
4029,
13,
9078,
198,
2,
2488,
9800,
1052,
15813,
311,
15104,
459,
4170,
1279,
292,
15104,
459,
31,
10494,
354,
13,
15532,
29,
198,
2,
198,
2,
15069,
2864,
7859,
5136,
286,
8987,
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,
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,
12314,
1313,
499,
13,
21282,
74,
355,
2471,
198,
11748,
13269,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
25064,
198,
198,
6738,
40364,
48610,
1330,
797,
25636,
46677,
198,
198,
4871,
14252,
2025,
4029,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
329,
23069,
3537,
5805,
12,
21870,
1722,
11188,
284,
262,
5489,
419,
3173,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
751,
7,
944,
11,
21179,
11,
9785,
11,
7572,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
262,
1813,
7572,
11,
5174,
416,
262,
9785,
11,
284,
262,
19236,
11188,
284,
262,
21179,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1949,
284,
751,
262,
3912,
284,
257,
31548,
281,
4029,
2134,
717,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
481,
3714,
281,
4049,
11,
611,
612,
389,
597,
2428,
351,
7572,
198,
220,
220,
220,
220,
220,
220,
220,
281,
4029,
796,
2471,
13,
2025,
4029,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3127,
796,
281,
4029,
13,
16447,
38062,
1045,
26245,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
33279,
82,
7,
27349,
11,
9785,
11,
7572,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
3896,
45104,
262,
5415,
3563,
23041,
4179,
198,
220,
220,
220,
220,
220,
220,
220,
3557,
13951,
11,
795,
499,
796,
281,
4029,
13,
7293,
576,
2025,
4029,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
7508,
796,
3557,
13951,
13,
3855,
12360,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7508,
13,
4169,
62,
9127,
1875,
5125,
17827,
1220,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1052,
4029,
16922,
11,
705,
59,
77,
32901,
7572,
329,
3896,
351,
311,
2389,
4064,
67,
4054,
13,
59,
77,
37374,
4133,
20672,
883,
287,
530,
2063,
12,
7295,
13,
59,
77,
6,
4,
30255,
198,
220,
220,
220,
220,
220,
220,
220,
19236,
796,
21179,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
9806,
1273,
274,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7508,
13,
4169,
62,
9127,
1875,
2116,
13557,
9806,
1273,
274,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19236,
796,
705,
4,
82,
62,
4,
67,
6,
4,
7,
2539,
4775,
11,
9785,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7508,
13,
15750,
62,
7146,
271,
273,
1875,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19236,
796,
705,
4,
82,
62,
4,
67,
6,
4,
7,
2539,
4775,
11,
7508,
13,
15750,
62,
7146,
271,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
21179,
11,
9785,
11,
7508,
13,
15750,
62,
7146,
271,
273,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
257,
649,
3127,
611,
340,
1595,
470,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
611,
19236,
407,
287,
2116,
13557,
272,
4029,
7934,
5225,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
4029,
796,
2471,
13,
2025,
4029,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3127,
796,
281,
4029,
13,
16447,
38062,
1045,
26245,
7,
272,
4029,
7390,
796,
19236,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
272,
4029,
7934,
5225,
58,
27041,
316,
60,
796,
357,
272,
4029,
11,
3127,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3127,
796,
2116,
13557,
272,
4029,
7934,
5225,
58,
27041,
316,
7131,
16,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
783,
751,
3912,
284,
262,
3127,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2860,
62,
33279,
82,
7,
27349,
11,
9785,
11,
7572,
8,
628,
198,
220,
220,
220,
825,
10784,
7,
944,
11,
8619,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19430,
503,
477,
262,
3537,
5805,
12,
21870,
1722,
284,
262,
1813,
8619,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
19236,
11,
281,
4029,
26245,
287,
2116,
13557,
272,
4029,
7934,
5225,
13,
2676,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
4029,
26245,
58,
16,
4083,
43834,
2025,
4029,
7,
418,
13,
6978,
13,
22179,
7,
34945,
11,
19236,
1343,
45302,
272,
4029,
6,
4008,
628,
220,
220,
220,
825,
17632,
7,
944,
11,
8619,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3082,
576,
477,
262,
3537,
5805,
12,
21870,
1722,
290,
3551,
262,
3486,
12,
10652,
10128,
284,
262,
1813,
8619,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
19236,
11,
281,
4029,
26245,
287,
2116,
13557,
272,
4029,
7934,
5225,
13,
2676,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
361,
705,
24622,
6,
407,
287,
21179,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
43043,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
59,
77,
7293,
4386,
4064,
82,
59,
77,
6,
4,
27041,
316,
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,
3557,
1045,
11,
795,
499,
796,
281,
4029,
26245,
58,
15,
4083,
7293,
576,
2025,
4029,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7508,
796,
3557,
1045,
13,
3855,
12360,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
44758,
2659,
271,
273,
3256,
7508,
13,
15750,
62,
7146,
271,
273,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3557,
1045,
13,
16928,
7,
418,
13,
6978,
13,
22179,
7,
34945,
11,
19236,
1343,
45302,
69,
5796,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
2471,
13,
25189,
12331,
11,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
301,
1082,
81,
13,
13564,
10786,
59,
77,
7293,
10520,
4054,
351,
262,
1708,
4049,
3275,
13,
59,
77,
4,
82,
59,
77,
6,
4,
7,
2536,
7,
68,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
301,
1082,
81,
13,
25925,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
59,
77,
45677,
13,
59,
77,
6,
198
] | 2.427136 | 1,393 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2003-2009 Edgewall Software
# Copyright (C) 2003-2005 Jonas Borgström <[email protected]>
# Copyright (C) 2005 Christopher Lenz <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://trac.edgewall.org/wiki/TracLicense.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://trac.edgewall.org/log/.
#
# Author: Jonas Borgström <[email protected]>
# Christopher Lenz <[email protected]>
from __future__ import with_statement
import doctest
import os
import unittest
import sys
try:
from babel import Locale
locale_en = Locale.parse('en_US')
except ImportError:
locale_en = None
from trac.config import Configuration
from trac.core import Component, ComponentManager
from trac.env import Environment
from trac.db.api import _parse_db_str, DatabaseManager
from trac.db.sqlite_backend import SQLiteConnection
from trac.db.util import ConnectionWrapper
import trac.db.postgres_backend
import trac.db.mysql_backend
from trac.ticket.default_workflow import load_workflow_config_snippet
from trac.util import translation
def Mock(bases=(), *initargs, **kw):
"""
Simple factory for dummy classes that can be used as replacement for the
real implementation in tests.
Base classes for the mock can be specified using the first parameter, which
must be either a tuple of class objects or a single class object. If the
bases parameter is omitted, the base class of the mock will be object.
So to create a mock that is derived from the builtin dict type, you can do:
>>> mock = Mock(dict)
>>> mock['foo'] = 'bar'
>>> mock['foo']
'bar'
Attributes of the class are provided by any additional keyword parameters.
>>> mock = Mock(foo='bar')
>>> mock.foo
'bar'
Objects produces by this function have the special feature of not requiring
the 'self' parameter on methods, because you should keep data at the scope
of the test function. So you can just do:
>>> mock = Mock(add=lambda x,y: x+y)
>>> mock.add(1, 1)
2
To access attributes from the mock object from inside a lambda function,
just access the mock itself:
>>> mock = Mock(dict, do=lambda x: 'going to the %s' % mock[x])
>>> mock['foo'] = 'bar'
>>> mock.do('foo')
'going to the bar'
Because assignments or other types of statements don't work in lambda
functions, assigning to a local variable from a mock function requires some
extra work:
>>> myvar = [None]
>>> mock = Mock(set=lambda x: myvar.__setitem__(0, x))
>>> mock.set(1)
>>> myvar[0]
1
"""
if not isinstance(bases, tuple):
bases = (bases,)
cls = type('Mock', bases, {})
mock = cls(*initargs)
for k, v in kw.items():
setattr(mock, k, v)
return mock
class MockPerm(object):
"""Fake permission class. Necessary as Mock can not be used with operator
overloading."""
username = ''
__contains__ = has_permission
assert_permission = require
class TestSetup(unittest.TestSuite):
"""
Test suite decorator that allows a fixture to be setup for a complete
suite of test cases.
"""
def setUp(self):
"""Sets up the fixture, and sets self.fixture if needed"""
pass
def tearDown(self):
"""Tears down the fixture"""
pass
def run(self, result):
"""Setup the fixture (self.setUp), call .setFixture on all the tests,
and tear down the fixture (self.tearDown)."""
self.setUp()
if hasattr(self, 'fixture'):
for test in self._tests:
if hasattr(test, 'setFixture'):
test.setFixture(self.fixture)
unittest.TestSuite.run(self, result)
self.tearDown()
return result
def _wrapped_run(self, *args, **kwargs):
"Python 2.7 / unittest2 compatibility - there must be a better way..."
self.setUp()
if hasattr(self, 'fixture'):
for test in self._tests:
if hasattr(test, 'setFixture'):
test.setFixture(self.fixture)
unittest.TestSuite._wrapped_run(self, *args, **kwargs)
self.tearDown()
# -- Database utilities
# -- Environment stub
class EnvironmentStub(Environment):
"""A stub of the trac.env.Environment object for testing."""
href = abs_href = None
global_databasemanager = None
def __init__(self, default_data=False, enable=None, disable=None,
path=None, destroying=False):
"""Construct a new Environment stub object.
:param default_data: If True, populate the database with some
defaults.
:param enable: A list of component classes or name globs to
activate in the stub environment.
"""
ComponentManager.__init__(self)
Component.__init__(self)
self.systeminfo = []
import trac
self.path = path
if self.path is None:
self.path = os.path.dirname(trac.__file__)
if not os.path.isabs(self.path):
self.path = os.path.join(os.getcwd(), self.path)
# -- configuration
self.config = Configuration(None)
# We have to have a ticket-workflow config for ''lots'' of things to
# work. So insert the basic-workflow config here. There may be a
# better solution than this.
load_workflow_config_snippet(self.config, 'basic-workflow.ini')
self.config.set('logging', 'log_level', 'DEBUG')
self.config.set('logging', 'log_type', 'stderr')
if enable is not None:
self.config.set('components', 'trac.*', 'disabled')
else:
self.config.set('components', 'tracopt.versioncontrol.svn.*',
'enabled')
for name_or_class in enable or ():
config_key = self._component_name(name_or_class)
self.config.set('components', config_key, 'enabled')
for name_or_class in disable or ():
config_key = self._component_name(name_or_class)
self.config.set('components', config_key, 'disabled')
# -- logging
from trac.log import logger_handler_factory
self.log, self._log_handler = logger_handler_factory('test')
# -- database
self.config.set('components', 'trac.db.*', 'enabled')
self.dburi = get_dburi()
init_global = False
if self.global_databasemanager:
self.components[DatabaseManager] = global_databasemanager
else:
self.config.set('trac', 'database', self.dburi)
self.global_databasemanager = DatabaseManager(self)
self.config.set('trac', 'debug_sql', True)
self.config.set('logging', 'log_type', 'stderr')
self.config.set('logging', 'log_level', 'DEBUG')
init_global = not destroying
if default_data or init_global:
self.reset_db(default_data)
from trac.web.href import Href
self.href = Href('/trac.cgi')
self.abs_href = Href('http://example.org/trac.cgi')
self.known_users = []
translation.activate(locale_en)
def reset_db(self, default_data=None):
"""Remove all data from Trac tables, keeping the tables themselves.
:param default_data: after clean-up, initialize with default data
:return: True upon success
"""
from trac import db_default
scheme, db_prop = _parse_db_str(self.dburi)
tables = []
remove_sqlite_db = False
try:
with self.db_transaction as db:
db.rollback() # make sure there's no transaction in progress
# check the database version
database_version = db(
"SELECT value FROM system WHERE name='database_version'")
if database_version:
database_version = int(database_version[0][0])
if database_version == db_default.db_version:
# same version, simply clear the tables (faster)
m = sys.modules[__name__]
reset_fn = 'reset_%s_db' % scheme
if hasattr(m, reset_fn):
tables = getattr(m, reset_fn)(self, db_prop)
else:
# different version or version unknown, drop the tables
remove_sqlite_db = True
self.destroy_db(scheme, db_prop)
except Exception, e:
# "Database not found ...",
# "OperationalError: no such table: system" or the like
pass
db = None # as we might shutdown the pool FIXME no longer needed!
if scheme == 'sqlite' and remove_sqlite_db:
path = db_prop['path']
if path != ':memory:':
if not os.path.isabs(path):
path = os.path.join(self.path, path)
self.global_databasemanager.shutdown()
os.remove(path)
if not tables:
self.global_databasemanager.init_db()
# we need to make sure the next get_db_cnx() will re-create
# a new connection aware of the new data model - see #8518.
if self.dburi != 'sqlite::memory:':
self.global_databasemanager.shutdown()
with self.db_transaction as db:
if default_data:
for table, cols, vals in db_default.get_data(db):
db.executemany("INSERT INTO %s (%s) VALUES (%s)"
% (table, ','.join(cols),
','.join(['%s' for c in cols])),
vals)
else:
db("INSERT INTO system (name, value) VALUES (%s, %s)",
('database_version', str(db_default.db_version)))
# overriden
def locate(fn):
"""Locates a binary on the path.
Returns the fully-qualified path, or None.
"""
exec_suffix = '.exe' if os.name == 'nt' else ''
for p in ["."] + os.environ['PATH'].split(os.pathsep):
f = os.path.join(p, fn + exec_suffix)
if os.path.exists(f):
return f
return None
INCLUDE_FUNCTIONAL_TESTS = True
if __name__ == '__main__':
#FIXME: this is a bit inelegant
if '--skip-functional-tests' in sys.argv:
sys.argv.remove('--skip-functional-tests')
INCLUDE_FUNCTIONAL_TESTS = False
unittest.main(defaultTest='suite')
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
201,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
2,
201,
198,
2,
15069,
357,
34,
8,
5816,
12,
10531,
1717,
39909,
439,
10442,
201,
198,
2,
15069,
357,
34,
8,
5816,
12,
14315,
40458,
29004,
2536,
9101,
76,
1279,
46286,
292,
31,
276,
39909,
439,
13,
785,
29,
201,
198,
2,
15069,
357,
34,
8,
5075,
12803,
12592,
89,
1279,
66,
4029,
19471,
31,
70,
36802,
13,
2934,
29,
201,
198,
2,
1439,
2489,
10395,
13,
201,
198,
2,
201,
198,
2,
770,
3788,
318,
11971,
355,
3417,
287,
262,
2393,
27975,
45761,
11,
543,
201,
198,
2,
345,
815,
423,
2722,
355,
636,
286,
428,
6082,
13,
383,
2846,
201,
198,
2,
389,
635,
1695,
379,
2638,
1378,
2213,
330,
13,
276,
39909,
439,
13,
2398,
14,
15466,
14,
2898,
330,
34156,
13,
201,
198,
2,
201,
198,
2,
770,
3788,
10874,
286,
16171,
9284,
925,
416,
867,
201,
198,
2,
3925,
13,
1114,
262,
2748,
10156,
2106,
11,
766,
262,
18440,
201,
198,
2,
2106,
290,
17259,
11,
1695,
379,
2638,
1378,
2213,
330,
13,
276,
39909,
439,
13,
2398,
14,
6404,
11757,
201,
198,
2,
201,
198,
2,
6434,
25,
40458,
29004,
2536,
9101,
76,
1279,
46286,
292,
31,
276,
39909,
439,
13,
785,
29,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
12803,
12592,
89,
1279,
66,
4029,
19471,
31,
70,
36802,
13,
2934,
29,
201,
198,
201,
198,
6738,
11593,
37443,
834,
1330,
351,
62,
26090,
201,
198,
201,
198,
11748,
10412,
395,
201,
198,
11748,
28686,
201,
198,
11748,
555,
715,
395,
201,
198,
11748,
25064,
201,
198,
201,
198,
28311,
25,
201,
198,
220,
220,
220,
422,
9289,
417,
1330,
15181,
1000,
201,
198,
220,
220,
220,
36693,
62,
268,
796,
15181,
1000,
13,
29572,
10786,
268,
62,
2937,
11537,
201,
198,
16341,
17267,
12331,
25,
201,
198,
220,
220,
220,
36693,
62,
268,
796,
6045,
220,
220,
220,
220,
201,
198,
201,
198,
6738,
491,
330,
13,
11250,
1330,
28373,
201,
198,
6738,
491,
330,
13,
7295,
1330,
35100,
11,
35100,
13511,
201,
198,
6738,
491,
330,
13,
24330,
1330,
9344,
201,
198,
6738,
491,
330,
13,
9945,
13,
15042,
1330,
4808,
29572,
62,
9945,
62,
2536,
11,
24047,
13511,
201,
198,
6738,
491,
330,
13,
9945,
13,
25410,
578,
62,
1891,
437,
1330,
16363,
578,
32048,
201,
198,
6738,
491,
330,
13,
9945,
13,
22602,
1330,
26923,
36918,
2848,
201,
198,
11748,
491,
330,
13,
9945,
13,
7353,
34239,
62,
1891,
437,
201,
198,
11748,
491,
330,
13,
9945,
13,
28744,
13976,
62,
1891,
437,
201,
198,
6738,
491,
330,
13,
43350,
13,
12286,
62,
1818,
11125,
1330,
3440,
62,
1818,
11125,
62,
11250,
62,
16184,
3974,
316,
201,
198,
6738,
491,
330,
13,
22602,
1330,
11059,
201,
198,
201,
198,
201,
198,
4299,
44123,
7,
65,
1386,
16193,
828,
1635,
15003,
22046,
11,
12429,
46265,
2599,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
17427,
8860,
329,
31548,
6097,
326,
460,
307,
973,
355,
9014,
329,
262,
220,
201,
198,
220,
220,
220,
1103,
7822,
287,
5254,
13,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
7308,
6097,
329,
262,
15290,
460,
307,
7368,
1262,
262,
717,
11507,
11,
543,
201,
198,
220,
220,
220,
1276,
307,
2035,
257,
46545,
286,
1398,
5563,
393,
257,
2060,
1398,
2134,
13,
1002,
262,
201,
198,
220,
220,
220,
12536,
11507,
318,
22532,
11,
262,
2779,
1398,
286,
262,
15290,
481,
307,
2134,
13,
201,
198,
201,
198,
220,
220,
220,
1406,
284,
2251,
257,
15290,
326,
318,
10944,
422,
262,
3170,
259,
8633,
2099,
11,
345,
460,
466,
25,
201,
198,
201,
198,
220,
220,
220,
13163,
15290,
796,
44123,
7,
11600,
8,
201,
198,
220,
220,
220,
13163,
15290,
17816,
21943,
20520,
796,
705,
5657,
6,
201,
198,
220,
220,
220,
13163,
15290,
17816,
21943,
20520,
201,
198,
220,
220,
220,
705,
5657,
6,
201,
198,
201,
198,
220,
220,
220,
49213,
286,
262,
1398,
389,
2810,
416,
597,
3224,
21179,
10007,
13,
201,
198,
201,
198,
220,
220,
220,
13163,
15290,
796,
44123,
7,
21943,
11639,
5657,
11537,
201,
198,
220,
220,
220,
13163,
15290,
13,
21943,
201,
198,
220,
220,
220,
705,
5657,
6,
201,
198,
201,
198,
220,
220,
220,
35832,
11073,
416,
428,
2163,
423,
262,
2041,
3895,
286,
407,
10616,
201,
198,
220,
220,
220,
262,
705,
944,
6,
11507,
319,
5050,
11,
780,
345,
815,
1394,
1366,
379,
262,
8354,
201,
198,
220,
220,
220,
286,
262,
1332,
2163,
13,
1406,
345,
460,
655,
466,
25,
201,
198,
201,
198,
220,
220,
220,
13163,
15290,
796,
44123,
7,
2860,
28,
50033,
2124,
11,
88,
25,
2124,
10,
88,
8,
201,
198,
220,
220,
220,
13163,
15290,
13,
2860,
7,
16,
11,
352,
8,
201,
198,
220,
220,
220,
362,
201,
198,
201,
198,
220,
220,
220,
1675,
1895,
12608,
422,
262,
15290,
2134,
422,
2641,
257,
37456,
2163,
11,
201,
198,
220,
220,
220,
655,
1895,
262,
15290,
2346,
25,
201,
198,
201,
198,
220,
220,
220,
13163,
15290,
796,
44123,
7,
11600,
11,
466,
28,
50033,
2124,
25,
705,
5146,
284,
262,
4064,
82,
6,
4064,
15290,
58,
87,
12962,
201,
198,
220,
220,
220,
13163,
15290,
17816,
21943,
20520,
796,
705,
5657,
6,
201,
198,
220,
220,
220,
13163,
15290,
13,
4598,
10786,
21943,
11537,
201,
198,
220,
220,
220,
705,
5146,
284,
262,
2318,
6,
201,
198,
201,
198,
220,
220,
220,
4362,
25815,
393,
584,
3858,
286,
6299,
836,
470,
670,
287,
37456,
201,
198,
220,
220,
220,
5499,
11,
38875,
284,
257,
1957,
7885,
422,
257,
15290,
2163,
4433,
617,
201,
198,
220,
220,
220,
3131,
670,
25,
201,
198,
201,
198,
220,
220,
220,
13163,
616,
7785,
796,
685,
14202,
60,
201,
198,
220,
220,
220,
13163,
15290,
796,
44123,
7,
2617,
28,
50033,
2124,
25,
616,
7785,
13,
834,
2617,
9186,
834,
7,
15,
11,
2124,
4008,
201,
198,
220,
220,
220,
13163,
15290,
13,
2617,
7,
16,
8,
201,
198,
220,
220,
220,
13163,
616,
7785,
58,
15,
60,
201,
198,
220,
220,
220,
352,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
65,
1386,
11,
46545,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
12536,
796,
357,
65,
1386,
35751,
201,
198,
220,
220,
220,
537,
82,
796,
2099,
10786,
44,
735,
3256,
12536,
11,
23884,
8,
201,
198,
220,
220,
220,
15290,
796,
537,
82,
46491,
15003,
22046,
8,
201,
198,
220,
220,
220,
329,
479,
11,
410,
287,
479,
86,
13,
23814,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
76,
735,
11,
479,
11,
410,
8,
201,
198,
220,
220,
220,
1441,
15290,
201,
198,
201,
198,
201,
198,
4871,
44123,
5990,
76,
7,
15252,
2599,
201,
198,
220,
220,
220,
37227,
49233,
7170,
1398,
13,
19652,
408,
560,
355,
44123,
460,
407,
307,
973,
351,
10088,
201,
198,
220,
220,
220,
625,
25138,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
20579,
796,
10148,
201,
198,
220,
220,
220,
11593,
3642,
1299,
834,
796,
468,
62,
525,
3411,
201,
198,
220,
220,
220,
6818,
62,
525,
3411,
796,
2421,
201,
198,
201,
198,
201,
198,
4871,
6208,
40786,
7,
403,
715,
395,
13,
14402,
5606,
578,
2599,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
6208,
18389,
11705,
1352,
326,
3578,
257,
29220,
284,
307,
9058,
329,
257,
1844,
201,
198,
220,
220,
220,
18389,
286,
1332,
2663,
13,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
825,
900,
4933,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
510,
262,
29220,
11,
290,
5621,
2116,
13,
69,
9602,
611,
2622,
37811,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
201,
198,
201,
198,
220,
220,
220,
825,
11626,
8048,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
51,
4127,
866,
262,
29220,
37811,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
201,
198,
201,
198,
220,
220,
220,
825,
1057,
7,
944,
11,
1255,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
40786,
262,
29220,
357,
944,
13,
2617,
4933,
828,
869,
764,
2617,
37,
9602,
319,
477,
262,
5254,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
290,
11626,
866,
262,
29220,
357,
944,
13,
83,
451,
8048,
21387,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
4933,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
944,
11,
705,
69,
9602,
6,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1332,
287,
2116,
13557,
41989,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
9288,
11,
705,
2617,
37,
9602,
6,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
13,
2617,
37,
9602,
7,
944,
13,
69,
9602,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
555,
715,
395,
13,
14402,
5606,
578,
13,
5143,
7,
944,
11,
1255,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
451,
8048,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
201,
198,
201,
198,
220,
220,
220,
825,
4808,
29988,
1496,
62,
5143,
7,
944,
11,
1635,
22046,
11,
12429,
46265,
22046,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37906,
362,
13,
22,
1220,
555,
715,
395,
17,
17764,
532,
612,
1276,
307,
257,
1365,
835,
9313,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
4933,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
944,
11,
705,
69,
9602,
6,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1332,
287,
2116,
13557,
41989,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
9288,
11,
705,
2617,
37,
9602,
6,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
13,
2617,
37,
9602,
7,
944,
13,
69,
9602,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
555,
715,
395,
13,
14402,
5606,
578,
13557,
29988,
1496,
62,
5143,
7,
944,
11,
1635,
22046,
11,
12429,
46265,
22046,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
451,
8048,
3419,
201,
198,
201,
198,
201,
198,
2,
1377,
24047,
20081,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
2,
1377,
9344,
17071,
201,
198,
201,
198,
4871,
9344,
1273,
549,
7,
31441,
2599,
201,
198,
220,
220,
220,
37227,
32,
17071,
286,
262,
491,
330,
13,
24330,
13,
31441,
2134,
329,
4856,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
13291,
796,
2352,
62,
33257,
796,
6045,
201,
198,
220,
220,
220,
3298,
62,
19608,
397,
292,
8463,
3536,
796,
6045,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
4277,
62,
7890,
28,
25101,
11,
7139,
28,
14202,
11,
15560,
28,
14202,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
28,
14202,
11,
13897,
28,
25101,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
42316,
257,
649,
9344,
17071,
2134,
13,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4277,
62,
7890,
25,
1002,
6407,
11,
48040,
262,
6831,
351,
617,
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,
26235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
7139,
25,
317,
1351,
286,
7515,
6097,
393,
1438,
1278,
8158,
284,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15155,
287,
262,
17071,
2858,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
35100,
13511,
13,
834,
15003,
834,
7,
944,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
35100,
13,
834,
15003,
834,
7,
944,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
10057,
10951,
796,
17635,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1330,
491,
330,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6978,
796,
3108,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
6978,
318,
6045,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6978,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
2213,
330,
13,
834,
7753,
834,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
271,
8937,
7,
944,
13,
6978,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
418,
13,
1136,
66,
16993,
22784,
2116,
13,
6978,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1377,
8398,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
796,
28373,
7,
14202,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
423,
284,
423,
257,
7846,
12,
1818,
11125,
4566,
329,
10148,
75,
1747,
7061,
286,
1243,
284,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
670,
13,
220,
1406,
7550,
262,
4096,
12,
1818,
11125,
4566,
994,
13,
220,
1318,
743,
307,
257,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1365,
4610,
621,
428,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
1818,
11125,
62,
11250,
62,
16184,
3974,
316,
7,
944,
13,
11250,
11,
705,
35487,
12,
1818,
11125,
13,
5362,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
6404,
2667,
3256,
705,
6404,
62,
5715,
3256,
705,
30531,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
6404,
2667,
3256,
705,
6404,
62,
4906,
3256,
705,
301,
1082,
81,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7139,
318,
407,
6045,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
5589,
3906,
3256,
705,
2213,
330,
15885,
3256,
705,
47730,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
5589,
3906,
3256,
705,
2213,
330,
8738,
13,
9641,
13716,
13,
21370,
77,
15885,
3256,
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,
705,
25616,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
62,
273,
62,
4871,
287,
7139,
393,
357,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
2539,
796,
2116,
13557,
42895,
62,
3672,
7,
3672,
62,
273,
62,
4871,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
5589,
3906,
3256,
4566,
62,
2539,
11,
705,
25616,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
62,
273,
62,
4871,
287,
15560,
393,
357,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
2539,
796,
2116,
13557,
42895,
62,
3672,
7,
3672,
62,
273,
62,
4871,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
5589,
3906,
3256,
4566,
62,
2539,
11,
705,
47730,
11537,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1377,
18931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
422,
491,
330,
13,
6404,
1330,
49706,
62,
30281,
62,
69,
9548,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6404,
11,
2116,
13557,
6404,
62,
30281,
796,
49706,
62,
30281,
62,
69,
9548,
10786,
9288,
11537,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1377,
6831,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
5589,
3906,
3256,
705,
2213,
330,
13,
9945,
15885,
3256,
705,
25616,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
67,
6236,
72,
796,
651,
62,
67,
6236,
72,
3419,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2315,
62,
20541,
796,
10352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
20541,
62,
19608,
397,
292,
8463,
3536,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
5589,
3906,
58,
38105,
13511,
60,
796,
3298,
62,
19608,
397,
292,
8463,
3536,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
2213,
330,
3256,
705,
48806,
3256,
2116,
13,
67,
6236,
72,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20541,
62,
19608,
397,
292,
8463,
3536,
796,
24047,
13511,
7,
944,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
2213,
330,
3256,
705,
24442,
62,
25410,
3256,
6407,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
6404,
2667,
3256,
705,
6404,
62,
4906,
3256,
705,
301,
1082,
81,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
2617,
10786,
6404,
2667,
3256,
705,
6404,
62,
5715,
3256,
705,
30531,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2315,
62,
20541,
796,
407,
13897,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4277,
62,
7890,
393,
2315,
62,
20541,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42503,
62,
9945,
7,
12286,
62,
7890,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
422,
491,
330,
13,
12384,
13,
33257,
1330,
367,
5420,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
33257,
796,
367,
5420,
10786,
14,
2213,
330,
13,
37157,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8937,
62,
33257,
796,
367,
5420,
10786,
4023,
1378,
20688,
13,
2398,
14,
2213,
330,
13,
37157,
11537,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4002,
62,
18417,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
11059,
13,
39022,
7,
17946,
1000,
62,
268,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
825,
13259,
62,
9945,
7,
944,
11,
4277,
62,
7890,
28,
14202,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
27914,
477,
1366,
422,
833,
330,
8893,
11,
5291,
262,
8893,
2405,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4277,
62,
7890,
25,
706,
3424,
12,
929,
11,
41216,
351,
4277,
1366,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6407,
2402,
1943,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
422,
491,
330,
1330,
20613,
62,
12286,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7791,
11,
20613,
62,
22930,
796,
4808,
29572,
62,
9945,
62,
2536,
7,
944,
13,
67,
6236,
72,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8893,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4781,
62,
25410,
578,
62,
9945,
796,
10352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
2116,
13,
9945,
62,
7645,
2673,
355,
20613,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
13,
2487,
1891,
3419,
1303,
787,
1654,
612,
338,
645,
8611,
287,
4371,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
262,
6831,
2196,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6831,
62,
9641,
796,
20613,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
46506,
1988,
16034,
1080,
33411,
1438,
11639,
48806,
62,
9641,
6,
4943,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6831,
62,
9641,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6831,
62,
9641,
796,
493,
7,
48806,
62,
9641,
58,
15,
7131,
15,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6831,
62,
9641,
6624,
20613,
62,
12286,
13,
9945,
62,
9641,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
976,
2196,
11,
2391,
1598,
262,
8893,
357,
69,
1603,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
796,
25064,
13,
18170,
58,
834,
3672,
834,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13259,
62,
22184,
796,
705,
42503,
62,
4,
82,
62,
9945,
6,
4064,
7791,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
76,
11,
13259,
62,
22184,
2599,
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,
8893,
796,
651,
35226,
7,
76,
11,
13259,
62,
22184,
5769,
944,
11,
20613,
62,
22930,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1180,
2196,
393,
2196,
6439,
11,
4268,
262,
8893,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4781,
62,
25410,
578,
62,
9945,
796,
6407,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41659,
62,
9945,
7,
15952,
1326,
11,
20613,
62,
22930,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
11,
304,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
38105,
407,
1043,
35713,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
18843,
864,
12331,
25,
645,
884,
3084,
25,
1080,
1,
393,
262,
588,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
796,
6045,
1303,
355,
356,
1244,
18325,
262,
5933,
220,
220,
220,
220,
44855,
11682,
645,
2392,
2622,
0,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7791,
6624,
705,
25410,
578,
6,
290,
4781,
62,
25410,
578,
62,
9945,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
796,
20613,
62,
22930,
17816,
6978,
20520,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3108,
14512,
705,
25,
31673,
25,
10354,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
271,
8937,
7,
6978,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
796,
28686,
13,
6978,
13,
22179,
7,
944,
13,
6978,
11,
3108,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20541,
62,
19608,
397,
292,
8463,
3536,
13,
49625,
2902,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
7,
6978,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8893,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20541,
62,
19608,
397,
292,
8463,
3536,
13,
15003,
62,
9945,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
761,
284,
787,
1654,
262,
1306,
651,
62,
9945,
62,
31522,
87,
3419,
481,
302,
12,
17953,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
257,
649,
4637,
3910,
286,
262,
649,
1366,
2746,
532,
766,
1303,
5332,
1507,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
67,
6236,
72,
14512,
705,
25410,
578,
3712,
31673,
25,
10354,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20541,
62,
19608,
397,
292,
8463,
3536,
13,
49625,
2902,
3419,
220,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
351,
2116,
13,
9945,
62,
7645,
2673,
355,
20613,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4277,
62,
7890,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3084,
11,
951,
82,
11,
410,
874,
287,
20613,
62,
12286,
13,
1136,
62,
7890,
7,
9945,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
13,
18558,
315,
368,
1092,
7203,
20913,
17395,
39319,
4064,
82,
37633,
82,
8,
26173,
35409,
37633,
82,
16725,
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,
4064,
357,
11487,
11,
705,
4032,
13,
22179,
7,
4033,
82,
828,
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,
220,
220,
220,
705,
4032,
13,
22179,
7,
17816,
4,
82,
6,
329,
269,
287,
951,
82,
12962,
828,
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,
410,
874,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
7203,
20913,
17395,
39319,
1080,
357,
3672,
11,
1988,
8,
26173,
35409,
37633,
82,
11,
4064,
82,
42501,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
48806,
62,
9641,
3256,
965,
7,
9945,
62,
12286,
13,
9945,
62,
9641,
22305,
201,
198,
201,
198,
220,
220,
220,
1303,
625,
6058,
268,
201,
198,
201,
198,
201,
198,
4299,
17276,
7,
22184,
2599,
201,
198,
220,
220,
220,
37227,
33711,
689,
257,
13934,
319,
262,
3108,
13,
201,
198,
201,
198,
220,
220,
220,
16409,
262,
3938,
12,
22557,
3108,
11,
393,
6045,
13,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
2452,
62,
37333,
844,
796,
45302,
13499,
6,
611,
28686,
13,
3672,
6624,
705,
429,
6,
2073,
10148,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
329,
279,
287,
14631,
526,
60,
1343,
28686,
13,
268,
2268,
17816,
34219,
6,
4083,
35312,
7,
418,
13,
6978,
325,
79,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
277,
796,
28686,
13,
6978,
13,
22179,
7,
79,
11,
24714,
1343,
2452,
62,
37333,
844,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
69,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
277,
201,
198,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
201,
198,
1268,
5097,
52,
7206,
62,
42296,
4177,
2849,
1847,
62,
51,
1546,
4694,
796,
6407,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
1303,
47084,
11682,
25,
428,
318,
257,
1643,
287,
68,
1455,
415,
201,
198,
220,
220,
220,
611,
705,
438,
48267,
12,
45124,
12,
41989,
6,
287,
25064,
13,
853,
85,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
853,
85,
13,
28956,
10786,
438,
48267,
12,
45124,
12,
41989,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3268,
5097,
52,
7206,
62,
42296,
4177,
2849,
1847,
62,
51,
1546,
4694,
796,
10352,
201,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
7,
12286,
14402,
11639,
2385,
578,
11537,
201,
198
] | 2.206842 | 5,086 |
# WAP to accept a folder name from user and create zip file out of contents of it.
import shutil
if __name__ == "__main__":
main() | [
2,
370,
2969,
284,
2453,
257,
9483,
1438,
422,
2836,
290,
2251,
19974,
2393,
503,
286,
10154,
286,
340,
13,
198,
11748,
4423,
346,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419
] | 3.214286 | 42 |
# -*- coding: utf-8 -*-
"""
pagarmecoreapi
This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ).
"""
class CreatePriceBracketRequest(object):
"""Implementation of the 'CreatePriceBracketRequest' model.
Request for creating a price bracket
Attributes:
start_quantity (int): Start quantity
price (int): Price
end_quantity (int): End quantity
overage_price (int): Overage price
"""
# Create a mapping from Model property names to API property names
_names = {
"start_quantity":'start_quantity',
"price":'price',
"end_quantity":'end_quantity',
"overage_price":'overage_price'
}
def __init__(self,
start_quantity=None,
price=None,
end_quantity=None,
overage_price=None):
"""Constructor for the CreatePriceBracketRequest class"""
# Initialize members of the class
self.start_quantity = start_quantity
self.price = price
self.end_quantity = end_quantity
self.overage_price = overage_price
@classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
start_quantity = dictionary.get('start_quantity')
price = dictionary.get('price')
end_quantity = dictionary.get('end_quantity')
overage_price = dictionary.get('overage_price')
# Return an object of this model
return cls(start_quantity,
price,
end_quantity,
overage_price)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
201,
198,
37811,
201,
198,
220,
220,
220,
42208,
1670,
721,
382,
15042,
201,
198,
201,
198,
220,
220,
220,
770,
2393,
373,
6338,
7560,
416,
3486,
3955,
1404,
2149,
410,
17,
13,
15,
357,
3740,
1378,
499,
320,
1512,
13,
952,
6739,
201,
198,
37811,
201,
198,
201,
198,
201,
198,
4871,
13610,
18124,
9414,
8317,
18453,
7,
15252,
2599,
201,
198,
201,
198,
220,
220,
220,
37227,
3546,
32851,
286,
262,
705,
16447,
18124,
9414,
8317,
18453,
6,
2746,
13,
201,
198,
201,
198,
220,
220,
220,
19390,
329,
4441,
257,
2756,
19096,
201,
198,
201,
198,
220,
220,
220,
49213,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
40972,
414,
357,
600,
2599,
7253,
12040,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2756,
357,
600,
2599,
7886,
201,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
40972,
414,
357,
600,
2599,
5268,
12040,
201,
198,
220,
220,
220,
220,
220,
220,
220,
625,
496,
62,
20888,
357,
600,
2599,
440,
1857,
2756,
201,
198,
201,
198,
220,
220,
220,
37227,
201,
198,
201,
198,
220,
220,
220,
1303,
13610,
257,
16855,
422,
9104,
3119,
3891,
284,
7824,
3119,
3891,
201,
198,
220,
220,
220,
4808,
14933,
796,
1391,
201,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
62,
40972,
414,
1298,
6,
9688,
62,
40972,
414,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
220,
366,
20888,
1298,
6,
20888,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
220,
366,
437,
62,
40972,
414,
1298,
6,
437,
62,
40972,
414,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
220,
366,
78,
1857,
62,
20888,
1298,
6,
78,
1857,
62,
20888,
6,
201,
198,
220,
220,
220,
1782,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
62,
40972,
414,
28,
14202,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2756,
28,
14202,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
40972,
414,
28,
14202,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
625,
496,
62,
20888,
28,
14202,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
42316,
273,
329,
262,
13610,
18124,
9414,
8317,
18453,
1398,
37811,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
20768,
1096,
1866,
286,
262,
1398,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9688,
62,
40972,
414,
796,
923,
62,
40972,
414,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20888,
796,
2756,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
437,
62,
40972,
414,
796,
886,
62,
40972,
414,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
78,
1857,
62,
20888,
796,
625,
496,
62,
20888,
201,
198,
201,
198,
201,
198,
220,
220,
220,
2488,
4871,
24396,
201,
198,
220,
220,
220,
825,
422,
62,
67,
14188,
7,
565,
82,
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,
22155,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
4554,
286,
428,
2746,
422,
257,
22155,
201,
198,
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,
22155,
357,
67,
14188,
2599,
317,
22155,
10552,
286,
262,
2134,
355,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6492,
422,
262,
748,
48499,
1634,
286,
262,
4382,
338,
2882,
13,
383,
8251,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17191,
2872,
3119,
3891,
287,
262,
7824,
6764,
13,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2134,
25,
1052,
4554,
286,
428,
4645,
1398,
13,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
22155,
318,
6045,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29677,
9633,
422,
262,
22155,
201,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
40972,
414,
796,
22155,
13,
1136,
10786,
9688,
62,
40972,
414,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2756,
796,
22155,
13,
1136,
10786,
20888,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
40972,
414,
796,
22155,
13,
1136,
10786,
437,
62,
40972,
414,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
625,
496,
62,
20888,
796,
22155,
13,
1136,
10786,
78,
1857,
62,
20888,
11537,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8229,
281,
2134,
286,
428,
2746,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
7,
9688,
62,
40972,
414,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2756,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
40972,
414,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
625,
496,
62,
20888,
8,
201,
198,
201,
198,
201,
198
] | 2.204868 | 986 |
from dataclasses import dataclass, field
from typing import List, AnyStr, Iterator, Any, Dict
import numpy as np
import pandas as pd
from gmpy2 import mpz
@dataclass
class Item:
""" Describes an item of an attribute.
The item is the lowest level representation of the attribute. It is defined by at least one condition and,
for example, in the case of a NominalAttribute it can be given by the condition: x = blue_eyes; and in the
NumericAttribute by: x < 3;
Attributes
----------
bit_array : gmpy2.mpz
Bit representation of the indexes covered by the item's condition.
description : str
Text describing the item.
numper_operators : int
Number of operators necessary to describe the item.
activation_function : object
Partial function applied to DataFrame that returns boolean vector of instances where item is "present".
"""
bitarray: mpz
parent_variable: AnyStr
description: AnyStr
number_operators: int
activation_function: object
@dataclass
class Attribute:
""" Describes an explainable variable.
Contains all information regarding a certain attribute. This is the parent class for NumericAttribute and
NominalAttribute, which add extra specific information to this.
Attributes
----------
name : str
Name of the attribute.
values : np.ndarray
Vector of values associated with attribute.
max_operators : int
Maximum number of operators allowed for this variable.
min_support : int
Minimum support of numer of instances covered by an item or pattern
"""
name: AnyStr
values: np.ndarray
max_operators: int
min_support: Any # it can be an int or a float
cardinality_operator : Dict[int, int] =field(init=False)
items : List[Item] = field(default_factory=list, init=False) | [
6738,
4818,
330,
28958,
1330,
4818,
330,
31172,
11,
2214,
198,
6738,
19720,
1330,
7343,
11,
4377,
13290,
11,
40806,
1352,
11,
4377,
11,
360,
713,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
308,
3149,
88,
17,
1330,
29034,
89,
628,
198,
31,
19608,
330,
31172,
198,
4871,
9097,
25,
198,
220,
220,
220,
37227,
39373,
22090,
281,
2378,
286,
281,
11688,
13,
628,
220,
220,
220,
383,
2378,
318,
262,
9016,
1241,
10552,
286,
262,
11688,
13,
632,
318,
5447,
416,
379,
1551,
530,
4006,
290,
11,
198,
220,
220,
220,
220,
329,
1672,
11,
287,
262,
1339,
286,
257,
21198,
1292,
33682,
340,
460,
307,
1813,
416,
262,
4006,
25,
2124,
796,
4171,
62,
48418,
26,
290,
287,
262,
198,
220,
220,
220,
220,
399,
39223,
33682,
416,
25,
2124,
1279,
513,
26,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1643,
62,
18747,
1058,
308,
3149,
88,
17,
13,
3149,
89,
198,
220,
220,
220,
220,
220,
220,
220,
4722,
10552,
286,
262,
39199,
5017,
416,
262,
2378,
338,
4006,
13,
198,
220,
220,
220,
6764,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
8255,
12059,
262,
2378,
13,
198,
220,
220,
220,
997,
525,
62,
3575,
2024,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
7913,
286,
12879,
3306,
284,
6901,
262,
2378,
13,
198,
220,
220,
220,
14916,
62,
8818,
1058,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
43689,
2163,
5625,
284,
6060,
19778,
326,
5860,
25131,
15879,
286,
10245,
810,
2378,
318,
366,
25579,
1911,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1643,
18747,
25,
29034,
89,
198,
220,
220,
220,
2560,
62,
45286,
25,
4377,
13290,
198,
220,
220,
220,
6764,
25,
4377,
13290,
198,
220,
220,
220,
1271,
62,
3575,
2024,
25,
493,
198,
220,
220,
220,
14916,
62,
8818,
25,
2134,
198,
198,
31,
19608,
330,
31172,
198,
4871,
3460,
4163,
25,
198,
220,
220,
220,
37227,
39373,
22090,
281,
4727,
540,
7885,
13,
628,
220,
220,
220,
49850,
477,
1321,
5115,
257,
1728,
11688,
13,
770,
318,
262,
2560,
1398,
329,
399,
39223,
33682,
290,
198,
220,
220,
220,
21198,
1292,
33682,
11,
543,
751,
3131,
2176,
1321,
284,
428,
13,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1438,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
6530,
286,
262,
11688,
13,
198,
220,
220,
220,
3815,
1058,
45941,
13,
358,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
20650,
286,
3815,
3917,
351,
11688,
13,
198,
220,
220,
220,
3509,
62,
3575,
2024,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
22246,
1271,
286,
12879,
3142,
329,
428,
7885,
13,
198,
220,
220,
220,
949,
62,
11284,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
26265,
1104,
286,
5470,
286,
10245,
5017,
416,
281,
2378,
393,
3912,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1438,
25,
4377,
13290,
198,
220,
220,
220,
3815,
25,
45941,
13,
358,
18747,
198,
220,
220,
220,
3509,
62,
3575,
2024,
25,
493,
198,
220,
220,
220,
949,
62,
11284,
25,
4377,
1303,
340,
460,
307,
281,
493,
393,
257,
12178,
198,
220,
220,
220,
38691,
414,
62,
46616,
1058,
360,
713,
58,
600,
11,
493,
60,
796,
3245,
7,
15003,
28,
25101,
8,
198,
220,
220,
220,
3709,
1058,
7343,
58,
7449,
60,
796,
2214,
7,
12286,
62,
69,
9548,
28,
4868,
11,
2315,
28,
25101,
8
] | 3.147899 | 595 |
'''
Created on Sep 19, 2021
@author: immanueltrummer
'''
import argparse
import collections
import json
import pandas as pd
import sqlite3
def get_db_path(spider_dir, db_id):
""" Return path to SQLite database file.
Args:
spider_dir: path to SPIDER benchmark
db_id: database identifier
Returns:
path to SQLite database file
"""
return f'{spider_dir}/database/{db_id}/{db_id}.sqlite'
def extract(spider_dir, db_json):
""" Extract data from database into .csv files.
Args:
spider_dir: path to SPIDER main directory
db_json: JSON description of database
"""
db_id = db_json['db_id']
db_dir = f'{spider_dir}/database/{db_id}'
db_path = f'{db_dir}/{db_id}.sqlite'
print(f'Path to DB: {db_path}')
with sqlite3.connect(db_path) as con:
#con.text_factory = bytes
con.text_factory = lambda b: b.decode(errors = 'ignore')
for tbl in db_json['table_names_original']:
query = f'select * from {tbl}'
df = pd.read_sql_query(query, con)
out_path = f'{db_dir}/{tbl}.csv'
df.to_csv(out_path, index=False)
def get_result(spider_dir, query_json):
""" Execute query and return result.
Args:
spider_dir: path to SPIDER benchmark
query_json: describes query by JSON
Returns:
query result
"""
db_id = query_json['db_id']
db_path = get_db_path(spider_dir, db_id)
sql = query_json['query']
with sqlite3.connect(db_path) as con:
cur = con.cursor()
cur.execute(sql)
result = cur.fetchall()
print(f'Query: {sql}; Result: {result}')
return result
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('spider', type=str, help='Path to SPIDER benchmark')
args = parser.parse_args()
tables_path = f'{args.spider}/tables.json'
db_to_s = {}
with open(tables_path) as file:
tables = json.load(file)
nr_dbs = len(tables)
for db_idx, db in enumerate(tables):
db_id = db['db_id']
db_to_s[db_id] = db
print(f'Extracting {db_id} ({db_idx+1}/{nr_dbs})')
extract(args.spider, db)
db_path = f'{args.spider}/schemata.json'
with open(db_path, 'w') as file:
json.dump(db_to_s, file)
for in_file in ['train_spider', 'dev']:
db_to_q = collections.defaultdict(lambda:[])
all_results = []
train_path = f'{args.spider}/{in_file}.json'
with open(train_path) as file:
queries = json.load(file)
nr_queries = len(queries)
nr_valid = 0
for q_idx, q_json in enumerate(queries):
query = q_json['query']
question = q_json['question']
db_id = q_json['db_id']
print(f'"{query}" on "{db_id}" ({q_idx+1}/{nr_queries})')
db_to_q[db_id].append(q_json)
try:
result = get_result(args.spider, q_json)
row = {
'db_id':db_id, 'question':question,
'query':query, 'results':result}
all_results.append(row)
nr_valid += 1
except:
print(f'Invalid Query: {query} on {db_id}')
print(f'Processed {nr_valid}/{nr_queries} queries')
results_path = f'{args.spider}/results_{in_file}.json'
with open(results_path, 'w') as file:
json.dump(all_results, file)
q_path = f'{args.spider}/{in_file}_queries.json'
with open(q_path, 'w') as file:
json.dump(db_to_q, file) | [
7061,
6,
198,
41972,
319,
8621,
678,
11,
33448,
198,
198,
31,
9800,
25,
545,
805,
84,
2120,
6582,
647,
198,
7061,
6,
198,
11748,
1822,
29572,
198,
11748,
17268,
198,
11748,
33918,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
44161,
578,
18,
198,
198,
4299,
651,
62,
9945,
62,
6978,
7,
2777,
1304,
62,
15908,
11,
20613,
62,
312,
2599,
198,
220,
220,
220,
37227,
8229,
3108,
284,
16363,
578,
6831,
2393,
13,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19230,
62,
15908,
25,
3108,
284,
6226,
41237,
18335,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
312,
25,
6831,
27421,
198,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
284,
16363,
578,
6831,
2393,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
277,
6,
90,
2777,
1304,
62,
15908,
92,
14,
48806,
14,
90,
9945,
62,
312,
92,
14,
90,
9945,
62,
312,
27422,
25410,
578,
6,
628,
198,
4299,
7925,
7,
2777,
1304,
62,
15908,
11,
20613,
62,
17752,
2599,
198,
220,
220,
220,
37227,
29677,
1366,
422,
6831,
656,
764,
40664,
3696,
13,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19230,
62,
15908,
25,
3108,
284,
6226,
41237,
1388,
8619,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
17752,
25,
19449,
6764,
286,
6831,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20613,
62,
312,
796,
20613,
62,
17752,
17816,
9945,
62,
312,
20520,
198,
220,
220,
220,
20613,
62,
15908,
796,
277,
6,
90,
2777,
1304,
62,
15908,
92,
14,
48806,
14,
90,
9945,
62,
312,
92,
6,
198,
220,
220,
220,
20613,
62,
6978,
796,
277,
6,
90,
9945,
62,
15908,
92,
14,
90,
9945,
62,
312,
27422,
25410,
578,
6,
198,
220,
220,
220,
3601,
7,
69,
6,
15235,
284,
20137,
25,
1391,
9945,
62,
6978,
92,
11537,
198,
220,
220,
220,
351,
44161,
578,
18,
13,
8443,
7,
9945,
62,
6978,
8,
355,
369,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1102,
13,
5239,
62,
69,
9548,
796,
9881,
198,
220,
220,
220,
220,
220,
220,
220,
369,
13,
5239,
62,
69,
9548,
796,
37456,
275,
25,
275,
13,
12501,
1098,
7,
48277,
796,
705,
46430,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
329,
256,
2436,
287,
20613,
62,
17752,
17816,
11487,
62,
14933,
62,
14986,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
796,
277,
338,
9509,
1635,
422,
1391,
83,
2436,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
25410,
62,
22766,
7,
22766,
11,
369,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
62,
6978,
796,
277,
6,
90,
9945,
62,
15908,
92,
14,
90,
83,
2436,
27422,
40664,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47764,
13,
1462,
62,
40664,
7,
448,
62,
6978,
11,
6376,
28,
25101,
8,
628,
198,
4299,
651,
62,
20274,
7,
2777,
1304,
62,
15908,
11,
12405,
62,
17752,
2599,
198,
220,
220,
220,
37227,
8393,
1133,
12405,
290,
1441,
1255,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19230,
62,
15908,
25,
3108,
284,
6226,
41237,
18335,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17752,
25,
8477,
12405,
416,
19449,
198,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
1255,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20613,
62,
312,
796,
12405,
62,
17752,
17816,
9945,
62,
312,
20520,
198,
220,
220,
220,
20613,
62,
6978,
796,
651,
62,
9945,
62,
6978,
7,
2777,
1304,
62,
15908,
11,
20613,
62,
312,
8,
198,
220,
220,
220,
44161,
796,
12405,
62,
17752,
17816,
22766,
20520,
198,
220,
220,
220,
351,
44161,
578,
18,
13,
8443,
7,
9945,
62,
6978,
8,
355,
369,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
796,
369,
13,
66,
21471,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
13,
41049,
7,
25410,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1090,
13,
69,
7569,
439,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3601,
7,
69,
6,
20746,
25,
1391,
25410,
19629,
25414,
25,
1391,
20274,
92,
11537,
198,
220,
220,
220,
1441,
1255,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
220,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
2777,
1304,
3256,
2099,
28,
2536,
11,
1037,
11639,
15235,
284,
6226,
41237,
18335,
11537,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
8893,
62,
6978,
796,
277,
6,
90,
22046,
13,
2777,
1304,
92,
14,
83,
2977,
13,
17752,
6,
198,
220,
220,
220,
20613,
62,
1462,
62,
82,
796,
23884,
198,
220,
220,
220,
351,
1280,
7,
83,
2977,
62,
6978,
8,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8893,
796,
33918,
13,
2220,
7,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
299,
81,
62,
67,
1443,
796,
18896,
7,
83,
2977,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
20613,
62,
312,
87,
11,
20613,
287,
27056,
378,
7,
83,
2977,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
312,
796,
20613,
17816,
9945,
62,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
1462,
62,
82,
58,
9945,
62,
312,
60,
796,
20613,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
11627,
974,
278,
1391,
9945,
62,
312,
92,
37913,
9945,
62,
312,
87,
10,
16,
92,
14,
90,
48624,
62,
67,
1443,
30072,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7925,
7,
22046,
13,
2777,
1304,
11,
20613,
8,
198,
220,
220,
220,
20613,
62,
6978,
796,
277,
6,
90,
22046,
13,
2777,
1304,
92,
14,
1416,
4411,
1045,
13,
17752,
6,
198,
220,
220,
220,
351,
1280,
7,
9945,
62,
6978,
11,
705,
86,
11537,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
7,
9945,
62,
1462,
62,
82,
11,
2393,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
287,
62,
7753,
287,
37250,
27432,
62,
2777,
1304,
3256,
705,
7959,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
1462,
62,
80,
796,
17268,
13,
12286,
11600,
7,
50033,
33250,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
43420,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
6978,
796,
277,
6,
90,
22046,
13,
2777,
1304,
92,
14,
90,
259,
62,
7753,
27422,
17752,
6,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
27432,
62,
6978,
8,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20743,
796,
33918,
13,
2220,
7,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
81,
62,
421,
10640,
796,
18896,
7,
421,
10640,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
81,
62,
12102,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
10662,
62,
312,
87,
11,
10662,
62,
17752,
287,
27056,
378,
7,
421,
10640,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
796,
10662,
62,
17752,
17816,
22766,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1808,
796,
10662,
62,
17752,
17816,
25652,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
312,
796,
10662,
62,
17752,
17816,
9945,
62,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
29653,
90,
22766,
36786,
319,
45144,
9945,
62,
312,
36786,
37913,
80,
62,
312,
87,
10,
16,
92,
14,
90,
48624,
62,
421,
10640,
30072,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
1462,
62,
80,
58,
9945,
62,
312,
4083,
33295,
7,
80,
62,
17752,
8,
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,
1255,
796,
651,
62,
20274,
7,
22046,
13,
2777,
1304,
11,
10662,
62,
17752,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5752,
796,
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,
705,
9945,
62,
312,
10354,
9945,
62,
312,
11,
705,
25652,
10354,
25652,
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,
705,
22766,
10354,
22766,
11,
705,
43420,
10354,
20274,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
477,
62,
43420,
13,
33295,
7,
808,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
81,
62,
12102,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
44651,
43301,
25,
1391,
22766,
92,
319,
1391,
9945,
62,
312,
92,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
18709,
276,
1391,
48624,
62,
12102,
92,
14,
90,
48624,
62,
421,
10640,
92,
20743,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
62,
6978,
796,
277,
6,
90,
22046,
13,
2777,
1304,
92,
14,
43420,
23330,
259,
62,
7753,
27422,
17752,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
43420,
62,
6978,
11,
705,
86,
11537,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
7,
439,
62,
43420,
11,
2393,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
10662,
62,
6978,
796,
277,
6,
90,
22046,
13,
2777,
1304,
92,
14,
90,
259,
62,
7753,
92,
62,
421,
10640,
13,
17752,
6,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
80,
62,
6978,
11,
705,
86,
11537,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
7,
9945,
62,
1462,
62,
80,
11,
2393,
8
] | 1.928499 | 1,972 |
import mobula.layers as L
import numpy as np
| [
11748,
7251,
4712,
13,
75,
6962,
355,
406,
198,
11748,
299,
32152,
355,
45941,
198
] | 3 | 15 |
# Generated by Django 3.1.7 on 2021-06-01 08:44
from django.conf import settings
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
16,
13,
22,
319,
33448,
12,
3312,
12,
486,
8487,
25,
2598,
198,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 3.1 | 40 |
# -*- coding: utf-8 -*-
# vim: set sw=2 ts=2 sts=2 et :
'''Defines a comment
(@@ c.(This is a comment!) x z) -> (x z)
'''
from lambd import *
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
43907,
25,
900,
1509,
28,
17,
40379,
28,
17,
39747,
28,
17,
2123,
1058,
198,
198,
7061,
6,
7469,
1127,
257,
2912,
198,
198,
7,
12404,
269,
12195,
1212,
318,
257,
2912,
8133,
2124,
1976,
8,
4613,
357,
87,
1976,
8,
198,
7061,
6,
198,
198,
6738,
19343,
67,
1330,
1635,
198
] | 2.164179 | 67 |
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
version = os.popen('git tag -l --sort -version:refname | head -n 1').read().split('\n', 1)[0]
setuptools.setup(
name="sherlockpipe", # Replace with your own username
version=version,
author="F.J. Pozuelos & M. Dévora",
author_email="[email protected]",
description="Search for Hints of Exoplanets fRom Lightcurves Of spaCe based seeKers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/franpoz/SHERLOCK",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=["numpy",
"cython",
"pandas",
"lightkurve",
"transitleastsquares",
"requests",
"eleanor",
"wotan",
"matplotlib",
"pyyaml",
"allesfitter",
"seaborn",
"bokeh",
"astroplan",
"astroquery",
"sklearn",
"scipy",
"tess-point",
"reproject==0.4",
"reportlab",
"astropy",
"mock > 2.0.0"
]
)
| [
11748,
900,
37623,
10141,
198,
11748,
28686,
198,
198,
4480,
1280,
7203,
15675,
11682,
13,
9132,
1600,
366,
81,
4943,
355,
277,
71,
25,
198,
220,
220,
220,
890,
62,
11213,
796,
277,
71,
13,
961,
3419,
198,
9641,
796,
28686,
13,
79,
9654,
10786,
18300,
7621,
532,
75,
1377,
30619,
532,
9641,
25,
5420,
3672,
930,
1182,
532,
77,
352,
27691,
961,
22446,
35312,
10786,
59,
77,
3256,
352,
38381,
15,
60,
198,
198,
2617,
37623,
10141,
13,
40406,
7,
198,
220,
220,
220,
1438,
2625,
82,
372,
5354,
34360,
1600,
1303,
40177,
351,
534,
898,
20579,
198,
220,
220,
220,
2196,
28,
9641,
11,
198,
220,
220,
220,
1772,
2625,
37,
13,
41,
13,
7695,
89,
2731,
418,
1222,
337,
13,
360,
2634,
85,
5799,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
69,
73,
7501,
89,
2731,
418,
31,
377,
14566,
13,
1350,
1600,
198,
220,
220,
220,
6764,
2625,
18243,
329,
367,
29503,
286,
1475,
46853,
1039,
277,
22834,
4401,
22019,
1158,
3226,
41900,
34,
68,
1912,
766,
42,
364,
1600,
198,
220,
220,
220,
890,
62,
11213,
28,
6511,
62,
11213,
11,
198,
220,
220,
220,
890,
62,
11213,
62,
11299,
62,
4906,
2625,
5239,
14,
4102,
2902,
1600,
198,
220,
220,
220,
19016,
2625,
5450,
1378,
12567,
13,
785,
14,
69,
2596,
7501,
89,
14,
9693,
1137,
36840,
1600,
198,
220,
220,
220,
10392,
28,
2617,
37623,
10141,
13,
19796,
62,
43789,
22784,
198,
220,
220,
220,
2291,
62,
26495,
62,
7890,
28,
17821,
11,
198,
220,
220,
220,
1398,
13350,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34156,
7904,
7294,
40,
20010,
1079,
7904,
17168,
13789,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18843,
803,
4482,
7904,
7294,
13362,
1600,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
21015,
62,
47911,
11639,
29,
28,
18,
13,
21,
3256,
198,
220,
220,
220,
2721,
62,
47911,
28,
14692,
77,
32152,
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,
948,
400,
261,
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,
79,
392,
292,
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,
2971,
74,
333,
303,
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,
7645,
2578,
5773,
421,
3565,
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,
8897,
3558,
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,
11129,
272,
273,
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,
86,
313,
272,
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,
6759,
29487,
8019,
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,
9078,
88,
43695,
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,
439,
274,
69,
1967,
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,
325,
397,
1211,
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,
65,
2088,
71,
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,
459,
305,
11578,
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,
459,
305,
22766,
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,
8135,
35720,
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,
1416,
541,
88,
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,
83,
408,
12,
4122,
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,
260,
16302,
855,
15,
13,
19,
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,
13116,
23912,
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,
459,
28338,
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,
76,
735,
1875,
362,
13,
15,
13,
15,
1,
198,
220,
220,
220,
2361,
198,
8,
198
] | 1.730372 | 968 |
# -*- coding: utf-8 -*-
# flake8: noqa
from . import api
from . import tasks
from . import web
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
781,
539,
23,
25,
645,
20402,
198,
198,
6738,
764,
1330,
40391,
198,
6738,
764,
1330,
8861,
198,
6738,
764,
1330,
3992,
198
] | 2.526316 | 38 |
default_app_config = 'sensor.apps.SmogerConfig'
| [
12286,
62,
1324,
62,
11250,
796,
705,
82,
22854,
13,
18211,
13,
7556,
519,
263,
16934,
6,
198
] | 2.666667 | 18 |
import mongoengine
from mongoengine import fields, Document, ImproperlyConfigured
from creators.models import Creator | [
198,
11748,
285,
25162,
18392,
198,
6738,
285,
25162,
18392,
1330,
7032,
11,
16854,
11,
12205,
525,
306,
16934,
1522,
198,
6738,
16294,
13,
27530,
1330,
21038
] | 4.37037 | 27 |
l = range(8)
print filter(lambda x: x % 2 == 0, l)
# [0, 2, 4, 6]
| [
75,
796,
2837,
7,
23,
8,
198,
198,
4798,
8106,
7,
50033,
2124,
25,
2124,
4064,
362,
6624,
657,
11,
300,
8,
198,
2,
685,
15,
11,
362,
11,
604,
11,
718,
60,
198
] | 1.970588 | 34 |
import unittest
from pystrings.lineup_students import lineup_students
s1 = "Tadashi Takahiro Takao Takashi Takayuki Takehiko Takeo Takeshi Takeshi"
lst1 = [
"Takehiko",
"Takayuki",
"Takahiro",
"Takeshi",
"Takeshi",
"Takashi",
"Tadashi",
"Takeo",
"Takao",
]
s2 = "Michio Miki Mikio Minori Minoru Mitsuo Mitsuru Nao Naoki Naoko Noboru Nobu Nobuo ,Nobuyuki Nori Norio Osamu Rafu Raiden Ringo Rokuro Ronin Ryo Ryoichi Ryota Ryozo Ryuichi Ryuu Saburo Sadao Samuru Satoru Satoshi Seiichi Seiji Senichi Shichiro Shig Shigekazu Shigeo Shigeru Shima Shin Shinichi Shinji Shiro Shoichi Shoji Shuichi Shuji Shunichi Susumu Tadao Tadashi Takahiro Takao Takashi Takayuki Takehiko Takeo Takeshi Takeshi Takumi Tama Tamotsu Taro Tatsuo Tatsuya Teruo Tetsip Tetsuya Tomi Tomio Toru Toshi Toshiaki Toshihiro Toshio Toshiyuki Toyo Tsuneo Tsutomu Tsuyoshi Uyeda Yasahiro Yasuhiro Yasuo Yasushi Yemon Yogi Yoichi Yori Yoshi Yoshiaki Yoshihiro Yoshikazu Yoshimitsu Yoshinori Yoshio Yoshiro Yoshito Yoshiyuki Yuichi Yuji Yuki"
lst2 = [
"Yoshimitsu",
"Yoshiyuki",
"Yoshinori",
"Yoshikazu",
"Yoshihiro",
"Toshiyuki",
"Toshihiro",
"Shigekazu",
",Nobuyuki",
"Yoshiaki",
"Yasuhiro",
"Yasahiro",
"Tsuyoshi",
"Toshiaki",
"Takehiko",
"Takayuki",
"Takahiro",
"Shunichi",
"Shinichi",
"Shichiro",
"Yoshito",
"Yoshiro",
"Yasushi",
"Tsutomu",
"Tetsuya",
"Tatsuya",
"Tamotsu",
"Takeshi",
"Takeshi",
"Takashi",
"Tadashi",
"Shuichi",
"Shoichi",
"Shigeru",
"Senichi",
"Seiichi",
"Satoshi",
"Ryuichi",
"Ryoichi",
"Mitsuru",
"Yuichi",
"Yoshio",
"Yoichi",
"Tsuneo",
"Toshio",
"Tetsip",
"Tatsuo",
"Takumi",
"Susumu",
"Shinji",
"Shigeo",
"Satoru",
"Samuru",
"Saburo",
"Rokuro",
"Raiden",
"Noboru",
"Mitsuo",
"Minoru",
"Minori",
"Michio",
"Yoshi",
"Yemon",
"Yasuo",
"Uyeda",
"Toshi",
"Tomio",
"Teruo",
"Takeo",
"Takao",
"Tadao",
"Shuji",
"Shoji",
"Shiro",
"Shima",
"Seiji",
"Sadao",
"Ryozo",
"Ryota",
"Ronin",
"Ringo",
"Osamu",
"Norio",
"Nobuo",
"Naoko",
"Naoki",
"Mikio",
"Yuki",
"Yuji",
"Yori",
"Yogi",
"Toyo",
"Toru",
"Tomi",
"Taro",
"Tama",
"Shin",
"Shig",
"Ryuu",
"Rafu",
"Nori",
"Nobu",
"Miki",
"Ryo",
"Nao",
]
s3 = "Yoshiro Yoshiro Tsuyoshi Shoichi Naoko Yori Takayuki Tsutomu Shigeo"
lst3 = [
"Tsuyoshi",
"Takayuki",
"Yoshiro",
"Yoshiro",
"Tsutomu",
"Shoichi",
"Shigeo",
"Naoko",
"Yori",
]
| [
11748,
555,
715,
395,
198,
198,
6738,
12972,
37336,
13,
1370,
929,
62,
19149,
658,
1330,
12750,
62,
19149,
658,
198,
198,
82,
16,
796,
366,
51,
324,
12144,
15804,
993,
7058,
15804,
5488,
15804,
12144,
15804,
323,
11308,
7214,
71,
12125,
7214,
78,
33687,
5303,
33687,
5303,
1,
198,
198,
75,
301,
16,
796,
685,
198,
220,
220,
220,
366,
12322,
71,
12125,
1600,
198,
220,
220,
220,
366,
51,
461,
323,
11308,
1600,
198,
220,
220,
220,
366,
51,
461,
993,
7058,
1600,
198,
220,
220,
220,
366,
51,
1124,
5303,
1600,
198,
220,
220,
220,
366,
51,
1124,
5303,
1600,
198,
220,
220,
220,
366,
51,
461,
12144,
1600,
198,
220,
220,
220,
366,
51,
324,
12144,
1600,
198,
220,
220,
220,
366,
12322,
78,
1600,
198,
220,
220,
220,
366,
51,
461,
5488,
1600,
198,
60,
198,
198,
82,
17,
796,
366,
11180,
952,
337,
5580,
17722,
952,
1855,
10145,
15367,
84,
337,
19831,
78,
22424,
14717,
399,
5488,
11013,
18228,
11013,
16044,
8140,
27786,
8140,
84,
8140,
20895,
837,
21191,
4669,
11308,
5414,
72,
5414,
952,
8834,
321,
84,
20824,
84,
12448,
268,
12569,
78,
371,
482,
1434,
6575,
259,
371,
8226,
371,
8226,
16590,
11089,
4265,
371,
8226,
10872,
36936,
16590,
11089,
12303,
9910,
1434,
311,
4763,
78,
3409,
14717,
311,
1352,
84,
40824,
1001,
72,
16590,
1001,
20770,
2311,
16590,
911,
488,
7058,
911,
328,
911,
328,
988,
1031,
84,
911,
10045,
78,
911,
8254,
84,
911,
8083,
11466,
11466,
16590,
33891,
911,
7058,
16509,
16590,
16509,
7285,
32344,
16590,
32344,
7285,
911,
403,
16590,
8932,
388,
84,
309,
4763,
78,
50077,
12144,
15804,
993,
7058,
15804,
5488,
15804,
12144,
15804,
323,
11308,
7214,
71,
12125,
7214,
78,
33687,
5303,
33687,
5303,
15804,
12994,
309,
1689,
11552,
1747,
84,
309,
12022,
309,
19231,
78,
309,
19231,
3972,
3813,
20895,
309,
1039,
541,
309,
30470,
3972,
4186,
72,
4186,
952,
4022,
84,
309,
13704,
309,
13704,
8182,
47922,
4449,
7058,
47922,
952,
47922,
7745,
11308,
10977,
78,
13146,
1726,
78,
13146,
315,
296,
84,
23459,
88,
13704,
471,
88,
18082,
25957,
993,
7058,
25957,
84,
49907,
25957,
20895,
25957,
17731,
575,
7966,
31604,
72,
25455,
16590,
575,
10145,
38936,
38936,
8182,
28563,
4449,
7058,
28563,
1134,
1031,
84,
28563,
320,
19831,
28563,
259,
10145,
28563,
952,
28563,
7058,
28563,
10094,
28563,
7745,
11308,
10605,
16590,
10605,
7285,
575,
11308,
1,
198,
198,
75,
301,
17,
796,
685,
198,
220,
220,
220,
366,
56,
3768,
320,
19831,
1600,
198,
220,
220,
220,
366,
56,
3768,
7745,
11308,
1600,
198,
220,
220,
220,
366,
56,
3768,
259,
10145,
1600,
198,
220,
220,
220,
366,
56,
3768,
1134,
1031,
84,
1600,
198,
220,
220,
220,
366,
56,
3768,
4449,
7058,
1600,
198,
220,
220,
220,
366,
51,
3768,
7745,
11308,
1600,
198,
220,
220,
220,
366,
51,
3768,
4449,
7058,
1600,
198,
220,
220,
220,
366,
2484,
328,
988,
1031,
84,
1600,
198,
220,
220,
220,
33172,
21191,
4669,
11308,
1600,
198,
220,
220,
220,
366,
56,
13704,
8182,
1600,
198,
220,
220,
220,
366,
56,
27345,
49907,
1600,
198,
220,
220,
220,
366,
56,
292,
993,
7058,
1600,
198,
220,
220,
220,
366,
51,
2385,
88,
13704,
1600,
198,
220,
220,
220,
366,
51,
13704,
8182,
1600,
198,
220,
220,
220,
366,
12322,
71,
12125,
1600,
198,
220,
220,
220,
366,
51,
461,
323,
11308,
1600,
198,
220,
220,
220,
366,
51,
461,
993,
7058,
1600,
198,
220,
220,
220,
366,
2484,
403,
16590,
1600,
198,
220,
220,
220,
366,
44592,
16590,
1600,
198,
220,
220,
220,
366,
2484,
488,
7058,
1600,
198,
220,
220,
220,
366,
56,
3768,
10094,
1600,
198,
220,
220,
220,
366,
56,
3768,
7058,
1600,
198,
220,
220,
220,
366,
56,
292,
17731,
1600,
198,
220,
220,
220,
366,
33758,
315,
296,
84,
1600,
198,
220,
220,
220,
366,
51,
30470,
3972,
1600,
198,
220,
220,
220,
366,
51,
19231,
3972,
1600,
198,
220,
220,
220,
366,
42061,
1747,
84,
1600,
198,
220,
220,
220,
366,
51,
1124,
5303,
1600,
198,
220,
220,
220,
366,
51,
1124,
5303,
1600,
198,
220,
220,
220,
366,
51,
461,
12144,
1600,
198,
220,
220,
220,
366,
51,
324,
12144,
1600,
198,
220,
220,
220,
366,
2484,
84,
16590,
1600,
198,
220,
220,
220,
366,
2484,
78,
16590,
1600,
198,
220,
220,
220,
366,
2484,
8254,
84,
1600,
198,
220,
220,
220,
366,
10445,
16590,
1600,
198,
220,
220,
220,
366,
4653,
72,
16590,
1600,
198,
220,
220,
220,
366,
20245,
13704,
1600,
198,
220,
220,
220,
366,
49,
24767,
16590,
1600,
198,
220,
220,
220,
366,
49,
8226,
16590,
1600,
198,
220,
220,
220,
366,
44,
896,
14717,
1600,
198,
220,
220,
220,
366,
40728,
16590,
1600,
198,
220,
220,
220,
366,
56,
3768,
952,
1600,
198,
220,
220,
220,
366,
38101,
16590,
1600,
198,
220,
220,
220,
366,
33758,
1726,
78,
1600,
198,
220,
220,
220,
366,
51,
3768,
952,
1600,
198,
220,
220,
220,
366,
51,
1039,
541,
1600,
198,
220,
220,
220,
366,
51,
19231,
78,
1600,
198,
220,
220,
220,
366,
51,
461,
12994,
1600,
198,
220,
220,
220,
366,
30746,
388,
84,
1600,
198,
220,
220,
220,
366,
44592,
7285,
1600,
198,
220,
220,
220,
366,
2484,
10045,
78,
1600,
198,
220,
220,
220,
366,
50,
1352,
84,
1600,
198,
220,
220,
220,
366,
16305,
14717,
1600,
198,
220,
220,
220,
366,
39646,
1434,
1600,
198,
220,
220,
220,
366,
49,
482,
1434,
1600,
198,
220,
220,
220,
366,
49,
17538,
1600,
198,
220,
220,
220,
366,
21191,
27786,
1600,
198,
220,
220,
220,
366,
44,
19831,
78,
1600,
198,
220,
220,
220,
366,
9452,
27786,
1600,
198,
220,
220,
220,
366,
9452,
10145,
1600,
198,
220,
220,
220,
366,
11180,
952,
1600,
198,
220,
220,
220,
366,
56,
13704,
1600,
198,
220,
220,
220,
366,
56,
7966,
1600,
198,
220,
220,
220,
366,
56,
292,
20895,
1600,
198,
220,
220,
220,
366,
52,
88,
18082,
1600,
198,
220,
220,
220,
366,
51,
13704,
1600,
198,
220,
220,
220,
366,
13787,
952,
1600,
198,
220,
220,
220,
366,
15156,
20895,
1600,
198,
220,
220,
220,
366,
12322,
78,
1600,
198,
220,
220,
220,
366,
51,
461,
5488,
1600,
198,
220,
220,
220,
366,
51,
4763,
78,
1600,
198,
220,
220,
220,
366,
2484,
84,
7285,
1600,
198,
220,
220,
220,
366,
2484,
31370,
1600,
198,
220,
220,
220,
366,
2484,
7058,
1600,
198,
220,
220,
220,
366,
2484,
8083,
1600,
198,
220,
220,
220,
366,
4653,
20770,
1600,
198,
220,
220,
220,
366,
50,
4763,
78,
1600,
198,
220,
220,
220,
366,
49,
8226,
10872,
1600,
198,
220,
220,
220,
366,
46987,
4265,
1600,
198,
220,
220,
220,
366,
23672,
259,
1600,
198,
220,
220,
220,
366,
49,
32735,
1600,
198,
220,
220,
220,
366,
16748,
321,
84,
1600,
198,
220,
220,
220,
366,
21991,
952,
1600,
198,
220,
220,
220,
366,
21191,
20895,
1600,
198,
220,
220,
220,
366,
26705,
16044,
1600,
198,
220,
220,
220,
366,
26705,
18228,
1600,
198,
220,
220,
220,
366,
44,
1134,
952,
1600,
198,
220,
220,
220,
366,
56,
11308,
1600,
198,
220,
220,
220,
366,
40728,
7285,
1600,
198,
220,
220,
220,
366,
56,
10145,
1600,
198,
220,
220,
220,
366,
56,
44381,
1600,
198,
220,
220,
220,
366,
48236,
78,
1600,
198,
220,
220,
220,
366,
15884,
84,
1600,
198,
220,
220,
220,
366,
51,
12753,
1600,
198,
220,
220,
220,
366,
51,
12022,
1600,
198,
220,
220,
220,
366,
51,
1689,
1600,
198,
220,
220,
220,
366,
44592,
1600,
198,
220,
220,
220,
366,
2484,
328,
1600,
198,
220,
220,
220,
366,
46987,
12303,
1600,
198,
220,
220,
220,
366,
49,
1878,
84,
1600,
198,
220,
220,
220,
366,
45,
10145,
1600,
198,
220,
220,
220,
366,
21191,
84,
1600,
198,
220,
220,
220,
366,
44,
5580,
1600,
198,
220,
220,
220,
366,
49,
8226,
1600,
198,
220,
220,
220,
366,
45,
5488,
1600,
198,
60,
198,
198,
82,
18,
796,
366,
56,
3768,
7058,
28563,
7058,
23459,
88,
13704,
16509,
16590,
11013,
16044,
575,
10145,
15804,
323,
11308,
13146,
315,
296,
84,
911,
10045,
78,
1,
198,
75,
301,
18,
796,
685,
198,
220,
220,
220,
366,
51,
2385,
88,
13704,
1600,
198,
220,
220,
220,
366,
51,
461,
323,
11308,
1600,
198,
220,
220,
220,
366,
56,
3768,
7058,
1600,
198,
220,
220,
220,
366,
56,
3768,
7058,
1600,
198,
220,
220,
220,
366,
33758,
315,
296,
84,
1600,
198,
220,
220,
220,
366,
2484,
78,
16590,
1600,
198,
220,
220,
220,
366,
2484,
10045,
78,
1600,
198,
220,
220,
220,
366,
26705,
16044,
1600,
198,
220,
220,
220,
366,
56,
10145,
1600,
198,
60,
628
] | 1.912439 | 1,439 |
#@<OUT> CLI --help
The following objects provide command line operations:
cli_tester
CLI Integration Testing Plugin
cluster
Represents an InnoDB cluster.
dba
InnoDB cluster and replicaset management functions.
rs
Represents an InnoDB ReplicaSet.
shell
Gives access to general purpose functions and properties.
util
Global object that groups miscellaneous tools like upgrade checker and
JSON import.
#@<OUT> CLI plugin --help
The following object provides command line operations at 'cli_tester':
emptyChild
Empty object, exposes no functions but child does.
The following operations are available at 'cli_tester':
test
Testing cmd line args.
#@<OUT> CLI plugin function --help
NAME
test - Testing cmd line args.
SYNTAX
cli_tester test <stritem> <strlist> --namedstr=<str> <options>
WHERE
stritem: String - string parameter.
strlist: Array - string list parameter.
OPTIONS
--namedstr=<str>
String named parameter (for being after a list parameter).
--str=<str>
String option.
--strlist=<str list>
String list option.
#@<OUT> Interactive plugin function --help
ERROR: Invalid operation for cli_tester object: test-interactive
#@<OUT> Interactive plugin function help
NAME
testInteractive - Testing interactive function.
SYNTAX
cli_tester.testInteractive()
#@<OUT> CLI plugin nested child --help
The following object provides command line operations at 'cli_tester emptyChild':
grandChild
Grand child object exposing a function.
#@<OUT> CLI plugin nested grand child --help
The following operations are available at 'cli_tester emptyChild grandChild':
grand-child-function
Testing cmd line args in nested objects.
#@<OUT> CLI plugin nested grand child function --help
The following operations are available at 'cli_tester emptyChild grandChild':
grand-child-function
Testing cmd line args in nested objects.
#@<OUT> Test string list handling
String Parameter: 1,2,3,4,5
String List Parameter Item: 1
String List Parameter Item: 2
String List Parameter Item: 3
String List Parameter Item: 4
String List Parameter Item: 5
String Named Item: 1,2,3,4,5
String Option: 1,2,3,4,5
String List Option Item: 1
String List Option Item: 2
String List Option Item: 3
String List Option Item: 4
String List Option Item: 5
#@<OUT> Test string list quoted args for interpreter
String Parameter: 1,2,3,4,5
String List Parameter Item: 1,2
String List Parameter Item: 3
String List Parameter Item: 4,5
String Named Item: 1,2,3,4,5
String Option: 1,2,3,4,5
String List Option Item: 1,2
String List Option Item: 3
String List Option Item: 4,5
#@<OUT> Escaped comma in list parsing
String Parameter: 1,2,3,4,5
String List Parameter Item: 1,2
String List Parameter Item: 3
String List Parameter Item: 4,5
String Named Item: 1,2,3,4,5
String Option: 1,2,3,4,5
String List Option Item: 1,2
String List Option Item: 3
String List Option Item: 4,5
#@<OUT> Escaped quoting: \", \'
String Parameter: "1",2,3,4,5
String List Parameter Item: 1
String List Parameter Item: 2
String List Parameter Item: 3
String List Parameter Item: 4
String List Parameter Item: 5
String Named Item: 1,2,"3",4,5
String Option: 1,2,"3",4,5
String List Option Item: 1
String List Option Item: 2
String List Option Item: 3
String List Option Item: 4
String List Option Item: 5
String Parameter: '1',2,3,4,5
String List Parameter Item: 1
String List Parameter Item: 2
String List Parameter Item: 3
String List Parameter Item: 4
String List Parameter Item: 5
String Named Item: 1,2,'3',4,5
String Option: 1,2,'3',4,5
String List Option Item: 1
String List Option Item: 2
String List Option Item: 3
String List Option Item: 4
String List Option Item: 5
#@<OUT> Escaped equal: \=
String Parameter: =1,2,3,4,5
String List Parameter Item: 1=2
String List Parameter Item: 3
String List Parameter Item: 4=5
String Named Item: =1,2,3,4=5
String Option: =1,2,3,4=5
String List Option Item: 1=2
String List Option Item: 3
String List Option Item: 4=5
#@<OUT> CLI calling plugin nested grand child function
Unique Parameter: Success!!
| [
2,
31,
27,
12425,
29,
43749,
1377,
16794,
198,
464,
1708,
5563,
2148,
3141,
1627,
4560,
25,
628,
220,
220,
537,
72,
62,
4879,
353,
198,
220,
220,
220,
220,
220,
43749,
38410,
23983,
42636,
628,
220,
220,
13946,
198,
220,
220,
220,
220,
220,
1432,
6629,
281,
554,
3919,
11012,
13946,
13,
628,
220,
220,
288,
7012,
198,
220,
220,
220,
220,
220,
554,
3919,
11012,
13946,
290,
2186,
44645,
316,
4542,
5499,
13,
628,
220,
220,
44608,
198,
220,
220,
220,
220,
220,
1432,
6629,
281,
554,
3919,
11012,
18407,
3970,
7248,
13,
628,
220,
220,
7582,
198,
220,
220,
220,
220,
220,
402,
1083,
1895,
284,
2276,
4007,
5499,
290,
6608,
13,
628,
220,
220,
7736,
198,
220,
220,
220,
220,
220,
8060,
2134,
326,
2628,
2984,
25673,
4899,
588,
8515,
2198,
263,
290,
198,
220,
220,
220,
220,
220,
19449,
1330,
13,
198,
198,
2,
31,
27,
12425,
29,
43749,
13877,
1377,
16794,
198,
464,
1708,
2134,
3769,
3141,
1627,
4560,
379,
705,
44506,
62,
4879,
353,
10354,
628,
220,
220,
6565,
16424,
198,
220,
220,
220,
220,
220,
33523,
2134,
11,
32142,
645,
5499,
475,
1200,
857,
13,
198,
198,
464,
1708,
4560,
389,
1695,
379,
705,
44506,
62,
4879,
353,
10354,
628,
220,
220,
1332,
198,
220,
220,
220,
220,
220,
23983,
23991,
1627,
26498,
13,
198,
198,
2,
31,
27,
12425,
29,
43749,
13877,
2163,
1377,
16794,
198,
20608,
198,
220,
220,
220,
220,
220,
1332,
532,
23983,
23991,
1627,
26498,
13,
198,
198,
23060,
45,
5603,
55,
198,
220,
220,
220,
220,
220,
537,
72,
62,
4879,
353,
1332,
1279,
301,
799,
368,
29,
1279,
2536,
4868,
29,
1377,
13190,
2536,
28,
27,
2536,
29,
1279,
25811,
29,
198,
198,
47357,
198,
220,
220,
220,
220,
220,
336,
799,
368,
25,
10903,
532,
4731,
11507,
13,
198,
220,
220,
220,
220,
220,
965,
4868,
25,
15690,
532,
4731,
1351,
11507,
13,
198,
198,
3185,
51,
11053,
198,
438,
13190,
2536,
28,
27,
2536,
29,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10903,
3706,
11507,
357,
1640,
852,
706,
257,
1351,
11507,
737,
198,
198,
438,
2536,
28,
27,
2536,
29,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10903,
3038,
13,
198,
198,
438,
2536,
4868,
28,
27,
2536,
1351,
29,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10903,
1351,
3038,
13,
198,
198,
2,
31,
27,
12425,
29,
21365,
13877,
2163,
1377,
16794,
198,
24908,
25,
17665,
4905,
329,
537,
72,
62,
4879,
353,
2134,
25,
1332,
12,
3849,
5275,
198,
198,
2,
31,
27,
12425,
29,
21365,
13877,
2163,
1037,
198,
20608,
198,
220,
220,
220,
220,
220,
1332,
9492,
5275,
532,
23983,
14333,
2163,
13,
198,
198,
23060,
45,
5603,
55,
198,
220,
220,
220,
220,
220,
537,
72,
62,
4879,
353,
13,
9288,
9492,
5275,
3419,
198,
198,
2,
31,
27,
12425,
29,
43749,
13877,
28376,
1200,
1377,
16794,
198,
464,
1708,
2134,
3769,
3141,
1627,
4560,
379,
705,
44506,
62,
4879,
353,
6565,
16424,
10354,
628,
220,
220,
4490,
16424,
198,
220,
220,
220,
220,
220,
5675,
1200,
2134,
21294,
257,
2163,
13,
198,
198,
2,
31,
27,
12425,
29,
43749,
13877,
28376,
4490,
1200,
1377,
16794,
198,
464,
1708,
4560,
389,
1695,
379,
705,
44506,
62,
4879,
353,
6565,
16424,
4490,
16424,
10354,
628,
220,
220,
4490,
12,
9410,
12,
8818,
198,
220,
220,
220,
220,
220,
23983,
23991,
1627,
26498,
287,
28376,
5563,
13,
198,
198,
2,
31,
27,
12425,
29,
43749,
13877,
28376,
4490,
1200,
2163,
1377,
16794,
198,
464,
1708,
4560,
389,
1695,
379,
705,
44506,
62,
4879,
353,
6565,
16424,
4490,
16424,
10354,
628,
220,
220,
4490,
12,
9410,
12,
8818,
198,
220,
220,
220,
220,
220,
23983,
23991,
1627,
26498,
287,
28376,
5563,
13,
198,
198,
2,
31,
27,
12425,
29,
6208,
4731,
1351,
9041,
198,
10100,
25139,
2357,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
198,
10100,
7343,
25139,
2357,
9097,
25,
362,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
198,
10100,
7343,
25139,
2357,
9097,
25,
642,
198,
10100,
34441,
9097,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
16018,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
198,
10100,
7343,
16018,
9097,
25,
362,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
198,
10100,
7343,
16018,
9097,
25,
642,
198,
198,
2,
31,
27,
12425,
29,
6208,
4731,
1351,
10947,
26498,
329,
28846,
198,
10100,
25139,
2357,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
11,
17,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
11,
20,
198,
10100,
34441,
9097,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
16018,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
11,
17,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
11,
20,
198,
198,
2,
31,
27,
12425,
29,
16319,
5813,
39650,
287,
1351,
32096,
198,
10100,
25139,
2357,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
11,
17,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
11,
20,
198,
10100,
34441,
9097,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
16018,
25,
352,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
11,
17,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
11,
20,
198,
198,
2,
31,
27,
12425,
29,
16319,
5813,
28411,
25,
3467,
1600,
34373,
198,
10100,
25139,
2357,
25,
366,
16,
1600,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
198,
10100,
7343,
25139,
2357,
9097,
25,
362,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
198,
10100,
7343,
25139,
2357,
9097,
25,
642,
198,
10100,
34441,
9097,
25,
352,
11,
17,
553,
18,
1600,
19,
11,
20,
198,
10100,
16018,
25,
352,
11,
17,
553,
18,
1600,
19,
11,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
198,
10100,
7343,
16018,
9097,
25,
362,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
198,
10100,
7343,
16018,
9097,
25,
642,
198,
10100,
25139,
2357,
25,
705,
16,
3256,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
198,
10100,
7343,
25139,
2357,
9097,
25,
362,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
198,
10100,
7343,
25139,
2357,
9097,
25,
642,
198,
10100,
34441,
9097,
25,
352,
11,
17,
4032,
18,
3256,
19,
11,
20,
198,
10100,
16018,
25,
352,
11,
17,
4032,
18,
3256,
19,
11,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
198,
10100,
7343,
16018,
9097,
25,
362,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
198,
10100,
7343,
16018,
9097,
25,
642,
198,
198,
2,
31,
27,
12425,
29,
16319,
5813,
4961,
25,
3467,
28,
198,
10100,
25139,
2357,
25,
796,
16,
11,
17,
11,
18,
11,
19,
11,
20,
198,
10100,
7343,
25139,
2357,
9097,
25,
352,
28,
17,
198,
10100,
7343,
25139,
2357,
9097,
25,
513,
198,
10100,
7343,
25139,
2357,
9097,
25,
604,
28,
20,
198,
10100,
34441,
9097,
25,
796,
16,
11,
17,
11,
18,
11,
19,
28,
20,
198,
10100,
16018,
25,
796,
16,
11,
17,
11,
18,
11,
19,
28,
20,
198,
10100,
7343,
16018,
9097,
25,
352,
28,
17,
198,
10100,
7343,
16018,
9097,
25,
513,
198,
10100,
7343,
16018,
9097,
25,
604,
28,
20,
198,
198,
2,
31,
27,
12425,
29,
43749,
4585,
13877,
28376,
4490,
1200,
2163,
198,
40257,
25139,
2357,
25,
16282,
3228,
628
] | 3.075055 | 1,359 |
# encoding: utf8
#
# This file is part of the Neurons project.
# Copyright (c), Arskom Ltd. (arskom.com.tr),
# Burak Arslan <[email protected]>.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the Arskom Ltd., the neurons project nor the names of
# its its contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
from lxml import etree
| [
2,
21004,
25,
3384,
69,
23,
198,
2,
198,
2,
770,
2393,
318,
636,
286,
262,
3169,
333,
684,
1628,
13,
198,
2,
15069,
357,
66,
828,
943,
8135,
296,
12052,
13,
357,
945,
74,
296,
13,
785,
13,
2213,
828,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5481,
461,
943,
6649,
272,
1279,
6236,
461,
13,
945,
9620,
31,
945,
74,
296,
13,
785,
13,
2213,
28401,
198,
2,
1439,
2489,
10395,
13,
198,
2,
198,
2,
2297,
396,
3890,
290,
779,
287,
2723,
290,
13934,
5107,
11,
351,
393,
1231,
198,
2,
17613,
11,
389,
10431,
2810,
326,
262,
1708,
3403,
389,
1138,
25,
198,
2,
198,
2,
1635,
2297,
396,
2455,
507,
286,
2723,
2438,
1276,
12377,
262,
2029,
6634,
4003,
11,
428,
198,
2,
220,
220,
1351,
286,
3403,
290,
262,
1708,
37592,
13,
198,
2,
198,
2,
1635,
2297,
396,
2455,
507,
287,
13934,
1296,
1276,
22919,
262,
2029,
6634,
4003,
11,
198,
2,
220,
220,
428,
1351,
286,
3403,
290,
262,
1708,
37592,
287,
262,
10314,
198,
2,
220,
220,
290,
14,
273,
584,
5696,
2810,
351,
262,
6082,
13,
198,
2,
198,
2,
1635,
16126,
262,
1438,
286,
262,
943,
8135,
296,
12052,
1539,
262,
16890,
1628,
4249,
262,
3891,
286,
198,
2,
220,
220,
663,
663,
20420,
743,
307,
973,
284,
11438,
393,
7719,
3186,
10944,
422,
198,
2,
220,
220,
428,
3788,
1231,
2176,
3161,
3194,
7170,
13,
198,
2,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
11050,
3336,
27975,
38162,
9947,
367,
15173,
4877,
5357,
27342,
9865,
3843,
20673,
366,
1921,
3180,
1,
198,
2,
5357,
15529,
7788,
32761,
6375,
8959,
49094,
34764,
11015,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
198,
2,
8959,
49094,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
5357,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
15986,
198,
2,
13954,
48778,
1961,
13,
3268,
8005,
49261,
50163,
3336,
27975,
38162,
9947,
49707,
14418,
6375,
27342,
9865,
3843,
20673,
9348,
43031,
19146,
198,
2,
7473,
15529,
42242,
11,
3268,
17931,
23988,
11,
19387,
25256,
1847,
11,
38846,
11,
7788,
3620,
6489,
13153,
11,
6375,
7102,
5188,
10917,
3525,
12576,
198,
2,
29506,
25552,
357,
1268,
39149,
2751,
11,
21728,
5626,
40880,
5390,
11,
41755,
11335,
10979,
3963,
28932,
2257,
2043,
37780,
21090,
50,
6375,
198,
2,
49254,
26,
406,
18420,
3963,
23210,
11,
42865,
11,
6375,
4810,
19238,
29722,
26,
6375,
43949,
44180,
23255,
49,
8577,
24131,
8,
29630,
36,
5959,
198,
2,
7257,
2937,
1961,
5357,
6177,
15529,
3336,
15513,
3963,
43031,
25382,
11,
7655,
2767,
16879,
3268,
27342,
10659,
11,
19269,
18379,
43031,
25382,
11,
198,
2,
6375,
309,
9863,
357,
1268,
39149,
2751,
399,
7156,
43,
3528,
18310,
6375,
25401,
54,
24352,
8,
5923,
1797,
2751,
3268,
15529,
34882,
16289,
3963,
3336,
23210,
198,
2,
3963,
12680,
47466,
11,
45886,
16876,
5984,
29817,
1961,
3963,
3336,
28069,
11584,
25382,
3963,
13558,
3398,
29506,
11879,
13,
198,
2,
198,
198,
6738,
300,
19875,
1330,
2123,
631,
628,
198
] | 3.37451 | 510 |
from param import Param
from numpy import zeros, zeros_like, roll
from gmg.hierarchy import Gmg
import fortran_advection as fa
import fortran_operators as fo
import fortran_diag as fd
from fourier import Fourier
| [
6738,
5772,
1330,
25139,
198,
6738,
299,
32152,
1330,
1976,
27498,
11,
1976,
27498,
62,
2339,
11,
4836,
198,
6738,
308,
11296,
13,
71,
959,
9282,
1330,
402,
11296,
198,
11748,
329,
2213,
272,
62,
324,
303,
596,
355,
24685,
198,
11748,
329,
2213,
272,
62,
3575,
2024,
355,
11511,
198,
11748,
329,
2213,
272,
62,
10989,
363,
355,
277,
67,
198,
6738,
46287,
5277,
1330,
34296,
5277,
628
] | 3.086957 | 69 |
# -*- coding: utf-8 -*-
import unittest
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
555,
715,
395,
628
] | 2.1 | 20 |
import pandas as pd
import numpy as np
def gini(x):
"""Calculate the Gini coefficient for series of observed values (x).
where:
* x is the array of observed values (and all x are positive, non-zero values)
Note: x must be a numpy array or a pandas series
See: https://www.statsdirect.com/help/default.htm#nonparametric_methods/gini.htm
"""
# - sanity checks
if not isinstance(x, pd.Series) and not isinstance(x, np.ndarray):
raise TypeError('input series must be a pandas Series or a numpy ndarray')
if x.min() <= 0:
raise ValueError('all input values in series must be positive and non-zero')
# let's work with numpy arrays
if isinstance(x, pd.Series):
x = x.to_numpy()
# sort values in ascending order
x = np.sort(x)
# n is the number of values observed
n = len(x)
# i is the rank of the x-values when sorted in ascending order
i = np.arange(1, n+1)
# - calculate the Gini coefficient
return ((2 * i - n - 1) * x).sum() / (n * x.sum())
# An alternate approach ...
def gini2(x):
""" Calculate Gini from observed values using summation-as-integration """
if not isinstance(x, pd.Series) and not isinstance(x, np.ndarray):
raise TypeError('input series must be a pandas Series or a numpy array')
if x.min() <= 0:
raise ValueError('all input values in series must be positive and non-zero')
# let's work with numpy arrays
if isinstance(x, pd.Series):
x = x.to_numpy()
# calculate the line-of-equality and the lorenz curve
lorenz = np.sort(x).cumsum()
height = lorenz[-1]
n = len(lorenz)
equality = np.arange(1, n+1) * height / n
# calculate Gini
A_area = (equality - lorenz).sum() # area between lorenz and equality
AB_area = n * height / 2 # area of triangle
return A_area / AB_area
| [
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
198,
4299,
308,
5362,
7,
87,
2599,
198,
220,
220,
220,
37227,
9771,
3129,
378,
262,
402,
5362,
35381,
329,
2168,
286,
6515,
3815,
357,
87,
737,
220,
198,
220,
220,
220,
810,
25,
198,
220,
220,
220,
1635,
2124,
318,
262,
7177,
286,
6515,
3815,
357,
392,
477,
2124,
389,
3967,
11,
1729,
12,
22570,
3815,
8,
198,
220,
220,
220,
220,
220,
5740,
25,
2124,
1276,
307,
257,
299,
32152,
7177,
393,
257,
19798,
292,
2168,
198,
220,
220,
220,
4091,
25,
3740,
1378,
2503,
13,
34242,
12942,
13,
785,
14,
16794,
14,
12286,
13,
19211,
2,
13159,
17143,
19482,
62,
24396,
82,
14,
1655,
72,
13,
19211,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
532,
34182,
8794,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
87,
11,
279,
67,
13,
27996,
8,
290,
407,
318,
39098,
7,
87,
11,
45941,
13,
358,
18747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
10786,
15414,
2168,
1276,
307,
257,
19798,
292,
7171,
393,
257,
299,
32152,
299,
67,
18747,
11537,
198,
220,
220,
220,
611,
2124,
13,
1084,
3419,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
439,
5128,
3815,
287,
2168,
1276,
307,
3967,
290,
1729,
12,
22570,
11537,
628,
220,
220,
220,
1303,
1309,
338,
670,
351,
299,
32152,
26515,
198,
220,
220,
220,
611,
318,
39098,
7,
87,
11,
279,
67,
13,
27996,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
2124,
13,
1462,
62,
77,
32152,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3297,
3815,
287,
41988,
1502,
198,
220,
220,
220,
2124,
796,
45941,
13,
30619,
7,
87,
8,
628,
220,
220,
220,
1303,
299,
318,
262,
1271,
286,
3815,
6515,
198,
220,
220,
220,
299,
796,
18896,
7,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1312,
318,
262,
4279,
286,
262,
2124,
12,
27160,
618,
23243,
287,
41988,
1502,
198,
220,
220,
220,
1312,
796,
45941,
13,
283,
858,
7,
16,
11,
299,
10,
16,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
532,
15284,
262,
402,
5362,
35381,
198,
220,
220,
220,
1441,
14808,
17,
1635,
1312,
532,
299,
532,
352,
8,
1635,
2124,
737,
16345,
3419,
1220,
357,
77,
1635,
2124,
13,
16345,
28955,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
2,
1052,
13527,
3164,
2644,
198,
4299,
308,
5362,
17,
7,
87,
2599,
198,
220,
220,
220,
37227,
27131,
378,
402,
5362,
422,
6515,
3815,
1262,
30114,
341,
12,
292,
12,
18908,
1358,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
87,
11,
279,
67,
13,
27996,
8,
290,
407,
318,
39098,
7,
87,
11,
45941,
13,
358,
18747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
10786,
15414,
2168,
1276,
307,
257,
19798,
292,
7171,
393,
257,
299,
32152,
7177,
11537,
198,
220,
220,
220,
611,
2124,
13,
1084,
3419,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
439,
5128,
3815,
287,
2168,
1276,
307,
3967,
290,
1729,
12,
22570,
11537,
628,
220,
220,
220,
1303,
1309,
338,
670,
351,
299,
32152,
26515,
198,
220,
220,
220,
611,
318,
39098,
7,
87,
11,
279,
67,
13,
27996,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
2124,
13,
1462,
62,
77,
32152,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
15284,
262,
1627,
12,
1659,
12,
48203,
290,
262,
24044,
27305,
12133,
198,
220,
220,
220,
24044,
27305,
796,
45941,
13,
30619,
7,
87,
737,
66,
5700,
388,
3419,
198,
220,
220,
220,
6001,
796,
24044,
27305,
58,
12,
16,
60,
198,
220,
220,
220,
299,
796,
18896,
7,
31131,
27305,
8,
198,
220,
220,
220,
10537,
796,
45941,
13,
283,
858,
7,
16,
11,
299,
10,
16,
8,
1635,
6001,
1220,
299,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
15284,
402,
5362,
198,
220,
220,
220,
317,
62,
20337,
796,
357,
48203,
532,
24044,
27305,
737,
16345,
3419,
1303,
1989,
1022,
24044,
27305,
290,
10537,
198,
220,
220,
220,
9564,
62,
20337,
796,
299,
1635,
6001,
1220,
362,
1303,
1989,
286,
22950,
198,
220,
220,
220,
1441,
317,
62,
20337,
1220,
9564,
62,
20337,
198
] | 2.552457 | 753 |
#!/usr/bin/env python
# Copyright (c) 2013 Martin Katrenik, Snowplow Analytics Ltd. All rights reserved.
#
# This program is licensed to you under the Apache License Version 2.0,
# and you may not use this file except in compliance with the Apache
# License Version 2.0.
# You may obtain a copy of the Apache License Version 2.0 at
# http://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the Apache License Version 2.0 is
# distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied.
# See the Apache License Version 2.0 for the specific language
# governing permissions and limitations there under.
# Authors:: Martin Katrenik, Alex Dean (mailto:[email protected])
# Copyright:: Copyright (c) 2013 Martin Katrenik, Snowplow Analytics Ltd
# License:: Apache License Version 2.0
# Syncs common referer-parser resources to the
# language-specific sub projects.
#
# Syncs:
# 1. The referers.yml, plus a generated JSON equivalent
# 2. The referer-tests.json
#
# Finishes by committing the synchronized resources.
import os
import shutil
import json
import yaml
import subprocess
root_path = os.path.dirname(__file__)
# Source paths
REFERER_SOURCE = os.path.join(root_path, 'resources', 'referers.yml')
REFERER_JSON_OUT = 'referers.json'
TEST_SOURCE = os.path.join(root_path, 'resources', 'referer-tests.json')
# Target paths
REFERER_TARGETS = [
os.path.join(root_path, "ruby","data"),
os.path.join(root_path, "java-scala","src","main","resources"),
os.path.join(root_path, "python","referer_parser","data"),
os.path.join(root_path, "nodejs","data"),
os.path.join(root_path, "dotnet","RefererParser","Resources"),
os.path.join(root_path, "php","data"),
os.path.join(root_path, "go", "data")
]
TEST_TARGETS = [
os.path.join(root_path, "java-scala","src","test","resources"),
# Add remainder as paths determined etc
]
# JSON builder
JSON = build_json()
# File ops
# Sync process
for dest in REFERER_TARGETS:
sync_referers_to(dest)
for dest in TEST_TARGETS:
sync_tests_to(dest)
# Commit on current branch
commit = "git commit {0}".format(" ".join(REFERER_TARGETS + TEST_TARGETS))
msg = "\"Updated {0}, {1} and {2} in sub-folder following update(s) to master copy\"".format(REFERER_SOURCE, REFERER_JSON_OUT, TEST_SOURCE)
subprocess.call(commit + ' -m' + msg, shell=True)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
15069,
357,
66,
8,
2211,
5780,
8595,
918,
1134,
11,
7967,
489,
322,
30437,
12052,
13,
1439,
2489,
10395,
13,
198,
2,
198,
2,
770,
1430,
318,
11971,
284,
345,
739,
262,
24843,
13789,
10628,
362,
13,
15,
11,
198,
2,
290,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
24843,
198,
2,
13789,
10628,
362,
13,
15,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
24843,
13789,
10628,
362,
13,
15,
379,
198,
2,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
13,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
198,
2,
3788,
9387,
739,
262,
24843,
13789,
10628,
362,
13,
15,
318,
198,
2,
9387,
319,
281,
198,
2,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
198,
2,
4911,
393,
17142,
13,
198,
2,
4091,
262,
24843,
13789,
10628,
362,
13,
15,
329,
262,
2176,
3303,
198,
2,
15030,
21627,
290,
11247,
612,
739,
13,
198,
198,
2,
46665,
3712,
220,
220,
5780,
8595,
918,
1134,
11,
4422,
11325,
357,
4529,
1462,
25,
11284,
31,
82,
2197,
489,
322,
38200,
14094,
13,
785,
8,
198,
2,
15069,
3712,
15069,
357,
66,
8,
2211,
5780,
8595,
918,
1134,
11,
7967,
489,
322,
30437,
12052,
198,
2,
13789,
3712,
220,
220,
24843,
13789,
10628,
362,
13,
15,
198,
198,
2,
16065,
6359,
2219,
6773,
81,
12,
48610,
4133,
284,
262,
198,
2,
3303,
12,
11423,
850,
4493,
13,
198,
2,
198,
2,
16065,
6359,
25,
198,
2,
352,
13,
383,
6773,
3808,
13,
88,
4029,
11,
5556,
257,
7560,
19449,
7548,
198,
2,
362,
13,
383,
6773,
81,
12,
41989,
13,
17752,
198,
2,
198,
2,
4463,
5614,
416,
17222,
262,
47192,
4133,
13,
198,
198,
11748,
28686,
198,
11748,
4423,
346,
198,
11748,
33918,
198,
11748,
331,
43695,
198,
11748,
850,
14681,
628,
198,
15763,
62,
6978,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
8,
198,
198,
2,
8090,
13532,
198,
2200,
24302,
1137,
62,
47690,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
705,
37540,
3256,
705,
5420,
19288,
13,
88,
4029,
11537,
198,
2200,
24302,
1137,
62,
40386,
62,
12425,
796,
705,
5420,
19288,
13,
17752,
6,
198,
51,
6465,
62,
47690,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
705,
37540,
3256,
705,
5420,
11882,
12,
41989,
13,
17752,
11537,
198,
198,
2,
12744,
13532,
198,
2200,
24302,
1137,
62,
51,
46095,
50,
796,
685,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
49137,
2430,
7890,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
12355,
12,
1416,
6081,
2430,
10677,
2430,
12417,
2430,
37540,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
29412,
2430,
5420,
11882,
62,
48610,
2430,
7890,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
17440,
8457,
2430,
7890,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
26518,
3262,
2430,
8134,
11882,
46677,
2430,
33236,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
10121,
2430,
7890,
12340,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
2188,
1600,
366,
7890,
4943,
198,
60,
198,
51,
6465,
62,
51,
46095,
50,
796,
685,
198,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
15763,
62,
6978,
11,
366,
12355,
12,
1416,
6081,
2430,
10677,
2430,
9288,
2430,
37540,
12340,
198,
220,
220,
220,
1303,
3060,
17675,
355,
13532,
5295,
3503,
220,
198,
60,
198,
198,
2,
19449,
27098,
198,
198,
40386,
796,
1382,
62,
17752,
3419,
628,
198,
2,
9220,
39628,
628,
198,
2,
35908,
1429,
198,
198,
1640,
2244,
287,
4526,
24302,
1137,
62,
51,
46095,
50,
25,
198,
220,
220,
220,
17510,
62,
5420,
19288,
62,
1462,
7,
16520,
8,
198,
198,
1640,
2244,
287,
43001,
62,
51,
46095,
50,
25,
198,
220,
220,
220,
17510,
62,
41989,
62,
1462,
7,
16520,
8,
628,
198,
2,
35910,
319,
1459,
8478,
198,
41509,
796,
366,
18300,
4589,
1391,
15,
92,
1911,
18982,
7203,
27071,
22179,
7,
2200,
24302,
1137,
62,
51,
46095,
50,
1343,
43001,
62,
51,
46095,
50,
4008,
198,
19662,
796,
366,
7879,
17354,
1391,
15,
5512,
1391,
16,
92,
290,
1391,
17,
92,
287,
850,
12,
43551,
1708,
4296,
7,
82,
8,
284,
4958,
4866,
7879,
1911,
18982,
7,
2200,
24302,
1137,
62,
47690,
11,
4526,
24302,
1137,
62,
40386,
62,
12425,
11,
43001,
62,
47690,
8,
198,
7266,
14681,
13,
13345,
7,
41509,
1343,
705,
532,
76,
6,
1343,
31456,
11,
7582,
28,
17821,
8,
198
] | 2.990326 | 827 |
import numpy as np
import tensorflow as tf
from scipy.stats import multivariate_normal as normal
class Equation(object):
"""Base class for defining PDE related function."""
def w_tf(self, x, u):
"""Running cost in control problems."""
raise NotImplementedError
def Z_tf(self, x):
"""Terminal cost in control problems."""
raise NotImplementedError
def b_np(self, x): #num_sample * 1
"""a function whose level set is the boundary, in numpy"""
return np.sum(x**2, 1, keepdims=True) - (self.R ** 2)
def b_tf(self, x): #num_sample * 1
"""a function whose level set is the boundary, in tensorflow"""
return tf.reduce_sum(x**2, 1, keepdims=True) - (self.R ** 2)
def V_true(self, x):
"""True value function"""
raise NotImplementedError
def u_true(self, x):
"""Optimal control"""
raise NotImplementedError
def sigma(self, x, u, num_sample): #num_sample x dim x dim_w
"""diffusion coefficient"""
raise NotImplementedError
def drift(self, x, u):
"""drift in the SDE"""
raise NotImplementedError
def diffusion(self, x, u, dw, num_sample):
"""diffusion in the SDE"""
raise NotImplementedError
class LQR(Equation):
"""linear quadratic regulator"""
class VDP(Equation):
"""Van Der Pol oscillator"""
class ekn(Equation):
"""Diffusive Eikonal equation"""
class LQR_var(Equation):
"""linear quadratic regulator"""
| [
11748,
299,
32152,
355,
45941,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
629,
541,
88,
13,
34242,
1330,
1963,
42524,
62,
11265,
355,
3487,
198,
198,
4871,
7889,
341,
7,
15252,
2599,
198,
220,
220,
220,
37227,
14881,
1398,
329,
16215,
350,
7206,
3519,
2163,
526,
15931,
628,
220,
220,
220,
825,
266,
62,
27110,
7,
944,
11,
2124,
11,
334,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28768,
1575,
287,
1630,
2761,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
628,
220,
220,
220,
825,
1168,
62,
27110,
7,
944,
11,
2124,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
44798,
282,
1575,
287,
1630,
2761,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
275,
62,
37659,
7,
944,
11,
2124,
2599,
1303,
22510,
62,
39873,
1635,
352,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
64,
2163,
3025,
1241,
900,
318,
262,
18645,
11,
287,
299,
32152,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
16345,
7,
87,
1174,
17,
11,
352,
11,
1394,
67,
12078,
28,
17821,
8,
532,
357,
944,
13,
49,
12429,
362,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
275,
62,
27110,
7,
944,
11,
2124,
2599,
1303,
22510,
62,
39873,
1635,
352,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
64,
2163,
3025,
1241,
900,
318,
262,
18645,
11,
287,
11192,
273,
11125,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
48700,
13,
445,
7234,
62,
16345,
7,
87,
1174,
17,
11,
352,
11,
1394,
67,
12078,
28,
17821,
8,
532,
357,
944,
13,
49,
12429,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
569,
62,
7942,
7,
944,
11,
2124,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17821,
1988,
2163,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
334,
62,
7942,
7,
944,
11,
2124,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
27871,
4402,
1630,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
264,
13495,
7,
944,
11,
2124,
11,
334,
11,
997,
62,
39873,
2599,
1303,
22510,
62,
39873,
2124,
5391,
2124,
5391,
62,
86,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
26069,
4241,
35381,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
24260,
7,
944,
11,
2124,
11,
334,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7109,
2135,
287,
262,
311,
7206,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
44258,
7,
944,
11,
2124,
11,
334,
11,
43756,
11,
997,
62,
39873,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
26069,
4241,
287,
262,
311,
7206,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
198,
198,
4871,
406,
48,
49,
7,
23588,
341,
2599,
198,
220,
220,
220,
37227,
29127,
15094,
81,
1512,
24161,
37811,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
4871,
569,
6322,
7,
23588,
341,
2599,
198,
220,
220,
220,
37227,
25298,
9626,
2165,
24969,
1352,
37811,
198,
198,
4871,
304,
15418,
7,
23588,
341,
2599,
198,
220,
220,
220,
37227,
28813,
11350,
412,
1134,
20996,
16022,
37811,
198,
198,
4871,
406,
48,
49,
62,
7785,
7,
23588,
341,
2599,
198,
220,
220,
220,
37227,
29127,
15094,
81,
1512,
24161,
37811,
198
] | 2.357466 | 663 |
# -*- coding: utf-8 -*-
'''
File Name: handle_config.py
Author: WillDX
mail: [email protected]
Created Time: 2016年04月19日 星期二 09时36分58秒
'''
import json
from ConfigParser import ConfigParser
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
7061,
6,
198,
8979,
6530,
25,
5412,
62,
11250,
13,
9078,
198,
13838,
25,
2561,
36227,
198,
4529,
25,
2124,
15483,
13,
67,
1872,
31,
1477,
4669,
403,
13,
785,
198,
41972,
3862,
25,
1584,
33176,
112,
3023,
17312,
230,
1129,
33768,
98,
10545,
246,
253,
17312,
253,
12859,
234,
7769,
33768,
114,
2623,
26344,
228,
3365,
163,
100,
240,
198,
7061,
6,
198,
11748,
33918,
198,
6738,
17056,
46677,
1330,
17056,
46677,
628
] | 2.193182 | 88 |
# coding=utf-8
"""
main script for training and testing mask rcnn on MSCOCO/DIVA/MEVA dataset
multi gpu version
"""
import argparse
import cv2
import math
import json
import random
import operator
import time
import os
import pickle
import sys
import threading
# so here won"t have poll allocator info
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
# solve the issue of a bug in while loop, when you import the graph in
# multi-gpu, prefix is not added in while loop op [tf 1.14]
# https://github.com/tensorflow/tensorflow/issues/26526
os.environ["TF_ENABLE_CONTROL_FLOW_V2"] = "1"
# remove all the annoying warnings from tf v1.10 to v1.13
import logging
logging.getLogger("tensorflow").disabled = True
import matplotlib
# avoid the warning "gdk_cursor_new_for_display:
# assertion 'GDK_IS_DISPLAY (display)' failed" with Python 3
matplotlib.use('Agg')
import tensorflow as tf
import numpy as np
import pycocotools.mask as cocomask
from pycocotools.coco import COCO
from tqdm import tqdm
from glob import glob
from models import get_model
from models import pack
from models import initialize
from trainer import Trainer
from tester import Tester
from nn import resizeImage
from nn import fill_full_mask
from utils import evalcoco
from utils import match_detection
from utils import computeAP
from utils import computeAR_2
from utils import grouper
from utils import gather_dt
from utils import gather_gt
from utils import match_dt_gt
from utils import gather_act_singles
from utils import aggregate_eval
from utils import weighted_average
from utils import parse_nvidia_smi
from utils import sec2time
from utils import Dataset
from utils import Summary
from utils import nms_wrapper
from utils import FIFO_ME
# for using a COCO model to finetuning with DIVA data.
from class_ids import targetClass2id
from class_ids import targetAct2id
from class_ids import targetSingleAct2id
from class_ids import targetClass2id_mergeProp
from class_ids import targetClass2id_new
from class_ids import targetClass2id_new_nopo
from class_ids import targetAct2id_bupt
from class_ids import bupt_act_mapping
from class_ids import targetAct2id_meva
from class_ids import meva_act_mapping
from class_ids import coco_obj_class_to_id
from class_ids import coco_obj_id_to_class
from class_ids import coco_obj_to_actev_obj
targetid2class = {targetClass2id[one]:one for one in targetClass2id}
targetactid2class = {targetAct2id[one]:one for one in targetAct2id}
targetsingleactid2class = {
targetSingleAct2id[one]:one for one in targetSingleAct2id}
# coco class to DIVA class
eval_target = {
"Vehicle": ["car", "motorcycle", "bus", "truck", "vehicle"],
"Person": "person",
}
eval_best = "Person" # not used anymore, we use average as the best metric
# load all ground truth into memory
# given the gen_gt_diva
# train on diva dataset
# given a list of images, do the forward, save each image result separately
# for testing, dataset -> {"imgs":[],"ids":[]}, imgs is the image file path,
# test on coco dataset
gpu_util_logs = []
gpu_temp_logs = []
# use nvidia-smi to
if __name__ == "__main__":
config = get_args()
if config.mode == "pack":
config.is_pack_model = True
if config.is_pack_model:
pack(config)
else:
if config.log_time_and_gpu:
gpu_log_interval = 10 # every k seconds
start_time = time.time()
gpu_check_thread = threading.Thread(
target=log_gpu_util,
args=[gpu_log_interval, (config.gpuid_start, config.gpu)])
gpu_check_thread.daemon = True
gpu_check_thread.start()
if config.mode == "train":
train_diva(config)
elif config.mode == "test":
test(config)
elif config.mode == "forward":
forward(config)
else:
raise Exception("mode %s not supported"%(config.mode))
if config.log_time_and_gpu:
end_time = time.time()
print("total run time %s (%s), log gpu utilize every %s seconds and "
"get median %.2f%% and average %.2f%%. GPU temperature median "
"%.2f and average %.2f (C)" % (
sec2time(end_time - start_time),
end_time - start_time,
gpu_log_interval,
np.median(gpu_util_logs)*100,
np.mean(gpu_util_logs)*100,
np.median(gpu_temp_logs),
np.mean(gpu_temp_logs),
))
| [
2,
19617,
28,
40477,
12,
23,
198,
37811,
198,
220,
1388,
4226,
329,
3047,
290,
4856,
9335,
48321,
20471,
319,
337,
6173,
4503,
46,
14,
33569,
32,
14,
11682,
11731,
27039,
198,
220,
5021,
308,
19944,
2196,
198,
37811,
198,
198,
11748,
1822,
29572,
198,
11748,
269,
85,
17,
198,
11748,
10688,
198,
11748,
33918,
198,
11748,
4738,
198,
11748,
10088,
198,
11748,
640,
198,
11748,
28686,
198,
11748,
2298,
293,
198,
11748,
25064,
198,
11748,
4704,
278,
198,
2,
523,
994,
1839,
1,
83,
423,
3278,
36836,
1352,
7508,
198,
418,
13,
268,
2268,
14692,
10234,
62,
8697,
47,
62,
23678,
62,
25294,
62,
2538,
18697,
8973,
796,
366,
18,
1,
198,
2,
8494,
262,
2071,
286,
257,
5434,
287,
981,
9052,
11,
618,
345,
1330,
262,
4823,
287,
198,
2,
5021,
12,
46999,
11,
21231,
318,
407,
2087,
287,
981,
9052,
1034,
685,
27110,
352,
13,
1415,
60,
198,
2,
3740,
1378,
12567,
13,
785,
14,
83,
22854,
11125,
14,
83,
22854,
11125,
14,
37165,
14,
22980,
2075,
198,
418,
13,
268,
2268,
14692,
10234,
62,
1677,
17534,
62,
10943,
5446,
3535,
62,
3697,
3913,
62,
53,
17,
8973,
796,
366,
16,
1,
198,
198,
2,
4781,
477,
262,
15774,
14601,
422,
48700,
410,
16,
13,
940,
284,
410,
16,
13,
1485,
198,
11748,
18931,
198,
6404,
2667,
13,
1136,
11187,
1362,
7203,
83,
22854,
11125,
11074,
47730,
796,
6407,
198,
198,
11748,
2603,
29487,
8019,
198,
2,
3368,
262,
6509,
366,
21287,
74,
62,
66,
21471,
62,
3605,
62,
1640,
62,
13812,
25,
198,
2,
19190,
705,
45113,
42,
62,
1797,
62,
26288,
31519,
357,
13812,
33047,
4054,
1,
351,
11361,
513,
198,
6759,
29487,
8019,
13,
1904,
10786,
46384,
11537,
198,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
12972,
66,
420,
313,
10141,
13,
27932,
355,
8954,
296,
2093,
198,
6738,
12972,
66,
420,
313,
10141,
13,
66,
25634,
1330,
327,
4503,
46,
198,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
6738,
15095,
1330,
15095,
198,
198,
6738,
4981,
1330,
651,
62,
19849,
198,
6738,
4981,
1330,
2353,
198,
6738,
4981,
1330,
220,
41216,
198,
6738,
21997,
1330,
31924,
198,
6738,
256,
7834,
1330,
309,
7834,
198,
6738,
299,
77,
1330,
47558,
5159,
198,
6738,
299,
77,
1330,
6070,
62,
12853,
62,
27932,
198,
6738,
3384,
4487,
1330,
5418,
66,
25634,
198,
6738,
3384,
4487,
1330,
2872,
62,
15255,
3213,
198,
6738,
3384,
4487,
1330,
24061,
2969,
198,
6738,
3384,
4487,
1330,
24061,
1503,
62,
17,
198,
6738,
3384,
4487,
1330,
1132,
525,
198,
6738,
3384,
4487,
1330,
6431,
62,
28664,
198,
6738,
3384,
4487,
1330,
6431,
62,
13655,
198,
6738,
3384,
4487,
1330,
2872,
62,
28664,
62,
13655,
198,
6738,
3384,
4487,
1330,
6431,
62,
529,
62,
12215,
829,
198,
6738,
3384,
4487,
1330,
19406,
62,
18206,
198,
6738,
3384,
4487,
1330,
26356,
62,
23913,
198,
6738,
3384,
4487,
1330,
21136,
62,
77,
21744,
62,
5796,
72,
198,
6738,
3384,
4487,
1330,
792,
17,
2435,
198,
6738,
3384,
4487,
1330,
16092,
292,
316,
198,
6738,
3384,
4487,
1330,
21293,
198,
6738,
3384,
4487,
1330,
299,
907,
62,
48553,
198,
6738,
3384,
4487,
1330,
376,
5064,
46,
62,
11682,
198,
198,
2,
329,
1262,
257,
327,
4503,
46,
2746,
284,
957,
316,
46493,
351,
360,
3824,
32,
1366,
13,
198,
6738,
1398,
62,
2340,
1330,
2496,
9487,
17,
312,
198,
6738,
1398,
62,
2340,
1330,
2496,
6398,
17,
312,
198,
6738,
1398,
62,
2340,
1330,
2496,
28008,
6398,
17,
312,
198,
6738,
1398,
62,
2340,
1330,
2496,
9487,
17,
312,
62,
647,
469,
24331,
198,
6738,
1398,
62,
2340,
1330,
2496,
9487,
17,
312,
62,
3605,
198,
6738,
1398,
62,
2340,
1330,
2496,
9487,
17,
312,
62,
3605,
62,
77,
404,
78,
198,
6738,
1398,
62,
2340,
1330,
2496,
6398,
17,
312,
62,
11110,
457,
198,
6738,
1398,
62,
2340,
1330,
809,
457,
62,
529,
62,
76,
5912,
198,
6738,
1398,
62,
2340,
1330,
2496,
6398,
17,
312,
62,
1326,
6862,
198,
6738,
1398,
62,
2340,
1330,
502,
6862,
62,
529,
62,
76,
5912,
198,
6738,
1398,
62,
2340,
1330,
8954,
78,
62,
26801,
62,
4871,
62,
1462,
62,
312,
198,
6738,
1398,
62,
2340,
1330,
8954,
78,
62,
26801,
62,
312,
62,
1462,
62,
4871,
198,
6738,
1398,
62,
2340,
1330,
8954,
78,
62,
26801,
62,
1462,
62,
529,
1990,
62,
26801,
198,
198,
16793,
312,
17,
4871,
796,
1391,
16793,
9487,
17,
312,
58,
505,
5974,
505,
329,
530,
287,
2496,
9487,
17,
312,
92,
198,
198,
16793,
529,
312,
17,
4871,
796,
1391,
16793,
6398,
17,
312,
58,
505,
5974,
505,
329,
530,
287,
2496,
6398,
17,
312,
92,
198,
198,
83,
853,
1039,
17697,
529,
312,
17,
4871,
796,
1391,
198,
220,
220,
220,
2496,
28008,
6398,
17,
312,
58,
505,
5974,
505,
329,
530,
287,
2496,
28008,
6398,
17,
312,
92,
198,
198,
2,
8954,
78,
1398,
284,
360,
3824,
32,
1398,
198,
18206,
62,
16793,
796,
1391,
198,
220,
220,
220,
366,
37870,
1548,
1298,
14631,
7718,
1600,
366,
76,
20965,
13696,
1600,
366,
10885,
1600,
366,
83,
30915,
1600,
366,
33892,
1548,
33116,
198,
220,
220,
220,
366,
15439,
1298,
366,
6259,
1600,
198,
92,
198,
198,
18206,
62,
13466,
796,
366,
15439,
1,
1303,
407,
973,
7471,
11,
356,
779,
2811,
355,
262,
1266,
18663,
628,
628,
628,
198,
2,
3440,
477,
2323,
3872,
656,
4088,
628,
198,
2,
1813,
262,
2429,
62,
13655,
62,
7146,
64,
198,
2,
4512,
319,
2659,
64,
27039,
628,
198,
2,
1813,
257,
1351,
286,
4263,
11,
466,
262,
2651,
11,
3613,
1123,
2939,
1255,
13869,
628,
198,
198,
2,
329,
4856,
11,
27039,
4613,
19779,
9600,
82,
20598,
17241,
2340,
20598,
60,
5512,
545,
14542,
318,
262,
2939,
2393,
3108,
11,
628,
198,
2,
1332,
319,
8954,
78,
27039,
628,
628,
198,
46999,
62,
22602,
62,
6404,
82,
796,
17635,
198,
46999,
62,
29510,
62,
6404,
82,
796,
17635,
198,
198,
2,
779,
299,
21744,
12,
5796,
72,
284,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
4566,
796,
651,
62,
22046,
3419,
628,
220,
611,
4566,
13,
14171,
6624,
366,
8002,
1298,
198,
220,
220,
220,
4566,
13,
271,
62,
8002,
62,
19849,
796,
6407,
198,
220,
611,
4566,
13,
271,
62,
8002,
62,
19849,
25,
198,
220,
220,
220,
2353,
7,
11250,
8,
198,
220,
2073,
25,
198,
220,
220,
220,
611,
4566,
13,
6404,
62,
2435,
62,
392,
62,
46999,
25,
198,
220,
220,
220,
220,
220,
308,
19944,
62,
6404,
62,
3849,
2100,
796,
838,
1303,
790,
479,
4201,
198,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
308,
19944,
62,
9122,
62,
16663,
796,
4704,
278,
13,
16818,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
28,
6404,
62,
46999,
62,
22602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
41888,
46999,
62,
6404,
62,
3849,
2100,
11,
357,
11250,
13,
46999,
312,
62,
9688,
11,
4566,
13,
46999,
8,
12962,
198,
220,
220,
220,
220,
220,
308,
19944,
62,
9122,
62,
16663,
13,
6814,
7966,
796,
6407,
198,
220,
220,
220,
220,
220,
308,
19944,
62,
9122,
62,
16663,
13,
9688,
3419,
628,
220,
220,
220,
611,
4566,
13,
14171,
6624,
366,
27432,
1298,
198,
220,
220,
220,
220,
220,
4512,
62,
7146,
64,
7,
11250,
8,
198,
220,
220,
220,
1288,
361,
4566,
13,
14171,
6624,
366,
9288,
1298,
198,
220,
220,
220,
220,
220,
1332,
7,
11250,
8,
198,
220,
220,
220,
1288,
361,
4566,
13,
14171,
6624,
366,
11813,
1298,
198,
220,
220,
220,
220,
220,
2651,
7,
11250,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
5298,
35528,
7203,
14171,
4064,
82,
407,
4855,
1,
4,
7,
11250,
13,
14171,
4008,
628,
220,
220,
220,
611,
4566,
13,
6404,
62,
2435,
62,
392,
62,
46999,
25,
198,
220,
220,
220,
220,
220,
886,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
3601,
7203,
23350,
1057,
640,
4064,
82,
37633,
82,
828,
2604,
308,
19944,
17624,
790,
4064,
82,
4201,
290,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1136,
14288,
4064,
13,
17,
69,
16626,
290,
2811,
4064,
13,
17,
69,
4,
7225,
11362,
5951,
14288,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7225,
17,
69,
290,
2811,
4064,
13,
17,
69,
357,
34,
16725,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
792,
17,
2435,
7,
437,
62,
2435,
532,
923,
62,
2435,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
2435,
532,
923,
62,
2435,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
19944,
62,
6404,
62,
3849,
2100,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
1150,
666,
7,
46999,
62,
22602,
62,
6404,
82,
27493,
3064,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
32604,
7,
46999,
62,
22602,
62,
6404,
82,
27493,
3064,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
1150,
666,
7,
46999,
62,
29510,
62,
6404,
82,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
32604,
7,
46999,
62,
29510,
62,
6404,
82,
828,
198,
220,
220,
220,
220,
220,
15306,
198
] | 2.73561 | 1,581 |
import os
import pandas as pd
from app import app, db
from models.price import Currency
@app.cli.command("import_currency")
def import_currency():
"""
Loads up a provided CSV file of world currencies and extracts the unicode symbol
and text label associated with each currency. Loads these into the Currency table
in the price model.
CSV to use: https://gist.github.com/Chintan7027/fc4708d8b5c8d1639a7c#file-currency-symbols-csv
The Serbia Dinar has a '.' at the end which is removed by this script.
INR value should be updated manually with the _unicode-decimal value 8377
Run with 'flask import_currency'
"""
csv_file = os.path.join(app.root_path, "ingest/currency/currency.csv")
df = pd.read_csv(csv_file)
df = df.dropna()
MAX_SYMBOL_LENGTH = 3
for index, row in df.iterrows():
unicode_decimal = str(row["_unicode-decimal"])
unicode_as_array = unicode_decimal.split(", ")[:MAX_SYMBOL_LENGTH]
symbol = "".join([chr(int(u)) for u in unicode_as_array])
acronym = str(row["_code"])
text = row["__text"]
currency = db.session.query(Currency).filter_by(acronym=acronym).one_or_none()
if not currency:
print("adding currency: ", acronym + " " + text + " " + symbol)
currency = Currency(symbol=symbol, acronym=acronym, text=text)
db.session.add(currency)
else:
currency.symbol = symbol
currency.acronym = acronym
currency.text = text
db.session.commit()
@app.cli.command("delete_currency_table_values")
def delete_currency():
"""
Deletes all Currency entries from the database.
Run with 'flask delete_currency_table_values'
"""
currencies = db.session.query(Currency).all()
for currency in currencies:
db.session.delete(currency)
db.session.commit()
| [
11748,
28686,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
6738,
598,
1330,
598,
11,
20613,
198,
6738,
4981,
13,
20888,
1330,
20113,
628,
198,
31,
1324,
13,
44506,
13,
21812,
7203,
11748,
62,
34415,
4943,
198,
4299,
1330,
62,
34415,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8778,
82,
510,
257,
2810,
44189,
2393,
286,
995,
19247,
290,
32139,
262,
28000,
1098,
6194,
198,
220,
220,
220,
290,
2420,
6167,
3917,
351,
1123,
7395,
13,
8778,
82,
777,
656,
262,
20113,
3084,
198,
220,
220,
220,
287,
262,
2756,
2746,
13,
628,
220,
220,
220,
44189,
284,
779,
25,
3740,
1378,
70,
396,
13,
12567,
13,
785,
14,
1925,
600,
272,
2154,
1983,
14,
16072,
27790,
23,
67,
23,
65,
20,
66,
23,
67,
1433,
2670,
64,
22,
66,
2,
7753,
12,
34415,
12,
1837,
2022,
10220,
12,
40664,
628,
220,
220,
220,
383,
27229,
360,
22050,
468,
257,
705,
2637,
379,
262,
886,
543,
318,
4615,
416,
428,
4226,
13,
198,
220,
220,
220,
3268,
49,
1988,
815,
307,
6153,
14500,
351,
262,
4808,
46903,
1098,
12,
12501,
4402,
1988,
807,
26514,
628,
220,
220,
220,
5660,
351,
705,
2704,
2093,
1330,
62,
34415,
6,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
269,
21370,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
1324,
13,
15763,
62,
6978,
11,
366,
278,
395,
14,
34415,
14,
34415,
13,
40664,
4943,
198,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
40664,
62,
7753,
8,
198,
220,
220,
220,
47764,
796,
47764,
13,
14781,
2616,
3419,
628,
220,
220,
220,
25882,
62,
23060,
10744,
3535,
62,
43,
49494,
796,
513,
628,
220,
220,
220,
329,
6376,
11,
5752,
287,
47764,
13,
2676,
8516,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
12501,
4402,
796,
965,
7,
808,
14692,
62,
46903,
1098,
12,
12501,
4402,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
292,
62,
18747,
796,
28000,
1098,
62,
12501,
4402,
13,
35312,
7,
1600,
366,
38381,
25,
22921,
62,
23060,
10744,
3535,
62,
43,
49494,
60,
198,
220,
220,
220,
220,
220,
220,
220,
6194,
796,
366,
1911,
22179,
26933,
354,
81,
7,
600,
7,
84,
4008,
329,
334,
287,
28000,
1098,
62,
292,
62,
18747,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
38787,
796,
965,
7,
808,
14692,
62,
8189,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
5752,
14692,
834,
5239,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
7395,
796,
20613,
13,
29891,
13,
22766,
7,
34,
13382,
737,
24455,
62,
1525,
7,
330,
1313,
4948,
28,
330,
1313,
4948,
737,
505,
62,
273,
62,
23108,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
7395,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
26872,
7395,
25,
33172,
38787,
1343,
366,
366,
1343,
2420,
1343,
366,
366,
1343,
6194,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7395,
796,
20113,
7,
1837,
23650,
28,
1837,
23650,
11,
38787,
28,
330,
1313,
4948,
11,
2420,
28,
5239,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
13,
29891,
13,
2860,
7,
34415,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7395,
13,
1837,
23650,
796,
6194,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7395,
13,
330,
1313,
4948,
796,
38787,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7395,
13,
5239,
796,
2420,
198,
220,
220,
220,
20613,
13,
29891,
13,
41509,
3419,
628,
198,
31,
1324,
13,
44506,
13,
21812,
7203,
33678,
62,
34415,
62,
11487,
62,
27160,
4943,
198,
4299,
12233,
62,
34415,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1024,
40676,
477,
20113,
12784,
422,
262,
6831,
13,
628,
220,
220,
220,
5660,
351,
705,
2704,
2093,
12233,
62,
34415,
62,
11487,
62,
27160,
6,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
19247,
796,
20613,
13,
29891,
13,
22766,
7,
34,
13382,
737,
439,
3419,
198,
220,
220,
220,
329,
7395,
287,
19247,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
13,
29891,
13,
33678,
7,
34415,
8,
198,
220,
220,
220,
20613,
13,
29891,
13,
41509,
3419,
198
] | 2.552703 | 740 |
# License: BSD 3 clause
import numpy as np
| [
2,
13789,
25,
347,
10305,
513,
13444,
201,
198,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
201,
198
] | 2.45 | 20 |
from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User
from match.models import Ranking, Match, Game, ParticipantRole, t
| [
6738,
42625,
14208,
13,
7295,
13,
27604,
13,
8692,
1330,
7308,
21575,
11,
9455,
12331,
198,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
2872,
13,
27530,
1330,
45407,
11,
13225,
11,
3776,
11,
29880,
47445,
11,
256,
198
] | 3.847826 | 46 |
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2017 Andrey Antukh <[email protected]>
# Copyright (C) 2014-2017 Jesús Espino <[email protected]>
# Copyright (C) 2014-2017 David Barragán <[email protected]>
# Copyright (C) 2014-2017 Alejandro Alonso <[email protected]>
# Copyright (C) 2014-2017 Anler Hernández <[email protected]>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import uuid
from django.core.urlresolvers import reverse
from taiga.permissions.choices import MEMBERS_PERMISSIONS, ANON_PERMISSIONS
from taiga.base.utils import json
from tests import factories as f
from tests.utils import helper_test_http_method, disconnect_signals, reconnect_signals
from taiga.projects import choices as project_choices
from taiga.projects.votes.services import add_vote
from taiga.projects.notifications.services import add_watcher
from taiga.projects.occ import OCCResourceMixin
from unittest import mock
import pytest
pytestmark = pytest.mark.django_db
@pytest.fixture
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
15069,
357,
34,
8,
1946,
12,
5539,
843,
4364,
3738,
2724,
71,
1279,
8461,
37686,
31,
8461,
37686,
13,
27305,
29,
198,
2,
15069,
357,
34,
8,
1946,
12,
5539,
4804,
21356,
82,
20386,
2879,
1279,
73,
9774,
259,
519,
31,
14816,
13,
785,
29,
198,
2,
15069,
357,
34,
8,
1946,
12,
5539,
3271,
2409,
22562,
21162,
1279,
65,
49637,
31,
9945,
3258,
7329,
13,
785,
29,
198,
2,
15069,
357,
34,
8,
1946,
12,
5539,
9300,
47983,
36345,
1279,
1000,
47983,
13,
282,
26666,
31,
74,
1000,
312,
418,
13,
3262,
29,
198,
2,
15069,
357,
34,
8,
1946,
12,
5539,
1052,
1754,
367,
1142,
6557,
358,
8471,
1279,
31373,
31,
272,
1754,
13,
1326,
29,
198,
2,
770,
1430,
318,
1479,
3788,
25,
345,
460,
17678,
4163,
340,
290,
14,
273,
13096,
198,
2,
340,
739,
262,
2846,
286,
262,
22961,
6708,
3529,
3611,
5094,
13789,
355,
198,
2,
3199,
416,
262,
3232,
10442,
5693,
11,
2035,
2196,
513,
286,
262,
198,
2,
13789,
11,
393,
357,
265,
534,
3038,
8,
597,
1568,
2196,
13,
198,
2,
198,
2,
770,
1430,
318,
9387,
287,
262,
2911,
326,
340,
481,
307,
4465,
11,
198,
2,
475,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
198,
2,
34482,
3398,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
220,
4091,
262,
198,
2,
22961,
6708,
3529,
3611,
5094,
13789,
329,
517,
3307,
13,
198,
2,
198,
2,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
6708,
3529,
3611,
5094,
13789,
198,
2,
1863,
351,
428,
1430,
13,
220,
1002,
407,
11,
766,
1279,
4023,
1378,
2503,
13,
41791,
13,
2398,
14,
677,
4541,
15913,
13,
198,
198,
11748,
334,
27112,
198,
198,
6738,
42625,
14208,
13,
7295,
13,
6371,
411,
349,
690,
1330,
9575,
198,
198,
6738,
20486,
13827,
13,
525,
8481,
13,
6679,
1063,
1330,
35153,
33,
4877,
62,
18973,
44,
16744,
11053,
11,
3537,
1340,
62,
18973,
44,
16744,
11053,
198,
6738,
20486,
13827,
13,
8692,
13,
26791,
1330,
33918,
198,
198,
6738,
5254,
1330,
17590,
355,
277,
198,
6738,
5254,
13,
26791,
1330,
31904,
62,
9288,
62,
4023,
62,
24396,
11,
22837,
62,
12683,
874,
11,
37671,
62,
12683,
874,
198,
6738,
20486,
13827,
13,
42068,
1330,
7747,
355,
1628,
62,
6679,
1063,
198,
6738,
20486,
13827,
13,
42068,
13,
29307,
13,
30416,
1330,
751,
62,
27257,
198,
6738,
20486,
13827,
13,
42068,
13,
1662,
6637,
13,
30416,
1330,
751,
62,
86,
34734,
198,
6738,
20486,
13827,
13,
42068,
13,
13966,
1330,
440,
4093,
26198,
35608,
259,
198,
198,
6738,
555,
715,
395,
1330,
15290,
198,
198,
11748,
12972,
9288,
198,
9078,
9288,
4102,
796,
12972,
9288,
13,
4102,
13,
28241,
14208,
62,
9945,
628,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
628,
198
] | 3.303719 | 484 |
import logging
from rssdldmng.utils.restserver import RESTHttpServer
_LOGGER = logging.getLogger(__name__)
| [
11748,
18931,
201,
198,
201,
198,
6738,
374,
824,
67,
335,
76,
782,
13,
26791,
13,
2118,
15388,
1330,
15731,
4221,
29281,
10697,
201,
198,
201,
198,
62,
25294,
30373,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
201,
198,
201,
198
] | 2.577778 | 45 |
"""
Django settings for vimeoct project.
Generated by 'django-admin startproject' using Django 3.2.8.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
from dotenv import load_dotenv, find_dotenv
import os
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-6jcn$qgw^3cv7zp81m04%eni^mv@ter=u54uwppqg34czm45u#'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
#DEBUG = False
ALLOWED_HOSTS = ["online.tmi.mirai.nagoya-u.ac.jp"]
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'social_django',
'auth0login'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'vimeoct.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'vimeoct.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/
LANGUAGE_CODE = 'ja-jp'
TIME_ZONE = 'Asia/Tokyo'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL = '/static/'
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
ENV_FILE = find_dotenv()
if ENV_FILE:
load_dotenv(ENV_FILE)
# SOCIAL AUTH AUTH0 BACKEND CONFIG
SOCIAL_AUTH_TRAILING_SLASH = False
SOCIAL_AUTH_AUTH0_KEY = os.environ.get('AUTH0_CLIENT_ID')
SOCIAL_AUTH_AUTH0_SECRET = os.environ.get('AUTH0_CLIENT_SECRET')
SOCIAL_AUTH_AUTH0_SCOPE = [
'openid',
'profile',
'email'
]
SOCIAL_AUTH_AUTH0_DOMAIN = os.environ.get('AUTH0_DOMAIN')
AUDIENCE = None
if os.environ.get('AUTH0_AUDIENCE'):
AUDIENCE = os.environ.get('AUTH0_AUDIENCE')
else:
if SOCIAL_AUTH_AUTH0_DOMAIN:
AUDIENCE = 'https://' + SOCIAL_AUTH_AUTH0_DOMAIN + '/userinfo'
if AUDIENCE:
SOCIAL_AUTH_AUTH0_AUTH_EXTRA_ARGUMENTS = {'audience': AUDIENCE}
AUTHENTICATION_BACKENDS = {
'auth0login.auth0backend.Auth0',
'django.contrib.auth.backends.ModelBackend'
}
LOGIN_URL = '/login/auth0'
LOGIN_REDIRECT_URL = '/dashboard'
# This is for staticfile serving
# You have to set STATIC_ROOT in .env
# If you change static file, please do "python3 manage.py collectstatic"
if os.environ.get('STATIC_ROOT'):
STATIC_ROOT = os.environ.get('STATIC_ROOT')
| [
37811,
198,
35,
73,
14208,
6460,
329,
410,
524,
38441,
1628,
13,
198,
198,
8645,
515,
416,
705,
28241,
14208,
12,
28482,
923,
16302,
6,
1262,
37770,
513,
13,
17,
13,
23,
13,
198,
198,
1890,
517,
1321,
319,
428,
2393,
11,
766,
198,
5450,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
4852,
873,
14,
33692,
14,
198,
198,
1890,
262,
1336,
1351,
286,
6460,
290,
511,
3815,
11,
766,
198,
5450,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
5420,
14,
33692,
14,
198,
37811,
198,
198,
6738,
16605,
24330,
1330,
3440,
62,
26518,
24330,
11,
1064,
62,
26518,
24330,
198,
11748,
28686,
198,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
2,
10934,
13532,
2641,
262,
1628,
588,
428,
25,
49688,
62,
34720,
1220,
705,
7266,
15908,
4458,
198,
33,
11159,
62,
34720,
796,
10644,
7,
834,
7753,
834,
737,
411,
6442,
22446,
8000,
13,
8000,
628,
198,
2,
12029,
12,
9688,
2478,
6460,
532,
48092,
4674,
329,
3227,
198,
2,
4091,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
4919,
1462,
14,
2934,
1420,
434,
14,
9122,
4868,
14,
198,
198,
2,
10729,
4261,
9050,
39410,
25,
1394,
262,
3200,
1994,
973,
287,
3227,
3200,
0,
198,
23683,
26087,
62,
20373,
796,
705,
28241,
14208,
12,
259,
22390,
12,
21,
73,
31522,
3,
80,
70,
86,
61,
18,
33967,
22,
89,
79,
6659,
76,
3023,
4,
43850,
61,
76,
85,
31,
353,
28,
84,
4051,
84,
86,
381,
80,
70,
2682,
26691,
76,
2231,
84,
2,
6,
198,
198,
2,
10729,
4261,
9050,
39410,
25,
836,
470,
1057,
351,
14257,
2900,
319,
287,
3227,
0,
198,
30531,
796,
6407,
198,
2,
30531,
796,
10352,
198,
198,
7036,
3913,
1961,
62,
39,
10892,
50,
796,
14631,
25119,
13,
83,
11632,
13,
10793,
1872,
13,
77,
363,
23790,
12,
84,
13,
330,
13,
34523,
8973,
628,
198,
2,
15678,
6770,
198,
198,
38604,
7036,
1961,
62,
2969,
3705,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
28482,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
11299,
19199,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
3256,
198,
220,
220,
220,
705,
14557,
62,
28241,
14208,
3256,
198,
220,
220,
220,
705,
18439,
15,
38235,
6,
198,
60,
198,
198,
44,
2389,
35,
2538,
33746,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12961,
13,
24074,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
13,
27171,
1574,
13,
36044,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
11321,
13,
17227,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
6359,
41871,
13,
34,
27891,
69,
7680,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
27171,
1574,
13,
47649,
3299,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
27171,
1574,
13,
12837,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12976,
73,
5430,
13,
55,
19778,
29046,
34621,
1574,
3256,
198,
60,
198,
198,
13252,
2394,
62,
4261,
5639,
1340,
37,
796,
705,
85,
524,
38441,
13,
6371,
82,
6,
198,
198,
51,
3620,
6489,
29462,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31098,
10619,
10354,
705,
28241,
14208,
13,
28243,
13,
1891,
2412,
13,
28241,
14208,
13,
35,
73,
14208,
12966,
17041,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34720,
50,
10354,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24805,
62,
34720,
50,
10354,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3185,
51,
11053,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
62,
14681,
669,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
24442,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
25927,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
22866,
62,
14681,
669,
13,
18439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
22866,
62,
14681,
669,
13,
37348,
1095,
3256,
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,
8964,
198,
60,
198,
198,
19416,
18878,
62,
2969,
31484,
6234,
796,
705,
85,
524,
38441,
13,
18504,
12397,
13,
31438,
6,
628,
198,
2,
24047,
198,
2,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
5420,
14,
33692,
31113,
19608,
18826,
198,
198,
35,
1404,
6242,
1921,
1546,
796,
1391,
198,
220,
220,
220,
705,
12286,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
26808,
8881,
10354,
705,
28241,
14208,
13,
9945,
13,
1891,
2412,
13,
25410,
578,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
49688,
62,
34720,
1220,
705,
9945,
13,
25410,
578,
18,
3256,
198,
220,
220,
220,
1782,
198,
92,
628,
198,
2,
30275,
21201,
198,
2,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
5420,
14,
33692,
31113,
18439,
12,
28712,
12,
12102,
2024,
198,
198,
32,
24318,
62,
47924,
54,
12532,
62,
23428,
2389,
1404,
20673,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
12982,
33682,
18925,
414,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
44046,
24539,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
17227,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
45,
39223,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
60,
628,
198,
2,
4037,
1634,
198,
2,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
4852,
873,
14,
72,
1507,
77,
14,
198,
198,
43,
15567,
52,
11879,
62,
34,
16820,
796,
705,
6592,
12,
34523,
6,
198,
198,
34694,
62,
57,
11651,
796,
705,
38555,
14,
19042,
8226,
6,
198,
198,
19108,
62,
40,
1507,
45,
796,
6407,
198,
198,
19108,
62,
43,
940,
45,
796,
6407,
198,
198,
19108,
62,
51,
57,
796,
6407,
628,
198,
2,
36125,
3696,
357,
49155,
11,
11933,
11,
5382,
8,
198,
2,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
4919,
1462,
14,
12708,
12,
16624,
14,
198,
198,
35744,
2149,
62,
21886,
796,
31051,
12708,
14,
6,
198,
198,
2,
15161,
4165,
1994,
2214,
2099,
198,
2,
3740,
1378,
31628,
13,
28241,
648,
404,
305,
752,
13,
785,
14,
268,
14,
18,
13,
17,
14,
5420,
14,
33692,
31113,
12286,
12,
23736,
12,
3245,
198,
198,
7206,
38865,
62,
39371,
46,
62,
44603,
796,
705,
28241,
14208,
13,
9945,
13,
27530,
13,
12804,
27722,
15878,
6,
628,
198,
1677,
53,
62,
25664,
796,
1064,
62,
26518,
24330,
3419,
198,
361,
12964,
53,
62,
25664,
25,
198,
220,
220,
220,
3440,
62,
26518,
24330,
7,
1677,
53,
62,
25664,
8,
628,
198,
2,
31430,
12576,
37195,
37195,
15,
28767,
10619,
25626,
198,
50,
4503,
12576,
62,
32,
24318,
62,
51,
3861,
4146,
2751,
62,
8634,
11211,
796,
10352,
198,
50,
4503,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
20373,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
32,
24318,
15,
62,
5097,
28495,
62,
2389,
11537,
198,
50,
4503,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
23683,
26087,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
32,
24318,
15,
62,
5097,
28495,
62,
23683,
26087,
11537,
198,
50,
4503,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
6173,
32135,
796,
685,
198,
220,
220,
220,
705,
9654,
312,
3256,
198,
220,
220,
220,
705,
13317,
3256,
198,
220,
220,
220,
705,
12888,
6,
198,
60,
198,
50,
4503,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
39170,
29833,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
32,
24318,
15,
62,
39170,
29833,
11537,
198,
48877,
42589,
796,
6045,
198,
361,
28686,
13,
268,
2268,
13,
1136,
10786,
32,
24318,
15,
62,
48877,
42589,
6,
2599,
198,
220,
220,
220,
41260,
42589,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
32,
24318,
15,
62,
48877,
42589,
11537,
198,
17772,
25,
198,
220,
220,
220,
611,
31430,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
39170,
29833,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41260,
42589,
796,
705,
5450,
1378,
6,
1343,
31430,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
39170,
29833,
1343,
31051,
7220,
10951,
6,
198,
361,
41260,
42589,
25,
198,
220,
220,
220,
31430,
12576,
62,
32,
24318,
62,
32,
24318,
15,
62,
32,
24318,
62,
13918,
3861,
62,
1503,
38,
5883,
15365,
796,
1391,
6,
3885,
1240,
10354,
41260,
42589,
92,
198,
32,
24318,
3525,
2149,
6234,
62,
31098,
1677,
5258,
796,
1391,
198,
220,
220,
220,
705,
18439,
15,
38235,
13,
18439,
15,
1891,
437,
13,
30515,
15,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
1891,
2412,
13,
17633,
7282,
437,
6,
198,
92,
198,
198,
25294,
1268,
62,
21886,
796,
31051,
38235,
14,
18439,
15,
6,
198,
25294,
1268,
62,
22083,
40,
23988,
62,
21886,
796,
31051,
42460,
3526,
6,
198,
198,
2,
770,
318,
329,
9037,
7753,
7351,
198,
2,
921,
423,
284,
900,
15486,
2149,
62,
13252,
2394,
287,
764,
24330,
198,
2,
1002,
345,
1487,
9037,
2393,
11,
3387,
466,
366,
29412,
18,
6687,
13,
9078,
2824,
12708,
1,
198,
361,
28686,
13,
268,
2268,
13,
1136,
10786,
35744,
2149,
62,
13252,
2394,
6,
2599,
198,
220,
220,
220,
15486,
2149,
62,
13252,
2394,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
35744,
2149,
62,
13252,
2394,
11537,
628
] | 2.360042 | 1,897 |
from collections import namedtuple
_VersionInfo = namedtuple("_VersionInfo", "major minor patch")
version_info = _VersionInfo(0, 3, 0)
__version__ = ".".join(str(v) for v in version_info)
__license__ = "MIT"
__author__ = "FalseDev"
__title__ = "discord-ext-wizard"
__copyright__ = "Copyright 2021 {}".format(__author__)
__uri__ = "https://github.com/{}/{}".format(__author__, __title__)
from .checks import *
from .mixins import *
from .prompt import *
from .wizard import *
| [
6738,
17268,
1330,
3706,
83,
29291,
198,
198,
62,
14815,
12360,
796,
3706,
83,
29291,
7203,
62,
14815,
12360,
1600,
366,
22478,
4159,
8529,
4943,
198,
9641,
62,
10951,
796,
4808,
14815,
12360,
7,
15,
11,
513,
11,
657,
8,
198,
198,
834,
9641,
834,
796,
366,
526,
13,
22179,
7,
2536,
7,
85,
8,
329,
410,
287,
2196,
62,
10951,
8,
198,
834,
43085,
834,
796,
366,
36393,
1,
198,
834,
9800,
834,
796,
366,
25101,
13603,
1,
198,
834,
7839,
834,
796,
366,
15410,
585,
12,
2302,
12,
86,
8669,
1,
198,
834,
22163,
4766,
834,
796,
366,
15269,
33448,
23884,
1911,
18982,
7,
834,
9800,
834,
8,
198,
834,
9900,
834,
796,
366,
5450,
1378,
12567,
13,
785,
14,
90,
92,
14,
90,
92,
1911,
18982,
7,
834,
9800,
834,
11,
11593,
7839,
834,
8,
198,
198,
6738,
764,
42116,
1330,
1635,
198,
6738,
764,
19816,
1040,
1330,
1635,
198,
6738,
764,
16963,
457,
1330,
1635,
198,
6738,
764,
86,
8669,
1330,
1635,
198
] | 2.862275 | 167 |
# Copyright (c) 2021, Aakvatech Limited and contributors
# For license information, please see license.txt
# import frappe
from __future__ import unicode_literals
import frappe
import time
import datetime
from frappe.model.document import Document
from frappe import _
import json
from frappe.utils import nowdate
from trans_ms.utlis.dimension import set_dimension
class TransportationOrder(Document):
'''def set_parent_in_children(self):
"""Updates `parent` and `parenttype` property in all children."""
#If reference doctype is set
if self.get('reference_docname'):
for d in self.get_all_children():
d.parent = self.get('reference_docname')
d.parenttype = self.get('reference_doctype')
if self.get('reference_doctype') == "Import":
d.parentfield = "assign_transport"
else:
for d in self.get_all_children():
d.parent = self.name
d.parenttype = self.doctype'''
# Custom load method for loading child tables data from imports and exports request
def load_from_db(self):
"""Load document and children from database and create properties
from fields"""
if not getattr(self, "_metaclass", False) and self.meta.issingle:
single_doc = frappe.db.get_singles_dict(self.doctype)
if not single_doc:
single_doc = frappe.new_doc(self.doctype).as_dict()
single_doc["name"] = self.doctype
del single_doc["__islocal"]
super(Document, self).__init__(single_doc)
self.init_valid_columns()
self._fix_numeric_types()
else:
d = frappe.db.get_value(self.doctype, self.name, "*", as_dict=1)
if not d:
frappe.throw(
_("{0} {1} not found").format(_(self.doctype), self.name),
frappe.DoesNotExistError,
)
super(Document, self).__init__(d)
if self.name == "DocType" and self.doctype == "DocType":
from frappe.model.meta import doctype_table_fields
table_fields = doctype_table_fields
else:
table_fields = self.meta.get_table_fields()
#
# For table fields load from request origin(if there is) else load normal
# Also add back compatibiilty for when transport assignements were being loaded from import
#
for df in table_fields:
if d.reference_doctype and d.reference_docname:
# Fieldname depending on if it's Export or Import
if d.reference_doctype == "Import" and df.fieldname == "cargo":
fieldname = "cargo_information"
elif (
d.reference_doctype == "Import"
and df.fieldname == "assign_transport"
):
fieldname = "assign_transport"
if df.fieldname == "assign_transport" and self.get("version") == 2:
children = frappe.db.get_values(
df.options,
{
"parent": self.name,
"parenttype": self.doctype,
"parentfield": "assign_transport",
},
"*",
as_dict=True,
order_by="idx asc",
)
else:
children = frappe.db.get_values(
df.options,
{
"parent": d.reference_docname,
"parenttype": d.reference_doctype,
"parentfield": fieldname,
},
"*",
as_dict=True,
order_by="idx asc",
)
if children:
self.set(df.fieldname, children)
else:
self.set(df.fieldname, [])
else:
children = frappe.db.get_values(
df.options,
{
"parent": self.name,
"parenttype": self.doctype,
"parentfield": df.fieldname,
},
"*",
as_dict=True,
order_by="idx asc",
)
if children:
self.set(df.fieldname, children)
else:
self.set(df.fieldname, [])
# sometimes __setup__ can depend on child values, hence calling again at the end
if hasattr(self, "__setup__"):
self.__setup__()
@frappe.whitelist(allow_guest=True)
@frappe.whitelist(allow_guest=True)
@frappe.whitelist(allow_guest=True)
@frappe.whitelist()
| [
2,
15069,
357,
66,
8,
33448,
11,
317,
461,
85,
40340,
15302,
290,
20420,
198,
2,
1114,
5964,
1321,
11,
3387,
766,
5964,
13,
14116,
198,
198,
2,
1330,
5306,
27768,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
11748,
5306,
27768,
198,
11748,
640,
198,
11748,
4818,
8079,
198,
6738,
5306,
27768,
13,
19849,
13,
22897,
1330,
16854,
198,
6738,
5306,
27768,
1330,
4808,
198,
11748,
33918,
198,
6738,
5306,
27768,
13,
26791,
1330,
783,
4475,
198,
6738,
1007,
62,
907,
13,
315,
27999,
13,
46156,
1330,
900,
62,
46156,
628,
198,
4871,
15198,
18743,
7,
24941,
2599,
628,
220,
220,
220,
705,
7061,
4299,
900,
62,
8000,
62,
259,
62,
17197,
7,
944,
2599,
198,
197,
197,
37811,
4933,
19581,
4600,
8000,
63,
290,
4600,
8000,
4906,
63,
3119,
287,
477,
1751,
526,
15931,
198,
197,
197,
2,
1532,
4941,
10412,
2981,
318,
900,
198,
197,
197,
361,
2116,
13,
1136,
10786,
35790,
62,
15390,
3672,
6,
2599,
198,
197,
197,
197,
1640,
288,
287,
2116,
13,
1136,
62,
439,
62,
17197,
33529,
198,
197,
197,
197,
197,
67,
13,
8000,
796,
2116,
13,
1136,
10786,
35790,
62,
15390,
3672,
11537,
198,
197,
197,
197,
197,
67,
13,
8000,
4906,
796,
2116,
13,
1136,
10786,
35790,
62,
4598,
310,
2981,
11537,
198,
197,
197,
197,
197,
361,
2116,
13,
1136,
10786,
35790,
62,
4598,
310,
2981,
11537,
6624,
366,
20939,
1298,
198,
197,
197,
197,
197,
197,
67,
13,
8000,
3245,
796,
366,
562,
570,
62,
7645,
634,
1,
198,
197,
197,
17772,
25,
198,
197,
197,
197,
1640,
288,
287,
2116,
13,
1136,
62,
439,
62,
17197,
33529,
198,
197,
197,
197,
197,
67,
13,
8000,
796,
2116,
13,
3672,
198,
197,
197,
197,
197,
67,
13,
8000,
4906,
796,
2116,
13,
4598,
310,
2981,
7061,
6,
628,
220,
220,
220,
1303,
8562,
3440,
2446,
329,
11046,
1200,
8893,
1366,
422,
17944,
290,
15319,
2581,
198,
220,
220,
220,
825,
3440,
62,
6738,
62,
9945,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8912,
3188,
290,
1751,
422,
6831,
290,
2251,
6608,
198,
220,
220,
220,
220,
220,
220,
220,
422,
7032,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
651,
35226,
7,
944,
11,
45434,
4164,
330,
31172,
1600,
10352,
8,
290,
2116,
13,
28961,
13,
747,
17697,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2060,
62,
15390,
796,
5306,
27768,
13,
9945,
13,
1136,
62,
12215,
829,
62,
11600,
7,
944,
13,
4598,
310,
2981,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2060,
62,
15390,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2060,
62,
15390,
796,
5306,
27768,
13,
3605,
62,
15390,
7,
944,
13,
4598,
310,
2981,
737,
292,
62,
11600,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2060,
62,
15390,
14692,
3672,
8973,
796,
2116,
13,
4598,
310,
2981,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
2060,
62,
15390,
14692,
834,
3044,
4374,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
24941,
11,
2116,
737,
834,
15003,
834,
7,
29762,
62,
15390,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
15003,
62,
12102,
62,
28665,
82,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13049,
62,
77,
39223,
62,
19199,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
796,
5306,
27768,
13,
9945,
13,
1136,
62,
8367,
7,
944,
13,
4598,
310,
2981,
11,
2116,
13,
3672,
11,
366,
9,
1600,
355,
62,
11600,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
288,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5306,
27768,
13,
16939,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
7203,
90,
15,
92,
1391,
16,
92,
407,
1043,
11074,
18982,
28264,
7,
944,
13,
4598,
310,
2981,
828,
2116,
13,
3672,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5306,
27768,
13,
13921,
3673,
3109,
396,
12331,
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,
2208,
7,
24941,
11,
2116,
737,
834,
15003,
834,
7,
67,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
3672,
6624,
366,
23579,
6030,
1,
290,
2116,
13,
4598,
310,
2981,
6624,
366,
23579,
6030,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
422,
5306,
27768,
13,
19849,
13,
28961,
1330,
10412,
2981,
62,
11487,
62,
25747,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3084,
62,
25747,
796,
10412,
2981,
62,
11487,
62,
25747,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3084,
62,
25747,
796,
2116,
13,
28961,
13,
1136,
62,
11487,
62,
25747,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
3084,
7032,
3440,
422,
2581,
8159,
7,
361,
612,
318,
8,
2073,
3440,
3487,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4418,
751,
736,
8330,
27567,
6267,
329,
618,
4839,
8333,
3196,
547,
852,
9639,
422,
1330,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
329,
47764,
287,
3084,
62,
25747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
288,
13,
35790,
62,
4598,
310,
2981,
290,
288,
13,
35790,
62,
15390,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7663,
3672,
6906,
319,
611,
340,
338,
36472,
393,
17267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
288,
13,
35790,
62,
4598,
310,
2981,
6624,
366,
20939,
1,
290,
47764,
13,
3245,
3672,
6624,
366,
66,
9448,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2214,
3672,
796,
366,
66,
9448,
62,
17018,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
13,
35790,
62,
4598,
310,
2981,
6624,
366,
20939,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
47764,
13,
3245,
3672,
6624,
366,
562,
570,
62,
7645,
634,
1,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
2214,
3672,
796,
366,
562,
570,
62,
7645,
634,
1,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
47764,
13,
3245,
3672,
6624,
366,
562,
570,
62,
7645,
634,
1,
290,
2116,
13,
1136,
7203,
9641,
4943,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1751,
796,
5306,
27768,
13,
9945,
13,
1136,
62,
27160,
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,
47764,
13,
25811,
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,
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,
366,
8000,
1298,
2116,
13,
3672,
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,
366,
8000,
4906,
1298,
2116,
13,
4598,
310,
2981,
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,
366,
8000,
3245,
1298,
366,
562,
570,
62,
7645,
634,
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,
8964,
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,
9,
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,
355,
62,
11600,
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,
1502,
62,
1525,
2625,
312,
87,
10570,
1600,
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,
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,
1751,
796,
5306,
27768,
13,
9945,
13,
1136,
62,
27160,
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,
47764,
13,
25811,
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,
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,
366,
8000,
1298,
288,
13,
35790,
62,
15390,
3672,
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,
366,
8000,
4906,
1298,
288,
13,
35790,
62,
4598,
310,
2981,
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,
366,
8000,
3245,
1298,
2214,
3672,
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,
8964,
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,
9,
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,
355,
62,
11600,
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,
1502,
62,
1525,
2625,
312,
87,
10570,
1600,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
611,
1751,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
7,
7568,
13,
3245,
3672,
11,
1751,
8,
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,
2116,
13,
2617,
7,
7568,
13,
3245,
3672,
11,
685,
12962,
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,
1751,
796,
5306,
27768,
13,
9945,
13,
1136,
62,
27160,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47764,
13,
25811,
11,
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,
366,
8000,
1298,
2116,
13,
3672,
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,
366,
8000,
4906,
1298,
2116,
13,
4598,
310,
2981,
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,
366,
8000,
3245,
1298,
47764,
13,
3245,
3672,
11,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
366,
9,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
11600,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1502,
62,
1525,
2625,
312,
87,
10570,
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,
220,
220,
220,
220,
611,
1751,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
7,
7568,
13,
3245,
3672,
11,
1751,
8,
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,
2116,
13,
2617,
7,
7568,
13,
3245,
3672,
11,
685,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3360,
11593,
40406,
834,
460,
4745,
319,
1200,
3815,
11,
12891,
4585,
757,
379,
262,
886,
198,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
944,
11,
366,
834,
40406,
834,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
834,
40406,
834,
3419,
628,
198,
31,
69,
430,
27768,
13,
1929,
270,
46331,
7,
12154,
62,
5162,
395,
28,
17821,
8,
628,
198,
31,
69,
430,
27768,
13,
1929,
270,
46331,
7,
12154,
62,
5162,
395,
28,
17821,
8,
628,
198,
31,
69,
430,
27768,
13,
1929,
270,
46331,
7,
12154,
62,
5162,
395,
28,
17821,
8,
628,
198,
31,
69,
430,
27768,
13,
1929,
270,
46331,
3419,
198
] | 1.875721 | 2,599 |
import argparse
import pathlib
import sys
import torch
import torchaudio
import yaml
import common
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Convert wav to mel spectrogram')
parser.add_argument('wav_dir', type=pathlib.Path, help='path to directory of speaker directories containing wav files')
parser.add_argument('mel_dir', type=pathlib.Path, help='path to directory to save mel spectrograms')
parser.add_argument('embed_dir', type=pathlib.Path, help='path to directory to save embeddings')
parser.add_argument('encoder_path', type=pathlib.Path, help='path to speaker encoder')
parser.add_argument('config_path', type=pathlib.Path, help='path to config')
if 'debugpy' in sys.modules:
args = parser.parse_args([
'autovc/wavs-jvs',
'vc3/mel-jvs',
'vc3/embed-jvs',
'autovc2/dvector.pt',
'vc3/preprocess.yaml',
])
else:
args = parser.parse_args([])
main(**vars(args))
| [
11748,
1822,
29572,
198,
11748,
3108,
8019,
198,
11748,
25064,
198,
198,
11748,
28034,
198,
11748,
28034,
24051,
198,
11748,
331,
43695,
198,
198,
11748,
2219,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
3103,
1851,
266,
615,
284,
7758,
5444,
39529,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
45137,
62,
15908,
3256,
220,
220,
220,
220,
220,
2099,
28,
6978,
8019,
13,
15235,
11,
1037,
11639,
6978,
284,
8619,
286,
10834,
29196,
7268,
266,
615,
3696,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
17694,
62,
15908,
3256,
220,
220,
220,
220,
220,
2099,
28,
6978,
8019,
13,
15235,
11,
1037,
11639,
6978,
284,
8619,
284,
3613,
7758,
5444,
3828,
9474,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
20521,
62,
15908,
3256,
220,
220,
220,
2099,
28,
6978,
8019,
13,
15235,
11,
1037,
11639,
6978,
284,
8619,
284,
3613,
11525,
67,
654,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12685,
12342,
62,
6978,
3256,
2099,
28,
6978,
8019,
13,
15235,
11,
1037,
11639,
6978,
284,
10834,
2207,
12342,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
11250,
62,
6978,
3256,
220,
2099,
28,
6978,
8019,
13,
15235,
11,
1037,
11639,
6978,
284,
4566,
11537,
628,
220,
220,
220,
611,
705,
24442,
9078,
6,
287,
25064,
13,
18170,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2306,
709,
66,
14,
45137,
82,
12,
73,
14259,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28435,
18,
14,
17694,
12,
73,
14259,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28435,
18,
14,
20521,
12,
73,
14259,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2306,
709,
66,
17,
14,
67,
31364,
13,
457,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28435,
18,
14,
3866,
14681,
13,
88,
43695,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
33761,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
26933,
12962,
628,
220,
220,
220,
1388,
7,
1174,
85,
945,
7,
22046,
4008,
198
] | 2.482014 | 417 |
import pydocweb.docweb.rst as rst
from pydocweb.docweb.utils import *
from pydocweb.docweb.models import *
from views_docstring import EditForm
#------------------------------------------------------------------------------
# Wiki
#------------------------------------------------------------------------------
WIKI_CACHE_AGE = 60
@permission_required('docweb.change_wikipage')
| [
11748,
279,
5173,
420,
12384,
13,
15390,
12384,
13,
81,
301,
355,
374,
301,
198,
6738,
279,
5173,
420,
12384,
13,
15390,
12384,
13,
26791,
1330,
1635,
198,
6738,
279,
5173,
420,
12384,
13,
15390,
12384,
13,
27530,
1330,
1635,
198,
198,
6738,
5009,
62,
15390,
8841,
1330,
5312,
8479,
198,
198,
2,
10097,
26171,
198,
2,
13078,
198,
2,
10097,
26171,
198,
198,
54,
18694,
40,
62,
34,
2246,
13909,
62,
11879,
796,
3126,
198,
198,
31,
525,
3411,
62,
35827,
10786,
15390,
12384,
13,
3803,
62,
20763,
541,
496,
11537,
198
] | 4.107527 | 93 |
import gym
import numpy
import random
import logging
from gym import spaces
from gym.utils import seeding
| [
11748,
11550,
198,
11748,
299,
32152,
198,
11748,
4738,
198,
11748,
18931,
198,
198,
6738,
11550,
1330,
9029,
198,
6738,
11550,
13,
26791,
1330,
384,
8228,
628
] | 4 | 27 |
from datetime import datetime
from .ChromosomeBot import get_or_create
from ..geneprotein import organism_info
| [
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
764,
1925,
398,
418,
462,
20630,
1330,
651,
62,
273,
62,
17953,
198,
6738,
11485,
5235,
538,
35574,
1330,
26433,
62,
10951,
628,
198
] | 3.53125 | 32 |
from django.http import Http404
from django.shortcuts import render
from play.models import Game, Save
| [
6738,
42625,
14208,
13,
4023,
1330,
367,
29281,
26429,
198,
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
198,
6738,
711,
13,
27530,
1330,
3776,
11,
12793,
628
] | 3.714286 | 28 |
# -*- coding:utf-8 -*-
import shutil
import os
import sys
import subprocess
from platform import system
input_arg = output_arg = None
if __name__ == "__main__":
if system() != 'Linux' and system() != 'Darwin':
print('only linux is supported currently')
else:
main()
| [
2,
532,
9,
12,
19617,
25,
40477,
12,
23,
532,
9,
12,
198,
11748,
4423,
346,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
850,
14681,
198,
6738,
3859,
1330,
1080,
198,
198,
15414,
62,
853,
796,
5072,
62,
853,
796,
6045,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
611,
1080,
3419,
14512,
705,
19314,
6,
290,
1080,
3419,
14512,
705,
32708,
5404,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
8807,
32639,
318,
4855,
3058,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1388,
3419,
198
] | 2.740741 | 108 |
"""
To do:
- catch KeyboardInterrupt while evaluating
- show all?
- show statistics
- fix up exception handling; decorator?
"""
import cmd
from church.ast import ParseError
from church.environment import (
UndefinedNameError,
)
from church.eval import (
environment,
reduce,
Suspension,
)
from church.expr import (
definition,
expr,
name,
unexpr,
)
from church.token import (
TokenError,
)
INTRO_TEXT = """\
Welcome to the interactive lambda calculus interpreter.
Type 'help' to see supported commands.
"""
| [
37811,
198,
2514,
466,
25,
198,
198,
12,
4929,
31973,
9492,
3622,
981,
22232,
198,
12,
905,
477,
30,
198,
12,
905,
7869,
198,
12,
4259,
510,
6631,
9041,
26,
11705,
1352,
30,
198,
198,
37811,
198,
11748,
23991,
198,
198,
6738,
4928,
13,
459,
1330,
2547,
325,
12331,
198,
6738,
4928,
13,
38986,
1330,
357,
198,
220,
220,
220,
13794,
18156,
5376,
12331,
11,
198,
8,
198,
6738,
4928,
13,
18206,
1330,
357,
198,
220,
220,
220,
2858,
11,
198,
220,
220,
220,
4646,
11,
198,
220,
220,
220,
31922,
3004,
11,
198,
8,
198,
6738,
4928,
13,
31937,
1330,
357,
198,
220,
220,
220,
6770,
11,
198,
220,
220,
220,
44052,
11,
198,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
8522,
1050,
11,
198,
8,
198,
6738,
4928,
13,
30001,
1330,
357,
198,
220,
220,
220,
29130,
12331,
11,
198,
8,
628,
198,
1268,
5446,
46,
62,
32541,
796,
37227,
59,
198,
14618,
284,
262,
14333,
37456,
41443,
28846,
13,
198,
6030,
705,
16794,
6,
284,
766,
4855,
9729,
13,
198,
37811,
628
] | 3.101695 | 177 |
import pytest
from aydin.io.datasets import cropped_newyork
from aydin.it.classic_denoisers.demo.demo_2D_dictionary_fixed import (
demo_dictionary_fixed,
)
from aydin.it.classic_denoisers.demo.demo_2D_dictionary_learned import (
demo_dictionary_learned,
)
from aydin.it.classic_denoisers.dictionary_fixed import denoise_dictionary_fixed
from aydin.it.classic_denoisers.test.util_test_nd import check_nd
@pytest.mark.heavy
| [
11748,
12972,
9288,
198,
198,
6738,
257,
5173,
259,
13,
952,
13,
19608,
292,
1039,
1330,
48998,
62,
3605,
88,
967,
198,
6738,
257,
5173,
259,
13,
270,
13,
49421,
62,
6559,
10924,
364,
13,
9536,
78,
13,
9536,
78,
62,
17,
35,
62,
67,
14188,
62,
34021,
1330,
357,
198,
220,
220,
220,
13605,
62,
67,
14188,
62,
34021,
11,
198,
8,
198,
6738,
257,
5173,
259,
13,
270,
13,
49421,
62,
6559,
10924,
364,
13,
9536,
78,
13,
9536,
78,
62,
17,
35,
62,
67,
14188,
62,
35720,
276,
1330,
357,
198,
220,
220,
220,
13605,
62,
67,
14188,
62,
35720,
276,
11,
198,
8,
198,
6738,
257,
5173,
259,
13,
270,
13,
49421,
62,
6559,
10924,
364,
13,
67,
14188,
62,
34021,
1330,
2853,
25678,
62,
67,
14188,
62,
34021,
198,
6738,
257,
5173,
259,
13,
270,
13,
49421,
62,
6559,
10924,
364,
13,
9288,
13,
22602,
62,
9288,
62,
358,
1330,
2198,
62,
358,
628,
198,
198,
31,
9078,
9288,
13,
4102,
13,
23701,
628
] | 2.573964 | 169 |
import pprint
import json
pp = pprint.PrettyPrinter(indent = 4)
if __name__ == '__main__':
pp.pprint(main())
| [
11748,
279,
4798,
198,
11748,
33918,
198,
381,
796,
279,
4798,
13,
35700,
6836,
3849,
7,
521,
298,
796,
604,
8,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
9788,
13,
381,
22272,
7,
12417,
28955,
198
] | 2.533333 | 45 |
# coding:utf-8
restaurant = Restaurant('丽水云泉大酒店', 'duck')
print(restaurant.restaurant_name)
print(restaurant.cuisine_type)
restaurant.describe_restaurant()
restaurant.open_restaurant()
| [
2,
19617,
25,
40477,
12,
23,
628,
198,
2118,
2899,
415,
796,
26078,
10786,
10310,
121,
36365,
112,
12859,
239,
37345,
231,
32014,
165,
227,
240,
41753,
245,
3256,
705,
646,
694,
11537,
198,
4798,
7,
2118,
2899,
415,
13,
2118,
2899,
415,
62,
3672,
8,
198,
4798,
7,
2118,
2899,
415,
13,
27399,
27480,
62,
4906,
8,
198,
2118,
2899,
415,
13,
20147,
4892,
62,
2118,
2899,
415,
3419,
198,
2118,
2899,
415,
13,
9654,
62,
2118,
2899,
415,
3419,
198
] | 2.280488 | 82 |
# -*- coding: utf-8 -*-
import os
import h5py
class HDF5(object):
"""HDF5 handler
Offer the hdf5 format file handler
Parameters
---------
fpath : str,
Path of hdf5 file
mode : str,
Open h5 as write and/or read mode
`a` : open as read/write (Default)
`w` : open as write only
`r` : open as read only
Attributes
---------
h5 : hdf5 class
"""
def read(self, ext=None):
"""Read vector or array from h5 file
Parameters
---------
ext : str
File extention including h5 file
Returns
-------
array : array,
Array of hdf5 packed data
"""
if ext is None:
raise ValueError("Please specify an existing extention.")
return self.h5[ext].value
def save(self, data, ext=None):
"""Write vector or array into h5 file
Parameters
---------
data :
Vector or array will be wrote into h5 file
ext: str
File label of saved file
"""
# remove if 'ext' already exist
if ext in self.h5.keys():
del self.h5[ext]
self.h5.create_dataset(ext, data=data)
self.h5.flush()
return
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
28686,
198,
11748,
289,
20,
9078,
628,
198,
4871,
5572,
37,
20,
7,
15252,
2599,
198,
220,
220,
220,
37227,
39,
8068,
20,
21360,
198,
220,
220,
220,
33085,
262,
289,
7568,
20,
5794,
2393,
21360,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
277,
6978,
1058,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
286,
289,
7568,
20,
2393,
628,
220,
220,
220,
4235,
1058,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4946,
289,
20,
355,
3551,
290,
14,
273,
1100,
4235,
198,
220,
220,
220,
220,
220,
220,
220,
4600,
64,
63,
1058,
1280,
355,
1100,
14,
13564,
357,
19463,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4600,
86,
63,
1058,
1280,
355,
3551,
691,
198,
220,
220,
220,
220,
220,
220,
220,
4600,
81,
63,
1058,
1280,
355,
1100,
691,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
45337,
198,
220,
220,
220,
289,
20,
1058,
289,
7568,
20,
1398,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
1100,
7,
944,
11,
1070,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5569,
15879,
393,
7177,
422,
289,
20,
2393,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
45337,
198,
220,
220,
220,
220,
220,
220,
220,
1070,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9220,
1070,
1463,
1390,
289,
20,
2393,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
7177,
1058,
7177,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15690,
286,
289,
7568,
20,
11856,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1070,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
5492,
11986,
281,
4683,
1070,
1463,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
71,
20,
58,
2302,
4083,
8367,
628,
220,
220,
220,
825,
3613,
7,
944,
11,
1366,
11,
1070,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16594,
15879,
393,
7177,
656,
289,
20,
2393,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
45337,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20650,
393,
7177,
481,
307,
2630,
656,
289,
20,
2393,
628,
220,
220,
220,
220,
220,
220,
220,
1070,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9220,
6167,
286,
7448,
2393,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4781,
611,
705,
2302,
6,
1541,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1070,
287,
2116,
13,
71,
20,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
2116,
13,
71,
20,
58,
2302,
60,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
71,
20,
13,
17953,
62,
19608,
292,
316,
7,
2302,
11,
1366,
28,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
71,
20,
13,
25925,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
198
] | 2.148087 | 601 |
# -*- coding: utf-8 -*-
# Generated by Django 1.9.8 on 2017-04-06 09:14
from __future__ import unicode_literals
from django.db import migrations, models
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
2980,
515,
416,
37770,
352,
13,
24,
13,
23,
319,
2177,
12,
3023,
12,
3312,
7769,
25,
1415,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.719298 | 57 |
print("Hello World")
########## Edit below this line
# print your name to the console
########## Edit above this line
# Once you've finished save and commit your changes to GitHub | [
4798,
7203,
15496,
2159,
4943,
198,
198,
7804,
2235,
5312,
2174,
428,
1627,
220,
198,
2,
3601,
534,
1438,
284,
262,
8624,
628,
628,
628,
198,
7804,
2235,
5312,
2029,
428,
1627,
198,
2,
4874,
345,
1053,
5201,
3613,
290,
4589,
534,
2458,
284,
21722
] | 4.155556 | 45 |
##CBWitness-EvaluateCallBack Function
import json
import boto3
import os
import datetime
import pytz
import base64
from botocore.exceptions import ClientError
from boto3.dynamodb.conditions import Key
#===============================
| [
2235,
23199,
38670,
12,
36,
2100,
4985,
14134,
7282,
15553,
198,
11748,
33918,
198,
11748,
275,
2069,
18,
198,
11748,
28686,
198,
11748,
4818,
8079,
198,
11748,
12972,
22877,
198,
11748,
2779,
2414,
198,
6738,
10214,
420,
382,
13,
1069,
11755,
1330,
20985,
12331,
198,
6738,
275,
2069,
18,
13,
67,
4989,
375,
65,
13,
17561,
1756,
1330,
7383,
198,
220,
220,
220,
220,
198,
198,
2,
4770,
25609,
18604,
628,
628
] | 3.375 | 72 |
import sys, os
sys.path.append(os.getcwd())
import ConfigParser
cp = ConfigParser.ConfigParser();
cp.read('../.environ')
os.environ.update({key.upper():value for key, value in cp.items('env')})
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
| [
11748,
25064,
11,
28686,
198,
198,
17597,
13,
6978,
13,
33295,
7,
418,
13,
1136,
66,
16993,
28955,
198,
198,
11748,
17056,
46677,
198,
13155,
796,
17056,
46677,
13,
16934,
46677,
9783,
198,
13155,
13,
961,
10786,
492,
11757,
268,
2268,
11537,
198,
418,
13,
268,
2268,
13,
19119,
15090,
2539,
13,
45828,
33529,
8367,
329,
1994,
11,
1988,
287,
31396,
13,
23814,
10786,
24330,
11537,
30072,
220,
198,
6738,
42625,
14208,
13,
7295,
13,
18504,
12397,
1330,
651,
62,
18504,
12397,
62,
31438,
198,
31438,
796,
651,
62,
18504,
12397,
62,
31438,
3419,
198
] | 2.989474 | 95 |
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2022 Osyris contributors (https://github.com/osyris-project/osyris)
from .tools import make_label
import numpy as np
| [
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
347,
10305,
12,
18,
12,
2601,
682,
198,
2,
15069,
357,
66,
8,
33160,
440,
1837,
2442,
20420,
357,
5450,
1378,
12567,
13,
785,
14,
418,
2417,
271,
12,
16302,
14,
418,
2417,
271,
8,
198,
198,
6738,
764,
31391,
1330,
787,
62,
18242,
198,
11748,
299,
32152,
355,
45941,
628
] | 2.916667 | 60 |
muster = open("muster.txt", "r")
output = open("output.txt", "r")
mustervals = []
outputvals = []
for line in muster:
a,b,val = line.split(" ")
mustervals.append(int(val))
for line in output:
outputvals.append(int(line))
print len(mustervals)
print len(outputvals)
length = min(len(mustervals), len(outputvals))
for i in range(length):
if mustervals[i] != outputvals[i]:
print i
print "muster: " + str(mustervals[i])
print "output: " + str(outputvals[i])
| [
76,
5819,
796,
1280,
7203,
76,
5819,
13,
14116,
1600,
366,
81,
4943,
201,
198,
22915,
796,
1280,
7203,
22915,
13,
14116,
1600,
366,
81,
4943,
201,
198,
201,
198,
27238,
712,
874,
796,
17635,
201,
198,
22915,
12786,
796,
17635,
201,
198,
201,
198,
1640,
1627,
287,
36394,
25,
201,
198,
197,
64,
11,
65,
11,
2100,
796,
1627,
13,
35312,
7203,
366,
8,
201,
198,
197,
27238,
712,
874,
13,
33295,
7,
600,
7,
2100,
4008,
201,
198,
201,
198,
1640,
1627,
287,
5072,
25,
201,
198,
197,
22915,
12786,
13,
33295,
7,
600,
7,
1370,
4008,
201,
198,
201,
198,
4798,
18896,
7,
27238,
712,
874,
8,
201,
198,
4798,
18896,
7,
22915,
12786,
8,
201,
198,
13664,
796,
949,
7,
11925,
7,
27238,
712,
874,
828,
18896,
7,
22915,
12786,
4008,
201,
198,
201,
198,
1640,
1312,
287,
2837,
7,
13664,
2599,
201,
198,
197,
361,
1276,
712,
874,
58,
72,
60,
14512,
5072,
12786,
58,
72,
5974,
201,
198,
197,
197,
4798,
1312,
201,
198,
197,
197,
4798,
366,
76,
5819,
25,
366,
1343,
965,
7,
27238,
712,
874,
58,
72,
12962,
201,
198,
197,
197,
4798,
366,
22915,
25,
366,
1343,
965,
7,
22915,
12786,
58,
72,
12962,
201,
198
] | 2.38835 | 206 |
"""
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
https://leetcode.com/problems/longest-valid-parentheses/
"""
test_cases = ["(()", ")()())", "())()()()", "())((())()", "())((()))", "()(()", "))(()))()"]
results = [2, 4, 6, 6, 6, 2, 4]
if __name__ == "__main__":
app = Solution()
for test_case, correct_result in zip(test_cases, results):
assert (
app.longestValidParentheses(test_case) == correct_result
), f"My result: {app.longestValidParentheses(test_case)}, correct result: {correct_result}\nTest Case: {test_case}"
| [
37811,
198,
15056,
257,
4731,
7268,
655,
262,
3435,
705,
10786,
290,
705,
8,
3256,
1064,
262,
4129,
286,
262,
14069,
4938,
357,
4053,
12,
12214,
8,
46672,
3293,
1806,
13,
198,
198,
5450,
1378,
293,
316,
8189,
13,
785,
14,
1676,
22143,
14,
6511,
395,
12,
12102,
12,
8000,
39815,
14,
198,
37811,
628,
198,
198,
9288,
62,
33964,
796,
14631,
7,
3419,
1600,
366,
8,
3419,
28955,
1600,
366,
28955,
3419,
3419,
3419,
1600,
366,
3419,
5769,
7,
28955,
3419,
1600,
366,
3419,
5769,
7,
3419,
4008,
1600,
366,
3419,
7,
3419,
1600,
366,
4008,
7,
3419,
4008,
3419,
8973,
198,
43420,
796,
685,
17,
11,
604,
11,
718,
11,
718,
11,
718,
11,
362,
11,
604,
60,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
598,
796,
28186,
3419,
198,
220,
220,
220,
329,
1332,
62,
7442,
11,
3376,
62,
20274,
287,
19974,
7,
9288,
62,
33964,
11,
2482,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
598,
13,
6511,
395,
47139,
24546,
39815,
7,
9288,
62,
7442,
8,
6624,
3376,
62,
20274,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
277,
1,
3666,
1255,
25,
1391,
1324,
13,
6511,
395,
47139,
24546,
39815,
7,
9288,
62,
7442,
8,
5512,
3376,
1255,
25,
1391,
30283,
62,
20274,
32239,
77,
14402,
8913,
25,
1391,
9288,
62,
7442,
36786,
198
] | 2.64898 | 245 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
import shop_subscribe
with open('README.rst') as fd:
README = fd.read()
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
setup(
author="Richard Case",
author_email="[email protected]",
name="djangoshop-subscribe",
packages=find_packages(exclude=['doc']),
version=shop_subscribe.__version__,
description="An email subscription plugin for Django-SHOP",
long_description=README,
url='https://github.com/racitup/djangoshop-subscribe',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
keywords= ['Django', 'Django-SHOP'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.10.0,<1.11',
'django-shop>=0.11',
'django-post-office>3.0.0',
],
)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
900,
37623,
10141,
1330,
9058,
11,
1064,
62,
43789,
198,
11748,
6128,
62,
7266,
12522,
198,
198,
4480,
1280,
10786,
15675,
11682,
13,
81,
301,
11537,
355,
277,
67,
25,
198,
220,
220,
220,
20832,
11682,
796,
277,
67,
13,
961,
3419,
198,
198,
31631,
5064,
40,
4877,
796,
685,
198,
220,
220,
220,
705,
31441,
7904,
5313,
9344,
3256,
198,
220,
220,
220,
705,
21055,
6433,
7904,
37770,
3256,
198,
220,
220,
220,
705,
5317,
1631,
7591,
1240,
7904,
34152,
3256,
198,
220,
220,
220,
705,
34156,
7904,
7294,
40,
20010,
1079,
7904,
347,
10305,
13789,
3256,
198,
220,
220,
220,
705,
18843,
803,
4482,
7904,
7294,
13362,
3256,
198,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
362,
13,
22,
3256,
198,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
20,
3256,
198,
220,
220,
220,
705,
33221,
7904,
10442,
7712,
7904,
46267,
7904,
15678,
15183,
19653,
3256,
198,
220,
220,
220,
705,
33221,
7904,
4455,
7904,
13505,
54,
14,
40717,
7904,
26977,
14041,
3256,
198,
60,
198,
198,
40406,
7,
198,
220,
220,
220,
1772,
2625,
22245,
8913,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
7527,
31,
11510,
270,
929,
13,
785,
1600,
198,
220,
220,
220,
1438,
2625,
28241,
648,
25444,
12,
7266,
12522,
1600,
198,
220,
220,
220,
10392,
28,
19796,
62,
43789,
7,
1069,
9152,
28,
17816,
15390,
20520,
828,
198,
220,
220,
220,
2196,
28,
24643,
62,
7266,
12522,
13,
834,
9641,
834,
11,
198,
220,
220,
220,
6764,
2625,
2025,
3053,
14569,
13877,
329,
37770,
12,
9693,
3185,
1600,
198,
220,
220,
220,
890,
62,
11213,
28,
15675,
11682,
11,
198,
220,
220,
220,
19016,
11639,
5450,
1378,
12567,
13,
785,
14,
11510,
270,
929,
14,
28241,
648,
25444,
12,
7266,
12522,
3256,
198,
220,
220,
220,
5964,
11639,
21800,
13789,
3256,
198,
220,
220,
220,
9554,
28,
17816,
2640,
13362,
6,
4357,
198,
220,
220,
220,
1398,
13350,
28,
31631,
5064,
40,
4877,
11,
198,
220,
220,
220,
26286,
28,
37250,
35,
73,
14208,
3256,
705,
35,
73,
14208,
12,
9693,
3185,
6,
4357,
198,
220,
220,
220,
2291,
62,
26495,
62,
7890,
28,
17821,
11,
198,
220,
220,
220,
19974,
62,
21230,
28,
25101,
11,
198,
220,
220,
220,
2721,
62,
47911,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35,
73,
14208,
29,
28,
16,
13,
940,
13,
15,
11,
27,
16,
13,
1157,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
12,
24643,
29,
28,
15,
13,
1157,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
12,
7353,
12,
31810,
29,
18,
13,
15,
13,
15,
3256,
198,
220,
220,
220,
16589,
198,
8,
198
] | 2.635438 | 491 |
from ..base import GnuRecipe
| [
6738,
11485,
8692,
1330,
18509,
84,
37523,
628
] | 3.75 | 8 |
# -*- coding: utf-8 -*-
import math
import numbers
import re
import tenacity
from sqlalchemy import exc, util
from sqlalchemy.engine import Engine, reflection
from sqlalchemy.engine.default import DefaultDialect
from sqlalchemy.exc import NoSuchTableError, OperationalError
from sqlalchemy.sql.compiler import (
DDLCompiler,
GenericTypeCompiler,
IdentifierPreparer,
SQLCompiler,
)
from sqlalchemy.sql.sqltypes import (
BIGINT,
BINARY,
BOOLEAN,
DATE,
DECIMAL,
FLOAT,
INTEGER,
NULLTYPE,
STRINGTYPE,
TIMESTAMP,
)
from tenacity import retry_if_exception, stop_after_attempt, wait_exponential
import pyathena
class UniversalSet(object):
"""UniversalSet
https://github.com/dropbox/PyHive/blob/master/pyhive/common.py"""
class AthenaDMLIdentifierPreparer(IdentifierPreparer):
"""PrestoIdentifierPreparer
https://github.com/dropbox/PyHive/blob/master/pyhive/sqlalchemy_presto.py"""
reserved_words = UniversalSet()
class AthenaStatementCompiler(SQLCompiler):
"""PrestoCompiler
https://github.com/dropbox/PyHive/blob/master/pyhive/sqlalchemy_presto.py"""
_TYPE_MAPPINGS = {
"boolean": BOOLEAN,
"real": FLOAT,
"float": FLOAT,
"double": FLOAT,
"tinyint": INTEGER,
"smallint": INTEGER,
"integer": INTEGER,
"bigint": BIGINT,
"decimal": DECIMAL,
"char": STRINGTYPE,
"varchar": STRINGTYPE,
"array": STRINGTYPE,
"row": STRINGTYPE, # StructType
"varbinary": BINARY,
"map": STRINGTYPE,
"date": DATE,
"timestamp": TIMESTAMP,
}
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
11748,
10688,
198,
11748,
3146,
198,
11748,
302,
198,
198,
11748,
3478,
4355,
198,
6738,
44161,
282,
26599,
1330,
2859,
11,
7736,
198,
6738,
44161,
282,
26599,
13,
18392,
1330,
7117,
11,
14580,
198,
6738,
44161,
282,
26599,
13,
18392,
13,
12286,
1330,
15161,
24400,
478,
198,
6738,
44161,
282,
26599,
13,
41194,
1330,
1400,
16678,
10962,
12331,
11,
6564,
864,
12331,
198,
6738,
44161,
282,
26599,
13,
25410,
13,
5589,
5329,
1330,
357,
198,
220,
220,
220,
20084,
5639,
3361,
5329,
11,
198,
220,
220,
220,
42044,
6030,
7293,
5329,
11,
198,
220,
220,
220,
11440,
7483,
37534,
11258,
11,
198,
220,
220,
220,
49747,
5639,
3361,
5329,
11,
198,
8,
198,
6738,
44161,
282,
26599,
13,
25410,
13,
25410,
19199,
1330,
357,
198,
220,
220,
220,
26746,
12394,
11,
198,
220,
220,
220,
347,
1268,
13153,
11,
198,
220,
220,
220,
347,
6684,
2538,
1565,
11,
198,
220,
220,
220,
360,
6158,
11,
198,
220,
220,
220,
27196,
3955,
1847,
11,
198,
220,
220,
220,
9977,
46,
1404,
11,
198,
220,
220,
220,
17828,
7156,
1137,
11,
198,
220,
220,
220,
15697,
25216,
11,
198,
220,
220,
220,
19269,
2751,
25216,
11,
198,
220,
220,
220,
31742,
6465,
23518,
11,
198,
8,
198,
6738,
3478,
4355,
1330,
1005,
563,
62,
361,
62,
1069,
4516,
11,
2245,
62,
8499,
62,
1078,
1791,
11,
4043,
62,
11201,
35470,
198,
198,
11748,
12972,
265,
831,
64,
628,
198,
4871,
14499,
7248,
7,
15252,
2599,
198,
220,
220,
220,
37227,
38747,
7248,
628,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
14781,
3524,
14,
20519,
39,
425,
14,
2436,
672,
14,
9866,
14,
9078,
71,
425,
14,
11321,
13,
9078,
37811,
628,
198,
4871,
21341,
35,
5805,
33234,
7483,
37534,
11258,
7,
33234,
7483,
37534,
11258,
2599,
198,
220,
220,
220,
37227,
47,
2118,
78,
33234,
7483,
37534,
11258,
628,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
14781,
3524,
14,
20519,
39,
425,
14,
2436,
672,
14,
9866,
14,
9078,
71,
425,
14,
25410,
282,
26599,
62,
79,
2118,
78,
13,
9078,
37811,
628,
220,
220,
220,
10395,
62,
10879,
796,
14499,
7248,
3419,
628,
198,
198,
4871,
21341,
48682,
7293,
5329,
7,
50,
48,
5639,
3361,
5329,
2599,
198,
220,
220,
220,
37227,
47,
2118,
78,
7293,
5329,
628,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
14781,
3524,
14,
20519,
39,
425,
14,
2436,
672,
14,
9866,
14,
9078,
71,
425,
14,
25410,
282,
26599,
62,
79,
2118,
78,
13,
9078,
37811,
628,
628,
198,
62,
25216,
62,
44,
24805,
20754,
796,
1391,
198,
220,
220,
220,
366,
2127,
21052,
1298,
347,
6684,
2538,
1565,
11,
198,
220,
220,
220,
366,
5305,
1298,
9977,
46,
1404,
11,
198,
220,
220,
220,
366,
22468,
1298,
9977,
46,
1404,
11,
198,
220,
220,
220,
366,
23352,
1298,
9977,
46,
1404,
11,
198,
220,
220,
220,
366,
44152,
600,
1298,
17828,
7156,
1137,
11,
198,
220,
220,
220,
366,
17470,
600,
1298,
17828,
7156,
1137,
11,
198,
220,
220,
220,
366,
41433,
1298,
17828,
7156,
1137,
11,
198,
220,
220,
220,
366,
14261,
600,
1298,
26746,
12394,
11,
198,
220,
220,
220,
366,
12501,
4402,
1298,
27196,
3955,
1847,
11,
198,
220,
220,
220,
366,
10641,
1298,
19269,
2751,
25216,
11,
198,
220,
220,
220,
366,
85,
998,
283,
1298,
19269,
2751,
25216,
11,
198,
220,
220,
220,
366,
18747,
1298,
19269,
2751,
25216,
11,
198,
220,
220,
220,
366,
808,
1298,
19269,
2751,
25216,
11,
220,
1303,
32112,
6030,
198,
220,
220,
220,
366,
7785,
39491,
1298,
347,
1268,
13153,
11,
198,
220,
220,
220,
366,
8899,
1298,
19269,
2751,
25216,
11,
198,
220,
220,
220,
366,
4475,
1298,
360,
6158,
11,
198,
220,
220,
220,
366,
16514,
27823,
1298,
31742,
6465,
23518,
11,
198,
92,
628
] | 2.454121 | 643 |
import asyncio
from thispersondoesnotexist import get_online_person, save_online_person
loop = asyncio.get_event_loop()
loop.run_until_complete(main()) | [
11748,
30351,
952,
198,
198,
6738,
428,
19276,
623,
3028,
1662,
38476,
1330,
651,
62,
25119,
62,
6259,
11,
3613,
62,
25119,
62,
6259,
628,
198,
198,
26268,
796,
30351,
952,
13,
1136,
62,
15596,
62,
26268,
3419,
198,
26268,
13,
5143,
62,
28446,
62,
20751,
7,
12417,
28955
] | 3.163265 | 49 |
import tensorflow as tf
import numpy as np
import pytest
from ..lad import lad, lad_polyfit
sess = tf.Session()
true_params = np.array([3, 10])
x = np.linspace(-1, 1, 10000)
y = np.random.laplace(loc=x * true_params[0] + true_params[1], scale=1.)
@pytest.mark.parametrize("yerr", [(None), (np.ones(len(y))), (np.std(y))])
@pytest.mark.parametrize("yerr", [(None), (np.ones(len(y))), (np.std(y))])
@pytest.mark.parametrize("order", [(1), (2), (3)])
@pytest.mark.parametrize("beta_true", [(np.arange(20).reshape(1, -1)),
(np.concatenate([np.zeros(10), np.arange(10)]).reshape(1, -1))])
| [
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
12972,
9288,
198,
6738,
11485,
9435,
1330,
9717,
11,
9717,
62,
35428,
11147,
628,
198,
82,
408,
796,
48700,
13,
36044,
3419,
198,
7942,
62,
37266,
796,
45941,
13,
18747,
26933,
18,
11,
838,
12962,
198,
87,
796,
45941,
13,
21602,
10223,
32590,
16,
11,
352,
11,
33028,
8,
198,
88,
796,
45941,
13,
25120,
13,
5031,
5372,
7,
17946,
28,
87,
1635,
2081,
62,
37266,
58,
15,
60,
1343,
2081,
62,
37266,
58,
16,
4357,
5046,
28,
16,
2014,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7203,
88,
8056,
1600,
47527,
14202,
828,
357,
37659,
13,
1952,
7,
11925,
7,
88,
4008,
828,
357,
37659,
13,
19282,
7,
88,
4008,
12962,
198,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7203,
88,
8056,
1600,
47527,
14202,
828,
357,
37659,
13,
1952,
7,
11925,
7,
88,
4008,
828,
357,
37659,
13,
19282,
7,
88,
4008,
12962,
198,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7203,
2875,
1600,
47527,
16,
828,
357,
17,
828,
357,
18,
8,
12962,
198,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7203,
31361,
62,
7942,
1600,
47527,
37659,
13,
283,
858,
7,
1238,
737,
3447,
1758,
7,
16,
11,
532,
16,
36911,
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,
357,
37659,
13,
1102,
9246,
268,
378,
26933,
37659,
13,
9107,
418,
7,
940,
828,
45941,
13,
283,
858,
7,
940,
15437,
737,
3447,
1758,
7,
16,
11,
532,
16,
4008,
12962,
198
] | 2.114094 | 298 |
"""Helpers for running a local webserver to receive authorization code."""
import socket
from contextlib import closing
from pydata_google_auth import exceptions
LOCALHOST = "localhost"
DEFAULT_PORTS_TO_TRY = 100
def is_port_open(port):
"""Check if a port is open on localhost.
Based on StackOverflow answer: https://stackoverflow.com/a/43238489/101923
Parameters
----------
port : int
A port to check on localhost.
Returns
-------
is_open : bool
True if a socket can be opened at the requested port.
"""
with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as sock:
try:
sock.bind((LOCALHOST, port))
sock.listen(1)
except socket.error:
is_open = False
else:
is_open = True
return is_open
def find_open_port(start=8080, stop=None):
"""Find an open port between ``start`` and ``stop``.
Parameters
----------
start : Optional[int]
Beginning of range of ports to try. Defaults to 8080.
stop : Optional[int]
End of range of ports to try (not including exactly equals ``stop``).
This function tries 100 possible ports if no ``stop`` is specified.
Returns
-------
Optional[int]
``None`` if no open port is found, otherwise an integer indicating an
open port.
"""
if not stop:
stop = start + DEFAULT_PORTS_TO_TRY
for port in range(start, stop):
if is_port_open(port):
return port
# No open ports found.
return None
def run_local_server(app_flow):
"""Run local webserver installed app flow on some open port.
Parameters
----------
app_flow : google_auth_oauthlib.flow.InstalledAppFlow
Installed application flow to fetch user credentials.
Returns
-------
google.auth.credentials.Credentials
User credentials from installed application flow.
Raises
------
pydata_google_auth.exceptions.PyDataConnectionError
If no open port can be found in the range from 8080 to 8089,
inclusive.
"""
port = find_open_port()
if not port:
raise exceptions.PyDataConnectionError("Could not find open port.")
return app_flow.run_local_server(host=LOCALHOST, port=port)
| [
37811,
12621,
19276,
329,
2491,
257,
1957,
2639,
18497,
284,
3328,
19601,
2438,
526,
15931,
198,
198,
11748,
17802,
198,
6738,
4732,
8019,
1330,
9605,
198,
198,
6738,
279,
5173,
1045,
62,
13297,
62,
18439,
1330,
13269,
628,
198,
29701,
1847,
39,
10892,
796,
366,
36750,
1,
198,
7206,
38865,
62,
47,
33002,
62,
10468,
62,
40405,
796,
1802,
628,
198,
4299,
318,
62,
634,
62,
9654,
7,
634,
2599,
198,
220,
220,
220,
37227,
9787,
611,
257,
2493,
318,
1280,
319,
1957,
4774,
13,
628,
220,
220,
220,
13403,
319,
23881,
5886,
11125,
3280,
25,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
64,
14,
3559,
23721,
35890,
14,
8784,
24,
1954,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
2493,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2493,
284,
2198,
319,
1957,
4774,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
318,
62,
9654,
1058,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
6407,
611,
257,
17802,
460,
307,
4721,
379,
262,
9167,
2493,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
9605,
7,
44971,
13,
44971,
7,
44971,
13,
8579,
62,
1268,
2767,
11,
17802,
13,
50,
11290,
62,
2257,
32235,
4008,
355,
32263,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32263,
13,
21653,
19510,
29701,
1847,
39,
10892,
11,
2493,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32263,
13,
4868,
268,
7,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
17802,
13,
18224,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
9654,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
9654,
796,
6407,
198,
220,
220,
220,
1441,
318,
62,
9654,
628,
198,
4299,
1064,
62,
9654,
62,
634,
7,
9688,
28,
1795,
1795,
11,
2245,
28,
14202,
2599,
198,
220,
220,
220,
37227,
16742,
281,
1280,
2493,
1022,
7559,
9688,
15506,
290,
7559,
11338,
15506,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
923,
1058,
32233,
58,
600,
60,
198,
220,
220,
220,
220,
220,
220,
220,
25976,
286,
2837,
286,
14090,
284,
1949,
13,
2896,
13185,
284,
4019,
1795,
13,
198,
220,
220,
220,
2245,
1058,
32233,
58,
600,
60,
198,
220,
220,
220,
220,
220,
220,
220,
5268,
286,
2837,
286,
14090,
284,
1949,
357,
1662,
1390,
3446,
21767,
7559,
11338,
15506,
737,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
8404,
1802,
1744,
14090,
611,
645,
7559,
11338,
15506,
318,
7368,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
32233,
58,
600,
60,
198,
220,
220,
220,
220,
220,
220,
220,
7559,
14202,
15506,
611,
645,
1280,
2493,
318,
1043,
11,
4306,
281,
18253,
12739,
281,
198,
220,
220,
220,
220,
220,
220,
220,
1280,
2493,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
2245,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2245,
796,
923,
1343,
5550,
38865,
62,
47,
33002,
62,
10468,
62,
40405,
628,
220,
220,
220,
329,
2493,
287,
2837,
7,
9688,
11,
2245,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
62,
634,
62,
9654,
7,
634,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2493,
628,
220,
220,
220,
1303,
1400,
1280,
14090,
1043,
13,
198,
220,
220,
220,
1441,
6045,
628,
198,
4299,
1057,
62,
12001,
62,
15388,
7,
1324,
62,
11125,
2599,
198,
220,
220,
220,
37227,
10987,
1957,
2639,
18497,
6589,
598,
5202,
319,
617,
1280,
2493,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
598,
62,
11125,
1058,
23645,
62,
18439,
62,
12162,
1071,
8019,
13,
11125,
13,
6310,
4262,
4677,
37535,
198,
220,
220,
220,
220,
220,
220,
220,
2262,
4262,
3586,
5202,
284,
21207,
2836,
18031,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
23645,
13,
18439,
13,
66,
445,
14817,
13,
34,
445,
14817,
198,
220,
220,
220,
220,
220,
220,
220,
11787,
18031,
422,
6589,
3586,
5202,
13,
628,
220,
220,
220,
7567,
2696,
198,
220,
220,
220,
40103,
198,
220,
220,
220,
279,
5173,
1045,
62,
13297,
62,
18439,
13,
1069,
11755,
13,
20519,
6601,
32048,
12331,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
645,
1280,
2493,
460,
307,
1043,
287,
262,
2837,
422,
4019,
1795,
284,
41241,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
19889,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2493,
796,
1064,
62,
9654,
62,
634,
3419,
198,
220,
220,
220,
611,
407,
2493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
13269,
13,
20519,
6601,
32048,
12331,
7203,
23722,
407,
1064,
1280,
2493,
19570,
198,
220,
220,
220,
1441,
598,
62,
11125,
13,
5143,
62,
12001,
62,
15388,
7,
4774,
28,
29701,
1847,
39,
10892,
11,
2493,
28,
634,
8,
198
] | 2.644242 | 877 |
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.utils import timezone
from enumfields import Enum # Uses Ethan Furman's "enum34" backport
from enumfields import EnumField
from sorl.thumbnail import ImageField
from content.models import Content
from taxonomy.models import Term
from team.models import Team
# Create your models here.
from web import settings
# Sales Campaign
| [
6738,
42625,
14208,
13,
3642,
822,
13,
11299,
19199,
13,
25747,
1330,
42044,
33616,
9218,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
11299,
19199,
13,
27530,
1330,
14041,
6030,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
26791,
1330,
640,
11340,
198,
6738,
33829,
25747,
1330,
2039,
388,
220,
1303,
36965,
28926,
22384,
805,
338,
366,
44709,
2682,
1,
736,
634,
198,
6738,
33829,
25747,
1330,
2039,
388,
15878,
198,
6738,
25655,
75,
13,
400,
20566,
1330,
7412,
15878,
198,
198,
6738,
2695,
13,
27530,
1330,
14041,
198,
6738,
1687,
30565,
13,
27530,
1330,
35118,
198,
6738,
1074,
13,
27530,
1330,
4816,
198,
2,
13610,
534,
4981,
994,
13,
198,
6738,
3992,
1330,
6460,
628,
628,
628,
628,
628,
628,
198,
2,
17329,
13718,
198
] | 3.862595 | 131 |
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 4.0.0
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.
from sys import version_info as _swig_python_version_info
if _swig_python_version_info < (2, 7, 0):
raise RuntimeError('Python 2.7 or later required')
# Import the low-level C/C++ module
if __package__ or '.' in __name__:
from . import _pycplex_platform
else:
import _pycplex_platform
try:
import builtins as __builtin__
except ImportError:
import __builtin__
def _swig_add_metaclass(metaclass):
"""Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass"""
return wrapper
class _SwigNonDynamicMeta(type):
"""Meta class to enforce nondynamic attributes (no new attributes) for a class"""
__setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__)
CPX_FEATURES_H = _pycplex_platform.CPX_FEATURES_H
CPX_FEATURE_REMOTE_OBJECT = _pycplex_platform.CPX_FEATURE_REMOTE_OBJECT
CPX_FEATURE_DISTRIBUTED_MIP = _pycplex_platform.CPX_FEATURE_DISTRIBUTED_MIP
CPX_CPXAUTOINTTYPES_H_H = _pycplex_platform.CPX_CPXAUTOINTTYPES_H_H
CPXBYTE_DEFINED = _pycplex_platform.CPXBYTE_DEFINED
CPXINT_DEFINED = _pycplex_platform.CPXINT_DEFINED
CPXLONG_DEFINED = _pycplex_platform.CPXLONG_DEFINED
CPXSHORT_DEFINED = _pycplex_platform.CPXSHORT_DEFINED
CPXULONG_DEFINED = _pycplex_platform.CPXULONG_DEFINED
CPX_STR_PARAM_MAX = _pycplex_platform.CPX_STR_PARAM_MAX
# Register cpxiodevice in _pycplex_platform:
_pycplex_platform.cpxiodevice_swigregister(cpxiodevice)
cvar = _pycplex_platform.cvar
CPX_NULL = cvar.CPX_NULL
ext_name = cvar.ext_name
CPX_VERSION = _pycplex_platform.CPX_VERSION
CPX_VERSION_VERSION = _pycplex_platform.CPX_VERSION_VERSION
CPX_VERSION_RELEASE = _pycplex_platform.CPX_VERSION_RELEASE
CPX_VERSION_MODIFICATION = _pycplex_platform.CPX_VERSION_MODIFICATION
CPX_VERSION_FIX = _pycplex_platform.CPX_VERSION_FIX
CPX_INFBOUND = _pycplex_platform.CPX_INFBOUND
CPX_MINBOUND = _pycplex_platform.CPX_MINBOUND
CPX_PWL_MAXSLOPE = _pycplex_platform.CPX_PWL_MAXSLOPE
CPX_PWL_MINSLOPE = _pycplex_platform.CPX_PWL_MINSLOPE
CPX_PARAMTYPE_NONE = _pycplex_platform.CPX_PARAMTYPE_NONE
CPX_PARAMTYPE_INT = _pycplex_platform.CPX_PARAMTYPE_INT
CPX_PARAMTYPE_DOUBLE = _pycplex_platform.CPX_PARAMTYPE_DOUBLE
CPX_PARAMTYPE_STRING = _pycplex_platform.CPX_PARAMTYPE_STRING
CPX_PARAMTYPE_LONG = _pycplex_platform.CPX_PARAMTYPE_LONG
CPX_NO_SOLN = _pycplex_platform.CPX_NO_SOLN
CPX_AUTO_SOLN = _pycplex_platform.CPX_AUTO_SOLN
CPX_BASIC_SOLN = _pycplex_platform.CPX_BASIC_SOLN
CPX_NONBASIC_SOLN = _pycplex_platform.CPX_NONBASIC_SOLN
CPX_PRIMAL_SOLN = _pycplex_platform.CPX_PRIMAL_SOLN
CPX_PRECOL_LOW = _pycplex_platform.CPX_PRECOL_LOW
CPX_PRECOL_UP = _pycplex_platform.CPX_PRECOL_UP
CPX_PRECOL_FIX = _pycplex_platform.CPX_PRECOL_FIX
CPX_PRECOL_AGG = _pycplex_platform.CPX_PRECOL_AGG
CPX_PRECOL_OTHER = _pycplex_platform.CPX_PRECOL_OTHER
CPX_PREROW_RED = _pycplex_platform.CPX_PREROW_RED
CPX_PREROW_AGG = _pycplex_platform.CPX_PREROW_AGG
CPX_PREROW_OTHER = _pycplex_platform.CPX_PREROW_OTHER
CPX_AUTO = _pycplex_platform.CPX_AUTO
CPX_ON = _pycplex_platform.CPX_ON
CPX_OFF = _pycplex_platform.CPX_OFF
CPX_MAX = _pycplex_platform.CPX_MAX
CPX_MIN = _pycplex_platform.CPX_MIN
CPX_DATACHECK_OFF = _pycplex_platform.CPX_DATACHECK_OFF
CPX_DATACHECK_WARN = _pycplex_platform.CPX_DATACHECK_WARN
CPX_DATACHECK_ASSIST = _pycplex_platform.CPX_DATACHECK_ASSIST
CPX_PPRIIND_PARTIAL = _pycplex_platform.CPX_PPRIIND_PARTIAL
CPX_PPRIIND_AUTO = _pycplex_platform.CPX_PPRIIND_AUTO
CPX_PPRIIND_DEVEX = _pycplex_platform.CPX_PPRIIND_DEVEX
CPX_PPRIIND_STEEP = _pycplex_platform.CPX_PPRIIND_STEEP
CPX_PPRIIND_STEEPQSTART = _pycplex_platform.CPX_PPRIIND_STEEPQSTART
CPX_PPRIIND_FULL = _pycplex_platform.CPX_PPRIIND_FULL
CPX_DPRIIND_AUTO = _pycplex_platform.CPX_DPRIIND_AUTO
CPX_DPRIIND_FULL = _pycplex_platform.CPX_DPRIIND_FULL
CPX_DPRIIND_STEEP = _pycplex_platform.CPX_DPRIIND_STEEP
CPX_DPRIIND_FULLSTEEP = _pycplex_platform.CPX_DPRIIND_FULLSTEEP
CPX_DPRIIND_STEEPQSTART = _pycplex_platform.CPX_DPRIIND_STEEPQSTART
CPX_DPRIIND_DEVEX = _pycplex_platform.CPX_DPRIIND_DEVEX
CPX_PARALLEL_DETERMINISTIC = _pycplex_platform.CPX_PARALLEL_DETERMINISTIC
CPX_PARALLEL_AUTO = _pycplex_platform.CPX_PARALLEL_AUTO
CPX_PARALLEL_OPPORTUNISTIC = _pycplex_platform.CPX_PARALLEL_OPPORTUNISTIC
CPX_WRITELEVEL_AUTO = _pycplex_platform.CPX_WRITELEVEL_AUTO
CPX_WRITELEVEL_ALLVARS = _pycplex_platform.CPX_WRITELEVEL_ALLVARS
CPX_WRITELEVEL_DISCRETEVARS = _pycplex_platform.CPX_WRITELEVEL_DISCRETEVARS
CPX_WRITELEVEL_NONZEROVARS = _pycplex_platform.CPX_WRITELEVEL_NONZEROVARS
CPX_WRITELEVEL_NONZERODISCRETEVARS = _pycplex_platform.CPX_WRITELEVEL_NONZERODISCRETEVARS
CPX_OPTIMALITYTARGET_AUTO = _pycplex_platform.CPX_OPTIMALITYTARGET_AUTO
CPX_OPTIMALITYTARGET_OPTIMALCONVEX = _pycplex_platform.CPX_OPTIMALITYTARGET_OPTIMALCONVEX
CPX_OPTIMALITYTARGET_FIRSTORDER = _pycplex_platform.CPX_OPTIMALITYTARGET_FIRSTORDER
CPX_OPTIMALITYTARGET_OPTIMALGLOBAL = _pycplex_platform.CPX_OPTIMALITYTARGET_OPTIMALGLOBAL
CPX_ALG_NONE = _pycplex_platform.CPX_ALG_NONE
CPX_ALG_AUTOMATIC = _pycplex_platform.CPX_ALG_AUTOMATIC
CPX_ALG_PRIMAL = _pycplex_platform.CPX_ALG_PRIMAL
CPX_ALG_DUAL = _pycplex_platform.CPX_ALG_DUAL
CPX_ALG_NET = _pycplex_platform.CPX_ALG_NET
CPX_ALG_BARRIER = _pycplex_platform.CPX_ALG_BARRIER
CPX_ALG_SIFTING = _pycplex_platform.CPX_ALG_SIFTING
CPX_ALG_CONCURRENT = _pycplex_platform.CPX_ALG_CONCURRENT
CPX_ALG_BAROPT = _pycplex_platform.CPX_ALG_BAROPT
CPX_ALG_PIVOTIN = _pycplex_platform.CPX_ALG_PIVOTIN
CPX_ALG_PIVOTOUT = _pycplex_platform.CPX_ALG_PIVOTOUT
CPX_ALG_PIVOT = _pycplex_platform.CPX_ALG_PIVOT
CPX_ALG_FEASOPT = _pycplex_platform.CPX_ALG_FEASOPT
CPX_ALG_MIP = _pycplex_platform.CPX_ALG_MIP
CPX_ALG_BENDERS = _pycplex_platform.CPX_ALG_BENDERS
CPX_ALG_MULTIOBJ = _pycplex_platform.CPX_ALG_MULTIOBJ
CPX_ALG_ROBUST = _pycplex_platform.CPX_ALG_ROBUST
CPX_AT_LOWER = _pycplex_platform.CPX_AT_LOWER
CPX_BASIC = _pycplex_platform.CPX_BASIC
CPX_AT_UPPER = _pycplex_platform.CPX_AT_UPPER
CPX_FREE_SUPER = _pycplex_platform.CPX_FREE_SUPER
CPX_NO_VARIABLE = _pycplex_platform.CPX_NO_VARIABLE
CPX_CONTINUOUS = _pycplex_platform.CPX_CONTINUOUS
CPX_BINARY = _pycplex_platform.CPX_BINARY
CPX_INTEGER = _pycplex_platform.CPX_INTEGER
CPX_SEMICONT = _pycplex_platform.CPX_SEMICONT
CPX_SEMIINT = _pycplex_platform.CPX_SEMIINT
CPX_PREREDUCE_PRIMALANDDUAL = _pycplex_platform.CPX_PREREDUCE_PRIMALANDDUAL
CPX_PREREDUCE_DUALONLY = _pycplex_platform.CPX_PREREDUCE_DUALONLY
CPX_PREREDUCE_PRIMALONLY = _pycplex_platform.CPX_PREREDUCE_PRIMALONLY
CPX_PREREDUCE_NOPRIMALORDUAL = _pycplex_platform.CPX_PREREDUCE_NOPRIMALORDUAL
CPX_PREREFORM_ALL = _pycplex_platform.CPX_PREREFORM_ALL
CPX_PREREFORM_INTERFERE_CRUSH = _pycplex_platform.CPX_PREREFORM_INTERFERE_CRUSH
CPX_PREREFORM_INTERFERE_UNCRUSH = _pycplex_platform.CPX_PREREFORM_INTERFERE_UNCRUSH
CPX_PREREFORM_NONE = _pycplex_platform.CPX_PREREFORM_NONE
CPX_CONFLICT_EXCLUDED = _pycplex_platform.CPX_CONFLICT_EXCLUDED
CPX_CONFLICT_POSSIBLE_MEMBER = _pycplex_platform.CPX_CONFLICT_POSSIBLE_MEMBER
CPX_CONFLICT_POSSIBLE_LB = _pycplex_platform.CPX_CONFLICT_POSSIBLE_LB
CPX_CONFLICT_POSSIBLE_UB = _pycplex_platform.CPX_CONFLICT_POSSIBLE_UB
CPX_CONFLICT_MEMBER = _pycplex_platform.CPX_CONFLICT_MEMBER
CPX_CONFLICT_LB = _pycplex_platform.CPX_CONFLICT_LB
CPX_CONFLICT_UB = _pycplex_platform.CPX_CONFLICT_UB
CPX_CONFLICTALG_AUTO = _pycplex_platform.CPX_CONFLICTALG_AUTO
CPX_CONFLICTALG_FAST = _pycplex_platform.CPX_CONFLICTALG_FAST
CPX_CONFLICTALG_PROPAGATE = _pycplex_platform.CPX_CONFLICTALG_PROPAGATE
CPX_CONFLICTALG_PRESOLVE = _pycplex_platform.CPX_CONFLICTALG_PRESOLVE
CPX_CONFLICTALG_IIS = _pycplex_platform.CPX_CONFLICTALG_IIS
CPX_CONFLICTALG_LIMITSOLVE = _pycplex_platform.CPX_CONFLICTALG_LIMITSOLVE
CPX_CONFLICTALG_SOLVE = _pycplex_platform.CPX_CONFLICTALG_SOLVE
CPXPROB_LP = _pycplex_platform.CPXPROB_LP
CPXPROB_MILP = _pycplex_platform.CPXPROB_MILP
CPXPROB_FIXEDMILP = _pycplex_platform.CPXPROB_FIXEDMILP
CPXPROB_NODELP = _pycplex_platform.CPXPROB_NODELP
CPXPROB_QP = _pycplex_platform.CPXPROB_QP
CPXPROB_MIQP = _pycplex_platform.CPXPROB_MIQP
CPXPROB_FIXEDMIQP = _pycplex_platform.CPXPROB_FIXEDMIQP
CPXPROB_NODEQP = _pycplex_platform.CPXPROB_NODEQP
CPXPROB_QCP = _pycplex_platform.CPXPROB_QCP
CPXPROB_MIQCP = _pycplex_platform.CPXPROB_MIQCP
CPXPROB_NODEQCP = _pycplex_platform.CPXPROB_NODEQCP
CPX_LPREADER_LEGACY = _pycplex_platform.CPX_LPREADER_LEGACY
CPX_LPREADER_NEW = _pycplex_platform.CPX_LPREADER_NEW
CPX_PARAM_ALL_MIN = _pycplex_platform.CPX_PARAM_ALL_MIN
CPX_PARAM_ALL_MAX = _pycplex_platform.CPX_PARAM_ALL_MAX
CPX_CALLBACK_PRIMAL = _pycplex_platform.CPX_CALLBACK_PRIMAL
CPX_CALLBACK_DUAL = _pycplex_platform.CPX_CALLBACK_DUAL
CPX_CALLBACK_NETWORK = _pycplex_platform.CPX_CALLBACK_NETWORK
CPX_CALLBACK_PRIMAL_CROSSOVER = _pycplex_platform.CPX_CALLBACK_PRIMAL_CROSSOVER
CPX_CALLBACK_DUAL_CROSSOVER = _pycplex_platform.CPX_CALLBACK_DUAL_CROSSOVER
CPX_CALLBACK_BARRIER = _pycplex_platform.CPX_CALLBACK_BARRIER
CPX_CALLBACK_PRESOLVE = _pycplex_platform.CPX_CALLBACK_PRESOLVE
CPX_CALLBACK_QPBARRIER = _pycplex_platform.CPX_CALLBACK_QPBARRIER
CPX_CALLBACK_QPSIMPLEX = _pycplex_platform.CPX_CALLBACK_QPSIMPLEX
CPX_CALLBACK_TUNING = _pycplex_platform.CPX_CALLBACK_TUNING
CPX_CALLBACK_INFO_PRIMAL_OBJ = _pycplex_platform.CPX_CALLBACK_INFO_PRIMAL_OBJ
CPX_CALLBACK_INFO_DUAL_OBJ = _pycplex_platform.CPX_CALLBACK_INFO_DUAL_OBJ
CPX_CALLBACK_INFO_PRIMAL_INFMEAS = _pycplex_platform.CPX_CALLBACK_INFO_PRIMAL_INFMEAS
CPX_CALLBACK_INFO_DUAL_INFMEAS = _pycplex_platform.CPX_CALLBACK_INFO_DUAL_INFMEAS
CPX_CALLBACK_INFO_PRIMAL_FEAS = _pycplex_platform.CPX_CALLBACK_INFO_PRIMAL_FEAS
CPX_CALLBACK_INFO_DUAL_FEAS = _pycplex_platform.CPX_CALLBACK_INFO_DUAL_FEAS
CPX_CALLBACK_INFO_ITCOUNT = _pycplex_platform.CPX_CALLBACK_INFO_ITCOUNT
CPX_CALLBACK_INFO_CROSSOVER_PPUSH = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_PPUSH
CPX_CALLBACK_INFO_CROSSOVER_PEXCH = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_PEXCH
CPX_CALLBACK_INFO_CROSSOVER_DPUSH = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_DPUSH
CPX_CALLBACK_INFO_CROSSOVER_DEXCH = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_DEXCH
CPX_CALLBACK_INFO_CROSSOVER_SBCNT = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_SBCNT
CPX_CALLBACK_INFO_PRESOLVE_ROWSGONE = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_ROWSGONE
CPX_CALLBACK_INFO_PRESOLVE_COLSGONE = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_COLSGONE
CPX_CALLBACK_INFO_PRESOLVE_AGGSUBST = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_AGGSUBST
CPX_CALLBACK_INFO_PRESOLVE_COEFFS = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_COEFFS
CPX_CALLBACK_INFO_USER_PROBLEM = _pycplex_platform.CPX_CALLBACK_INFO_USER_PROBLEM
CPX_CALLBACK_INFO_TUNING_PROGRESS = _pycplex_platform.CPX_CALLBACK_INFO_TUNING_PROGRESS
CPX_CALLBACK_INFO_ENDTIME = _pycplex_platform.CPX_CALLBACK_INFO_ENDTIME
CPX_CALLBACK_INFO_ITCOUNT_LONG = _pycplex_platform.CPX_CALLBACK_INFO_ITCOUNT_LONG
CPX_CALLBACK_INFO_CROSSOVER_PPUSH_LONG = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_PPUSH_LONG
CPX_CALLBACK_INFO_CROSSOVER_PEXCH_LONG = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_PEXCH_LONG
CPX_CALLBACK_INFO_CROSSOVER_DPUSH_LONG = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_DPUSH_LONG
CPX_CALLBACK_INFO_CROSSOVER_DEXCH_LONG = _pycplex_platform.CPX_CALLBACK_INFO_CROSSOVER_DEXCH_LONG
CPX_CALLBACK_INFO_PRESOLVE_AGGSUBST_LONG = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_AGGSUBST_LONG
CPX_CALLBACK_INFO_PRESOLVE_COEFFS_LONG = _pycplex_platform.CPX_CALLBACK_INFO_PRESOLVE_COEFFS_LONG
CPX_CALLBACK_INFO_ENDDETTIME = _pycplex_platform.CPX_CALLBACK_INFO_ENDDETTIME
CPX_CALLBACK_INFO_STARTTIME = _pycplex_platform.CPX_CALLBACK_INFO_STARTTIME
CPX_CALLBACK_INFO_STARTDETTIME = _pycplex_platform.CPX_CALLBACK_INFO_STARTDETTIME
CPX_TUNE_AVERAGE = _pycplex_platform.CPX_TUNE_AVERAGE
CPX_TUNE_MINMAX = _pycplex_platform.CPX_TUNE_MINMAX
CPX_TUNE_ABORT = _pycplex_platform.CPX_TUNE_ABORT
CPX_TUNE_TILIM = _pycplex_platform.CPX_TUNE_TILIM
CPX_TUNE_DETTILIM = _pycplex_platform.CPX_TUNE_DETTILIM
CPX_FEASOPT_MIN_SUM = _pycplex_platform.CPX_FEASOPT_MIN_SUM
CPX_FEASOPT_OPT_SUM = _pycplex_platform.CPX_FEASOPT_OPT_SUM
CPX_FEASOPT_MIN_INF = _pycplex_platform.CPX_FEASOPT_MIN_INF
CPX_FEASOPT_OPT_INF = _pycplex_platform.CPX_FEASOPT_OPT_INF
CPX_FEASOPT_MIN_QUAD = _pycplex_platform.CPX_FEASOPT_MIN_QUAD
CPX_FEASOPT_OPT_QUAD = _pycplex_platform.CPX_FEASOPT_OPT_QUAD
CPX_BENDERSSTRATEGY_OFF = _pycplex_platform.CPX_BENDERSSTRATEGY_OFF
CPX_BENDERSSTRATEGY_AUTO = _pycplex_platform.CPX_BENDERSSTRATEGY_AUTO
CPX_BENDERSSTRATEGY_USER = _pycplex_platform.CPX_BENDERSSTRATEGY_USER
CPX_BENDERSSTRATEGY_WORKERS = _pycplex_platform.CPX_BENDERSSTRATEGY_WORKERS
CPX_BENDERSSTRATEGY_FULL = _pycplex_platform.CPX_BENDERSSTRATEGY_FULL
CPX_ANNOTATIONDATA_LONG = _pycplex_platform.CPX_ANNOTATIONDATA_LONG
CPX_ANNOTATIONDATA_DOUBLE = _pycplex_platform.CPX_ANNOTATIONDATA_DOUBLE
CPX_ANNOTATIONOBJ_OBJ = _pycplex_platform.CPX_ANNOTATIONOBJ_OBJ
CPX_ANNOTATIONOBJ_COL = _pycplex_platform.CPX_ANNOTATIONOBJ_COL
CPX_ANNOTATIONOBJ_ROW = _pycplex_platform.CPX_ANNOTATIONOBJ_ROW
CPX_ANNOTATIONOBJ_SOS = _pycplex_platform.CPX_ANNOTATIONOBJ_SOS
CPX_ANNOTATIONOBJ_IND = _pycplex_platform.CPX_ANNOTATIONOBJ_IND
CPX_ANNOTATIONOBJ_QC = _pycplex_platform.CPX_ANNOTATIONOBJ_QC
CPX_ANNOTATIONOBJ_LAST = _pycplex_platform.CPX_ANNOTATIONOBJ_LAST
CPXIIS_COMPLETE = _pycplex_platform.CPXIIS_COMPLETE
CPXIIS_PARTIAL = _pycplex_platform.CPXIIS_PARTIAL
CPXIIS_AT_LOWER = _pycplex_platform.CPXIIS_AT_LOWER
CPXIIS_FIXED = _pycplex_platform.CPXIIS_FIXED
CPXIIS_AT_UPPER = _pycplex_platform.CPXIIS_AT_UPPER
CPX_BARORDER_AUTO = _pycplex_platform.CPX_BARORDER_AUTO
CPX_BARORDER_AMD = _pycplex_platform.CPX_BARORDER_AMD
CPX_BARORDER_AMF = _pycplex_platform.CPX_BARORDER_AMF
CPX_BARORDER_ND = _pycplex_platform.CPX_BARORDER_ND
CPX_MIPEMPHASIS_BALANCED = _pycplex_platform.CPX_MIPEMPHASIS_BALANCED
CPX_MIPEMPHASIS_FEASIBILITY = _pycplex_platform.CPX_MIPEMPHASIS_FEASIBILITY
CPX_MIPEMPHASIS_OPTIMALITY = _pycplex_platform.CPX_MIPEMPHASIS_OPTIMALITY
CPX_MIPEMPHASIS_BESTBOUND = _pycplex_platform.CPX_MIPEMPHASIS_BESTBOUND
CPX_MIPEMPHASIS_HIDDENFEAS = _pycplex_platform.CPX_MIPEMPHASIS_HIDDENFEAS
CPX_MIPEMPHASIS_HEURISTIC = _pycplex_platform.CPX_MIPEMPHASIS_HEURISTIC
CPX_TYPE_VAR = _pycplex_platform.CPX_TYPE_VAR
CPX_TYPE_SOS1 = _pycplex_platform.CPX_TYPE_SOS1
CPX_TYPE_SOS2 = _pycplex_platform.CPX_TYPE_SOS2
CPX_TYPE_USER = _pycplex_platform.CPX_TYPE_USER
CPX_TYPE_ANY = _pycplex_platform.CPX_TYPE_ANY
CPX_VARSEL_MININFEAS = _pycplex_platform.CPX_VARSEL_MININFEAS
CPX_VARSEL_DEFAULT = _pycplex_platform.CPX_VARSEL_DEFAULT
CPX_VARSEL_MAXINFEAS = _pycplex_platform.CPX_VARSEL_MAXINFEAS
CPX_VARSEL_PSEUDO = _pycplex_platform.CPX_VARSEL_PSEUDO
CPX_VARSEL_STRONG = _pycplex_platform.CPX_VARSEL_STRONG
CPX_VARSEL_PSEUDOREDUCED = _pycplex_platform.CPX_VARSEL_PSEUDOREDUCED
CPX_NODESEL_DFS = _pycplex_platform.CPX_NODESEL_DFS
CPX_NODESEL_BESTBOUND = _pycplex_platform.CPX_NODESEL_BESTBOUND
CPX_NODESEL_BESTEST = _pycplex_platform.CPX_NODESEL_BESTEST
CPX_NODESEL_BESTEST_ALT = _pycplex_platform.CPX_NODESEL_BESTEST_ALT
CPX_MIPORDER_COST = _pycplex_platform.CPX_MIPORDER_COST
CPX_MIPORDER_BOUNDS = _pycplex_platform.CPX_MIPORDER_BOUNDS
CPX_MIPORDER_SCALEDCOST = _pycplex_platform.CPX_MIPORDER_SCALEDCOST
CPX_BRANCH_GLOBAL = _pycplex_platform.CPX_BRANCH_GLOBAL
CPX_BRANCH_DOWN = _pycplex_platform.CPX_BRANCH_DOWN
CPX_BRANCH_UP = _pycplex_platform.CPX_BRANCH_UP
CPX_BRDIR_DOWN = _pycplex_platform.CPX_BRDIR_DOWN
CPX_BRDIR_AUTO = _pycplex_platform.CPX_BRDIR_AUTO
CPX_BRDIR_UP = _pycplex_platform.CPX_BRDIR_UP
CPX_CUT_COVER = _pycplex_platform.CPX_CUT_COVER
CPX_CUT_GUBCOVER = _pycplex_platform.CPX_CUT_GUBCOVER
CPX_CUT_FLOWCOVER = _pycplex_platform.CPX_CUT_FLOWCOVER
CPX_CUT_CLIQUE = _pycplex_platform.CPX_CUT_CLIQUE
CPX_CUT_FRAC = _pycplex_platform.CPX_CUT_FRAC
CPX_CUT_MIR = _pycplex_platform.CPX_CUT_MIR
CPX_CUT_FLOWPATH = _pycplex_platform.CPX_CUT_FLOWPATH
CPX_CUT_DISJ = _pycplex_platform.CPX_CUT_DISJ
CPX_CUT_IMPLBD = _pycplex_platform.CPX_CUT_IMPLBD
CPX_CUT_ZEROHALF = _pycplex_platform.CPX_CUT_ZEROHALF
CPX_CUT_MCF = _pycplex_platform.CPX_CUT_MCF
CPX_CUT_LOCALCOVER = _pycplex_platform.CPX_CUT_LOCALCOVER
CPX_CUT_TIGHTEN = _pycplex_platform.CPX_CUT_TIGHTEN
CPX_CUT_OBJDISJ = _pycplex_platform.CPX_CUT_OBJDISJ
CPX_CUT_LANDP = _pycplex_platform.CPX_CUT_LANDP
CPX_CUT_USER = _pycplex_platform.CPX_CUT_USER
CPX_CUT_TABLE = _pycplex_platform.CPX_CUT_TABLE
CPX_CUT_SOLNPOOL = _pycplex_platform.CPX_CUT_SOLNPOOL
CPX_CUT_LOCALIMPLBD = _pycplex_platform.CPX_CUT_LOCALIMPLBD
CPX_CUT_BQP = _pycplex_platform.CPX_CUT_BQP
CPX_CUT_RLT = _pycplex_platform.CPX_CUT_RLT
CPX_CUT_BENDERS = _pycplex_platform.CPX_CUT_BENDERS
CPX_CUT_NUM_TYPES = _pycplex_platform.CPX_CUT_NUM_TYPES
CPX_MIPSEARCH_AUTO = _pycplex_platform.CPX_MIPSEARCH_AUTO
CPX_MIPSEARCH_TRADITIONAL = _pycplex_platform.CPX_MIPSEARCH_TRADITIONAL
CPX_MIPSEARCH_DYNAMIC = _pycplex_platform.CPX_MIPSEARCH_DYNAMIC
CPX_MIPKAPPA_OFF = _pycplex_platform.CPX_MIPKAPPA_OFF
CPX_MIPKAPPA_AUTO = _pycplex_platform.CPX_MIPKAPPA_AUTO
CPX_MIPKAPPA_SAMPLE = _pycplex_platform.CPX_MIPKAPPA_SAMPLE
CPX_MIPKAPPA_FULL = _pycplex_platform.CPX_MIPKAPPA_FULL
CPX_MIPSTART_AUTO = _pycplex_platform.CPX_MIPSTART_AUTO
CPX_MIPSTART_CHECKFEAS = _pycplex_platform.CPX_MIPSTART_CHECKFEAS
CPX_MIPSTART_SOLVEFIXED = _pycplex_platform.CPX_MIPSTART_SOLVEFIXED
CPX_MIPSTART_SOLVEMIP = _pycplex_platform.CPX_MIPSTART_SOLVEMIP
CPX_MIPSTART_REPAIR = _pycplex_platform.CPX_MIPSTART_REPAIR
CPX_MIPSTART_NOCHECK = _pycplex_platform.CPX_MIPSTART_NOCHECK
CPX_CALLBACK_MIP = _pycplex_platform.CPX_CALLBACK_MIP
CPX_CALLBACK_MIP_BRANCH = _pycplex_platform.CPX_CALLBACK_MIP_BRANCH
CPX_CALLBACK_MIP_NODE = _pycplex_platform.CPX_CALLBACK_MIP_NODE
CPX_CALLBACK_MIP_HEURISTIC = _pycplex_platform.CPX_CALLBACK_MIP_HEURISTIC
CPX_CALLBACK_MIP_SOLVE = _pycplex_platform.CPX_CALLBACK_MIP_SOLVE
CPX_CALLBACK_MIP_CUT_LOOP = _pycplex_platform.CPX_CALLBACK_MIP_CUT_LOOP
CPX_CALLBACK_MIP_PROBE = _pycplex_platform.CPX_CALLBACK_MIP_PROBE
CPX_CALLBACK_MIP_FRACCUT = _pycplex_platform.CPX_CALLBACK_MIP_FRACCUT
CPX_CALLBACK_MIP_DISJCUT = _pycplex_platform.CPX_CALLBACK_MIP_DISJCUT
CPX_CALLBACK_MIP_FLOWMIR = _pycplex_platform.CPX_CALLBACK_MIP_FLOWMIR
CPX_CALLBACK_MIP_INCUMBENT_NODESOLN = _pycplex_platform.CPX_CALLBACK_MIP_INCUMBENT_NODESOLN
CPX_CALLBACK_MIP_DELETENODE = _pycplex_platform.CPX_CALLBACK_MIP_DELETENODE
CPX_CALLBACK_MIP_BRANCH_NOSOLN = _pycplex_platform.CPX_CALLBACK_MIP_BRANCH_NOSOLN
CPX_CALLBACK_MIP_CUT_LAST = _pycplex_platform.CPX_CALLBACK_MIP_CUT_LAST
CPX_CALLBACK_MIP_CUT_FEAS = _pycplex_platform.CPX_CALLBACK_MIP_CUT_FEAS
CPX_CALLBACK_MIP_CUT_UNBD = _pycplex_platform.CPX_CALLBACK_MIP_CUT_UNBD
CPX_CALLBACK_MIP_INCUMBENT_HEURSOLN = _pycplex_platform.CPX_CALLBACK_MIP_INCUMBENT_HEURSOLN
CPX_CALLBACK_MIP_INCUMBENT_USERSOLN = _pycplex_platform.CPX_CALLBACK_MIP_INCUMBENT_USERSOLN
CPX_CALLBACK_MIP_INCUMBENT_MIPSTART = _pycplex_platform.CPX_CALLBACK_MIP_INCUMBENT_MIPSTART
CPX_CALLBACK_INFO_BEST_INTEGER = _pycplex_platform.CPX_CALLBACK_INFO_BEST_INTEGER
CPX_CALLBACK_INFO_BEST_REMAINING = _pycplex_platform.CPX_CALLBACK_INFO_BEST_REMAINING
CPX_CALLBACK_INFO_NODE_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_NODE_COUNT
CPX_CALLBACK_INFO_NODES_LEFT = _pycplex_platform.CPX_CALLBACK_INFO_NODES_LEFT
CPX_CALLBACK_INFO_MIP_ITERATIONS = _pycplex_platform.CPX_CALLBACK_INFO_MIP_ITERATIONS
CPX_CALLBACK_INFO_CUTOFF = _pycplex_platform.CPX_CALLBACK_INFO_CUTOFF
CPX_CALLBACK_INFO_CLIQUE_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_CLIQUE_COUNT
CPX_CALLBACK_INFO_COVER_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_COVER_COUNT
CPX_CALLBACK_INFO_MIP_FEAS = _pycplex_platform.CPX_CALLBACK_INFO_MIP_FEAS
CPX_CALLBACK_INFO_FLOWCOVER_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_FLOWCOVER_COUNT
CPX_CALLBACK_INFO_GUBCOVER_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_GUBCOVER_COUNT
CPX_CALLBACK_INFO_IMPLBD_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_IMPLBD_COUNT
CPX_CALLBACK_INFO_PROBE_PHASE = _pycplex_platform.CPX_CALLBACK_INFO_PROBE_PHASE
CPX_CALLBACK_INFO_PROBE_PROGRESS = _pycplex_platform.CPX_CALLBACK_INFO_PROBE_PROGRESS
CPX_CALLBACK_INFO_FRACCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_FRACCUT_COUNT
CPX_CALLBACK_INFO_FRACCUT_PROGRESS = _pycplex_platform.CPX_CALLBACK_INFO_FRACCUT_PROGRESS
CPX_CALLBACK_INFO_DISJCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_DISJCUT_COUNT
CPX_CALLBACK_INFO_DISJCUT_PROGRESS = _pycplex_platform.CPX_CALLBACK_INFO_DISJCUT_PROGRESS
CPX_CALLBACK_INFO_FLOWPATH_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_FLOWPATH_COUNT
CPX_CALLBACK_INFO_MIRCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_MIRCUT_COUNT
CPX_CALLBACK_INFO_FLOWMIR_PROGRESS = _pycplex_platform.CPX_CALLBACK_INFO_FLOWMIR_PROGRESS
CPX_CALLBACK_INFO_ZEROHALFCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_ZEROHALFCUT_COUNT
CPX_CALLBACK_INFO_MY_THREAD_NUM = _pycplex_platform.CPX_CALLBACK_INFO_MY_THREAD_NUM
CPX_CALLBACK_INFO_USER_THREADS = _pycplex_platform.CPX_CALLBACK_INFO_USER_THREADS
CPX_CALLBACK_INFO_MIP_REL_GAP = _pycplex_platform.CPX_CALLBACK_INFO_MIP_REL_GAP
CPX_CALLBACK_INFO_MCFCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_MCFCUT_COUNT
CPX_CALLBACK_INFO_KAPPA_STABLE = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_STABLE
CPX_CALLBACK_INFO_KAPPA_SUSPICIOUS = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_SUSPICIOUS
CPX_CALLBACK_INFO_KAPPA_UNSTABLE = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_UNSTABLE
CPX_CALLBACK_INFO_KAPPA_ILLPOSED = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_ILLPOSED
CPX_CALLBACK_INFO_KAPPA_MAX = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_MAX
CPX_CALLBACK_INFO_KAPPA_ATTENTION = _pycplex_platform.CPX_CALLBACK_INFO_KAPPA_ATTENTION
CPX_CALLBACK_INFO_LANDPCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_LANDPCUT_COUNT
CPX_CALLBACK_INFO_USERCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_USERCUT_COUNT
CPX_CALLBACK_INFO_TABLECUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_TABLECUT_COUNT
CPX_CALLBACK_INFO_SOLNPOOLCUT_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_SOLNPOOLCUT_COUNT
CPX_CALLBACK_INFO_BENDERS_COUNT = _pycplex_platform.CPX_CALLBACK_INFO_BENDERS_COUNT
CPX_CALLBACK_INFO_NODE_COUNT_LONG = _pycplex_platform.CPX_CALLBACK_INFO_NODE_COUNT_LONG
CPX_CALLBACK_INFO_NODES_LEFT_LONG = _pycplex_platform.CPX_CALLBACK_INFO_NODES_LEFT_LONG
CPX_CALLBACK_INFO_MIP_ITERATIONS_LONG = _pycplex_platform.CPX_CALLBACK_INFO_MIP_ITERATIONS_LONG
CPX_CALLBACK_INFO_LAZY_SOURCE = _pycplex_platform.CPX_CALLBACK_INFO_LAZY_SOURCE
CPX_CALLBACK_INFO_NODE_SIINF = _pycplex_platform.CPX_CALLBACK_INFO_NODE_SIINF
CPX_CALLBACK_INFO_NODE_NIINF = _pycplex_platform.CPX_CALLBACK_INFO_NODE_NIINF
CPX_CALLBACK_INFO_NODE_ESTIMATE = _pycplex_platform.CPX_CALLBACK_INFO_NODE_ESTIMATE
CPX_CALLBACK_INFO_NODE_DEPTH = _pycplex_platform.CPX_CALLBACK_INFO_NODE_DEPTH
CPX_CALLBACK_INFO_NODE_OBJVAL = _pycplex_platform.CPX_CALLBACK_INFO_NODE_OBJVAL
CPX_CALLBACK_INFO_NODE_TYPE = _pycplex_platform.CPX_CALLBACK_INFO_NODE_TYPE
CPX_CALLBACK_INFO_NODE_VAR = _pycplex_platform.CPX_CALLBACK_INFO_NODE_VAR
CPX_CALLBACK_INFO_NODE_SOS = _pycplex_platform.CPX_CALLBACK_INFO_NODE_SOS
CPX_CALLBACK_INFO_NODE_SEQNUM = _pycplex_platform.CPX_CALLBACK_INFO_NODE_SEQNUM
CPX_CALLBACK_INFO_NODE_USERHANDLE = _pycplex_platform.CPX_CALLBACK_INFO_NODE_USERHANDLE
CPX_CALLBACK_INFO_NODE_NODENUM = _pycplex_platform.CPX_CALLBACK_INFO_NODE_NODENUM
CPX_CALLBACK_INFO_NODE_SEQNUM_LONG = _pycplex_platform.CPX_CALLBACK_INFO_NODE_SEQNUM_LONG
CPX_CALLBACK_INFO_NODE_NODENUM_LONG = _pycplex_platform.CPX_CALLBACK_INFO_NODE_NODENUM_LONG
CPX_CALLBACK_INFO_NODE_DEPTH_LONG = _pycplex_platform.CPX_CALLBACK_INFO_NODE_DEPTH_LONG
CPX_CALLBACK_INFO_SOS_TYPE = _pycplex_platform.CPX_CALLBACK_INFO_SOS_TYPE
CPX_CALLBACK_INFO_SOS_SIZE = _pycplex_platform.CPX_CALLBACK_INFO_SOS_SIZE
CPX_CALLBACK_INFO_SOS_IS_FEASIBLE = _pycplex_platform.CPX_CALLBACK_INFO_SOS_IS_FEASIBLE
CPX_CALLBACK_INFO_SOS_MEMBER_INDEX = _pycplex_platform.CPX_CALLBACK_INFO_SOS_MEMBER_INDEX
CPX_CALLBACK_INFO_SOS_MEMBER_REFVAL = _pycplex_platform.CPX_CALLBACK_INFO_SOS_MEMBER_REFVAL
CPX_CALLBACK_INFO_SOS_NUM = _pycplex_platform.CPX_CALLBACK_INFO_SOS_NUM
CPX_CALLBACK_INFO_IC_NUM = _pycplex_platform.CPX_CALLBACK_INFO_IC_NUM
CPX_CALLBACK_INFO_IC_IMPLYING_VAR = _pycplex_platform.CPX_CALLBACK_INFO_IC_IMPLYING_VAR
CPX_CALLBACK_INFO_IC_IMPLIED_VAR = _pycplex_platform.CPX_CALLBACK_INFO_IC_IMPLIED_VAR
CPX_CALLBACK_INFO_IC_SENSE = _pycplex_platform.CPX_CALLBACK_INFO_IC_SENSE
CPX_CALLBACK_INFO_IC_COMPL = _pycplex_platform.CPX_CALLBACK_INFO_IC_COMPL
CPX_CALLBACK_INFO_IC_RHS = _pycplex_platform.CPX_CALLBACK_INFO_IC_RHS
CPX_CALLBACK_INFO_IC_IS_FEASIBLE = _pycplex_platform.CPX_CALLBACK_INFO_IC_IS_FEASIBLE
CPX_INCUMBENT_ID = _pycplex_platform.CPX_INCUMBENT_ID
CPX_RAMPUP_DISABLED = _pycplex_platform.CPX_RAMPUP_DISABLED
CPX_RAMPUP_AUTO = _pycplex_platform.CPX_RAMPUP_AUTO
CPX_RAMPUP_DYNAMIC = _pycplex_platform.CPX_RAMPUP_DYNAMIC
CPX_RAMPUP_INFINITE = _pycplex_platform.CPX_RAMPUP_INFINITE
CPX_CALLBACK_DEFAULT = _pycplex_platform.CPX_CALLBACK_DEFAULT
CPX_CALLBACK_FAIL = _pycplex_platform.CPX_CALLBACK_FAIL
CPX_CALLBACK_SET = _pycplex_platform.CPX_CALLBACK_SET
CPX_CALLBACK_ABORT_CUT_LOOP = _pycplex_platform.CPX_CALLBACK_ABORT_CUT_LOOP
CPX_USECUT_FORCE = _pycplex_platform.CPX_USECUT_FORCE
CPX_USECUT_PURGE = _pycplex_platform.CPX_USECUT_PURGE
CPX_USECUT_FILTER = _pycplex_platform.CPX_USECUT_FILTER
CPX_INTEGER_FEASIBLE = _pycplex_platform.CPX_INTEGER_FEASIBLE
CPX_INTEGER_INFEASIBLE = _pycplex_platform.CPX_INTEGER_INFEASIBLE
CPX_IMPLIED_INTEGER_FEASIBLE = _pycplex_platform.CPX_IMPLIED_INTEGER_FEASIBLE
CPX_CON_LOWER_BOUND = _pycplex_platform.CPX_CON_LOWER_BOUND
CPX_CON_UPPER_BOUND = _pycplex_platform.CPX_CON_UPPER_BOUND
CPX_CON_LINEAR = _pycplex_platform.CPX_CON_LINEAR
CPX_CON_QUADRATIC = _pycplex_platform.CPX_CON_QUADRATIC
CPX_CON_SOS = _pycplex_platform.CPX_CON_SOS
CPX_CON_INDICATOR = _pycplex_platform.CPX_CON_INDICATOR
CPX_CON_PWL = _pycplex_platform.CPX_CON_PWL
CPX_CON_ABS = _pycplex_platform.CPX_CON_ABS
CPX_CON_MINEXPR = _pycplex_platform.CPX_CON_MINEXPR
CPX_CON_MAXEXPR = _pycplex_platform.CPX_CON_MAXEXPR
CPX_CON_LAST_CONTYPE = _pycplex_platform.CPX_CON_LAST_CONTYPE
CPX_INDICATOR_IF = _pycplex_platform.CPX_INDICATOR_IF
CPX_INDICATOR_ONLYIF = _pycplex_platform.CPX_INDICATOR_ONLYIF
CPX_INDICATOR_IFANDONLYIF = _pycplex_platform.CPX_INDICATOR_IFANDONLYIF
CPXNET_NO_DISPLAY_OBJECTIVE = _pycplex_platform.CPXNET_NO_DISPLAY_OBJECTIVE
CPXNET_TRUE_OBJECTIVE = _pycplex_platform.CPXNET_TRUE_OBJECTIVE
CPXNET_PENALIZED_OBJECTIVE = _pycplex_platform.CPXNET_PENALIZED_OBJECTIVE
CPXNET_PRICE_AUTO = _pycplex_platform.CPXNET_PRICE_AUTO
CPXNET_PRICE_PARTIAL = _pycplex_platform.CPXNET_PRICE_PARTIAL
CPXNET_PRICE_MULT_PART = _pycplex_platform.CPXNET_PRICE_MULT_PART
CPXNET_PRICE_SORT_MULT_PART = _pycplex_platform.CPXNET_PRICE_SORT_MULT_PART
CPX_NETFIND_PURE = _pycplex_platform.CPX_NETFIND_PURE
CPX_NETFIND_REFLECT = _pycplex_platform.CPX_NETFIND_REFLECT
CPX_NETFIND_SCALE = _pycplex_platform.CPX_NETFIND_SCALE
CPX_QCPDUALS_NO = _pycplex_platform.CPX_QCPDUALS_NO
CPX_QCPDUALS_IFPOSSIBLE = _pycplex_platform.CPX_QCPDUALS_IFPOSSIBLE
CPX_QCPDUALS_FORCE = _pycplex_platform.CPX_QCPDUALS_FORCE
CPX_CPXAUTOCONSTANTS_H_H = _pycplex_platform.CPX_CPXAUTOCONSTANTS_H_H
CPX_BENDERS_ANNOTATION = _pycplex_platform.CPX_BENDERS_ANNOTATION
CPX_BENDERS_MASTERVALUE = _pycplex_platform.CPX_BENDERS_MASTERVALUE
CPX_BIGINT = _pycplex_platform.CPX_BIGINT
CPX_BIGLONG = _pycplex_platform.CPX_BIGLONG
CPX_CALLBACKCONTEXT_BRANCHING = _pycplex_platform.CPX_CALLBACKCONTEXT_BRANCHING
CPX_CALLBACKCONTEXT_CANDIDATE = _pycplex_platform.CPX_CALLBACKCONTEXT_CANDIDATE
CPX_CALLBACKCONTEXT_GLOBAL_PROGRESS = _pycplex_platform.CPX_CALLBACKCONTEXT_GLOBAL_PROGRESS
CPX_CALLBACKCONTEXT_LOCAL_PROGRESS = _pycplex_platform.CPX_CALLBACKCONTEXT_LOCAL_PROGRESS
CPX_CALLBACKCONTEXT_RELAXATION = _pycplex_platform.CPX_CALLBACKCONTEXT_RELAXATION
CPX_CALLBACKCONTEXT_THREAD_DOWN = _pycplex_platform.CPX_CALLBACKCONTEXT_THREAD_DOWN
CPX_CALLBACKCONTEXT_THREAD_UP = _pycplex_platform.CPX_CALLBACKCONTEXT_THREAD_UP
CPX_DUAL_OBJ = _pycplex_platform.CPX_DUAL_OBJ
CPX_EXACT_KAPPA = _pycplex_platform.CPX_EXACT_KAPPA
CPX_KAPPA = _pycplex_platform.CPX_KAPPA
CPX_KAPPA_ATTENTION = _pycplex_platform.CPX_KAPPA_ATTENTION
CPX_KAPPA_ILLPOSED = _pycplex_platform.CPX_KAPPA_ILLPOSED
CPX_KAPPA_MAX = _pycplex_platform.CPX_KAPPA_MAX
CPX_KAPPA_STABLE = _pycplex_platform.CPX_KAPPA_STABLE
CPX_KAPPA_SUSPICIOUS = _pycplex_platform.CPX_KAPPA_SUSPICIOUS
CPX_KAPPA_UNSTABLE = _pycplex_platform.CPX_KAPPA_UNSTABLE
CPX_LAZYCONSTRAINTCALLBACK_HEUR = _pycplex_platform.CPX_LAZYCONSTRAINTCALLBACK_HEUR
CPX_LAZYCONSTRAINTCALLBACK_MIPSTART = _pycplex_platform.CPX_LAZYCONSTRAINTCALLBACK_MIPSTART
CPX_LAZYCONSTRAINTCALLBACK_NODE = _pycplex_platform.CPX_LAZYCONSTRAINTCALLBACK_NODE
CPX_LAZYCONSTRAINTCALLBACK_USER = _pycplex_platform.CPX_LAZYCONSTRAINTCALLBACK_USER
CPX_MAX_COMP_SLACK = _pycplex_platform.CPX_MAX_COMP_SLACK
CPX_MAX_DUAL_INFEAS = _pycplex_platform.CPX_MAX_DUAL_INFEAS
CPX_MAX_DUAL_RESIDUAL = _pycplex_platform.CPX_MAX_DUAL_RESIDUAL
CPX_MAX_INDSLACK_INFEAS = _pycplex_platform.CPX_MAX_INDSLACK_INFEAS
CPX_MAX_INT_INFEAS = _pycplex_platform.CPX_MAX_INT_INFEAS
CPX_MAX_PI = _pycplex_platform.CPX_MAX_PI
CPX_MAX_PRIMAL_INFEAS = _pycplex_platform.CPX_MAX_PRIMAL_INFEAS
CPX_MAX_PRIMAL_RESIDUAL = _pycplex_platform.CPX_MAX_PRIMAL_RESIDUAL
CPX_MAX_PWLSLACK_INFEAS = _pycplex_platform.CPX_MAX_PWLSLACK_INFEAS
CPX_MAX_QCPRIMAL_RESIDUAL = _pycplex_platform.CPX_MAX_QCPRIMAL_RESIDUAL
CPX_MAX_QCSLACK = _pycplex_platform.CPX_MAX_QCSLACK
CPX_MAX_QCSLACK_INFEAS = _pycplex_platform.CPX_MAX_QCSLACK_INFEAS
CPX_MAX_RED_COST = _pycplex_platform.CPX_MAX_RED_COST
CPX_MAX_SCALED_DUAL_INFEAS = _pycplex_platform.CPX_MAX_SCALED_DUAL_INFEAS
CPX_MAX_SCALED_DUAL_RESIDUAL = _pycplex_platform.CPX_MAX_SCALED_DUAL_RESIDUAL
CPX_MAX_SCALED_PI = _pycplex_platform.CPX_MAX_SCALED_PI
CPX_MAX_SCALED_PRIMAL_INFEAS = _pycplex_platform.CPX_MAX_SCALED_PRIMAL_INFEAS
CPX_MAX_SCALED_PRIMAL_RESIDUAL = _pycplex_platform.CPX_MAX_SCALED_PRIMAL_RESIDUAL
CPX_MAX_SCALED_RED_COST = _pycplex_platform.CPX_MAX_SCALED_RED_COST
CPX_MAX_SCALED_SLACK = _pycplex_platform.CPX_MAX_SCALED_SLACK
CPX_MAX_SCALED_X = _pycplex_platform.CPX_MAX_SCALED_X
CPX_MAX_SLACK = _pycplex_platform.CPX_MAX_SLACK
CPX_MAX_X = _pycplex_platform.CPX_MAX_X
CPX_MULTIOBJ_BARITCNT = _pycplex_platform.CPX_MULTIOBJ_BARITCNT
CPX_MULTIOBJ_BESTOBJVAL = _pycplex_platform.CPX_MULTIOBJ_BESTOBJVAL
CPX_MULTIOBJ_BLEND = _pycplex_platform.CPX_MULTIOBJ_BLEND
CPX_MULTIOBJ_DEGCNT = _pycplex_platform.CPX_MULTIOBJ_DEGCNT
CPX_MULTIOBJ_DETTIME = _pycplex_platform.CPX_MULTIOBJ_DETTIME
CPX_MULTIOBJ_DEXCH = _pycplex_platform.CPX_MULTIOBJ_DEXCH
CPX_MULTIOBJ_DPUSH = _pycplex_platform.CPX_MULTIOBJ_DPUSH
CPX_MULTIOBJ_ERROR = _pycplex_platform.CPX_MULTIOBJ_ERROR
CPX_MULTIOBJ_ITCNT = _pycplex_platform.CPX_MULTIOBJ_ITCNT
CPX_MULTIOBJ_METHOD = _pycplex_platform.CPX_MULTIOBJ_METHOD
CPX_MULTIOBJ_NODECNT = _pycplex_platform.CPX_MULTIOBJ_NODECNT
CPX_MULTIOBJ_NODELEFTCNT = _pycplex_platform.CPX_MULTIOBJ_NODELEFTCNT
CPX_MULTIOBJ_OBJVAL = _pycplex_platform.CPX_MULTIOBJ_OBJVAL
CPX_MULTIOBJ_PEXCH = _pycplex_platform.CPX_MULTIOBJ_PEXCH
CPX_MULTIOBJ_PHASE1CNT = _pycplex_platform.CPX_MULTIOBJ_PHASE1CNT
CPX_MULTIOBJ_PPUSH = _pycplex_platform.CPX_MULTIOBJ_PPUSH
CPX_MULTIOBJ_PRIORITY = _pycplex_platform.CPX_MULTIOBJ_PRIORITY
CPX_MULTIOBJ_SIFTITCNT = _pycplex_platform.CPX_MULTIOBJ_SIFTITCNT
CPX_MULTIOBJ_SIFTPHASE1CNT = _pycplex_platform.CPX_MULTIOBJ_SIFTPHASE1CNT
CPX_MULTIOBJ_STATUS = _pycplex_platform.CPX_MULTIOBJ_STATUS
CPX_MULTIOBJ_TIME = _pycplex_platform.CPX_MULTIOBJ_TIME
CPX_NO_PRIORITY_CHANGE = _pycplex_platform.CPX_NO_PRIORITY_CHANGE
CPX_OBJ_GAP = _pycplex_platform.CPX_OBJ_GAP
CPX_PRIMAL_OBJ = _pycplex_platform.CPX_PRIMAL_OBJ
CPX_RELAXATION_FLAG_NOSOLVE = _pycplex_platform.CPX_RELAXATION_FLAG_NOSOLVE
CPX_SOLNPOOL_DIV = _pycplex_platform.CPX_SOLNPOOL_DIV
CPX_SOLNPOOL_FIFO = _pycplex_platform.CPX_SOLNPOOL_FIFO
CPX_SOLNPOOL_FILTER_DIVERSITY = _pycplex_platform.CPX_SOLNPOOL_FILTER_DIVERSITY
CPX_SOLNPOOL_FILTER_RANGE = _pycplex_platform.CPX_SOLNPOOL_FILTER_RANGE
CPX_SOLNPOOL_OBJ = _pycplex_platform.CPX_SOLNPOOL_OBJ
CPX_STAT_ABORT_DETTIME_LIM = _pycplex_platform.CPX_STAT_ABORT_DETTIME_LIM
CPX_STAT_ABORT_DUAL_OBJ_LIM = _pycplex_platform.CPX_STAT_ABORT_DUAL_OBJ_LIM
CPX_STAT_ABORT_IT_LIM = _pycplex_platform.CPX_STAT_ABORT_IT_LIM
CPX_STAT_ABORT_OBJ_LIM = _pycplex_platform.CPX_STAT_ABORT_OBJ_LIM
CPX_STAT_ABORT_PRIM_OBJ_LIM = _pycplex_platform.CPX_STAT_ABORT_PRIM_OBJ_LIM
CPX_STAT_ABORT_TIME_LIM = _pycplex_platform.CPX_STAT_ABORT_TIME_LIM
CPX_STAT_ABORT_USER = _pycplex_platform.CPX_STAT_ABORT_USER
CPX_STAT_BENDERS_NUM_BEST = _pycplex_platform.CPX_STAT_BENDERS_NUM_BEST
CPX_STAT_CONFLICT_ABORT_CONTRADICTION = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_CONTRADICTION
CPX_STAT_CONFLICT_ABORT_DETTIME_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_DETTIME_LIM
CPX_STAT_CONFLICT_ABORT_IT_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_IT_LIM
CPX_STAT_CONFLICT_ABORT_MEM_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_MEM_LIM
CPX_STAT_CONFLICT_ABORT_NODE_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_NODE_LIM
CPX_STAT_CONFLICT_ABORT_OBJ_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_OBJ_LIM
CPX_STAT_CONFLICT_ABORT_TIME_LIM = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_TIME_LIM
CPX_STAT_CONFLICT_ABORT_USER = _pycplex_platform.CPX_STAT_CONFLICT_ABORT_USER
CPX_STAT_CONFLICT_FEASIBLE = _pycplex_platform.CPX_STAT_CONFLICT_FEASIBLE
CPX_STAT_CONFLICT_MINIMAL = _pycplex_platform.CPX_STAT_CONFLICT_MINIMAL
CPX_STAT_FEASIBLE = _pycplex_platform.CPX_STAT_FEASIBLE
CPX_STAT_FEASIBLE_RELAXED_INF = _pycplex_platform.CPX_STAT_FEASIBLE_RELAXED_INF
CPX_STAT_FEASIBLE_RELAXED_QUAD = _pycplex_platform.CPX_STAT_FEASIBLE_RELAXED_QUAD
CPX_STAT_FEASIBLE_RELAXED_SUM = _pycplex_platform.CPX_STAT_FEASIBLE_RELAXED_SUM
CPX_STAT_FIRSTORDER = _pycplex_platform.CPX_STAT_FIRSTORDER
CPX_STAT_INFEASIBLE = _pycplex_platform.CPX_STAT_INFEASIBLE
CPX_STAT_INForUNBD = _pycplex_platform.CPX_STAT_INForUNBD
CPX_STAT_MULTIOBJ_INFEASIBLE = _pycplex_platform.CPX_STAT_MULTIOBJ_INFEASIBLE
CPX_STAT_MULTIOBJ_INForUNBD = _pycplex_platform.CPX_STAT_MULTIOBJ_INForUNBD
CPX_STAT_MULTIOBJ_NON_OPTIMAL = _pycplex_platform.CPX_STAT_MULTIOBJ_NON_OPTIMAL
CPX_STAT_MULTIOBJ_OPTIMAL = _pycplex_platform.CPX_STAT_MULTIOBJ_OPTIMAL
CPX_STAT_MULTIOBJ_STOPPED = _pycplex_platform.CPX_STAT_MULTIOBJ_STOPPED
CPX_STAT_MULTIOBJ_UNBOUNDED = _pycplex_platform.CPX_STAT_MULTIOBJ_UNBOUNDED
CPX_STAT_NUM_BEST = _pycplex_platform.CPX_STAT_NUM_BEST
CPX_STAT_OPTIMAL = _pycplex_platform.CPX_STAT_OPTIMAL
CPX_STAT_OPTIMAL_FACE_UNBOUNDED = _pycplex_platform.CPX_STAT_OPTIMAL_FACE_UNBOUNDED
CPX_STAT_OPTIMAL_INFEAS = _pycplex_platform.CPX_STAT_OPTIMAL_INFEAS
CPX_STAT_OPTIMAL_RELAXED_INF = _pycplex_platform.CPX_STAT_OPTIMAL_RELAXED_INF
CPX_STAT_OPTIMAL_RELAXED_QUAD = _pycplex_platform.CPX_STAT_OPTIMAL_RELAXED_QUAD
CPX_STAT_OPTIMAL_RELAXED_SUM = _pycplex_platform.CPX_STAT_OPTIMAL_RELAXED_SUM
CPX_STAT_UNBOUNDED = _pycplex_platform.CPX_STAT_UNBOUNDED
CPX_SUM_COMP_SLACK = _pycplex_platform.CPX_SUM_COMP_SLACK
CPX_SUM_DUAL_INFEAS = _pycplex_platform.CPX_SUM_DUAL_INFEAS
CPX_SUM_DUAL_RESIDUAL = _pycplex_platform.CPX_SUM_DUAL_RESIDUAL
CPX_SUM_INDSLACK_INFEAS = _pycplex_platform.CPX_SUM_INDSLACK_INFEAS
CPX_SUM_INT_INFEAS = _pycplex_platform.CPX_SUM_INT_INFEAS
CPX_SUM_PI = _pycplex_platform.CPX_SUM_PI
CPX_SUM_PRIMAL_INFEAS = _pycplex_platform.CPX_SUM_PRIMAL_INFEAS
CPX_SUM_PRIMAL_RESIDUAL = _pycplex_platform.CPX_SUM_PRIMAL_RESIDUAL
CPX_SUM_PWLSLACK_INFEAS = _pycplex_platform.CPX_SUM_PWLSLACK_INFEAS
CPX_SUM_QCPRIMAL_RESIDUAL = _pycplex_platform.CPX_SUM_QCPRIMAL_RESIDUAL
CPX_SUM_QCSLACK = _pycplex_platform.CPX_SUM_QCSLACK
CPX_SUM_QCSLACK_INFEAS = _pycplex_platform.CPX_SUM_QCSLACK_INFEAS
CPX_SUM_RED_COST = _pycplex_platform.CPX_SUM_RED_COST
CPX_SUM_SCALED_DUAL_INFEAS = _pycplex_platform.CPX_SUM_SCALED_DUAL_INFEAS
CPX_SUM_SCALED_DUAL_RESIDUAL = _pycplex_platform.CPX_SUM_SCALED_DUAL_RESIDUAL
CPX_SUM_SCALED_PI = _pycplex_platform.CPX_SUM_SCALED_PI
CPX_SUM_SCALED_PRIMAL_INFEAS = _pycplex_platform.CPX_SUM_SCALED_PRIMAL_INFEAS
CPX_SUM_SCALED_PRIMAL_RESIDUAL = _pycplex_platform.CPX_SUM_SCALED_PRIMAL_RESIDUAL
CPX_SUM_SCALED_RED_COST = _pycplex_platform.CPX_SUM_SCALED_RED_COST
CPX_SUM_SCALED_SLACK = _pycplex_platform.CPX_SUM_SCALED_SLACK
CPX_SUM_SCALED_X = _pycplex_platform.CPX_SUM_SCALED_X
CPX_SUM_SLACK = _pycplex_platform.CPX_SUM_SLACK
CPX_SUM_X = _pycplex_platform.CPX_SUM_X
CPXERR_ABORT_STRONGBRANCH = _pycplex_platform.CPXERR_ABORT_STRONGBRANCH
CPXERR_ADJ_SIGN_QUAD = _pycplex_platform.CPXERR_ADJ_SIGN_QUAD
CPXERR_ADJ_SIGN_SENSE = _pycplex_platform.CPXERR_ADJ_SIGN_SENSE
CPXERR_ADJ_SIGNS = _pycplex_platform.CPXERR_ADJ_SIGNS
CPXERR_ARC_INDEX_RANGE = _pycplex_platform.CPXERR_ARC_INDEX_RANGE
CPXERR_ARRAY_BAD_SOS_TYPE = _pycplex_platform.CPXERR_ARRAY_BAD_SOS_TYPE
CPXERR_ARRAY_NOT_ASCENDING = _pycplex_platform.CPXERR_ARRAY_NOT_ASCENDING
CPXERR_ARRAY_TOO_LONG = _pycplex_platform.CPXERR_ARRAY_TOO_LONG
CPXERR_BAD_ARGUMENT = _pycplex_platform.CPXERR_BAD_ARGUMENT
CPXERR_BAD_BOUND_SENSE = _pycplex_platform.CPXERR_BAD_BOUND_SENSE
CPXERR_BAD_BOUND_TYPE = _pycplex_platform.CPXERR_BAD_BOUND_TYPE
CPXERR_BAD_CHAR = _pycplex_platform.CPXERR_BAD_CHAR
CPXERR_BAD_CTYPE = _pycplex_platform.CPXERR_BAD_CTYPE
CPXERR_BAD_DECOMPOSITION = _pycplex_platform.CPXERR_BAD_DECOMPOSITION
CPXERR_BAD_DIRECTION = _pycplex_platform.CPXERR_BAD_DIRECTION
CPXERR_BAD_EXPO_RANGE = _pycplex_platform.CPXERR_BAD_EXPO_RANGE
CPXERR_BAD_EXPONENT = _pycplex_platform.CPXERR_BAD_EXPONENT
CPXERR_BAD_FILETYPE = _pycplex_platform.CPXERR_BAD_FILETYPE
CPXERR_BAD_ID = _pycplex_platform.CPXERR_BAD_ID
CPXERR_BAD_INDCONSTR = _pycplex_platform.CPXERR_BAD_INDCONSTR
CPXERR_BAD_INDICATOR = _pycplex_platform.CPXERR_BAD_INDICATOR
CPXERR_BAD_INDTYPE = _pycplex_platform.CPXERR_BAD_INDTYPE
CPXERR_BAD_LAZY_UCUT = _pycplex_platform.CPXERR_BAD_LAZY_UCUT
CPXERR_BAD_LUB = _pycplex_platform.CPXERR_BAD_LUB
CPXERR_BAD_METHOD = _pycplex_platform.CPXERR_BAD_METHOD
CPXERR_BAD_MULTIOBJ_ATTR = _pycplex_platform.CPXERR_BAD_MULTIOBJ_ATTR
CPXERR_BAD_NAME = _pycplex_platform.CPXERR_BAD_NAME
CPXERR_BAD_NUMBER = _pycplex_platform.CPXERR_BAD_NUMBER
CPXERR_BAD_OBJ_SENSE = _pycplex_platform.CPXERR_BAD_OBJ_SENSE
CPXERR_BAD_PARAM_NAME = _pycplex_platform.CPXERR_BAD_PARAM_NAME
CPXERR_BAD_PARAM_NUM = _pycplex_platform.CPXERR_BAD_PARAM_NUM
CPXERR_BAD_PIVOT = _pycplex_platform.CPXERR_BAD_PIVOT
CPXERR_BAD_PRIORITY = _pycplex_platform.CPXERR_BAD_PRIORITY
CPXERR_BAD_PROB_TYPE = _pycplex_platform.CPXERR_BAD_PROB_TYPE
CPXERR_BAD_ROW_ID = _pycplex_platform.CPXERR_BAD_ROW_ID
CPXERR_BAD_SECTION_BOUNDS = _pycplex_platform.CPXERR_BAD_SECTION_BOUNDS
CPXERR_BAD_SECTION_ENDATA = _pycplex_platform.CPXERR_BAD_SECTION_ENDATA
CPXERR_BAD_SECTION_QMATRIX = _pycplex_platform.CPXERR_BAD_SECTION_QMATRIX
CPXERR_BAD_SENSE = _pycplex_platform.CPXERR_BAD_SENSE
CPXERR_BAD_SOS_TYPE = _pycplex_platform.CPXERR_BAD_SOS_TYPE
CPXERR_BAD_STATUS = _pycplex_platform.CPXERR_BAD_STATUS
CPXERR_BAS_FILE_SHORT = _pycplex_platform.CPXERR_BAS_FILE_SHORT
CPXERR_BAS_FILE_SIZE = _pycplex_platform.CPXERR_BAS_FILE_SIZE
CPXERR_BENDERS_MASTER_SOLVE = _pycplex_platform.CPXERR_BENDERS_MASTER_SOLVE
CPXERR_CALLBACK = _pycplex_platform.CPXERR_CALLBACK
CPXERR_CALLBACK_INCONSISTENT = _pycplex_platform.CPXERR_CALLBACK_INCONSISTENT
CPXERR_CAND_NOT_POINT = _pycplex_platform.CPXERR_CAND_NOT_POINT
CPXERR_CAND_NOT_RAY = _pycplex_platform.CPXERR_CAND_NOT_RAY
CPXERR_CNTRL_IN_NAME = _pycplex_platform.CPXERR_CNTRL_IN_NAME
CPXERR_COL_INDEX_RANGE = _pycplex_platform.CPXERR_COL_INDEX_RANGE
CPXERR_COL_REPEAT_PRINT = _pycplex_platform.CPXERR_COL_REPEAT_PRINT
CPXERR_COL_REPEATS = _pycplex_platform.CPXERR_COL_REPEATS
CPXERR_COL_ROW_REPEATS = _pycplex_platform.CPXERR_COL_ROW_REPEATS
CPXERR_COL_UNKNOWN = _pycplex_platform.CPXERR_COL_UNKNOWN
CPXERR_CONFLICT_UNSTABLE = _pycplex_platform.CPXERR_CONFLICT_UNSTABLE
CPXERR_COUNT_OVERLAP = _pycplex_platform.CPXERR_COUNT_OVERLAP
CPXERR_COUNT_RANGE = _pycplex_platform.CPXERR_COUNT_RANGE
CPXERR_CPUBINDING_FAILURE = _pycplex_platform.CPXERR_CPUBINDING_FAILURE
CPXERR_DBL_MAX = _pycplex_platform.CPXERR_DBL_MAX
CPXERR_DECOMPRESSION = _pycplex_platform.CPXERR_DECOMPRESSION
CPXERR_DETTILIM_STRONGBRANCH = _pycplex_platform.CPXERR_DETTILIM_STRONGBRANCH
CPXERR_DUP_ENTRY = _pycplex_platform.CPXERR_DUP_ENTRY
CPXERR_DYNFUNC = _pycplex_platform.CPXERR_DYNFUNC
CPXERR_DYNLOAD = _pycplex_platform.CPXERR_DYNLOAD
CPXERR_ENCODING_CONVERSION = _pycplex_platform.CPXERR_ENCODING_CONVERSION
CPXERR_EXTRA_BV_BOUND = _pycplex_platform.CPXERR_EXTRA_BV_BOUND
CPXERR_EXTRA_FR_BOUND = _pycplex_platform.CPXERR_EXTRA_FR_BOUND
CPXERR_EXTRA_FX_BOUND = _pycplex_platform.CPXERR_EXTRA_FX_BOUND
CPXERR_EXTRA_INTEND = _pycplex_platform.CPXERR_EXTRA_INTEND
CPXERR_EXTRA_INTORG = _pycplex_platform.CPXERR_EXTRA_INTORG
CPXERR_EXTRA_SOSEND = _pycplex_platform.CPXERR_EXTRA_SOSEND
CPXERR_EXTRA_SOSORG = _pycplex_platform.CPXERR_EXTRA_SOSORG
CPXERR_FAIL_OPEN_READ = _pycplex_platform.CPXERR_FAIL_OPEN_READ
CPXERR_FAIL_OPEN_WRITE = _pycplex_platform.CPXERR_FAIL_OPEN_WRITE
CPXERR_FILE_ENTRIES = _pycplex_platform.CPXERR_FILE_ENTRIES
CPXERR_FILE_FORMAT = _pycplex_platform.CPXERR_FILE_FORMAT
CPXERR_FILE_IO = _pycplex_platform.CPXERR_FILE_IO
CPXERR_FILTER_VARIABLE_TYPE = _pycplex_platform.CPXERR_FILTER_VARIABLE_TYPE
CPXERR_ILL_DEFINED_PWL = _pycplex_platform.CPXERR_ILL_DEFINED_PWL
CPXERR_IN_INFOCALLBACK = _pycplex_platform.CPXERR_IN_INFOCALLBACK
CPXERR_INDEX_NOT_BASIC = _pycplex_platform.CPXERR_INDEX_NOT_BASIC
CPXERR_INDEX_RANGE = _pycplex_platform.CPXERR_INDEX_RANGE
CPXERR_INDEX_RANGE_HIGH = _pycplex_platform.CPXERR_INDEX_RANGE_HIGH
CPXERR_INDEX_RANGE_LOW = _pycplex_platform.CPXERR_INDEX_RANGE_LOW
CPXERR_INT_TOO_BIG = _pycplex_platform.CPXERR_INT_TOO_BIG
CPXERR_INT_TOO_BIG_INPUT = _pycplex_platform.CPXERR_INT_TOO_BIG_INPUT
CPXERR_INVALID_NUMBER = _pycplex_platform.CPXERR_INVALID_NUMBER
CPXERR_LIMITS_TOO_BIG = _pycplex_platform.CPXERR_LIMITS_TOO_BIG
CPXERR_LINE_TOO_LONG = _pycplex_platform.CPXERR_LINE_TOO_LONG
CPXERR_LO_BOUND_REPEATS = _pycplex_platform.CPXERR_LO_BOUND_REPEATS
CPXERR_LOCK_CREATE = _pycplex_platform.CPXERR_LOCK_CREATE
CPXERR_LP_NOT_IN_ENVIRONMENT = _pycplex_platform.CPXERR_LP_NOT_IN_ENVIRONMENT
CPXERR_LP_PARSE = _pycplex_platform.CPXERR_LP_PARSE
CPXERR_MASTER_SOLVE = _pycplex_platform.CPXERR_MASTER_SOLVE
CPXERR_MIPSEARCH_WITH_CALLBACKS = _pycplex_platform.CPXERR_MIPSEARCH_WITH_CALLBACKS
CPXERR_MISS_SOS_TYPE = _pycplex_platform.CPXERR_MISS_SOS_TYPE
CPXERR_MSG_NO_CHANNEL = _pycplex_platform.CPXERR_MSG_NO_CHANNEL
CPXERR_MSG_NO_FILEPTR = _pycplex_platform.CPXERR_MSG_NO_FILEPTR
CPXERR_MSG_NO_FUNCTION = _pycplex_platform.CPXERR_MSG_NO_FUNCTION
CPXERR_MULTIOBJ_SUBPROB_SOLVE = _pycplex_platform.CPXERR_MULTIOBJ_SUBPROB_SOLVE
CPXERR_MULTIPLE_PROBS_IN_REMOTE_ENVIRONMENT = _pycplex_platform.CPXERR_MULTIPLE_PROBS_IN_REMOTE_ENVIRONMENT
CPXERR_NAME_CREATION = _pycplex_platform.CPXERR_NAME_CREATION
CPXERR_NAME_NOT_FOUND = _pycplex_platform.CPXERR_NAME_NOT_FOUND
CPXERR_NAME_TOO_LONG = _pycplex_platform.CPXERR_NAME_TOO_LONG
CPXERR_NAN = _pycplex_platform.CPXERR_NAN
CPXERR_NEED_OPT_SOLN = _pycplex_platform.CPXERR_NEED_OPT_SOLN
CPXERR_NEGATIVE_SURPLUS = _pycplex_platform.CPXERR_NEGATIVE_SURPLUS
CPXERR_NET_DATA = _pycplex_platform.CPXERR_NET_DATA
CPXERR_NET_FILE_SHORT = _pycplex_platform.CPXERR_NET_FILE_SHORT
CPXERR_NO_BARRIER_SOLN = _pycplex_platform.CPXERR_NO_BARRIER_SOLN
CPXERR_NO_BASIC_SOLN = _pycplex_platform.CPXERR_NO_BASIC_SOLN
CPXERR_NO_BASIS = _pycplex_platform.CPXERR_NO_BASIS
CPXERR_NO_BOUND_SENSE = _pycplex_platform.CPXERR_NO_BOUND_SENSE
CPXERR_NO_BOUND_TYPE = _pycplex_platform.CPXERR_NO_BOUND_TYPE
CPXERR_NO_COLUMNS_SECTION = _pycplex_platform.CPXERR_NO_COLUMNS_SECTION
CPXERR_NO_CONFLICT = _pycplex_platform.CPXERR_NO_CONFLICT
CPXERR_NO_DECOMPOSITION = _pycplex_platform.CPXERR_NO_DECOMPOSITION
CPXERR_NO_DUAL_SOLN = _pycplex_platform.CPXERR_NO_DUAL_SOLN
CPXERR_NO_ENDATA = _pycplex_platform.CPXERR_NO_ENDATA
CPXERR_NO_ENVIRONMENT = _pycplex_platform.CPXERR_NO_ENVIRONMENT
CPXERR_NO_FILENAME = _pycplex_platform.CPXERR_NO_FILENAME
CPXERR_NO_ID = _pycplex_platform.CPXERR_NO_ID
CPXERR_NO_ID_FIRST = _pycplex_platform.CPXERR_NO_ID_FIRST
CPXERR_NO_INT_X = _pycplex_platform.CPXERR_NO_INT_X
CPXERR_NO_KAPPASTATS = _pycplex_platform.CPXERR_NO_KAPPASTATS
CPXERR_NO_LU_FACTOR = _pycplex_platform.CPXERR_NO_LU_FACTOR
CPXERR_NO_MEMORY = _pycplex_platform.CPXERR_NO_MEMORY
CPXERR_NO_MIPSTART = _pycplex_platform.CPXERR_NO_MIPSTART
CPXERR_NO_NAME_SECTION = _pycplex_platform.CPXERR_NO_NAME_SECTION
CPXERR_NO_NAMES = _pycplex_platform.CPXERR_NO_NAMES
CPXERR_NO_NORMS = _pycplex_platform.CPXERR_NO_NORMS
CPXERR_NO_NUMBER = _pycplex_platform.CPXERR_NO_NUMBER
CPXERR_NO_NUMBER_BOUND = _pycplex_platform.CPXERR_NO_NUMBER_BOUND
CPXERR_NO_NUMBER_FIRST = _pycplex_platform.CPXERR_NO_NUMBER_FIRST
CPXERR_NO_OBJ_NAME = _pycplex_platform.CPXERR_NO_OBJ_NAME
CPXERR_NO_OBJ_SENSE = _pycplex_platform.CPXERR_NO_OBJ_SENSE
CPXERR_NO_OBJECTIVE = _pycplex_platform.CPXERR_NO_OBJECTIVE
CPXERR_NO_OP_OR_SENSE = _pycplex_platform.CPXERR_NO_OP_OR_SENSE
CPXERR_NO_OPERATOR = _pycplex_platform.CPXERR_NO_OPERATOR
CPXERR_NO_ORDER = _pycplex_platform.CPXERR_NO_ORDER
CPXERR_NO_PROBLEM = _pycplex_platform.CPXERR_NO_PROBLEM
CPXERR_NO_QP_OPERATOR = _pycplex_platform.CPXERR_NO_QP_OPERATOR
CPXERR_NO_QUAD_EXP = _pycplex_platform.CPXERR_NO_QUAD_EXP
CPXERR_NO_RHS_COEFF = _pycplex_platform.CPXERR_NO_RHS_COEFF
CPXERR_NO_RHS_IN_OBJ = _pycplex_platform.CPXERR_NO_RHS_IN_OBJ
CPXERR_NO_ROW_NAME = _pycplex_platform.CPXERR_NO_ROW_NAME
CPXERR_NO_ROW_SENSE = _pycplex_platform.CPXERR_NO_ROW_SENSE
CPXERR_NO_ROWS_SECTION = _pycplex_platform.CPXERR_NO_ROWS_SECTION
CPXERR_NO_SENSIT = _pycplex_platform.CPXERR_NO_SENSIT
CPXERR_NO_SOLN = _pycplex_platform.CPXERR_NO_SOLN
CPXERR_NO_SOLNPOOL = _pycplex_platform.CPXERR_NO_SOLNPOOL
CPXERR_NO_SOS = _pycplex_platform.CPXERR_NO_SOS
CPXERR_NO_TREE = _pycplex_platform.CPXERR_NO_TREE
CPXERR_NO_VECTOR_SOLN = _pycplex_platform.CPXERR_NO_VECTOR_SOLN
CPXERR_NODE_INDEX_RANGE = _pycplex_platform.CPXERR_NODE_INDEX_RANGE
CPXERR_NODE_ON_DISK = _pycplex_platform.CPXERR_NODE_ON_DISK
CPXERR_NOT_DUAL_UNBOUNDED = _pycplex_platform.CPXERR_NOT_DUAL_UNBOUNDED
CPXERR_NOT_FIXED = _pycplex_platform.CPXERR_NOT_FIXED
CPXERR_NOT_FOR_BENDERS = _pycplex_platform.CPXERR_NOT_FOR_BENDERS
CPXERR_NOT_FOR_DISTMIP = _pycplex_platform.CPXERR_NOT_FOR_DISTMIP
CPXERR_NOT_FOR_MIP = _pycplex_platform.CPXERR_NOT_FOR_MIP
CPXERR_NOT_FOR_MULTIOBJ = _pycplex_platform.CPXERR_NOT_FOR_MULTIOBJ
CPXERR_NOT_FOR_QCP = _pycplex_platform.CPXERR_NOT_FOR_QCP
CPXERR_NOT_FOR_QP = _pycplex_platform.CPXERR_NOT_FOR_QP
CPXERR_NOT_MILPCLASS = _pycplex_platform.CPXERR_NOT_MILPCLASS
CPXERR_NOT_MIN_COST_FLOW = _pycplex_platform.CPXERR_NOT_MIN_COST_FLOW
CPXERR_NOT_MIP = _pycplex_platform.CPXERR_NOT_MIP
CPXERR_NOT_MIQPCLASS = _pycplex_platform.CPXERR_NOT_MIQPCLASS
CPXERR_NOT_ONE_PROBLEM = _pycplex_platform.CPXERR_NOT_ONE_PROBLEM
CPXERR_NOT_QP = _pycplex_platform.CPXERR_NOT_QP
CPXERR_NOT_SAV_FILE = _pycplex_platform.CPXERR_NOT_SAV_FILE
CPXERR_NOT_UNBOUNDED = _pycplex_platform.CPXERR_NOT_UNBOUNDED
CPXERR_NULL_POINTER = _pycplex_platform.CPXERR_NULL_POINTER
CPXERR_ORDER_BAD_DIRECTION = _pycplex_platform.CPXERR_ORDER_BAD_DIRECTION
CPXERR_OVERFLOW = _pycplex_platform.CPXERR_OVERFLOW
CPXERR_PARAM_INCOMPATIBLE = _pycplex_platform.CPXERR_PARAM_INCOMPATIBLE
CPXERR_PARAM_TOO_BIG = _pycplex_platform.CPXERR_PARAM_TOO_BIG
CPXERR_PARAM_TOO_SMALL = _pycplex_platform.CPXERR_PARAM_TOO_SMALL
CPXERR_PRESLV_ABORT = _pycplex_platform.CPXERR_PRESLV_ABORT
CPXERR_PRESLV_BAD_PARAM = _pycplex_platform.CPXERR_PRESLV_BAD_PARAM
CPXERR_PRESLV_BASIS_MEM = _pycplex_platform.CPXERR_PRESLV_BASIS_MEM
CPXERR_PRESLV_COPYORDER = _pycplex_platform.CPXERR_PRESLV_COPYORDER
CPXERR_PRESLV_COPYSOS = _pycplex_platform.CPXERR_PRESLV_COPYSOS
CPXERR_PRESLV_CRUSHFORM = _pycplex_platform.CPXERR_PRESLV_CRUSHFORM
CPXERR_PRESLV_DETTIME_LIM = _pycplex_platform.CPXERR_PRESLV_DETTIME_LIM
CPXERR_PRESLV_DUAL = _pycplex_platform.CPXERR_PRESLV_DUAL
CPXERR_PRESLV_FAIL_BASIS = _pycplex_platform.CPXERR_PRESLV_FAIL_BASIS
CPXERR_PRESLV_INF = _pycplex_platform.CPXERR_PRESLV_INF
CPXERR_PRESLV_INForUNBD = _pycplex_platform.CPXERR_PRESLV_INForUNBD
CPXERR_PRESLV_NO_BASIS = _pycplex_platform.CPXERR_PRESLV_NO_BASIS
CPXERR_PRESLV_NO_PROB = _pycplex_platform.CPXERR_PRESLV_NO_PROB
CPXERR_PRESLV_SOLN_MIP = _pycplex_platform.CPXERR_PRESLV_SOLN_MIP
CPXERR_PRESLV_SOLN_QP = _pycplex_platform.CPXERR_PRESLV_SOLN_QP
CPXERR_PRESLV_START_LP = _pycplex_platform.CPXERR_PRESLV_START_LP
CPXERR_PRESLV_TIME_LIM = _pycplex_platform.CPXERR_PRESLV_TIME_LIM
CPXERR_PRESLV_UNBD = _pycplex_platform.CPXERR_PRESLV_UNBD
CPXERR_PRESLV_UNCRUSHFORM = _pycplex_platform.CPXERR_PRESLV_UNCRUSHFORM
CPXERR_PRIIND = _pycplex_platform.CPXERR_PRIIND
CPXERR_PRM_DATA = _pycplex_platform.CPXERR_PRM_DATA
CPXERR_PROTOCOL = _pycplex_platform.CPXERR_PROTOCOL
CPXERR_Q_DIVISOR = _pycplex_platform.CPXERR_Q_DIVISOR
CPXERR_Q_DUP_ENTRY = _pycplex_platform.CPXERR_Q_DUP_ENTRY
CPXERR_Q_NOT_INDEF = _pycplex_platform.CPXERR_Q_NOT_INDEF
CPXERR_Q_NOT_POS_DEF = _pycplex_platform.CPXERR_Q_NOT_POS_DEF
CPXERR_Q_NOT_SYMMETRIC = _pycplex_platform.CPXERR_Q_NOT_SYMMETRIC
CPXERR_QCP_SENSE = _pycplex_platform.CPXERR_QCP_SENSE
CPXERR_QCP_SENSE_FILE = _pycplex_platform.CPXERR_QCP_SENSE_FILE
CPXERR_QUAD_EXP_NOT_2 = _pycplex_platform.CPXERR_QUAD_EXP_NOT_2
CPXERR_QUAD_IN_ROW = _pycplex_platform.CPXERR_QUAD_IN_ROW
CPXERR_RANGE_SECTION_ORDER = _pycplex_platform.CPXERR_RANGE_SECTION_ORDER
CPXERR_RESTRICTED_VERSION = _pycplex_platform.CPXERR_RESTRICTED_VERSION
CPXERR_RHS_IN_OBJ = _pycplex_platform.CPXERR_RHS_IN_OBJ
CPXERR_RIM_REPEATS = _pycplex_platform.CPXERR_RIM_REPEATS
CPXERR_RIM_ROW_REPEATS = _pycplex_platform.CPXERR_RIM_ROW_REPEATS
CPXERR_RIMNZ_REPEATS = _pycplex_platform.CPXERR_RIMNZ_REPEATS
CPXERR_ROW_INDEX_RANGE = _pycplex_platform.CPXERR_ROW_INDEX_RANGE
CPXERR_ROW_REPEAT_PRINT = _pycplex_platform.CPXERR_ROW_REPEAT_PRINT
CPXERR_ROW_REPEATS = _pycplex_platform.CPXERR_ROW_REPEATS
CPXERR_ROW_UNKNOWN = _pycplex_platform.CPXERR_ROW_UNKNOWN
CPXERR_SAV_FILE_DATA = _pycplex_platform.CPXERR_SAV_FILE_DATA
CPXERR_SAV_FILE_VALUE = _pycplex_platform.CPXERR_SAV_FILE_VALUE
CPXERR_SAV_FILE_WRITE = _pycplex_platform.CPXERR_SAV_FILE_WRITE
CPXERR_SBASE_ILLEGAL = _pycplex_platform.CPXERR_SBASE_ILLEGAL
CPXERR_SBASE_INCOMPAT = _pycplex_platform.CPXERR_SBASE_INCOMPAT
CPXERR_SINGULAR = _pycplex_platform.CPXERR_SINGULAR
CPXERR_STR_PARAM_TOO_LONG = _pycplex_platform.CPXERR_STR_PARAM_TOO_LONG
CPXERR_SUBPROB_SOLVE = _pycplex_platform.CPXERR_SUBPROB_SOLVE
CPXERR_SYNCPRIM_CREATE = _pycplex_platform.CPXERR_SYNCPRIM_CREATE
CPXERR_SYSCALL = _pycplex_platform.CPXERR_SYSCALL
CPXERR_THREAD_FAILED = _pycplex_platform.CPXERR_THREAD_FAILED
CPXERR_TILIM_CONDITION_NO = _pycplex_platform.CPXERR_TILIM_CONDITION_NO
CPXERR_TILIM_STRONGBRANCH = _pycplex_platform.CPXERR_TILIM_STRONGBRANCH
CPXERR_TOO_MANY_COEFFS = _pycplex_platform.CPXERR_TOO_MANY_COEFFS
CPXERR_TOO_MANY_COLS = _pycplex_platform.CPXERR_TOO_MANY_COLS
CPXERR_TOO_MANY_RIMNZ = _pycplex_platform.CPXERR_TOO_MANY_RIMNZ
CPXERR_TOO_MANY_RIMS = _pycplex_platform.CPXERR_TOO_MANY_RIMS
CPXERR_TOO_MANY_ROWS = _pycplex_platform.CPXERR_TOO_MANY_ROWS
CPXERR_TOO_MANY_THREADS = _pycplex_platform.CPXERR_TOO_MANY_THREADS
CPXERR_TREE_MEMORY_LIMIT = _pycplex_platform.CPXERR_TREE_MEMORY_LIMIT
CPXERR_TUNE_MIXED = _pycplex_platform.CPXERR_TUNE_MIXED
CPXERR_UNIQUE_WEIGHTS = _pycplex_platform.CPXERR_UNIQUE_WEIGHTS
CPXERR_UNSUPPORTED_CONSTRAINT_TYPE = _pycplex_platform.CPXERR_UNSUPPORTED_CONSTRAINT_TYPE
CPXERR_UNSUPPORTED_OPERATION = _pycplex_platform.CPXERR_UNSUPPORTED_OPERATION
CPXERR_UP_BOUND_REPEATS = _pycplex_platform.CPXERR_UP_BOUND_REPEATS
CPXERR_WORK_FILE_OPEN = _pycplex_platform.CPXERR_WORK_FILE_OPEN
CPXERR_WORK_FILE_READ = _pycplex_platform.CPXERR_WORK_FILE_READ
CPXERR_WORK_FILE_WRITE = _pycplex_platform.CPXERR_WORK_FILE_WRITE
CPXERR_XMLPARSE = _pycplex_platform.CPXERR_XMLPARSE
CPXMESSAGEBUFSIZE = _pycplex_platform.CPXMESSAGEBUFSIZE
CPXMI_BIGM_COEF = _pycplex_platform.CPXMI_BIGM_COEF
CPXMI_BIGM_TO_IND = _pycplex_platform.CPXMI_BIGM_TO_IND
CPXMI_BIGM_VARBOUND = _pycplex_platform.CPXMI_BIGM_VARBOUND
CPXMI_CANCEL_TOL = _pycplex_platform.CPXMI_CANCEL_TOL
CPXMI_EPGAP_LARGE = _pycplex_platform.CPXMI_EPGAP_LARGE
CPXMI_EPGAP_OBJOFFSET = _pycplex_platform.CPXMI_EPGAP_OBJOFFSET
CPXMI_FEAS_TOL = _pycplex_platform.CPXMI_FEAS_TOL
CPXMI_FRACTION_SCALING = _pycplex_platform.CPXMI_FRACTION_SCALING
CPXMI_IND_NZ_LARGE_NUM = _pycplex_platform.CPXMI_IND_NZ_LARGE_NUM
CPXMI_IND_NZ_SMALL_NUM = _pycplex_platform.CPXMI_IND_NZ_SMALL_NUM
CPXMI_IND_RHS_LARGE_NUM = _pycplex_platform.CPXMI_IND_RHS_LARGE_NUM
CPXMI_IND_RHS_SMALL_NUM = _pycplex_platform.CPXMI_IND_RHS_SMALL_NUM
CPXMI_KAPPA_ILLPOSED = _pycplex_platform.CPXMI_KAPPA_ILLPOSED
CPXMI_KAPPA_SUSPICIOUS = _pycplex_platform.CPXMI_KAPPA_SUSPICIOUS
CPXMI_KAPPA_UNSTABLE = _pycplex_platform.CPXMI_KAPPA_UNSTABLE
CPXMI_LB_LARGE_NUM = _pycplex_platform.CPXMI_LB_LARGE_NUM
CPXMI_LB_SMALL_NUM = _pycplex_platform.CPXMI_LB_SMALL_NUM
CPXMI_LC_NZ_LARGE_NUM = _pycplex_platform.CPXMI_LC_NZ_LARGE_NUM
CPXMI_LC_NZ_SMALL_NUM = _pycplex_platform.CPXMI_LC_NZ_SMALL_NUM
CPXMI_LC_RHS_LARGE_NUM = _pycplex_platform.CPXMI_LC_RHS_LARGE_NUM
CPXMI_LC_RHS_SMALL_NUM = _pycplex_platform.CPXMI_LC_RHS_SMALL_NUM
CPXMI_MULTIOBJ_COEFFS = _pycplex_platform.CPXMI_MULTIOBJ_COEFFS
CPXMI_MULTIOBJ_LARGE_NUM = _pycplex_platform.CPXMI_MULTIOBJ_LARGE_NUM
CPXMI_MULTIOBJ_MIX = _pycplex_platform.CPXMI_MULTIOBJ_MIX
CPXMI_MULTIOBJ_OPT_TOL = _pycplex_platform.CPXMI_MULTIOBJ_OPT_TOL
CPXMI_MULTIOBJ_SMALL_NUM = _pycplex_platform.CPXMI_MULTIOBJ_SMALL_NUM
CPXMI_NZ_LARGE_NUM = _pycplex_platform.CPXMI_NZ_LARGE_NUM
CPXMI_NZ_SMALL_NUM = _pycplex_platform.CPXMI_NZ_SMALL_NUM
CPXMI_OBJ_LARGE_NUM = _pycplex_platform.CPXMI_OBJ_LARGE_NUM
CPXMI_OBJ_SMALL_NUM = _pycplex_platform.CPXMI_OBJ_SMALL_NUM
CPXMI_OPT_TOL = _pycplex_platform.CPXMI_OPT_TOL
CPXMI_PWL_SLOPE_LARGE_NUM = _pycplex_platform.CPXMI_PWL_SLOPE_LARGE_NUM
CPXMI_PWL_SLOPE_SMALL_NUM = _pycplex_platform.CPXMI_PWL_SLOPE_SMALL_NUM
CPXMI_QC_LINNZ_LARGE_NUM = _pycplex_platform.CPXMI_QC_LINNZ_LARGE_NUM
CPXMI_QC_LINNZ_SMALL_NUM = _pycplex_platform.CPXMI_QC_LINNZ_SMALL_NUM
CPXMI_QC_QNZ_LARGE_NUM = _pycplex_platform.CPXMI_QC_QNZ_LARGE_NUM
CPXMI_QC_QNZ_SMALL_NUM = _pycplex_platform.CPXMI_QC_QNZ_SMALL_NUM
CPXMI_QC_RHS_LARGE_NUM = _pycplex_platform.CPXMI_QC_RHS_LARGE_NUM
CPXMI_QC_RHS_SMALL_NUM = _pycplex_platform.CPXMI_QC_RHS_SMALL_NUM
CPXMI_QOBJ_LARGE_NUM = _pycplex_platform.CPXMI_QOBJ_LARGE_NUM
CPXMI_QOBJ_SMALL_NUM = _pycplex_platform.CPXMI_QOBJ_SMALL_NUM
CPXMI_QOPT_TOL = _pycplex_platform.CPXMI_QOPT_TOL
CPXMI_RHS_LARGE_NUM = _pycplex_platform.CPXMI_RHS_LARGE_NUM
CPXMI_RHS_SMALL_NUM = _pycplex_platform.CPXMI_RHS_SMALL_NUM
CPXMI_SAMECOEFF_COL = _pycplex_platform.CPXMI_SAMECOEFF_COL
CPXMI_SAMECOEFF_IND = _pycplex_platform.CPXMI_SAMECOEFF_IND
CPXMI_SAMECOEFF_LAZY = _pycplex_platform.CPXMI_SAMECOEFF_LAZY
CPXMI_SAMECOEFF_MULTIOBJ = _pycplex_platform.CPXMI_SAMECOEFF_MULTIOBJ
CPXMI_SAMECOEFF_OBJ = _pycplex_platform.CPXMI_SAMECOEFF_OBJ
CPXMI_SAMECOEFF_QLIN = _pycplex_platform.CPXMI_SAMECOEFF_QLIN
CPXMI_SAMECOEFF_QUAD = _pycplex_platform.CPXMI_SAMECOEFF_QUAD
CPXMI_SAMECOEFF_RHS = _pycplex_platform.CPXMI_SAMECOEFF_RHS
CPXMI_SAMECOEFF_ROW = _pycplex_platform.CPXMI_SAMECOEFF_ROW
CPXMI_SAMECOEFF_UCUT = _pycplex_platform.CPXMI_SAMECOEFF_UCUT
CPXMI_SINGLE_PRECISION = _pycplex_platform.CPXMI_SINGLE_PRECISION
CPXMI_SYMMETRY_BREAKING_INEQ = _pycplex_platform.CPXMI_SYMMETRY_BREAKING_INEQ
CPXMI_UB_LARGE_NUM = _pycplex_platform.CPXMI_UB_LARGE_NUM
CPXMI_UB_SMALL_NUM = _pycplex_platform.CPXMI_UB_SMALL_NUM
CPXMI_UC_NZ_LARGE_NUM = _pycplex_platform.CPXMI_UC_NZ_LARGE_NUM
CPXMI_UC_NZ_SMALL_NUM = _pycplex_platform.CPXMI_UC_NZ_SMALL_NUM
CPXMI_UC_RHS_LARGE_NUM = _pycplex_platform.CPXMI_UC_RHS_LARGE_NUM
CPXMI_UC_RHS_SMALL_NUM = _pycplex_platform.CPXMI_UC_RHS_SMALL_NUM
CPXMI_WIDE_COEFF_RANGE = _pycplex_platform.CPXMI_WIDE_COEFF_RANGE
CPXMIP_ABORT_FEAS = _pycplex_platform.CPXMIP_ABORT_FEAS
CPXMIP_ABORT_INFEAS = _pycplex_platform.CPXMIP_ABORT_INFEAS
CPXMIP_ABORT_RELAXATION_UNBOUNDED = _pycplex_platform.CPXMIP_ABORT_RELAXATION_UNBOUNDED
CPXMIP_ABORT_RELAXED = _pycplex_platform.CPXMIP_ABORT_RELAXED
CPXMIP_DETTIME_LIM_FEAS = _pycplex_platform.CPXMIP_DETTIME_LIM_FEAS
CPXMIP_DETTIME_LIM_INFEAS = _pycplex_platform.CPXMIP_DETTIME_LIM_INFEAS
CPXMIP_FAIL_FEAS = _pycplex_platform.CPXMIP_FAIL_FEAS
CPXMIP_FAIL_FEAS_NO_TREE = _pycplex_platform.CPXMIP_FAIL_FEAS_NO_TREE
CPXMIP_FAIL_INFEAS = _pycplex_platform.CPXMIP_FAIL_INFEAS
CPXMIP_FAIL_INFEAS_NO_TREE = _pycplex_platform.CPXMIP_FAIL_INFEAS_NO_TREE
CPXMIP_FEASIBLE = _pycplex_platform.CPXMIP_FEASIBLE
CPXMIP_FEASIBLE_RELAXED_INF = _pycplex_platform.CPXMIP_FEASIBLE_RELAXED_INF
CPXMIP_FEASIBLE_RELAXED_QUAD = _pycplex_platform.CPXMIP_FEASIBLE_RELAXED_QUAD
CPXMIP_FEASIBLE_RELAXED_SUM = _pycplex_platform.CPXMIP_FEASIBLE_RELAXED_SUM
CPXMIP_INFEASIBLE = _pycplex_platform.CPXMIP_INFEASIBLE
CPXMIP_INForUNBD = _pycplex_platform.CPXMIP_INForUNBD
CPXMIP_MEM_LIM_FEAS = _pycplex_platform.CPXMIP_MEM_LIM_FEAS
CPXMIP_MEM_LIM_INFEAS = _pycplex_platform.CPXMIP_MEM_LIM_INFEAS
CPXMIP_NODE_LIM_FEAS = _pycplex_platform.CPXMIP_NODE_LIM_FEAS
CPXMIP_NODE_LIM_INFEAS = _pycplex_platform.CPXMIP_NODE_LIM_INFEAS
CPXMIP_OPTIMAL = _pycplex_platform.CPXMIP_OPTIMAL
CPXMIP_OPTIMAL_INFEAS = _pycplex_platform.CPXMIP_OPTIMAL_INFEAS
CPXMIP_OPTIMAL_POPULATED = _pycplex_platform.CPXMIP_OPTIMAL_POPULATED
CPXMIP_OPTIMAL_POPULATED_TOL = _pycplex_platform.CPXMIP_OPTIMAL_POPULATED_TOL
CPXMIP_OPTIMAL_RELAXED_INF = _pycplex_platform.CPXMIP_OPTIMAL_RELAXED_INF
CPXMIP_OPTIMAL_RELAXED_QUAD = _pycplex_platform.CPXMIP_OPTIMAL_RELAXED_QUAD
CPXMIP_OPTIMAL_RELAXED_SUM = _pycplex_platform.CPXMIP_OPTIMAL_RELAXED_SUM
CPXMIP_OPTIMAL_TOL = _pycplex_platform.CPXMIP_OPTIMAL_TOL
CPXMIP_POPULATESOL_LIM = _pycplex_platform.CPXMIP_POPULATESOL_LIM
CPXMIP_SOL_LIM = _pycplex_platform.CPXMIP_SOL_LIM
CPXMIP_TIME_LIM_FEAS = _pycplex_platform.CPXMIP_TIME_LIM_FEAS
CPXMIP_TIME_LIM_INFEAS = _pycplex_platform.CPXMIP_TIME_LIM_INFEAS
CPXMIP_UNBOUNDED = _pycplex_platform.CPXMIP_UNBOUNDED
CPX_CPXAUTOENUMS_H_H = _pycplex_platform.CPX_CPXAUTOENUMS_H_H
CPXCALLBACKINFO_THREADID = _pycplex_platform.CPXCALLBACKINFO_THREADID
CPXCALLBACKINFO_NODECOUNT = _pycplex_platform.CPXCALLBACKINFO_NODECOUNT
CPXCALLBACKINFO_ITCOUNT = _pycplex_platform.CPXCALLBACKINFO_ITCOUNT
CPXCALLBACKINFO_BEST_SOL = _pycplex_platform.CPXCALLBACKINFO_BEST_SOL
CPXCALLBACKINFO_BEST_BND = _pycplex_platform.CPXCALLBACKINFO_BEST_BND
CPXCALLBACKINFO_THREADS = _pycplex_platform.CPXCALLBACKINFO_THREADS
CPXCALLBACKINFO_FEASIBLE = _pycplex_platform.CPXCALLBACKINFO_FEASIBLE
CPXCALLBACKINFO_TIME = _pycplex_platform.CPXCALLBACKINFO_TIME
CPXCALLBACKINFO_DETTIME = _pycplex_platform.CPXCALLBACKINFO_DETTIME
CPXCALLBACKINFO_NODEUID = _pycplex_platform.CPXCALLBACKINFO_NODEUID
CPXCALLBACKINFO_NODEDEPTH = _pycplex_platform.CPXCALLBACKINFO_NODEDEPTH
CPXCALLBACKINFO_CANDIDATE_SOURCE = _pycplex_platform.CPXCALLBACKINFO_CANDIDATE_SOURCE
CPXCALLBACKINFO_RESTARTS = _pycplex_platform.CPXCALLBACKINFO_RESTARTS
CPXCALLBACKINFO_AFTERCUTLOOP = _pycplex_platform.CPXCALLBACKINFO_AFTERCUTLOOP
CPXCALLBACKINFO_NODESLEFT = _pycplex_platform.CPXCALLBACKINFO_NODESLEFT
CPXCALLBACKSOLUTION_NOCHECK = _pycplex_platform.CPXCALLBACKSOLUTION_NOCHECK
CPXCALLBACKSOLUTION_CHECKFEAS = _pycplex_platform.CPXCALLBACKSOLUTION_CHECKFEAS
CPXCALLBACKSOLUTION_PROPAGATE = _pycplex_platform.CPXCALLBACKSOLUTION_PROPAGATE
CPXCALLBACKSOLUTION_SOLVE = _pycplex_platform.CPXCALLBACKSOLUTION_SOLVE
CPXINFO_BYTE = _pycplex_platform.CPXINFO_BYTE
CPXINFO_SHORT = _pycplex_platform.CPXINFO_SHORT
CPXINFO_INT = _pycplex_platform.CPXINFO_INT
CPXINFO_LONG = _pycplex_platform.CPXINFO_LONG
CPXINFO_DOUBLE = _pycplex_platform.CPXINFO_DOUBLE
CPXPUBLICPARAMS_H = _pycplex_platform.CPXPUBLICPARAMS_H
CPX_PARAM_ADVIND = _pycplex_platform.CPX_PARAM_ADVIND
CPX_PARAM_AGGFILL = _pycplex_platform.CPX_PARAM_AGGFILL
CPX_PARAM_AGGIND = _pycplex_platform.CPX_PARAM_AGGIND
CPX_PARAM_CLOCKTYPE = _pycplex_platform.CPX_PARAM_CLOCKTYPE
CPX_PARAM_CRAIND = _pycplex_platform.CPX_PARAM_CRAIND
CPX_PARAM_DEPIND = _pycplex_platform.CPX_PARAM_DEPIND
CPX_PARAM_DPRIIND = _pycplex_platform.CPX_PARAM_DPRIIND
CPX_PARAM_PRICELIM = _pycplex_platform.CPX_PARAM_PRICELIM
CPX_PARAM_EPMRK = _pycplex_platform.CPX_PARAM_EPMRK
CPX_PARAM_EPOPT = _pycplex_platform.CPX_PARAM_EPOPT
CPX_PARAM_EPPER = _pycplex_platform.CPX_PARAM_EPPER
CPX_PARAM_EPRHS = _pycplex_platform.CPX_PARAM_EPRHS
CPX_PARAM_SIMDISPLAY = _pycplex_platform.CPX_PARAM_SIMDISPLAY
CPX_PARAM_ITLIM = _pycplex_platform.CPX_PARAM_ITLIM
CPX_PARAM_ROWREADLIM = _pycplex_platform.CPX_PARAM_ROWREADLIM
CPX_PARAM_NETFIND = _pycplex_platform.CPX_PARAM_NETFIND
CPX_PARAM_COLREADLIM = _pycplex_platform.CPX_PARAM_COLREADLIM
CPX_PARAM_NZREADLIM = _pycplex_platform.CPX_PARAM_NZREADLIM
CPX_PARAM_OBJLLIM = _pycplex_platform.CPX_PARAM_OBJLLIM
CPX_PARAM_OBJULIM = _pycplex_platform.CPX_PARAM_OBJULIM
CPX_PARAM_PERIND = _pycplex_platform.CPX_PARAM_PERIND
CPX_PARAM_PERLIM = _pycplex_platform.CPX_PARAM_PERLIM
CPX_PARAM_PPRIIND = _pycplex_platform.CPX_PARAM_PPRIIND
CPX_PARAM_PREIND = _pycplex_platform.CPX_PARAM_PREIND
CPX_PARAM_REINV = _pycplex_platform.CPX_PARAM_REINV
CPX_PARAM_SCAIND = _pycplex_platform.CPX_PARAM_SCAIND
CPX_PARAM_SCRIND = _pycplex_platform.CPX_PARAM_SCRIND
CPX_PARAM_SINGLIM = _pycplex_platform.CPX_PARAM_SINGLIM
CPX_PARAM_TILIM = _pycplex_platform.CPX_PARAM_TILIM
CPX_PARAM_PREDUAL = _pycplex_platform.CPX_PARAM_PREDUAL
CPX_PARAM_PREPASS = _pycplex_platform.CPX_PARAM_PREPASS
CPX_PARAM_DATACHECK = _pycplex_platform.CPX_PARAM_DATACHECK
CPX_PARAM_REDUCE = _pycplex_platform.CPX_PARAM_REDUCE
CPX_PARAM_PRELINEAR = _pycplex_platform.CPX_PARAM_PRELINEAR
CPX_PARAM_LPMETHOD = _pycplex_platform.CPX_PARAM_LPMETHOD
CPX_PARAM_QPMETHOD = _pycplex_platform.CPX_PARAM_QPMETHOD
CPX_PARAM_WORKDIR = _pycplex_platform.CPX_PARAM_WORKDIR
CPX_PARAM_WORKMEM = _pycplex_platform.CPX_PARAM_WORKMEM
CPX_PARAM_THREADS = _pycplex_platform.CPX_PARAM_THREADS
CPX_PARAM_CONFLICTALG = _pycplex_platform.CPX_PARAM_CONFLICTALG
CPX_PARAM_CONFLICTDISPLAY = _pycplex_platform.CPX_PARAM_CONFLICTDISPLAY
CPX_PARAM_SIFTDISPLAY = _pycplex_platform.CPX_PARAM_SIFTDISPLAY
CPX_PARAM_SIFTALG = _pycplex_platform.CPX_PARAM_SIFTALG
CPX_PARAM_SIFTITLIM = _pycplex_platform.CPX_PARAM_SIFTITLIM
CPX_PARAM_MPSLONGNUM = _pycplex_platform.CPX_PARAM_MPSLONGNUM
CPX_PARAM_MEMORYEMPHASIS = _pycplex_platform.CPX_PARAM_MEMORYEMPHASIS
CPX_PARAM_NUMERICALEMPHASIS = _pycplex_platform.CPX_PARAM_NUMERICALEMPHASIS
CPX_PARAM_FEASOPTMODE = _pycplex_platform.CPX_PARAM_FEASOPTMODE
CPX_PARAM_PARALLELMODE = _pycplex_platform.CPX_PARAM_PARALLELMODE
CPX_PARAM_TUNINGMEASURE = _pycplex_platform.CPX_PARAM_TUNINGMEASURE
CPX_PARAM_TUNINGREPEAT = _pycplex_platform.CPX_PARAM_TUNINGREPEAT
CPX_PARAM_TUNINGTILIM = _pycplex_platform.CPX_PARAM_TUNINGTILIM
CPX_PARAM_TUNINGDISPLAY = _pycplex_platform.CPX_PARAM_TUNINGDISPLAY
CPX_PARAM_WRITELEVEL = _pycplex_platform.CPX_PARAM_WRITELEVEL
CPX_PARAM_RANDOMSEED = _pycplex_platform.CPX_PARAM_RANDOMSEED
CPX_PARAM_DETTILIM = _pycplex_platform.CPX_PARAM_DETTILIM
CPX_PARAM_FILEENCODING = _pycplex_platform.CPX_PARAM_FILEENCODING
CPX_PARAM_APIENCODING = _pycplex_platform.CPX_PARAM_APIENCODING
CPX_PARAM_OPTIMALITYTARGET = _pycplex_platform.CPX_PARAM_OPTIMALITYTARGET
CPX_PARAM_CLONELOG = _pycplex_platform.CPX_PARAM_CLONELOG
CPX_PARAM_TUNINGDETTILIM = _pycplex_platform.CPX_PARAM_TUNINGDETTILIM
CPX_PARAM_CPUMASK = _pycplex_platform.CPX_PARAM_CPUMASK
CPX_PARAM_SOLUTIONTYPE = _pycplex_platform.CPX_PARAM_SOLUTIONTYPE
CPX_PARAM_WARNLIM = _pycplex_platform.CPX_PARAM_WARNLIM
CPX_PARAM_SIFTSIM = _pycplex_platform.CPX_PARAM_SIFTSIM
CPX_PARAM_DYNAMICROWS = _pycplex_platform.CPX_PARAM_DYNAMICROWS
CPX_PARAM_RECORD = _pycplex_platform.CPX_PARAM_RECORD
CPX_PARAM_PARAMDISPLAY = _pycplex_platform.CPX_PARAM_PARAMDISPLAY
CPX_PARAM_FOLDING = _pycplex_platform.CPX_PARAM_FOLDING
CPX_PARAM_PREREFORM = _pycplex_platform.CPX_PARAM_PREREFORM
CPX_PARAM_WORKERALG = _pycplex_platform.CPX_PARAM_WORKERALG
CPX_PARAM_BENDERSSTRATEGY = _pycplex_platform.CPX_PARAM_BENDERSSTRATEGY
CPX_PARAM_BENDERSFEASCUTTOL = _pycplex_platform.CPX_PARAM_BENDERSFEASCUTTOL
CPX_PARAM_BENDERSOPTCUTTOL = _pycplex_platform.CPX_PARAM_BENDERSOPTCUTTOL
CPX_PARAM_MULTIOBJDISPLAY = _pycplex_platform.CPX_PARAM_MULTIOBJDISPLAY
CPX_PARAM_BRDIR = _pycplex_platform.CPX_PARAM_BRDIR
CPX_PARAM_BTTOL = _pycplex_platform.CPX_PARAM_BTTOL
CPX_PARAM_CLIQUES = _pycplex_platform.CPX_PARAM_CLIQUES
CPX_PARAM_COEREDIND = _pycplex_platform.CPX_PARAM_COEREDIND
CPX_PARAM_COVERS = _pycplex_platform.CPX_PARAM_COVERS
CPX_PARAM_CUTLO = _pycplex_platform.CPX_PARAM_CUTLO
CPX_PARAM_CUTUP = _pycplex_platform.CPX_PARAM_CUTUP
CPX_PARAM_EPAGAP = _pycplex_platform.CPX_PARAM_EPAGAP
CPX_PARAM_EPGAP = _pycplex_platform.CPX_PARAM_EPGAP
CPX_PARAM_EPINT = _pycplex_platform.CPX_PARAM_EPINT
CPX_PARAM_MIPDISPLAY = _pycplex_platform.CPX_PARAM_MIPDISPLAY
CPX_PARAM_MIPINTERVAL = _pycplex_platform.CPX_PARAM_MIPINTERVAL
CPX_PARAM_INTSOLLIM = _pycplex_platform.CPX_PARAM_INTSOLLIM
CPX_PARAM_NODEFILEIND = _pycplex_platform.CPX_PARAM_NODEFILEIND
CPX_PARAM_NODELIM = _pycplex_platform.CPX_PARAM_NODELIM
CPX_PARAM_NODESEL = _pycplex_platform.CPX_PARAM_NODESEL
CPX_PARAM_OBJDIF = _pycplex_platform.CPX_PARAM_OBJDIF
CPX_PARAM_MIPORDIND = _pycplex_platform.CPX_PARAM_MIPORDIND
CPX_PARAM_RELOBJDIF = _pycplex_platform.CPX_PARAM_RELOBJDIF
CPX_PARAM_STARTALG = _pycplex_platform.CPX_PARAM_STARTALG
CPX_PARAM_SUBALG = _pycplex_platform.CPX_PARAM_SUBALG
CPX_PARAM_TRELIM = _pycplex_platform.CPX_PARAM_TRELIM
CPX_PARAM_VARSEL = _pycplex_platform.CPX_PARAM_VARSEL
CPX_PARAM_BNDSTRENIND = _pycplex_platform.CPX_PARAM_BNDSTRENIND
CPX_PARAM_HEURFREQ = _pycplex_platform.CPX_PARAM_HEURFREQ
CPX_PARAM_MIPORDTYPE = _pycplex_platform.CPX_PARAM_MIPORDTYPE
CPX_PARAM_CUTSFACTOR = _pycplex_platform.CPX_PARAM_CUTSFACTOR
CPX_PARAM_RELAXPREIND = _pycplex_platform.CPX_PARAM_RELAXPREIND
CPX_PARAM_PRESLVND = _pycplex_platform.CPX_PARAM_PRESLVND
CPX_PARAM_BBINTERVAL = _pycplex_platform.CPX_PARAM_BBINTERVAL
CPX_PARAM_FLOWCOVERS = _pycplex_platform.CPX_PARAM_FLOWCOVERS
CPX_PARAM_IMPLBD = _pycplex_platform.CPX_PARAM_IMPLBD
CPX_PARAM_PROBE = _pycplex_platform.CPX_PARAM_PROBE
CPX_PARAM_GUBCOVERS = _pycplex_platform.CPX_PARAM_GUBCOVERS
CPX_PARAM_STRONGCANDLIM = _pycplex_platform.CPX_PARAM_STRONGCANDLIM
CPX_PARAM_STRONGITLIM = _pycplex_platform.CPX_PARAM_STRONGITLIM
CPX_PARAM_FRACCAND = _pycplex_platform.CPX_PARAM_FRACCAND
CPX_PARAM_FRACCUTS = _pycplex_platform.CPX_PARAM_FRACCUTS
CPX_PARAM_FRACPASS = _pycplex_platform.CPX_PARAM_FRACPASS
CPX_PARAM_FLOWPATHS = _pycplex_platform.CPX_PARAM_FLOWPATHS
CPX_PARAM_MIRCUTS = _pycplex_platform.CPX_PARAM_MIRCUTS
CPX_PARAM_DISJCUTS = _pycplex_platform.CPX_PARAM_DISJCUTS
CPX_PARAM_AGGCUTLIM = _pycplex_platform.CPX_PARAM_AGGCUTLIM
CPX_PARAM_MIPCBREDLP = _pycplex_platform.CPX_PARAM_MIPCBREDLP
CPX_PARAM_CUTPASS = _pycplex_platform.CPX_PARAM_CUTPASS
CPX_PARAM_MIPEMPHASIS = _pycplex_platform.CPX_PARAM_MIPEMPHASIS
CPX_PARAM_SYMMETRY = _pycplex_platform.CPX_PARAM_SYMMETRY
CPX_PARAM_DIVETYPE = _pycplex_platform.CPX_PARAM_DIVETYPE
CPX_PARAM_RINSHEUR = _pycplex_platform.CPX_PARAM_RINSHEUR
CPX_PARAM_LBHEUR = _pycplex_platform.CPX_PARAM_LBHEUR
CPX_PARAM_REPEATPRESOLVE = _pycplex_platform.CPX_PARAM_REPEATPRESOLVE
CPX_PARAM_PROBETIME = _pycplex_platform.CPX_PARAM_PROBETIME
CPX_PARAM_POLISHTIME = _pycplex_platform.CPX_PARAM_POLISHTIME
CPX_PARAM_REPAIRTRIES = _pycplex_platform.CPX_PARAM_REPAIRTRIES
CPX_PARAM_EPLIN = _pycplex_platform.CPX_PARAM_EPLIN
CPX_PARAM_EPRELAX = _pycplex_platform.CPX_PARAM_EPRELAX
CPX_PARAM_FPHEUR = _pycplex_platform.CPX_PARAM_FPHEUR
CPX_PARAM_EACHCUTLIM = _pycplex_platform.CPX_PARAM_EACHCUTLIM
CPX_PARAM_SOLNPOOLCAPACITY = _pycplex_platform.CPX_PARAM_SOLNPOOLCAPACITY
CPX_PARAM_SOLNPOOLREPLACE = _pycplex_platform.CPX_PARAM_SOLNPOOLREPLACE
CPX_PARAM_SOLNPOOLGAP = _pycplex_platform.CPX_PARAM_SOLNPOOLGAP
CPX_PARAM_SOLNPOOLAGAP = _pycplex_platform.CPX_PARAM_SOLNPOOLAGAP
CPX_PARAM_SOLNPOOLINTENSITY = _pycplex_platform.CPX_PARAM_SOLNPOOLINTENSITY
CPX_PARAM_POPULATELIM = _pycplex_platform.CPX_PARAM_POPULATELIM
CPX_PARAM_MIPSEARCH = _pycplex_platform.CPX_PARAM_MIPSEARCH
CPX_PARAM_MIQCPSTRAT = _pycplex_platform.CPX_PARAM_MIQCPSTRAT
CPX_PARAM_ZEROHALFCUTS = _pycplex_platform.CPX_PARAM_ZEROHALFCUTS
CPX_PARAM_HEUREFFORT = _pycplex_platform.CPX_PARAM_HEUREFFORT
CPX_PARAM_POLISHAFTEREPAGAP = _pycplex_platform.CPX_PARAM_POLISHAFTEREPAGAP
CPX_PARAM_POLISHAFTEREPGAP = _pycplex_platform.CPX_PARAM_POLISHAFTEREPGAP
CPX_PARAM_POLISHAFTERNODE = _pycplex_platform.CPX_PARAM_POLISHAFTERNODE
CPX_PARAM_POLISHAFTERINTSOL = _pycplex_platform.CPX_PARAM_POLISHAFTERINTSOL
CPX_PARAM_POLISHAFTERTIME = _pycplex_platform.CPX_PARAM_POLISHAFTERTIME
CPX_PARAM_MCFCUTS = _pycplex_platform.CPX_PARAM_MCFCUTS
CPX_PARAM_MIPKAPPASTATS = _pycplex_platform.CPX_PARAM_MIPKAPPASTATS
CPX_PARAM_AUXROOTTHREADS = _pycplex_platform.CPX_PARAM_AUXROOTTHREADS
CPX_PARAM_INTSOLFILEPREFIX = _pycplex_platform.CPX_PARAM_INTSOLFILEPREFIX
CPX_PARAM_PROBEDETTIME = _pycplex_platform.CPX_PARAM_PROBEDETTIME
CPX_PARAM_POLISHAFTERDETTIME = _pycplex_platform.CPX_PARAM_POLISHAFTERDETTIME
CPX_PARAM_LANDPCUTS = _pycplex_platform.CPX_PARAM_LANDPCUTS
CPX_PARAM_NODECUTS = _pycplex_platform.CPX_PARAM_NODECUTS
CPX_PARAM_RAMPUPDURATION = _pycplex_platform.CPX_PARAM_RAMPUPDURATION
CPX_PARAM_RAMPUPDETTILIM = _pycplex_platform.CPX_PARAM_RAMPUPDETTILIM
CPX_PARAM_RAMPUPTILIM = _pycplex_platform.CPX_PARAM_RAMPUPTILIM
CPX_PARAM_LOCALIMPLBD = _pycplex_platform.CPX_PARAM_LOCALIMPLBD
CPX_PARAM_BQPCUTS = _pycplex_platform.CPX_PARAM_BQPCUTS
CPX_PARAM_RLTCUTS = _pycplex_platform.CPX_PARAM_RLTCUTS
CPX_PARAM_SUBMIPSTARTALG = _pycplex_platform.CPX_PARAM_SUBMIPSTARTALG
CPX_PARAM_SUBMIPSUBALG = _pycplex_platform.CPX_PARAM_SUBMIPSUBALG
CPX_PARAM_SUBMIPSCAIND = _pycplex_platform.CPX_PARAM_SUBMIPSCAIND
CPX_PARAM_SUBMIPNODELIMIT = _pycplex_platform.CPX_PARAM_SUBMIPNODELIMIT
CPX_PARAM_SOS1REFORM = _pycplex_platform.CPX_PARAM_SOS1REFORM
CPX_PARAM_SOS2REFORM = _pycplex_platform.CPX_PARAM_SOS2REFORM
CPX_PARAM_BAREPCOMP = _pycplex_platform.CPX_PARAM_BAREPCOMP
CPX_PARAM_BARGROWTH = _pycplex_platform.CPX_PARAM_BARGROWTH
CPX_PARAM_BAROBJRNG = _pycplex_platform.CPX_PARAM_BAROBJRNG
CPX_PARAM_BARALG = _pycplex_platform.CPX_PARAM_BARALG
CPX_PARAM_BARCOLNZ = _pycplex_platform.CPX_PARAM_BARCOLNZ
CPX_PARAM_BARDISPLAY = _pycplex_platform.CPX_PARAM_BARDISPLAY
CPX_PARAM_BARITLIM = _pycplex_platform.CPX_PARAM_BARITLIM
CPX_PARAM_BARMAXCOR = _pycplex_platform.CPX_PARAM_BARMAXCOR
CPX_PARAM_BARORDER = _pycplex_platform.CPX_PARAM_BARORDER
CPX_PARAM_BARSTARTALG = _pycplex_platform.CPX_PARAM_BARSTARTALG
CPX_PARAM_BARCROSSALG = _pycplex_platform.CPX_PARAM_BARCROSSALG
CPX_PARAM_BARQCPEPCOMP = _pycplex_platform.CPX_PARAM_BARQCPEPCOMP
CPX_PARAM_QPNZREADLIM = _pycplex_platform.CPX_PARAM_QPNZREADLIM
CPX_PARAM_CALCQCPDUALS = _pycplex_platform.CPX_PARAM_CALCQCPDUALS
CPX_PARAM_QPMAKEPSDIND = _pycplex_platform.CPX_PARAM_QPMAKEPSDIND
CPX_PARAM_QTOLININD = _pycplex_platform.CPX_PARAM_QTOLININD
CPX_PARAM_NETITLIM = _pycplex_platform.CPX_PARAM_NETITLIM
CPX_PARAM_NETEPOPT = _pycplex_platform.CPX_PARAM_NETEPOPT
CPX_PARAM_NETEPRHS = _pycplex_platform.CPX_PARAM_NETEPRHS
CPX_PARAM_NETPPRIIND = _pycplex_platform.CPX_PARAM_NETPPRIIND
CPX_PARAM_NETDISPLAY = _pycplex_platform.CPX_PARAM_NETDISPLAY
CPX_CPXAUTOTYPES_H_H = _pycplex_platform.CPX_CPXAUTOTYPES_H_H
CPX_CPXAUTOSTRUCTS_H_H = _pycplex_platform.CPX_CPXAUTOSTRUCTS_H_H
# Register cpxdeserializer in _pycplex_platform:
_pycplex_platform.cpxdeserializer_swigregister(cpxdeserializer)
# Register cpxserializer in _pycplex_platform:
_pycplex_platform.cpxserializer_swigregister(cpxserializer)
CPX_CPLEXX_H = _pycplex_platform.CPX_CPLEXX_H
CPX_APIMODEL_SMALL = _pycplex_platform.CPX_APIMODEL_SMALL
CPX_APIMODEL_LARGE = _pycplex_platform.CPX_APIMODEL_LARGE
CPX_APIMODEL = _pycplex_platform.CPX_APIMODEL
# Register cb_struct in _pycplex_platform:
_pycplex_platform.cb_struct_swigregister(cb_struct)
CPX_CPLEXE_H = _pycplex_platform.CPX_CPLEXE_H
CPXE_H = _pycplex_platform.CPXE_H
MIPE_H = _pycplex_platform.MIPE_H
CPXAUTOE_H = _pycplex_platform.CPXAUTOE_H
CPX_AUTOES_H = _pycplex_platform.CPX_AUTOES_H
CPX_AUTOEL_H = _pycplex_platform.CPX_AUTOEL_H
CPX_AUTOEX_H = _pycplex_platform.CPX_AUTOEX_H
# Register cpxpyiodevice in _pycplex_platform:
_pycplex_platform.cpxpyiodevice_swigregister(cpxpyiodevice)
# Register intPtr in _pycplex_platform:
_pycplex_platform.intPtr_swigregister(intPtr)
# Register cpxlongPtr in _pycplex_platform:
_pycplex_platform.cpxlongPtr_swigregister(cpxlongPtr)
# Register doublePtr in _pycplex_platform:
_pycplex_platform.doublePtr_swigregister(doublePtr)
# Register CPXLPptrPtr in _pycplex_platform:
_pycplex_platform.CPXLPptrPtr_swigregister(CPXLPptrPtr)
# Register CPXENVptrPtr in _pycplex_platform:
_pycplex_platform.CPXENVptrPtr_swigregister(CPXENVptrPtr)
# Register CPXCHANNELptrPtr in _pycplex_platform:
_pycplex_platform.CPXCHANNELptrPtr_swigregister(CPXCHANNELptrPtr)
# Register CPXPARAMSETptrPtr in _pycplex_platform:
_pycplex_platform.CPXPARAMSETptrPtr_swigregister(CPXPARAMSETptrPtr)
# Register intArray in _pycplex_platform:
_pycplex_platform.intArray_swigregister(intArray)
# Register doubleArray in _pycplex_platform:
_pycplex_platform.doubleArray_swigregister(doubleArray)
# Register longArray in _pycplex_platform:
_pycplex_platform.longArray_swigregister(longArray)
| [
2,
770,
2393,
373,
6338,
7560,
416,
12672,
3528,
357,
4023,
1378,
2503,
13,
2032,
328,
13,
2398,
737,
198,
2,
10628,
604,
13,
15,
13,
15,
198,
2,
198,
2,
2141,
407,
787,
2458,
284,
428,
2393,
4556,
345,
760,
644,
345,
389,
1804,
438,
4666,
1958,
198,
2,
262,
12672,
3528,
7071,
2393,
2427,
13,
198,
198,
6738,
25064,
1330,
2196,
62,
10951,
355,
4808,
2032,
328,
62,
29412,
62,
9641,
62,
10951,
198,
361,
4808,
2032,
328,
62,
29412,
62,
9641,
62,
10951,
1279,
357,
17,
11,
767,
11,
657,
2599,
198,
220,
220,
220,
5298,
43160,
12331,
10786,
37906,
362,
13,
22,
393,
1568,
2672,
11537,
198,
198,
2,
17267,
262,
1877,
12,
5715,
327,
14,
34,
4880,
8265,
198,
361,
11593,
26495,
834,
393,
705,
2637,
287,
11593,
3672,
834,
25,
198,
220,
220,
220,
422,
764,
1330,
4808,
9078,
66,
11141,
62,
24254,
198,
17772,
25,
198,
220,
220,
220,
1330,
4808,
9078,
66,
11141,
62,
24254,
198,
198,
28311,
25,
198,
220,
220,
220,
1330,
3170,
1040,
355,
11593,
18780,
259,
834,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
1330,
11593,
18780,
259,
834,
628,
628,
628,
198,
198,
4299,
4808,
2032,
328,
62,
2860,
62,
4164,
330,
31172,
7,
4164,
330,
31172,
2599,
198,
220,
220,
220,
37227,
9487,
11705,
1352,
329,
4375,
257,
1138,
330,
31172,
284,
257,
12672,
3528,
12908,
1398,
532,
257,
18862,
1150,
866,
2196,
286,
2237,
13,
2860,
62,
4164,
330,
31172,
37811,
198,
220,
220,
220,
1441,
29908,
628,
198,
4871,
4808,
10462,
328,
15419,
44090,
48526,
7,
4906,
2599,
198,
220,
220,
220,
37227,
48526,
1398,
284,
4605,
30745,
28995,
12608,
357,
3919,
649,
12608,
8,
329,
257,
1398,
37811,
198,
220,
220,
220,
11593,
2617,
35226,
834,
796,
4808,
2032,
328,
62,
2617,
35226,
62,
77,
623,
28995,
62,
4871,
62,
45286,
7,
4906,
13,
834,
2617,
35226,
834,
8,
628,
198,
8697,
55,
62,
15112,
47471,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
47471,
62,
39,
198,
8697,
55,
62,
15112,
40086,
62,
40726,
23051,
62,
9864,
23680,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
40086,
62,
40726,
23051,
62,
9864,
23680,
198,
8697,
55,
62,
15112,
40086,
62,
26288,
5446,
9865,
3843,
1961,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
40086,
62,
26288,
5446,
9865,
3843,
1961,
62,
44,
4061,
198,
8697,
55,
62,
8697,
55,
39371,
46,
12394,
9936,
47,
1546,
62,
39,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
55,
39371,
46,
12394,
9936,
47,
1546,
62,
39,
62,
39,
198,
8697,
55,
17513,
9328,
62,
7206,
20032,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
17513,
9328,
62,
7206,
20032,
1961,
198,
8697,
55,
12394,
62,
7206,
20032,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12394,
62,
7206,
20032,
1961,
198,
8697,
32457,
18494,
62,
7206,
20032,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
32457,
18494,
62,
7206,
20032,
1961,
198,
8697,
55,
9693,
9863,
62,
7206,
20032,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
9693,
9863,
62,
7206,
20032,
1961,
198,
8697,
55,
6239,
18494,
62,
7206,
20032,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
6239,
18494,
62,
7206,
20032,
1961,
198,
8697,
55,
62,
18601,
62,
27082,
2390,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18601,
62,
27082,
2390,
62,
22921,
198,
198,
2,
17296,
269,
8416,
72,
1098,
28281,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
66,
8416,
72,
1098,
28281,
62,
2032,
328,
30238,
7,
66,
8416,
72,
1098,
28281,
8,
198,
66,
7785,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
66,
7785,
198,
8697,
55,
62,
33991,
796,
269,
7785,
13,
8697,
55,
62,
33991,
198,
2302,
62,
3672,
796,
269,
7785,
13,
2302,
62,
3672,
198,
198,
8697,
55,
62,
43717,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
43717,
198,
8697,
55,
62,
43717,
62,
43717,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
43717,
62,
43717,
198,
8697,
55,
62,
43717,
62,
2200,
22781,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
43717,
62,
2200,
22781,
198,
8697,
55,
62,
43717,
62,
33365,
30643,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
43717,
62,
33365,
30643,
6234,
198,
8697,
55,
62,
43717,
62,
47084,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
43717,
62,
47084,
198,
8697,
55,
62,
1268,
26001,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1268,
26001,
15919,
198,
8697,
55,
62,
23678,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
23678,
33,
15919,
198,
8697,
55,
62,
47,
54,
43,
62,
22921,
8634,
32135,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
54,
43,
62,
22921,
8634,
32135,
198,
8697,
55,
62,
47,
54,
43,
62,
23678,
8634,
32135,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
54,
43,
62,
23678,
8634,
32135,
198,
8697,
55,
62,
27082,
2390,
25216,
62,
45,
11651,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
25216,
62,
45,
11651,
198,
8697,
55,
62,
27082,
2390,
25216,
62,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
25216,
62,
12394,
198,
8697,
55,
62,
27082,
2390,
25216,
62,
35,
2606,
19146,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
25216,
62,
35,
2606,
19146,
198,
8697,
55,
62,
27082,
2390,
25216,
62,
18601,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
25216,
62,
18601,
2751,
198,
8697,
55,
62,
27082,
2390,
25216,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
25216,
62,
43,
18494,
198,
8697,
55,
62,
15285,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15285,
62,
50,
3535,
45,
198,
8697,
55,
62,
39371,
46,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39371,
46,
62,
50,
3535,
45,
198,
8697,
55,
62,
33,
1921,
2149,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1921,
2149,
62,
50,
3535,
45,
198,
8697,
55,
62,
45,
1340,
33,
1921,
2149,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
45,
1340,
33,
1921,
2149,
62,
50,
3535,
45,
198,
8697,
55,
62,
4805,
3955,
1847,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
3955,
1847,
62,
50,
3535,
45,
198,
8697,
55,
62,
46437,
25154,
62,
43,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
46437,
25154,
62,
43,
3913,
198,
8697,
55,
62,
46437,
25154,
62,
8577,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
46437,
25154,
62,
8577,
198,
8697,
55,
62,
46437,
25154,
62,
47084,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
46437,
25154,
62,
47084,
198,
8697,
55,
62,
46437,
25154,
62,
4760,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
46437,
25154,
62,
4760,
38,
198,
8697,
55,
62,
46437,
25154,
62,
31858,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
46437,
25154,
62,
31858,
198,
8697,
55,
62,
4805,
1137,
3913,
62,
22083,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
3913,
62,
22083,
198,
8697,
55,
62,
4805,
1137,
3913,
62,
4760,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
3913,
62,
4760,
38,
198,
8697,
55,
62,
4805,
1137,
3913,
62,
31858,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
3913,
62,
31858,
198,
8697,
55,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39371,
46,
198,
8697,
55,
62,
1340,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1340,
198,
8697,
55,
62,
27977,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27977,
198,
8697,
55,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
198,
8697,
55,
62,
23678,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
23678,
198,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
27977,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
27977,
198,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
37771,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
37771,
198,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
10705,
8808,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
1404,
16219,
25171,
62,
10705,
8808,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
30709,
12576,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
30709,
12576,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
39371,
46,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
7206,
6089,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
7206,
6089,
55,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
2257,
35238,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
2257,
35238,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
2257,
35238,
48,
2257,
7227,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
2257,
35238,
48,
2257,
7227,
198,
8697,
55,
62,
47,
4805,
40,
12115,
62,
37,
9994,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
47,
4805,
40,
12115,
62,
37,
9994,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
39371,
46,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
37,
9994,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
37,
9994,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
2257,
35238,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
2257,
35238,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
37,
9994,
2257,
35238,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
37,
9994,
2257,
35238,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
2257,
35238,
48,
2257,
7227,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
2257,
35238,
48,
2257,
7227,
198,
8697,
55,
62,
35,
4805,
40,
12115,
62,
7206,
6089,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
4805,
40,
12115,
62,
7206,
6089,
55,
198,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
35,
2767,
1137,
23678,
8808,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
35,
2767,
1137,
23678,
8808,
2149,
198,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
39371,
46,
198,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
3185,
15490,
4944,
8808,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
1847,
2538,
43,
62,
3185,
15490,
4944,
8808,
2149,
198,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
39371,
46,
198,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
7036,
53,
27415,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
7036,
53,
27415,
198,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
26288,
43387,
9328,
53,
27415,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
26288,
43387,
9328,
53,
27415,
198,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
45,
1340,
57,
1137,
8874,
27415,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
45,
1340,
57,
1137,
8874,
27415,
198,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
45,
1340,
57,
1137,
3727,
37719,
2200,
9328,
53,
27415,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
18564,
12709,
2538,
18697,
62,
45,
1340,
57,
1137,
3727,
37719,
2200,
9328,
53,
27415,
198,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
39371,
46,
198,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
3185,
51,
3955,
1847,
10943,
6089,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
3185,
51,
3955,
1847,
10943,
6089,
55,
198,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
39776,
2257,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
39776,
2257,
12532,
1137,
198,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
3185,
51,
3955,
1847,
8763,
9864,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
62,
3185,
51,
3955,
1847,
8763,
9864,
1847,
198,
8697,
55,
62,
1847,
38,
62,
45,
11651,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
45,
11651,
198,
8697,
55,
62,
1847,
38,
62,
39371,
2662,
1404,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
39371,
2662,
1404,
2149,
198,
8697,
55,
62,
1847,
38,
62,
4805,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
4805,
3955,
1847,
198,
8697,
55,
62,
1847,
38,
62,
35,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
35,
25620,
198,
8697,
55,
62,
1847,
38,
62,
12884,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
12884,
198,
8697,
55,
62,
1847,
38,
62,
33,
1503,
7112,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
33,
1503,
7112,
1137,
198,
8697,
55,
62,
1847,
38,
62,
50,
32297,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
50,
32297,
2751,
198,
8697,
55,
62,
1847,
38,
62,
10943,
34,
39237,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
10943,
34,
39237,
198,
8697,
55,
62,
1847,
38,
62,
33,
1503,
3185,
51,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
33,
1503,
3185,
51,
198,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
1268,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
1268,
198,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
12425,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
12425,
198,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
47,
3824,
2394,
198,
8697,
55,
62,
1847,
38,
62,
15112,
1921,
3185,
51,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
15112,
1921,
3185,
51,
198,
8697,
55,
62,
1847,
38,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
44,
4061,
198,
8697,
55,
62,
1847,
38,
62,
33,
10619,
4877,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
33,
10619,
4877,
198,
8697,
55,
62,
1847,
38,
62,
44,
16724,
9399,
33,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
44,
16724,
9399,
33,
41,
198,
8697,
55,
62,
1847,
38,
62,
49,
9864,
7759,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1847,
38,
62,
49,
9864,
7759,
198,
8697,
55,
62,
1404,
62,
43,
36048,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1404,
62,
43,
36048,
198,
8697,
55,
62,
33,
1921,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1921,
2149,
198,
8697,
55,
62,
1404,
62,
8577,
18973,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1404,
62,
8577,
18973,
198,
8697,
55,
62,
39274,
62,
40331,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39274,
62,
40331,
1137,
198,
8697,
55,
62,
15285,
62,
53,
1503,
3539,
19146,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15285,
62,
53,
1503,
3539,
19146,
198,
8697,
55,
62,
37815,
1268,
52,
20958,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
37815,
1268,
52,
20958,
198,
8697,
55,
62,
33,
1268,
13153,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1268,
13153,
198,
8697,
55,
62,
12394,
7156,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12394,
7156,
1137,
198,
8697,
55,
62,
50,
3620,
2149,
35830,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3620,
2149,
35830,
198,
8697,
55,
62,
50,
3620,
40,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3620,
40,
12394,
198,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
4805,
3955,
1847,
6981,
35,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
4805,
3955,
1847,
6981,
35,
25620,
198,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
35,
25620,
1340,
11319,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
35,
25620,
1340,
11319,
198,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
4805,
3955,
1847,
1340,
11319,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
4805,
3955,
1847,
1340,
11319,
198,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
45,
3185,
49,
3955,
1847,
12532,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
1137,
1961,
52,
5222,
62,
45,
3185,
49,
3955,
1847,
12532,
25620,
198,
8697,
55,
62,
4805,
9338,
21389,
62,
7036,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
9338,
21389,
62,
7036,
198,
8697,
55,
62,
4805,
9338,
21389,
62,
41358,
37,
9338,
62,
9419,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
9338,
21389,
62,
41358,
37,
9338,
62,
9419,
27143,
198,
8697,
55,
62,
4805,
9338,
21389,
62,
41358,
37,
9338,
62,
4944,
9419,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
9338,
21389,
62,
41358,
37,
9338,
62,
4944,
9419,
27143,
198,
8697,
55,
62,
4805,
9338,
21389,
62,
45,
11651,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
9338,
21389,
62,
45,
11651,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
6369,
39149,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
6369,
39149,
1961,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
44,
28952,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
44,
28952,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
30501,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
30501,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
10526,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
47,
18420,
34563,
62,
10526,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
44,
28952,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
44,
28952,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
30501,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
30501,
198,
8697,
55,
62,
10943,
3697,
18379,
62,
10526,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
62,
10526,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
39371,
46,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
37,
11262,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
37,
11262,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
4805,
3185,
4760,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
4805,
3185,
4760,
6158,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
48296,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
48296,
3535,
6089,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
40,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
40,
1797,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
43,
3955,
29722,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
43,
3955,
29722,
3535,
6089,
198,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
3697,
18379,
1847,
38,
62,
50,
3535,
6089,
198,
8697,
55,
4805,
9864,
62,
19930,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
19930,
198,
8697,
55,
4805,
9864,
62,
44,
4146,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
44,
4146,
47,
198,
8697,
55,
4805,
9864,
62,
47084,
1961,
44,
4146,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
47084,
1961,
44,
4146,
47,
198,
8697,
55,
4805,
9864,
62,
45,
3727,
3698,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
45,
3727,
3698,
47,
198,
8697,
55,
4805,
9864,
62,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
48,
47,
198,
8697,
55,
4805,
9864,
62,
8895,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
8895,
48,
47,
198,
8697,
55,
4805,
9864,
62,
47084,
1961,
8895,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
47084,
1961,
8895,
48,
47,
198,
8697,
55,
4805,
9864,
62,
45,
16820,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
45,
16820,
48,
47,
198,
8697,
55,
4805,
9864,
62,
48,
8697,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
48,
8697,
198,
8697,
55,
4805,
9864,
62,
8895,
48,
8697,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
8895,
48,
8697,
198,
8697,
55,
4805,
9864,
62,
45,
16820,
48,
8697,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
4805,
9864,
62,
45,
16820,
48,
8697,
198,
8697,
55,
62,
19930,
15675,
1137,
62,
2538,
38,
43300,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
19930,
15675,
1137,
62,
2538,
38,
43300,
198,
8697,
55,
62,
19930,
15675,
1137,
62,
13965,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
19930,
15675,
1137,
62,
13965,
198,
8697,
55,
62,
27082,
2390,
62,
7036,
62,
23678,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
7036,
62,
23678,
198,
8697,
55,
62,
27082,
2390,
62,
7036,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
7036,
62,
22921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
4805,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
4805,
3955,
1847,
198,
8697,
55,
62,
34,
7036,
31098,
62,
35,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
35,
25620,
198,
8697,
55,
62,
34,
7036,
31098,
62,
12884,
33249,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
12884,
33249,
198,
8697,
55,
62,
34,
7036,
31098,
62,
4805,
3955,
1847,
62,
9419,
2640,
15821,
5959,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
4805,
3955,
1847,
62,
9419,
2640,
15821,
5959,
198,
8697,
55,
62,
34,
7036,
31098,
62,
35,
25620,
62,
9419,
2640,
15821,
5959,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
35,
25620,
62,
9419,
2640,
15821,
5959,
198,
8697,
55,
62,
34,
7036,
31098,
62,
33,
1503,
7112,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
33,
1503,
7112,
1137,
198,
8697,
55,
62,
34,
7036,
31098,
62,
48296,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
48296,
3535,
6089,
198,
8697,
55,
62,
34,
7036,
31098,
62,
48,
49079,
1503,
7112,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
48,
49079,
1503,
7112,
1137,
198,
8697,
55,
62,
34,
7036,
31098,
62,
48,
3705,
3955,
16437,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
48,
3705,
3955,
16437,
55,
198,
8697,
55,
62,
34,
7036,
31098,
62,
51,
4944,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
51,
4944,
2751,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
9864,
41,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
9864,
41,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
1268,
37,
11682,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
1268,
37,
11682,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
1268,
37,
11682,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
1268,
37,
11682,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
3955,
1847,
62,
15112,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
35,
25620,
62,
15112,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2043,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2043,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
10246,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
10246,
27143,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
47,
6369,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
47,
6369,
3398,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
6322,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
6322,
27143,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
35,
6369,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
35,
6369,
3398,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
50,
2749,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
50,
2749,
11251,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
49,
22845,
38,
11651,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
49,
22845,
38,
11651,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
25154,
38475,
11651,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
25154,
38475,
11651,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
4760,
14313,
10526,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
4760,
14313,
10526,
2257,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
8220,
37267,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
8220,
37267,
50,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
62,
4805,
9864,
2538,
44,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
62,
4805,
9864,
2538,
44,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
51,
4944,
2751,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
51,
4944,
2751,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10619,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10619,
34694,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2043,
34,
28270,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2043,
34,
28270,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
10246,
27143,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
10246,
27143,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
47,
6369,
3398,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
47,
6369,
3398,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
6322,
27143,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
6322,
27143,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
35,
6369,
3398,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9419,
2640,
15821,
5959,
62,
35,
6369,
3398,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
4760,
14313,
10526,
2257,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
4760,
14313,
10526,
2257,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
8220,
37267,
50,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
48296,
3535,
6089,
62,
8220,
37267,
50,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10619,
35,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10619,
35,
2767,
34694,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2257,
7227,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2257,
7227,
34694,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2257,
7227,
35,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2257,
7227,
35,
2767,
34694,
198,
8697,
55,
62,
51,
41884,
62,
32,
5959,
11879,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
51,
41884,
62,
32,
5959,
11879,
198,
8697,
55,
62,
51,
41884,
62,
23678,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
51,
41884,
62,
23678,
22921,
198,
8697,
55,
62,
51,
41884,
62,
6242,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
51,
41884,
62,
6242,
9863,
198,
8697,
55,
62,
51,
41884,
62,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
51,
41884,
62,
51,
4146,
3955,
198,
8697,
55,
62,
51,
41884,
62,
35,
2767,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
51,
41884,
62,
35,
2767,
51,
4146,
3955,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
50,
5883,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
50,
5883,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
1268,
37,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
1268,
37,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
23678,
62,
10917,
2885,
198,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15112,
1921,
3185,
51,
62,
3185,
51,
62,
10917,
2885,
198,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
27977,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
27977,
198,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
39371,
46,
198,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
29904,
198,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
33249,
4877,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
33249,
4877,
198,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
37,
9994,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
18601,
6158,
31212,
62,
37,
9994,
198,
8697,
55,
62,
1565,
11929,
6234,
26947,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
26947,
62,
43,
18494,
198,
8697,
55,
62,
1565,
11929,
6234,
26947,
62,
35,
2606,
19146,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
26947,
62,
35,
2606,
19146,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
9864,
41,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
25154,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
25154,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
49,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
49,
3913,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
50,
2640,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
50,
2640,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
12115,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
48,
34,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
48,
34,
198,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
43,
11262,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
1565,
11929,
6234,
9864,
41,
62,
43,
11262,
198,
8697,
55,
40,
1797,
62,
41335,
9328,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
40,
1797,
62,
41335,
9328,
198,
8697,
55,
40,
1797,
62,
30709,
12576,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
40,
1797,
62,
30709,
12576,
198,
8697,
55,
40,
1797,
62,
1404,
62,
43,
36048,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
40,
1797,
62,
1404,
62,
43,
36048,
198,
8697,
55,
40,
1797,
62,
47084,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
40,
1797,
62,
47084,
1961,
198,
8697,
55,
40,
1797,
62,
1404,
62,
8577,
18973,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
40,
1797,
62,
1404,
62,
8577,
18973,
198,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
39371,
46,
198,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
28075,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
28075,
198,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
2390,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
2390,
37,
198,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
8575,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
1503,
12532,
1137,
62,
8575,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
33,
1847,
20940,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
33,
1847,
20940,
1961,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
15112,
1921,
40,
25382,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
15112,
1921,
40,
25382,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
3185,
51,
3955,
1847,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
3185,
51,
3955,
1847,
9050,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
33,
6465,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
33,
6465,
33,
15919,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
39,
2389,
41819,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
39,
2389,
41819,
15112,
1921,
198,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
13909,
4261,
8808,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
3620,
11909,
1921,
1797,
62,
13909,
4261,
8808,
2149,
198,
8697,
55,
62,
25216,
62,
53,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
25216,
62,
53,
1503,
198,
8697,
55,
62,
25216,
62,
50,
2640,
16,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
25216,
62,
50,
2640,
16,
198,
8697,
55,
62,
25216,
62,
50,
2640,
17,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
25216,
62,
50,
2640,
17,
198,
8697,
55,
62,
25216,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
25216,
62,
29904,
198,
8697,
55,
62,
25216,
62,
31827,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
25216,
62,
31827,
198,
8697,
55,
62,
53,
27415,
3698,
62,
23678,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
23678,
1268,
15112,
1921,
198,
8697,
55,
62,
53,
27415,
3698,
62,
7206,
38865,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
7206,
38865,
198,
8697,
55,
62,
53,
27415,
3698,
62,
22921,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
22921,
1268,
15112,
1921,
198,
8697,
55,
62,
53,
27415,
3698,
62,
3705,
36,
8322,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
3705,
36,
8322,
46,
198,
8697,
55,
62,
53,
27415,
3698,
62,
18601,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
18601,
18494,
198,
8697,
55,
62,
53,
27415,
3698,
62,
3705,
36,
8322,
32023,
9598,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
53,
27415,
3698,
62,
3705,
36,
8322,
32023,
9598,
1961,
198,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
8068,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
8068,
50,
198,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
33,
15919,
198,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
6465,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
6465,
198,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
6465,
62,
31429,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
45,
3727,
1546,
3698,
62,
33,
6465,
6465,
62,
31429,
198,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
8220,
2257,
198,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
33,
19385,
5258,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
33,
19385,
5258,
198,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
6173,
1847,
1961,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
12532,
1137,
62,
6173,
1847,
1961,
8220,
2257,
198,
8697,
55,
62,
11473,
1565,
3398,
62,
8763,
9864,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
1565,
3398,
62,
8763,
9864,
1847,
198,
8697,
55,
62,
11473,
1565,
3398,
62,
41925,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
1565,
3398,
62,
41925,
198,
8697,
55,
62,
11473,
1565,
3398,
62,
8577,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
1565,
3398,
62,
8577,
198,
8697,
55,
62,
11473,
34720,
62,
41925,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
34720,
62,
41925,
198,
8697,
55,
62,
11473,
34720,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
34720,
62,
39371,
46,
198,
8697,
55,
62,
11473,
34720,
62,
8577,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
11473,
34720,
62,
8577,
198,
8697,
55,
62,
34,
3843,
62,
8220,
5959,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
8220,
5959,
198,
8697,
55,
62,
34,
3843,
62,
38022,
2749,
41983,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
38022,
2749,
41983,
198,
8697,
55,
62,
34,
3843,
62,
3697,
3913,
8220,
5959,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
3697,
3913,
8220,
5959,
198,
8697,
55,
62,
34,
3843,
62,
5097,
33866,
8924,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
5097,
33866,
8924,
198,
8697,
55,
62,
34,
3843,
62,
10913,
2246,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
10913,
2246,
198,
8697,
55,
62,
34,
3843,
62,
44,
4663,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
44,
4663,
198,
8697,
55,
62,
34,
3843,
62,
3697,
3913,
34219,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
3697,
3913,
34219,
198,
8697,
55,
62,
34,
3843,
62,
26288,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
26288,
41,
198,
8697,
55,
62,
34,
3843,
62,
3955,
6489,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
3955,
6489,
14529,
198,
8697,
55,
62,
34,
3843,
62,
57,
1137,
12096,
1847,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
57,
1137,
12096,
1847,
37,
198,
8697,
55,
62,
34,
3843,
62,
9655,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
9655,
37,
198,
8697,
55,
62,
34,
3843,
62,
29701,
1847,
8220,
5959,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
29701,
1847,
8220,
5959,
198,
8697,
55,
62,
34,
3843,
62,
51,
9947,
1677,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
51,
9947,
1677,
198,
8697,
55,
62,
34,
3843,
62,
9864,
41,
26288,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
9864,
41,
26288,
41,
198,
8697,
55,
62,
34,
3843,
62,
25697,
6322,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
25697,
6322,
198,
8697,
55,
62,
34,
3843,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
29904,
198,
8697,
55,
62,
34,
3843,
62,
38148,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
38148,
198,
8697,
55,
62,
34,
3843,
62,
50,
3535,
45,
16402,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
50,
3535,
45,
16402,
3535,
198,
8697,
55,
62,
34,
3843,
62,
29701,
1847,
3955,
6489,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
29701,
1847,
3955,
6489,
14529,
198,
8697,
55,
62,
34,
3843,
62,
33,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
33,
48,
47,
198,
8697,
55,
62,
34,
3843,
62,
7836,
51,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
7836,
51,
198,
8697,
55,
62,
34,
3843,
62,
33,
10619,
4877,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
33,
10619,
4877,
198,
8697,
55,
62,
34,
3843,
62,
41359,
62,
9936,
47,
1546,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
3843,
62,
41359,
62,
9936,
47,
1546,
198,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
39371,
46,
198,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
5446,
2885,
17941,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
5446,
2885,
17941,
1847,
198,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
35,
40760,
2390,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8895,
3705,
17133,
3398,
62,
35,
40760,
2390,
2149,
198,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
27977,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
27977,
198,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
39371,
46,
198,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
49302,
16437,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
49302,
16437,
198,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
37,
9994,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
42,
2969,
4537,
62,
37,
9994,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
39371,
46,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50084,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50084,
15112,
1921,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50,
3535,
6089,
47084,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50,
3535,
6089,
47084,
1961,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50,
3535,
53,
3620,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
50,
3535,
53,
3620,
4061,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
2200,
4537,
4663,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
2200,
4537,
4663,
198,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
15285,
50084,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
4061,
2257,
7227,
62,
15285,
50084,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
11473,
1565,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
11473,
1565,
3398,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
45,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
45,
16820,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
13909,
4261,
8808,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
13909,
4261,
8808,
2149,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
50,
3535,
6089,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
21982,
3185,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
21982,
3185,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
4805,
9864,
36,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
4805,
9864,
36,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
10913,
26861,
3843,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
10913,
26861,
3843,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
26288,
34382,
3843,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
26288,
34382,
3843,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
3697,
3913,
44,
4663,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
3697,
3913,
44,
4663,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
45,
3727,
1546,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
45,
3727,
1546,
3535,
45,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
7206,
28882,
1677,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
7206,
28882,
1677,
16820,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
11473,
1565,
3398,
62,
45,
2640,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
11473,
1565,
3398,
62,
45,
2640,
3535,
45,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
43,
11262,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
43,
11262,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
15112,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
34,
3843,
62,
4944,
14529,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
13909,
4261,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
13909,
4261,
50,
3535,
45,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
2937,
4877,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
2937,
4877,
3535,
45,
198,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
44,
4061,
2257,
7227,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
44,
4061,
62,
30158,
5883,
33,
3525,
62,
44,
4061,
2257,
7227,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
6465,
62,
12394,
7156,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
6465,
62,
12394,
7156,
1137,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
6465,
62,
2200,
5673,
1268,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
6465,
62,
2200,
5673,
1268,
2751,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
3727,
1546,
62,
2538,
9792,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
3727,
1546,
62,
2538,
9792,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
2043,
1137,
18421,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
2043,
1137,
18421,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
34,
3843,
27977,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
34,
3843,
27977,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
5097,
33866,
8924,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
5097,
33866,
8924,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
8220,
5959,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
8220,
5959,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
15112,
1921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
8220,
5959,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
8220,
5959,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
38022,
2749,
41983,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
38022,
2749,
41983,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3955,
6489,
14529,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3955,
6489,
14529,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
9864,
36,
62,
11909,
11159,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
9864,
36,
62,
11909,
11159,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
9864,
36,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
4805,
9864,
36,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10913,
26861,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10913,
26861,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10913,
26861,
3843,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
10913,
26861,
3843,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26288,
34382,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26288,
34382,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26288,
34382,
3843,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26288,
34382,
3843,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
34219,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
34219,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
49060,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
49060,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
44,
4663,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
3697,
3913,
44,
4663,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
57,
1137,
12096,
1847,
4851,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
57,
1137,
12096,
1847,
4851,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26708,
62,
4221,
15675,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
26708,
62,
4221,
15675,
62,
41359,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
62,
4221,
15675,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
62,
4221,
15675,
50,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
16448,
62,
38,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
16448,
62,
38,
2969,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9655,
4851,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
9655,
4851,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
2257,
17534,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
22921,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
17139,
45589,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
42,
2969,
4537,
62,
17139,
45589,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
28182,
5662,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
28182,
5662,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
34,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
29904,
34,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
38148,
34,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
38148,
34,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
3535,
45,
16402,
3535,
34,
3843,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
3535,
45,
16402,
3535,
34,
3843,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
10619,
4877,
62,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
33,
10619,
4877,
62,
34,
28270,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
34,
28270,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
34,
28270,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
3727,
1546,
62,
2538,
9792,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
3727,
1546,
62,
2538,
9792,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
2043,
1137,
18421,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
44,
4061,
62,
2043,
1137,
18421,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
13534,
57,
56,
62,
47690,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
13534,
57,
56,
62,
47690,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
11584,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
11584,
1268,
37,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
22125,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
22125,
1268,
37,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
6465,
3955,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
6465,
3955,
6158,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
46162,
4221,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
46162,
4221,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
9864,
41,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
9864,
41,
23428,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
25216,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
53,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
53,
1503,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
50,
2640,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
50,
2640,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
5188,
48,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
5188,
48,
41359,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
29904,
39,
6981,
2538,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
29904,
39,
6981,
2538,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
45,
3727,
1677,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
45,
3727,
1677,
5883,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
5188,
48,
41359,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
5188,
48,
41359,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
45,
3727,
1677,
5883,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
45,
3727,
1677,
5883,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
46162,
4221,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
45,
16820,
62,
46162,
4221,
62,
43,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
25216,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
33489,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
33489,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
1797,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
1797,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
44,
28952,
62,
12115,
6369,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
44,
28952,
62,
12115,
6369,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
44,
28952,
62,
31688,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
44,
28952,
62,
31688,
23428,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
50,
2640,
62,
41359,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
41359,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
3955,
6489,
45761,
62,
53,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
3955,
6489,
45761,
62,
53,
1503,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
3955,
49094,
62,
53,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
3955,
49094,
62,
53,
1503,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
50,
24290,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
9858,
6489,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
9858,
6489,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
49,
7998,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
49,
7998,
198,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
1797,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
10778,
62,
2149,
62,
1797,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
30158,
5883,
33,
3525,
62,
2389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
30158,
5883,
33,
3525,
62,
2389,
198,
8697,
55,
62,
24115,
5105,
47,
62,
26288,
6242,
30465,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
24115,
5105,
47,
62,
26288,
6242,
30465,
198,
8697,
55,
62,
24115,
5105,
47,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
24115,
5105,
47,
62,
39371,
46,
198,
8697,
55,
62,
24115,
5105,
47,
62,
35,
40760,
2390,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
24115,
5105,
47,
62,
35,
40760,
2390,
2149,
198,
8697,
55,
62,
24115,
5105,
47,
62,
1268,
20032,
12709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
24115,
5105,
47,
62,
1268,
20032,
12709,
198,
8697,
55,
62,
34,
7036,
31098,
62,
7206,
38865,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
7206,
38865,
198,
8697,
55,
62,
34,
7036,
31098,
62,
7708,
4146,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
7708,
4146,
198,
8697,
55,
62,
34,
7036,
31098,
62,
28480,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
28480,
198,
8697,
55,
62,
34,
7036,
31098,
62,
6242,
9863,
62,
34,
3843,
62,
21982,
3185,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
62,
6242,
9863,
62,
34,
3843,
62,
21982,
3185,
198,
8697,
55,
62,
2937,
2943,
3843,
62,
13775,
5222,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2937,
2943,
3843,
62,
13775,
5222,
198,
8697,
55,
62,
2937,
2943,
3843,
62,
47,
4261,
8264,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2937,
2943,
3843,
62,
47,
4261,
8264,
198,
8697,
55,
62,
2937,
2943,
3843,
62,
46700,
5781,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2937,
2943,
3843,
62,
46700,
5781,
198,
8697,
55,
62,
12394,
7156,
1137,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12394,
7156,
1137,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
12394,
7156,
1137,
62,
1268,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12394,
7156,
1137,
62,
1268,
15112,
1921,
34563,
198,
8697,
55,
62,
3955,
49094,
62,
12394,
7156,
1137,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3955,
49094,
62,
12394,
7156,
1137,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
10943,
62,
43,
36048,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
43,
36048,
62,
33,
15919,
198,
8697,
55,
62,
10943,
62,
8577,
18973,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
8577,
18973,
62,
33,
15919,
198,
8697,
55,
62,
10943,
62,
24027,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
24027,
1503,
198,
8697,
55,
62,
10943,
62,
10917,
2885,
49,
1404,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
10917,
2885,
49,
1404,
2149,
198,
8697,
55,
62,
10943,
62,
50,
2640,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
50,
2640,
198,
8697,
55,
62,
10943,
62,
12115,
2149,
25633,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
12115,
2149,
25633,
198,
8697,
55,
62,
10943,
62,
47,
54,
43,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
47,
54,
43,
198,
8697,
55,
62,
10943,
62,
32,
4462,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
32,
4462,
198,
8697,
55,
62,
10943,
62,
23678,
6369,
4805,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
23678,
6369,
4805,
198,
8697,
55,
62,
10943,
62,
22921,
6369,
4805,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
22921,
6369,
4805,
198,
8697,
55,
62,
10943,
62,
43,
11262,
62,
10943,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
10943,
62,
43,
11262,
62,
10943,
25216,
198,
8697,
55,
62,
12115,
2149,
25633,
62,
5064,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12115,
2149,
25633,
62,
5064,
198,
8697,
55,
62,
12115,
2149,
25633,
62,
1340,
11319,
5064,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12115,
2149,
25633,
62,
1340,
11319,
5064,
198,
8697,
55,
62,
12115,
2149,
25633,
62,
5064,
6981,
1340,
11319,
5064,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12115,
2149,
25633,
62,
5064,
6981,
1340,
11319,
5064,
198,
8697,
55,
12884,
62,
15285,
62,
26288,
31519,
62,
9864,
23680,
9306,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
15285,
62,
26288,
31519,
62,
9864,
23680,
9306,
198,
8697,
55,
12884,
62,
5446,
8924,
62,
9864,
23680,
9306,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
5446,
8924,
62,
9864,
23680,
9306,
198,
8697,
55,
12884,
62,
47,
1677,
1847,
14887,
1961,
62,
9864,
23680,
9306,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
47,
1677,
1847,
14887,
1961,
62,
9864,
23680,
9306,
198,
8697,
55,
12884,
62,
4805,
8476,
62,
39371,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
4805,
8476,
62,
39371,
46,
198,
8697,
55,
12884,
62,
4805,
8476,
62,
30709,
12576,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
4805,
8476,
62,
30709,
12576,
198,
8697,
55,
12884,
62,
4805,
8476,
62,
44,
16724,
62,
30709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
4805,
8476,
62,
44,
16724,
62,
30709,
198,
8697,
55,
12884,
62,
4805,
8476,
62,
50,
9863,
62,
44,
16724,
62,
30709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
12884,
62,
4805,
8476,
62,
50,
9863,
62,
44,
16724,
62,
30709,
198,
8697,
55,
62,
12884,
37,
12115,
62,
5105,
2200,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12884,
37,
12115,
62,
5105,
2200,
198,
8697,
55,
62,
12884,
37,
12115,
62,
31688,
16779,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12884,
37,
12115,
62,
31688,
16779,
198,
8697,
55,
62,
12884,
37,
12115,
62,
6173,
21358,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
12884,
37,
12115,
62,
6173,
21358,
198,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
15285,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
15285,
198,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
5064,
47,
18420,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
5064,
47,
18420,
34563,
198,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
13775,
5222,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
48,
34,
5760,
52,
23333,
62,
13775,
5222,
198,
8697,
55,
62,
8697,
55,
39371,
4503,
1340,
2257,
1565,
4694,
62,
39,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
55,
39371,
4503,
1340,
2257,
1565,
4694,
62,
39,
62,
39,
198,
8697,
55,
62,
33,
10619,
4877,
62,
1565,
11929,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
62,
1565,
11929,
6234,
198,
8697,
55,
62,
33,
10619,
4877,
62,
31180,
5781,
39488,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
33,
10619,
4877,
62,
31180,
5781,
39488,
198,
8697,
55,
62,
3483,
38,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3483,
38,
12394,
198,
8697,
55,
62,
3483,
8763,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
3483,
8763,
18494,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
11473,
1565,
3398,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
11473,
1565,
3398,
2751,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
34,
6981,
2389,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
34,
6981,
2389,
6158,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
8763,
9864,
1847,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
8763,
9864,
1847,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
29701,
1847,
62,
4805,
49656,
7597,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
29701,
1847,
62,
4805,
49656,
7597,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
2200,
13534,
55,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
2200,
13534,
55,
6234,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
4221,
15675,
62,
41925,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
4221,
15675,
62,
41925,
198,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
4221,
15675,
62,
8577,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
34,
7036,
31098,
10943,
32541,
62,
4221,
15675,
62,
8577,
198,
8697,
55,
62,
35,
25620,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35,
25620,
62,
9864,
41,
198,
8697,
55,
62,
6369,
10659,
62,
42,
2969,
4537,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
6369,
10659,
62,
42,
2969,
4537,
198,
8697,
55,
62,
42,
2969,
4537,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
198,
8697,
55,
62,
42,
2969,
4537,
62,
17139,
45589,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
17139,
45589,
198,
8697,
55,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
198,
8697,
55,
62,
42,
2969,
4537,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
22921,
198,
8697,
55,
62,
42,
2969,
4537,
62,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
2257,
17534,
198,
8697,
55,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
198,
8697,
55,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
198,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
13909,
4261,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
13909,
4261,
198,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
44,
4061,
2257,
7227,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
44,
4061,
2257,
7227,
198,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
45,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
45,
16820,
198,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
13534,
57,
56,
10943,
2257,
3861,
1268,
4825,
7036,
31098,
62,
29904,
198,
8697,
55,
62,
22921,
62,
9858,
47,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
9858,
47,
62,
8634,
8120,
198,
8697,
55,
62,
22921,
62,
35,
25620,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
35,
25620,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
35,
25620,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
35,
25620,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
22921,
62,
1268,
5258,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
1268,
5258,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
12394,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
12394,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
11901,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
11901,
198,
8697,
55,
62,
22921,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
22921,
62,
47,
54,
6561,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
47,
54,
6561,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
48,
34,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
48,
34,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
22921,
62,
48,
7902,
43,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
48,
7902,
43,
8120,
198,
8697,
55,
62,
22921,
62,
48,
7902,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
48,
7902,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
22083,
62,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
22083,
62,
8220,
2257,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
11901,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
11901,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
22083,
62,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
22083,
62,
8220,
2257,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
8634,
8120,
198,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
6173,
1847,
1961,
62,
55,
198,
8697,
55,
62,
22921,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
8634,
8120,
198,
8697,
55,
62,
22921,
62,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
22921,
62,
55,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
33,
1503,
2043,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
33,
1503,
2043,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
33,
6465,
9864,
41,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
33,
6465,
9864,
41,
23428,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
9148,
10619,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
9148,
10619,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
7156,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
7156,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
2767,
34694,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
6369,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35,
6369,
3398,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
6322,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
6322,
27143,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
24908,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
24908,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
2043,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
2043,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
49273,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
49273,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
45,
3727,
2943,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
45,
3727,
2943,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
45,
16820,
2538,
37,
4825,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
45,
16820,
2538,
37,
4825,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
9864,
41,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
9864,
41,
23428,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
47,
6369,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
47,
6369,
3398,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
11909,
11159,
16,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
11909,
11159,
16,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
10246,
27143,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
10246,
27143,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
4805,
41254,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
4805,
41254,
9050,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
50,
32297,
2043,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
50,
32297,
2043,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
50,
5064,
7250,
39,
11159,
16,
34,
11251,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
50,
5064,
7250,
39,
11159,
16,
34,
11251,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35744,
2937,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
35744,
2937,
198,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
44,
16724,
9399,
33,
41,
62,
34694,
198,
8697,
55,
62,
15285,
62,
4805,
41254,
9050,
62,
3398,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
15285,
62,
4805,
41254,
9050,
62,
3398,
27746,
198,
8697,
55,
62,
9864,
41,
62,
38,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
9864,
41,
62,
38,
2969,
198,
8697,
55,
62,
4805,
3955,
1847,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
4805,
3955,
1847,
62,
9864,
41,
198,
8697,
55,
62,
2200,
13534,
55,
6234,
62,
38948,
62,
45,
2640,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2200,
13534,
55,
6234,
62,
38948,
62,
45,
2640,
3535,
6089,
198,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
33569,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
33569,
198,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
37,
5064,
46,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
37,
5064,
46,
198,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
46700,
5781,
62,
35,
30194,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
46700,
5781,
62,
35,
30194,
9050,
198,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
46700,
5781,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
46700,
5781,
62,
49,
27746,
198,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
3535,
45,
16402,
3535,
62,
9864,
41,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
35,
2767,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
35,
2767,
34694,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
35,
25620,
62,
9864,
41,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
35,
25620,
62,
9864,
41,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
2043,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
2043,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
9864,
41,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
9864,
41,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
4805,
3955,
62,
9864,
41,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
4805,
3955,
62,
9864,
41,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
34694,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
6242,
9863,
62,
29904,
198,
8697,
55,
62,
35744,
62,
33,
10619,
4877,
62,
41359,
62,
33,
6465,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
33,
10619,
4877,
62,
41359,
62,
33,
6465,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
10943,
5446,
2885,
18379,
2849,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
10943,
5446,
2885,
18379,
2849,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
35,
2767,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
35,
2767,
34694,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
2043,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
2043,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
44,
3620,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
44,
3620,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
45,
16820,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
45,
16820,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
9864,
41,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
9864,
41,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
34694,
62,
43,
3955,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
29904,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
6242,
9863,
62,
29904,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
23678,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
10943,
3697,
18379,
62,
23678,
3955,
1847,
198,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
198,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
198,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
198,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
198,
8697,
55,
62,
35744,
62,
39776,
2257,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
39776,
2257,
12532,
1137,
198,
8697,
55,
62,
35744,
62,
1268,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
1268,
15112,
1921,
34563,
198,
8697,
55,
62,
35744,
62,
1268,
1890,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
1268,
1890,
4944,
14529,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
1268,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
1268,
15112,
1921,
34563,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
1268,
1890,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
1268,
1890,
4944,
14529,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
45,
1340,
62,
3185,
51,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
45,
1340,
62,
3185,
51,
3955,
1847,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
3185,
51,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
3185,
51,
3955,
1847,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
2257,
3185,
47,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
2257,
3185,
47,
1961,
198,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
44,
16724,
9399,
33,
41,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
62,
35744,
62,
41359,
62,
33,
6465,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
41359,
62,
33,
6465,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
49836,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
49836,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
198,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
198,
8697,
55,
62,
35744,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
35744,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
62,
50,
5883,
62,
9858,
47,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
9858,
47,
62,
8634,
8120,
198,
8697,
55,
62,
50,
5883,
62,
35,
25620,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
35,
25620,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
35,
25620,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
35,
25620,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
50,
5883,
62,
1268,
5258,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
1268,
5258,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
12394,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
12394,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
11901,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
11901,
198,
8697,
55,
62,
50,
5883,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
50,
5883,
62,
47,
54,
6561,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
47,
54,
6561,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
48,
34,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
48,
34,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
50,
5883,
62,
48,
7902,
43,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
48,
7902,
43,
8120,
198,
8697,
55,
62,
50,
5883,
62,
48,
7902,
43,
8120,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
48,
7902,
43,
8120,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
22083,
62,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
22083,
62,
8220,
2257,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
35,
25620,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
11901,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
11901,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
4805,
3955,
1847,
62,
19535,
2389,
25620,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
22083,
62,
8220,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
22083,
62,
8220,
2257,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
8634,
8120,
198,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
6173,
1847,
1961,
62,
55,
198,
8697,
55,
62,
50,
5883,
62,
8634,
8120,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
8634,
8120,
198,
8697,
55,
62,
50,
5883,
62,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
50,
5883,
62,
55,
198,
8697,
55,
1137,
49,
62,
6242,
9863,
62,
18601,
1340,
4579,
49,
1565,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
6242,
9863,
62,
18601,
1340,
4579,
49,
1565,
3398,
198,
8697,
55,
1137,
49,
62,
2885,
41,
62,
46224,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
2885,
41,
62,
46224,
62,
10917,
2885,
198,
8697,
55,
1137,
49,
62,
2885,
41,
62,
46224,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
2885,
41,
62,
46224,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
2885,
41,
62,
50,
3528,
8035,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
2885,
41,
62,
50,
3528,
8035,
198,
8697,
55,
1137,
49,
62,
25793,
62,
12115,
6369,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25793,
62,
12115,
6369,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
33,
2885,
62,
50,
2640,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
33,
2885,
62,
50,
2640,
62,
25216,
198,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
11929,
62,
42643,
10619,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
11929,
62,
42643,
10619,
2751,
198,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
51,
6684,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
1503,
30631,
62,
51,
6684,
62,
43,
18494,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
1503,
38,
5883,
3525,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
1503,
38,
5883,
3525,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
33,
15919,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
33,
15919,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
33,
15919,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
33,
15919,
62,
25216,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
38019,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
38019,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4177,
56,
11401,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4177,
56,
11401,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
41374,
2662,
37997,
17941,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
41374,
2662,
37997,
17941,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
17931,
23988,
2849,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
17931,
23988,
2849,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
6369,
16402,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
6369,
16402,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49864,
1340,
3525,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49864,
1340,
3525,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
25664,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
25664,
25216,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
2389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
2389,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
1268,
9697,
1340,
18601,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
1268,
9697,
1340,
18601,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
12115,
2149,
25633,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
12115,
2149,
25633,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
12115,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
12115,
25216,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
13534,
57,
56,
62,
9598,
3843,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
13534,
57,
56,
62,
9598,
3843,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
43,
10526,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
43,
10526,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49273,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49273,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
44,
16724,
9399,
33,
41,
62,
1404,
5446,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
44,
16724,
9399,
33,
41,
62,
1404,
5446,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
20608,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
20608,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
41359,
13246,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
41359,
13246,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
9864,
41,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
9864,
41,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
27082,
2390,
62,
20608,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
27082,
2390,
62,
20608,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
27082,
2390,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
27082,
2390,
62,
41359,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
47,
3824,
2394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
47,
3824,
2394,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4805,
41254,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4805,
41254,
9050,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4805,
9864,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
4805,
9864,
62,
25216,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49,
3913,
62,
2389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
49,
3913,
62,
2389,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
33,
19385,
5258,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
33,
19385,
5258,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
10619,
13563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
10619,
13563,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
48,
41636,
7112,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24565,
62,
48,
41636,
7112,
55,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
2640,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
50,
2640,
62,
25216,
198,
8697,
55,
1137,
49,
62,
33,
2885,
62,
35744,
2937,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
2885,
62,
35744,
2937,
198,
8697,
55,
1137,
49,
62,
33,
1921,
62,
25664,
62,
9693,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
1921,
62,
25664,
62,
9693,
9863,
198,
8697,
55,
1137,
49,
62,
33,
1921,
62,
25664,
62,
33489,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
1921,
62,
25664,
62,
33489,
198,
8697,
55,
1137,
49,
62,
33,
10619,
4877,
62,
31180,
5781,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33,
10619,
4877,
62,
31180,
5781,
62,
50,
3535,
6089,
198,
8697,
55,
1137,
49,
62,
34,
7036,
31098,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
7036,
31098,
198,
8697,
55,
1137,
49,
62,
34,
7036,
31098,
62,
1268,
10943,
50,
8808,
3525,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
7036,
31098,
62,
1268,
10943,
50,
8808,
3525,
198,
8697,
55,
1137,
49,
62,
34,
6981,
62,
11929,
62,
16402,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
6981,
62,
11929,
62,
16402,
12394,
198,
8697,
55,
1137,
49,
62,
34,
6981,
62,
11929,
62,
30631,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
6981,
62,
11929,
62,
30631,
198,
8697,
55,
1137,
49,
62,
44175,
5446,
43,
62,
1268,
62,
20608,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
44175,
5446,
43,
62,
1268,
62,
20608,
198,
8697,
55,
1137,
49,
62,
25154,
62,
12115,
6369,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25154,
62,
12115,
6369,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
25154,
62,
2200,
11401,
1404,
62,
4805,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25154,
62,
2200,
11401,
1404,
62,
4805,
12394,
198,
8697,
55,
1137,
49,
62,
25154,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25154,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
25154,
62,
49,
3913,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25154,
62,
49,
3913,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
25154,
62,
4944,
44706,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25154,
62,
4944,
44706,
198,
8697,
55,
1137,
49,
62,
10943,
3697,
18379,
62,
4944,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
10943,
3697,
18379,
62,
4944,
2257,
17534,
198,
8697,
55,
1137,
49,
62,
34,
28270,
62,
41983,
43,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
28270,
62,
41983,
43,
2969,
198,
8697,
55,
1137,
49,
62,
34,
28270,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
34,
28270,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
36037,
33,
12115,
2751,
62,
7708,
4146,
11335,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
36037,
33,
12115,
2751,
62,
7708,
4146,
11335,
198,
8697,
55,
1137,
49,
62,
35,
9148,
62,
22921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
35,
9148,
62,
22921,
198,
8697,
55,
1137,
49,
62,
41374,
2662,
32761,
2849,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
41374,
2662,
32761,
2849,
198,
8697,
55,
1137,
49,
62,
35,
2767,
51,
4146,
3955,
62,
18601,
1340,
4579,
49,
1565,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
35,
2767,
51,
4146,
3955,
62,
18601,
1340,
4579,
49,
1565,
3398,
198,
8697,
55,
1137,
49,
62,
35,
8577,
62,
3525,
18276,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
35,
8577,
62,
3525,
18276,
198,
8697,
55,
1137,
49,
62,
35,
56,
21870,
4944,
34,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
35,
56,
21870,
4944,
34,
198,
8697,
55,
1137,
49,
62,
35,
40760,
35613,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
35,
40760,
35613,
198,
8697,
55,
1137,
49,
62,
24181,
3727,
2751,
62,
10943,
43717,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
24181,
3727,
2751,
62,
10943,
43717,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
33,
53,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
33,
53,
62,
33,
15919,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
10913,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
10913,
62,
33,
15919,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
17213,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
17213,
62,
33,
15919,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
12394,
10619,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
12394,
10619,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
12394,
1581,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
12394,
1581,
38,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
50,
2640,
10619,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
50,
2640,
10619,
198,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
50,
2640,
1581,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
13918,
3861,
62,
50,
2640,
1581,
38,
198,
8697,
55,
1137,
49,
62,
7708,
4146,
62,
3185,
1677,
62,
15675,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
7708,
4146,
62,
3185,
1677,
62,
15675,
198,
8697,
55,
1137,
49,
62,
7708,
4146,
62,
3185,
1677,
62,
18564,
12709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
7708,
4146,
62,
3185,
1677,
62,
18564,
12709,
198,
8697,
55,
1137,
49,
62,
25664,
62,
3525,
7112,
1546,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25664,
62,
3525,
7112,
1546,
198,
8697,
55,
1137,
49,
62,
25664,
62,
21389,
1404,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25664,
62,
21389,
1404,
198,
8697,
55,
1137,
49,
62,
25664,
62,
9399,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
25664,
62,
9399,
198,
8697,
55,
1137,
49,
62,
46700,
5781,
62,
53,
1503,
3539,
19146,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
46700,
5781,
62,
53,
1503,
3539,
19146,
62,
25216,
198,
8697,
55,
1137,
49,
62,
8267,
62,
7206,
20032,
1961,
62,
47,
54,
43,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
8267,
62,
7206,
20032,
1961,
62,
47,
54,
43,
198,
8697,
55,
1137,
49,
62,
1268,
62,
1268,
37,
4503,
7036,
31098,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
1268,
62,
1268,
37,
4503,
7036,
31098,
198,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
11929,
62,
33,
1921,
2149,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
11929,
62,
33,
1921,
2149,
198,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
62,
39,
18060,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
62,
39,
18060,
198,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
62,
43,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12115,
6369,
62,
49,
27746,
62,
43,
3913,
198,
8697,
55,
1137,
49,
62,
12394,
62,
51,
6684,
62,
3483,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12394,
62,
51,
6684,
62,
3483,
38,
198,
8697,
55,
1137,
49,
62,
12394,
62,
51,
6684,
62,
3483,
38,
62,
1268,
30076,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12394,
62,
51,
6684,
62,
3483,
38,
62,
1268,
30076,
198,
8697,
55,
1137,
49,
62,
1268,
23428,
2389,
62,
41359,
13246,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
1268,
23428,
2389,
62,
41359,
13246,
198,
8697,
55,
1137,
49,
62,
43,
3955,
29722,
62,
51,
6684,
62,
3483,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
43,
3955,
29722,
62,
51,
6684,
62,
3483,
38,
198,
8697,
55,
1137,
49,
62,
24027,
62,
51,
6684,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
24027,
62,
51,
6684,
62,
43,
18494,
198,
8697,
55,
1137,
49,
62,
21982,
62,
33,
15919,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
21982,
62,
33,
15919,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
36840,
62,
43387,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
36840,
62,
43387,
6158,
198,
8697,
55,
1137,
49,
62,
19930,
62,
11929,
62,
1268,
62,
1677,
53,
4663,
1340,
10979,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
19930,
62,
11929,
62,
1268,
62,
1677,
53,
4663,
1340,
10979,
198,
8697,
55,
1137,
49,
62,
19930,
62,
27082,
5188,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
19930,
62,
27082,
5188,
198,
8697,
55,
1137,
49,
62,
31180,
5781,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
31180,
5781,
62,
50,
3535,
6089,
198,
8697,
55,
1137,
49,
62,
8895,
3705,
17133,
3398,
62,
54,
10554,
62,
34,
7036,
31098,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
8895,
3705,
17133,
3398,
62,
54,
10554,
62,
34,
7036,
31098,
50,
198,
8697,
55,
1137,
49,
62,
44,
16744,
62,
50,
2640,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
44,
16744,
62,
50,
2640,
62,
25216,
198,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
3398,
22846,
3698,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
3398,
22846,
3698,
198,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
25664,
47,
5446,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
25664,
47,
5446,
198,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
42296,
4177,
2849,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
5653,
38,
62,
15285,
62,
42296,
4177,
2849,
198,
8697,
55,
1137,
49,
62,
44,
16724,
9399,
33,
41,
62,
50,
10526,
4805,
9864,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
44,
16724,
9399,
33,
41,
62,
50,
10526,
4805,
9864,
62,
50,
3535,
6089,
198,
8697,
55,
1137,
49,
62,
44,
16724,
4061,
2538,
62,
31190,
4462,
62,
1268,
62,
40726,
23051,
62,
1677,
53,
4663,
1340,
10979,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
44,
16724,
4061,
2538,
62,
31190,
4462,
62,
1268,
62,
40726,
23051,
62,
1677,
53,
4663,
1340,
10979,
198,
8697,
55,
1137,
49,
62,
20608,
62,
43387,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
20608,
62,
43387,
6234,
198,
8697,
55,
1137,
49,
62,
20608,
62,
11929,
62,
37,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
20608,
62,
11929,
62,
37,
15919,
198,
8697,
55,
1137,
49,
62,
20608,
62,
51,
6684,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
20608,
62,
51,
6684,
62,
43,
18494,
198,
8697,
55,
1137,
49,
62,
45,
1565,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
45,
1565,
198,
8697,
55,
1137,
49,
62,
12161,
1961,
62,
3185,
51,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12161,
1961,
62,
3185,
51,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
45,
7156,
37045,
62,
50,
4261,
6489,
2937,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
45,
7156,
37045,
62,
50,
4261,
6489,
2937,
198,
8697,
55,
1137,
49,
62,
12884,
62,
26947,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12884,
62,
26947,
198,
8697,
55,
1137,
49,
62,
12884,
62,
25664,
62,
9693,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12884,
62,
25664,
62,
9693,
9863,
198,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1503,
7112,
1137,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1503,
7112,
1137,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1921,
2149,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1921,
2149,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
33,
1921,
1797,
198,
8697,
55,
1137,
49,
62,
15285,
62,
33,
15919,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
33,
15919,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
15285,
62,
33,
15919,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
33,
15919,
62,
25216,
198,
8697,
55,
1137,
49,
62,
15285,
62,
25154,
5883,
8035,
62,
50,
24565,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
25154,
5883,
8035,
62,
50,
24565,
198,
8697,
55,
1137,
49,
62,
15285,
62,
10943,
3697,
18379,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
10943,
3697,
18379,
198,
8697,
55,
1137,
49,
62,
15285,
62,
41374,
2662,
37997,
17941,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
41374,
2662,
37997,
17941,
198,
8697,
55,
1137,
49,
62,
15285,
62,
35,
25620,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
35,
25620,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
15285,
62,
10619,
13563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
10619,
13563,
198,
8697,
55,
1137,
49,
62,
15285,
62,
1677,
53,
4663,
1340,
10979,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
1677,
53,
4663,
1340,
10979,
198,
8697,
55,
1137,
49,
62,
15285,
62,
46700,
1677,
10067,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
46700,
1677,
10067,
198,
8697,
55,
1137,
49,
62,
15285,
62,
2389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
2389,
198,
8697,
55,
1137,
49,
62,
15285,
62,
2389,
62,
39776,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
2389,
62,
39776,
2257,
198,
8697,
55,
1137,
49,
62,
15285,
62,
12394,
62,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
12394,
62,
55,
198,
8697,
55,
1137,
49,
62,
15285,
62,
42,
24805,
11262,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
42,
24805,
11262,
33586,
198,
8697,
55,
1137,
49,
62,
15285,
62,
41596,
62,
37,
10659,
1581,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
41596,
62,
37,
10659,
1581,
198,
8697,
55,
1137,
49,
62,
15285,
62,
44,
3620,
15513,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
44,
3620,
15513,
198,
8697,
55,
1137,
49,
62,
15285,
62,
44,
4061,
2257,
7227,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
44,
4061,
2257,
7227,
198,
8697,
55,
1137,
49,
62,
15285,
62,
20608,
62,
50,
24565,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
20608,
62,
50,
24565,
198,
8697,
55,
1137,
49,
62,
15285,
62,
45,
29559,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
45,
29559,
198,
8697,
55,
1137,
49,
62,
15285,
62,
35510,
5653,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
35510,
5653,
198,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
198,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
62,
33,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
62,
33,
15919,
198,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
62,
39776,
2257,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
41359,
13246,
62,
39776,
2257,
198,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
41,
62,
20608,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
41,
62,
20608,
198,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
41,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
41,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
23680,
9306,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
9864,
23680,
9306,
198,
8697,
55,
1137,
49,
62,
15285,
62,
3185,
62,
1581,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
3185,
62,
1581,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
15285,
62,
31054,
25633,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
31054,
25633,
198,
8697,
55,
1137,
49,
62,
15285,
62,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
12532,
1137,
198,
8697,
55,
1137,
49,
62,
15285,
62,
4805,
9864,
2538,
44,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
4805,
9864,
2538,
44,
198,
8697,
55,
1137,
49,
62,
15285,
62,
48,
47,
62,
31054,
25633,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
48,
47,
62,
31054,
25633,
198,
8697,
55,
1137,
49,
62,
15285,
62,
10917,
2885,
62,
49864,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
10917,
2885,
62,
49864,
198,
8697,
55,
1137,
49,
62,
15285,
62,
49,
7998,
62,
8220,
37267,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
49,
7998,
62,
8220,
37267,
198,
8697,
55,
1137,
49,
62,
15285,
62,
49,
7998,
62,
1268,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
49,
7998,
62,
1268,
62,
9864,
41,
198,
8697,
55,
1137,
49,
62,
15285,
62,
49,
3913,
62,
20608,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
49,
3913,
62,
20608,
198,
8697,
55,
1137,
49,
62,
15285,
62,
49,
3913,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
49,
3913,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
15285,
62,
49,
22845,
62,
50,
24565,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
49,
22845,
62,
50,
24565,
198,
8697,
55,
1137,
49,
62,
15285,
62,
50,
16938,
2043,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
50,
16938,
2043,
198,
8697,
55,
1137,
49,
62,
15285,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
15285,
62,
50,
3535,
45,
16402,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
50,
3535,
45,
16402,
3535,
198,
8697,
55,
1137,
49,
62,
15285,
62,
50,
2640,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
50,
2640,
198,
8697,
55,
1137,
49,
62,
15285,
62,
51,
11587,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
51,
11587,
198,
8697,
55,
1137,
49,
62,
15285,
62,
53,
9782,
1581,
62,
50,
3535,
45,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
15285,
62,
53,
9782,
1581,
62,
50,
3535,
45,
198,
8697,
55,
1137,
49,
62,
45,
16820,
62,
12115,
6369,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
45,
16820,
62,
12115,
6369,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
45,
16820,
62,
1340,
62,
26288,
42,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
45,
16820,
62,
1340,
62,
26288,
42,
198,
8697,
55,
1137,
49,
62,
11929,
62,
35,
25620,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
35,
25620,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
1137,
49,
62,
11929,
62,
47084,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
47084,
1961,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
33,
10619,
4877,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
33,
10619,
4877,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
35,
8808,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
35,
8808,
44,
4061,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
44,
4061,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
44,
16724,
9399,
33,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
44,
16724,
9399,
33,
41,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
48,
8697,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
48,
8697,
198,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
13775,
62,
48,
47,
198,
8697,
55,
1137,
49,
62,
11929,
62,
44,
4146,
47,
31631,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
44,
4146,
47,
31631,
198,
8697,
55,
1137,
49,
62,
11929,
62,
23678,
62,
8220,
2257,
62,
3697,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
23678,
62,
8220,
2257,
62,
3697,
3913,
198,
8697,
55,
1137,
49,
62,
11929,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
44,
4061,
198,
8697,
55,
1137,
49,
62,
11929,
62,
8895,
48,
47,
31631,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
8895,
48,
47,
31631,
198,
8697,
55,
1137,
49,
62,
11929,
62,
11651,
62,
4805,
9864,
2538,
44,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
11651,
62,
4805,
9864,
2538,
44,
198,
8697,
55,
1137,
49,
62,
11929,
62,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
48,
47,
198,
8697,
55,
1137,
49,
62,
11929,
62,
4090,
53,
62,
25664,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
4090,
53,
62,
25664,
198,
8697,
55,
1137,
49,
62,
11929,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
11929,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
1137,
49,
62,
33991,
62,
16402,
41358,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33991,
62,
16402,
41358,
198,
8697,
55,
1137,
49,
62,
12532,
1137,
62,
33,
2885,
62,
17931,
23988,
2849,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
12532,
1137,
62,
33,
2885,
62,
17931,
23988,
2849,
198,
8697,
55,
1137,
49,
62,
41983,
3697,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
41983,
3697,
3913,
198,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
1268,
9858,
47,
1404,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
1268,
9858,
47,
1404,
34563,
198,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
51,
6684,
62,
3483,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
51,
6684,
62,
3483,
38,
198,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
51,
6684,
62,
12310,
7036,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
27082,
2390,
62,
51,
6684,
62,
12310,
7036,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
6242,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
6242,
9863,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
33,
2885,
62,
27082,
2390,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
33,
2885,
62,
27082,
2390,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
33,
1921,
1797,
62,
44,
3620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
33,
1921,
1797,
62,
44,
3620,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34,
3185,
56,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34,
3185,
56,
12532,
1137,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34,
3185,
16309,
2640,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34,
3185,
16309,
2640,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
9419,
27143,
21389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
9419,
27143,
21389,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
35,
2767,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
35,
2767,
34694,
62,
43,
3955,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
35,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
35,
25620,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
7708,
4146,
62,
33,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
7708,
4146,
62,
33,
1921,
1797,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
1268,
37,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
1268,
1890,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
1268,
1890,
4944,
14529,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
15285,
62,
33,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
15285,
62,
33,
1921,
1797,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
15285,
62,
4805,
9864,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
15285,
62,
4805,
9864,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
50,
3535,
45,
62,
44,
4061,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
50,
3535,
45,
62,
44,
4061,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
50,
3535,
45,
62,
48,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
50,
3535,
45,
62,
48,
47,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
2257,
7227,
62,
19930,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
2257,
7227,
62,
19930,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34694,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
34694,
62,
43,
3955,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
4944,
14529,
198,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
4944,
9419,
27143,
21389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48296,
30976,
62,
4944,
9419,
27143,
21389,
198,
8697,
55,
1137,
49,
62,
4805,
40,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4805,
40,
12115,
198,
8697,
55,
1137,
49,
62,
4805,
44,
62,
26947,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4805,
44,
62,
26947,
198,
8697,
55,
1137,
49,
62,
4805,
2394,
4503,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4805,
2394,
4503,
3535,
198,
8697,
55,
1137,
49,
62,
48,
62,
33569,
1797,
1581,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
62,
33569,
1797,
1581,
198,
8697,
55,
1137,
49,
62,
48,
62,
35,
8577,
62,
3525,
18276,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
62,
35,
8577,
62,
3525,
18276,
198,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
1268,
32988,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
1268,
32988,
198,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
37997,
62,
32988,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
37997,
62,
32988,
198,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
23060,
12038,
2767,
41132,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
62,
11929,
62,
23060,
12038,
2767,
41132,
198,
8697,
55,
1137,
49,
62,
48,
8697,
62,
50,
24290,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
8697,
62,
50,
24290,
198,
8697,
55,
1137,
49,
62,
48,
8697,
62,
50,
24290,
62,
25664,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
48,
8697,
62,
50,
24290,
62,
25664,
198,
8697,
55,
1137,
49,
62,
10917,
2885,
62,
49864,
62,
11929,
62,
17,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
10917,
2885,
62,
49864,
62,
11929,
62,
17,
198,
8697,
55,
1137,
49,
62,
10917,
2885,
62,
1268,
62,
49,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
10917,
2885,
62,
1268,
62,
49,
3913,
198,
8697,
55,
1137,
49,
62,
49,
27746,
62,
50,
24565,
62,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
27746,
62,
50,
24565,
62,
12532,
1137,
198,
8697,
55,
1137,
49,
62,
19535,
5446,
18379,
1961,
62,
43717,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
19535,
5446,
18379,
1961,
62,
43717,
198,
8697,
55,
1137,
49,
62,
49,
7998,
62,
1268,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
7998,
62,
1268,
62,
9864,
41,
198,
8697,
55,
1137,
49,
62,
49,
3955,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3955,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
49,
3955,
62,
49,
3913,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3955,
62,
49,
3913,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
49,
3955,
37371,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3955,
37371,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
49,
3913,
62,
12115,
6369,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3913,
62,
12115,
6369,
62,
49,
27746,
198,
8697,
55,
1137,
49,
62,
49,
3913,
62,
2200,
11401,
1404,
62,
4805,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3913,
62,
2200,
11401,
1404,
62,
4805,
12394,
198,
8697,
55,
1137,
49,
62,
49,
3913,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3913,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
49,
3913,
62,
4944,
44706,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
49,
3913,
62,
4944,
44706,
198,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
26947,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
26947,
198,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
39488,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
39488,
198,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
18564,
12709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4090,
53,
62,
25664,
62,
18564,
12709,
198,
8697,
55,
1137,
49,
62,
16811,
11159,
62,
33844,
38,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
16811,
11159,
62,
33844,
38,
1847,
198,
8697,
55,
1137,
49,
62,
16811,
11159,
62,
1268,
9858,
47,
1404,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
16811,
11159,
62,
1268,
9858,
47,
1404,
198,
8697,
55,
1137,
49,
62,
50,
2751,
37232,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
50,
2751,
37232,
198,
8697,
55,
1137,
49,
62,
18601,
62,
27082,
2390,
62,
51,
6684,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
18601,
62,
27082,
2390,
62,
51,
6684,
62,
43,
18494,
198,
8697,
55,
1137,
49,
62,
50,
10526,
4805,
9864,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
50,
10526,
4805,
9864,
62,
50,
3535,
6089,
198,
8697,
55,
1137,
49,
62,
23060,
7792,
4805,
3955,
62,
43387,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
23060,
7792,
4805,
3955,
62,
43387,
6158,
198,
8697,
55,
1137,
49,
62,
23060,
6173,
7036,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
23060,
6173,
7036,
198,
8697,
55,
1137,
49,
62,
4221,
15675,
62,
7708,
4146,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4221,
15675,
62,
7708,
4146,
1961,
198,
8697,
55,
1137,
49,
62,
51,
4146,
3955,
62,
10943,
35,
17941,
62,
15285,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
4146,
3955,
62,
10943,
35,
17941,
62,
15285,
198,
8697,
55,
1137,
49,
62,
51,
4146,
3955,
62,
18601,
1340,
4579,
49,
1565,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
4146,
3955,
62,
18601,
1340,
4579,
49,
1565,
3398,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
8220,
37267,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
8220,
37267,
50,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
25154,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
25154,
50,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
3955,
37371,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
3955,
37371,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
3955,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
3955,
50,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
22845,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
49,
22845,
198,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
4221,
15675,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
6684,
62,
10725,
56,
62,
4221,
15675,
50,
198,
8697,
55,
1137,
49,
62,
51,
11587,
62,
44,
3620,
15513,
62,
43,
3955,
2043,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
11587,
62,
44,
3620,
15513,
62,
43,
3955,
2043,
198,
8697,
55,
1137,
49,
62,
51,
41884,
62,
8895,
55,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
51,
41884,
62,
8895,
55,
1961,
198,
8697,
55,
1137,
49,
62,
4944,
33866,
8924,
62,
8845,
34874,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4944,
33866,
8924,
62,
8845,
34874,
198,
8697,
55,
1137,
49,
62,
4944,
40331,
15490,
1961,
62,
10943,
2257,
3861,
12394,
62,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4944,
40331,
15490,
1961,
62,
10943,
2257,
3861,
12394,
62,
25216,
198,
8697,
55,
1137,
49,
62,
4944,
40331,
15490,
1961,
62,
31054,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
4944,
40331,
15490,
1961,
62,
31054,
6234,
198,
8697,
55,
1137,
49,
62,
8577,
62,
33,
15919,
62,
2200,
11401,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
8577,
62,
33,
15919,
62,
2200,
11401,
33586,
198,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
3185,
1677,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
3185,
1677,
198,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
15675,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
15675,
198,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
18564,
12709,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
33249,
62,
25664,
62,
18564,
12709,
198,
8697,
55,
1137,
49,
62,
55,
5805,
27082,
5188,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1137,
49,
62,
55,
5805,
27082,
5188,
198,
8697,
37643,
1546,
4090,
8264,
19499,
10652,
35400,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
1546,
4090,
8264,
19499,
10652,
35400,
198,
8697,
55,
8895,
62,
3483,
15548,
62,
8220,
25425,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
3483,
15548,
62,
8220,
25425,
198,
8697,
55,
8895,
62,
3483,
15548,
62,
10468,
62,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
3483,
15548,
62,
10468,
62,
12115,
198,
8697,
55,
8895,
62,
3483,
15548,
62,
53,
37304,
15919,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
3483,
15548,
62,
53,
37304,
15919,
198,
8697,
55,
8895,
62,
34,
20940,
3698,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
34,
20940,
3698,
62,
51,
3535,
198,
8697,
55,
8895,
62,
36,
6968,
2969,
62,
43,
1503,
8264,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
36,
6968,
2969,
62,
43,
1503,
8264,
198,
8697,
55,
8895,
62,
36,
6968,
2969,
62,
9864,
41,
27977,
28480,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
36,
6968,
2969,
62,
9864,
41,
27977,
28480,
198,
8697,
55,
8895,
62,
15112,
1921,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
15112,
1921,
62,
51,
3535,
198,
8697,
55,
8895,
62,
10913,
44710,
62,
6173,
1847,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
10913,
44710,
62,
6173,
1847,
2751,
198,
8697,
55,
8895,
62,
12115,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
12115,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
12115,
62,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
12115,
62,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
12115,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
12115,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
12115,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
12115,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
8267,
37997,
1961,
198,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
50,
2937,
47,
2149,
40,
20958,
198,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
42,
2969,
4537,
62,
4944,
2257,
17534,
198,
8697,
55,
8895,
62,
30501,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
30501,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
30501,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
30501,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
5639,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
5639,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
5639,
62,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
5639,
62,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
5639,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
5639,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
5639,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
5639,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
8220,
37267,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
8220,
37267,
50,
198,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
8895,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
8895,
55,
198,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
3185,
51,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
3185,
51,
62,
51,
3535,
198,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
44,
16724,
9399,
33,
41,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
9864,
41,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9864,
41,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
9864,
41,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9864,
41,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
3185,
51,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
3185,
51,
62,
51,
3535,
198,
8697,
55,
8895,
62,
47,
54,
43,
62,
8634,
32135,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
47,
54,
43,
62,
8634,
32135,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
47,
54,
43,
62,
8634,
32135,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
47,
54,
43,
62,
8634,
32135,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
34509,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
34509,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
34509,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
34509,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
48,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
48,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
48,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
48,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
48,
34,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
34,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
48,
9864,
41,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
9864,
41,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
48,
9864,
41,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
9864,
41,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
48,
3185,
51,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
48,
3185,
51,
62,
51,
3535,
198,
8697,
55,
8895,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
25154,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
25154,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
12115,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
13534,
57,
56,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
13534,
57,
56,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
44,
16724,
9399,
33,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
44,
16724,
9399,
33,
41,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9864,
41,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9864,
41,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9711,
1268,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9711,
1268,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
10917,
2885,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
49,
7998,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
49,
7998,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
49,
3913,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
49,
3913,
198,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9598,
3843,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
49302,
2943,
27799,
5777,
62,
9598,
3843,
198,
8697,
55,
8895,
62,
50,
2751,
2538,
62,
47,
38827,
42446,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
50,
2751,
2538,
62,
47,
38827,
42446,
198,
8697,
55,
8895,
62,
23060,
12038,
2767,
18276,
62,
40438,
43602,
62,
8881,
48,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
23060,
12038,
2767,
18276,
62,
40438,
43602,
62,
8881,
48,
198,
8697,
55,
8895,
62,
10526,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
10526,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
10526,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
10526,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
9598,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9598,
62,
37371,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
9598,
62,
37371,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9598,
62,
37371,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
9598,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9598,
62,
49,
7998,
62,
43,
1503,
8264,
62,
41359,
198,
8697,
55,
8895,
62,
9598,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
9598,
62,
49,
7998,
62,
12310,
7036,
62,
41359,
198,
8697,
55,
8895,
62,
54,
14114,
62,
8220,
37267,
62,
49,
27746,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
8895,
62,
54,
14114,
62,
8220,
37267,
62,
49,
27746,
198,
8697,
37643,
4061,
62,
6242,
9863,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
6242,
9863,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
6242,
9863,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
6242,
9863,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
6242,
9863,
62,
2200,
13534,
55,
6234,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
6242,
9863,
62,
2200,
13534,
55,
6234,
62,
4944,
33,
15919,
1961,
198,
8697,
37643,
4061,
62,
6242,
9863,
62,
2200,
13534,
55,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
6242,
9863,
62,
2200,
13534,
55,
1961,
198,
8697,
37643,
4061,
62,
35,
2767,
34694,
62,
43,
3955,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
35,
2767,
34694,
62,
43,
3955,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
35,
2767,
34694,
62,
43,
3955,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
35,
2767,
34694,
62,
43,
3955,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
7708,
4146,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
7708,
4146,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
7708,
4146,
62,
15112,
1921,
62,
15285,
62,
51,
11587,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
7708,
4146,
62,
15112,
1921,
62,
15285,
62,
51,
11587,
198,
8697,
37643,
4061,
62,
7708,
4146,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
7708,
4146,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
7708,
4146,
62,
1268,
15112,
1921,
62,
15285,
62,
51,
11587,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
7708,
4146,
62,
1268,
15112,
1921,
62,
15285,
62,
51,
11587,
198,
8697,
37643,
4061,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
15112,
1921,
34563,
198,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
198,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
198,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
15112,
1921,
34563,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
198,
8697,
37643,
4061,
62,
1268,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
1268,
15112,
1921,
34563,
198,
8697,
37643,
4061,
62,
1268,
1890,
4944,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
1268,
1890,
4944,
14529,
198,
8697,
37643,
4061,
62,
44,
3620,
62,
43,
3955,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
44,
3620,
62,
43,
3955,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
44,
3620,
62,
43,
3955,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
44,
3620,
62,
43,
3955,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
45,
16820,
62,
43,
3955,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
45,
16820,
62,
43,
3955,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
45,
16820,
62,
43,
3955,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
45,
16820,
62,
43,
3955,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
47,
3185,
6239,
11617,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
47,
3185,
6239,
11617,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
47,
3185,
6239,
11617,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
47,
3185,
6239,
11617,
62,
51,
3535,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
1268,
37,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
10917,
2885,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
2200,
13534,
55,
1961,
62,
50,
5883,
198,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
3185,
51,
3955,
1847,
62,
51,
3535,
198,
8697,
37643,
4061,
62,
47,
3185,
6239,
29462,
3535,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
47,
3185,
6239,
29462,
3535,
62,
43,
3955,
198,
8697,
37643,
4061,
62,
50,
3535,
62,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
50,
3535,
62,
43,
3955,
198,
8697,
37643,
4061,
62,
34694,
62,
43,
3955,
62,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
34694,
62,
43,
3955,
62,
15112,
1921,
198,
8697,
37643,
4061,
62,
34694,
62,
43,
3955,
62,
1268,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
34694,
62,
43,
3955,
62,
1268,
15112,
1921,
198,
8697,
37643,
4061,
62,
4944,
33,
15919,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
37643,
4061,
62,
4944,
33,
15919,
1961,
198,
8697,
55,
62,
8697,
55,
39371,
46,
1677,
52,
5653,
62,
39,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
55,
39371,
46,
1677,
52,
5653,
62,
39,
62,
39,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
4221,
15675,
2389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
4221,
15675,
2389,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
2943,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
2943,
28270,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
2043,
34,
28270,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
2043,
34,
28270,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
33,
6465,
62,
50,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
33,
6465,
62,
50,
3535,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
33,
6465,
62,
33,
8575,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
33,
6465,
62,
33,
8575,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
4221,
15675,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
4221,
15675,
50,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
15112,
1921,
34563,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
15112,
1921,
34563,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
34694,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
35,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
35,
2767,
34694,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
16820,
27586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
16820,
27586,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
1961,
8905,
4221,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
1961,
8905,
4221,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
34,
6981,
2389,
6158,
62,
47690,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
34,
6981,
2389,
6158,
62,
47690,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
49,
6465,
1503,
4694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
49,
6465,
1503,
4694,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
8579,
5781,
34,
3843,
21982,
3185,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
8579,
5781,
34,
3843,
21982,
3185,
198,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
1546,
2538,
9792,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
10778,
62,
45,
3727,
1546,
2538,
9792,
198,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
15285,
50084,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
15285,
50084,
198,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
50084,
15112,
1921,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
50084,
15112,
1921,
198,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
4805,
3185,
4760,
6158,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
4805,
3185,
4760,
6158,
198,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
50,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
34,
7036,
31098,
50,
3535,
35354,
62,
50,
3535,
6089,
198,
8697,
55,
10778,
62,
17513,
9328,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
10778,
62,
17513,
9328,
198,
8697,
55,
10778,
62,
9693,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
10778,
62,
9693,
9863,
198,
8697,
55,
10778,
62,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
10778,
62,
12394,
198,
8697,
55,
10778,
62,
43,
18494,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
10778,
62,
43,
18494,
198,
8697,
55,
10778,
62,
35,
2606,
19146,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
10778,
62,
35,
2606,
19146,
198,
8697,
55,
5105,
32936,
27082,
40834,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
5105,
32936,
27082,
40834,
62,
39,
198,
8697,
55,
62,
27082,
2390,
62,
2885,
53,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2885,
53,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
4760,
21713,
8267,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4760,
21713,
8267,
198,
8697,
55,
62,
27082,
2390,
62,
4760,
38,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4760,
38,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
5097,
11290,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
5097,
11290,
25216,
198,
8697,
55,
62,
27082,
2390,
62,
34,
3861,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
3861,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
46162,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
46162,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
35,
4805,
40,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
35,
4805,
40,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
2149,
3698,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
2149,
3698,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
36,
5868,
49,
42,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36,
5868,
49,
42,
198,
8697,
55,
62,
27082,
2390,
62,
8905,
3185,
51,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8905,
3185,
51,
198,
8697,
55,
62,
27082,
2390,
62,
8905,
18973,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8905,
18973,
198,
8697,
55,
62,
27082,
2390,
62,
36,
4805,
7998,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36,
4805,
7998,
198,
8697,
55,
62,
27082,
2390,
62,
48913,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48913,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
2043,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2043,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
49,
3913,
15675,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
49,
3913,
15675,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
37,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
37,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
25154,
15675,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
25154,
15675,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
37371,
15675,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
37371,
15675,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
9864,
41,
3069,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
9864,
41,
3069,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
9864,
41,
6239,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
9864,
41,
6239,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
18973,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
18973,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
18973,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
18973,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
47,
4805,
40,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
47,
4805,
40,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
46437,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
46437,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
2200,
1268,
53,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2200,
1268,
53,
198,
8697,
55,
62,
27082,
2390,
62,
6173,
32,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
6173,
32,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
6173,
49,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
6173,
49,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
50,
2751,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
2751,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
1961,
25620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
1961,
25620,
198,
8697,
55,
62,
27082,
2390,
62,
47,
35316,
10705,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
47,
35316,
10705,
198,
8697,
55,
62,
27082,
2390,
62,
35,
1404,
16219,
25171,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
35,
1404,
16219,
25171,
198,
8697,
55,
62,
27082,
2390,
62,
22083,
52,
5222,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
22083,
52,
5222,
198,
8697,
55,
62,
27082,
2390,
62,
47,
16448,
8881,
1503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
47,
16448,
8881,
1503,
198,
8697,
55,
62,
27082,
2390,
62,
43,
5868,
36252,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
43,
5868,
36252,
198,
8697,
55,
62,
27082,
2390,
62,
48,
5868,
36252,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48,
5868,
36252,
198,
8697,
55,
62,
27082,
2390,
62,
33249,
34720,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33249,
34720,
198,
8697,
55,
62,
27082,
2390,
62,
33249,
44,
3620,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33249,
44,
3620,
198,
8697,
55,
62,
27082,
2390,
62,
4221,
15675,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4221,
15675,
50,
198,
8697,
55,
62,
27082,
2390,
62,
10943,
3697,
18379,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
10943,
3697,
18379,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
10943,
3697,
18379,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
10943,
3697,
18379,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
50,
5064,
21016,
1797,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
5064,
21016,
1797,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
50,
32297,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
32297,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
50,
32297,
2043,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
32297,
2043,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
44,
3705,
43,
1340,
16630,
5883,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
3705,
43,
1340,
16630,
5883,
198,
8697,
55,
62,
27082,
2390,
62,
44,
3620,
15513,
3620,
11909,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
3620,
15513,
3620,
11909,
1921,
1797,
198,
8697,
55,
62,
27082,
2390,
62,
41359,
1137,
20151,
3620,
11909,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
41359,
1137,
20151,
3620,
11909,
1921,
1797,
198,
8697,
55,
62,
27082,
2390,
62,
15112,
1921,
3185,
15972,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
15112,
1921,
3185,
15972,
16820,
198,
8697,
55,
62,
27082,
2390,
62,
27082,
1847,
2538,
31288,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
27082,
1847,
2538,
31288,
16820,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
11682,
1921,
11335,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
11682,
1921,
11335,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
2200,
11401,
1404,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
2200,
11401,
1404,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
51,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
18564,
12709,
2538,
18697,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
18564,
12709,
2538,
18697,
198,
8697,
55,
62,
27082,
2390,
62,
49,
6981,
2662,
5188,
1961,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
49,
6981,
2662,
5188,
1961,
198,
8697,
55,
62,
27082,
2390,
62,
35,
2767,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
35,
2767,
51,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
25664,
24181,
3727,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
25664,
24181,
3727,
2751,
198,
8697,
55,
62,
27082,
2390,
62,
17614,
24181,
3727,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
17614,
24181,
3727,
2751,
198,
8697,
55,
62,
27082,
2390,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
3185,
51,
3955,
1847,
9050,
51,
46095,
198,
8697,
55,
62,
27082,
2390,
62,
5097,
1340,
3698,
7730,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
5097,
1340,
3698,
7730,
198,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
35,
2767,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
4944,
2751,
35,
2767,
51,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
36037,
31180,
42,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36037,
31180,
42,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
35354,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
35354,
25216,
198,
8697,
55,
62,
27082,
2390,
62,
16279,
32572,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
16279,
32572,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
50,
5064,
4694,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
5064,
4694,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
35,
40760,
2390,
2149,
49,
22845,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
35,
40760,
2390,
2149,
49,
22845,
198,
8697,
55,
62,
27082,
2390,
62,
38827,
12532,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
38827,
12532,
198,
8697,
55,
62,
27082,
2390,
62,
27082,
2390,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
27082,
2390,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
37,
15173,
2751,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
37,
15173,
2751,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
9338,
21389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
9338,
21389,
198,
8697,
55,
62,
27082,
2390,
62,
33249,
27130,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33249,
27130,
38,
198,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
18601,
6158,
31212,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
18601,
6158,
31212,
198,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
15112,
42643,
3843,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
15112,
42643,
3843,
51,
3535,
198,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
3185,
4825,
3843,
51,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
10619,
4877,
3185,
4825,
3843,
51,
3535,
198,
8697,
55,
62,
27082,
2390,
62,
44,
16724,
9399,
33,
41,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
16724,
9399,
33,
41,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
11473,
34720,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
11473,
34720,
198,
8697,
55,
62,
27082,
2390,
62,
33,
15751,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
15751,
3535,
198,
8697,
55,
62,
27082,
2390,
62,
5097,
40,
10917,
1546,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
5097,
40,
10917,
1546,
198,
8697,
55,
62,
27082,
2390,
62,
8220,
1137,
1961,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8220,
1137,
1961,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
8220,
28884,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8220,
28884,
198,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
21982,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
21982,
198,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
8577,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
8577,
198,
8697,
55,
62,
27082,
2390,
62,
40906,
38,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
40906,
38,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
36,
6968,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36,
6968,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
8905,
12394,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8905,
12394,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
26288,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
41358,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
41358,
23428,
198,
8697,
55,
62,
27082,
2390,
62,
1268,
4694,
46,
3069,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
1268,
4694,
46,
3069,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
45,
16820,
25664,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45,
16820,
25664,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
3698,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
3698,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
1546,
3698,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
1546,
3698,
198,
8697,
55,
62,
27082,
2390,
62,
9864,
37882,
5064,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
9864,
37882,
5064,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
12532,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
12532,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
16448,
9864,
37882,
5064,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
16448,
9864,
37882,
5064,
198,
8697,
55,
62,
27082,
2390,
62,
2257,
7227,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2257,
7227,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
51,
16448,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
51,
16448,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
53,
27415,
3698,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
53,
27415,
3698,
198,
8697,
55,
62,
27082,
2390,
62,
33,
8575,
18601,
1677,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
8575,
18601,
1677,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
13909,
4261,
37,
2200,
48,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
13909,
4261,
37,
2200,
48,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
12532,
25216,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
12532,
25216,
198,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
20802,
10659,
1581,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
20802,
10659,
1581,
198,
8697,
55,
62,
27082,
2390,
62,
2200,
13534,
27481,
2200,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2200,
13534,
27481,
2200,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
48296,
30976,
8575,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48296,
30976,
8575,
198,
8697,
55,
62,
27082,
2390,
62,
15199,
41358,
23428,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
15199,
41358,
23428,
198,
8697,
55,
62,
27082,
2390,
62,
3697,
3913,
8220,
28884,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
3697,
3913,
8220,
28884,
198,
8697,
55,
62,
27082,
2390,
62,
3955,
6489,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
3955,
6489,
14529,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
36,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
36,
198,
8697,
55,
62,
27082,
2390,
62,
38022,
2749,
8874,
4877,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
38022,
2749,
8874,
4877,
198,
8697,
55,
62,
27082,
2390,
62,
18601,
1340,
15916,
6981,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
18601,
1340,
15916,
6981,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
18601,
18494,
2043,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
18601,
18494,
2043,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
10913,
26861,
6981,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
10913,
26861,
6981,
198,
8697,
55,
62,
27082,
2390,
62,
10913,
26861,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
10913,
26861,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
10913,
33056,
10705,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
10913,
33056,
10705,
198,
8697,
55,
62,
27082,
2390,
62,
3697,
3913,
47,
1404,
7998,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
3697,
3913,
47,
1404,
7998,
198,
8697,
55,
62,
27082,
2390,
62,
44,
49060,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
49060,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
26288,
34382,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
26288,
34382,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
4760,
15916,
3843,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4760,
15916,
3843,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
34,
11473,
1961,
19930,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
34,
11473,
1961,
19930,
198,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
47924,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
3843,
47924,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
3620,
11909,
1921,
1797,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
3620,
11909,
1921,
1797,
198,
8697,
55,
62,
27082,
2390,
62,
23060,
12038,
2767,
18276,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
23060,
12038,
2767,
18276,
198,
8697,
55,
62,
27082,
2390,
62,
33569,
2767,
56,
11401,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33569,
2767,
56,
11401,
198,
8697,
55,
62,
27082,
2390,
62,
49,
1268,
9693,
36,
4261,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
49,
1268,
9693,
36,
4261,
198,
8697,
55,
62,
27082,
2390,
62,
30501,
13909,
4261,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
30501,
13909,
4261,
198,
8697,
55,
62,
27082,
2390,
62,
2200,
11401,
1404,
48296,
3535,
6089,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2200,
11401,
1404,
48296,
3535,
6089,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
2767,
12789,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
2767,
12789,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
6535,
12789,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
6535,
12789,
198,
8697,
55,
62,
27082,
2390,
62,
2200,
4537,
4663,
5446,
11015,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
2200,
4537,
4663,
5446,
11015,
198,
8697,
55,
62,
27082,
2390,
62,
36,
6489,
1268,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36,
6489,
1268,
198,
8697,
55,
62,
27082,
2390,
62,
8905,
2200,
13534,
55,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8905,
2200,
13534,
55,
198,
8697,
55,
62,
27082,
2390,
62,
5837,
13909,
4261,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
5837,
13909,
4261,
198,
8697,
55,
62,
27082,
2390,
62,
36,
2246,
16045,
3843,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
36,
2246,
16045,
3843,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
33177,
2246,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
33177,
2246,
9050,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
2200,
6489,
11598,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
2200,
6489,
11598,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
38,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
38,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
4760,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
4760,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
12394,
16938,
9050,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
3535,
45,
16402,
3535,
12394,
16938,
9050,
198,
8697,
55,
62,
27082,
2390,
62,
47,
3185,
6239,
1404,
3698,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
47,
3185,
6239,
1404,
3698,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
8895,
3705,
17133,
3398,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8895,
3705,
17133,
3398,
198,
8697,
55,
62,
27082,
2390,
62,
8895,
48,
8697,
18601,
1404,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
8895,
48,
8697,
18601,
1404,
198,
8697,
55,
62,
27082,
2390,
62,
57,
1137,
12096,
1847,
4851,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
57,
1137,
12096,
1847,
4851,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
13909,
11335,
5777,
9863,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
13909,
11335,
5777,
9863,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
40906,
38,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
40906,
38,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
36,
6968,
2969,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
36,
6968,
2969,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
31800,
16820,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
31800,
16820,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
1268,
4694,
3535,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
1268,
4694,
3535,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
34694,
198,
8697,
55,
62,
27082,
2390,
62,
9655,
4851,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
9655,
4851,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
42,
24805,
11262,
33586,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
44,
4061,
42,
24805,
11262,
33586,
198,
8697,
55,
62,
27082,
2390,
62,
26830,
55,
13252,
2394,
4221,
15675,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
26830,
55,
13252,
2394,
4221,
15675,
50,
198,
8697,
55,
62,
27082,
2390,
62,
1268,
4694,
3535,
25664,
47,
31688,
10426,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
1268,
4694,
3535,
25664,
47,
31688,
10426,
198,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
1961,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
4805,
9864,
1961,
2767,
34694,
198,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
35,
2767,
34694,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45472,
1797,
7801,
37,
5781,
35,
2767,
34694,
198,
8697,
55,
62,
27082,
2390,
62,
28182,
5662,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
28182,
5662,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
2943,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
45,
3727,
2943,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
5760,
4261,
6234,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
5760,
4261,
6234,
198,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
5760,
2767,
51,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
5760,
2767,
51,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
11571,
4146,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
24115,
5105,
11571,
4146,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
29701,
1847,
3955,
6489,
14529,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
29701,
1847,
3955,
6489,
14529,
198,
8697,
55,
62,
27082,
2390,
62,
33,
48,
5662,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
48,
5662,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
7836,
4825,
3843,
50,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
7836,
4825,
3843,
50,
198,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
44,
4061,
2257,
7227,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
44,
4061,
2257,
7227,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
8895,
3705,
10526,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
8895,
3705,
10526,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
8895,
3705,
8141,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
8895,
3705,
8141,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
44,
4061,
45,
3727,
3698,
3955,
2043,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
10526,
44,
4061,
45,
3727,
3698,
3955,
2043,
198,
8697,
55,
62,
27082,
2390,
62,
50,
2640,
16,
2200,
21389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
2640,
16,
2200,
21389,
198,
8697,
55,
62,
27082,
2390,
62,
50,
2640,
17,
2200,
21389,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
50,
2640,
17,
2200,
21389,
198,
8697,
55,
62,
27082,
2390,
62,
33,
12203,
5662,
2662,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
12203,
5662,
2662,
47,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
10761,
3913,
4221,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
10761,
3913,
4221,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
9864,
44817,
10503,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
9864,
44817,
10503,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
25154,
37371,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
25154,
37371,
198,
8697,
55,
62,
27082,
2390,
62,
33,
49608,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
49608,
31519,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
2043,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
2043,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
22921,
44879,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
22921,
44879,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
12532,
1137,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
12532,
1137,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
2257,
7227,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
2257,
7227,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
9419,
18420,
1847,
38,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
9419,
18420,
1847,
38,
198,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
48,
8697,
36,
5662,
2662,
47,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
33,
1503,
48,
8697,
36,
5662,
2662,
47,
198,
8697,
55,
62,
27082,
2390,
62,
48,
13137,
57,
15675,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48,
13137,
57,
15675,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
34,
1847,
34,
48,
34,
5760,
52,
23333,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
34,
1847,
34,
48,
34,
5760,
52,
23333,
198,
8697,
55,
62,
27082,
2390,
62,
48,
47,
5673,
7336,
3705,
35,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48,
47,
5673,
7336,
3705,
35,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
48,
51,
3535,
1268,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
48,
51,
3535,
1268,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
2043,
43,
3955,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
2043,
43,
3955,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
8905,
3185,
51,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
8905,
3185,
51,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
36,
4805,
7998,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
36,
4805,
7998,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
47,
4805,
40,
12115,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
47,
4805,
40,
12115,
198,
8697,
55,
62,
27082,
2390,
62,
12884,
26288,
31519,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
27082,
2390,
62,
12884,
26288,
31519,
198,
8697,
55,
62,
8697,
55,
39371,
2394,
48232,
1546,
62,
39,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
55,
39371,
2394,
48232,
1546,
62,
39,
62,
39,
198,
8697,
55,
62,
8697,
55,
39371,
10892,
49,
18415,
50,
62,
39,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
55,
39371,
10892,
49,
18415,
50,
62,
39,
62,
39,
198,
198,
2,
17296,
269,
8416,
8906,
48499,
7509,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
66,
8416,
8906,
48499,
7509,
62,
2032,
328,
30238,
7,
66,
8416,
8906,
48499,
7509,
8,
198,
198,
2,
17296,
269,
8416,
46911,
7509,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
66,
8416,
46911,
7509,
62,
2032,
328,
30238,
7,
66,
8416,
46911,
7509,
8,
198,
198,
8697,
55,
62,
8697,
2538,
8051,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
2538,
8051,
62,
39,
198,
8697,
55,
62,
2969,
3955,
3727,
3698,
62,
12310,
7036,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2969,
3955,
3727,
3698,
62,
12310,
7036,
198,
8697,
55,
62,
2969,
3955,
3727,
3698,
62,
43,
1503,
8264,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2969,
3955,
3727,
3698,
62,
43,
1503,
8264,
198,
8697,
55,
62,
2969,
3955,
3727,
3698,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
2969,
3955,
3727,
3698,
198,
198,
2,
17296,
269,
65,
62,
7249,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
21101,
62,
7249,
62,
2032,
328,
30238,
7,
21101,
62,
7249,
8,
198,
198,
8697,
55,
62,
8697,
2538,
55,
36,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
8697,
2538,
55,
36,
62,
39,
198,
8697,
55,
36,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
36,
62,
39,
198,
44,
4061,
36,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
44,
4061,
36,
62,
39,
198,
8697,
55,
39371,
27799,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
39371,
27799,
62,
39,
198,
8697,
55,
62,
39371,
46,
1546,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39371,
46,
1546,
62,
39,
198,
8697,
55,
62,
39371,
46,
3698,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39371,
46,
3698,
62,
39,
198,
8697,
55,
62,
39371,
46,
6369,
62,
39,
796,
4808,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
62,
39371,
46,
6369,
62,
39,
198,
198,
2,
17296,
269,
8416,
9078,
72,
1098,
28281,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
66,
8416,
9078,
72,
1098,
28281,
62,
2032,
328,
30238,
7,
66,
8416,
9078,
72,
1098,
28281,
8,
628,
198,
2,
17296,
493,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
600,
46745,
62,
2032,
328,
30238,
7,
600,
46745,
8,
198,
198,
2,
17296,
269,
8416,
6511,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
66,
8416,
6511,
46745,
62,
2032,
328,
30238,
7,
66,
8416,
6511,
46745,
8,
198,
198,
2,
17296,
4274,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
23352,
46745,
62,
2032,
328,
30238,
7,
23352,
46745,
8,
198,
198,
2,
17296,
16932,
55,
19930,
20692,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
19930,
20692,
46745,
62,
2032,
328,
30238,
7,
8697,
55,
19930,
20692,
46745,
8,
198,
198,
2,
17296,
16932,
55,
1677,
53,
20692,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
1677,
53,
20692,
46745,
62,
2032,
328,
30238,
7,
8697,
55,
1677,
53,
20692,
46745,
8,
198,
198,
2,
17296,
16932,
55,
3398,
22846,
3698,
20692,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
3398,
22846,
3698,
20692,
46745,
62,
2032,
328,
30238,
7,
8697,
55,
3398,
22846,
3698,
20692,
46745,
8,
198,
198,
2,
17296,
16932,
55,
27082,
2390,
28480,
20692,
46745,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
8697,
55,
27082,
2390,
28480,
20692,
46745,
62,
2032,
328,
30238,
7,
8697,
55,
27082,
2390,
28480,
20692,
46745,
8,
198,
198,
2,
17296,
493,
19182,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
600,
19182,
62,
2032,
328,
30238,
7,
600,
19182,
8,
198,
198,
2,
17296,
4274,
19182,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
23352,
19182,
62,
2032,
328,
30238,
7,
23352,
19182,
8,
198,
198,
2,
17296,
890,
19182,
287,
4808,
9078,
66,
11141,
62,
24254,
25,
198,
62,
9078,
66,
11141,
62,
24254,
13,
6511,
19182,
62,
2032,
328,
30238,
7,
6511,
19182,
8,
628,
628
] | 2.007196 | 36,548 |
"""
Generator class for some Process-based mixing algorithms.
Copyright 2020 Thomas Jackson Park & Jeremy Pavier
"""
import os
import random
import inspect
from pydub import AudioSegment
from GenerIter.process import Process
from GenerIter.util import debug, nextPowerOf2
import GenerIter.excepts as robox
| [
37811,
198,
8645,
1352,
1398,
329,
617,
10854,
12,
3106,
17090,
16113,
13,
198,
198,
15269,
12131,
5658,
6612,
3250,
1222,
11753,
350,
19492,
198,
198,
37811,
198,
11748,
28686,
198,
11748,
4738,
198,
11748,
10104,
198,
6738,
279,
5173,
549,
1330,
13491,
41030,
434,
198,
6738,
2980,
29993,
13,
14681,
1330,
10854,
198,
6738,
2980,
29993,
13,
22602,
1330,
14257,
11,
1306,
13434,
5189,
17,
198,
11748,
2980,
29993,
13,
16341,
82,
355,
686,
3524,
198
] | 4 | 77 |
import numpy as np
DT = np.float32
eps = 1e-12
# Globals
components = []
params = []
# Global forward/backward
# Optimization functions
# Values
# Parameters
# Xavier initializer
# Utility function for shape inference with broadcasting
#### Actual components
class Add: # Add with broadcasting
"""
Class name: Add
Class usage: add two matrices x, y with broadcasting supported by numpy "+" operation.
Class function:
forward: calculate x + y with possible broadcasting
backward: calculate derivative w.r.t to x and y, when calculate the derivative w.r.t to y, we sum up all the axis over grad except the last dimension.
"""
class Mul: # Multiply with broadcasting
"""
Class Name: Mul
Class Usage: elementwise multiplication with two matrix
Class Functions:
forward: compute the result x*y
backward: compute the derivative w.r.t x and y
"""
class VDot: # Matrix multiply (fully-connected layer)
"""
Class Name: VDot
Class Usage: matrix multiplication where x, y are matrices
y is expected to be a parameter and there is a convention that parameters come last. Typical usage is x is batch feature vector with shape (batch_size, f_dim), y a parameter with shape (f_dim, f_dim2).
Class Functions:
forward: compute the vector matrix multplication result
backward: compute the derivative w.r.t x and y, where derivative of x and y are both matrices
"""
class Log: # Elementwise Log
"""
Class Name: Log
Class Usage: compute the elementwise log(x) given x.
Class Functions:
forward: compute log(x)
backward: compute the derivative w.r.t input vector x
"""
class Sigmoid:
"""
Class Name: Sigmoid
Class Usage: compute the elementwise sigmoid activation. Input is vector or matrix. In case of vector, [x_{0}, x_{1}, ..., x_{n}], output is vector [y_{0}, y_{1}, ..., y_{n}] where y_{i} = 1/(1 + exp(-x_{i}))
Class Functions:
forward: compute activation y_{i} for all i.
backward: compute the derivative w.r.t input vector/matrix x
"""
class Tanh:
"""
Class Name: Tanh
Class Usage: compute the elementwise Tanh activation. Input is vector or matrix. In case of vector, [x_{0}, x_{1}, ..., x_{n}], output is vector [y_{0}, y_{1}, ..., y_{n}] where y_{i} = (exp(x_{i}) - exp(-x_{i}))/(exp(x_{i}) + exp(-x_{i}))
Class Functions:
forward: compute activation y_{i} for all i.
backward: compute the derivative w.r.t input vector/matrix x
"""
class RELU:
"""
Class Name: RELU
Class Usage: compute the elementwise RELU activation. Input is vector or matrix. In case of vector, [x_{0}, x_{1}, ..., x_{n}], output is vector [y_{0}, y_{1}, ..., y_{n}] where y_{i} = max(0, x_{i})
Class Functions:
forward: compute activation y_{i} for all i.
backward: compute the derivative w.r.t input vector/matrix x
"""
class LeakyRELU:
"""
Class Name: LeakyRELU
Class Usage: compute the elementwise LeakyRELU activation. Input is vector or matrix. In case of vector, [x_{0}, x_{1}, ..., x_{n}], output is vector [y_{0}, y_{1}, ..., y_{n}] where y_{i} = 0.01*x_{i} for x_{i} < 0 and y_{i} = x_{i} for x_{i} > 0
Class Functions:
forward: compute activation y_{i} for all i.
backward: compute the derivative w.r.t input vector/matrix x
"""
class Softplus:
"""
Class Name: Softplus
Class Usage: compute the elementwise Softplus activation.
Class Functions:
forward: compute activation y_{i} for all i.
backward: compute the derivative w.r.t input vector/matrix x
"""
class SoftMax:
"""
Class Name: SoftMax
Class Usage: compute the softmax activation for each element in the matrix, normalization by each all elements in each batch (row). Specificaly, input is matrix [x_{00}, x_{01}, ..., x_{0n}, ..., x_{b0}, x_{b1}, ..., x_{bn}], output is a matrix [p_{00}, p_{01}, ..., p_{0n},...,p_{b0},,,p_{bn} ] where p_{bi} = exp(x_{bi})/(exp(x_{b0}) + ... + exp(x_{bn}))
Class Functions:
forward: compute probability p_{bi} for all b, i.
backward: compute the derivative w.r.t input matrix x
"""
class LogLoss:
"""
Class Name: LogLoss
Class Usage: compute the elementwise -log(x) given matrix x. this is the loss function we use in most case.
Class Functions:
forward: compute -log(x)
backward: compute the derivative w.r.t input matrix x
"""
class Mean:
"""
Class Name: Mean
Class Usage: compute the mean given a vector x.
Class Functions:
forward: compute (x_{0} + ... + x_{n})/n
backward: compute the derivative w.r.t input vector x
"""
class Sum:
"""
Class Name: Sum
Class Usage: compute the sum of a matrix.
"""
class MeanwithMask:
"""
Class Name: MeanwithMask
Class Usage: compute the mean given a vector x with mask.
Class Functions:
forward: compute x = x*mask and then sum over nonzeros in x/#(nozeros in x)
backward: compute the derivative w.r.t input vector matrix
"""
class Aref: # out = x[idx]
"""
Class Name: Aref
Class Usage: get some specific entry in a matrix. x is the matrix with shape (batch_size, N) and idx
is vector contains the entry index and x is differentiable.
Class Functions:
forward: compute x[b, idx(b)]
backward: compute the derivative w.r.t input matrix x
"""
class Accuracy:
"""
Class Name: Accuracy
Class Usage: check the predicted label is correct or not. x is the probability vector where each probability is for each class. idx is ground truth label.
Class Functions:
forward: find the label that has maximum probability and compare it with the ground truth label.
backward: None
"""
class Reshape:
"""
Class name: Reshape
Class usage: Reshape the tensor x to specific shape.
Class function:
forward: Reshape the tensor x to specific shape
backward: calculate derivative w.r.t to x, which is simply reshape the income gradient to x's original shape
"""
# clip the gradient if the norm of gradient is larger than some threshold, this is crucial for RNN.
##################################################### Recurrent Components ##############################################
class Embed:
"""
Class name: Embed
Class usage: Embed layer.
Class function:
forward: given the embeeding matrix w2v and word idx, return its corresponding embedding vector.
backward: calculate the derivative w.r.t to embedding matrix
"""
class ConCat:
"""
Class name: ConCat
Class usage: ConCat layer.
Class function:
forward: concat two matrix along with the axis 1.
backward: calculate the derivative w.r.t to matrix a and y.
"""
class ArgMax:
"""
Class name: ArgMax
Class usage: ArgMax layer.
Class function:
forward: given x, calculate the index which has the maximum value
backward: None
"""
| [
11748,
299,
32152,
355,
45941,
198,
198,
24544,
796,
45941,
13,
22468,
2624,
198,
25386,
796,
352,
68,
12,
1065,
198,
2,
40713,
874,
198,
5589,
3906,
796,
17635,
198,
37266,
796,
17635,
628,
198,
2,
8060,
2651,
14,
1891,
904,
628,
198,
198,
2,
30011,
1634,
5499,
628,
198,
2,
27068,
628,
198,
2,
40117,
628,
198,
2,
30825,
4238,
7509,
628,
198,
2,
34030,
2163,
329,
5485,
32278,
351,
22978,
628,
198,
4242,
33520,
6805,
628,
198,
4871,
3060,
25,
220,
1303,
3060,
351,
22978,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
5016,
1438,
25,
3060,
198,
220,
220,
220,
220,
220,
5016,
8748,
25,
751,
734,
2603,
45977,
2124,
11,
331,
351,
22978,
4855,
416,
299,
32152,
43825,
1,
4905,
13,
198,
220,
220,
220,
220,
220,
5016,
2163,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
15284,
2124,
1343,
331,
351,
1744,
22978,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
15284,
27255,
266,
13,
81,
13,
83,
284,
2124,
290,
331,
11,
618,
15284,
262,
27255,
266,
13,
81,
13,
83,
284,
331,
11,
356,
2160,
510,
477,
262,
16488,
625,
3915,
2845,
262,
938,
15793,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
17996,
25,
220,
1303,
7854,
541,
306,
351,
22978,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
17996,
198,
220,
220,
220,
5016,
29566,
25,
5002,
3083,
48473,
351,
734,
17593,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
262,
1255,
2124,
9,
88,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
2124,
290,
331,
198,
220,
220,
220,
37227,
628,
198,
4871,
569,
35,
313,
25,
220,
1303,
24936,
29162,
357,
2759,
12,
15236,
7679,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
569,
35,
313,
198,
220,
220,
220,
5016,
29566,
25,
17593,
48473,
810,
2124,
11,
331,
389,
2603,
45977,
198,
220,
220,
220,
331,
318,
2938,
284,
307,
257,
11507,
290,
612,
318,
257,
9831,
326,
10007,
1282,
938,
13,
48752,
8748,
318,
2124,
318,
15458,
3895,
15879,
351,
5485,
357,
43501,
62,
7857,
11,
277,
62,
27740,
828,
331,
257,
11507,
351,
5485,
357,
69,
62,
27740,
11,
277,
62,
27740,
17,
737,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
262,
15879,
17593,
1963,
489,
3299,
1255,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
2124,
290,
331,
11,
810,
27255,
286,
2124,
290,
331,
389,
1111,
2603,
45977,
198,
220,
220,
220,
37227,
628,
198,
4871,
5972,
25,
220,
1303,
11703,
3083,
5972,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
5972,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
2604,
7,
87,
8,
1813,
2124,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
2604,
7,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
311,
17225,
1868,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
311,
17225,
1868,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
264,
17225,
1868,
14916,
13,
23412,
318,
15879,
393,
17593,
13,
554,
1339,
286,
15879,
11,
685,
87,
23330,
15,
5512,
2124,
23330,
16,
5512,
2644,
11,
2124,
23330,
77,
92,
4357,
5072,
318,
15879,
685,
88,
23330,
15,
5512,
331,
23330,
16,
5512,
2644,
11,
331,
23330,
77,
92,
60,
810,
331,
23330,
72,
92,
796,
352,
29006,
16,
1343,
1033,
32590,
87,
23330,
72,
92,
4008,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
14916,
331,
23330,
72,
92,
329,
477,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
14,
6759,
8609,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
11818,
71,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
11818,
71,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
11818,
71,
14916,
13,
23412,
318,
15879,
393,
17593,
13,
554,
1339,
286,
15879,
11,
685,
87,
23330,
15,
5512,
2124,
23330,
16,
5512,
2644,
11,
2124,
23330,
77,
92,
4357,
5072,
318,
15879,
685,
88,
23330,
15,
5512,
331,
23330,
16,
5512,
2644,
11,
331,
23330,
77,
92,
60,
810,
331,
23330,
72,
92,
796,
357,
11201,
7,
87,
23330,
72,
30072,
532,
1033,
32590,
87,
23330,
72,
92,
4008,
29006,
11201,
7,
87,
23330,
72,
30072,
1343,
1033,
32590,
87,
23330,
72,
92,
4008,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
14916,
331,
23330,
72,
92,
329,
477,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
14,
6759,
8609,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
29749,
52,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
29749,
52,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
29749,
52,
14916,
13,
23412,
318,
15879,
393,
17593,
13,
554,
1339,
286,
15879,
11,
685,
87,
23330,
15,
5512,
2124,
23330,
16,
5512,
2644,
11,
2124,
23330,
77,
92,
4357,
5072,
318,
15879,
685,
88,
23330,
15,
5512,
331,
23330,
16,
5512,
2644,
11,
331,
23330,
77,
92,
60,
810,
331,
23330,
72,
92,
796,
3509,
7,
15,
11,
2124,
23330,
72,
30072,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
14916,
331,
23330,
72,
92,
329,
477,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
14,
6759,
8609,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
1004,
15492,
16448,
52,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
1004,
15492,
16448,
52,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
1004,
15492,
16448,
52,
14916,
13,
23412,
318,
15879,
393,
17593,
13,
554,
1339,
286,
15879,
11,
685,
87,
23330,
15,
5512,
2124,
23330,
16,
5512,
2644,
11,
2124,
23330,
77,
92,
4357,
5072,
318,
15879,
685,
88,
23330,
15,
5512,
331,
23330,
16,
5512,
2644,
11,
331,
23330,
77,
92,
60,
810,
331,
23330,
72,
92,
796,
657,
13,
486,
9,
87,
23330,
72,
92,
329,
2124,
23330,
72,
92,
1279,
657,
290,
331,
23330,
72,
92,
796,
2124,
23330,
72,
92,
329,
2124,
23330,
72,
92,
1875,
657,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
14916,
331,
23330,
72,
92,
329,
477,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
14,
6759,
8609,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
8297,
9541,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
8297,
9541,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
8297,
9541,
14916,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
14916,
331,
23330,
72,
92,
329,
477,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
14,
6759,
8609,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
8297,
11518,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
8297,
11518,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
2705,
9806,
14916,
329,
1123,
5002,
287,
262,
17593,
11,
3487,
1634,
416,
1123,
477,
4847,
287,
1123,
15458,
357,
808,
737,
18291,
361,
605,
88,
11,
5128,
318,
17593,
685,
87,
23330,
405,
5512,
2124,
23330,
486,
5512,
2644,
11,
2124,
23330,
15,
77,
5512,
2644,
11,
2124,
23330,
65,
15,
5512,
2124,
23330,
65,
16,
5512,
2644,
11,
2124,
23330,
9374,
92,
4357,
5072,
318,
257,
17593,
685,
79,
23330,
405,
5512,
279,
23330,
486,
5512,
2644,
11,
279,
23330,
15,
77,
5512,
986,
11,
79,
23330,
65,
15,
5512,
9832,
79,
23330,
9374,
92,
2361,
810,
279,
23330,
8482,
92,
796,
1033,
7,
87,
23330,
8482,
92,
20679,
7,
11201,
7,
87,
23330,
65,
15,
30072,
1343,
2644,
1343,
1033,
7,
87,
23330,
9374,
92,
4008,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
12867,
279,
23330,
8482,
92,
329,
477,
275,
11,
1312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
17593,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
5972,
43,
793,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
5972,
43,
793,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
5002,
3083,
532,
6404,
7,
87,
8,
1813,
17593,
2124,
13,
428,
318,
262,
2994,
2163,
356,
779,
287,
749,
1339,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
532,
6404,
7,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
17593,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
22728,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
22728,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
1612,
1813,
257,
15879,
2124,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
357,
87,
23330,
15,
92,
1343,
2644,
1343,
2124,
23330,
77,
92,
20679,
77,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
5060,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
5060,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
2160,
286,
257,
17593,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
22728,
4480,
45195,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
22728,
4480,
45195,
198,
220,
220,
220,
5016,
29566,
25,
24061,
262,
1612,
1813,
257,
15879,
2124,
351,
9335,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
2124,
796,
2124,
9,
27932,
290,
788,
2160,
625,
1729,
9107,
418,
287,
2124,
31113,
7,
3919,
9107,
418,
287,
2124,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
15879,
17593,
198,
220,
220,
220,
37227,
628,
198,
4871,
4231,
69,
25,
220,
1303,
503,
796,
2124,
58,
312,
87,
60,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
4231,
69,
198,
220,
220,
220,
5016,
29566,
25,
651,
617,
2176,
5726,
287,
257,
17593,
13,
2124,
318,
262,
17593,
351,
5485,
357,
43501,
62,
7857,
11,
399,
8,
290,
4686,
87,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
15879,
4909,
262,
5726,
6376,
290,
2124,
318,
1180,
3379,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
24061,
2124,
58,
65,
11,
4686,
87,
7,
65,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
24061,
262,
27255,
266,
13,
81,
13,
83,
5128,
17593,
2124,
198,
220,
220,
220,
37227,
628,
198,
4871,
33222,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
6530,
25,
33222,
198,
220,
220,
220,
5016,
29566,
25,
2198,
262,
11001,
6167,
318,
3376,
393,
407,
13,
2124,
318,
262,
12867,
15879,
810,
1123,
12867,
318,
329,
1123,
1398,
13,
4686,
87,
318,
2323,
3872,
6167,
13,
198,
220,
220,
220,
5016,
40480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
1064,
262,
6167,
326,
468,
5415,
12867,
290,
8996,
340,
351,
262,
2323,
3872,
6167,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
6045,
198,
220,
220,
220,
37227,
628,
198,
4871,
1874,
71,
1758,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
5016,
1438,
25,
1874,
71,
1758,
198,
220,
220,
220,
220,
220,
5016,
8748,
25,
1874,
71,
1758,
262,
11192,
273,
2124,
284,
2176,
5485,
13,
198,
220,
220,
220,
220,
220,
5016,
2163,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
1874,
71,
1758,
262,
11192,
273,
2124,
284,
2176,
5485,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
15284,
27255,
266,
13,
81,
13,
83,
284,
2124,
11,
543,
318,
2391,
27179,
1758,
262,
3739,
31312,
284,
2124,
338,
2656,
5485,
198,
220,
220,
220,
37227,
628,
628,
628,
198,
2,
10651,
262,
31312,
611,
262,
2593,
286,
31312,
318,
4025,
621,
617,
11387,
11,
428,
318,
8780,
329,
371,
6144,
13,
628,
198,
29113,
14468,
4242,
2,
3311,
6657,
36109,
1303,
29113,
7804,
4242,
2,
628,
198,
4871,
13302,
276,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
5016,
1438,
25,
13302,
276,
198,
220,
220,
220,
220,
220,
5016,
8748,
25,
13302,
276,
7679,
13,
198,
220,
220,
220,
220,
220,
5016,
2163,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
1813,
262,
795,
1350,
8228,
17593,
266,
17,
85,
290,
1573,
4686,
87,
11,
1441,
663,
11188,
11525,
12083,
15879,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
15284,
262,
27255,
266,
13,
81,
13,
83,
284,
11525,
12083,
17593,
198,
220,
220,
220,
37227,
628,
198,
4871,
1482,
21979,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
5016,
1438,
25,
1482,
21979,
198,
220,
220,
220,
220,
220,
5016,
8748,
25,
1482,
21979,
7679,
13,
198,
220,
220,
220,
220,
220,
5016,
2163,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
1673,
265,
734,
17593,
1863,
351,
262,
16488,
352,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
15284,
262,
27255,
266,
13,
81,
13,
83,
284,
17593,
257,
290,
331,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
20559,
11518,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
5016,
1438,
25,
20559,
11518,
198,
220,
220,
220,
220,
220,
5016,
8748,
25,
20559,
11518,
7679,
13,
198,
220,
220,
220,
220,
220,
5016,
2163,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
25,
1813,
2124,
11,
15284,
262,
6376,
543,
468,
262,
5415,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19528,
25,
6045,
198,
220,
220,
220,
37227,
198
] | 2.833661 | 2,543 |
import os
import psutil
| [
11748,
28686,
198,
11748,
26692,
22602,
198
] | 3.428571 | 7 |
#
## PyMoira client library
##
## This file contains the utility functions common for multiple modules.
#
import datetime
from .errors import UserError
def convertToMoiraValue(val):
"""Converts data from Python to Moira protocol representation."""
if type(val) == bool:
return '1' if val else '0'
else:
return str(val)
def responseToDict(description, response):
"""Transforms the query response to a dictionary using a description
of format ( (field name, type) ), where types are bool, int, string and
date time."""
if len(description) != len(response):
raise UserError("Error returned the response with invalid number of entries")
result = {}
for value, field in ( (response[i], description[i]) for i in range( 0, len(response) ) ):
name, datatype = field
if datatype == bool:
result[name] = convertMoiraBool(value)
elif datatype == int:
result[name] = convertMoiraInt(value)
elif datatype == datetime.datetime:
result[name] = convertMoiraDateTime(value)
elif datatype == str:
result[name] = value
else:
raise UserError("Unsupported Moira data type specified: %s" % datatype)
return result
| [
2,
198,
2235,
9485,
16632,
8704,
5456,
5888,
198,
2235,
198,
2235,
770,
2393,
4909,
262,
10361,
5499,
2219,
329,
3294,
13103,
13,
198,
2,
198,
198,
11748,
4818,
8079,
198,
6738,
764,
48277,
1330,
11787,
12331,
198,
198,
4299,
10385,
2514,
16632,
8704,
11395,
7,
2100,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
1366,
422,
11361,
284,
4270,
8704,
8435,
10552,
526,
15931,
628,
220,
220,
220,
611,
2099,
7,
2100,
8,
6624,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
16,
6,
611,
1188,
2073,
705,
15,
6,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
965,
7,
2100,
8,
198,
198,
4299,
2882,
2514,
35,
713,
7,
11213,
11,
2882,
2599,
198,
220,
220,
220,
37227,
8291,
23914,
262,
12405,
2882,
284,
257,
22155,
1262,
257,
6764,
198,
220,
220,
220,
286,
5794,
357,
357,
3245,
1438,
11,
2099,
8,
10612,
810,
3858,
389,
20512,
11,
493,
11,
4731,
290,
198,
220,
220,
220,
3128,
640,
526,
15931,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
18896,
7,
11213,
8,
14512,
18896,
7,
26209,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11787,
12331,
7203,
12331,
4504,
262,
2882,
351,
12515,
1271,
286,
12784,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1255,
796,
23884,
198,
220,
220,
220,
329,
1988,
11,
2214,
287,
357,
357,
26209,
58,
72,
4357,
6764,
58,
72,
12962,
329,
1312,
287,
2837,
7,
657,
11,
18896,
7,
26209,
8,
1267,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
4818,
265,
2981,
796,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4818,
265,
2981,
6624,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
3672,
60,
796,
10385,
16632,
8704,
33,
970,
7,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4818,
265,
2981,
6624,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
3672,
60,
796,
10385,
16632,
8704,
5317,
7,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4818,
265,
2981,
6624,
4818,
8079,
13,
19608,
8079,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
3672,
60,
796,
10385,
16632,
8704,
10430,
7575,
7,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4818,
265,
2981,
6624,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
3672,
60,
796,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11787,
12331,
7203,
3118,
15999,
4270,
8704,
1366,
2099,
7368,
25,
4064,
82,
1,
4064,
4818,
265,
2981,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
1255,
198
] | 2.639918 | 486 |
import unittest
import base64
from detect_face import lambda_handler
# 顔があると200が返ってくる
# 顔がないと204が返ってくる
# 画像以外のファイルを拡張子を偽ってアップロードしてもダメ
if __name__ == "__main__":
unittest.main()
| [
11748,
555,
715,
395,
198,
11748,
2779,
2414,
198,
6738,
4886,
62,
2550,
1330,
37456,
62,
30281,
628,
198,
220,
220,
220,
1303,
16268,
94,
242,
35585,
40948,
25748,
30201,
2167,
35585,
32573,
242,
33180,
28134,
31917,
25748,
628,
220,
220,
220,
1303,
16268,
94,
242,
35585,
26945,
18566,
30201,
18638,
35585,
32573,
242,
33180,
28134,
31917,
25748,
628,
220,
220,
220,
1303,
13328,
242,
119,
161,
225,
237,
20015,
98,
13783,
244,
5641,
41939,
11482,
9202,
31758,
162,
233,
94,
28156,
113,
36310,
31758,
161,
223,
121,
33180,
28134,
11839,
14777,
30965,
16253,
12045,
231,
22180,
28134,
43266,
27852,
26998,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 1.604839 | 124 |
import json
from django.core.exceptions import ObjectDoesNotExist
from tastypie import http
from tastypie.bundle import Bundle
from tastypie.exceptions import ImmediateHttpResponse
from tastypie.resources import ModelResource
import commonware.log
import oauth2
from translations.fields import PurifiedField, TranslatedField
log = commonware.log.getLogger('z.api')
| [
11748,
33918,
198,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
9515,
13921,
3673,
3109,
396,
198,
198,
6738,
14854,
4464,
494,
1330,
2638,
198,
6738,
14854,
4464,
494,
13,
65,
31249,
1330,
25282,
198,
6738,
14854,
4464,
494,
13,
1069,
11755,
1330,
1846,
13857,
43481,
31077,
198,
6738,
14854,
4464,
494,
13,
37540,
1330,
9104,
26198,
198,
198,
11748,
2219,
1574,
13,
6404,
198,
11748,
267,
18439,
17,
198,
6738,
25231,
13,
25747,
1330,
9330,
1431,
15878,
11,
3602,
17249,
15878,
198,
198,
6404,
796,
2219,
1574,
13,
6404,
13,
1136,
11187,
1362,
10786,
89,
13,
15042,
11537,
628
] | 3.627451 | 102 |
# Generated by Django 3.2.8 on 2021-10-16 07:05
from django.db import migrations, models
import django.db.models.deletion
| [
2,
2980,
515,
416,
37770,
513,
13,
17,
13,
23,
319,
33448,
12,
940,
12,
1433,
8753,
25,
2713,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
198,
11748,
42625,
14208,
13,
9945,
13,
27530,
13,
2934,
1616,
295,
628
] | 2.818182 | 44 |
'''
Created on 27/02/2013
@author: butler
'''
import json
class JParser(object):
'''
Parser for json config file. As this is designed to be '
'''
def __init__(self, file_name):
'''
'''
self.file_name = file_name
"""
self.delta_t_ms
self.sample_rate
self.t_min_s
self.t_max_s
"""
self.parse()
| [
7061,
6,
198,
41972,
319,
2681,
14,
2999,
14,
6390,
198,
198,
31,
9800,
25,
475,
1754,
198,
7061,
6,
198,
11748,
33918,
628,
198,
4871,
21331,
28198,
7,
15252,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
23042,
263,
329,
33918,
4566,
2393,
13,
1081,
428,
318,
3562,
284,
307,
705,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2393,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7753,
62,
3672,
796,
2393,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
67,
12514,
62,
83,
62,
907,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39873,
62,
4873,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
62,
1084,
62,
82,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
62,
9806,
62,
82,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
29572,
3419,
198
] | 1.931034 | 203 |
import datetime
import pytz
from decimal import Decimal
| [
11748,
4818,
8079,
201,
198,
11748,
12972,
22877,
201,
198,
6738,
32465,
1330,
4280,
4402,
201
] | 3.625 | 16 |
x = 1
y = 'Hello'
z = 10.123
d = x + z
print(d)
print(type(x))
print(type(y))
print(y.upper())
print(y.lower())
print(type(z))
a = [1,2,3,4,5,6,6,7,8]
print(len(a))
print(a.count(6))
b = list(range(10,100,10))
print(b)
stud_marks = {"Madhan":90, "Raj":25,"Mani":80}
print(stud_marks.keys())
print(stud_marks.values())
ab = list(range(10,100,10))
ab.append(100)
ab.append(110)
ab.remove(110)
print(ab[0:2]) | [
87,
796,
352,
198,
88,
796,
705,
15496,
6,
198,
89,
796,
838,
13,
10163,
198,
198,
67,
796,
2124,
1343,
1976,
198,
4798,
7,
67,
8,
198,
198,
4798,
7,
4906,
7,
87,
4008,
198,
4798,
7,
4906,
7,
88,
4008,
198,
4798,
7,
88,
13,
45828,
28955,
198,
4798,
7,
88,
13,
21037,
28955,
198,
4798,
7,
4906,
7,
89,
4008,
198,
198,
64,
796,
685,
16,
11,
17,
11,
18,
11,
19,
11,
20,
11,
21,
11,
21,
11,
22,
11,
23,
60,
198,
198,
4798,
7,
11925,
7,
64,
4008,
198,
4798,
7,
64,
13,
9127,
7,
21,
4008,
628,
628,
198,
65,
796,
1351,
7,
9521,
7,
940,
11,
3064,
11,
940,
4008,
198,
4798,
7,
65,
8,
628,
198,
19149,
62,
14306,
796,
19779,
18454,
7637,
1298,
3829,
11,
366,
49,
1228,
1298,
1495,
553,
44,
3216,
1298,
1795,
92,
198,
4798,
7,
19149,
62,
14306,
13,
13083,
28955,
198,
4798,
7,
19149,
62,
14306,
13,
27160,
28955,
628,
198,
397,
796,
1351,
7,
9521,
7,
940,
11,
3064,
11,
940,
4008,
198,
397,
13,
33295,
7,
3064,
8,
198,
397,
13,
33295,
7,
11442,
8,
198,
397,
13,
28956,
7,
11442,
8,
198,
198,
4798,
7,
397,
58,
15,
25,
17,
12962
] | 2 | 209 |
#!/usr/bin/env python
import logging
import socket
import urllib.request
import time
LOGGER = logging.getLogger('mierzyciel.telegram')
if __name__ == '__main__':
fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
logging.basicConfig(level='INFO', format=fmt)
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
18931,
198,
11748,
17802,
198,
11748,
2956,
297,
571,
13,
25927,
198,
11748,
640,
198,
198,
25294,
30373,
796,
18931,
13,
1136,
11187,
1362,
10786,
76,
959,
7357,
979,
417,
13,
660,
30536,
11537,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
46996,
796,
705,
4,
7,
292,
310,
524,
8,
82,
532,
4064,
7,
3672,
8,
82,
532,
4064,
7,
5715,
3672,
8,
82,
532,
4064,
7,
20500,
8,
82,
6,
198,
220,
220,
220,
18931,
13,
35487,
16934,
7,
5715,
11639,
10778,
3256,
5794,
28,
69,
16762,
8,
198,
220,
220,
220,
1388,
3419,
198
] | 2.508621 | 116 |
""" Test utilities. """
import pytest
from aries_staticagent import utils, Message
from aries_staticagent.mtc import (
AUTHCRYPT_AFFIRMED,
AUTHCRYPT_DENIED,
ANONCRYPT_AFFIRMED,
ANONCRYPT_DENIED,
)
@pytest.fixture
def test_preprocess():
"""Test preprocessing decorator."""
@utils.preprocess(preprocessor)
handled = test_handler({})
assert handled["preprocessed"]
@pytest.mark.asyncio
async def test_preprocess_async_handler():
"""Test preprocessing decorator."""
@utils.preprocess(preprocessor)
handled = await test_handler({})
assert handled["preprocessed"]
@pytest.mark.asyncio
async def test_preprocess_async_handler_and_preprocessor():
"""Test preprocessing decorator."""
@utils.preprocess_async(preprocessor)
handled = await test_handler({})
assert handled["preprocessed"]
def test_validate(message):
"""Test validation of message"""
@utils.validate(validator)
validate_test(message)
def test_validate_modify_msg():
"""Test validation can modify the message."""
@utils.validate(validator)
test_handler({})
def test_validate_with_other_decorators():
"""Test validation of message"""
def fake_route():
"""Register route decorator."""
return _fake_route_decorator
@utils.validate(validator)
@fake_route()
@fake_route()
@utils.validate(validator)
handled = validate_test({"@id": "12345"})
assert handled["validated"]
handled = validate_test2({"@id": "12345"})
assert handled["validated"]
def test_mtc_decorator(message):
"""Test the MTC decorator."""
@utils.mtc(AUTHCRYPT_AFFIRMED, AUTHCRYPT_DENIED)
message.mtc[AUTHCRYPT_AFFIRMED] = True
message.mtc[AUTHCRYPT_DENIED] = False
mtc_test(message)
def test_mtc_decorator_not_met(message):
"""Test the MTC decorator."""
@utils.mtc(AUTHCRYPT_AFFIRMED)
message.mtc[AUTHCRYPT_AFFIRMED] = True
message.mtc[AUTHCRYPT_DENIED] = False
with pytest.raises(utils.InsufficientMessageTrust):
mtc_test(message)
def test_authcrypted_decorator(message):
"""Test the authcrypted decorator."""
@utils.authcrypted
message.mtc[AUTHCRYPT_AFFIRMED] = True
message.mtc[AUTHCRYPT_DENIED] = False
mtc_test(message)
def test_authcrypted_decorator_not_met(message):
"""Test the authcrypted decorator."""
@utils.authcrypted
message.mtc[AUTHCRYPT_AFFIRMED] = True
with pytest.raises(utils.InsufficientMessageTrust):
mtc_test(message)
def test_anoncrypted_decorator(message):
"""Test the anoncrypted decorator."""
@utils.anoncrypted
message.mtc[ANONCRYPT_AFFIRMED] = True
message.mtc[ANONCRYPT_DENIED] = False
mtc_test(message)
def test_anoncrypted_decorator_not_met(message):
"""Test the anoncrypted decorator."""
@utils.anoncrypted
message.mtc[ANONCRYPT_AFFIRMED] = True
with pytest.raises(utils.InsufficientMessageTrust):
mtc_test(message)
| [
37811,
6208,
20081,
13,
37227,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
257,
1678,
62,
12708,
25781,
1330,
3384,
4487,
11,
16000,
198,
6738,
257,
1678,
62,
12708,
25781,
13,
16762,
66,
1330,
357,
198,
220,
220,
220,
37195,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
11,
198,
220,
220,
220,
37195,
9419,
56,
11571,
62,
41819,
19767,
11,
198,
220,
220,
220,
3537,
1340,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
11,
198,
220,
220,
220,
3537,
1340,
9419,
56,
11571,
62,
41819,
19767,
11,
198,
8,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
4299,
1332,
62,
3866,
14681,
33529,
198,
220,
220,
220,
37227,
14402,
662,
36948,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
3866,
14681,
7,
3866,
41341,
8,
628,
220,
220,
220,
12118,
796,
1332,
62,
30281,
15090,
30072,
198,
220,
220,
220,
6818,
12118,
14692,
3866,
14681,
276,
8973,
628,
198,
31,
9078,
9288,
13,
4102,
13,
292,
13361,
952,
198,
292,
13361,
825,
1332,
62,
3866,
14681,
62,
292,
13361,
62,
30281,
33529,
198,
220,
220,
220,
37227,
14402,
662,
36948,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
3866,
14681,
7,
3866,
41341,
8,
628,
220,
220,
220,
12118,
796,
25507,
1332,
62,
30281,
15090,
30072,
198,
220,
220,
220,
6818,
12118,
14692,
3866,
14681,
276,
8973,
628,
198,
31,
9078,
9288,
13,
4102,
13,
292,
13361,
952,
198,
292,
13361,
825,
1332,
62,
3866,
14681,
62,
292,
13361,
62,
30281,
62,
392,
62,
3866,
41341,
33529,
198,
220,
220,
220,
37227,
14402,
662,
36948,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
3866,
14681,
62,
292,
13361,
7,
3866,
41341,
8,
628,
220,
220,
220,
12118,
796,
25507,
1332,
62,
30281,
15090,
30072,
198,
220,
220,
220,
6818,
12118,
14692,
3866,
14681,
276,
8973,
628,
198,
4299,
1332,
62,
12102,
378,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
21201,
286,
3275,
37811,
628,
220,
220,
220,
2488,
26791,
13,
12102,
378,
7,
12102,
1352,
8,
628,
220,
220,
220,
26571,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
12102,
378,
62,
4666,
1958,
62,
19662,
33529,
198,
220,
220,
220,
37227,
14402,
21201,
460,
13096,
262,
3275,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
12102,
378,
7,
12102,
1352,
8,
628,
220,
220,
220,
1332,
62,
30281,
15090,
30072,
628,
198,
4299,
1332,
62,
12102,
378,
62,
4480,
62,
847,
62,
12501,
273,
2024,
33529,
198,
220,
220,
220,
37227,
14402,
21201,
286,
3275,
37811,
628,
220,
220,
220,
825,
8390,
62,
38629,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38804,
6339,
11705,
1352,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
4808,
30706,
62,
38629,
62,
12501,
273,
1352,
628,
220,
220,
220,
2488,
26791,
13,
12102,
378,
7,
12102,
1352,
8,
198,
220,
220,
220,
2488,
30706,
62,
38629,
3419,
628,
220,
220,
220,
2488,
30706,
62,
38629,
3419,
198,
220,
220,
220,
2488,
26791,
13,
12102,
378,
7,
12102,
1352,
8,
628,
220,
220,
220,
12118,
796,
26571,
62,
9288,
7,
4895,
31,
312,
1298,
366,
10163,
2231,
20662,
8,
198,
220,
220,
220,
6818,
12118,
14692,
12102,
515,
8973,
198,
220,
220,
220,
12118,
796,
26571,
62,
9288,
17,
7,
4895,
31,
312,
1298,
366,
10163,
2231,
20662,
8,
198,
220,
220,
220,
6818,
12118,
14692,
12102,
515,
8973,
628,
198,
4299,
1332,
62,
16762,
66,
62,
12501,
273,
1352,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
337,
4825,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
16762,
66,
7,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
11,
37195,
9419,
56,
11571,
62,
41819,
19767,
8,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
41819,
19767,
60,
796,
10352,
198,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
16762,
66,
62,
12501,
273,
1352,
62,
1662,
62,
4164,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
337,
4825,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
16762,
66,
7,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
8,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
41819,
19767,
60,
796,
10352,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
26791,
13,
20376,
15267,
12837,
33814,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
18439,
66,
15109,
62,
12501,
273,
1352,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
6284,
66,
15109,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
18439,
66,
15109,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
41819,
19767,
60,
796,
10352,
198,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
18439,
66,
15109,
62,
12501,
273,
1352,
62,
1662,
62,
4164,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
6284,
66,
15109,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
18439,
66,
15109,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
32,
24318,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
26791,
13,
20376,
15267,
12837,
33814,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
36902,
66,
15109,
62,
12501,
273,
1352,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
281,
261,
66,
15109,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
36902,
66,
15109,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
1565,
1340,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
3275,
13,
16762,
66,
58,
1565,
1340,
9419,
56,
11571,
62,
41819,
19767,
60,
796,
10352,
198,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
628,
198,
4299,
1332,
62,
36902,
66,
15109,
62,
12501,
273,
1352,
62,
1662,
62,
4164,
7,
20500,
2599,
198,
220,
220,
220,
37227,
14402,
262,
281,
261,
66,
15109,
11705,
1352,
526,
15931,
628,
220,
220,
220,
2488,
26791,
13,
36902,
66,
15109,
628,
220,
220,
220,
3275,
13,
16762,
66,
58,
1565,
1340,
9419,
56,
11571,
62,
32,
5777,
4663,
30733,
60,
796,
6407,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
26791,
13,
20376,
15267,
12837,
33814,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
23047,
62,
9288,
7,
20500,
8,
198
] | 2.521044 | 1,188 |
import FWCore.ParameterSet.Config as cms
heavyFlavorValidation = cms.EDAnalyzer("HeavyFlavorValidation",
DQMFolder = cms.untracked.string("HLT/HeavyFlavor"),
TriggerProcessName = cms.untracked.string("HLT"),
TriggerPathName = cms.untracked.string("HLT_Mu5"),
TriggerSummaryRAW = cms.untracked.string("hltTriggerSummaryRAW"),
TriggerSummaryAOD = cms.untracked.string("hltTriggerSummaryAOD"),
TriggerResults = cms.untracked.string("TriggerResults"),
RecoMuons = cms.InputTag("muons"),
GenParticles = cms.InputTag("genParticles"),
# list IDs of muon mothers, -1:don't check, 0:particle gun, 23:Z, 443:J/psi, 553:Upsilon, 531:Bs, 333:Phi
MotherIDs = cms.untracked.vint32(23,443,553,531,333,0),
GenGlobDeltaRMatchingCut = cms.untracked.double(0.1),
GlobL1DeltaRMatchingCut = cms.untracked.double(0.3),
GlobL2DeltaRMatchingCut = cms.untracked.double(0.3),
GlobL3DeltaRMatchingCut = cms.untracked.double(0.1),
DeltaEtaBins = cms.untracked.vdouble(100, -.5, .5),
DeltaPhiBins = cms.untracked.vdouble(100, -.5, .5),
MuonPtBins = cms.untracked.vdouble(1., 3., 5., 9., 15., 32., 64., 128., 256., 512., 1024., 2048.),
MuonEtaBins = cms.untracked.vdouble(16, -2.4, 2.4),
MuonPhiBins = cms.untracked.vdouble(12, -3.15, 3.15),
DimuonPtBins = cms.untracked.vdouble(0., 2., 4., 6., 8., 10., 15., 25., 50., 100.),
DimuonEtaBins = cms.untracked.vdouble(16, -2.4, 2.4),
DimuonDRBins = cms.untracked.vdouble(10, 0., 1.)
)
| [
11748,
48849,
14055,
13,
36301,
7248,
13,
16934,
355,
269,
907,
198,
198,
23701,
7414,
5570,
7762,
24765,
796,
269,
907,
13,
1961,
37702,
9107,
7203,
33210,
7414,
5570,
7762,
24765,
1600,
198,
220,
220,
220,
360,
48,
44,
41092,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
6581,
51,
14,
33210,
7414,
5570,
12340,
198,
220,
220,
220,
24593,
18709,
5376,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
6581,
51,
12340,
198,
220,
220,
220,
24593,
15235,
5376,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
6581,
51,
62,
33239,
20,
12340,
198,
220,
220,
220,
24593,
22093,
20530,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
71,
2528,
48344,
22093,
20530,
12340,
198,
220,
220,
220,
24593,
22093,
32,
3727,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
71,
2528,
48344,
22093,
32,
3727,
12340,
198,
220,
220,
220,
24593,
25468,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
7203,
48344,
25468,
12340,
198,
220,
220,
220,
3311,
78,
33239,
684,
796,
269,
907,
13,
20560,
24835,
7203,
30300,
684,
12340,
198,
220,
220,
220,
5215,
7841,
2983,
796,
269,
907,
13,
20560,
24835,
7203,
5235,
7841,
2983,
12340,
198,
2,
1351,
32373,
286,
38779,
261,
12289,
11,
532,
16,
25,
9099,
470,
2198,
11,
657,
25,
3911,
1548,
2485,
11,
2242,
25,
57,
11,
40384,
25,
41,
14,
862,
72,
11,
642,
4310,
25,
52,
862,
33576,
11,
642,
3132,
25,
37000,
11,
23460,
25,
2725,
72,
198,
220,
220,
220,
10584,
47954,
796,
269,
907,
13,
403,
2213,
6021,
13,
85,
600,
2624,
7,
1954,
11,
34938,
11,
48096,
11,
20,
3132,
11,
20370,
11,
15,
828,
198,
220,
220,
220,
5215,
9861,
672,
42430,
29138,
19775,
26254,
796,
269,
907,
13,
403,
2213,
6021,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
40713,
43,
16,
42430,
29138,
19775,
26254,
796,
269,
907,
13,
403,
2213,
6021,
13,
23352,
7,
15,
13,
18,
828,
198,
220,
220,
220,
40713,
43,
17,
42430,
29138,
19775,
26254,
796,
269,
907,
13,
403,
2213,
6021,
13,
23352,
7,
15,
13,
18,
828,
198,
220,
220,
220,
40713,
43,
18,
42430,
29138,
19775,
26254,
796,
269,
907,
13,
403,
2213,
6021,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
16978,
36,
8326,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
3064,
11,
532,
13,
20,
11,
764,
20,
828,
198,
220,
220,
220,
16978,
2725,
72,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
3064,
11,
532,
13,
20,
11,
764,
20,
828,
198,
220,
220,
220,
8252,
261,
47,
83,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
16,
1539,
513,
1539,
642,
1539,
860,
1539,
1315,
1539,
3933,
1539,
5598,
1539,
13108,
1539,
17759,
1539,
22243,
1539,
28119,
1539,
36117,
12179,
198,
220,
220,
220,
8252,
261,
36,
8326,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
1433,
11,
532,
17,
13,
19,
11,
362,
13,
19,
828,
198,
220,
220,
220,
8252,
261,
2725,
72,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
1065,
11,
532,
18,
13,
1314,
11,
513,
13,
1314,
828,
198,
220,
220,
220,
14048,
84,
261,
47,
83,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
15,
1539,
362,
1539,
604,
1539,
718,
1539,
807,
1539,
838,
1539,
1315,
1539,
1679,
1539,
2026,
1539,
1802,
12179,
198,
220,
220,
220,
14048,
84,
261,
36,
8326,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
1433,
11,
532,
17,
13,
19,
11,
362,
13,
19,
828,
198,
220,
220,
220,
14048,
84,
261,
7707,
33,
1040,
796,
269,
907,
13,
403,
2213,
6021,
13,
20306,
15270,
7,
940,
11,
657,
1539,
352,
2014,
198,
8,
198
] | 2.268702 | 655 |
"""
Authors: Wouter Van Gansbeke, Simon Vandenhende
Licensed under the CC BY-NC 4.0 license (https://creativecommons.org/licenses/by-nc/4.0/)
"""
import os
import yaml
from easydict import EasyDict
from utils.utils import mkdir_if_missing
| [
37811,
198,
30515,
669,
25,
370,
39605,
6656,
402,
504,
1350,
365,
11,
11288,
35464,
268,
15631,
68,
198,
26656,
15385,
739,
262,
12624,
11050,
12,
7792,
604,
13,
15,
5964,
357,
5450,
1378,
20123,
425,
9503,
684,
13,
2398,
14,
677,
4541,
14,
1525,
12,
10782,
14,
19,
13,
15,
34729,
198,
37811,
198,
11748,
28686,
198,
11748,
331,
43695,
198,
6738,
2562,
11600,
1330,
16789,
35,
713,
198,
6738,
3384,
4487,
13,
26791,
1330,
33480,
15908,
62,
361,
62,
45688,
198
] | 2.879518 | 83 |
from __future__ import print_function
from __future__ import division
from . import _C
import matplotlib.pyplot as plt
import numpy as np
from copy import copy, deepcopy
EXTENDED_PERCENT = 0.1
###################################################################################################################################################
################################################################################################################################################### | [
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
6738,
11593,
37443,
834,
1330,
7297,
198,
6738,
764,
1330,
4808,
34,
198,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
4866,
1330,
4866,
11,
2769,
30073,
198,
198,
13918,
49361,
62,
18973,
43960,
796,
657,
13,
16,
198,
198,
29113,
29113,
29113,
29113,
14468,
21017,
198,
198,
29113,
29113,
29113,
29113,
14468,
21017
] | 6.648649 | 74 |
##########################################################################
# Copyright (c) 2017-2018 Bertrand Néron. All rights reserved. #
# Use of this source code is governed by a BSD-style license that can be #
# found in the LICENSE file. #
##########################################################################
import argparse
class VersionAction(argparse._VersionAction):
"""Class to allow argparse to handel more complex version output"""
def __call__(self, parser, namespace, values, option_string=None):
"""Override the :meth:`argparse._VersionAction.__call__` to use
a RawTextHelpFormatter only for version action whatever the class_formatter
specified for the :class:`argparse.ArgumentParser` object.
"""
version = self.version
if version is None:
version = parser.version
formatter = argparse.RawTextHelpFormatter(parser.prog)
formatter.add_text(version)
parser._print_message(formatter.format_help(), argparse._sys.stdout)
parser.exit()
| [
29113,
29113,
7804,
2235,
198,
2,
15069,
357,
66,
8,
2177,
12,
7908,
22108,
25192,
399,
2634,
1313,
13,
1439,
2489,
10395,
13,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
5765,
286,
428,
2723,
2438,
318,
21825,
416,
257,
347,
10305,
12,
7635,
5964,
326,
460,
307,
1303,
198,
2,
1043,
287,
262,
38559,
24290,
2393,
13,
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,
1303,
198,
29113,
29113,
7804,
2235,
628,
198,
11748,
1822,
29572,
628,
198,
4871,
10628,
12502,
7,
853,
29572,
13557,
14815,
12502,
2599,
198,
220,
220,
220,
37227,
9487,
284,
1249,
1822,
29572,
284,
1021,
417,
517,
3716,
2196,
5072,
37811,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
30751,
11,
25745,
11,
3815,
11,
3038,
62,
8841,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37961,
262,
1058,
76,
2788,
25,
63,
853,
29572,
13557,
14815,
12502,
13,
834,
13345,
834,
63,
284,
779,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
16089,
8206,
22087,
8479,
1436,
691,
329,
2196,
2223,
4232,
262,
1398,
62,
687,
1436,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7368,
329,
262,
1058,
4871,
25,
63,
853,
29572,
13,
28100,
1713,
46677,
63,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2196,
796,
2116,
13,
9641,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2196,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2196,
796,
30751,
13,
9641,
198,
220,
220,
220,
220,
220,
220,
220,
1296,
1436,
796,
1822,
29572,
13,
27369,
8206,
22087,
8479,
1436,
7,
48610,
13,
1676,
70,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1296,
1436,
13,
2860,
62,
5239,
7,
9641,
8,
198,
220,
220,
220,
220,
220,
220,
220,
30751,
13557,
4798,
62,
20500,
7,
687,
1436,
13,
18982,
62,
16794,
22784,
1822,
29572,
13557,
17597,
13,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
30751,
13,
37023,
3419,
628,
198
] | 2.853165 | 395 |
import utils
from sklearn.model_selection import train_test_split
import lsh_random_projection as LSH
import pickle
build_model()
with open('lsh.pkl', 'rb') as input:
lsh = pickle.load(input)
# lsh.get()
| [
11748,
3384,
4487,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
11748,
300,
1477,
62,
25120,
62,
16302,
295,
355,
406,
9693,
198,
11748,
2298,
293,
628,
628,
198,
11249,
62,
19849,
3419,
198,
198,
4480,
1280,
10786,
75,
1477,
13,
79,
41582,
3256,
705,
26145,
11537,
355,
5128,
25,
198,
220,
220,
220,
300,
1477,
796,
2298,
293,
13,
2220,
7,
15414,
8,
198,
220,
220,
220,
1303,
300,
1477,
13,
1136,
3419,
198
] | 2.646341 | 82 |
# Example of applying VGG16 classifier
# Based on Keras book sec 5.4.3.
from keras.applications.vgg16 import VGG16
from keras.applications.vgg16 import preprocess_input, decode_predictions
from keras.preprocessing import image
#import matplotlib.pyplot as plt
import numpy as np
#import urllib
#from keras.applications import ResNet50
#from keras.applications.resnet50 import preprocess_input, decode_predictions
#model = ResNet50(weights='imagenet')
model = VGG16(weights='imagenet')
model.summary() # see vgg16-summary.txt for details
# Load image from file
img_path = 'figures/cat_dog.jpg' # From https://github.com/ramprs/grad-cam/blob/master/images/cat_dog.jpg
#img_path = 'figures/Elephant_mating_ritual_3.jpg' # https://en.wikipedia.org/wiki/African_elephant#/media/File:Elephant_mating_ritual_3.jpg
#img_path = 'figures/Serengeti_Elefantenherde2.jpg' #https://en.wikipedia.org/wiki/African_elephant#/media/File:Serengeti_Elefantenherde2.jpg
#img_path = 'figures/dog-cat-openimages.jpg'
#img_path = 'figures/dog-ball-openimages.jpg' # https://www.flickr.com/photos/akarmy/5423588107
#img_path = 'figures/dog-car-backpack-openimages.jpg' # https://www.flickr.com/photos/mountrainiernps/14485323038
# Retrieve image from web
#url = "https://en.wikipedia.org/wiki/African_elephant#/media/File:Elephant_mating_ritual_3.jpg"
#urllib.request.urlretrieve(url, "/tmp/img.png")
#img = plt.imread('/tmp/img.png')
# `img` is a PIL image of size 224x224
img = image.load_img(img_path, target_size=(224, 224))
# `x` is a float32 Numpy array of shape (224, 224, 3)
x = image.img_to_array(img)
# We add a dimension to transform our array into a "batch"
# of size (1, 224, 224, 3)
x = np.expand_dims(x, axis=0)
# Finally we preprocess the batch
# (this does channel-wise color normalization)
x = preprocess_input(x)
preds = model.predict(x)
# decode the results into a list of tuples (class, description, probability)
# (one such list for each sample in the batch)
print('Predicted:', decode_predictions(preds, top=10)[0])
'''
Predicted: [
('n02108422', 'bull_mastiff', 0.40943894),
('n02108089', 'boxer', 0.3950904),
('n02109047', 'Great_Dane', 0.039510112),
('n02109525', 'Saint_Bernard', 0.031701218), '
('n02129604', 'tiger', 0.019169593),
('n02093754', 'Border_terrier', 0.018684039),
('n02110958', 'pug', 0.014893572),
('n02123159', 'tiger_cat', 0.014403002),
('n02105162', 'malinois', 0.010533252),
('n03803284', 'muzzle', 0.005662783)]
'''
# For img_path = 'data/Elephant_mating_ritual_3.jpg'
#Predicted: [('n02504458', 'African_elephant', 0.93163019),
#('n01871265', 'tusker', 0.053829707), ('n02504013', 'Indian_elephant', 0.014539864)]
# For img_path = 'data/Serengeti_Elefantenherde2.jpg'
#Predicted: [('n01871265', 'tusker', 0.61881274),
#('n02504458', 'African_elephant', 0.25420085), ('n02504013', 'Indian_elephant', 0.11940476)]
# Animal > Chordate > Vertebrate > Mammal > Tusker
#http://image-net.org/synset?wnid=n01871265
#Any mammal with prominent tusks (especially an elephant or wild boar)
# Animal > Chordate > Vertebrate > Mammal > Placental Mammal ...
# > Proboscidian > Elephant > African Elephant
# http://image-net.org/synset?wnid=n02504458
# An elephant native to Africa having enormous flapping ears and ivory tusks
| [
2,
17934,
286,
11524,
569,
11190,
1433,
1398,
7483,
198,
2,
13403,
319,
17337,
292,
220,
1492,
792,
642,
13,
19,
13,
18,
13,
198,
198,
6738,
41927,
292,
13,
1324,
677,
602,
13,
85,
1130,
1433,
1330,
569,
11190,
1433,
198,
6738,
41927,
292,
13,
1324,
677,
602,
13,
85,
1130,
1433,
1330,
662,
14681,
62,
15414,
11,
36899,
62,
28764,
9278,
198,
6738,
41927,
292,
13,
3866,
36948,
1330,
2939,
198,
2,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
2,
11748,
2956,
297,
571,
198,
198,
2,
6738,
41927,
292,
13,
1324,
677,
602,
1330,
1874,
7934,
1120,
198,
2,
6738,
41927,
292,
13,
1324,
677,
602,
13,
411,
3262,
1120,
1330,
662,
14681,
62,
15414,
11,
36899,
62,
28764,
9278,
198,
2,
19849,
796,
1874,
7934,
1120,
7,
43775,
11639,
320,
11286,
316,
11537,
628,
198,
19849,
796,
569,
11190,
1433,
7,
43775,
11639,
320,
11286,
316,
11537,
198,
19849,
13,
49736,
3419,
1303,
766,
410,
1130,
1433,
12,
49736,
13,
14116,
329,
3307,
198,
198,
2,
8778,
2939,
422,
2393,
198,
9600,
62,
6978,
796,
705,
5647,
942,
14,
9246,
62,
9703,
13,
9479,
6,
1303,
3574,
3740,
1378,
12567,
13,
785,
14,
81,
696,
3808,
14,
9744,
12,
20991,
14,
2436,
672,
14,
9866,
14,
17566,
14,
9246,
62,
9703,
13,
9479,
220,
198,
2,
9600,
62,
6978,
796,
705,
5647,
942,
14,
28827,
33959,
62,
76,
803,
62,
799,
723,
62,
18,
13,
9479,
6,
1303,
220,
3740,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
43032,
62,
11129,
33959,
2,
14,
11431,
14,
8979,
25,
28827,
33959,
62,
76,
803,
62,
799,
723,
62,
18,
13,
9479,
198,
2,
9600,
62,
6978,
796,
705,
5647,
942,
14,
50,
567,
782,
316,
72,
62,
28827,
69,
415,
268,
372,
2934,
17,
13,
9479,
6,
1303,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
43032,
62,
11129,
33959,
2,
14,
11431,
14,
8979,
25,
50,
567,
782,
316,
72,
62,
28827,
69,
415,
268,
372,
2934,
17,
13,
9479,
198,
2,
9600,
62,
6978,
796,
705,
5647,
942,
14,
9703,
12,
9246,
12,
9654,
17566,
13,
9479,
6,
198,
2,
9600,
62,
6978,
796,
705,
5647,
942,
14,
9703,
12,
1894,
12,
9654,
17566,
13,
9479,
6,
1303,
3740,
1378,
2503,
13,
2704,
18994,
13,
785,
14,
24729,
14,
461,
1670,
88,
14,
4051,
1954,
39118,
15982,
198,
2,
9600,
62,
6978,
796,
705,
5647,
942,
14,
9703,
12,
7718,
12,
1891,
8002,
12,
9654,
17566,
13,
9479,
6,
1303,
3740,
1378,
2503,
13,
2704,
18994,
13,
785,
14,
24729,
14,
14948,
3201,
959,
77,
862,
14,
1415,
32642,
2624,
1270,
2548,
198,
198,
2,
4990,
30227,
2939,
422,
3992,
198,
2,
6371,
796,
366,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
43032,
62,
11129,
33959,
2,
14,
11431,
14,
8979,
25,
28827,
33959,
62,
76,
803,
62,
799,
723,
62,
18,
13,
9479,
1,
198,
2,
333,
297,
571,
13,
25927,
13,
6371,
1186,
30227,
7,
6371,
11,
12813,
22065,
14,
9600,
13,
11134,
4943,
220,
198,
2,
9600,
796,
458,
83,
13,
320,
961,
10786,
14,
22065,
14,
9600,
13,
11134,
11537,
198,
198,
2,
4600,
9600,
63,
318,
257,
350,
4146,
2939,
286,
2546,
26063,
87,
24137,
198,
9600,
796,
2939,
13,
2220,
62,
9600,
7,
9600,
62,
6978,
11,
2496,
62,
7857,
16193,
24137,
11,
26063,
4008,
198,
2,
4600,
87,
63,
318,
257,
12178,
2624,
399,
32152,
7177,
286,
5485,
357,
24137,
11,
26063,
11,
513,
8,
198,
87,
796,
2939,
13,
9600,
62,
1462,
62,
18747,
7,
9600,
8,
198,
2,
775,
751,
257,
15793,
284,
6121,
674,
7177,
656,
257,
366,
43501,
1,
198,
2,
286,
2546,
357,
16,
11,
26063,
11,
26063,
11,
513,
8,
198,
87,
796,
45941,
13,
11201,
392,
62,
67,
12078,
7,
87,
11,
16488,
28,
15,
8,
198,
2,
9461,
356,
662,
14681,
262,
15458,
198,
2,
357,
5661,
857,
6518,
12,
3083,
3124,
3487,
1634,
8,
198,
87,
796,
662,
14681,
62,
15414,
7,
87,
8,
198,
198,
28764,
82,
796,
2746,
13,
79,
17407,
7,
87,
8,
198,
2,
36899,
262,
2482,
656,
257,
1351,
286,
12777,
2374,
357,
4871,
11,
6764,
11,
12867,
8,
198,
2,
357,
505,
884,
1351,
329,
1123,
6291,
287,
262,
15458,
8,
198,
4798,
10786,
39156,
5722,
25,
3256,
36899,
62,
28764,
9278,
7,
28764,
82,
11,
1353,
28,
940,
38381,
15,
12962,
198,
198,
7061,
6,
198,
39156,
5722,
25,
685,
198,
10786,
77,
2999,
940,
5705,
1828,
3256,
705,
16308,
62,
47616,
733,
3256,
657,
13,
1821,
5824,
2548,
5824,
828,
220,
198,
10786,
77,
2999,
24045,
4531,
3256,
705,
3524,
263,
3256,
657,
13,
2670,
29022,
3023,
828,
220,
198,
10786,
77,
2999,
940,
3829,
2857,
3256,
705,
13681,
62,
35,
1531,
3256,
657,
13,
15,
2670,
4349,
486,
1065,
828,
220,
198,
10786,
77,
2999,
940,
3865,
1495,
3256,
705,
48615,
62,
23927,
446,
3256,
657,
13,
3070,
1558,
486,
28727,
828,
705,
198,
10786,
77,
2999,
18741,
31916,
3256,
705,
83,
8254,
3256,
657,
13,
30484,
22172,
49051,
828,
220,
198,
10786,
77,
33618,
6052,
41874,
3256,
705,
34189,
62,
353,
5277,
3256,
657,
13,
29159,
3104,
1821,
2670,
828,
198,
10786,
77,
46821,
14454,
3365,
3256,
705,
79,
1018,
3256,
657,
13,
486,
35890,
2327,
4761,
828,
220,
198,
10786,
77,
2999,
10163,
19707,
3256,
705,
83,
8254,
62,
9246,
3256,
657,
13,
486,
25644,
6200,
17,
828,
198,
10786,
77,
2999,
13348,
25061,
3256,
705,
7617,
8981,
3256,
657,
13,
486,
2713,
2091,
22800,
828,
220,
198,
10786,
77,
3070,
43564,
30336,
3256,
705,
76,
9625,
3256,
657,
13,
22544,
2791,
1983,
5999,
15437,
198,
7061,
6,
198,
198,
2,
1114,
33705,
62,
6978,
796,
705,
7890,
14,
28827,
33959,
62,
76,
803,
62,
799,
723,
62,
18,
13,
9479,
6,
198,
2,
39156,
5722,
25,
685,
10786,
77,
2999,
33580,
29334,
3256,
705,
43032,
62,
11129,
33959,
3256,
657,
13,
6052,
1433,
18938,
24,
828,
220,
198,
2,
10786,
77,
486,
5774,
1065,
2996,
3256,
705,
83,
385,
6122,
3256,
657,
13,
2713,
2548,
1959,
24038,
828,
19203,
77,
2999,
1120,
21844,
18,
3256,
705,
30821,
62,
11129,
33959,
3256,
657,
13,
486,
2231,
31952,
2414,
15437,
198,
198,
2,
1114,
33705,
62,
6978,
796,
705,
7890,
14,
50,
567,
782,
316,
72,
62,
28827,
69,
415,
268,
372,
2934,
17,
13,
9479,
6,
198,
2,
39156,
5722,
25,
685,
10786,
77,
486,
5774,
1065,
2996,
3256,
705,
83,
385,
6122,
3256,
657,
13,
21,
20356,
1065,
4524,
828,
198,
2,
10786,
77,
2999,
33580,
29334,
3256,
705,
43032,
62,
11129,
33959,
3256,
657,
13,
24970,
2167,
5332,
828,
19203,
77,
2999,
1120,
21844,
18,
3256,
705,
30821,
62,
11129,
33959,
3256,
657,
13,
16315,
1821,
35435,
15437,
198,
198,
2,
13792,
1875,
609,
585,
378,
1875,
4643,
660,
40804,
1875,
39502,
282,
1875,
46233,
6122,
198,
2,
4023,
1378,
9060,
12,
3262,
13,
2398,
14,
28869,
2617,
30,
675,
312,
28,
77,
486,
5774,
1065,
2996,
198,
2,
7149,
46103,
351,
9208,
256,
385,
591,
357,
16480,
281,
20950,
393,
4295,
1489,
283,
8,
198,
198,
2,
13792,
1875,
609,
585,
378,
1875,
4643,
660,
40804,
1875,
39502,
282,
1875,
1345,
330,
2470,
39502,
282,
2644,
198,
2,
1875,
30873,
17500,
19825,
1875,
42651,
1875,
5510,
42651,
198,
2,
2638,
1378,
9060,
12,
3262,
13,
2398,
14,
28869,
2617,
30,
675,
312,
28,
77,
2999,
33580,
29334,
198,
2,
1052,
20950,
6868,
284,
5478,
1719,
9812,
781,
5912,
11368,
290,
32630,
256,
385,
591,
628,
628,
198
] | 2.574132 | 1,268 |
from .web_requests import safeGet
| [
6738,
764,
12384,
62,
8897,
3558,
1330,
3338,
3855,
628,
628,
628,
220,
220,
220,
220,
198
] | 2.588235 | 17 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.